git: 19837718ab51 - main - xhci(4): Add quirk for "Fresco Logic FL1009 USB3.0 xHCI Controller".
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 16 Mar 2022 15:49:59 UTC
The branch main has been updated by hselasky:
URL: https://cgit.FreeBSD.org/src/commit/?id=19837718ab51756183046e5162b8b3b7b3cb8c3d
commit 19837718ab51756183046e5162b8b3b7b3cb8c3d
Author: Hans Petter Selasky <hselasky@FreeBSD.org>
AuthorDate: 2022-03-16 15:48:12 +0000
Commit: Hans Petter Selasky <hselasky@FreeBSD.org>
CommitDate: 2022-03-16 15:49:00 +0000
xhci(4): Add quirk for "Fresco Logic FL1009 USB3.0 xHCI Controller".
Submitted by: John F Carr <jfc@mit.edu>
MFC after: 1 week
Sponsored by: NVIDIA Networking
---
sys/dev/usb/controller/xhci_pci.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c
index be12d8c33382..c35cd08b3341 100644
--- a/sys/dev/usb/controller/xhci_pci.c
+++ b/sys/dev/usb/controller/xhci_pci.c
@@ -287,6 +287,7 @@ xhci_pci_attach(device_t self)
sc->sc_io_size = rman_get_size(sc->sc_io_res);
switch (pci_get_devid(self)) {
+ case 0x10091b73: /* Fresco Logic FL1009 USB3.0 xHCI Controller */
case 0x8241104c: /* TUSB73x0 USB3.0 xHCI Controller */
sc->sc_no_deconfigure = 1;
break;