2 # The EhciDxe driver is responsible for managing the behavior of EHCI controller.
3 # It implements the interfaces of monitoring the status of all ports and transferring
4 # Control, Bulk, Interrupt and Isochronous requests to Usb2.0 device.
6 # Note that EhciDxe driver is enhanced to guarantee that the EHCI controller get attached
7 # to the EHCI controller before the UHCI driver attaches to the companion UHCI controller.
8 # This way avoids the control transfer on a shared port between EHCI and companion host
9 # controller when UHCI gets attached earlier than EHCI and a USB 2.0 device inserts.
11 # Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
13 # This program and the accompanying materials
14 # are licensed and made available under the terms and conditions of the BSD License
15 # which accompanies this distribution. The full text of the license may be found at
16 # http://opensource.org/licenses/bsd-license.php
18 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
19 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
25 INF_VERSION = 0x00010005
27 MODULE_UNI_FILE = EhciDxe.uni
28 FILE_GUID = BDFE430E-8F2A-4db0-9991-6F856594777E
29 MODULE_TYPE = UEFI_DRIVER
32 ENTRY_POINT = EhcDriverEntryPoint
35 # The following information is for reference only and not required by the build tools.
37 # VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM AARCH64
39 # DRIVER_BINDING = gEhciDriverBinding
40 # COMPONENT_NAME = gEhciComponentName
41 # COMPONENT_NAME2 = gEhciComponentName2
62 MdeModulePkg/MdeModulePkg.dec
65 gEfiMdeModulePkgTokenSpaceGuid.PcdTurnOffUsbLegacySupport ## CONSUMES
71 UefiBootServicesTableLib
79 gEfiEventExitBootServicesGuid ## SOMETIMES_CONSUMES ## Event
82 gEfiPciIoProtocolGuid ## TO_START
83 gEfiUsb2HcProtocolGuid ## BY_START
86 # EVENT_TYPE_PERIODIC_TIMER ## CONSUMES
89 [UserExtensions.TianoCore."ExtraFiles"]