diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2025-02-26 20:58:42 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2025-04-21 10:59:01 -0400 |
commit | cb808ab833d1a9bbca0c7ed27e5a31c5c2c9f8cb (patch) | |
tree | 5d62cdd1bb2275c3c85067604d27107da0a3d408 | |
parent | 94a62b0f573f868f6f706d96c8c577c2e9b309e0 (diff) |
drm/amdgpu: add tmz queue parameter to mqd props
Use this to track the whether we want TMZ for queues.
Reviewed-by: Sunil Khatri <sunil.khatri@amd.com>
Reviewed-by: Jesse.Zhang <Jesse.zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h index 68410ba1b944..decf66c2a718 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -835,6 +835,7 @@ struct amdgpu_mqd_prop { uint64_t gds_bkup_addr; uint64_t csa_addr; uint64_t fence_address; + bool tmz_queue; }; struct amdgpu_mqd { |