]>
Commit | Line | Data |
---|---|---|
92870c98 | 1 | ## @file\r |
6036e94d | 2 | # The XhciDxe driver is responsible for managing the behavior of XHCI controller.\r |
92870c98 | 3 | # It implements the interfaces of monitoring the status of all ports and transferring\r |
4 | # Control, Bulk, Interrupt and Isochronous requests to those attached usb LS/FS/HS/SS devices.\r | |
5 | #\r | |
d1102dba | 6 | # Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>\r |
92870c98 | 7 | #\r |
8 | # This program and the accompanying materials\r | |
9 | # are licensed and made available under the terms and conditions of the BSD License\r | |
10 | # which accompanies this distribution. The full text of the license may be found at\r | |
11 | # http://opensource.org/licenses/bsd-license.php\r | |
12 | #\r | |
13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
15 | #\r | |
16 | #\r | |
17 | ##\r | |
18 | \r | |
19 | [Defines]\r | |
20 | INF_VERSION = 0x00010005\r | |
21 | BASE_NAME = XhciDxe\r | |
6036e94d | 22 | MODULE_UNI_FILE = XhciDxe.uni\r |
92870c98 | 23 | FILE_GUID = B7F50E91-A759-412c-ADE4-DCD03E7F7C28\r |
24 | MODULE_TYPE = UEFI_DRIVER\r | |
25 | VERSION_STRING = 1.0\r | |
26 | \r | |
27 | ENTRY_POINT = XhcDriverEntryPoint\r | |
28 | \r | |
29 | #\r | |
30 | # The following information is for reference only and not required by the build tools.\r | |
31 | #\r | |
de005223 | 32 | # VALID_ARCHITECTURES = IA32 X64 EBC ARM AARCH64\r |
92870c98 | 33 | #\r |
34 | # DRIVER_BINDING = gXhciDriverBinding\r | |
35 | # COMPONENT_NAME = gXhciComponentName\r | |
36 | # COMPONENT_NAME2 = gXhciComponentName2\r | |
37 | #\r | |
38 | \r | |
39 | [Sources]\r | |
40 | Xhci.c\r | |
41 | XhciReg.c\r | |
42 | XhciSched.c\r | |
1847ed0b | 43 | UsbHcMem.c\r |
d1102dba | 44 | UsbHcMem.h\r |
92870c98 | 45 | ComponentName.c\r |
46 | ComponentName.h\r | |
47 | Xhci.h\r | |
48 | XhciReg.h\r | |
49 | XhciSched.h\r | |
50 | \r | |
51 | [Packages]\r | |
52 | MdePkg/MdePkg.dec\r | |
92870c98 | 53 | \r |
54 | [LibraryClasses]\r | |
55 | MemoryAllocationLib\r | |
56 | BaseLib\r | |
57 | UefiLib\r | |
58 | UefiBootServicesTableLib\r | |
59 | UefiDriverEntryPoint\r | |
60 | BaseMemoryLib\r | |
61 | DebugLib\r | |
37623a5c | 62 | ReportStatusCodeLib\r |
92870c98 | 63 | \r |
64 | [Guids]\r | |
6036e94d | 65 | gEfiEventExitBootServicesGuid ## SOMETIMES_CONSUMES ## Event\r |
92870c98 | 66 | \r |
67 | [Protocols]\r | |
68 | gEfiPciIoProtocolGuid ## TO_START\r | |
69 | gEfiUsb2HcProtocolGuid ## BY_START\r | |
70 | \r | |
71 | # [Event]\r | |
6036e94d | 72 | # EVENT_TYPE_PERIODIC_TIMER ## CONSUMES\r |
92870c98 | 73 | #\r |
6036e94d SZ |
74 | \r |
75 | [UserExtensions.TianoCore."ExtraFiles"]\r | |
76 | XhciDxeExtra.uni\r |