1## @file
2#  This driver produce I2C Host Protocol on I2C controller handle.
3#
4#  Copyright (c) 2013 - 2014, 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#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#
14##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = I2cHostDxe
19  MODULE_UNI_FILE                = I2cHostDxe.uni
20  FILE_GUID                      = CDEC3671-816E-43DC-A002-DCD645229338
21  MODULE_TYPE                    = UEFI_DRIVER
22  VERSION_STRING                 = 1.0
23  ENTRY_POINT                    = InitializeI2cHost
24  UNLOAD_IMAGE                   = I2cHostUnload
25
26#
27# The following information is for reference only and not required by the build tools.
28#
29#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
30#
31
32[Sources.common]
33  I2cDxe.h
34  I2cHost.c
35
36[LibraryClasses]
37  BaseMemoryLib
38  DebugLib
39  DevicePathLib
40  MemoryAllocationLib
41  UefiBootServicesTableLib
42  UefiDriverEntryPoint
43  UefiLib
44
45[Packages]
46  MdePkg/MdePkg.dec
47
48[Protocols]
49  gEfiI2cHostProtocolGuid                           ## BY_START
50  gEfiI2cMasterProtocolGuid                         ## TO_START
51  gEfiI2cBusConfigurationManagementProtocolGuid     ## TO_START
52
53[UserExtensions.TianoCore."ExtraFiles"]
54  I2cHostDxeExtra.uni
55
56