summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/controller/xhci.c
Commit message (Collapse)AuthorAgeFilesLines
* MFC r295928:hselasky2016-03-071-0/+13
| | | | | | | | | | | Configure the correct bMaxPacketSize for control endpoints before requesting the initial complete device descriptor and not as part of the subsequent babble error recovery. Babble means that the received USB packet was bigger than than configured maximum packet size. This only affects enumeration of FULL speed USB devices which use a bMaxPacketSize different from 8 bytes. This patch might help fix enumeration of USB devices which exhibit USB I/O errors in dmesg during boot.
* MFC r285914, r289029 and r289560:hselasky2015-11-031-64/+60
| | | | | | | | | | | | | | - Move the remainder of host controller capability registers reading from 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. - Add quirks for USB 3.0 PCI devices. PR: 203650
* MFC r279544:hselasky2015-03-051-4/+10
| | | | | | Add quirk to disable 64-bit XHCI DMA after r276717. Requested by: Gary Jennejohn <gljennjohn@gmail.com>
* MFC r279233:hselasky2015-02-271-0/+7
| | | | | | Ensure that the XHCI driver will refresh the control endpoint settings 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 r278477:hselasky2015-02-131-2/+2
| | | | Fix DMA address casts.
* MFC r278071:hselasky2015-02-101-1/+11
| | | | | | | Section 3.2.9 in the XHCI specification about control transfers says 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.
* MFC r266969 and r276717:hselasky2015-02-051-41/+51
| | | | | | Add 64-bit DMA support in the XHCI controller driver. - Fix some comments and whitespaces while at it. - Add support for PAE.
* MFC r276321, r276404, r276407 and r276799:hselasky2015-01-111-4/+9
| | | | | | | | | | | | Various XHCI fixes and improvements: - Improve and fix MSI interrupt allocation, setup and release. - Add missed flushing of data which can happen when "xhci_configure_mask()" is called from "xhci_configure_reset_endpoint()". Ensure the 3-strikes error feature is always enabled except for ISOCHRONOUS transfers. - Allow systems having a page size greater than 4K to use fewer scatter-gather XHCI TRB entries for its payload data. The XHCI controller can handle at least 65536 bytes per scatter-gather list entry.
* MFC r272349, r272422 and r272479:hselasky2014-10-061-7/+14
| | | | | | | | | | - Fix XHCI driver for devices which have more than 15 physical root HUB 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. - Make sure we always set the maximum number of valid contexts. - Set default cycle state in case of early interrupts.
* MFC r271953:hselasky2014-09-251-1/+8
| | | | | | | Some XHCI hardware requires dropping the endpoint context before adding it again. Approved by: re, glebius
* MFC r269139:hselasky2014-08-021-18/+18
| | | | | Split the XHCI TRB allocations into smaller parts, so that we don't end up allocating contiguous busdma buffers above PAGE_SIZE bytes.
* MFC r266541:hselasky2014-05-251-11/+5
| | | | | | | | - Fix a bug where the TLBPC value was forced to being odd for IN direction isochronous transfers. - Remove setting of fields which does not belong to the respective TRBs. These fields are currently set as zero and this is more a cosmetic change.
* MFC r265015:hselasky2014-04-291-1/+5
| | | | | Setting the IMOD value below 0x3F8 can cause IRQ lockups in the Intel LynxPoint USB 3.0 controllers found in MacBookPro 2013's.
* MFC r264294:hselasky2014-04-111-2/+14
| | | | Fix for infinite XHCI reset loops when the set address USB request fails.
* MFC r261872:hselasky2014-02-231-1/+2
| | | | | Fix minor logical error in the XHCI driver. Set correct SETUP packet direction value.
* MFC r258545:hselasky2014-01-241-1/+5
| | | | | Comply to the XHCI specification. Certain input context fields should always be zero.
* MFC r260388, r260535 and r260536:hselasky2014-01-241-10/+12
| | | | Fix XHCI interrupt logic for "Intel Lynx Point" found in MBP2013.
* MFC r260184:hselasky2014-01-111-2/+2
| | | | Minor correction for the XHCI reset logic.
* MFC r259248 and r259462:hselasky2013-12-191-2/+13
| | | | | | Set chain bit correctly. This will fix some problems sending and receiving Zero Length Packets, ZLPs. See comment in code for more information.
* MFC r259023 and r259095:hselasky2013-12-191-18/+79
| | | | | Improve the XHCI command timeout recovery handling code. Fix some typos while at it.
* MFC r256750:hselasky2013-10-251-0/+19
| | | | | | | | Improve XHCI stability. When a command timeout happens, the command should be aborted else the command queue can stop. Refer to section "4.6.1.2" of the XHCI specification. Approved by: re (glebius)
* Stability fixes for Intel LynxPoint XHCI controllers. Disable XHCI porthselasky2013-09-211-14/+32
| | | | | | | | | | routing if we get certain errors. Poll for command completion upon command timeouts. The XHCI error events might not generate interrupts. MFC after: 1 week Reported by: Daniel Gerzo <danger@rulez.sk>, Antonis Anastasiadis <anastasiadis@datalive.gr> PR: usb/181159 Approved by: re (gjb)
* Revert parts of r245132 and r245175. We don't need to write to thehselasky2013-09-071-10/+0
| | | | | | | | IMAN register to clear the pending interrupt status bits. This patch tries to solve problems seen on the MacBook Air, as reported by Johannes Lundberg <johannes@brilliantservice.co.jp> MFC after: 1 week
* Disable USB 3.0 streams mode by default, hence not all XHCI chipsetshselasky2013-09-071-2/+9
| | | | implement it to avoid undefined behaviour.
* Fix an XHCI regression:hselasky2013-07-211-11/+9
| | | | | | | | | | | | | The Block Event Interrupts, BEI, feature does not work like expected with the Renesas XHCI chipsets. Revert feature. While at it correct the TD SIZE computation in case of Zero Length Packet, ZLP, in the end of a multi frame USB transfer. MFC after: 1 week PR: usb/180726
* Fix some recent regression issues:hselasky2013-06-071-47/+55
| | | | | | | | | | | | | 1) Only multi-TD isochronous transfers should use NORMAL type after specific type as per XHCI specification. 2) BEI bit is only available in NORMAL and ISOCHRONOUS TRB types. Don't use this bit for other types to avoid hardware asserts. Reserved bits should be don't care though ... MFC after: 1 week PR: usb/179342
* Add support for polling the XHCI interrupt handler whenhselasky2013-06-071-0/+14
| | | | | | | | | | the regular interrupt handler is not working properly or in case of MSI interrupts which are not yet supported. Remove interrupt setup code for FreeBSD versions older than 700031. MFC after: 1 week PR: usb/179342
* Correct the TD size computation. npkt should reflect the number of packetshselasky2013-06-021-2/+6
| | | | | | | remaining after the current TRB has been executed. Refer to section 4.11.2.4 of the XHCI specification for USB. MFC after: 1 week
* Correct TRB type for multi TRB transfers of non-NORMAL type, like isochronous.hselasky2013-06-021-6/+14
| | | | | | | Only the first TRB should be markes as special. Subsequent ones should be marked as NORMAL. Optimise away TD first variable. MFC after: 1 week
* Block event interrupts when we don't need it as soon as possible.hselasky2013-06-021-9/+24
| | | | | | | Typically this feature is used for isochronous transfers. This reduces the amount of XHCI interrupting. MFC after: 1 week
* Don't set the start ISOC ASAP bit for non-isochronous TRBs.hselasky2013-06-021-5/+8
| | | | MFC after: 1 week
* Correct some XHCI streams mode transfer handling found by code inspection.hselasky2013-06-021-18/+36
| | | | | | | The existing streams mode support is not working and has not been tested due to lack of hardware which supports the given feature. MFC after: 1 week
* Add descriptive comment.hselasky2013-04-231-0/+6
|
* Fix spelling.hselasky2013-03-201-1/+2
|
* Add defines to more easily allow a single threaded version of the FreeBSDhselasky2013-02-051-9/+2
| | | | USB stack. This is useful for non-kernel purposes, like the loader.
* Do not unnecessarily split a string literal, becausehselasky2013-01-301-2/+2
| | | | | | splitting it makes it hard to grep. Submitted by: Christoph Mallon
* Modify the FreeBSD USB kernel code so that it can be compiled directlyhselasky2013-01-301-3/+6
| | | | | | | | | | | | | | | | | | | | | | into the FreeBSD boot loader, typically for non-USB aware BIOSes, EFI systems or embedded platforms. This is also useful for out of the system compilation of the FreeBSD USB stack for various purposes. The USB kernel files can now optionally include a global header file which should include all needed definitions required to compile the FreeBSD USB stack. When the global USB header file is included, no other USB header files will be included by default. Add new file containing the USB stack configuration for the FreeBSD loader build. Replace some __FBSDID()'s by /* $FreeBSD$ */ comments. Now all USB files follow the same style. Use cases: - console in loader via USB - loading kernel via USB Discussed with: Hiroki Sato, hrs @ EuroBSDCon
* Add missing NULL pointer check.hselasky2013-01-301-0/+6
| | | | | Reported by: Lars Engels MFC after: 1 week
* Shave off another register write to save some morehselasky2013-01-081-12/+17
| | | | | | | | microseconds of PCI access time. Tested by: sos @ Submitted by: sos @ MFC after: 1 week
* Optimise the XHCI interrupt handling.hselasky2013-01-071-2/+6
| | | | | | | | | | | This patch will save CPU time when the XHCI interrupt is shared with other devices. Only check event rings when interrupt bits are set. Otherwise would indicate hiding possible hardware fault(s). Tested by: sos @ Submitted by: sos @ MFC after: 1 week
* - Add support for Etron EJ168 USB 3.0 Host Controllers.hselasky2012-12-011-19/+51
| | | | | | | | | | | | | This brand of controllers expects that the number of contexts specified in the input slot context points to an active endpoint context, else it refuses to operate. - Ring the correct doorbell when streams mode is used. - Wrap one or two long lines. Tested by: Markus Pfeiffer (DragonFlyBSD) MFC after: 1 week
* Add missing CTLFLAG_TUN flag to tunable sysctls in USB stack.hselasky2012-10-261-4/+3
| | | | | | | | Rearrange the tunables and belonging sysctl declarations, so that they are next to eachother. Submitted by: n_hibma @ MFC after: 1 week
* Inherit USB mode from RootHUB port where the USB device is connected.hselasky2012-10-011-4/+0
| | | | | | | Only RootHUB ports can be dual mode. Disallow OTG ports on external HUBs. This simplifies some checks in the USB controller drivers. MFC after: 1 week
* Add tunable for XHCI port routing.hselasky2012-08-231-2/+15
| | | | MFC after: 1 week
* Add support for the so-called streams feature of BULK endpointshselasky2012-08-121-29/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in SUPER-speed mode, USB 3.0. This feature has not been tested yet, due to lack of hardware. This feature is useful when implementing protocols like UASP, USB attached SCSI which promises higher USB mass storage throughput. This patch also implements support for hardware processing of endpoints for increased performance. The switching to hardware processing of an endpoint is done via a callback to the USB controller driver. The stream feature is implemented like a variant of a hardware USB protocol. USB controller drivers implementing device mode needs to be updated to implement the new "xfer_stall" USB controller method and remove the "xfer" argument from the "set_stall" method. The API's toward existing USB drivers are preserved. To setup a USB transfer in stream mode, set the "stream_id" field of the USB config structure to the desired value. The maximum number of BULK streams is currently hardcoded and limited to 8 via a define in usb_freebsd.h. All USB drivers should be re-compiled after this change. LibUSB will be updated next week to support streams mode. A new IOCTL to setup BULK streams as already been implemented. The ugen device nodes currently only supports stream ID zero. The FreeBSD version has been bumped. MFC after: 2 weeks
* Add support for Multi-TT mode of modern USB HUBs.hselasky2012-04-291-13/+36
| | | | | | | | | | This will give you more bandwidth for isochronous FULL speed applications connected through a High Speed HUB. This patch has been tested with XHCI and EHCI. MFC after: 1 week
* Fix compiler warnings, mostly signed issues,hselasky2012-04-021-4/+3
| | | | | | when USB modules are compiled with WARNS=9. MFC after: 1 weeks
* 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
OpenPOWER on IntegriCloud