Skip to content

Commit 3575254

Browse files
aborzeszwesteri
authored andcommitted
thunderbolt: Add support for Intel Wildcat Lake
Intel Wildcat Lake derives its Thunderbolt/USB4 controller from Lunar Lake platform. Add Wildcat Lake PCI ID to the driver list of supported devices. Signed-off-by: Alan Borzeszkowski <alan.borzeszkowski@linux.intel.com> Cc: stable@vger.kernel.org Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
1 parent 211ddde commit 3575254

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

drivers/thunderbolt/nhi.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,6 +1538,8 @@ static struct pci_device_id nhi_ids[] = {
15381538
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
15391539
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_PTL_P_NHI1),
15401540
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
1541+
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_WCL_NHI0),
1542+
.driver_data = (kernel_ulong_t)&icl_nhi_ops },
15411543
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI) },
15421544
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI) },
15431545

drivers/thunderbolt/nhi.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ extern const struct tb_nhi_ops icl_nhi_ops;
7575
#define PCI_DEVICE_ID_INTEL_TITAN_RIDGE_DD_BRIDGE 0x15ef
7676
#define PCI_DEVICE_ID_INTEL_ADL_NHI0 0x463e
7777
#define PCI_DEVICE_ID_INTEL_ADL_NHI1 0x466d
78+
#define PCI_DEVICE_ID_INTEL_WCL_NHI0 0x4d33
7879
#define PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI 0x5781
7980
#define PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI 0x5784
8081
#define PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HUB_80G_BRIDGE 0x5786

0 commit comments

Comments
 (0)