Commit 3cf06bd4 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/amd/display: add more cyan skillfish devices



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

Acked-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e932f477
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -165,7 +165,13 @@ enum dce_version resource_parse_asic_id(struct hw_asic_id asic_id)

	case FAMILY_NV:
		dc_version = DCN_VERSION_2_0;
		if (asic_id.chip_id == DEVICE_ID_NV_13FE || asic_id.chip_id == DEVICE_ID_NV_143F) {
		if (asic_id.chip_id == DEVICE_ID_NV_13FE ||
		    asic_id.chip_id == DEVICE_ID_NV_143F ||
		    asic_id.chip_id == DEVICE_ID_NV_13F9 ||
		    asic_id.chip_id == DEVICE_ID_NV_13FA ||
		    asic_id.chip_id == DEVICE_ID_NV_13FB ||
		    asic_id.chip_id == DEVICE_ID_NV_13FC ||
		    asic_id.chip_id == DEVICE_ID_NV_13DB) {
			dc_version = DCN_VERSION_2_01;
			break;
		}
+5 −0
Original line number Diff line number Diff line
@@ -213,6 +213,11 @@ enum {
#endif
#define DEVICE_ID_NV_13FE 0x13FE  // CYAN_SKILLFISH
#define DEVICE_ID_NV_143F 0x143F
#define DEVICE_ID_NV_13F9 0x13F9
#define DEVICE_ID_NV_13FA 0x13FA
#define DEVICE_ID_NV_13FB 0x13FB
#define DEVICE_ID_NV_13FC 0x13FC
#define DEVICE_ID_NV_13DB 0x13DB
#define FAMILY_VGH 144
#define DEVICE_ID_VGH_163F 0x163F
#define DEVICE_ID_VGH_1435 0x1435