]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Sd/EmmcDxe/EmmcDxe.inf
MdeModulePkg/EmmcDxe: Implementation of Disk Information Protocol
[mirror_edk2.git] / MdeModulePkg / Bus / Sd / EmmcDxe / EmmcDxe.inf
1 ## @file
2 # EmmcDxe driver is used to manage the EMMC device.
3 #
4 # It produces BlockIo, BlockIo2 and StorageSecurity protocols to allow upper layer
5 # access the EMMC device.
6 #
7 # Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.<BR>
8 #
9 # This program and the accompanying materials
10 # are licensed and made available under the terms and conditions of the BSD License
11 # which accompanies this distribution. The full text of the license may be found at
12 # http://opensource.org/licenses/bsd-license.php
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16 #
17 ##
18
19 [Defines]
20 INF_VERSION = 0x00010005
21 BASE_NAME = EmmcDxe
22 MODULE_UNI_FILE = EmmcDxe.uni
23 FILE_GUID = 2145F72F-E6F1-4440-A828-59DC9AAB5F89
24 MODULE_TYPE = UEFI_DRIVER
25 VERSION_STRING = 1.0
26 ENTRY_POINT = InitializeEmmcDxe
27
28 #
29 # The following information is for reference only and not required by the build tools.
30 #
31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
32 #
33 # DRIVER_BINDING = gEmmcDxeDriverBinding
34 # COMPONENT_NAME = gEmmcDxeComponentName
35 # COMPONENT_NAME2 = gEmmcDxeComponentName2
36 #
37
38 [Sources.common]
39 ComponentName.c
40 EmmcDxe.c
41 EmmcDxe.h
42 EmmcBlockIo.c
43 EmmcBlockIo.h
44 EmmcDiskInfo.c
45 EmmcDiskInfo.h
46
47 [Packages]
48 MdePkg/MdePkg.dec
49
50 [LibraryClasses]
51 DevicePathLib
52 UefiBootServicesTableLib
53 MemoryAllocationLib
54 BaseMemoryLib
55 UefiLib
56 BaseLib
57 UefiDriverEntryPoint
58 DebugLib
59
60 [Protocols]
61 gEfiSdMmcPassThruProtocolGuid ## TO_START
62 gEfiBlockIoProtocolGuid ## BY_START
63 gEfiBlockIo2ProtocolGuid ## BY_START
64 gEfiStorageSecurityCommandProtocolGuid ## SOMETIMES_PRODUCES
65 gEfiEraseBlockProtocolGuid ## BY_START
66 gEfiDiskInfoProtocolGuid ## BY_START
67 ## TO_START
68 ## BY_START
69 gEfiDevicePathProtocolGuid
70