I2cBusDxe.inf 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ## @file
  2. # This driver enumerates I2C devices on I2C bus and produce I2C IO Protocol on I2C devices.
  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 = I2cBusDxe
  13. MODULE_UNI_FILE = I2cBusDxe.uni
  14. FILE_GUID = 0C34B372-2622-4A13-A46E-BFD0DEB48BFF
  15. MODULE_TYPE = UEFI_DRIVER
  16. VERSION_STRING = 1.0
  17. ENTRY_POINT = InitializeI2cBus
  18. UNLOAD_IMAGE = I2cBusUnload
  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. I2cBus.c
  27. [LibraryClasses]
  28. BaseMemoryLib
  29. DebugLib
  30. DevicePathLib
  31. MemoryAllocationLib
  32. UefiBootServicesTableLib
  33. UefiDriverEntryPoint
  34. UefiLib
  35. [Packages]
  36. MdePkg/MdePkg.dec
  37. [Protocols]
  38. gEfiI2cIoProtocolGuid ## BY_START
  39. ## BY_START
  40. ## TO_START
  41. gEfiDevicePathProtocolGuid
  42. gEfiI2cEnumerateProtocolGuid ## TO_START
  43. gEfiI2cHostProtocolGuid ## TO_START
  44. [UserExtensions.TianoCore."ExtraFiles"]
  45. I2cBusDxeExtra.uni