1## @file 2# Provides drivers and definitions to support fsp in EDKII bios. 3# 4# Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR> 5# This program and the accompanying materials are licensed and made available under 6# the terms and conditions of the BSD License that accompanies this distribution. 7# 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 PLATFORM_NAME = IntelFspWrapperPkg 17 PLATFORM_GUID = BC1EC7D4-8550-4a64-B7F5-8E0EF864FFA2 18 PLATFORM_VERSION = 0.1 19 DSC_SPECIFICATION = 0x00010005 20 OUTPUT_DIRECTORY = Build/IntelFspWrapperPkg 21 SUPPORTED_ARCHITECTURES = IA32|X64 22 BUILD_TARGETS = DEBUG|RELEASE|NOOPT 23 SKUID_IDENTIFIER = DEFAULT 24 25[LibraryClasses] 26 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf 27 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf 28 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf 29 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf 30 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf 31 DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf 32 PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf 33 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf 34 PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf 35 PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf 36 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf 37 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf 38 39 # Dummy - test build only 40 SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf 41 ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf 42 TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf 43 44 # MdeModulePkg 45 DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf 46 47 # UefiCpuPkg 48 UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf 49 LocalApicLib|UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf 50 51 # FSP lib 52 FspApiLib|IntelFspWrapperPkg/Library/BaseFspApiLib/BaseFspApiLib.inf 53 54 # FSP platform sample 55 FspPlatformInfoLib|IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/BaseFspPlatformInfoLibSample.inf 56 FspPlatformSecLib|IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/SecPeiFspPlatformSecLibSample.inf 57 FspHobProcessLib|IntelFspWrapperPkg/Library/PeiFspHobProcessLibSample/PeiFspHobProcessLibSample.inf 58 59[LibraryClasses.common.PEIM,LibraryClasses.common.PEI_CORE] 60 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf 61 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf 62 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf 63 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf 64 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf 65 66[LibraryClasses.common.DXE_DRIVER] 67 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf 68 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf 69 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf 70 DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf 71 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf 72 MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf 73 DevicePathLib|MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf 74 75[Components.Ia32] 76 IntelFspWrapperPkg/FspWrapperSecCore/FspWrapperSecCore.inf 77 IntelFspWrapperPkg/FspInitPei/FspInitPei.inf 78 79[Components.IA32, Components.X64] 80 IntelFspWrapperPkg/FspNotifyDxe/FspNotifyDxe.inf 81 82[PcdsFixedAtBuild.common] 83 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f 84 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80080046 85 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07 86 87[BuildOptions] 88 *_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES 89