• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  SdMmcPciHcDxe driver is used to manage those host controllers which comply with SD
3#  Host Controller Simplified Specifiction version 3.0.
4#
5#  It will produce EFI_SD_MMC_PASS_THRU_PROTOCOL to allow sending SD/MMC/eMMC cmds
6#  to specified devices from upper layer.
7#
8#  Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
9#
10#  This program and the accompanying materials
11#  are licensed and made available under the terms and conditions of the BSD License
12#  which accompanies this distribution. The full text of the license may be found at
13#  http://opensource.org/licenses/bsd-license.php
14#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#
18##
19
20[Defines]
21  INF_VERSION                    = 0x00010005
22  BASE_NAME                      = SdMmcPciHcDxe
23  MODULE_UNI_FILE                = SdMmcPciHcDxe.uni
24  FILE_GUID                      = 8E325979-3FE1-4927-AAE2-8F5C4BD2AF0D
25  MODULE_TYPE                    = UEFI_DRIVER
26  VERSION_STRING                 = 1.0
27  ENTRY_POINT                    = InitializeSdMmcPciHcDxe
28
29#
30# The following information is for reference only and not required by the build tools.
31#
32#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
33#
34#  DRIVER_BINDING                =  gSdMmcPciHcDxeDriverBinding
35#  COMPONENT_NAME                =  gSdMmcPciHcDxeComponentName
36#  COMPONENT_NAME2               =  gSdMmcPciHcDxeComponentName2
37#
38#
39
40[Sources]
41  SdMmcPciHcDxe.h
42  SdMmcPciHcDxe.c
43  EmmcDevice.c
44  SdDevice.c
45  SdMmcPciHci.h
46  SdMmcPciHci.c
47  ComponentName.c
48
49[Packages]
50  MdePkg/MdePkg.dec
51
52[LibraryClasses]
53  DevicePathLib
54  UefiBootServicesTableLib
55  UefiRuntimeServicesTableLib
56  MemoryAllocationLib
57  BaseMemoryLib
58  UefiLib
59  BaseLib
60  UefiDriverEntryPoint
61  DebugLib
62
63[Protocols]
64  gEfiDevicePathProtocolGuid                    ## TO_START
65  gEfiPciIoProtocolGuid                         ## TO_START
66  gEfiSdMmcPassThruProtocolGuid                 ## BY_START
67
68# [Event]
69# EVENT_TYPE_PERIODIC_TIMER ## SOMETIMES_CONSUMES
70
71[UserExtensions.TianoCore."ExtraFiles"]
72  SdMmcPciHcDxeExtra.uni
73