aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/controller/usb_controller.c
Commit message (Collapse)AuthorAgeFilesLines
* MFC r277136:Hans Petter Selasky2015-02-051-0/+40
| | | | | | | | | | | | | Resolve a special case deadlock: When two or more threads are simultaneously detaching kernel drivers on the same USB device we can get stuck in the "usb_wait_pending_ref_locked()" function because the conditions needed for allowing detach are not met. While at it ensure that "flag_iserror" is only written when "priv_mtx" is locked, which is protecting it. Notes: svn path=/stable/9/; revision=278291
* MFC r266969 and r276717:Hans Petter Selasky2015-02-051-1/+1
| | | | | | | | | Add 64-bit DMA support in the XHCI controller driver. - Fix some comments and whitespaces while at it. - Add support for PAE. Notes: svn path=/stable/9/; revision=278279
* MFC r269565:Hans Petter Selasky2014-08-131-1/+1
| | | | | | | Rename driver name a bit to avoid unit number confusion in dmesg. Notes: svn path=/stable/9/; revision=269923
* MFC: r267321Marius Strobl2014-06-231-2/+3
| | | | | | | | | | | | Avoid the USB device disconnected and controller shutdown clutter on system shutdown by putting the former under !rebooting and turning the latter into debug messages. Reviewed by: hps Sponsored by: Bally Wulff Games & Entertainment GmbH Notes: svn path=/stable/9/; revision=267777
* MFC r267240:Hans Petter Selasky2014-06-111-1/+7
| | | | | | | | | | | | | | Resolve a deadlock setting the USB configuration index from userspace on USB HUBs by moving the code into the USB explore threads. The deadlock happens because child devices of the USB HUB don't have the expected reference count when called from outside the explore thread. Only the HUB device itself, which the IOCTL interface locks, gets the correct reference count. Approved by: re, marius @ Notes: svn path=/stable/9/; revision=267350
* MFC r259023 and r259095:Hans Petter Selasky2013-12-191-3/+56
| | | | | | | | Improve the XHCI command timeout recovery handling code. Fix some typos while at it. Notes: svn path=/stable/9/; revision=259602
* MFC r249795:Hans Petter Selasky2013-05-121-0/+25
| | | | | | | | Add convenience wrapper functions to run callbacks in the context of the USB explore thread. Notes: svn path=/stable/9/; revision=250560
* MFC: r227309 (partial)Marius Strobl2013-03-091-1/+1
| | | | | | | | | | | Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs. 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. Notes: svn path=/stable/9/; revision=248085
* MFC r246616 and r246759:Hans Petter Selasky2013-02-211-6/+12
| | | | | | | | | | | | | | | | | - Move scratch data from the USB bus structure to the USB device structure so that simultaneous access cannot happen. Protect scratch area using the enumeration lock. - Reduce stack usage in usbd_transfer_setup() by moving some big stack members to the scratch area. This saves around 200 bytes of stack. - Fix a whitespace. - Protect control requests using the USB device enumeration lock. - Make sure all callers of usbd_enum_lock() check the return value. - Remove the control transfer specific lock. - Bump the FreeBSD version number, hence external USB modules may need to be recompiled due to a USB device structure change. Notes: svn path=/stable/9/; revision=247090
* MFC r240750, r241987 and r242126:Hans Petter Selasky2012-11-081-1/+1
| | | | | | | | | | | Add missing CTLFLAG_TUN flag to tunable sysctls in the USB stack. Adjust timing parameters of FULL/LOW/HIGH speed USB enumeration and make these timing parameters tunable. This patch will fix enumeration with some USB devices. Fix a typo. Notes: svn path=/stable/9/; revision=242775
* MFC r232448:Hans Petter Selasky2012-03-121-2/+21
| | | | | | | | Make sure that the USB system suspend event is executed synchronously and not asynchronously. Notes: svn path=/stable/9/; revision=232870
* MFC r229317:Hans Petter Selasky2012-01-031-0/+8
| | | | | | | Fix for USB suspend and resume. Notes: svn path=/stable/9/; revision=229369
* MFC r228709, r228711 and r228723:Hans Petter Selasky2011-12-311-1/+27
| | | | | | | | | | - Add missing unlock of USB controller's lock, when doing shutdown, suspend and resume. - Add code to wait for USB shutdown to be executed at system shutdown. - Add sysctl which can be used to skip this waiting. Notes: svn path=/stable/9/; revision=229100
* MFC r229086, r228483 and r228640:Hans Petter Selasky2011-12-311-16/+231
| | | | | | | | Implement better support for USB controller suspend and resume. Fix some build issues in avr32dci.c Notes: svn path=/stable/9/; revision=229096
* - Correct USB 3.0 wire-speed to 5.0GbpsHans Petter Selasky2011-02-261-1/+1
| | | | | | | | MFC after: 3 days Approved by: thompsa (mentor) Notes: svn path=/head/; revision=219048
* Minor cleanup:Hans Petter Selasky2011-02-091-4/+4
| | | | | | | | | | | - use device_printf() instead of printf() to give more accurate warnings. - use memcpy() instead of bcopy(). - add missing #if's for non-FreeBSD compilation. Approved by: thompsa (mentor) Notes: svn path=/head/; revision=218475
* Make USB packet filtering code optional.Hans Petter Selasky2011-01-181-2/+4
| | | | | | | Approved by: thompsa (mentor) Notes: svn path=/head/; revision=217558
* Remove unneeded includes of <sys/linker_set.h>. Other headers that useJohn Baldwin2011-01-111-1/+0
| | | | | | | | | it internally contain nested includes. Reviewed by: bde Notes: svn path=/head/; revision=217265
* Removes a unused function `usb_bus_find'.Weongyo Jeong2010-11-251-26/+0
| | | | Notes: svn path=/head/; revision=215846
* Handles the unit number correctly that the previous commit had a problemWeongyo Jeong2010-11-251-4/+4
| | | | | | | | | | | (wrong unit number for a host controller) when the module is load / unloaded repeatly. Attaching the USB pf is moved to usbus device's attach. Pointed by: yongari Notes: svn path=/head/; revision=215812
* Removes all duplicated code with BPF that it's greatly simplified andWeongyo Jeong2010-11-241-1/+1
| | | | | | | | | | take all benefits whenever BPF code is improved. Pointed by: jkim Reviewed by: thompsa Notes: svn path=/head/; revision=215802
* Adds a USB packet filter feature to the stack that it could captureWeongyo Jeong2010-11-221-0/+32
| | | | | | | | | | | | packets which go through each USB host controllers. Its implementations are almost based on BPF code and very similar with it except it's little bit customized for USB packet only. The userland program usbdump(8) would be committed soon. Discussed with: hps, thompsa, yongari Notes: svn path=/head/; revision=215649
* This commit adds full support for USB 3.0 devices in host and deviceHans Petter Selasky2010-10-041-0/+6
| | | | | | | | | | | | | | | | | | | mode in the USB core. The patch mostly consists of updating the USB HUB code to support USB 3.0 HUBs. This patch also add some more USB controller methods to support more active-alike USB controllers like the XHCI which needs to be informed about various device state events. USB 3.0 HUBs are not tested yet, due to lack of hardware, but are believed to work. After this update the initial device descriptor is only read twice when we know that the bMaxPacketSize is too small for a single packet transfer of this descriptor. Approved by: thompsa (mentor) Notes: svn path=/head/; revision=213435
* Add missing DRIVER_MODULE() entry for the musbotg driver.Hans Petter Selasky2010-10-041-0/+4
| | | | | | | | | Add some more comments. Approved by: thompsa (mentor) Notes: svn path=/head/; revision=213426
* The root mount hold reference was not released on USB controllerHans Petter Selasky2010-10-041-8/+14
| | | | | | | | | attach failures during boot. Fix this. Approved by: thompsa (mentor) Notes: svn path=/head/; revision=213425
* Add missing ifdefs for usb power saving support.Andrew Thompson2010-05-121-1/+4
| | | | | | | Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=208013
* Wrap the proc wakeup special case for ddb in ifdef DDB.Andrew Thompson2010-03-111-0/+6
| | | | | | | Submitted by: Giovanni Trematerra Notes: svn path=/head/; revision=205005
* Remove overuse of exclamation marks in kernel printfs, there mere fact aAndrew Thompson2009-11-261-3/+3
| | | | | | | | | message has been printed is enough to get someones attention. Also remove the line number for DPRINTF/DPRINTFN, it already prints the funtion name and a unique message. Notes: svn path=/head/; revision=199816
* MFp4 @ 168387Andrew Thompson2009-09-281-4/+2
| | | | | | | | | | | | | | | | | | | - clean up USB detach logic. There seems to be some problems detaching multiple USB HUBs connected in series from the root. - after this patch the rule is: 1) Always use device_detach() on the USB HUB first. 2) Never just device_delete_child() on the USB HUB, because that function will traverse to all the device leaves and free them first, and then the USB stack will free the devices twice which doesn't work very well. - make sure the did DMA delay gets set after the timeout has elapsed to make logic more clear. There is no functional difference. Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=197553
* - allow disabling "root_mount_hold()" byAlfred Perlstein2009-08-241-73/+29
| | | | | | | | | | setting a sysctl/tunable at boot - remove some redundant initial explore code Submitted by: hps Notes: svn path=/head/; revision=196488
* Temporarily revert the new-bus locking for 8.0 release. It will beJohn Baldwin2009-08-201-9/+21
| | | | | | | | | reintroduced after HEAD is reopened for commits by re@. Approved by: re (kib), attilio Notes: svn path=/head/; revision=196403
* Make the newbus subsystem Giant free by adding the new newbus sxlock.Attilio Rao2009-08-021-21/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The newbus lock is responsible for protecting newbus internIal structures, device states and devclass flags. It is necessary to hold it when all such datas are accessed. For the other operations, softc locking should ensure enough protection to avoid races. Newbus lock is automatically held when virtual operations on the device and bus are invoked when loading the driver or when the suspend/resume take place. For other 'spourious' operations trying to access/modify the newbus topology, newbus lock needs to be automatically acquired and dropped. For the moment Giant is also acquired in some key point (modules subsystem) in order to avoid problems before the 8.0 release as module handlers could make assumptions about it. This Giant locking should go just after the release happens. Please keep in mind that the public interface can be expanded in order to provide more support, if there are really necessities at some point and also some bugs could arise as long as the patch needs a bit of further testing. Bump __FreeBSD_version in order to reflect the newbus lock introduction. Reviewed by: ed, hps, jhb, imp, mav, scottl No answer by: ariff, thompsa, yongari Tested by: pho, G. Trematerra <giovanni dot trematerra at gmail dot com>, Brandon Gooch <jamesbrandongooch at gmail dot com> Sponsored by: Yahoo! Incorporated Approved by: re (ksmith) Notes: svn path=/head/; revision=196037
* USB controller:Alfred Perlstein2009-07-301-2/+9
| | | | | | | | | | - allow disabling "root_mount_hold()" by setting "hw.usb.no_boot_wait" sysctl Submitted by: hps Approved by: re Notes: svn path=/head/; revision=195965
* - Make struct usb_xfer opaque so that drivers can not access the internalsAndrew Thompson2009-06-231-3/+22
| | | | | | | - Reduce the number of headers needed for a usb driver, the common case is just usb.h and usbdi.h Notes: svn path=/head/; revision=194677
* s/usb2_/usb_|usbd_/ on all function names for the USB stack.Andrew Thompson2009-06-151-99/+99
| | | | Notes: svn path=/head/; revision=194228
* Revert the size_t part of the last commit for the moment, this blows up theAndrew Thompson2009-05-301-3/+3
| | | | | | | USB_ADD_BYTES macro. Notes: svn path=/head/; revision=193074
* Fix function arguments were previously they matched the typedef by accident.Andrew Thompson2009-05-291-3/+3
| | | | Notes: svn path=/head/; revision=193068
* s/usb2_/usb_/ on all typedefs for the USB stack.Andrew Thompson2009-05-291-4/+4
| | | | Notes: svn path=/head/; revision=193045
* s/usb2_/usb_/ on all C structs for the USB stack.Andrew Thompson2009-05-281-27/+27
| | | | Notes: svn path=/head/; revision=192984
* Rename the usb sysctl tree from hw.usb2.* back to hw.usb.*.Andrew Thompson2009-05-211-2/+2
| | | | | | | Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=192502
* Use enums for speed and rev data types.Andrew Thompson2009-05-211-1/+1
| | | | Notes: svn path=/head/; revision=192500
* MFp4 //depot/projects/usb@160706Andrew Thompson2009-04-221-0/+8
| | | | | | | | | Resolve possible device side mode deadlock by creating another thread. Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=191400
* Revert r190676,190677Andrew Thompson2009-04-101-1/+1
| | | | | | | | | | The geom and CAM changes for root_hold are the wrong solution for USB design quirks. Requested by: scottl Notes: svn path=/head/; revision=190878
* Provide a better commit log for r190735, forced by making a whitespace change.Andrew Thompson2009-04-061-1/+1
| | | | | | | | | | | | | | | Refactor how we interface with the root HUB. This is achieved by making a direct call from usb2_do_request to the host controller for root hub requests, this call will perform the controller specific register read/writes and return the error code. This cuts out a lot of code in the host controller files and saves one thread per USB bus. Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=190754
* MFp4 //depot/projects/usb@159922Andrew Thompson2009-04-051-50/+1
| | | | | | | | | | Refactor how we interface with the root HUB. This cuts around 1200 lines of code totally and saves one thread per USB bus. Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=190735
* MFp4 //depot/projects/usb@159909Andrew Thompson2009-04-051-1/+14
| | | | | | | | | | | | | | | | - make usb2_power_mask_t 16-bit - remove "usb2_config_sub" structure from "usb2_config". To compensate for this "usb2_config" has a new field called "usb_mode" which select for which mode the current xfer entry is active. Options are: a) Device mode only b) Host mode only (default-by-zero) c) Both modes. This change was scripted using the following sed script: "s/\.mh\././g". - the standard packet size table in "usb_transfer.c" is now a function, hence the code for the function uses less memory than the table itself. Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=190734
* MFp4 //depot/projects/usb@159866Andrew Thompson2009-04-051-2/+2
| | | | | | | | | | | - memory usage reduction by only allocating the required USB pipes and USB interfaces. - cleanup some USB parsing functions to be more flexible. Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=190730
* MFp4 //depot/projects/usb@159700Andrew Thompson2009-04-051-6/+3
| | | | | | | | | Get rid of the last CALLOUT_RETURNUNLOCKED reference. Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=190724
* Add a how argument to root_mount_hold() so it can be passed NOWAIT and be calledAndrew Thompson2009-04-031-1/+1
| | | | | | | in situations where sleeping isnt allowed. Notes: svn path=/head/; revision=190676
* MFp4 //depot/projects/usb@159392Andrew Thompson2009-03-201-11/+15
| | | | | | | | | Add ifdefs for making parts of usb conditional. Submitted by: Hans Petter Selasky Notes: svn path=/head/; revision=190180