diff options
| author | Hawking Zhang <[email protected]> | 2022-09-13 11:18:25 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2022-09-19 19:07:24 +0000 |
| commit | ed2eee42d36267bf9e084d7a13fe5c0100d1c64b (patch) | |
| tree | b96801c186c9371d2aaa4a0f9841d84ea2614bda /drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h | |
| parent | drm/amdkfd: Use the consolidated MQD manager functions for GFX11 (diff) | |
| download | kernel-ed2eee42d36267bf9e084d7a13fe5c0100d1c64b.tar.gz kernel-ed2eee42d36267bf9e084d7a13fe5c0100d1c64b.zip | |
drm/amdgpu: save rlcv/rlcp ucode version in amdgpu_gfx
cache rlcv/rlcvp ucode version info in amdgpu_gfx
structure
Signed-off-by: Hawking Zhang <[email protected]>
Reviewed-by: Likun Gao <[email protected]>
Reviewed-by: Feifei Xu <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h index 3975bcaa2c89..1c36235b4539 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h @@ -261,8 +261,12 @@ struct rlc_firmware_header_v2_2 { /* version_major=2, version_minor=3 */ struct rlc_firmware_header_v2_3 { struct rlc_firmware_header_v2_2 v2_2; + uint32_t rlcp_ucode_version; + uint32_t rlcp_ucode_feature_version; uint32_t rlcp_ucode_size_bytes; uint32_t rlcp_ucode_offset_bytes; + uint32_t rlcv_ucode_version; + uint32_t rlcv_ucode_feature_version; uint32_t rlcv_ucode_size_bytes; uint32_t rlcv_ucode_offset_bytes; }; |
