git: 4b4cce02ac01 - main - xhci: add PCI IDs for USB controllers found on Supermicro M12SWA-TF

From: Gleb Smirnoff <glebius_at_FreeBSD.org>
Date: Fri, 03 Dec 2021 04:13:04 UTC
The branch main has been updated by glebius:

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

commit 4b4cce02ac01a943aa1816e7ea9ae6017539e7bb
Author:     Gleb Smirnoff <glebius@FreeBSD.org>
AuthorDate: 2021-12-03 04:12:33 +0000
Commit:     Gleb Smirnoff <glebius@FreeBSD.org>
CommitDate: 2021-12-03 04:12:33 +0000

    xhci: add PCI IDs for USB controllers found on Supermicro M12SWA-TF
---
 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 f1c567ac6ded..6dbe29b7c791 100644
--- a/sys/dev/usb/controller/xhci_pci.c
+++ b/sys/dev/usb/controller/xhci_pci.c
@@ -95,6 +95,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 */
@@ -120,6 +124,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");
@@ -186,6 +192,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;
 	}