Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Jul 2025 08:04:35 GMT
From:      Tom Jones <thj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 4d718f57c58e - main - xhci pci: Add some amd xhci controller device ids
Message-ID:  <202507140804.56E84ZCr086027@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by thj:

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

commit 4d718f57c58e4f3431b8dee4eda77eb7c54cd1d2
Author:     Tom Jones <thj@FreeBSD.org>
AuthorDate: 2025-07-14 07:59:32 +0000
Commit:     Tom Jones <thj@FreeBSD.org>
CommitDate: 2025-07-14 08:03:45 +0000

    xhci pci: Add some amd xhci controller device ids
    
    Reviewed by: aokblast
    Sponsored by: The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D51259
---
 sys/dev/usb/controller/xhci_pci.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c
index b50e33ea36ce..d5cfd228a429 100644
--- a/sys/dev/usb/controller/xhci_pci.c
+++ b/sys/dev/usb/controller/xhci_pci.c
@@ -99,6 +99,11 @@ xhci_pci_match(device_t self)
 		return ("AMD Starship USB 3.0 controller");
 	case 0x149c1022:
 		return ("AMD Matisse USB 3.0 controller");
+	case 0x15b61022:
+	case 0x15b71022:
+		return ("AMD Raphael/Granite Ridge USB 3.1 controller");
+	case 0x15b81022:
+		return ("AMD Raphael/Granite Ridge USB 2.0 controller");
 	case 0x15e01022:
 	case 0x15e11022:
 		return ("AMD Raven USB 3.1 controller");
@@ -109,6 +114,8 @@ xhci_pci_match(device_t self)
 		return ("AMD 300 Series USB 3.1 controller");
 	case 0x43d51022:
 		return ("AMD 400 Series USB 3.1 controller");
+	case 0x43f71022:
+		return ("AMD 600 Series USB 3.2 controller");
 	case 0x78121022:
 	case 0x78141022:
 	case 0x79141022:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202507140804.56E84ZCr086027>