From 73ca295074b2e90e9169ba3a253734ea489d640a Mon Sep 17 00:00:00 2001 From: mav Date: Mon, 28 Mar 2016 09:24:47 +0000 Subject: MFC r275137 (by adrian): Add PCI ID for Intel Lynx Point LP controller. PR: kern/195398 --- sys/dev/usb/controller/ehci_pci.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/dev/usb/controller/ehci_pci.c') diff --git a/sys/dev/usb/controller/ehci_pci.c b/sys/dev/usb/controller/ehci_pci.c index 7952c8b..b71fb41 100644 --- a/sys/dev/usb/controller/ehci_pci.c +++ b/sys/dev/usb/controller/ehci_pci.c @@ -168,6 +168,8 @@ ehci_pci_match(device_t self) return ("Intel Wildcat Point USB 2.0 controller USB-A"); case 0x8cad8086: return ("Intel Wildcat Point USB 2.0 controller USB-B"); + case 0x9c268086: + return ("Intel Lynx Point LP USB 2.0 controller USB"); case 0x00e01033: return ("NEC uPD 720100 USB 2.0 controller"); -- cgit v1.1 From dac72dea29f7c88cc07447988ee8309aaf6f9b98 Mon Sep 17 00:00:00 2001 From: mav Date: Mon, 28 Mar 2016 09:26:00 +0000 Subject: MFC r295463 (by hselasky): Correct PCI device description. --- sys/dev/usb/controller/ehci_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/usb/controller/ehci_pci.c') diff --git a/sys/dev/usb/controller/ehci_pci.c b/sys/dev/usb/controller/ehci_pci.c index b71fb41..eacaa47 100644 --- a/sys/dev/usb/controller/ehci_pci.c +++ b/sys/dev/usb/controller/ehci_pci.c @@ -172,7 +172,7 @@ ehci_pci_match(device_t self) return ("Intel Lynx Point LP USB 2.0 controller USB"); case 0x00e01033: - return ("NEC uPD 720100 USB 2.0 controller"); + return ("NEC uPD 72010x USB 2.0 controller"); case 0x006810de: return "NVIDIA nForce2 USB 2.0 controller"; -- cgit v1.1 From a2301ca6a5a56e983af9ca15b1df599927568b4c Mon Sep 17 00:00:00 2001 From: mav Date: Mon, 28 Mar 2016 09:26:44 +0000 Subject: MFC r297049: Add IDs for Intel Wellsburg USB controllers. --- sys/dev/usb/controller/ehci_pci.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sys/dev/usb/controller/ehci_pci.c') diff --git a/sys/dev/usb/controller/ehci_pci.c b/sys/dev/usb/controller/ehci_pci.c index eacaa47..1fab1d3 100644 --- a/sys/dev/usb/controller/ehci_pci.c +++ b/sys/dev/usb/controller/ehci_pci.c @@ -168,6 +168,10 @@ ehci_pci_match(device_t self) return ("Intel Wildcat Point USB 2.0 controller USB-A"); case 0x8cad8086: return ("Intel Wildcat Point USB 2.0 controller USB-B"); + case 0x8d268086: + return ("Intel Wellsburg USB 2.0 controller"); + case 0x8d2d8086: + return ("Intel Wellsburg USB 2.0 controller"); case 0x9c268086: return ("Intel Lynx Point LP USB 2.0 controller USB"); -- cgit v1.1