The branch main has been updated by thj: URL: https://cgit.FreeBSD.org/src/commit/?id=f327659e045019ac36f32c952c9df723927c3da9
commit f327659e045019ac36f32c952c9df723927c3da9 Author: Tom Jones <[email protected]> AuthorDate: 2025-12-05 10:04:58 +0000 Commit: Tom Jones <[email protected]> CommitDate: 2025-12-05 10:16:59 +0000 xhci: Add some Alder lake device ids Reviewed By: aokblast Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D52994 --- sys/dev/usb/controller/xhci_pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c index 820fb2f738a1..e5424163baa6 100644 --- a/sys/dev/usb/controller/xhci_pci.c +++ b/sys/dev/usb/controller/xhci_pci.c @@ -181,6 +181,8 @@ xhci_pci_match(device_t self) case 0x4b7d8086: return ("Intel Elkhart Lake USB 3.1 controller"); case 0x51ed8086: + case 0x54ed8086: + case 0x5fed8086: return ("Intel Alder Lake USB 3.2 controller"); case 0x5aa88086: return ("Intel Apollo Lake USB 3.0 controller");
