AtaAtapiPassThru.inf 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. ## @file
  2. # AtaAtapiPassThru driver to provide native IDE/AHCI mode support.
  3. #
  4. # This driver installs AtaPassThru and ExtScsiPassThru protocol in each ide/sata controller
  5. # to access to all attached Ata/Atapi devices.
  6. #
  7. # Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
  8. #
  9. # SPDX-License-Identifier: BSD-2-Clause-Patent
  10. #
  11. ##
  12. [Defines]
  13. INF_VERSION = 0x00010005
  14. BASE_NAME = AtaAtapiPassThruDxe
  15. MODULE_UNI_FILE = AtaAtapiPassThruDxe.uni
  16. FILE_GUID = 5E523CB4-D397-4986-87BD-A6DD8B22F455
  17. MODULE_TYPE = UEFI_DRIVER
  18. VERSION_STRING = 1.0
  19. ENTRY_POINT = InitializeAtaAtapiPassThru
  20. #
  21. # The following information is for reference only and not required by the build tools.
  22. #
  23. # VALID_ARCHITECTURES = IA32 X64 EBC
  24. #
  25. # DRIVER_BINDING = gAtaAtapiPassThruDriverBinding
  26. # COMPONENT_NAME = gAtaAtapiPassThruComponentName
  27. # COMPONENT_NAME2 = gAtaAtapiPassThruComponentName2
  28. #
  29. #
  30. [Sources]
  31. AtaAtapiPassThru.c
  32. AtaAtapiPassThru.h
  33. AhciMode.c
  34. AhciMode.h
  35. IdeMode.c
  36. IdeMode.h
  37. ComponentName.c
  38. [Packages]
  39. MdePkg/MdePkg.dec
  40. MdeModulePkg/MdeModulePkg.dec
  41. [LibraryClasses]
  42. DevicePathLib
  43. UefiBootServicesTableLib
  44. MemoryAllocationLib
  45. BaseMemoryLib
  46. UefiLib
  47. BaseLib
  48. UefiDriverEntryPoint
  49. DebugLib
  50. TimerLib
  51. ReportStatusCodeLib
  52. PcdLib
  53. [Protocols]
  54. gEfiAtaPassThruProtocolGuid ## BY_START
  55. gEfiExtScsiPassThruProtocolGuid ## BY_START
  56. gEfiIdeControllerInitProtocolGuid ## TO_START
  57. gEfiDevicePathProtocolGuid ## TO_START
  58. gEfiPciIoProtocolGuid ## TO_START
  59. gEdkiiAtaAtapiPolicyProtocolGuid ## CONSUMES
  60. [Pcd]
  61. gEfiMdeModulePkgTokenSpaceGuid.PcdAtaSmartEnable ## SOMETIMES_CONSUMES
  62. # [Event]
  63. # EVENT_TYPE_PERIODIC_TIMER ## SOMETIMES_CONSUMES
  64. [UserExtensions.TianoCore."ExtraFiles"]
  65. AtaAtapiPassThruDxeExtra.uni