mirror of https://gitee.com/openkylin/linux.git
Revert "drm/amdgpu: fix rmmod KCQ disable failed error"
This reverts commit 446947b44f
.
this patch is incorrrect, amdgpu_ucode_bo_fini always
called after gfx_hw_fini.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
aca31681b1
commit
b693fc1f83
|
@ -1837,9 +1837,6 @@ static int amdgpu_fini(struct amdgpu_device *adev)
|
||||||
adev->ip_blocks[i].status.hw = false;
|
adev->ip_blocks[i].status.hw = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (adev->firmware.load_type == AMDGPU_FW_LOAD_SMU)
|
|
||||||
amdgpu_ucode_fini_bo(adev);
|
|
||||||
|
|
||||||
for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
|
for (i = adev->num_ip_blocks - 1; i >= 0; i--) {
|
||||||
if (!adev->ip_blocks[i].status.sw)
|
if (!adev->ip_blocks[i].status.sw)
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -164,6 +164,9 @@ static int amdgpu_pp_hw_fini(void *handle)
|
||||||
ret = adev->powerplay.ip_funcs->hw_fini(
|
ret = adev->powerplay.ip_funcs->hw_fini(
|
||||||
adev->powerplay.pp_handle);
|
adev->powerplay.pp_handle);
|
||||||
|
|
||||||
|
if (adev->firmware.load_type == AMDGPU_FW_LOAD_SMU)
|
||||||
|
amdgpu_ucode_fini_bo(adev);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -442,6 +442,8 @@ static int psp_hw_fini(void *handle)
|
||||||
if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
|
if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
amdgpu_ucode_fini_bo(adev);
|
||||||
|
|
||||||
psp_ring_destroy(psp, PSP_RING_TYPE__KM);
|
psp_ring_destroy(psp, PSP_RING_TYPE__KM);
|
||||||
|
|
||||||
amdgpu_bo_free_kernel(&psp->tmr_bo, &psp->tmr_mc_addr, &psp->tmr_buf);
|
amdgpu_bo_free_kernel(&psp->tmr_bo, &psp->tmr_mc_addr, &psp->tmr_buf);
|
||||||
|
|
Loading…
Reference in New Issue