Home | History | Annotate | Download | only in SDControllerDxe
      1 ## @file

      2 #

      3 #  Component Description File For SDControllerDxe Module.

      4 #

      5 #  Copyright (c) 2013-2015 Intel Corporation.

      6 #

      7 #  This program and the accompanying materials

      8 #  are licensed and made available under the terms and conditions of the BSD License

      9 #  which accompanies this distribution.  The full text of the license may be found at

     10 #  http://opensource.org/licenses/bsd-license.php

     11 #

     12 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     13 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     14 #

     15 ##

     16 
     17 [Defines]
     18   INF_VERSION                    = 0x00010005
     19   BASE_NAME                      = SDController
     20   FILE_GUID                      = 90A330BD-6F89-4900-933A-C25EB4356348
     21   MODULE_TYPE                    = UEFI_DRIVER
     22   VERSION_STRING                 = 1.0
     23   ENTRY_POINT                    = InitializeSDController
     24 
     25 #

     26 # The following information is for reference only and not required by the build tools.

     27 #

     28 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     29 #

     30 #  DRIVER_BINDING                =  gSDControllerDriverBinding

     31 #  COMPONENT_NAME                =  gSDControllerName

     32 #  COMPONENT_NAME2               =  gSDControllerName2

     33 #

     34 
     35 [Sources]
     36   SDController.c
     37   SDController.h
     38   ComponentName.c
     39   ComponentName.h
     40 
     41 [Packages]
     42   MdePkg/MdePkg.dec
     43   MdeModulePkg/MdeModulePkg.dec
     44   QuarkSocPkg/QuarkSocPkg.dec
     45 
     46 [LibraryClasses]
     47   MemoryAllocationLib
     48   BaseLib
     49   UefiLib
     50   UefiBootServicesTableLib
     51   UefiDriverEntryPoint
     52   BaseMemoryLib
     53   DebugLib
     54   PcdLib
     55 
     56 [Protocols]
     57   gEfiPciIoProtocolGuid                         ## TO_START

     58   gEfiSDHostIoProtocolGuid                      ## BY_START

     59 
     60 [FeaturePcd]
     61   gEfiQuarkSCSocIdTokenSpaceGuid.PcdSdHciQuirkNoHiSpd
     62 
     63