1#/* @file 2# 3# Copyright (c) 2014 - 2016, AMD Inc. All rights reserved.<BR> 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 = PlatInitPei 18 FILE_GUID = 769694a4-2572-4f29-a5bb-33d7df7be001 19 MODULE_TYPE = PEIM 20 VERSION_STRING = 1.0 21 22 ENTRY_POINT = PlatInitPeiEntryPoint 23 24# 25# The following information is for reference only and not required by the build tools. 26# 27# VALID_ARCHITECTURES = AARCH64 28# 29# 30 31[Sources] 32 PlatInitPei.c 33 34[Packages] 35 MdePkg/MdePkg.dec 36 ArmPkg/ArmPkg.dec 37 ArmPlatformPkg/ArmPlatformPkg.dec 38 AmdModulePkg/AmdModulePkg.dec 39 OpenPlatformPkg/Platforms/AMD/Styx/AmdStyx.dec 40 41[LibraryClasses] 42 PeimEntryPoint 43 PeiServicesLib 44 PeiServicesTablePointerLib 45 BaseMemoryLib 46 HobLib 47 PcdLib 48 DebugLib 49 ArmLib 50 ArmSmcLib 51 52[Ppis] 53 gPeiIscpPpiGuid ## CONSUMER 54 gEfiEndOfPeiSignalPpiGuid ## CONSUMER 55 gAmdStyxPlatInitPpiGuid ## PRODUCER 56 57[Guids] 58 gAmdStyxMpCoreInfoGuid ## PRODUCER 59 60[Pcd] 61 gArmTokenSpaceGuid.PcdSystemMemorySize 62 gArmPlatformTokenSpaceGuid.PcdCoreCount 63 gAmdStyxTokenSpaceGuid.PcdSocCoreCount 64 gAmdStyxTokenSpaceGuid.PcdSocCpuId 65 66 gAmdStyxTokenSpaceGuid.PcdEthMacA 67 gAmdStyxTokenSpaceGuid.PcdEthMacB 68 69[FixedPcd] 70 gAmdStyxTokenSpaceGuid.PcdIscpSupport 71 gAmdStyxTokenSpaceGuid.PcdTrustedFWSupport 72 gAmdStyxTokenSpaceGuid.PcdCpuIdRegister 73 74[Depex] 75 gPeiIscpPpiGuid 76 77