The branch main has been updated by thj:

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

commit 4d718f57c58e4f3431b8dee4eda77eb7c54cd1d2
Author:     Tom Jones <t...@freebsd.org>
AuthorDate: 2025-07-14 07:59:32 +0000
Commit:     Tom Jones <t...@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:

Reply via email to