• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  FDT client driver
3#
4#  Copyright (c) 2016, Linaro Ltd. All rights reserved.<BR>
5#
6#  This program and the accompanying materials are
7#  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
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = FdtClientDxe
19  FILE_GUID                      = 9A871B00-1C16-4F61-8D2C-93B6654B5AD6
20  MODULE_TYPE                    = DXE_DRIVER
21  VERSION_STRING                 = 1.0
22  ENTRY_POINT                    = InitializeFdtClientDxe
23
24[Sources]
25  FdtClientDxe.c
26
27[Packages]
28  ArmVirtPkg/ArmVirtPkg.dec
29  EmbeddedPkg/EmbeddedPkg.dec
30  MdeModulePkg/MdeModulePkg.dec
31  MdePkg/MdePkg.dec
32
33[LibraryClasses]
34  BaseLib
35  DebugLib
36  FdtLib
37  HobLib
38  UefiBootServicesTableLib
39  UefiDriverEntryPoint
40
41[Protocols]
42  gFdtClientProtocolGuid                  ## PRODUCES
43
44[Guids]
45  gFdtHobGuid
46  gFdtTableGuid
47
48[FeaturePcd]
49  gArmVirtTokenSpaceGuid.PcdPureAcpiBoot
50
51[Depex]
52  TRUE
53