Commit 29e41c91 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/amdgpu/swsmu: fix is_support_sw_smu() for VEGA20



VEGA20 is 11.0.2, but it's handled by powerplay, not
swsmu.

Fixes: a8967967 ("drm/amdgpu/amdgpu_smu: convert to IP version checking")
Reviewed-by: default avatarEvan Quan <evan.quan@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 43fc10c1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -455,6 +455,10 @@ static int smu_get_power_num_states(void *handle,

bool is_support_sw_smu(struct amdgpu_device *adev)
{
	/* vega20 is 11.0.2, but it's supported via the powerplay code */
	if (adev->asic_type == CHIP_VEGA20)
		return false;

	if (adev->ip_versions[MP1_HWIP][0] >= IP_VERSION(11, 0, 0))
		return true;