diff options
| author | Likun Gao <Likun.Gao@amd.com> | 2020-05-06 16:16:08 +0800 | 
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2020-07-01 01:59:13 -0400 | 
| commit | 43a188e0e1e0a08744020dd819f587a317b0f9cc (patch) | |
| tree | a65078b940f46bd2f241bf4b1e8827dd20edb684 /drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c | |
| parent | 390d59be11c5c042084b4329220c066b6d161cce (diff) | |
drm/amdgpu/psp: initialization PSP SPL fw
Support for psp firmware header version v1_3 initialization and
information print.
Signed-off-by: Likun Gao <Likun.Gao@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c | 24 | 
1 files changed, 24 insertions, 0 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c index cf3438696fce..744404a05fee 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c @@ -279,6 +279,30 @@ void amdgpu_ucode_print_psp_hdr(const struct common_firmware_header *hdr)  			DRM_DEBUG("kdb_size_bytes: %u\n",  				  le32_to_cpu(psp_hdr_v1_2->kdb_size_bytes));  		} +		if (version_minor == 3) { +			const struct psp_firmware_header_v1_1 *psp_hdr_v1_1 = +				container_of(psp_hdr, struct psp_firmware_header_v1_1, v1_0); +			const struct psp_firmware_header_v1_3 *psp_hdr_v1_3 = +				container_of(psp_hdr_v1_1, struct psp_firmware_header_v1_3, v1_1); +			DRM_DEBUG("toc_header_version: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->v1_1.toc_header_version)); +			DRM_DEBUG("toc_offset_bytes: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->v1_1.toc_offset_bytes)); +			DRM_DEBUG("toc_size_bytes: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->v1_1.toc_size_bytes)); +			DRM_DEBUG("kdb_header_version: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->v1_1.kdb_header_version)); +			DRM_DEBUG("kdb_offset_bytes: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->v1_1.kdb_offset_bytes)); +			DRM_DEBUG("kdb_size_bytes: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->v1_1.kdb_size_bytes)); +			DRM_DEBUG("spl_header_version: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->spl_header_version)); +			DRM_DEBUG("spl_offset_bytes: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->spl_offset_bytes)); +			DRM_DEBUG("spl_size_bytes: %u\n", +				  le32_to_cpu(psp_hdr_v1_3->spl_size_bytes)); +		}  	} else {  		DRM_ERROR("Unknown PSP ucode version: %u.%u\n",  			  version_major, version_minor); | 
