diff options
| author | Alex Deucher <[email protected]> | 2025-04-16 20:43:52 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2025-04-22 12:51:45 +0000 |
| commit | 11772eb73bb75558b530162fc0eb669e5bbc1d19 (patch) | |
| tree | 68b756e6b6f29c9b89f68d9644de6bc2fd687da5 /drivers/gpu/drm/amd/amdgpu/amdgpu_userqueue.h | |
| parent | drm/amdgpu: Add queue id support to the user queue wait IOCTL (diff) | |
| download | kernel-11772eb73bb75558b530162fc0eb669e5bbc1d19.tar.gz kernel-11772eb73bb75558b530162fc0eb669e5bbc1d19.zip | |
drm/amdgpu/userq: add a helper to check which IPs are enabled
Add a helper to get a mask of IPs which support user queues.
Use this in the INFO IOCTL to get the IP mask to replace
the current code.
Reviewed-by: Prike Liang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_userqueue.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_userqueue.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_userqueue.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_userqueue.h index b2da513b3d02..b49f147eb69c 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_userqueue.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_userqueue.h @@ -113,6 +113,8 @@ uint64_t amdgpu_userqueue_get_doorbell_index(struct amdgpu_userq_mgr *uq_mgr, struct amdgpu_db_info *db_info, struct drm_file *filp); +u32 amdgpu_userqueue_get_supported_ip_mask(struct amdgpu_device *adev); + int amdgpu_userq_suspend(struct amdgpu_device *adev); int amdgpu_userq_resume(struct amdgpu_device *adev); |
