1## @file 2# Sec Core for FSP 3# 4# Copyright (c) 2016, Intel Corporation. All rights reserved.<BR> 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# 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 = FspSecCoreM 18 FILE_GUID = C2F9AE46-3437-4FEF-9CB1-9A568B282FEE 19 MODULE_TYPE = SEC 20 VERSION_STRING = 1.0 21 22# 23# The following information is for reference only and not required by the build tools. 24# 25# VALID_ARCHITECTURES = IA32 26# 27 28[Sources] 29 SecMain.c 30 SecMain.h 31 SecFsp.c 32 SecFsp.h 33 SecFspApiChk.c 34 35[Sources.IA32] 36 Ia32/Stack.nasm 37 Ia32/InitializeFpu.nasm 38 Ia32/FspApiEntryM.nasm 39 Ia32/FspApiEntryCommon.nasm 40 Ia32/FspHelper.nasm 41 42[Binaries.Ia32] 43 RAW|Vtf0/Bin/ResetVec.ia32.raw |GCC 44 45[Packages] 46 MdePkg/MdePkg.dec 47 MdeModulePkg/MdeModulePkg.dec 48 IntelFsp2Pkg/IntelFsp2Pkg.dec 49 50[LibraryClasses] 51 BaseMemoryLib 52 DebugLib 53 BaseLib 54 PciCf8Lib 55 SerialPortLib 56 FspSwitchStackLib 57 FspCommonLib 58 FspSecPlatformLib 59 60[Pcd] 61 gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress ## UNDEFINED 62 gIntelFsp2PkgTokenSpaceGuid.PcdGlobalDataPointerAddress ## CONSUMES 63 gIntelFsp2PkgTokenSpaceGuid.PcdTemporaryRamBase ## CONSUMES 64 gIntelFsp2PkgTokenSpaceGuid.PcdTemporaryRamSize ## CONSUMES 65 gIntelFsp2PkgTokenSpaceGuid.PcdFspTemporaryRamSize ## CONSUMES 66 gIntelFsp2PkgTokenSpaceGuid.PcdFspHeapSizePercentage ## CONSUMES 67 68[FixedPcd] 69 gIntelFsp2PkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES 70 gIntelFsp2PkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES 71 72[Ppis] 73 gEfiTemporaryRamSupportPpiGuid ## PRODUCES 74 75