drm/amdgpu: Fix the null pointer when load rlc firmware
If the RLC firmware is invalid because of wrong header size, the pointer to the rlc firmware is released in function amdgpu_ucode_request. There will be a null pointer error in subsequent use. So skip validation to fix it. Signed-off-by: Ma Jun <Jun.Ma2@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
4e2965bd3b
commit
849e133c97
1 changed files with 6 additions and 9 deletions
|
@ -3996,16 +3996,13 @@ static int gfx_v10_0_init_microcode(struct amdgpu_device *adev)
|
||||||
|
|
||||||
if (!amdgpu_sriov_vf(adev)) {
|
if (!amdgpu_sriov_vf(adev)) {
|
||||||
snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_rlc.bin", ucode_prefix);
|
snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_rlc.bin", ucode_prefix);
|
||||||
err = amdgpu_ucode_request(adev, &adev->gfx.rlc_fw, fw_name);
|
err = request_firmware(&adev->gfx.rlc_fw, fw_name, adev->dev);
|
||||||
/* don't check this. There are apparently firmwares in the wild with
|
|
||||||
* incorrect size in the header
|
|
||||||
*/
|
|
||||||
if (err == -ENODEV)
|
|
||||||
goto out;
|
|
||||||
if (err)
|
if (err)
|
||||||
dev_dbg(adev->dev,
|
goto out;
|
||||||
"gfx10: amdgpu_ucode_request() failed \"%s\"\n",
|
|
||||||
fw_name);
|
/* don't validate this firmware. There are apparently firmwares
|
||||||
|
* in the wild with incorrect size in the header
|
||||||
|
*/
|
||||||
rlc_hdr = (const struct rlc_firmware_header_v2_0 *)adev->gfx.rlc_fw->data;
|
rlc_hdr = (const struct rlc_firmware_header_v2_0 *)adev->gfx.rlc_fw->data;
|
||||||
version_major = le16_to_cpu(rlc_hdr->header.header_version_major);
|
version_major = le16_to_cpu(rlc_hdr->header.header_version_major);
|
||||||
version_minor = le16_to_cpu(rlc_hdr->header.header_version_minor);
|
version_minor = le16_to_cpu(rlc_hdr->header.header_version_minor);
|
||||||
|
|
Loading…
Add table
Reference in a new issue