summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/controller
Commit message (Collapse)AuthorAgeFilesLines
...
* Minor code refactor to avoid duplicating code.hselasky2015-08-141-18/+9
| | | | MFC after: 2 weeks
* Improve the realtime properties of USB transfers for embedded systemshselasky2015-08-141-4/+10
| | | | | | | | | | | | | | | | | | | | like RPI-B and RPI-2. Description of problem: USB transfers can process data in their callbacks sometimes causing unacceptable latency for other USB transfers. Separate BULK completion callbacks from CONTROL, INTERRUPT and ISOCHRONOUS callbacks, and give BULK completion callbacks lesser execution priority than the others. This way USB audio won't be interfered by heavy USB ethernet usage for example. Further serve USB transfer completion in a round robin fashion, instead of only serving the most CPU hungry. This has been done by adding a third flag to USB transfer queue structure which keeps track of looping callbacks. The "command" callback function then decides what to do when looping. MFC after: 2 weeks
* Limit the number of times we loop inside the DWC OTG poll handler tohselasky2015-07-311-1/+7
| | | | | | | avoid starving other fast interrupts. Fix a comment while at it. MFC after: 1 week Suggested by: Svatopluk Kraus <onwahe@gmail.com>
* Optimise the DWC OTG host mode driver's receive path:hselasky2015-07-282-50/+30
| | | | | | | | | Remove NAKing limit and pause IN and OUT transactions for 125us in case of NAK response for BULK and CONTROL endpoints. This gets the receive latency down and improves USB network throughput at the cost of some CPU usage. MFC after: 1 month
* - Move the remainder of host controller capability registers reading frommarius2015-07-272-82/+77
| | | | | | | | | | | | xhci_start_controller() to xhci_init(). These values don't change at run- time so there's no point of acquiring them on every USB_HW_POWER_RESUME instead of only once during initialization. In r276717, reading the first couple of registers in question already had been moved as a prerequisite for the changes in that revision. - Identify ASMedia ASM1042A controllers. - Use NULL instead of 0 for pointers. MFC after: 3 days
* Optimise the DWC OTG host mode driver's transmit path:hselasky2015-07-163-114/+77
| | | | | | | | | | | | | | | | | | | | | | | | 1) Use the TX FIFO empty interrupts to poll the transmit FIFO usage, instead of using own software counters and waiting for SOF interrupts. Assume that enough FIFO space is available to execute one USB OUT transfer of any kind when the TX FIFO is empty. 2) Use the host channel halted event to asynchronously wait for host channels to be disabled instead of waiting for SOF interrupts. This results in less turnaround time for re-using host channels and at the same time increases the performance. The network transmit performance measured by "iperf" for the "RPi-B v1 2011/12" board, increased from 45MBit/s to 65Mbit/s after applying the changes above. No regressions seen using: - High Speed (BULK, CONTROL, INTERRUPT) - Full Speed (All transfer types) - Low Speed (Control and Interrupt) MFC after: 1 month Submitted by: Daisuke Aoyama <aoyama@peach.ne.jp>
* Fix for control endpoint handling in the DWC OTG driver. The datahselasky2015-06-021-56/+52
| | | | | | | | stage processing is only allowed after the setup complete event has been received. Else a race may occur and the OUT data can be corrupted. While at it ensure resetting a FIFO has the required wait loop. MFC after: 3 days
* Fix for DWC OTG device side isochronous transfers. The even or oddhselasky2015-05-191-2/+31
| | | | | | isochronous frame bit needs to be flipped. MFC after: 3 days
* Make the FIFO configuration a bit more flexible for the DWC OTG inhselasky2015-05-182-22/+22
| | | | device side mode.
* Disable multi process interrupts, because the current code doesn't usehselasky2015-04-231-9/+7
| | | | | | | them. Else we can end up in an infinite interrupt loop in USB device mode. MFC after: 3 days
* Modify the return value of the uhci/ehci/xhci PCI probe routines toneel2015-04-133-3/+3
| | | | | | | | | | | 'BUS_PROBE_DEFAULT'. This allows bhyve's 'ppt' driver to claim ownership of the device and pass it through to the guest. In the common case where there are no competing drivers for USB controllers this change is a no-op. Reviewed by: hselasky MFC after: 2 weeks
* Add support for enabling the USB on the Raspberry Pi boards when it hasn'tandrew2015-03-082-11/+46
| | | | | | | | | | | | | been done by U-Boot. This allows the USB to work when we load the kernel directly. No dma sync is performed after these operations as the data we read/write is not used by the cpu after the calls to the maimbox driver. Differential Revision: https://reviews.freebsd.org/D1940 Reviewed by: imp, Michal Meloun (meloun AT miracle.cz) MFC after: 1 Week Sponsored by: ABT Systems Ltd
* Sort and remove unnecessary headers.loos2015-03-031-14/+4
|
* Add quirk for USB 3.0 controllers which don't support 64-bit DMA.hselasky2015-03-031-1/+12
| | | | | MFC after: 3 days Submitted by: Gary Jennejohn <gljennjohn@gmail.com>
* Add quirk to disable 64-bit XHCI DMA after r276717.hselasky2015-03-023-6/+11
| | | | | Requested by: Gary Jennejohn <gljennjohn@gmail.com> MFC after: 3 days
* Ensure that the XHCI driver will refresh the control endpoint settingshselasky2015-02-241-0/+7
| | | | | | | when re-enumerating a FULL speed device. Else the wrong max packet setting might be used when trying to re-enumerate a FULL speed device. MFC after: 3 days
* Add support for the DWC OTG v2 chipset found in the STM32F4 series ofhselasky2015-02-232-11/+48
| | | | | | | processors. Make sure we pullup the data lines in device mode when we power on the port. MFC after: 1 week
* Try to resolve infinite interrupts by clearing an undocumentedhselasky2015-02-171-1/+2
| | | | | | | | | interrupt status bit. According to the UHCI controller specification the host controller halted interrupt is non-maskable. PR: 156596 Tested by: adrian @ MFC after: 1 week
* Handle VBUS error interrupts.hselasky2015-02-161-1/+8
| | | | | | Submitted by: SAITOU Toshihide <toshi@ruby.ocn.ne.jp> PR: 190471 MFC after: 1 week
* Fix DMA address casts. Regression issue after r278279.hselasky2015-02-091-2/+2
| | | | MFC after: 3 days
* Section 3.2.9 in the XHCI specification about control transfers sayshselasky2015-02-021-1/+11
| | | | | | | | | that we should use a normal-TRB if there are more TRBs extending the data-stage TRB. Add a dedicated state bit to the internal USB transfer flags to handle this case. Reported by: Kohji Okuno <okuno.kohji@jp.panasonic.com> MFC after: 1 week
* Revise the arm bus_space implementation to avoid dereferencing the tag onian2015-01-211-17/+17
| | | | | | | | | | | | | | | | | every operation to retrieve the bs_cookie value almost nothing actually uses. The bus_space struct contains a private data pointer (poorly named bs_cookie, now renamed to bs_privdata) which is used only by a few old armv4 xscale implementations. The bus_space functions were all defined to take this value as the first parameter instead of the bus_space_tag_t, requiring all the inline macro and function expansions to dereference the tag to pass it to another function, which never uses it. Now all the functions take the tag as the first parameter and retrieve the privdata if they need it. Also fix a couple bus_space_unmap() implementations that were calling kva_free() instead of pmap_unmapdev(). Discussed with: cognet
* Resolve a special case deadlock: When two or more threads arehselasky2015-01-131-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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. The "destroy_dev()" function waits for all system calls involving the given character device to return. Character device system calls may lock the USB enumeration lock, which is also held when "destroy_dev()" is called. This can sometimes lead to a deadlock not noticed by WITNESS. The current solution is to ensure the calling thread is the only one holding the USB enumeration lock and prevent other threads from getting refs while a USB device detach is ongoing. This turned out not to be sufficient. To solve this deadlock we could use "destroy_dev_sched()" to schedule the device destruction in the background, but then we don't know when it is safe to free() the private data of the character device. Instead a callback function is executed by the USB explore process to kill off any leftover USB character devices synchronously after the USB device explore code is finished and the USB enumeration lock is no longer locked. This makes porting easier and also ensures us that character devices must eventually go away after a USB device detach. While at it ensure that "flag_iserror" is only written when "priv_mtx" is locked, which is protecting it. MFC after: 5 days
* Fix misleading comment.hselasky2015-01-081-1/+1
| | | | | MFC after: 1 week Reported by: rpaulo@
* Fix handling of an error case when the MUSB driver is operating in USBhselasky2015-01-081-6/+11
| | | | | | | device side mode. MFC after: 1 week Reported by: br@
* Add 64-bit DMA support in the XHCI controller driver.hselasky2015-01-0521-56/+83
| | | | | | | - Fix some comments and whitespace while at it. MFC after: 1 month Submitted by: marius@
* Make a bunch of USB debug SYSCTLs tunable, so that their value(s) canhselasky2015-01-057-8/+8
| | | | be set before the USB device(s) are probed.
* Allow systems having a page size greater than 4K to use fewerhselasky2014-12-301-3/+15
| | | | | | | | | scatter-gather XHCI TRB entries for its payload data. The XHCI controller can handle at least 65536 bytes per scatter-gather list entry. MFC after: 1 week Suggested by: Kohji Okuno <okuno.kohji@jp.panasonic.com>
* Add missed flushing of data which can happen when "xhci_configure_mask()"hselasky2014-12-301-4/+9
| | | | | | | | is called from "xhci_configure_reset_endpoint()". Ensure the 3-strikes error feature is always enabled except for ISOCHRONOUS transfers. MFC after: 1 week Suggested by: marius@
* Improve/fix interrupt allocation/setup/release:marius2014-12-272-22/+24
| | | | | | | | | | | | | | - Simplify MSI allocation to what is actually needed for a single one. - Release the MSI and the corresponding bus resource as appropriate when either the interrupt resource cannot be allocated or setting up the interrupt fails. - Error out when interrupt allocation or setup fails and polling is disabled. - Release the MSI after the corresponding bus resource so the former is not leaked on detach. - Remove a redundant softc member. MFC after: 3 days
* Add port routing support for Wildcat Point.hselasky2014-12-081-0/+1
| | | | | PR: 195793 MFC after: 1 week
* Optimise bit searching loop by using the ffs() function.hselasky2014-12-051-46/+44
| | | | Make some related bit shifts unsigned while at it.
* Optimise the bit searching loops, by quickly skipping the 16 first sethselasky2014-12-031-3/+3
| | | | | bits if all the 16 first bits are set. This way the worst case searching time is reduced from 32 to 16 cycles.
* Workaround for possible bug in the SAF1761 chip. Wait 125us beforehselasky2014-12-032-3/+53
| | | | | | | re-using a hardware propritary transfer descriptor, PTD, in USB host mode. If the PTD's are recycled too quickly, it has been observed that the hardware simply fails to schedule the requested job or resets completely disconnecting all devices.
* Add PCI ID for Intel Lynx Point LP controller.adrian2014-11-261-0/+2
| | | | | | | PR: kern/195398 Submitted by: grembo Obtained from: DragonflyBSD MFC after: 1 week
* Add bunch of PCI IDs of Intel Wildcat Point (9 Series) chipsets.mav2014-11-262-0/+6
| | | | MFC after: 1 week
* Add Apple Intrepid USB controller ID.jhibbits2014-11-251-0/+2
| | | | MFC after: 2 weeks
* Fix the host mode ISOCHRONOUS transfer interval programming in thehselasky2014-11-221-27/+56
| | | | | | | | SAF1761 OTG driver. Currently the driver logic is very simple and double buffering the USB transactions is not done. Also you need to use an external USB high speed USB HUB for reliable FULL speed outgoing ISOCHRONOUS traffic, because the internal one chokes on so-called split transfers above 188 bytes.
* Use correct length mask for split transactions. The hardware wouldhselasky2014-11-222-4/+14
| | | | | | sometimes put non-zero values in the upper length bits, which are available for high-speed-only USB transactions, breaking the reception of data.
* Add the Intel BayTrail USB device which needs port routing for USB 3.0.kevlo2014-10-212-0/+5
| | | | | Tested on the BayTrail E3845 platform. Reviewed by: hselasky
* Refine support for disabling USB enumeration to allow device detachhselasky2014-10-091-10/+1
| | | | | | and suspend and resume of existing devices. MFC after: 2 weeks
* Add support for disabling USB enumeration in general or on selectedhselasky2014-10-081-1/+10
| | | | | | USB HUBs. MFC after: 2 weeks
* Fix XHCI driver for devices which have more than 15 physical root HUBhselasky2014-10-031-1/+2
| | | | | | | | | ports. The current bitmap array was too small to hold more than 16 bits and would at some point toggle the context size, which then would trigger an enumeration fault and cause a fallback to the EHCI companion controller, if any. MFC after: 3 days
* Make sure we always set the maximum number of valid contexts.hselasky2014-10-021-7/+10
| | | | MFC after: 3 days
* Set default cycle state in case of early interrupts.hselasky2014-10-011-0/+4
| | | | MFC after: 3 days
* Move the ARM Samsung s3c2xx0 support files into the samsung directory, togavin2014-09-251-1/+1
| | | | | | match other platforms. Discussed with: andrew
* Some XHCI hardware requires dropping the endpoint context beforehselasky2014-09-221-1/+8
| | | | | | | adding it again. MFC after: 3 days Submitted by: Kohji Okuno <okuno.kohji@jp.panasonic.com>
* Add IDs for Intel Patsburg USB 2.0 controller.mav2014-09-051-0/+4
|
* - Implement fast interrupt handler to save CPU usage.hselasky2014-08-054-85/+127
| | | | | | | | | - Cleanup some register reads and writes to use existing register access macros. - Ensure code which only applies to the control endpoint is not run for other endpoints in the data transfer path. MFC after: 3 days
* - Ensure code which only applies to the control endpoint is not runhselasky2014-08-051-27/+31
| | | | | | | | for other endpoints in the data transfer path. - Ensure all bits of the "EPCON" register is written during initialisation. MFC after: 3 days
OpenPOWER on IntegriCloud