Skip to content

Commit 8644b48

Browse files
committed
thunderbolt: Add support for Intel Panther Lake-M/P
Intel Panther Lake-M/P has the same integrated Thunderbolt/USB4 controller as Lunar Lake. Add these PCI IDs to the driver list of supported devices. Cc: [email protected] Signed-off-by: Mika Westerberg <[email protected]>
1 parent fac04ef commit 8644b48

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

drivers/thunderbolt/nhi.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,6 +1520,14 @@ static struct pci_device_id nhi_ids[] = {
15201520
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
15211521
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_LNL_NHI1),
15221522
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
1523+
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_PTL_M_NHI0),
1524+
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
1525+
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_PTL_M_NHI1),
1526+
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
1527+
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_PTL_P_NHI0),
1528+
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
1529+
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_PTL_P_NHI1),
1530+
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
15231531
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI) },
15241532
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI) },
15251533

drivers/thunderbolt/nhi.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ extern const struct tb_nhi_ops icl_nhi_ops;
9292
#define PCI_DEVICE_ID_INTEL_RPL_NHI1 0xa76d
9393
#define PCI_DEVICE_ID_INTEL_LNL_NHI0 0xa833
9494
#define PCI_DEVICE_ID_INTEL_LNL_NHI1 0xa834
95+
#define PCI_DEVICE_ID_INTEL_PTL_M_NHI0 0xe333
96+
#define PCI_DEVICE_ID_INTEL_PTL_M_NHI1 0xe334
97+
#define PCI_DEVICE_ID_INTEL_PTL_P_NHI0 0xe433
98+
#define PCI_DEVICE_ID_INTEL_PTL_P_NHI1 0xe434
9599

96100
#define PCI_CLASS_SERIAL_USB_USB4 0x0c0340
97101

0 commit comments

Comments
 (0)