diff options
author | Hawking Zhang <Hawking.Zhang@amd.com> | 2019-07-11 00:13:54 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2019-07-12 08:00:10 -0500 |
commit | 4298935924a9057f2424636d1d29ae7caef4764a (patch) | |
tree | de630bc6aa76bf1fb13dedd92131415c35d9734d /drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h | |
parent | 3840fe256ae431d79e93988757a6f89db8192237 (diff) | |
download | linux-4298935924a9057f2424636d1d29ae7caef4764a.tar.gz linux-4298935924a9057f2424636d1d29ae7caef4764a.tar.bz2 linux-4298935924a9057f2424636d1d29ae7caef4764a.zip |
drm/amdgpu: support key database loading for navi10
Starting from navi10, driver should send Key Database Load command
to bootloader before loading sys_drv and sos
Signed-off-by: John Clements <John.Clements@amd.com>
Signed-off-by: Hawking Zhang <Hawking.Zhang@amd.com>
Reviewed-by: Xiaojie Yuan <xiaojie.yuan@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h index f46944453c6e..c1fb6dc86440 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.h @@ -85,6 +85,9 @@ struct psp_firmware_header_v1_1 { uint32_t toc_header_version; uint32_t toc_offset_bytes; uint32_t toc_size_bytes; + uint32_t kdb_header_version; + uint32_t kdb_offset_bytes; + uint32_t kdb_size_bytes; }; /* version_major=1, version_minor=0 */ |