Nt32Pkg.dsc revision dcbb35eb6ca9133f6858a5945901154dd8bec732
1#/** @file
2# EFI/Framework Emulation Platform with UEFI HII interface supported.
3#
4# The Emulation Platform can be used to debug individual modules, prior to creating
5#    a real platform. This also provides an example for how an DSC is created.
6#
7# Copyright (c) 2006 - 2008, 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
13#
14#    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
29  OUTPUT_DIRECTORY               = Build/NT32
30  SUPPORTED_ARCHITECTURES        = IA32
31  BUILD_TARGETS                  = DEBUG
32  SKUID_IDENTIFIER               = DEFAULT
33  FLASH_DEFINITION               = Nt32Pkg/Nt32Pkg.fdf
34 
35
36################################################################################
37#
38# SKU Identification section - list of all SKU IDs supported by this
39#                              Platform.
40#
41################################################################################
42[SkuIds]
43  0|DEFAULT              # The entry: 0|DEFAULT is reserved and always required.
44
45################################################################################
46#
47# Library Class section - list of all Library Classes needed by this Platform.
48#
49################################################################################
50
51[LibraryClasses.common]
52  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
53  TimerLib|MdePkg/Library/BaseTimerLibNullTemplate/BaseTimerLibNullTemplate.inf
54  PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
55  SerialPortLib|MdePkg/Library/BaseSerialPortLibNull/BaseSerialPortLibNull.inf
56  BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf
57  BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
58  SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
59  CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
60  PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
61  PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
62  PciIncompatibleDeviceSupportLib|IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.inf
63  CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
64  FvbServiceLib|MdeModulePkg/Library/EdkFvbServiceLib/EdkFvbServiceLib.inf
65  IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
66  UefiDecompressLib|IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/BaseUefiTianoCustomDecompressLib.inf
67  HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
68  ExtendedHiiLib|MdeModulePkg/Library/ExtendedHiiLib/ExtendedHiiLib.inf
69  S3Lib|MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.inf
70  RecoveryLib|MdeModulePkg/Library/PeiRecoveryLibNull/PeiRecoveryLibNull.inf
71  IfrSupportLib|MdeModulePkg/Library/UefiIfrSupportLib/UefiIfrSupportLib.inf
72  ExtendedIfrSupportLib|MdeModulePkg/Library/ExtendedIfrSupportLib/ExtendedIfrSupportLib.inf
73  IfrSupportLib|MdeModulePkg/Library/UefiIfrSupportLib/UefiIfrSupportLib.inf
74  GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
75  PlatformBdsLib|Nt32Pkg/Library/Nt32BdsLib/Nt32BdsLib.inf
76  CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
77  DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
78  PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
79  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
80  
81[LibraryClasses.common.BASE]
82  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
83  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
84
85[LibraryClasses.common.USER_DEFINED]
86  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
87  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
88
89[LibraryClasses.common.SEC]
90  BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf
91  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
92  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.inf
93  PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
94
95[LibraryClasses.common.DXE_CORE]
96  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
97  UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
98  HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
99  DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
100  MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
101  UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
102  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
103  UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
104  DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
105  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
106  PeCoffLib|Nt32Pkg/Library/DxeNt32PeCoffLib/DxeNt32PeCoffLib.inf
107  ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
108
109[LibraryClasses.common.DXE_SMM_DRIVER]
110  DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
111  UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
112  UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
113  HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
114  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
115  PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
116  MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
117  UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
118  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
119  UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
120  WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
121  OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
122  PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
123  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
124
125[LibraryClasses.common.PEIM]
126  BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf
127  HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
128  PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
129  IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
130  PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
131  PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
132  MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
133  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
134  PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
135  OemHookStatusCodeLib|Nt32Pkg/Library/PeiNt32OemHookStatusCodeLib/PeiNt32OemHookStatusCodeLib.inf
136  PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
137  DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
138  PeCoffLib|Nt32Pkg/Library/PeiNt32PeCoffLib/PeiNt32PeCoffLib.inf
139  ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
140
141[LibraryClasses.common.PEI_CORE]
142  BaseMemoryLib|MdePkg/Library/BaseMemoryLibOptPei/BaseMemoryLibOptPei.inf
143  HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
144  PeiServicesTablePointerLib|MdePkg/Library/PeiServicesTablePointerLib/PeiServicesTablePointerLib.inf
145  IoLib|MdePkg/Library/PeiIoLibCpuIo/PeiIoLibCpuIo.inf
146  PeiServicesLib|MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
147  MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
148  PeiCoreEntryPoint|MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
149  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
150  OemHookStatusCodeLib|IntelFrameworkModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
151  PeCoffGetEntryPointLib|Nt32Pkg/Library/Nt32PeiPeCoffGetEntryPointLib/Nt32PeiPeCoffGetEntryPointLib.inf
152  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
153  DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
154  PeCoffLib|Nt32Pkg/Library/PeiCoreNt32PeCoffLib/PeiCoreNt32PeCoffLib.inf
155
156[LibraryClasses.common.DXE_RUNTIME_DRIVER]
157  UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
158  HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
159  PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
160  MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
161  UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
162  UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
163  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
164  DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
165  UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
166  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
167  UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
168  UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
169  WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
170  OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
171  DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
172
173[LibraryClasses.common.UEFI_DRIVER]
174  UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
175  HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
176  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
177  MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
178  UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
179  UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
180  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
181  DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
182  UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
183  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
184  UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
185  WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
186  OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
187  DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
188  NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
189  IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
190  UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
191  DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
192
193[LibraryClasses.common.DXE_DRIVER]
194  UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
195  HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
196  PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
197  MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
198  UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
199  UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
200  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
201  DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
202  UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
203  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
204  UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
205  WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
206  OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
207  DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
208  NetLib|MdeModulePkg/Library/DxeNetLib/DxeNetLib.inf
209  IpIoLib|MdeModulePkg/Library/DxeIpIoLib/DxeIpIoLib.inf
210  UdpIoLib|MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.inf
211  DpcLib|MdeModulePkg/Library/DxeDpcLib/DxeDpcLib.inf
212
213[LibraryClasses.common.UEFI_APPLICATION]
214  DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
215  UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
216  UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
217  UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
218  HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
219  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
220  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
221  MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
222  UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
223  ReportStatusCodeLib|IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/DxeReportStatusCodeLib.inf
224  UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
225  WinNtLib|Nt32Pkg/Library/DxeWinNtLib/DxeWinNtLib.inf
226  OemHookStatusCodeLib|Nt32Pkg/Library/DxeNt32OemHookStatusCodeLib/DxeNt32OemHookStatusCodeLib.inf
227  DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
228  PrintLib|MdeModulePkg/Library/EdkDxePrintLib/EdkDxePrintLib.inf
229
230
231################################################################################
232#
233# Pcd Section - list of all EDK II PCD Entries defined by this Platform
234#
235################################################################################
236
237[PcdsFeatureFlag.common]
238  gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText|FALSE
239  gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|FALSE
240  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
241  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildShareCodeHobs|TRUE
242  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportEfiDecompress|TRUE
243  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportTianoDecompress|TRUE
244  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
245  gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLangDeprecate|FALSE
246  gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics|FALSE
247  gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollationSupport|TRUE
248  gEfiMdeModulePkgTokenSpaceGuid.PcdUnicodeCollation2Support|TRUE
249  gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
250  gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|TRUE
251
252[PcdsFixedAtBuild.IA32]
253  #gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeiStackSize|0x20000
254  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
255  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeRuntimeMemorySize|128
256  gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySizeForSecMain|L"64!64"|VOID*|12
257  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareVolume|L"..\\Fv\\Nt32.fd"|VOID*|52
258  gEfiNt32PkgTokenSpaceGuid.PcdWinNtBootMode|1
259  gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000
260  gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000
261  gEfiMdePkgTokenSpaceGuid.PcdMaximumLinkedListLength|1000000
262  gEfiMdePkgTokenSpaceGuid.PcdSpinLockTimeout|10000000
263  gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0f
264  gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x1f
265  gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue|0xAF
266  gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000040
267  gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask|0
268  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxPeiPcdCallBackNumberPerPcdEntry|0x08
269  gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
270  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizeNonPopulateCapsule|0x0
271  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxSizePopulateCapsule|0x0
272  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIncompatibleDeviceSupportMask|0
273  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueUncorrectableMemoryError|0x0005100   # EFI_COMPUTING_UNIT_MEMORY | EFI_CU_MEMORY_EC_UNCORRECTABLE3
274  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleError|0x01040006        # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_CONTROLLER_ERROR
275  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleReset|0x01040001        # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_PC_RESET
276  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleInputError|0x01040007   # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_INPUT_ERROR
277  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueRemoteConsoleOutputError|0x01040008  # EFI_PERIPHERAL_REMOTE_CONSOLE | EFI_P_EC_OUTPUT_ERROR
278  gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultTimeout|0x0008
279  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueEfiWatchDogTimerExpired|0x00011003
280  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueMemoryTestStarted|0x00051006
281  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueSetVirtualAddressMap|0x03101004
282  gEfiMdePkgTokenSpaceGuid.PcdStatusCodeValueUncorrectableMemoryError|0x00051003
283  gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|320
284  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
285  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
286  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
287  gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
288  gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType|0
289
290  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareFdSize|0x2a0000
291  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFirmwareBlockSize|0x10000
292  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageEventLogBase|0x28c000
293  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageEventLogSize|0x2000
294  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashFvRecoveryBase|0x0
295  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashFvRecoverySize|0x280000
296
297  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageVariableBase|0x280000
298  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageFtwSpareBase|0x290000
299  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFlashNvStorageFtwWorkingBase|0x28e000
300
301  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize|0x10000
302  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize|0x2000
303  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize|0x00c000
304  gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
305  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxFvSupported|6
306  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreMaxPeimPerFv|32
307  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x400
308  gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize|0x8000
309  gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x10000
310
311[PcdsFeatureFlag.IA32]
312  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseTraverseEnabled|TRUE
313  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseCallbackOnSetEnabled|TRUE
314  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseExEnabled|TRUE
315  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseGetSizeEnabled|TRUE
316  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiPcdDatabaseSetEnabled|TRUE
317  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
318  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|FALSE
319  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM|TRUE
320  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|FALSE
321  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplEnableIdt|FALSE
322  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportEfiDecompress|TRUE
323  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportTianoDecompress|TRUE
324  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportCustomDecompress|TRUE
325  gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplBuildShareCodeHobs|TRUE
326  gEfiMdeModulePkgTokenSpaceGuid.PcdDxePcdDatabaseTraverseEnabled|TRUE
327  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseHardSerial|FALSE
328  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseEfiSerial|FALSE
329  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseRuntimeMemory|FALSE
330  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseDataHub|FALSE
331  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeUseOEM|TRUE
332  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInSerial|FALSE
333  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInDataHub|FALSE
334  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInRuntimeMemory|FALSE
335  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdStatusCodeReplayInOEM|FALSE
336  gEfiMdePkgTokenSpaceGuid.PcdComponentNameDisable|FALSE
337  gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnosticsDisable|FALSE
338  gEfiMdeModulePkgTokenSpaceGuid.PcdNtEmulatorEnable|TRUE
339  gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathToText|TRUE
340  gEfiMdeModulePkgTokenSpaceGuid.PcdDevicePathSupportDevicePathFromText|TRUE
341  gEfiMdePkgTokenSpaceGuid.PcdComponentName2Disable|FALSE
342  gEfiMdePkgTokenSpaceGuid.PcdDriverDiagnostics2Disable|FALSE
343  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciIsaEnable|FALSE
344  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciVgaEnable|FALSE
345  gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdPciBusHotplugDeviceSupport|TRUE
346  gEfiMdeModulePkgTokenSpaceGuid.PcdPeiCoreImageLoaderSearchTeSectionFirst|FALSE
347
348
349################################################################################
350#
351# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
352#
353################################################################################
354
355[PcdsDynamicDefault.common.DEFAULT]
356  gEfiNt32PkgTokenSpaceGuid.PcdWinNtSerialPort|L"COM1!COM2"|VOID*|18
357  gEfiNt32PkgTokenSpaceGuid.PcdWinNtFileSystem|L".!..\\..\\..\\..\\EdkShellBinPkg\\Bin\\Ia32\\Apps"|VOID*|106
358  gEfiNt32PkgTokenSpaceGuid.PcdWinNtGop|L"UGA Window 1!UGA Window 2"|VOID*|50
359  gEfiNt32PkgTokenSpaceGuid.PcdWinNtConsole|L"Bus Driver Console Window"|VOID*|50
360  gEfiNt32PkgTokenSpaceGuid.PcdWinNtVirtualDisk|L"FW;40960;512"|VOID*|24
361  gEfiNt32PkgTokenSpaceGuid.PcdWinNtMemorySize|L"64!64"|VOID*|10
362  gEfiNt32PkgTokenSpaceGuid.PcdWinNtPhysicalDisk|L"a:RW;2880;512!d:RO;307200;2048!j:RW;262144;512"|VOID*|100
363  gEfiNt32PkgTokenSpaceGuid.PcdWinNtUga|L"UGA Window 1!UGA Window 2"|VOID*|50
364
365  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0
366  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|0
367  gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|0
368  gEfiMdeModulePkgTokenSpaceGuid.PcdPlatformBootTimeOutDefault|10
369
370
371###################################################################################################
372#
373# Components Section - list of the modules and components that will be processed by compilation
374#                      tools and the EDK II tools to generate PE32/PE32+/Coff image files.
375#
376# Note: The EDK II DSC file is not used to specify how compiled binary images get placed
377#       into firmware volume images. This section is just a list of modules to compile from
378#       source into UEFI-compliant binaries.
379#       It is the FDF file that contains information on combining binary files into firmware
380#       volume images, whose concept is beyond UEFI and is described in PI specification.
381#       Binary modules do not need to be listed in this section, as they should be
382#       specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
383#       Logo (Logo.bmp), and etc.
384#       There may also be modules listed in this section that are not required in the FDF file,
385#       When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
386#       generated for it, but the binary will not be put into any firmware volume.
387#
388###################################################################################################
389
390[Components.IA32]
391  ##
392  #  SEC Phase modules
393  ##
394  Nt32Pkg/Sec/SecMain.inf
395
396  ##
397  #  PEI Phase modules
398  ##
399  MdeModulePkg/Core/Pei/PeiMain.inf
400  MdeModulePkg/Universal/PCD/Pei/Pcd.inf  {
401   <LibraryClasses>
402      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
403  }
404  IntelFrameworkModulePkg/Universal/StatusCode/Pei/PeiStatusCode.inf
405  Nt32Pkg/BootModePei/BootModePei.inf
406  Nt32Pkg/WinNtFlashMapPei/WinNtFlashMapPei.inf
407  MdeModulePkg/Universal/MemoryTest/BaseMemoryTestPei/BaseMemoryTestPei.inf
408  MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
409  Nt32Pkg/WinNtAutoScanPei/WinNtAutoScanPei.inf
410  Nt32Pkg/WinNtFirmwareVolumePei/WinNtFirmwareVolumePei.inf
411  Nt32Pkg/WinNtThunkPPIToProtocolPei/WinNtThunkPPIToProtocolPei.inf
412  MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
413  ##
414  #  DXE Phase modules
415  ##
416  MdeModulePkg/Core/Dxe/DxeMain.inf {
417    <LibraryClasses>
418      NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
419  }
420  MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
421    <LibraryClasses>
422      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
423  }
424  Nt32Pkg/MetronomeDxe/MetronomeDxe.inf
425  Nt32Pkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
426  Nt32Pkg/ResetRuntimeDxe/ResetRuntimeDxe.inf
427  MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
428  Nt32Pkg/FvbServicesRuntimeDxe/FvbServicesRuntimeDxe.inf
429  MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
430  IntelFrameworkModulePkg/Universal/DataHubDxe/DataHubDxe.inf
431  MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
432  MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
433  Nt32Pkg/WinNtThunkDxe/WinNtThunkDxe.inf
434  Nt32Pkg/CpuRuntimeDxe/CpuRuntimeDxe.inf
435  MdeModulePkg/Universal/FirmwareVolume/FaultTolerantWriteDxe/FtwLite.inf
436  IntelFrameworkModulePkg/Universal/DataHubStdErrDxe/DataHubStdErrDxe.inf
437  Nt32Pkg/MiscSubClassPlatformDxe/MiscSubClassPlatformDxe.inf
438  Nt32Pkg/TimerDxe/TimerDxe.inf
439  IntelFrameworkModulePkg/Universal/StatusCode/Dxe/DxeStatusCode.inf
440  MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
441  MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
442  MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
443  MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
444  MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
445  MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
446  MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
447  MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
448  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
449  MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
450  MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
451  MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
452  IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
453  MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf     ##This driver follows UEFI specification definition
454  MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf    ##This driver follows UEFI specification definition
455  IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/IdeBusDxe.inf
456  Nt32Pkg/WinNtBusDriverDxe/WinNtBusDriverDxe.inf {
457    <LibraryClasses>
458      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
459  }
460  Nt32Pkg/WinNtBlockIoDxe/WinNtBlockIoDxe.inf
461  Nt32Pkg/WinNtSerialIoDxe/WinNtSerialIoDxe.inf
462  Nt32Pkg/WinNtGopDxe/WinNtGopDxe.inf
463  Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystemDxe.inf
464  MdeModulePkg/Application/HelloWorld/HelloWorld.inf
465
466  #
467  # Network stack drivers
468  # To test network drivers, need network Io driver(SnpNt32Io.dll), please refer to NETWORK-IO Subproject.
469  #
470  MdeModulePkg/Universal/Network/DpcDxe/DpcDxe.inf
471  MdeModulePkg/Universal/Network/ArpDxe/ArpDxe.inf
472  MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Dxe.inf
473  MdeModulePkg/Universal/Network/Ip4ConfigDxe/Ip4ConfigDxe.inf
474  MdeModulePkg/Universal/Network/Ip4Dxe/Ip4Dxe.inf
475  MdeModulePkg/Universal/Network/MnpDxe/MnpDxe.inf
476  MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
477  MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Dxe.inf
478  MdeModulePkg/Universal/Network/Udp4Dxe/Udp4Dxe.inf
479  Nt32Pkg/SnpNt32Dxe/SnpNt32Dxe.inf
480
481  IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf 
482  MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
483  MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
484  MdeModulePkg/Universal/DriverSampleDxe/DriverSampleDxe.inf {
485    <LibraryClasses>
486      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
487  }
488  
489[BuildOptions]
490  DEBUG_*_IA32_DLINK_FLAGS = /EXPORT:InitializeDriver=$(IMAGE_ENTRY_POINT) /ALIGN:4096 /SUBSYSTEM:CONSOLE
491  RELEASE_*_IA32_DLINK_FLAGS = /ALIGN:4096
492  *_*_IA32_CC_FLAGS = /D EFI_SPECIFICATION_VERSION=0x0002000A /D TIANO_RELEASE_VERSION=0x00080006
493
494
495
496
497#############################################################################################################
498# NOTE:
499# The following [Libraries.IA32] section is for building R8 module under the R9 tool chain.
500# If you want build R8 module for Nt32 platform, please uncomment [Libraries.IA32] section and
501# libraries used by that R8 module.
502# Currently, Nt32 platform do not has any R8 style module
503#  
504#
505#[Libraries.IA32]
506  #
507  # Libraries common to PEI and DXE
508  #
509  #  EdkCompatibilityPkg\Foundation\Efi\Guid\EfiGuidLib.inf
510  #  EdkCompatibilityPkg\Foundation\Framework\Guid\EdkFrameworkGuidLib.inf
511  #  EdkCompatibilityPkg\Foundation\Guid\EdkGuidLib.inf
512  #  EdkCompatibilityPkg\Foundation\Library\EfiCommonLib\EfiCommonLib.inf
513  #  EdkCompatibilityPkg\Foundation\Cpu\Pentium\CpuIA32Lib\CpuIA32Lib.inf
514  #  EdkCompatibilityPkg\Foundation\Cpu\Itanium\CpuIA64Lib\CpuIA64Lib.inf
515  #  EdkCompatibilityPkg\Foundation\Library\CustomizedDecompress\CustomizedDecompress.inf
516  #  EdkCompatibilityPkg\Foundation\Library\CompilerStub\CompilerStubLib.inf
517  #  EdkCompatibilityPkg\Foundation\Library\Dxe\Hob\HobLib.inf
518
519  #
520  # PEI libraries
521  #
522  #  EdkCompatibilityPkg\Foundation\Framework\Ppi\EdkFrameworkPpiLib.inf
523  #  EdkCompatibilityPkg\Foundation\Ppi\EdkPpiLib.inf
524  #  EdkCompatibilityPkg\Foundation\Library\Pei\PeiLib\PeiLib.inf
525  #  EdkCompatibilityPkg\Foundation\Library\Pei\Hob\PeiHobLib.inf
526
527  #
528  # DXE libraries
529  #
530  #  EdkCompatibilityPkg\Foundation\Core\Dxe\ArchProtocol\ArchProtocolLib.inf
531  #  EdkCompatibilityPkg\Foundation\Efi\Protocol\EfiProtocolLib.inf
532  #  EdkCompatibilityPkg\Foundation\Framework\Protocol\EdkFrameworkProtocolLib.inf
533  #  EdkCompatibilityPkg\Foundation\Protocol\EdkProtocolLib.inf
534  #  EdkCompatibilityPkg\Foundation\Library\Dxe\EfiDriverLib\EfiDriverLib.inf
535  #  EdkCompatibilityPkg\Foundation\Library\RuntimeDxe\EfiRuntimeLib\EfiRuntimeLib.inf
536  #  EdkCompatibilityPkg\Foundation\Library\Dxe\Graphics\Graphics.inf
537  #  EdkCompatibilityPkg\Foundation\Library\Dxe\EfiIfrSupportLib\EfiIfrSupportLib.inf
538  #  EdkCompatibilityPkg\Foundation\Library\Dxe\Print\PrintLib.inf
539  #  EdkCompatibilityPkg\Foundation\Library\Dxe\EfiScriptLib\EfiScriptLib.inf
540  #  EdkCompatibilityPkg\Foundation\Library\Dxe\EfiUiLib\EfiUiLib.inf
541
542  #
543  # Print/Graphics Library consume SetupBrowser Print Protocol
544  #
545  #  EdkCompatibilityPkg\Foundation\Library\Dxe\PrintLite\PrintLib.inf
546  #  EdkCompatibilityPkg\Foundation\Library\Dxe\GraphicsLite\Graphics.inf
547
548