Skip to content

Commit 9d70b9c

Browse files
committed
Add another ArrowLake MCH ID
1 parent ab28e29 commit 9d70b9c

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

src/include/device/pci_ids.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4431,7 +4431,8 @@
44314431
#define PCI_DID_INTEL_MTL_P_ID_3 0x7d14
44324432
#define PCI_DID_INTEL_MTL_P_ID_4 0x7d15
44334433
#define PCI_DID_INTEL_MTL_P_ID_5 0x7d16
4434-
#define PCI_DID_INTEL_ARL_H_ID 0x7d20
4434+
#define PCI_DID_INTEL_ARL_H_ID_1 0x7d06
4435+
#define PCI_DID_INTEL_ARL_H_ID_2 0x7d20
44354436
#define PCI_DID_INTEL_RPL_HX_ID_1 0xa702
44364437
#define PCI_DID_INTEL_RPL_HX_ID_2 0xa729
44374438
#define PCI_DID_INTEL_RPL_HX_ID_3 0xa728

src/soc/intel/common/block/systemagent/systemagent.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,8 @@ static const unsigned short systemagent_ids[] = {
424424
PCI_DID_INTEL_MTL_P_ID_3,
425425
PCI_DID_INTEL_MTL_P_ID_4,
426426
PCI_DID_INTEL_MTL_P_ID_5,
427-
PCI_DID_INTEL_ARL_H_ID,
427+
PCI_DID_INTEL_ARL_H_ID_1,
428+
PCI_DID_INTEL_ARL_H_ID_2,
428429
PCI_DID_INTEL_GLK_NB,
429430
PCI_DID_INTEL_APL_NB,
430431
PCI_DID_INTEL_CNL_ID_U,

src/soc/intel/meteorlake/bootblock/report_platform.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ static struct {
3535
{ PCI_DID_INTEL_MTL_P_ID_3, "MeteorLake P" },
3636
{ PCI_DID_INTEL_MTL_P_ID_4, "MeteorLake P" },
3737
{ PCI_DID_INTEL_MTL_P_ID_5, "MeteorLake P" },
38-
{ PCI_DID_INTEL_ARL_H_ID, "ArrowLake-H" },
38+
{ PCI_DID_INTEL_ARL_H_ID_1, "ArrowLake-H" },
39+
{ PCI_DID_INTEL_ARL_H_ID_2, "ArrowLake-H" },
3940
};
4041

4142
static struct {

src/soc/intel/meteorlake/chip.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ static const struct {
6565
{ PCI_DID_INTEL_MTL_P_ID_2, MTL_P_282_242_CORE, TDP_15W },
6666
{ PCI_DID_INTEL_MTL_P_ID_3, MTL_P_682_482_CORE, TDP_28W },
6767
{ PCI_DID_INTEL_MTL_P_ID_1, MTL_P_682_482_CORE, TDP_28W },
68-
{ PCI_DID_INTEL_ARL_H_ID, MTL_P_682_482_CORE, TDP_28W },
68+
{ PCI_DID_INTEL_ARL_H_ID_1, MTL_P_682_482_CORE, TDP_28W },
69+
{ PCI_DID_INTEL_ARL_H_ID_2, MTL_P_682_482_CORE, TDP_28W },
6970
};
7071

7172
/* Types of display ports */

0 commit comments

Comments
 (0)