Date: Mon, 08 Dec 2014 18:31:42 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-usb@FreeBSD.org Subject: [Bug 195793] USB 3.0 support on Intel H97 chipset Message-ID: <bug-195793-17-1zdai3Iqy7@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-195793-17@https.bugs.freebsd.org/bugzilla/> References: <bug-195793-17@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195793 --- Comment #3 from Daniel Kolesa <quaker66@gmail.com> --- Thank you, that did it :) Output from usbconfig now: q66@butts: /home/q66$ usbconfig ugen0.1: <XHCI root HUB 0x8086> at usbus0, cfg=0 md=HOST spd=SUPER (5.0Gbps) pwr=SAVE (0mA) ugen1.1: <EHCI root HUB Intel> at usbus1, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA) ugen2.1: <EHCI root HUB Intel> at usbus2, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA) ugen0.2: <product 0x8142 vendor 0x0451> at usbus0, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA) ugen1.2: <product 0x8009 vendor 0x8087> at usbus1, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA) ugen2.2: <product 0x8001 vendor 0x8087> at usbus2, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA) ugen0.3: <ROCCAT Savu ROCCAT> at usbus0, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON (500mA) ugen0.4: <product 0x0825 vendor 0x046d> at usbus0, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON (500mA) ugen0.5: <product 0x8142 vendor 0x0451> at usbus0, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA) ugen0.6: <product 0x010d vendor 0x046a> at usbus0, cfg=0 md=HOST spd=LOW (1.5Mbps) pwr=ON (100mA) ugen0.7: <product 0x8140 vendor 0x0451> at usbus0, cfg=0 md=HOST spd=SUPER (5.0Gbps) pwr=SAVE (0mA) ugen0.8: <product 0x8140 vendor 0x0451> at usbus0, cfg=0 md=HOST spd=SUPER (5.0Gbps) pwr=SAVE (0mA) ugen0.9: <Samsung M3 Portable Samsung M3 Portable> at usbus0, cfg=0 md=HOST spd=SUPER (5.0Gbps) pwr=ON (2mA) Tested the transfer speed to the external HDD and it's USB 3.0 level. Here is the patch: q66@butts: /usr/src$ svn diff Index: sys/dev/usb/controller/xhci_pci.c =================================================================== --- sys/dev/usb/controller/xhci_pci.c (revision 275587) +++ sys/dev/usb/controller/xhci_pci.c (working copy) @@ -252,6 +252,7 @@ case 0x9c318086: /* Panther Point */ case 0x1e318086: /* Panther Point */ case 0x8c318086: /* Lynx Point */ + case 0x8cb18086: /* Wildcat Point */ sc->sc_port_route = &xhci_pci_port_route; sc->sc_imod_default = XHCI_IMOD_DEFAULT_LP; break; Apparently the Wildcat Point PCI IDs were already added in r275101, but the rerouting wasn't; so I only had to add that one line. -- You are receiving this mail because: You are the assignee for the bug.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-195793-17-1zdai3Iqy7>