summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/gk20a/gr_gk20a.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gr_gk20a.c b/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
index 892a138e..c1789427 100644
--- a/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
@@ -2174,7 +2174,8 @@ int gr_gk20a_load_ctxsw_ucode(struct gk20a *g)
2174 * In case bootloader is not supported, revert to the old way of 2174 * In case bootloader is not supported, revert to the old way of
2175 * loading gr ucode, without the faster bootstrap routine. 2175 * loading gr ucode, without the faster bootstrap routine.
2176 */ 2176 */
2177 if (g->gpu_characteristics.arch == NVHOST_GPU_ARCH_GM200) { 2177 if (g->gpu_characteristics.arch != NVHOST_GPU_ARCH_GK100 &&
2178 g->gpu_characteristics.arch != NVHOST_GPU_ARCH_GM200) {
2178 gr_gk20a_load_falcon_dmem(g); 2179 gr_gk20a_load_falcon_dmem(g);
2179 gr_gk20a_load_falcon_imem(g); 2180 gr_gk20a_load_falcon_imem(g);
2180 gr_gk20a_start_falcon_ucode(g); 2181 gr_gk20a_start_falcon_ucode(g);