Skip to content

Commit 899663c

Browse files
committed
Add another ARL-H GPU ID
1 parent ce855c5 commit 899663c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/include/device/pci_ids.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4286,7 +4286,8 @@
42864286
#define PCI_DID_INTEL_MTL_P_GT2_3 0x7d55
42874287
#define PCI_DID_INTEL_MTL_P_GT2_4 0x7d60
42884288
#define PCI_DID_INTEL_MTL_P_GT2_5 0x7dd5
4289-
#define PCI_DID_INTEL_ARL_H_GT2 0x7d51
4289+
#define PCI_DID_INTEL_ARL_H_GT2_1 0x7d51
4290+
#define PCI_DID_INTEL_ARL_H_GT2_2 0x7dd1
42904291
#define PCI_DID_INTEL_RPL_HX_GT1 0xa788
42914292
#define PCI_DID_INTEL_RPL_HX_GT2 0xa78b
42924293
#define PCI_DID_INTEL_RPL_HX_GT3 0x4688

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,8 @@ static const unsigned short pci_device_ids[] = {
363363
PCI_DID_INTEL_MTL_P_GT2_3,
364364
PCI_DID_INTEL_MTL_P_GT2_4,
365365
PCI_DID_INTEL_MTL_P_GT2_5,
366-
PCI_DID_INTEL_ARL_H_GT2,
366+
PCI_DID_INTEL_ARL_H_GT2_1,
367+
PCI_DID_INTEL_ARL_H_GT2_2,
367368
PCI_DID_INTEL_APL_IGD_HD_505,
368369
PCI_DID_INTEL_APL_IGD_HD_500,
369370
PCI_DID_INTEL_CNL_GT2_ULX_1,

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ static struct {
6464
{ PCI_DID_INTEL_MTL_P_GT2_3, "MeteorLake-P GT2" },
6565
{ PCI_DID_INTEL_MTL_P_GT2_4, "Meteorlake-P GT2" },
6666
{ PCI_DID_INTEL_MTL_P_GT2_5, "Meteorlake-P GT2" },
67-
{ PCI_DID_INTEL_ARL_H_GT2, "ArrowLake-H GT2" },
67+
{ PCI_DID_INTEL_ARL_H_GT2_1, "ArrowLake-H GT2" },
68+
{ PCI_DID_INTEL_ARL_H_GT2_2, "ArrowLake-H GT2" },
6869
};
6970

7071
static inline uint8_t get_dev_revision(pci_devfn_t dev)

0 commit comments

Comments
 (0)