summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/controller/xhci.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Bugfix: Make sure the XHCI driver doesn't clearhselasky2012-01-131-1/+1
| | | | | | | the route string field. Else USB 3.0 HUBs won't work. MFC after: 5 days
* Correct use of USB 3.0 POWER bit in the port status register,hselasky2012-01-131-2/+7
| | | | | | | hence it was overlapping the USB 3.0 root HUB's speed bits. Reported by: Kohji Okuno MFC after: 1 week
* - Try to fix support for USB 3.0 HUBs.hselasky2012-01-121-8/+13
| | | | | | - Try to fix support for USB 3.0 suspend and resume. MFC after: 1 week
* Add missing change to XHCI driver similar to changes in r228483.hselasky2011-12-311-16/+20
| | | | MFC after: 0 days
* Make some XHCI command timeouts less strict.hselasky2011-11-181-9/+9
| | | | | Reported by: Jan Henrik Sylvester MFC after: 1 week
* Some brands of XHCI controllers needs more time to reset.hselasky2011-11-151-3/+3
| | | | | Reported by: Jan Henrik Sylvester MFC after: 1 week
* Fix size of USB 3.0 descriptor field.hselasky2011-11-091-1/+1
| | | | MFC after: 3 days
* Fix size of USB 3.0 descriptor field.hselasky2011-11-091-1/+2
| | | | MFC after: 3 days
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.ed2011-11-071-1/+1
| | | | | | The SYSCTL_NODE macro defines a list that stores all child-elements of that node. If there's no SYSCTL_DECL macro anywhere else, there's no reason why it shouldn't be static.
* Fix suspend and resume of FULL and HIGH speed USB deviceshselasky2011-10-261-1/+14
| | | | | | | in the generic XHCI driver. There appears to be some minor logic missing for this feature to work. MFC after: 3 days
* - Add support for 64-byte contexts to XHCI driver.hselasky2011-01-131-46/+102
| | | | | | | - Remove some dead code. - Fixed one instance of missing endian conversion. Approved by: thompsa (mentor)
* Remove unneeded includes of <sys/linker_set.h>. Other headers that usejhb2011-01-111-1/+0
| | | | | | it internally contain nested includes. Reviewed by: bde
* Commit initial version of new XHCI driver which was written fromhselasky2010-10-031-0/+3862
scratch. This driver adds support for USB3.0 devices. The XHCI interface is also backwards compatible to USB2.0 and USB1.0 and will evntually replace the OHCI/UHCI and EHCI drivers. There will be follow-up commits during the coming week to link the driver into the default kernel build and add missing USB3.0 functionality in the USB core. Currently only the driver files are committed. Approved by: thompsa (mentor)
OpenPOWER on IntegriCloud