diff options
| author | Le Ma <[email protected]> | 2022-02-25 07:14:19 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-06-09 13:43:50 +0000 |
| commit | 0d81101c190d1835f1bfba85dc3d65b9f9cacd68 (patch) | |
| tree | 2182cb404319b19d19570d4d1eb1ff8da1788eda /drivers/gpu/drm/amd/amdgpu/amdgpu_irq.h | |
| parent | drm/amdgpu: correct the vmhub reference for each XCD in gfxhub init (diff) | |
| download | kernel-0d81101c190d1835f1bfba85dc3d65b9f9cacd68.tar.gz kernel-0d81101c190d1835f1bfba85dc3d65b9f9cacd68.zip | |
drm/amdgpu: complement the IH node_id table for multiple AIDs
With different node_id, the SDMA interrupt from multiple AIDs can be
distinguished by sw driver.
Signed-off-by: Le Ma <[email protected]>
Acked-by: Felix Kuehling <[email protected]>
Reviewed-by: Lijo Lazar <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_irq.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_irq.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.h index efe8a278cbdf..04c0b4fa17a4 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.h @@ -102,13 +102,17 @@ struct amdgpu_irq { bool retry_cam_enabled; }; -enum interrupt_node_id_per_xcp { +enum interrupt_node_id_per_aid { + AID0_NODEID = 0, XCD0_NODEID = 1, XCD1_NODEID = 2, + AID1_NODEID = 4, XCD2_NODEID = 5, XCD3_NODEID = 6, + AID2_NODEID = 8, XCD4_NODEID = 9, XCD5_NODEID = 10, + AID3_NODEID = 12, XCD6_NODEID = 13, XCD7_NODEID = 14, NODEID_MAX, |
