Skip to content

Commit 4b721ed

Browse files
candicelicyalexdeucher
authored andcommitted
drm/amdgpu: Only support RAS EEPROM on dGPU platform
RAS EEPROM device is only supported on dGPU platform for smu v13_0_6. Signed-off-by: Candice Li <candice.li@amd.com> Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent fd27af4 commit 4b721ed

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,10 @@ static bool __is_ras_eeprom_supported(struct amdgpu_device *adev)
158158
case IP_VERSION(11, 0, 7): /* Sienna cichlid */
159159
case IP_VERSION(13, 0, 0):
160160
case IP_VERSION(13, 0, 2): /* Aldebaran */
161-
case IP_VERSION(13, 0, 6):
162161
case IP_VERSION(13, 0, 10):
163162
return true;
163+
case IP_VERSION(13, 0, 6):
164+
return (adev->gmc.is_app_apu) ? false : true;
164165
default:
165166
return false;
166167
}

0 commit comments

Comments
 (0)