Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/amd/display: add more cyan skillfish devices

Add PCI IDs to support display probe for cyan skillfish
family of SOCs.

Acked-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

+12 -1
+7 -1
drivers/gpu/drm/amd/display/dc/core/dc_resource.c
··· 165 165 166 166 case FAMILY_NV: 167 167 dc_version = DCN_VERSION_2_0; 168 - if (asic_id.chip_id == DEVICE_ID_NV_13FE || asic_id.chip_id == DEVICE_ID_NV_143F) { 168 + if (asic_id.chip_id == DEVICE_ID_NV_13FE || 169 + asic_id.chip_id == DEVICE_ID_NV_143F || 170 + asic_id.chip_id == DEVICE_ID_NV_13F9 || 171 + asic_id.chip_id == DEVICE_ID_NV_13FA || 172 + asic_id.chip_id == DEVICE_ID_NV_13FB || 173 + asic_id.chip_id == DEVICE_ID_NV_13FC || 174 + asic_id.chip_id == DEVICE_ID_NV_13DB) { 169 175 dc_version = DCN_VERSION_2_01; 170 176 break; 171 177 }
+5
drivers/gpu/drm/amd/display/include/dal_asic_id.h
··· 213 213 #endif 214 214 #define DEVICE_ID_NV_13FE 0x13FE // CYAN_SKILLFISH 215 215 #define DEVICE_ID_NV_143F 0x143F 216 + #define DEVICE_ID_NV_13F9 0x13F9 217 + #define DEVICE_ID_NV_13FA 0x13FA 218 + #define DEVICE_ID_NV_13FB 0x13FB 219 + #define DEVICE_ID_NV_13FC 0x13FC 220 + #define DEVICE_ID_NV_13DB 0x13DB 216 221 #define FAMILY_VGH 144 217 222 #define DEVICE_ID_VGH_163F 0x163F 218 223 #define DEVICE_ID_VGH_1435 0x1435