diff options
| author | Le Ma <[email protected]> | 2021-12-20 08:06:25 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-06-09 13:40:17 +0000 |
| commit | d9426c3d9b4e91dda4f1f1684f9296762fafe0de (patch) | |
| tree | e55349122eace373492d8e2af9b94d6172e24bfc /drivers/gpu/drm/amd/amdgpu/amdgpu.h | |
| parent | drm/amdgpu: assign register address for vmhub object on each XCD (diff) | |
| download | kernel-d9426c3d9b4e91dda4f1f1684f9296762fafe0de.tar.gz kernel-d9426c3d9b4e91dda4f1f1684f9296762fafe0de.zip | |
drm/amdgpu: add bitmask to iterate vmhubs
As the layout of VMHUB definition has been changed to cover multiple
XCD/AID case, the original num_vmhubs is not appropriate to do vmhub
iteration any more.
Drop num_vmhubs and introduce vmhubs_mask instead.
v2: switch to the new VMHUB layout
v3: use DECLARE_BITMAP to define vmhubs_mask
Signed-off-by: Le Ma <[email protected]>
Reviewed-by: Christian König <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h index 957b18bda4a7..0f163d266812 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -829,7 +829,7 @@ struct amdgpu_device { dma_addr_t dummy_page_addr; struct amdgpu_vm_manager vm_manager; struct amdgpu_vmhub vmhub[AMDGPU_MAX_VMHUBS]; - unsigned num_vmhubs; + DECLARE_BITMAP(vmhubs_mask, AMDGPU_MAX_VMHUBS); /* memory management */ struct amdgpu_mman mman; |
