diff options
-rw-r--r-- | src/include/device/pci_ids.h | 2 | ||||
-rw-r--r-- | src/soc/intel/common/block/systemagent/systemagent.c | 2 | ||||
-rw-r--r-- | src/soc/intel/pantherlake/bootblock/report_platform.c | 2 | ||||
-rw-r--r-- | src/soc/intel/pantherlake/chip.h | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 4730f3f2d9..638689144d 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4456,6 +4456,8 @@ #define PCI_DID_INTEL_PTL_U_ID_1 0xb000 #define PCI_DID_INTEL_PTL_H_ID_1 0xb001 #define PCI_DID_INTEL_PTL_H_ID_2 0xb002 +#define PCI_DID_INTEL_PTL_H_ID_3 0xb004 +#define PCI_DID_INTEL_PTL_H_ID_4 0xb00a #define PCI_DID_INTEL_SNR_ID 0x09a2 /* Intel SMBUS device Ids */ diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c index 3b7163367f..b35820234e 100644 --- a/src/soc/intel/common/block/systemagent/systemagent.c +++ b/src/soc/intel/common/block/systemagent/systemagent.c @@ -427,6 +427,8 @@ static const unsigned short systemagent_ids[] = { PCI_DID_INTEL_PTL_U_ID_1, PCI_DID_INTEL_PTL_H_ID_1, PCI_DID_INTEL_PTL_H_ID_2, + PCI_DID_INTEL_PTL_H_ID_3, + PCI_DID_INTEL_PTL_H_ID_4, PCI_DID_INTEL_LNL_M_ID, PCI_DID_INTEL_LNL_M_ID_1, PCI_DID_INTEL_MTL_M_ID, diff --git a/src/soc/intel/pantherlake/bootblock/report_platform.c b/src/soc/intel/pantherlake/bootblock/report_platform.c index 22cda26982..55afc49219 100644 --- a/src/soc/intel/pantherlake/bootblock/report_platform.c +++ b/src/soc/intel/pantherlake/bootblock/report_platform.c @@ -31,6 +31,8 @@ static struct { { PCI_DID_INTEL_PTL_U_ID_1, "Pantherlake U" }, { PCI_DID_INTEL_PTL_H_ID_1, "Pantherlake H" }, { PCI_DID_INTEL_PTL_H_ID_2, "Pantherlake H" }, + { PCI_DID_INTEL_PTL_H_ID_3, "Pantherlake H" }, + { PCI_DID_INTEL_PTL_H_ID_4, "Pantherlake H" }, }; static struct { diff --git a/src/soc/intel/pantherlake/chip.h b/src/soc/intel/pantherlake/chip.h index d9028653a6..59aad4f7ce 100644 --- a/src/soc/intel/pantherlake/chip.h +++ b/src/soc/intel/pantherlake/chip.h @@ -66,6 +66,8 @@ static const struct { { PCI_DID_INTEL_PTL_U_ID_1, PTL_U_1_CORE, TDP_15W }, { PCI_DID_INTEL_PTL_H_ID_1, PTL_H_1_CORE, TDP_25W }, { PCI_DID_INTEL_PTL_H_ID_2, PTL_H_3_CORE, TDP_45W }, + { PCI_DID_INTEL_PTL_H_ID_3, PTL_H_1_CORE, TDP_25W }, + { PCI_DID_INTEL_PTL_H_ID_4, PTL_H_1_CORE, TDP_25W }, }; /* Types of display ports */ |