I2cHostDxe.inf 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ## @file
  2. # This driver produce I2C Host Protocol on I2C controller handle.
  3. #
  4. # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
  5. #
  6. # SPDX-License-Identifier: BSD-2-Clause-Patent
  7. #
  8. #
  9. ##
  10. [Defines]
  11. INF_VERSION = 0x00010005
  12. BASE_NAME = I2cHostDxe
  13. MODULE_UNI_FILE = I2cHostDxe.uni
  14. FILE_GUID = CDEC3671-816E-43DC-A002-DCD645229338
  15. MODULE_TYPE = UEFI_DRIVER
  16. VERSION_STRING = 1.0
  17. ENTRY_POINT = InitializeI2cHost
  18. UNLOAD_IMAGE = I2cHostUnload
  19. #
  20. # The following information is for reference only and not required by the build tools.
  21. #
  22. # VALID_ARCHITECTURES = IA32 X64 EBC
  23. #
  24. [Sources.common]
  25. I2cDxe.h
  26. I2cHost.c
  27. [LibraryClasses]
  28. BaseMemoryLib
  29. DebugLib
  30. MemoryAllocationLib
  31. UefiBootServicesTableLib
  32. UefiDriverEntryPoint
  33. UefiLib
  34. [Packages]
  35. MdePkg/MdePkg.dec
  36. [Protocols]
  37. gEfiI2cHostProtocolGuid ## BY_START
  38. gEfiI2cMasterProtocolGuid ## TO_START
  39. gEfiI2cBusConfigurationManagementProtocolGuid ## TO_START
  40. [UserExtensions.TianoCore."ExtraFiles"]
  41. I2cHostDxeExtra.uni