Skip to content

Commit 5e71637

Browse files
committed
soc/intel/ptl: Add missing graphics IDs
From Table 7. Host Device ID (DID0) and Process Graphics Device ID (DID2): > Note: 1. DID2 value depends on graphics cores and platform > configuration. Default value for 12xe graphics is B080h. > Optional values are: > * B081 > * B082 > * B083 > * B08F > Refer to Panther Lake GPU Dynamic Branding Technical Advisory (#851572). Fixes graphics init on Clevo L240JUX, which has DID 0xb082. Change-Id: I5354b53ebe7f2c02db3557a26f2b978b98a6390f Ref: Core Ultra Series 3 EDS, Volume 1 (#815002, r2.2) Signed-off-by: Tim Crawford <tcrawford@system76.com>
1 parent a2577fa commit 5e71637

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

src/include/device/pci_ids.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4553,6 +4553,9 @@
45534553
#define PCI_DID_INTEL_PTL_H_GT2_2 0xb0a0
45544554
#define PCI_DID_INTEL_PTL_H_GT2_3 0xb0b0
45554555
#define PCI_DID_INTEL_PTL_H_GT2_4 0xb08f
4556+
#define PCI_DID_INTEL_PTL_H_GT2_5 0xb081
4557+
#define PCI_DID_INTEL_PTL_H_GT2_6 0xb082
4558+
#define PCI_DID_INTEL_PTL_H_GT2_7 0xb083
45564559
#define PCI_DID_INTEL_WCL_GT2_1 0xfd80
45574560
#define PCI_DID_INTEL_WCL_GT2_2 0xfd81
45584561
#define PCI_DID_INTEL_NVL_GT2_1 0xd741

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,9 @@ static const unsigned short pci_device_ids[] = {
373373
PCI_DID_INTEL_PTL_H_GT2_2,
374374
PCI_DID_INTEL_PTL_H_GT2_3,
375375
PCI_DID_INTEL_PTL_H_GT2_4,
376+
PCI_DID_INTEL_PTL_H_GT2_5,
377+
PCI_DID_INTEL_PTL_H_GT2_6,
378+
PCI_DID_INTEL_PTL_H_GT2_7,
376379
PCI_DID_INTEL_LNL_M_GT2,
377380
PCI_DID_INTEL_RPL_U_GT1,
378381
PCI_DID_INTEL_RPL_U_GT2,

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ static struct {
157157
{ PCI_DID_INTEL_PTL_H_GT2_2, "Pantherlake-H GT2" },
158158
{ PCI_DID_INTEL_PTL_H_GT2_3, "Pantherlake-H GT2" },
159159
{ PCI_DID_INTEL_PTL_H_GT2_4, "Pantherlake-H GT2" },
160+
{ PCI_DID_INTEL_PTL_H_GT2_5, "Pantherlake-H GT2" },
161+
{ PCI_DID_INTEL_PTL_H_GT2_6, "Pantherlake-H GT2" },
162+
{ PCI_DID_INTEL_PTL_H_GT2_7, "Pantherlake-H GT2" },
160163
{ PCI_DID_INTEL_WCL_GT2_1, "Wildcatlake GT2" },
161164
{ PCI_DID_INTEL_WCL_GT2_2, "Wildcatlake GT2" },
162165
};

0 commit comments

Comments
 (0)