mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 15:12:13 +02:00
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>
This commit is contained in:
parent
e932f4779a
commit
3cf06bd4cf
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user