summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/acr_gm20b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/acr_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/acr_gm20b.c22
1 files changed, 5 insertions, 17 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/acr_gm20b.c b/drivers/gpu/nvgpu/gm20b/acr_gm20b.c
index e440e179..ee861933 100644
--- a/drivers/gpu/nvgpu/gm20b/acr_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/acr_gm20b.c
@@ -1517,23 +1517,11 @@ static int pmu_wait_for_halt(struct gk20a *g, unsigned int timeout_ms)
1517*/ 1517*/
1518static int clear_halt_interrupt_status(struct gk20a *g, unsigned int timeout_ms) 1518static int clear_halt_interrupt_status(struct gk20a *g, unsigned int timeout_ms)
1519{ 1519{
1520 u32 data = 0; 1520 struct nvgpu_pmu *pmu = &g->pmu;
1521 struct nvgpu_timeout timeout; 1521 int status = 0;
1522
1523 nvgpu_timeout_init(g, &timeout, timeout_ms, NVGPU_TIMER_CPU_TIMER);
1524
1525 do {
1526 gk20a_writel(g, pwr_falcon_irqsclr_r(),
1527 gk20a_readl(g, pwr_falcon_irqsclr_r()) | (0x10));
1528 data = gk20a_readl(g, (pwr_falcon_irqstat_r()));
1529
1530 if ((data & pwr_falcon_irqstat_halt_true_f()) !=
1531 pwr_falcon_irqstat_halt_true_f())
1532 /*halt irq is clear*/
1533 return 0;
1534 1522
1535 nvgpu_udelay(1); 1523 if (nvgpu_flcn_clear_halt_intr_status(pmu->flcn, timeout_ms))
1536 } while (!nvgpu_timeout_expired(&timeout)); 1524 status = -EBUSY;
1537 1525
1538 return -ETIMEDOUT; 1526 return status;
1539} 1527}