1## @file
2#  An EFI/Framework Emulation Platform with UEFI HII interface supported.
3#
4#  Developer's UEFI Emulation. DUET provides an EFI/UEFI IA32/X64 environment on legacy BIOS,
5#  to help developing and debugging native EFI/UEFI drivers.
6#
7#  Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
8#
9#  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                  = DuetPkg
26  PLATFORM_GUID                  = 199E24E0-0989-42aa-87F2-611A8C397E72
27  PLATFORM_VERSION               = 0.4
28  DSC_SPECIFICATION              = 0x00010005
29  OUTPUT_DIRECTORY               = Build/DuetPkgIA32
30  SUPPORTED_ARCHITECTURES        = IA32
31  BUILD_TARGETS                  = DEBUG
32  SKUID_IDENTIFIER               = DEFAULT
33  FLASH_DEFINITION               = DuetPkg/DuetPkg.fdf
34
35################################################################################
36#
37# Library Class section - list of all Library Classes needed by this Platform.
38#
39################################################################################
40[LibraryClasses]
41  #
42  # Entry point
43  #
44  PeimEntryPoint|MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
45  DxeCoreEntryPoint|MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
46  UefiDriverEntryPoint|MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
47  UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
48  #
49  # Basic
50  #
51  BaseLib|MdePkg/Library/BaseLib/BaseLib.inf
52  SynchronizationLib|MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
53  BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
54  PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
55  CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
56  IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
57  PciLib|MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
58  PciCf8Lib|MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
59  PciExpressLib|MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
60  CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
61  PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
62  PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
63  #
64  # UEFI & PI
65  #
66  UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
67  UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
68  UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
69  UefiLib|MdePkg/Library/UefiLib/UefiLib.inf
70  UefiHiiServicesLib|MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
71  HiiLib|MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
72  DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
73  UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
74  DxeServicesLib|MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
75  DxeServicesTableLib|MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
76  UefiCpuLib|UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
77
78  #
79  # Generic Modules
80  #
81  UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
82  UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
83  OemHookStatusCodeLib|MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
84  GenericBdsLib|IntelFrameworkModulePkg/Library/GenericBdsLib/GenericBdsLib.inf
85  SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
86  CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
87  PeCoffExtraActionLib|MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
88  CustomizedDisplayLib|MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
89  #
90  # Platform
91  #
92  PlatformBdsLib|DuetPkg/Library/DuetBdsLib/PlatformBds.inf
93  TimerLib|DuetPkg/Library/DuetTimerLib/DuetTimerLib.inf
94  #
95  # Misc
96  #
97  PerformanceLib|MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
98  DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
99  PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
100  MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
101  HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
102  ExtractGuidedSectionLib|MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
103  PlatformHookLib|MdeModulePkg/Library/BasePlatformHookLibNull/BasePlatformHookLibNull.inf
104  SerialPortLib|MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.inf
105  MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf
106  CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
107  LocalApicLib|UefiCpuPkg/Library/BaseXApicLib/BaseXApicLib.inf
108
109  #
110  # To save size, use NULL library for DebugLib and ReportStatusCodeLib.
111  # If need status code output, do library instance overriden as below DxeMain.inf does
112  #
113  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
114  DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
115  ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
116
117[LibraryClasses.common.DXE_CORE]
118  HobLib|MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
119  MemoryAllocationLib|MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
120
121################################################################################
122#
123# Pcd Section - list of all EDK II PCD Entries defined by this Platform
124#
125################################################################################
126[PcdsFixedAtBuild]
127  gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x0
128  gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x0
129  gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x0
130  gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
131
132[PcdsFeatureFlag]
133  gEfiMdeModulePkgTokenSpaceGuid.PcdTurnOffUsbLegacySupport|TRUE
134
135###################################################################################################
136#
137# Components Section - list of the modules and components that will be processed by compilation
138#                      tools and the EDK II tools to generate PE32/PE32+/Coff image files.
139#
140# Note: The EDK II DSC file is not used to specify how compiled binary images get placed
141#       into firmware volume images. This section is just a list of modules to compile from
142#       source into UEFI-compliant binaries.
143#       It is the FDF file that contains information on combining binary files into firmware
144#       volume images, whose concept is beyond UEFI and is described in PI specification.
145#       Binary modules do not need to be listed in this section, as they should be
146#       specified in the FDF file. For example: Shell binary (Shell_Full.efi), FAT binary (Fat.efi),
147#       Logo (Logo.bmp), and etc.
148#       There may also be modules listed in this section that are not required in the FDF file,
149#       When a module listed here is excluded from FDF file, then UEFI-compliant binary will be
150#       generated for it, but the binary will not be put into any firmware volume.
151#
152###################################################################################################
153[Components]
154  DuetPkg/DxeIpl/DxeIpl.inf {
155    <LibraryClasses>
156      #
157      # If no following overriden for ReportStatusCodeLib library class,
158      # All other module can *not* output debug information even they are use not NULL library
159      # instance for DebugLib and ReportStatusCodeLib
160      #
161      ReportStatusCodeLib|MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
162  }
163
164  MdeModulePkg/Core/Dxe/DxeMain.inf {
165    #
166    # Enable debug output for DxeCore module, this is a sample for how to enable debug output
167    # for a module. If need turn on debug output for other module, please copy following overriden
168    # PCD and library instance to other module's override section.
169    #
170    <PcdsFixedAtBuild>
171      gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
172      gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
173      gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000042
174    <LibraryClasses>
175      DebugLib|IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
176      ReportStatusCodeLib|DuetPkg/Library/DxeCoreReportStatusCodeLibFromHob/DxeCoreReportStatusCodeLibFromHob.inf
177  }
178
179  MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
180  MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
181  MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
182  MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
183
184  DuetPkg/FSVariable/FSVariable.inf
185  MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
186  MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
187  MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
188  MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
189  MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf {
190    <LibraryClasses>
191      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
192  }
193  MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
194  MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
195  MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
196
197  MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
198  MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
199  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
200  MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
201
202
203  DuetPkg/SmbiosGenDxe/SmbiosGen.inf
204  #DuetPkg/FvbRuntimeService/DUETFwh.inf
205  DuetPkg/EfiLdr/EfiLdr.inf {
206    <LibraryClasses>
207      DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
208      NULL|IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
209  }
210  IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf {
211    <LibraryClasses>
212      PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
213  }
214  MdeModulePkg/Universal/EbcDxe/EbcDxe.inf
215  UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
216  UefiCpuPkg/CpuDxe/CpuDxe.inf
217  PcAtChipsetPkg/8259InterruptControllerDxe/8259.inf
218  DuetPkg/AcpiResetDxe/Reset.inf
219  DuetPkg/LegacyMetronome/Metronome.inf
220
221  PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
222  PcAtChipsetPkg/8254TimerDxe/8254Timer.inf
223  DuetPkg/PciRootBridgeNoEnumerationDxe/PciRootBridgeNoEnumeration.inf
224  DuetPkg/PciBusNoEnumerationDxe/PciBusNoEnumeration.inf
225  IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/VgaMiniPortDxe.inf
226  IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/VgaClassDxe.inf
227
228  # IDE/AHCI Support
229  DuetPkg/SataControllerDxe/SataControllerDxe.inf
230  MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
231  MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
232  MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
233  MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
234
235  # Usb Support
236  MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
237  MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
238  MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
239  MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
240  MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
241
242  # ISA Support
243  PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
244  IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
245  IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
246  IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
247  IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/IsaFloppyDxe.inf
248
249  MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
250  MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
251  MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
252
253  # Bios Thunk
254  DuetPkg/BiosVideoThunkDxe/BiosVideo.inf
255
256  #
257  # Sample Application
258  #
259  MdeModulePkg/Application/HelloWorld/HelloWorld.inf
260
261###################################################################################################
262#
263# BuildOptions Section - Define the module specific tool chain flags that should be used as
264#                        the default flags for a module. These flags are appended to any
265#                        standard flags that are defined by the build process. They can be
266#                        applied for any modules or only those modules with the specific
267#                        module style (EDK or EDKII) specified in [Components] section.
268#
269###################################################################################################
270[BuildOptions]
271  MSFT:*_*_*_CC_FLAGS = /FAsc /FR$(@R).SBR
272
273