summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/fb_gv11b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b/fb_gv11b.c')
-rw-r--r--drivers/gpu/nvgpu/gv11b/fb_gv11b.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/fb_gv11b.c b/drivers/gpu/nvgpu/gv11b/fb_gv11b.c
index 47369523..bba47471 100644
--- a/drivers/gpu/nvgpu/gv11b/fb_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/fb_gv11b.c
@@ -1214,7 +1214,7 @@ void gv11b_fb_handle_nonreplay_fault_overflow(struct gk20a *g,
1214static void gv11b_fb_handle_bar2_fault(struct gk20a *g, 1214static void gv11b_fb_handle_bar2_fault(struct gk20a *g,
1215 struct mmu_fault_info *mmfault, u32 fault_status) 1215 struct mmu_fault_info *mmfault, u32 fault_status)
1216{ 1216{
1217 gv11b_fb_disable_hub_intr(g, STALL_REG_INDEX, 1217 g->ops.fb.disable_hub_intr(g, STALL_REG_INDEX,
1218 HUB_INTR_TYPE_NONREPLAY | HUB_INTR_TYPE_REPLAY); 1218 HUB_INTR_TYPE_NONREPLAY | HUB_INTR_TYPE_REPLAY);
1219 1219
1220 1220
@@ -1235,7 +1235,7 @@ static void gv11b_fb_handle_bar2_fault(struct gk20a *g,
1235 gk20a_channel_put(mmfault->refch); 1235 gk20a_channel_put(mmfault->refch);
1236 mmfault->refch = NULL; 1236 mmfault->refch = NULL;
1237 } 1237 }
1238 gv11b_fb_enable_hub_intr(g, STALL_REG_INDEX, 1238 g->ops.fb.enable_hub_intr(g, STALL_REG_INDEX,
1239 HUB_INTR_TYPE_NONREPLAY | HUB_INTR_TYPE_REPLAY); 1239 HUB_INTR_TYPE_NONREPLAY | HUB_INTR_TYPE_REPLAY);
1240} 1240}
1241 1241
@@ -1372,7 +1372,7 @@ void gv11b_fb_hub_isr(struct gk20a *g)
1372 nvgpu_info(g, "ecc uncorrected error notify"); 1372 nvgpu_info(g, "ecc uncorrected error notify");
1373 1373
1374 /* disable interrupts during handling */ 1374 /* disable interrupts during handling */
1375 gv11b_fb_disable_hub_intr(g, STALL_REG_INDEX, 1375 g->ops.fb.disable_hub_intr(g, STALL_REG_INDEX,
1376 HUB_INTR_TYPE_ECC_UNCORRECTED); 1376 HUB_INTR_TYPE_ECC_UNCORRECTED);
1377 1377
1378 status = gk20a_readl(g, fb_mmu_l2tlb_ecc_status_r()); 1378 status = gk20a_readl(g, fb_mmu_l2tlb_ecc_status_r());
@@ -1388,7 +1388,7 @@ void gv11b_fb_hub_isr(struct gk20a *g)
1388 gv11b_handle_fillunit_ecc_isr(g, status); 1388 gv11b_handle_fillunit_ecc_isr(g, status);
1389 1389
1390 /* re-enable interrupts after handling */ 1390 /* re-enable interrupts after handling */
1391 gv11b_fb_enable_hub_intr(g, STALL_REG_INDEX, 1391 g->ops.fb.enable_hub_intr(g, STALL_REG_INDEX,
1392 HUB_INTR_TYPE_ECC_UNCORRECTED); 1392 HUB_INTR_TYPE_ECC_UNCORRECTED);
1393 1393
1394 } 1394 }