git: ce60a1fe6abe - stable/13 - xhci: add PCI IDs for USB controllers found on Supermicro M12SWA-TF

From: Hans Petter Selasky <hselasky_at_FreeBSD.org>
Date: Thu, 24 Feb 2022 10:04:19 UTC
The branch stable/13 has been updated by hselasky:

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

commit ce60a1fe6abec7ae82ba746169471b72a842d62d
Author:     Hans Petter Selasky <hselasky@FreeBSD.org>
AuthorDate: 2022-02-24 09:58:39 +0000
Commit:     Hans Petter Selasky <hselasky@FreeBSD.org>
CommitDate: 2022-02-24 09:58:39 +0000

    xhci: add PCI IDs for USB controllers found on Supermicro M12SWA-TF
    
    (cherry picked from commit 4b4cce02ac01a943aa1816e7ea9ae6017539e7bb)
---
 sys/dev/usb/controller/xhci_pci.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c
index 6b7715955374..a1a7f86d97db 100644
--- a/sys/dev/usb/controller/xhci_pci.c
+++ b/sys/dev/usb/controller/xhci_pci.c
@@ -98,6 +98,10 @@ xhci_pci_match(device_t self)
 	switch (device_id) {
 	case 0x145c1022:
 		return ("AMD KERNCZ USB 3.0 controller");
+	case 0x148c1022:
+		return ("AMD Starship USB 3.0 controller");
+	case 0x149c1022:
+		return ("AMD Matisse USB 3.0 controller");
 	case 0x43ba1022:
 		return ("AMD X399 USB 3.0 controller");
 	case 0x43b91022: /* X370 */
@@ -125,6 +129,8 @@ xhci_pci_match(device_t self)
 		return ("ASMedia ASM1042 USB 3.0 controller");
 	case 0x11421b21:
 		return ("ASMedia ASM1042A USB 3.0 controller");
+	case 0x32421b21:
+		return ("ASMedia ASM3242 USB 3.2 controller");
 
 	case 0x0b278086:
 		return ("Intel Goshen Ridge Thunderbolt 4 USB controller");
@@ -191,6 +197,9 @@ xhci_pci_match(device_t self)
 	case 0xa01b177d:
 		return ("Cavium ThunderX USB 3.0 controller");
 
+	case 0x1ada10de:
+		return ("NVIDIA TU106 USB 3.1 controller");
+
 	default:
 		break;
 	}