diff options
-rw-r--r-- | src/include/device/pci_ids.h | 4 | ||||
-rw-r--r-- | src/soc/intel/common/block/graphics/graphics.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 2875dff791..3dd3ec9b59 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4192,7 +4192,9 @@ #define PCI_DID_INTEL_LNL_M_GT2 0x64a0 #define PCI_DID_INTEL_TWL_GT1_1 0x46d3 #define PCI_DID_INTEL_TWL_GT1_2 0x46d4 -#define PCI_DID_INTEL_PTL_GT2 0x64a0 +#define PCI_DID_INTEL_PTL_U_GT2_1 0xb090 +#define PCI_DID_INTEL_PTL_H_GT2_1 0xb080 +#define PCI_DID_INTEL_PTL_H_GT2_2 0xb0a0 /* Intel Northbridge Ids */ #define PCI_DID_INTEL_APL_NB 0x5af0 diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c index 1606b96485..f1e7d7e547 100644 --- a/src/soc/intel/common/block/graphics/graphics.c +++ b/src/soc/intel/common/block/graphics/graphics.c @@ -343,7 +343,9 @@ const struct device_operations graphics_ops = { }; static const unsigned short pci_device_ids[] = { - PCI_DID_INTEL_PTL_GT2, + PCI_DID_INTEL_PTL_U_GT2_1, + PCI_DID_INTEL_PTL_H_GT2_1, + PCI_DID_INTEL_PTL_H_GT2_2, PCI_DID_INTEL_LNL_M_GT2, PCI_DID_INTEL_RPL_U_GT1, PCI_DID_INTEL_RPL_U_GT2, |