OhciDxe.inf 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. ## @file
  2. # OHCI USB Host Controller UEFI Driver
  3. #
  4. # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
  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. [Defines]
  16. INF_VERSION = 0x00010005
  17. BASE_NAME = OhciDxe
  18. FILE_GUID = 4ACA697E-F883-446f-98F7-096416FFFFFF
  19. MODULE_TYPE = UEFI_DRIVER
  20. VERSION_STRING = 1.0
  21. ENTRY_POINT = OHCIDriverEntryPoint
  22. #
  23. # The following information is for reference only and not required by the build tools.
  24. #
  25. # VALID_ARCHITECTURES = IA32 X64 EBC
  26. #
  27. # DRIVER_BINDING = gOhciDriverBinding
  28. # COMPONENT_NAME = gOhciComponentName
  29. # COMPONENT_NAME2 = gOhciComponentName2
  30. #
  31. [Sources]
  32. Descriptor.h
  33. Ohci.c
  34. Ohci.h
  35. OhciSched.c
  36. OhciSched.h
  37. OhciReg.c
  38. OhciReg.h
  39. OhciUrb.c
  40. OhciUrb.h
  41. OhciDebug.c
  42. OhciDebug.h
  43. ComponentName.c
  44. ComponentName.h
  45. UsbHcMem.c
  46. UsbHcMem.h
  47. [Packages]
  48. MdePkg/MdePkg.dec
  49. MdeModulePkg/MdeModulePkg.dec
  50. QuarkSocPkg/QuarkSocPkg.dec
  51. [LibraryClasses]
  52. MemoryAllocationLib
  53. BaseLib
  54. UefiLib
  55. UefiBootServicesTableLib
  56. UefiDriverEntryPoint
  57. BaseMemoryLib
  58. DebugLib
  59. [Guids]
  60. gEfiEventExitBootServicesGuid ## SOMETIMES_CONSUMES ## Event
  61. [Protocols]
  62. gEfiPciIoProtocolGuid ## TO_START
  63. gEfiUsbHcProtocolGuid ## BY_START
  64. #
  65. # [Event]
  66. # ##
  67. # # Periodic timer event for checking the result of interrupt transfer execution.
  68. # #
  69. # EVENT_TYPE_PERIODIC_TIMER ## CONSUMES
  70. #