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

      2 #  The XhciDxe driver is responsible for managing the behavior of XHCI controller.

      3 #  It implements the interfaces of monitoring the status of all ports and transferring

      4 #  Control, Bulk, Interrupt and Isochronous requests to those attached usb LS/FS/HS/SS devices.

      5 #

      6 #  Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR>

      7 #

      8 #  This program and the accompanying materials

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

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

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

     12 #

     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                      = XhciDxe
     22   MODULE_UNI_FILE                = XhciDxe.uni
     23   FILE_GUID                      = B7F50E91-A759-412c-ADE4-DCD03E7F7C28
     24   MODULE_TYPE                    = UEFI_DRIVER
     25   VERSION_STRING                 = 1.0
     26 
     27   ENTRY_POINT                    = XhcDriverEntryPoint
     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 ARM AARCH64

     33 #

     34 #  DRIVER_BINDING                =  gXhciDriverBinding

     35 #  COMPONENT_NAME                =  gXhciComponentName

     36 #  COMPONENT_NAME2               =  gXhciComponentName2

     37 #

     38 
     39 [Sources]
     40   Xhci.c
     41   XhciReg.c
     42   XhciSched.c
     43   UsbHcMem.c
     44   UsbHcMem.h  
     45   ComponentName.c
     46   ComponentName.h
     47   Xhci.h
     48   XhciReg.h
     49   XhciSched.h
     50 
     51 [Packages]
     52   MdePkg/MdePkg.dec
     53 
     54 [LibraryClasses]
     55   MemoryAllocationLib
     56   BaseLib
     57   UefiLib
     58   UefiBootServicesTableLib
     59   UefiDriverEntryPoint
     60   BaseMemoryLib
     61   DebugLib
     62   ReportStatusCodeLib
     63 
     64 [Guids]
     65   gEfiEventExitBootServicesGuid                 ## SOMETIMES_CONSUMES ## Event

     66 
     67 [Protocols]
     68   gEfiPciIoProtocolGuid                         ## TO_START

     69   gEfiUsb2HcProtocolGuid                        ## BY_START

     70 
     71 # [Event]

     72 # EVENT_TYPE_PERIODIC_TIMER       ## CONSUMES

     73 #

     74 
     75 [UserExtensions.TianoCore."ExtraFiles"]
     76   XhciDxeExtra.uni
     77