1#/** @file
2#  SMBIOS Table for ARM platform
3#
4#  Copyright (c) 2013, Linaro Ltd. All rights reserved.<BR>
5#  Copyright (c) 2014 - 2016, AMD Inc. All rights reserved.<BR>
6#
7#  This program and the accompanying materials
8#  are licensed and made available under the terms and conditions of the BSD License
9#  which accompanies this distribution.  The full text of the license may be found at
10#  http://opensource.org/licenses/bsd-license.php
11#
12#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15#**/
16
17[Defines]
18  INF_VERSION                    = 0x00010005
19  BASE_NAME                      = PlatformSmbiosDxe
20  FILE_GUID                      = 3847D23F-1D95-4772-B60C-4BBFBC4D532F
21  MODULE_TYPE                    = DXE_DRIVER
22  VERSION_STRING                 = 1.0
23  ENTRY_POINT                    = PlatformSmbiosDriverEntryPoint
24
25[Sources]
26  PlatformSmbiosDxe.c
27
28[Packages]
29  MdePkg/MdePkg.dec
30  MdeModulePkg/MdeModulePkg.dec
31  ArmPkg/ArmPkg.dec
32  ArmPlatformPkg/ArmPlatformPkg.dec
33  AmdModulePkg/AmdModulePkg.dec
34  OpenPlatformPkg/Platforms/AMD/Styx/AmdStyx.dec
35
36[LibraryClasses]
37  UefiBootServicesTableLib
38  MemoryAllocationLib
39  BaseMemoryLib
40  BaseLib
41  UefiLib
42  UefiDriverEntryPoint
43  DebugLib
44
45
46[Protocols]
47  gEfiSmbiosProtocolGuid             ## CONSUMER
48  gAmdIscpDxeProtocolGuid            ## CONSUMER
49
50[Guids]
51
52[FixedPcd]
53  gArmPlatformTokenSpaceGuid.PcdCoreCount
54  gArmTokenSpaceGuid.PcdArmArchTimerFreqInHz
55  gAmdStyxTokenSpaceGuid.PcdIscpSupport
56
57[Depex]
58  gEfiSmbiosProtocolGuid AND
59  gAmdIscpDxeProtocolGuid
60
61