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