3 Provides some data structure definitions used by the XHCI host controller driver.
5 Copyright (c) 2011 - 2017, Intel Corporation. All rights reserved.<BR>
6 Copyright (c) Microsoft Corporation.<BR>
7 SPDX-License-Identifier: BSD-2-Clause-Patent
16 #include <Protocol/Usb2HostController.h>
17 #include <Protocol/PciIo.h>
19 #include <Guid/EventGroup.h>
21 #include <Library/BaseLib.h>
22 #include <Library/BaseMemoryLib.h>
23 #include <Library/UefiDriverEntryPoint.h>
24 #include <Library/UefiBootServicesTableLib.h>
25 #include <Library/MemoryAllocationLib.h>
26 #include <Library/UefiLib.h>
27 #include <Library/DebugLib.h>
28 #include <Library/ReportStatusCodeLib.h>
30 #include <IndustryStandard/Pci.h>
32 typedef struct _USB_XHCI_INSTANCE USB_XHCI_INSTANCE
;
33 typedef struct _USB_DEV_CONTEXT USB_DEV_CONTEXT
;
36 #include "XhciSched.h"
37 #include "ComponentName.h"
41 // The unit is microsecond, setting it as 1us.
43 #define XHC_1_MICROSECOND (1)
45 // The unit is microsecond, setting it as 1ms.
47 #define XHC_1_MILLISECOND (1000)
49 // XHC generic timeout experience values.
50 // The unit is millisecond, setting it as 10s.
52 #define XHC_GENERIC_TIMEOUT (10 * 1000)
54 // XHC reset timeout experience values.
55 // The unit is millisecond, setting it as 1s.
57 #define XHC_RESET_TIMEOUT (1000)
59 // TRSTRCY delay requirement in usb 2.0 spec chapter 7.1.7.5.
60 // The unit is microsecond, setting it as 10ms.
62 #define XHC_RESET_RECOVERY_DELAY (10 * 1000)
64 // XHC async transfer timer interval, set by experience.
65 // The unit is 100us, takes 1ms as interval.
67 #define XHC_ASYNC_TIMER_INTERVAL EFI_TIMER_PERIOD_MILLISECONDS(1)
70 // XHC raises TPL to TPL_NOTIFY to serialize all its operations
71 // to protect shared data structures.
73 #define XHC_TPL TPL_NOTIFY
75 #define CMD_RING_TRB_NUMBER 0x100
76 #define TR_RING_TRB_NUMBER 0x100
77 #define ERST_NUMBER 0x01
78 #define EVENT_RING_TRB_NUMBER 0x200
84 #define INT_INTER_ASYNC 4
86 #define EFI_LIST_CONTAINER(Entry, Type, Field) BASE_CR(Entry, Type, Field)
88 #define XHC_LOW_32BIT(Addr64) ((UINT32)(((UINTN)(Addr64)) & 0xFFFFFFFF))
89 #define XHC_HIGH_32BIT(Addr64) ((UINT32)(RShiftU64((UINT64)(UINTN)(Addr64), 32) & 0xFFFFFFFF))
90 #define XHC_BIT_IS_SET(Data, Bit) ((BOOLEAN)(((Data) & (Bit)) == (Bit)))
92 #define XHC_REG_BIT_IS_SET(Xhc, Offset, Bit) \
93 (XHC_BIT_IS_SET(XhcReadOpReg ((Xhc), (Offset)), (Bit)))
95 #define XHCI_IS_DATAIN(EndpointAddr) XHC_BIT_IS_SET((EndpointAddr), 0x80)
97 #define XHCI_INSTANCE_SIG SIGNATURE_32 ('x', 'h', 'c', 'i')
98 #define XHC_FROM_THIS(a) CR(a, USB_XHCI_INSTANCE, Usb2Hc, XHCI_INSTANCE_SIG)
100 #define USB_DESC_TYPE_HUB 0x29
101 #define USB_DESC_TYPE_HUB_SUPER_SPEED 0x2a
104 // The RequestType in EFI_USB_DEVICE_REQUEST is composed of
105 // three fields: One bit direction, 2 bit type, and 5 bit
108 #define USB_REQUEST_TYPE(Dir, Type, Target) \
109 ((UINT8)((((Dir) == EfiUsbDataIn ? 0x01 : 0) << 7) | (Type) | (Target)))
112 // Xhci Data and Ctrl Structures
127 UINT8 HubContrCurrent
;
129 } EFI_USB_HUB_DESCRIPTOR
;
132 struct _USB_DEV_CONTEXT
{
134 // Whether this entry in UsbDevContext array is used or not.
138 // The slot id assigned to the new device through XHCI's Enable_Slot cmd.
142 // The route string presented an attached usb device.
144 USB_DEV_ROUTE RouteString
;
146 // The route string of parent device if it exists. Otherwise it's zero.
148 USB_DEV_ROUTE ParentRouteString
;
150 // The actual device address assigned by XHCI through Address_Device command.
154 // The requested device address from UsbBus driver through Set_Address standard usb request.
155 // As XHCI spec replaces this request with Address_Device command, we have to record the
156 // requested device address and establish a mapping relationship with the actual device address.
157 // Then UsbBus driver just need to be aware of the requested device address to access usb device
158 // through EFI_USB2_HC_PROTOCOL. Xhci driver would be responsible for translating it to actual
159 // device address and access the actual device.
163 // The pointer to the input device context.
167 // The pointer to the output device context.
171 // The transfer queue for every endpoint.
173 VOID
*EndpointTransferRing
[31];
175 // The device descriptor which is stored to support XHCI's Evaluate_Context cmd.
177 EFI_USB_DEVICE_DESCRIPTOR DevDesc
;
179 // As a usb device may include multiple configuration descriptors, we dynamically allocate an array
181 // Note that every configuration descriptor stored here includes those lower level descriptors,
182 // such as Interface descriptor, Endpoint descriptor, and so on.
183 // These information is used to support XHCI's Config_Endpoint cmd.
185 EFI_USB_CONFIG_DESCRIPTOR
**ConfDesc
;
187 // A device has an active Configuration.
189 UINT8 ActiveConfiguration
;
191 // Every interface has an active AlternateSetting.
193 UINT8
*ActiveAlternateSetting
;
196 struct _USB_XHCI_INSTANCE
{
198 EFI_PCI_IO_PROTOCOL
*PciIo
;
199 UINT64 OriginalPciAttributes
;
200 USBHC_MEM_POOL
*MemPool
;
202 EFI_USB2_HC_PROTOCOL Usb2Hc
;
204 EFI_DEVICE_PATH_PROTOCOL
*DevicePath
;
207 // ExitBootServicesEvent is used to set OS semaphore and
208 // stop the XHC DMA operation after exit boot service.
210 EFI_EVENT ExitBootServiceEvent
;
212 LIST_ENTRY AsyncIntTransfers
;
214 UINT8 CapLength
; ///< Capability Register Length
215 XHC_HCSPARAMS1 HcSParams1
; ///< Structural Parameters 1
216 XHC_HCSPARAMS2 HcSParams2
; ///< Structural Parameters 2
217 XHC_HCCPARAMS HcCParams
; ///< Capability Parameters
218 UINT32 DBOff
; ///< Doorbell Offset
219 UINT32 RTSOff
; ///< Runtime Register Space Offset
224 UINT32 MaxScratchpadBufs
;
225 UINT64
*ScratchEntry
;
226 UINTN
*ScratchEntryMap
;
227 UINT32 ExtCapRegBase
;
228 UINT32 UsbLegSupOffset
;
229 UINT32 DebugCapSupOffset
;
237 TRANSFER_RING CmdRing
;
241 EVENT_RING EventRing
;
245 EFI_UNICODE_STRING_TABLE
*ControllerNameTable
;
248 // Store device contexts managed by XHCI instance
249 // The array supports up to 255 devices, entry 0 is reserved and should not be used.
251 USB_DEV_CONTEXT UsbDevContext
[256];
253 BOOLEAN Support64BitDma
; // Whether 64 bit DMA may be used with this device
257 extern EFI_DRIVER_BINDING_PROTOCOL gXhciDriverBinding
;
258 extern EFI_COMPONENT_NAME_PROTOCOL gXhciComponentName
;
259 extern EFI_COMPONENT_NAME2_PROTOCOL gXhciComponentName2
;
262 Test to see if this driver supports ControllerHandle. Any
263 ControllerHandle that has Usb2HcProtocol installed will
266 @param This Protocol instance pointer.
267 @param Controller Handle of device to test.
268 @param RemainingDevicePath Not used.
270 @return EFI_SUCCESS This driver supports this device.
271 @return EFI_UNSUPPORTED This driver does not support this device.
276 XhcDriverBindingSupported (
277 IN EFI_DRIVER_BINDING_PROTOCOL
*This
,
278 IN EFI_HANDLE Controller
,
279 IN EFI_DEVICE_PATH_PROTOCOL
*RemainingDevicePath
283 Starting the Usb XHCI Driver.
285 @param This Protocol instance pointer.
286 @param Controller Handle of device to test.
287 @param RemainingDevicePath Not used.
289 @return EFI_SUCCESS supports this device.
290 @return EFI_UNSUPPORTED do not support this device.
291 @return EFI_DEVICE_ERROR cannot be started due to device Error.
292 @return EFI_OUT_OF_RESOURCES cannot allocate resources.
297 XhcDriverBindingStart (
298 IN EFI_DRIVER_BINDING_PROTOCOL
*This
,
299 IN EFI_HANDLE Controller
,
300 IN EFI_DEVICE_PATH_PROTOCOL
*RemainingDevicePath
304 Stop this driver on ControllerHandle. Support stopping any child handles
305 created by this driver.
307 @param This Protocol instance pointer.
308 @param Controller Handle of device to stop driver on.
309 @param NumberOfChildren Number of Children in the ChildHandleBuffer.
310 @param ChildHandleBuffer List of handles for the children we need to stop.
312 @return EFI_SUCCESS Success.
313 @return EFI_DEVICE_ERROR Fail.
318 XhcDriverBindingStop (
319 IN EFI_DRIVER_BINDING_PROTOCOL
*This
,
320 IN EFI_HANDLE Controller
,
321 IN UINTN NumberOfChildren
,
322 IN EFI_HANDLE
*ChildHandleBuffer
326 Retrieves the capability of root hub ports.
328 @param This The EFI_USB2_HC_PROTOCOL instance.
329 @param MaxSpeed Max speed supported by the controller.
330 @param PortNumber Number of the root hub ports.
331 @param Is64BitCapable Whether the controller supports 64-bit memory
334 @retval EFI_SUCCESS Host controller capability were retrieved successfully.
335 @retval EFI_INVALID_PARAMETER Either of the three capability pointer is NULL.
341 IN EFI_USB2_HC_PROTOCOL
*This
,
343 OUT UINT8
*PortNumber
,
344 OUT UINT8
*Is64BitCapable
348 Provides software reset for the USB host controller.
350 @param This This EFI_USB2_HC_PROTOCOL instance.
351 @param Attributes A bit mask of the reset operation to perform.
353 @retval EFI_SUCCESS The reset operation succeeded.
354 @retval EFI_INVALID_PARAMETER Attributes is not valid.
355 @retval EFI_UNSUPPOURTED The type of reset specified by Attributes is
356 not currently supported by the host controller.
357 @retval EFI_DEVICE_ERROR Host controller isn't halted to reset.
363 IN EFI_USB2_HC_PROTOCOL
*This
,
368 Retrieve the current state of the USB host controller.
370 @param This This EFI_USB2_HC_PROTOCOL instance.
371 @param State Variable to return the current host controller
374 @retval EFI_SUCCESS Host controller state was returned in State.
375 @retval EFI_INVALID_PARAMETER State is NULL.
376 @retval EFI_DEVICE_ERROR An error was encountered while attempting to
377 retrieve the host controller's current state.
383 IN EFI_USB2_HC_PROTOCOL
*This
,
384 OUT EFI_USB_HC_STATE
*State
388 Sets the USB host controller to a specific state.
390 @param This This EFI_USB2_HC_PROTOCOL instance.
391 @param State The state of the host controller that will be set.
393 @retval EFI_SUCCESS The USB host controller was successfully placed
394 in the state specified by State.
395 @retval EFI_INVALID_PARAMETER State is invalid.
396 @retval EFI_DEVICE_ERROR Failed to set the state due to device error.
402 IN EFI_USB2_HC_PROTOCOL
*This
,
403 IN EFI_USB_HC_STATE State
407 Retrieves the current status of a USB root hub port.
409 @param This This EFI_USB2_HC_PROTOCOL instance.
410 @param PortNumber The root hub port to retrieve the state from.
411 This value is zero-based.
412 @param PortStatus Variable to receive the port state.
414 @retval EFI_SUCCESS The status of the USB root hub port specified.
415 by PortNumber was returned in PortStatus.
416 @retval EFI_INVALID_PARAMETER PortNumber is invalid.
417 @retval EFI_DEVICE_ERROR Can't read register.
422 XhcGetRootHubPortStatus (
423 IN EFI_USB2_HC_PROTOCOL
*This
,
425 OUT EFI_USB_PORT_STATUS
*PortStatus
429 Sets a feature for the specified root hub port.
431 @param This This EFI_USB2_HC_PROTOCOL instance.
432 @param PortNumber Root hub port to set.
433 @param PortFeature Feature to set.
435 @retval EFI_SUCCESS The feature specified by PortFeature was set.
436 @retval EFI_INVALID_PARAMETER PortNumber is invalid or PortFeature is invalid.
437 @retval EFI_DEVICE_ERROR Can't read register.
442 XhcSetRootHubPortFeature (
443 IN EFI_USB2_HC_PROTOCOL
*This
,
445 IN EFI_USB_PORT_FEATURE PortFeature
449 Clears a feature for the specified root hub port.
451 @param This A pointer to the EFI_USB2_HC_PROTOCOL instance.
452 @param PortNumber Specifies the root hub port whose feature is
453 requested to be cleared.
454 @param PortFeature Indicates the feature selector associated with the
455 feature clear request.
457 @retval EFI_SUCCESS The feature specified by PortFeature was cleared
458 for the USB root hub port specified by PortNumber.
459 @retval EFI_INVALID_PARAMETER PortNumber is invalid or PortFeature is invalid.
460 @retval EFI_DEVICE_ERROR Can't read register.
465 XhcClearRootHubPortFeature (
466 IN EFI_USB2_HC_PROTOCOL
*This
,
468 IN EFI_USB_PORT_FEATURE PortFeature
472 Submits control transfer to a target USB device.
474 @param This This EFI_USB2_HC_PROTOCOL instance.
475 @param DeviceAddress The target device address.
476 @param DeviceSpeed Target device speed.
477 @param MaximumPacketLength Maximum packet size the default control transfer
478 endpoint is capable of sending or receiving.
479 @param Request USB device request to send.
480 @param TransferDirection Specifies the data direction for the data stage
481 @param Data Data buffer to be transmitted or received from USB
483 @param DataLength The size (in bytes) of the data buffer.
484 @param Timeout Indicates the maximum timeout, in millisecond.
485 @param Translator Transaction translator to be used by this device.
486 @param TransferResult Return the result of this control transfer.
488 @retval EFI_SUCCESS Transfer was completed successfully.
489 @retval EFI_OUT_OF_RESOURCES The transfer failed due to lack of resources.
490 @retval EFI_INVALID_PARAMETER Some parameters are invalid.
491 @retval EFI_TIMEOUT Transfer failed due to timeout.
492 @retval EFI_DEVICE_ERROR Transfer failed due to host controller or device error.
498 IN EFI_USB2_HC_PROTOCOL
*This
,
499 IN UINT8 DeviceAddress
,
500 IN UINT8 DeviceSpeed
,
501 IN UINTN MaximumPacketLength
,
502 IN EFI_USB_DEVICE_REQUEST
*Request
,
503 IN EFI_USB_DATA_DIRECTION TransferDirection
,
505 IN OUT UINTN
*DataLength
,
507 IN EFI_USB2_HC_TRANSACTION_TRANSLATOR
*Translator
,
508 OUT UINT32
*TransferResult
512 Submits bulk transfer to a bulk endpoint of a USB device.
514 @param This This EFI_USB2_HC_PROTOCOL instance.
515 @param DeviceAddress Target device address.
516 @param EndPointAddress Endpoint number and its direction in bit 7.
517 @param DeviceSpeed Device speed, Low speed device doesn't support bulk
519 @param MaximumPacketLength Maximum packet size the endpoint is capable of
520 sending or receiving.
521 @param DataBuffersNumber Number of data buffers prepared for the transfer.
522 @param Data Array of pointers to the buffers of data to transmit
523 from or receive into.
524 @param DataLength The lenght of the data buffer.
525 @param DataToggle On input, the initial data toggle for the transfer;
526 On output, it is updated to to next data toggle to
527 use of the subsequent bulk transfer.
528 @param Timeout Indicates the maximum time, in millisecond, which
529 the transfer is allowed to complete.
530 @param Translator A pointr to the transaction translator data.
531 @param TransferResult A pointer to the detailed result information of the
534 @retval EFI_SUCCESS The transfer was completed successfully.
535 @retval EFI_OUT_OF_RESOURCES The transfer failed due to lack of resource.
536 @retval EFI_INVALID_PARAMETER Some parameters are invalid.
537 @retval EFI_TIMEOUT The transfer failed due to timeout.
538 @retval EFI_DEVICE_ERROR The transfer failed due to host controller error.
544 IN EFI_USB2_HC_PROTOCOL
*This
,
545 IN UINT8 DeviceAddress
,
546 IN UINT8 EndPointAddress
,
547 IN UINT8 DeviceSpeed
,
548 IN UINTN MaximumPacketLength
,
549 IN UINT8 DataBuffersNumber
,
550 IN OUT VOID
*Data
[EFI_USB_MAX_BULK_BUFFER_NUM
],
551 IN OUT UINTN
*DataLength
,
552 IN OUT UINT8
*DataToggle
,
554 IN EFI_USB2_HC_TRANSACTION_TRANSLATOR
*Translator
,
555 OUT UINT32
*TransferResult
559 Submits an asynchronous interrupt transfer to an
560 interrupt endpoint of a USB device.
562 @param This This EFI_USB2_HC_PROTOCOL instance.
563 @param DeviceAddress Target device address.
564 @param EndPointAddress Endpoint number and its direction encoded in bit 7
565 @param DeviceSpeed Indicates device speed.
566 @param MaximumPacketLength Maximum packet size the target endpoint is capable
567 @param IsNewTransfer If TRUE, to submit an new asynchronous interrupt
568 transfer If FALSE, to remove the specified
569 asynchronous interrupt.
570 @param DataToggle On input, the initial data toggle to use; on output,
571 it is updated to indicate the next data toggle.
572 @param PollingInterval The he interval, in milliseconds, that the transfer
574 @param DataLength The length of data to receive at the rate specified
576 @param Translator Transaction translator to use.
577 @param CallBackFunction Function to call at the rate specified by
579 @param Context Context to CallBackFunction.
581 @retval EFI_SUCCESS The request has been successfully submitted or canceled.
582 @retval EFI_INVALID_PARAMETER Some parameters are invalid.
583 @retval EFI_OUT_OF_RESOURCES The request failed due to a lack of resources.
584 @retval EFI_DEVICE_ERROR The transfer failed due to host controller error.
589 XhcAsyncInterruptTransfer (
590 IN EFI_USB2_HC_PROTOCOL
*This
,
591 IN UINT8 DeviceAddress
,
592 IN UINT8 EndPointAddress
,
593 IN UINT8 DeviceSpeed
,
594 IN UINTN MaximumPacketLength
,
595 IN BOOLEAN IsNewTransfer
,
596 IN OUT UINT8
*DataToggle
,
597 IN UINTN PollingInterval
,
599 IN EFI_USB2_HC_TRANSACTION_TRANSLATOR
*Translator
,
600 IN EFI_ASYNC_USB_TRANSFER_CALLBACK CallBackFunction
,
601 IN VOID
*Context OPTIONAL
605 Submits synchronous interrupt transfer to an interrupt endpoint
608 @param This This EFI_USB2_HC_PROTOCOL instance.
609 @param DeviceAddress Target device address.
610 @param EndPointAddress Endpoint number and its direction encoded in bit 7
611 @param DeviceSpeed Indicates device speed.
612 @param MaximumPacketLength Maximum packet size the target endpoint is capable
613 of sending or receiving.
614 @param Data Buffer of data that will be transmitted to USB
615 device or received from USB device.
616 @param DataLength On input, the size, in bytes, of the data buffer; On
617 output, the number of bytes transferred.
618 @param DataToggle On input, the initial data toggle to use; on output,
619 it is updated to indicate the next data toggle.
620 @param Timeout Maximum time, in second, to complete.
621 @param Translator Transaction translator to use.
622 @param TransferResult Variable to receive the transfer result.
624 @return EFI_SUCCESS The transfer was completed successfully.
625 @return EFI_OUT_OF_RESOURCES The transfer failed due to lack of resource.
626 @return EFI_INVALID_PARAMETER Some parameters are invalid.
627 @return EFI_TIMEOUT The transfer failed due to timeout.
628 @return EFI_DEVICE_ERROR The failed due to host controller or device error
633 XhcSyncInterruptTransfer (
634 IN EFI_USB2_HC_PROTOCOL
*This
,
635 IN UINT8 DeviceAddress
,
636 IN UINT8 EndPointAddress
,
637 IN UINT8 DeviceSpeed
,
638 IN UINTN MaximumPacketLength
,
640 IN OUT UINTN
*DataLength
,
641 IN OUT UINT8
*DataToggle
,
643 IN EFI_USB2_HC_TRANSACTION_TRANSLATOR
*Translator
,
644 OUT UINT32
*TransferResult
648 Submits isochronous transfer to a target USB device.
650 @param This This EFI_USB2_HC_PROTOCOL instance.
651 @param DeviceAddress Target device address.
652 @param EndPointAddress End point address with its direction.
653 @param DeviceSpeed Device speed, Low speed device doesn't support this
655 @param MaximumPacketLength Maximum packet size that the endpoint is capable of
656 sending or receiving.
657 @param DataBuffersNumber Number of data buffers prepared for the transfer.
658 @param Data Array of pointers to the buffers of data that will
659 be transmitted to USB device or received from USB
661 @param DataLength The size, in bytes, of the data buffer.
662 @param Translator Transaction translator to use.
663 @param TransferResult Variable to receive the transfer result.
665 @return EFI_UNSUPPORTED Isochronous transfer is unsupported.
670 XhcIsochronousTransfer (
671 IN EFI_USB2_HC_PROTOCOL
*This
,
672 IN UINT8 DeviceAddress
,
673 IN UINT8 EndPointAddress
,
674 IN UINT8 DeviceSpeed
,
675 IN UINTN MaximumPacketLength
,
676 IN UINT8 DataBuffersNumber
,
677 IN OUT VOID
*Data
[EFI_USB_MAX_ISO_BUFFER_NUM
],
679 IN EFI_USB2_HC_TRANSACTION_TRANSLATOR
*Translator
,
680 OUT UINT32
*TransferResult
684 Submits Async isochronous transfer to a target USB device.
686 @param This This EFI_USB2_HC_PROTOCOL instance.
687 @param DeviceAddress Target device address.
688 @param EndPointAddress End point address with its direction.
689 @param DeviceSpeed Device speed, Low speed device doesn't support this
691 @param MaximumPacketLength Maximum packet size that the endpoint is capable of
692 sending or receiving.
693 @param DataBuffersNumber Number of data buffers prepared for the transfer.
694 @param Data Array of pointers to the buffers of data that will
695 be transmitted to USB device or received from USB
697 @param DataLength The size, in bytes, of the data buffer.
698 @param Translator Transaction translator to use.
699 @param IsochronousCallBack Function to be called when the transfer complete.
700 @param Context Context passed to the call back function as
703 @return EFI_UNSUPPORTED Isochronous transfer isn't supported.
708 XhcAsyncIsochronousTransfer (
709 IN EFI_USB2_HC_PROTOCOL
*This
,
710 IN UINT8 DeviceAddress
,
711 IN UINT8 EndPointAddress
,
712 IN UINT8 DeviceSpeed
,
713 IN UINTN MaximumPacketLength
,
714 IN UINT8 DataBuffersNumber
,
715 IN OUT VOID
*Data
[EFI_USB_MAX_ISO_BUFFER_NUM
],
717 IN EFI_USB2_HC_TRANSACTION_TRANSLATOR
*Translator
,
718 IN EFI_ASYNC_USB_TRANSFER_CALLBACK IsochronousCallBack
,