aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb_hub.c
Commit message (Expand)AuthorAgeFilesLines
* Extend sysctl description for hw.usb.disable_enumeration .Hans Petter Selasky2017-09-221-1/+3
* "Buses" is the preferred plural of "bus"Conrad Meyer2017-01-151-2/+2
* Defer USB enumeration until the SI_SUB_KICK_SCHEDULER is executed to avoidHans Petter Selasky2016-12-191-0/+25
* Improve USB polling mode by not locking any mutexes, asserting anyHans Petter Selasky2016-09-141-4/+4
* dev/usb: minor spelling fixes in comments.Pedro F. Giffuni2016-05-021-3/+3
* Create a USB_PNP_INFO and use it to export the existing PNPWarner Losh2015-12-111-0/+2
* Improve the realtime properties of USB transfers for embedded systemsHans Petter Selasky2015-08-141-2/+2
* Add ugen keyword to USB pnpinfo. Remove extra space from existing pnpinfo.Hans Petter Selasky2015-02-251-6/+14
* Make a bunch of USB debug SYSCTLs tunable, so that their value(s) canHans Petter Selasky2015-01-051-1/+1
* Reduce boot verbosity.Hans Petter Selasky2014-11-031-2/+2
* Add sysctl knob to disable port power on a specific USB HUB. You needHans Petter Selasky2014-10-091-19/+43
* Refine support for disabling USB enumeration to allow device detachHans Petter Selasky2014-10-091-12/+19
* Add support for disabling USB enumeration in general or on selectedHans Petter Selasky2014-10-081-0/+27
* Pull in r267961 and r267973 again. Fix for issues reported will follow.Hans Petter Selasky2014-06-281-2/+1
* Revert r267961, r267973:Glen Barber2014-06-271-1/+2
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-2/+1
* Resolve a deadlock setting the USB configuration index from userspaceHans Petter Selasky2014-06-081-53/+109
* Fix the ordering of the arguments to printf inNick Hibma2014-01-291-1/+2
* Implement better error recovery for Transaction Translators, TTs,Hans Petter Selasky2014-01-131-9/+234
* USB method structures for USB controllers and USB pipes should beHans Petter Selasky2013-12-111-1/+1
* Fix a deadlock when trying to power off a USB device. The deadlockHans Petter Selasky2013-10-271-5/+33
* Don't issue USB resume signalling in USB device mode, if the USB powerHans Petter Selasky2013-09-121-1/+2
* - Try to fix build of 32-bit compatibility USB support for FreeBSD andHans Petter Selasky2013-08-121-1/+0
* Fix some statical clang analyzer warnings.Hans Petter Selasky2013-05-251-1/+0
* - Add more defines to limit USB memory usage and number of allocationsHans Petter Selasky2013-05-031-7/+19
* Resolve a LOR after r246616. Protect control requests using the USB deviceHans Petter Selasky2013-02-131-4/+9
* Add defines to more easily allow a single threaded version of the FreeBSDHans Petter Selasky2013-02-051-1/+1
* Modify the FreeBSD USB kernel code so that it can be compiled directlyHans Petter Selasky2013-01-301-0/+4
* Add missing CTLFLAG_TUN flag to tunable sysctls in USB stack.Hans Petter Selasky2012-10-261-2/+1
* Make several timing parameters of the USB enumeration sequence tuneable.Hans Petter Selasky2012-10-241-6/+6
* Style.Hans Petter Selasky2012-10-021-1/+1
* Remove unused field.Hans Petter Selasky2012-10-021-4/+0
* Inherit USB mode from RootHUB port where the USB device is connected.Hans Petter Selasky2012-10-011-1/+4
* Add support for the so-called streams feature of BULK endpointsHans Petter Selasky2012-08-121-3/+5
* Add support for Multi-TT mode of modern USB HUBs.Hans Petter Selasky2012-04-291-119/+106
* Fix compiler warnings, mostly signed issues,Hans Petter Selasky2012-04-021-3/+3
* Improve support for USB 3.0 HUBs. In certain states weHans Petter Selasky2012-01-131-6/+8
* Correct use of USB 3.0 POWER bit in the port status register,Hans Petter Selasky2012-01-131-8/+11
* - Try to fix support for USB 3.0 HUBs.Hans Petter Selasky2012-01-121-12/+39
* Fix for race against user-space applications trying to change theHans Petter Selasky2011-12-211-0/+9
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.Ed Schouten2011-11-071-1/+1
* Fix suspend and resume of FULL and HIGH speed USB devicesHans Petter Selasky2011-10-261-0/+1
* - Add additional information to the PnP info of USB HUBs children whichHans Petter Selasky2011-06-241-1/+5
* Improve enumeration of Low- and Full-speed devices connected through aHans Petter Selasky2011-06-061-3/+24
* Remove unneeded includes of <sys/linker_set.h>. Other headers that useJohn Baldwin2011-01-111-1/+0
* Add support for setting per-interface PnP information.Hans Petter Selasky2010-10-271-2/+4
* This commit adds full support for USB 3.0 devices in host and deviceHans Petter Selasky2010-10-041-76/+354
* Serialise USB re-enumeration with the USB explore thread.Hans Petter Selasky2010-10-041-0/+22
* Reduce the need to accesss struct usb_device by providing functions to accessAndrew Thompson2010-09-021-1/+2
* Add support for power mode filtering as some USB hardware does not supportAndrew Thompson2010-09-021-2/+29