Skip to content

Commit 94bd7bf

Browse files
committed
drm/amdgpu: don't enable SMU on cyan skillfish
Cyan skillfish uses different SMU firmware. Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent fa819e3 commit 94bd7bf

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2124,14 +2124,17 @@ static int amdgpu_discovery_set_smu_ip_blocks(struct amdgpu_device *adev)
21242124
case IP_VERSION(11, 0, 5):
21252125
case IP_VERSION(11, 0, 9):
21262126
case IP_VERSION(11, 0, 7):
2127-
case IP_VERSION(11, 0, 8):
21282127
case IP_VERSION(11, 0, 11):
21292128
case IP_VERSION(11, 0, 12):
21302129
case IP_VERSION(11, 0, 13):
21312130
case IP_VERSION(11, 5, 0):
21322131
case IP_VERSION(11, 5, 2):
21332132
amdgpu_device_ip_block_add(adev, &smu_v11_0_ip_block);
21342133
break;
2134+
case IP_VERSION(11, 0, 8):
2135+
if (adev->apu_flags & AMD_APU_IS_CYAN_SKILLFISH2)
2136+
amdgpu_device_ip_block_add(adev, &smu_v11_0_ip_block);
2137+
break;
21352138
case IP_VERSION(12, 0, 0):
21362139
case IP_VERSION(12, 0, 1):
21372140
amdgpu_device_ip_block_add(adev, &smu_v12_0_ip_block);

0 commit comments

Comments
 (0)