1#/** @file
2#  Pre PeiCore - Hand-off to PEI Core in Normal World
3#
4#  Copyright (c) 2011, ARM Limited. All rights reserved.
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#
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                      = ArmPlatformPrePeiCore
19  FILE_GUID                      = 469fc080-aec1-11df-927c-0002a5d5c51b
20  MODULE_TYPE                    = SEC
21  VERSION_STRING                 = 1.0
22
23[Sources.common]
24  PrePeiCore.c
25  MainUniCore.c
26
27[Sources.ARM]
28  Arm/ArchPrePeiCore.c
29  Arm/PrePeiCoreEntryPoint.asm | RVCT
30  Arm/PrePeiCoreEntryPoint.S   | GCC
31  Arm/SwitchStack.asm      | RVCT
32  Arm/SwitchStack.S        | GCC
33  Arm/Exception.asm        | RVCT
34  Arm/Exception.S          | GCC
35
36[Sources.AARCH64]
37  AArch64/ArchPrePeiCore.c
38  AArch64/PrePeiCoreEntryPoint.S
39  AArch64/SwitchStack.S
40  AArch64/Exception.S
41  AArch64/Helper.S
42
43[Packages]
44  MdePkg/MdePkg.dec
45  MdeModulePkg/MdeModulePkg.dec
46  ArmPkg/ArmPkg.dec
47  ArmPlatformPkg/ArmPlatformPkg.dec
48
49[LibraryClasses]
50  ArmLib
51  ArmPlatformLib
52  BaseLib
53  DebugLib
54  DebugAgentLib
55  IoLib
56  PrintLib
57  SerialPortLib
58
59[Ppis]
60  gEfiTemporaryRamSupportPpiGuid
61
62[FeaturePcd]
63  gArmPlatformTokenSpaceGuid.PcdSendSgiToBringUpSecondaryCores
64
65[FixedPcd]
66  gArmTokenSpaceGuid.PcdFvBaseAddress
67  gArmTokenSpaceGuid.PcdFvSize
68
69  gArmPlatformTokenSpaceGuid.PcdCPUCoresStackBase
70  gArmPlatformTokenSpaceGuid.PcdCPUCorePrimaryStackSize
71  gArmPlatformTokenSpaceGuid.PcdCPUCoreSecondaryStackSize
72