/** * amdgpu_ih_process - interrupt handler * * @adev: amdgpu_device pointer * * Interrupt hander (VI), walk the IH ring. * Returns irq process return code. */ int amdgpu_ih_process(struct amdgpu_device *adev) { struct amdgpu_iv_entry entry; u32 wptr; if (!adev->irq.ih.enabled || adev->shutdown) return IRQ_NONE; wptr = amdgpu_ih_get_wptr(adev); restart_ih: /* is somebody else already processing irqs? */ if (atomic_xchg(&adev->irq.ih.lock, 1)) return IRQ_NONE; DRM_DEBUG("%s: rptr %d, wptr %d\n", __func__, adev->irq.ih.rptr, wptr); /* Order reading of wptr vs. reading of IH ring data */ rmb(); while (adev->irq.ih.rptr != wptr) { u32 ring_index = adev->irq.ih.rptr >> 2; /* Prescreening of high-frequency interrupts */ if (!amdgpu_ih_prescreen_iv(adev)) { adev->irq.ih.rptr &= adev->irq.ih.ptr_mask; continue; } /* Before dispatching irq to IP blocks, send it to amdkfd */ amdgpu_amdkfd_interrupt(adev, (const void *) &adev->irq.ih.ring[ring_index]); entry.iv_entry = (const uint32_t *) &adev->irq.ih.ring[ring_index]; amdgpu_ih_decode_iv(adev, &entry); adev->irq.ih.rptr &= adev->irq.ih.ptr_mask; amdgpu_irq_dispatch(adev, &entry); } amdgpu_ih_set_rptr(adev); atomic_set(&adev->irq.ih.lock, 0); /* make sure wptr hasn't changed while processing */ wptr = amdgpu_ih_get_wptr(adev); if (wptr != adev->irq.ih.rptr) goto restart_ih; return IRQ_HANDLED; }
/** * amdgpu_ih_process - interrupt handler * * @adev: amdgpu_device pointer * * Interrupt hander (VI), walk the IH ring. * Returns irq process return code. */ int amdgpu_ih_process(struct amdgpu_device *adev) { struct amdgpu_iv_entry entry; u32 wptr; if (!adev->irq.ih.enabled || adev->shutdown) return IRQ_NONE; wptr = amdgpu_ih_get_wptr(adev); restart_ih: /* is somebody else already processing irqs? */ if (atomic_xchg(&adev->irq.ih.lock, 1)) return IRQ_NONE; DRM_DEBUG("%s: rptr %d, wptr %d\n", __func__, adev->irq.ih.rptr, wptr); /* Order reading of wptr vs. reading of IH ring data */ rmb(); while (adev->irq.ih.rptr != wptr) { amdgpu_ih_decode_iv(adev, &entry); adev->irq.ih.rptr &= adev->irq.ih.ptr_mask; amdgpu_irq_dispatch(adev, &entry); } amdgpu_ih_set_rptr(adev); atomic_set(&adev->irq.ih.lock, 0); /* make sure wptr hasn't changed while processing */ wptr = amdgpu_ih_get_wptr(adev); if (wptr != adev->irq.ih.rptr) goto restart_ih; return IRQ_HANDLED; }