Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Mar 2023 16:53:06 GMT
From:      Zhenlei Huang <zlei@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: ffb8b19f767d - stable/13 - ehci(4): Add IDs for for Zhaoxin USB 2.0 controller
Message-ID:  <202303291653.32TGr630039724@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by zlei:

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

commit ffb8b19f767da0c36a67fb76cbaa9f47457af184
Author:     Dmitry Luhtionov <dmitryluhtionov@gmail.com>
AuthorDate: 2023-01-17 10:43:33 +0000
Commit:     Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2023-03-29 16:49:21 +0000

    ehci(4): Add IDs for for Zhaoxin USB 2.0 controller
    
    Tested by:      Weitao Wang <WeitaoWang-oc@zhaoxin.com>
    MFC after:      1 week
    Sponsored by:   NVIDIA Networking
    Differential Revision:  https://reviews.freebsd.org/D38923
    
    (cherry picked from commit f9237e1937a4e399e08ca8e5bd88a60910e74be6)
    (cherry picked from commit 95b2d16b38a720108a51f9e8ce0685244e3e3ea4)
---
 sys/dev/usb/controller/ehci_pci.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/sys/dev/usb/controller/ehci_pci.c b/sys/dev/usb/controller/ehci_pci.c
index b536ea02b649..9018b2e4db40 100644
--- a/sys/dev/usb/controller/ehci_pci.c
+++ b/sys/dev/usb/controller/ehci_pci.c
@@ -96,6 +96,7 @@ __FBSDID("$FreeBSD$");
 #define	PCI_EHCI_VENDORID_NVIDIA2	0x10DE
 #define	PCI_EHCI_VENDORID_VIA		0x1106
 #define	PCI_EHCI_VENDORID_VMWARE	0x15ad
+#define	PCI_EHCI_VENDORID_ZHAOXIN	0x1d17
 
 static device_probe_t ehci_pci_probe;
 static device_attach_t ehci_pci_attach;
@@ -224,6 +225,10 @@ ehci_pci_match(device_t self)
 
 	case 0x077015ad:
 		return ("VMware USB 2.0 controller");
+
+	case 0x31041d17:
+		return ("Zhaoxin ZX-100/ZX-200/ZX-E USB 2.0 controller");
+
 	default:
 		break;
 	}
@@ -409,6 +414,9 @@ ehci_pci_attach(device_t self)
 	case PCI_EHCI_VENDORID_VMWARE:
 		sprintf(sc->sc_vendor, "VMware");
 		break;
+	case PCI_EHCI_VENDORID_ZHAOXIN:
+		sprintf(sc->sc_vendor, "Zhaoxin");
+		break;
 	default:
 		if (bootverbose)
 			device_printf(self, "(New EHCI DeviceId=0x%08x)\n",



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