]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
381f4bd4004db70e93b18296ac3387db7c73f11b
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / EhciDxe / EhciDxe.inf
1 #/** @file
2 #
3 # Component Description File For EhciDxe Module.
4 #
5 # EhciDxe driver is responsible for managing the behavior of EHCI controller.
6 # It implements the interfaces of monitoring the status of all ports and transferring
7 # Control, Bulk, Interrupt and Isochronous requests to Usb2.0 device.
8 #
9 # Note that EhciDxe driver is enhanced to guarantee that the EHCI controller get attached
10 # to the EHCI controller before the UHCI driver attaches to the companion UHCI controller.
11 # This way avoids the control transfer on a shared port between EHCI and companion host
12 # controller when UHCI gets attached earlier than EHCI and a USB 2.0 device inserts.
13 #
14 # Copyright (c) 2006 - 2009, Intel Corporation.
15 #
16 # All rights reserved. This program and the accompanying materials
17 # are licensed and made available under the terms and conditions of the BSD License
18 # which accompanies this distribution. The full text of the license may be found at
19 # http://opensource.org/licenses/bsd-license.php
20 #
21 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
22 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
23 #
24 #
25 #**/
26
27 [Defines]
28 INF_VERSION = 0x00010005
29 BASE_NAME = EhciDxe
30 FILE_GUID = BDFE430E-8F2A-4db0-9991-6F856594777E
31 MODULE_TYPE = UEFI_DRIVER
32 VERSION_STRING = 1.0
33
34 ENTRY_POINT = EhcDriverEntryPoint
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
40 #
41 # DRIVER_BINDING = gEhciDriverBinding
42 # COMPONENT_NAME = gEhciComponentName
43 # COMPONENT_NAME2 = gEhciComponentName2
44 #
45
46 [Sources.common]
47 UsbHcMem.h
48 EhciUrb.c
49 EhciReg.h
50 UsbHcMem.c
51 EhciSched.c
52 EhciDebug.c
53 EhciReg.c
54 EhciDebug.h
55 ComponentName.c
56 ComponentName.h
57 EhciUrb.h
58 Ehci.h
59 EhciSched.h
60 Ehci.c
61
62 [Packages]
63 MdePkg/MdePkg.dec
64 MdeModulePkg/MdeModulePkg.dec
65
66 [FeaturePcd]
67 gEfiMdeModulePkgTokenSpaceGuid.PcdTurnOffUsbLegacySupport ## SOMETIME_CONSUMES (enable/disable usb legacy support.)
68
69 [LibraryClasses]
70 MemoryAllocationLib
71 BaseLib
72 UefiLib
73 UefiBootServicesTableLib
74 UefiDriverEntryPoint
75 BaseMemoryLib
76 DebugLib
77 PcdLib
78
79 [Guids]
80 gEfiEventExitBootServicesGuid ## PRODUCES ## Event
81
82 [Protocols]
83 gEfiPciIoProtocolGuid ## TO_START
84 gEfiUsb2HcProtocolGuid ## BY_START
85
86 # [Event]
87 # ##
88 # # Periodic timer event for checking the result of interrupt transfer execution.
89 # #
90 # EVENT_TYPE_PERIODIC_TIMER ## PRODUCES
91 #