Commit | Line | Data |
---|---|---|
c8ec22a2 | 1 | ## @file\r |
b34eb190 | 2 | # Provides driver and definitions to build fsp in EDKII bios.\r |
c8ec22a2 | 3 | #\r |
b34eb190 | 4 | # Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>\r |
c8ec22a2 JY |
5 | # This program and the accompanying materials are licensed and made available under\r |
6 | # the terms and conditions of the BSD License that accompanies this distribution.\r | |
7 | # The full text of the license may be found at\r | |
8 | # http://opensource.org/licenses/bsd-license.php.\r | |
9 | #\r | |
10 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
12 | #\r | |
13 | ##\r | |
14 | \r | |
15 | [Defines]\r | |
16 | PLATFORM_NAME = IntelFspPkg\r | |
17 | PLATFORM_GUID = 29C6791F-9EBC-4470-A126-2BB47431AE5E\r | |
18 | PLATFORM_VERSION = 0.1\r | |
19 | DSC_SPECIFICATION = 0x00010005\r | |
20 | OUTPUT_DIRECTORY = Build/IntelFspPkg\r | |
21 | SUPPORTED_ARCHITECTURES = IA32\r | |
22 | BUILD_TARGETS = DEBUG|RELEASE\r | |
23 | SKUID_IDENTIFIER = DEFAULT\r | |
24 | \r | |
25 | [LibraryClasses]\r | |
26 | BaseLib|MdePkg/Library/BaseLib/BaseLib.inf\r | |
27 | BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf\r | |
28 | PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf\r | |
29 | PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf\r | |
30 | DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf\r | |
31 | PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf\r | |
32 | IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf\r | |
33 | UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf\r | |
34 | \r | |
35 | # Dummy - test build only\r | |
36 | SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf\r | |
37 | ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf\r | |
38 | DebugDeviceLib|IntelFspPkg/Library/BaseDebugDeviceLibNull/BaseDebugDeviceLibNull.inf\r | |
39 | \r | |
40 | # FSP override\r | |
41 | DebugLib|IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf\r | |
42 | \r | |
43 | # FSP specific lib\r | |
44 | CacheAsRamLib|IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf\r | |
45 | CacheLib|IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf\r | |
46 | FspCommonLib|IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf\r | |
47 | FspPlatformLib|IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf\r | |
48 | FspSwitchStackLib|IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf\r | |
49 | \r | |
50 | [LibraryClasses.common.PEIM]\r | |
51 | PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf\r | |
52 | PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf\r | |
53 | PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf\r | |
54 | MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf\r | |
55 | ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf\r | |
56 | \r | |
57 | HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf\r | |
58 | \r | |
59 | [Components]\r | |
60 | IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf\r | |
61 | IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf\r | |
62 | IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf\r | |
63 | IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf\r | |
64 | IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf\r | |
65 | IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf\r | |
66 | \r | |
67 | IntelFspPkg/FspSecCore/FspSecCore.inf {\r | |
68 | <LibraryClasses>\r | |
69 | NULL|IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf\r | |
70 | }\r | |
71 | IntelFspPkg/FspDxeIpl/FspDxeIpl.inf\r | |
72 | \r | |
73 | [PcdsFixedAtBuild.common]\r | |
74 | gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f\r | |
75 | gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80080046\r | |
76 | gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07\r |