]> git.baikalelectronics.ru Git - kernel.git/commit
drm/amd/powerplay: avoid using pm_en before it is initialized revised
authorTiecheng Zhou <Tiecheng.Zhou@amd.com>
Sun, 26 Apr 2020 11:03:17 +0000 (19:03 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 28 Apr 2020 19:29:08 +0000 (15:29 -0400)
commitb4bad6282889b69dd32741ab3cbe6c2d4ad4d3fc
treea38ed3434d484a3f715ab2b0497d217e33e9d5d4
parentf23e2eb339f5f8d5e18c99cd5bc8d280ec62283c
drm/amd/powerplay: avoid using pm_en before it is initialized revised

hwmgr->pm_en is initialized at hwmgr_hw_init.

during amdgpu_device_init, there is amdgpu_asic_reset that calls to
soc15_asic_reset (for V320 usecase, Vega10 asic), in which:
1) soc15_asic_reset_method calls to pp_get_asic_baco_capability (pm_en)
2) soc15_asic_baco_reset calls to pp_set_asic_baco_state (pm_en)

pm_en is used in the above two cases while it has not yet been initialized

So avoid using pm_en in the above two functions for V320 passthrough.

Reviewed-by: Evan Quan <evan.quan@amd.com>
Signed-off-by: Tiecheng Zhou <Tiecheng.Zhou@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/amd_powerplay.c