blob: f305080548eee2143e5cd66153c8edd1d9ca367b [file] [log] [blame]
klu225a201c2007-06-26 08:15:15 +00001#/** @file
2# EFI/Framework Emulation Platform
3#
4# The Emulation Platform can be used to debug individual modules, prior to creating
klu2d10385c2007-07-27 04:34:27 +00005# a real platform. This also provides an example for how an DSC is created.
klu225a201c2007-06-26 08:15:15 +00006#
7# Copyright (c) 2006 - 2007, Intel Corporation
8#
9# All rights reserved. This program and the accompanying materials
10# are licensed and made available under the terms and conditions of the BSD License
11# which accompanies this distribution. The full text of the license may be found at
12# http://opensource.org/licenses/bsd-license.php
vanjeff4cf1c1b2007-06-28 15:16:51 +000013#
klu225a201c2007-06-26 08:15:15 +000014# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17#**/
18
19################################################################################
20#
21# Defines Section - statements that will be processed to create a Makefile.
22#
23################################################################################
24[Defines]
25 PLATFORM_NAME = NT32
26 PLATFORM_GUID = EB216561-961F-47EE-9EF9-CA426EF547C2
27 PLATFORM_VERSION = 0.3
28 DSC_SPECIFICATION = 0x00010005
AJFISH409f6782007-07-27 19:07:27 +000029 OUTPUT_DIRECTORY = Build/NT32
klu225a201c2007-06-26 08:15:15 +000030 SUPPORTED_ARCHITECTURES = IA32
31 BUILD_TARGETS = DEBUG
32 SKUID_IDENTIFIER = DEFAULT
AJFISH409f6782007-07-27 19:07:27 +000033 FLASH_DEFINITION = Nt32Pkg/Nt32Pkg.fdf
klu225a201c2007-06-26 08:15:15 +000034
35 DEBUG_ICC_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
36 DEBUG_VS2003_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
37 DEBUG_MYTOOLS_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
38 DEBUG_WINDDK3790x1830_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
39 DEBUG_VS2005PRO_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
40 DEBUG_MIXED_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
41 RELEASE_ICC_IA32_DLINK_FLAGS = /ALIGN:4096
42 RELEASE_VS2003_IA32_DLINK_FLAGS = /ALIGN:4096
43 RELEASE_MYTOOLS_IA32_DLINK_FLAGS = /ALIGN:4096
44 RELEASE_WINDDK3790x1830_IA32_DLINK_FLAGS = /ALIGN:4096
45 RELEASE_VS2005PRO_IA32_DLINK_FLAGS = /ALIGN:4096
46 RELEASE_MIXED_IA32_DLINK_FLAGS = /ALIGN:4096
47
vanjeff2010c812007-07-04 02:30:58 +000048################################################################################
49#
50# SKU Identification section - list of all SKU IDs supported by this
51# Platform.
52#
53################################################################################
54[SkuIds]
55 0|DEFAULT # The entry: 0|DEFAULT is reserved and always required.
klu225a201c2007-06-26 08:15:15 +000056
57################################################################################
58#
59# Library Class section - list of all Library Classes needed by this Platform.
60#
61################################################################################
62
klu2869f8e32007-06-26 09:35:19 +000063[LibraryClasses.common]
AJFISH409f6782007-07-27 19:07:27 +000064 TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
65 PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
66 SerialPortLib|MdePkg/Library/SerialPortLibNull/SerialPortLibNull.inf
67 BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
68 BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
69 PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
70 PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
71 PciIncompatibleDeviceSupportLib|IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.inf
72 CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
73 IfrSupportLibFramework|IntelFrameworkPkg/Library/IfrSupportLibFramework/IfrSupportLib.inf
74 GraphicsLib|IntelFrameworkModulePkg/Library/GraphicsLib/GraphicsLib.inf
75 FvbServiceLib|MdeModulePkg/Library/EdkFvbServiceLib/EdkFvbServiceLib.inf
76 IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
77 CustomDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
lgao439a4d282007-08-08 14:54:14 +000078 UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
jwang36c76af112007-08-08 10:00:18 +000079 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
vanjeff929e7bd2007-07-16 05:55:31 +000080
AJFISHd6955582007-07-05 22:17:00 +000081[LibraryClasses.common.BASE]
AJFISH409f6782007-07-27 19:07:27 +000082 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu22f053c92007-08-10 05:29:46 +000083 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
AJFISHd6955582007-07-05 22:17:00 +000084
jwang36fdcc2fd2007-07-25 06:24:23 +000085[LibraryClasses.common.USER_DEFINED]
AJFISH409f6782007-07-27 19:07:27 +000086 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu22f053c92007-08-10 05:29:46 +000087 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
jwang36fdcc2fd2007-07-25 06:24:23 +000088
AJFISHd6955582007-07-05 22:17:00 +000089[LibraryClasses.common.SEC]
AJFISH409f6782007-07-27 19:07:27 +000090 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu22f053c92007-08-10 05:29:46 +000091 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
AJFISHd6955582007-07-05 22:17:00 +000092
vanjeff6d2b4f22007-07-03 05:30:36 +000093[LibraryClasses.common.DXE_CORE]
AJFISH409f6782007-07-27 19:07:27 +000094 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
AJFISH409f6782007-07-27 19:07:27 +000095 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
96 HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
97 DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
AJFISH409f6782007-07-27 19:07:27 +000098 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
99 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
klu22f053c92007-08-10 05:29:46 +0000100 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000101 PeCoffLoaderLib|MdeModulePkg/Library/DxePeCoffLoaderFromHobLib/DxePeCoffLoaderFromHobLib.inf
102 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
klu22f053c92007-08-10 05:29:46 +0000103 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
vanjeff6d2b4f22007-07-03 05:30:36 +0000104
klu225a201c2007-06-26 08:15:15 +0000105
klu2869f8e32007-06-26 09:35:19 +0000106[LibraryClasses.common.DXE_SMM_DRIVER]
AJFISH409f6782007-07-27 19:07:27 +0000107 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
108 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000109 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
110 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
111 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
112 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
113 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
114 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
115 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
klu22f053c92007-08-10 05:29:46 +0000116 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000117 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
118 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
119 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
120 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
121 DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
klu225a201c2007-06-26 08:15:15 +0000122
klu2869f8e32007-06-26 09:35:19 +0000123[LibraryClasses.common.PEIM]
AJFISH409f6782007-07-27 19:07:27 +0000124 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
125 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
126 IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
127 PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
128 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
129 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
klu22f053c92007-08-10 05:29:46 +0000130 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000131 PeCoffLoaderLib|Nt32Pkg/Library/Nt32PeCoffLoaderLib/Nt32PeCoffLoaderLib.inf
132 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
133 OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
134 PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
klu22f053c92007-08-10 05:29:46 +0000135 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000136
klu2869f8e32007-06-26 09:35:19 +0000137[LibraryClasses.common.PEI_CORE]
AJFISH409f6782007-07-27 19:07:27 +0000138 HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
139 PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
140 IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
141 PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
142 MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
143 PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
144 OldPeiCoreEntryPoint|MdePkg/Library/OldPeiCoreEntryPoint/OldPeiCoreEntryPoint.inf
klu22f053c92007-08-10 05:29:46 +0000145 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000146 PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
147 PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
klu22f053c92007-08-10 05:29:46 +0000148 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000149
klu2869f8e32007-06-26 09:35:19 +0000150[LibraryClasses.common.DXE_RUNTIME_DRIVER]
AJFISH409f6782007-07-27 19:07:27 +0000151 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
152 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
153 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
154 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
155 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
156 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu22f053c92007-08-10 05:29:46 +0000157 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000158 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000159 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
160 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
161 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
162 UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
163 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000164 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
165 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
klu22f053c92007-08-10 05:29:46 +0000166 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000167
klu2869f8e32007-06-26 09:35:19 +0000168[LibraryClasses.common.UEFI_DRIVER]
AJFISH409f6782007-07-27 19:07:27 +0000169 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
170 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
171 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
172 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
173 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
174 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu22f053c92007-08-10 05:29:46 +0000175 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000176 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000177 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
178 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
179 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
180 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000181 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
182 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
klu22f053c92007-08-10 05:29:46 +0000183 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000184
klu2869f8e32007-06-26 09:35:19 +0000185[LibraryClasses.common.DXE_DRIVER]
AJFISH409f6782007-07-27 19:07:27 +0000186 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
187 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
188 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
189 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
190 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
191 UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
klu22f053c92007-08-10 05:29:46 +0000192 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000193 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000194 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
195 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
196 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
197 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000198 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
199 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
200 EdkGenericBdsLib|Nt32Pkg/Library/EdkGenericBdsLib/EdkGenericBdsLib.inf
klu22f053c92007-08-10 05:29:46 +0000201 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
klu225a201c2007-06-26 08:15:15 +0000202
klu2869f8e32007-06-26 09:35:19 +0000203[LibraryClasses.common.UEFI_APPLICATION]
AJFISH409f6782007-07-27 19:07:27 +0000204 DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
205 ScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000206 HiiLibFramework|IntelFrameworkPkg/Library/HiiLibFramework/HiiLib.inf
207 UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
208 UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
209 HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
210 DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000211 PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
212 MemoryAllocationLib|MdePkg/Library/DxeMemoryAllocationLib/DxeMemoryAllocationLib.inf
213 UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
klu22f053c92007-08-10 05:29:46 +0000214 ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
AJFISH409f6782007-07-27 19:07:27 +0000215 UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
216 WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
217 OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
klu22f053c92007-08-10 05:29:46 +0000218 DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
vanjeff4cf1c1b2007-06-28 15:16:51 +0000219
klu225a201c2007-06-26 08:15:15 +0000220
221################################################################################
222#
223# Pcd Section - list of all EDK II PCD Entries defined by this Platform
224#
225################################################################################
226
xgu395276122007-07-05 07:05:28 +0000227[PcdsFeatureFlag.common]
qhuang8b3af5df2007-08-30 09:11:54 +0000228 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText|FALSE
229 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|FALSE
230 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
231 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildShareCodeHobs|TRUE
232 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportEfiDecompress|TRUE
233 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportTianoDecompress|TRUE
234 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
235 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDepricate|FALSE
xgu395276122007-07-05 07:05:28 +0000236
klu213759162007-08-02 09:02:47 +0000237[PcdsFixedAtBuild.IA32]
qhuang8b3af5df2007-08-30 09:11:54 +0000238 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
239 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeRuntimeMemorySize|128
240 gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySizeForSecMain|L"64!64"|VOID*|12
241 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareVolume|L"..\\Fv\\Fv_Recovery.fd"|VOID*|52
242 gEfiNt32PkgTokenSpaceGuid.PcdWinNtBootMode|1
243 gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000
244 gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000
245 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000
246 gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000
247 gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000
248 gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000
249 gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000
250 gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f
251 gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f
252 gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue|0xAF
253 gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040
254 gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|0
255 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxPeiPcdCallBackNumberPerPcdEntry|0x08
256 gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
257 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
258 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
259 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIncompatibleDeviceSupportMask|0
260 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueUncorrectableMemoryError|0x0005100 # EFI_COMPUTING_UNIT_MEMORY | EFI_CU_MEMORY_EC_UNCORRECTABLE3
261 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleError|0x01040006 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_CONTROLLER_ERROR
262 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleReset|0x01040001 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_PC_RESET
263 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleInputError|0x01040007 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_INPUT_ERROR
264 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleOutputError|0x01040008 # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_OUTPUT_ERROR
265 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultTimeout|0x0008
266 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangCodes|"engfra"|VOID*|7
267 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang|"eng"|VOID*|4
268 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLangCodes|"en;fr"|VOID*|6
269 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang|"en"|VOID*|3
270 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueEfiWatchDogTimerExpired|0x00011003
271 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMemoryTestStarted|0x00051006
272 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueSetVirtualAddressMap|0x03101004
273 gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueUncorrectableMemoryError|0x00051003
274 gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|320
275 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
276 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
277 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
278 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
279 gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|0
klu2869f8e32007-06-26 09:35:19 +0000280
qhuang8b3af5df2007-08-30 09:11:54 +0000281 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareFdSize|0x2a0000
282 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareBlockSize|0x10000
283 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageEventLogBase|0x28c000
284 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageEventLogSize|0x2000
285 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashFvRecoveryBase|0x0
286 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashFvRecoverySize|0x280000
yshang16d3aa332007-08-03 08:52:48 +0000287
qhuang8b3af5df2007-08-30 09:11:54 +0000288 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageVariableBase|0x280000
289 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageFtwSpareBase|0x290000
290 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageFtwWorkingBase|0x28e000
yshang16d3aa332007-08-03 08:52:48 +0000291
qhuang8b3af5df2007-08-30 09:11:54 +0000292 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize|0x10000
293 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0x2000
294 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize|0x00c000
yshang16d3aa332007-08-03 08:52:48 +0000295
klu2869f8e32007-06-26 09:35:19 +0000296[PcdsFeatureFlag.IA32]
qhuang8b3af5df2007-08-30 09:11:54 +0000297 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseTraverseEnabled|TRUE
298 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseCallbackOnSetEnabled|TRUE
299 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseExEnabled|TRUE
300 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseGetSizeEnabled|TRUE
301 gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseSetEnabled|TRUE
302 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
303 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|FALSE
304 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM|TRUE
305 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
306 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportEfiDecompress|TRUE
307 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportTianoDecompress|TRUE
308 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
309 gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildShareCodeHobs|TRUE
310 gEfiMdeModulePkgTokenSpaceGuid.PcdDxePcdDatabaseTraverseEnabled|TRUE
311 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseHardSerial|FALSE
312 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseEfiSerial|FALSE
313 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseRuntimeMemory|FALSE
314 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseDataHub|FALSE
315 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM|TRUE
316 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInSerial|FALSE
317 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInDataHub|FALSE
318 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInRuntimeMemory|FALSE
319 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInOEM|FALSE
320 gEfiMdeModulePkgTokenSpaceGuid.PcdSupportUpdateCapsuleRest|FALSE
321 gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable|FALSE
322 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable|FALSE
323 gEfiMdeModulePkgTokenSpaceGuid.PcdNtEmulatorEnable|FALSE
324 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|TRUE
325 gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText|TRUE
326 gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|TRUE
327 gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|TRUE
328 gEfiMdeModulePkgTokenSpaceGuid.PcdSupportUpdateCapsuleRest|FALSE
329 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIsaEnable|FALSE
330 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciVgaEnable|FALSE
331 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport|TRUE
AJFISHba237732007-07-03 18:34:24 +0000332
333
klu225a201c2007-06-26 08:15:15 +0000334
335################################################################################
336#
337# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
338#
339################################################################################
340
jwang362cb630b2007-07-06 07:41:51 +0000341[PcdsDynamicDefault.common.DEFAULT]
qhuang8b3af5df2007-08-30 09:11:54 +0000342 gEfiNt32PkgTokenSpaceGuid.PcdWinNtSerialPort|L"COM1!COM2"|VOID*|18
343 gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem|L".!..\\..\\..\\..\\EdkShellBinPkg\\bin\\ia32\\Apps"|VOID*|106
344 gEfiNt32PkgTokenSpaceGuid.PcdWinNtGop|L"UGA Window 1!UGA Window 2"|VOID*|50
345 gEfiNt32PkgTokenSpaceGuid.PcdWinNtConsole|L"Bus Driver Console Window"|VOID*|50
346 gEfiNt32PkgTokenSpaceGuid.PcdWinNtVirtualDisk|L"FW;40960;512"|VOID*|24
347 gEfiNt32PkgTokenSpaceGuid.PcdWinNtCpuModel|L"NT32 Processor Emulation"|VOID*|52
348 gEfiNt32PkgTokenSpaceGuid.PcdWinNtCpuSpeed|L"1234"|VOID*|8
349 gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize|L"64!64"|VOID*|10
350 gEfiNt32PkgTokenSpaceGuid.PcdWinNtPhysicalDisk|L"a:RW;2880;512!d:RO;307200;2048!j:RW;262144;512"|VOID*|100
351 gEfiNt32PkgTokenSpaceGuid.PcdWinNtUga|L"UGA Window 1!UGA Window 2"|VOID*|50
yshang16d3aa332007-08-03 08:52:48 +0000352
qhuang8b3af5df2007-08-30 09:11:54 +0000353 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
354 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
355 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0
klu225a201c2007-06-26 08:15:15 +0000356
357################################################################################
358#
359# Components Section - list of all EDK II Modules needed by this Platform
360#
361################################################################################
362
363[Components.IA32]
klu204eced52007-07-06 14:56:41 +0000364 ##
365 # SEC Phase modules
366 ##
AJFISH409f6782007-07-27 19:07:27 +0000367 Nt32Pkg/Sec/SecMain.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000368
klu204eced52007-07-06 14:56:41 +0000369 ##
370 # PEI Phase modules
371 ##
AJFISH409f6782007-07-27 19:07:27 +0000372 MdeModulePkg/Core/Pei/PeiMain.inf
qhuang876b0f6a2007-08-03 06:02:26 +0000373 MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
qhuang8b3af5df2007-08-30 09:11:54 +0000374 <LibraryClasses>
qhuang876b0f6a2007-08-03 06:02:26 +0000375 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
376 }
AJFISH409f6782007-07-27 19:07:27 +0000377 IntelFrameworkModulePkg/Universal/StatusCode/Pei/PeiStatusCode.inf
378 Nt32Pkg/BootModePei/BootModePei.inf
379 Nt32Pkg/WinNtFlashMapPei/WinNtFlashMapPei.inf
380 MdeModulePkg/Universal/MemoryTest/BaseMemoryTestPei/BaseMemoryTestPei.inf
381 MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
382 Nt32Pkg/WinNtAutoScanPei/WinNtAutoScanPei.inf
383 Nt32Pkg/WinNtFirmwareVolumePei/WinNtFirmwareVolumePei.inf
384 Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocolPei.inf
385 MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000386
klu204eced52007-07-06 14:56:41 +0000387 ##
388 # DXE Phase modules
389 ##
AJFISH409f6782007-07-27 19:07:27 +0000390 MdeModulePkg/Core/Dxe/DxeMain.inf
391 MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
qhuang8b3af5df2007-08-30 09:11:54 +0000392 <LibraryClasses>
yshang1cdebf6c2007-08-15 06:17:29 +0000393 PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
klu2cba90122007-07-10 08:57:25 +0000394 }
AJFISH409f6782007-07-27 19:07:27 +0000395 Nt32Pkg/MetronomeDxe/MetronomeDxe.inf
396 Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
397 Nt32Pkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
398 MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
399 Nt32Pkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
400 MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
401 IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf
402 MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
403 MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
404 IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/HiiDatabase.inf
405 Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf
406 MdeModulePkg/Universal/FirmwareVolume/Crc32SectionExtractDxe/Crc32SectionExtractDxe.inf
407 Nt32Pkg/CpuRuntimeDxe/CpuRuntimeDxe.inf
408 Nt32Pkg/PlatformBdsDxe/PlatformBdsDxe.inf
409 MdeModulePkg/Universal/FirmwareVolume/FaultTolerantWriteDxe/FtwLite.inf
410 IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/DataHubStdErrDxe.inf
411 Nt32Pkg/MiscSubClassPlatformDxe/MiscSubClassPlatformDxe.inf
412 Nt32Pkg/TimerDxe/TimerDxe.inf
413 IntelFrameworkModulePkg/Universal/StatusCode/Dxe/DxeStatusCode.inf
414 MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
415 MdeModulePkg/Universal/WatchDogTimerDxe/WatchDogTimer.inf
416 MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
417 MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
418 MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
419 MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
420 MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
421 MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
422 MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
423 MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
424 MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
425 IntelFrameworkModulePkg/Universal/SetupBrowserDxe/SetupBrowser.inf
426 MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
427 MdeModulePkg/Bus/Pci/AtapiPassThruDxe/AtapiPassThru.inf
428 IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
429 MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf ##This driver follows UEFI specification definition
430 MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf ##This driver follows UEFI specification definition
431 IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
432 Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriverDxe.inf
433 Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIoDxe.inf
434 Nt32Pkg/WinNtConsoleDxe/WinNtConsoleDxe.inf
435 Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
436 Nt32Pkg/WinNtGopDxe/WinNtGopDxe.inf
437 Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
438 IntelFrameworkModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf
439 MdeModulePkg/Application/HelloWorld/HelloWorld.inf
vanjeff929e7bd2007-07-16 05:55:31 +0000440
jwang362cb630b2007-07-06 07:41:51 +0000441[BuildOptions]
AJFISHb397fbb2007-07-26 21:33:37 +0000442 MSFT:DEBUG_*_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=_ModuleEntryPoint /ALIGN:4096 /SUBSYSTEM:CONSOLE
443 MSFT:RELEASE_*_IA32_DLINK_FLAGS = /ALIGN:4096