diff options
Diffstat (limited to 'drivers/gpu/drm/vc4/vc4_irq.c')
| -rw-r--r-- | drivers/gpu/drm/vc4/vc4_irq.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_irq.c b/drivers/gpu/drm/vc4/vc4_irq.c index 2eacfb6773d2..1e6db0121ccd 100644 --- a/drivers/gpu/drm/vc4/vc4_irq.c +++ b/drivers/gpu/drm/vc4/vc4_irq.c @@ -105,7 +105,7 @@ vc4_overflow_mem_work(struct work_struct *work)  	}  	vc4->bin_alloc_overflow = BIT(bin_bo_slot); -	V3D_WRITE(V3D_BPOA, bo->base.paddr + bin_bo_slot * vc4->bin_alloc_size); +	V3D_WRITE(V3D_BPOA, bo->base.dma_addr + bin_bo_slot * vc4->bin_alloc_size);  	V3D_WRITE(V3D_BPOS, bo->base.base.size);  	V3D_WRITE(V3D_INTCTL, V3D_INT_OUTOMEM);  	V3D_WRITE(V3D_INTENA, V3D_INT_OUTOMEM); @@ -295,7 +295,7 @@ vc4_irq_disable(struct drm_device *dev)  	V3D_WRITE(V3D_INTCTL, V3D_DRIVER_IRQS);  	/* Finish any interrupt handler still in flight. */ -	disable_irq(vc4->irq); +	synchronize_irq(vc4->irq);  	cancel_work_sync(&vc4->overflow_mem_work);  }  |