1#/** @file
2#
3#  Copyright (c) 2011-2012, ARM Limited. All rights reserved.
4#
5#  This program and the accompanying materials
6#  are licensed and made available under the terms and conditions of the BSD License
7#  which accompanies this distribution.  The full text of the license may be found at
8#  http://opensource.org/licenses/bsd-license.php
9#
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[Defines]
16  INF_VERSION                    = 0x00010005
17  BASE_NAME                      = PlatformPei
18  FILE_GUID                      = 2ad0fc59-2314-4bf3-8633-13fa22a624a0
19  MODULE_TYPE                    = PEIM
20  VERSION_STRING                 = 1.0
21
22  ENTRY_POINT                    = InitializePlatformPeim
23
24#
25# The following information is for reference only and not required by the build tools.
26#
27#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC ARM
28#
29
30[Sources]
31  PlatformPeim.c
32
33[Packages]
34  MdePkg/MdePkg.dec
35  MdeModulePkg/MdeModulePkg.dec
36  EmbeddedPkg/EmbeddedPkg.dec
37  ArmPkg/ArmPkg.dec
38  ArmPlatformPkg/ArmPlatformPkg.dec
39
40[LibraryClasses]
41  PeimEntryPoint
42  DebugLib
43  HobLib
44  ArmPlatformLib
45  PlatformPeiLib
46
47[Ppis]
48  gEfiPeiMasterBootModePpiGuid                  # PPI ALWAYS_PRODUCED
49  gEfiPeiBootInRecoveryModePpiGuid              # PPI SOMETIMES_PRODUCED
50
51[FixedPcd]
52  gArmTokenSpaceGuid.PcdFdBaseAddress
53  gArmTokenSpaceGuid.PcdFdSize
54
55  gArmTokenSpaceGuid.PcdFvBaseAddress
56  gArmTokenSpaceGuid.PcdFvSize
57
58  gEmbeddedTokenSpaceGuid.PcdPrePiCpuMemorySize
59  gEmbeddedTokenSpaceGuid.PcdPrePiCpuIoSize
60
61[Depex]
62  TRUE
63
64