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

      2 # OHCI USB Host Controller UEFI Driver

      3 #

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

      5 #

      6 # This program and the accompanying materials

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

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

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

     10 #

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

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

     13 #

     14 ##

     15 
     16 [Defines]
     17   INF_VERSION                    = 0x00010005
     18   BASE_NAME                      = OhciDxe
     19   FILE_GUID                      = 4ACA697E-F883-446f-98F7-096416FFFFFF
     20   MODULE_TYPE                    = UEFI_DRIVER
     21   VERSION_STRING                 = 1.0
     22   ENTRY_POINT                    = OHCIDriverEntryPoint
     23 
     24 #

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

     26 #

     27 #  VALID_ARCHITECTURES           = IA32 X64 IPF EBC

     28 #

     29 #  DRIVER_BINDING                =  gOhciDriverBinding

     30 #  COMPONENT_NAME                =  gOhciComponentName

     31 #  COMPONENT_NAME2               =  gOhciComponentName2

     32 #

     33 [Sources]
     34   Descriptor.h
     35   Ohci.c
     36   Ohci.h
     37   OhciSched.c
     38   OhciSched.h
     39   OhciReg.c
     40   OhciReg.h
     41   OhciUrb.c
     42   OhciUrb.h
     43   OhciDebug.c
     44   OhciDebug.h
     45   ComponentName.c
     46   ComponentName.h
     47   UsbHcMem.c
     48   UsbHcMem.h
     49 
     50 [Packages]
     51   MdePkg/MdePkg.dec
     52   MdeModulePkg/MdeModulePkg.dec
     53   QuarkSocPkg/QuarkSocPkg.dec
     54 
     55 [LibraryClasses]
     56   MemoryAllocationLib
     57   BaseLib
     58   UefiLib
     59   UefiBootServicesTableLib
     60   UefiDriverEntryPoint
     61   BaseMemoryLib
     62   DebugLib
     63 
     64 [Guids]
     65   gEfiEventExitBootServicesGuid                 ## SOMETIMES_CONSUMES   ## Event

     66 
     67 [Protocols]
     68   gEfiPciIoProtocolGuid                         ## TO_START

     69   gEfiUsbHcProtocolGuid                         ## BY_START

     70 
     71 #

     72 # [Event]

     73 #   ##

     74 #   # Periodic timer event for checking the result of interrupt transfer execution.

     75 #   #

     76 #   EVENT_TYPE_PERIODIC_TIMER                   ## CONSUMES

     77 #

     78