git: 19b779498ca7 - stable/13 - xhci(4): Add quirk for "Fresco Logic FL1009 USB3.0 xHCI Controller".

From: Hans Petter Selasky <hselasky_at_FreeBSD.org>
Date: Thu, 17 Mar 2022 10:00:21 UTC
The branch stable/13 has been updated by hselasky:

URL: https://cgit.FreeBSD.org/src/commit/?id=19b779498ca7c2ea1cc24cf1ede62c22b4d09a42

commit 19b779498ca7c2ea1cc24cf1ede62c22b4d09a42
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-17 09:55:18 +0000

    xhci(4): Add quirk for "Fresco Logic FL1009 USB3.0 xHCI Controller".
    
    Submitted by:           John F Carr <jfc@mit.edu>
    Sponsored by:           NVIDIA Networking
    
    (cherry picked from commit 19837718ab51756183046e5162b8b3b7b3cb8c3d)
---
 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;