forked from microsoft/mu_tiano_platforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QemuQ35Pkg.dsc
1481 lines (1282 loc) · 75.5 KB
/
QemuQ35Pkg.dsc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## @file
# Open Virtual Machine Firmware for the Q35 platform using Project Mu
#
# Copyright (c) Microsoft Corporation
# Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
# (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
################################################################################
#
# Defines Section - statements that will be processed to create a Makefile.
#
################################################################################
[Defines]
PLATFORM_NAME = QemuQ35
PLATFORM_GUID = 163b507c-8702-496a-99d7-566c36e14728
PLATFORM_VERSION = 0.1
DSC_SPECIFICATION = 0x00010005
OUTPUT_DIRECTORY = Build/QemuQ35Pkg
SUPPORTED_ARCHITECTURES = IA32|X64
BUILD_TARGETS = NOOPT|DEBUG|RELEASE
SKUID_IDENTIFIER = DEFAULT
FLASH_DEFINITION = QemuQ35Pkg/QemuQ35Pkg.fdf
#
# Defines for default states. These can be changed on the command line.
# -D FLAG=VALUE
#
DEFINE SOURCE_DEBUG_ENABLE = FALSE
DEFINE TPM_ENABLE = FALSE
DEFINE TPM_CONFIG_ENABLE = FALSE
DEFINE OPT_INTO_MFCI_PRE_PRODUCTION = TRUE
DEFINE BUILD_UNIT_TESTS = TRUE
DEFINE PEI_MM_IPL_ENABLED = TRUE
DEFINE GUI_FRONT_PAGE = FALSE
# Configure Shared Crypto
!ifndef ENABLE_SHARED_CRYPTO # by default true
ENABLE_SHARED_CRYPTO = TRUE
!endif
!if $(ENABLE_SHARED_CRYPTO) == TRUE
PEI_CRYPTO_SERVICES = TINY_SHA
DXE_CRYPTO_SERVICES = STANDARD
SMM_CRYPTO_SERVICES = STANDARD
PEI_CRYPTO_ARCH = IA32
DXE_CRYPTO_ARCH = X64
SMM_CRYPTO_ARCH = X64
!endif
################################################################################
#
# SKU Identification section - list of all SKU IDs supported by this Platform.
#
################################################################################
[SkuIds]
0|DEFAULT
################################################################################
#
# Library Class section - list of all Library Classes needed by this Platform.
#
################################################################################
!include MdePkg/MdeLibs.dsc.inc
[LibraryClasses]
PcdLib |MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
TimerLib |QemuQ35Pkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf
PrintLib |MdePkg/Library/BasePrintLib/BasePrintLib.inf
BaseLib |MdePkg/Library/BaseLib/BaseLib.inf
UefiLib |MdePkg/Library/UefiLib/UefiLib.inf
HiiLib |MdeModulePkg/Library/UefiHiiLib/UefiHiiLib.inf
ResetSystemLib |QemuQ35Pkg/Library/ResetSystemLib/BaseResetSystemLib.inf
# Services tables/Entry points
UefiBootServicesTableLib |MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf
UefiRuntimeServicesTableLib |MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf
UefiDriverEntryPoint |MdePkg/Library/UefiDriverEntryPoint/UefiDriverEntryPoint.inf
UefiApplicationEntryPoint |MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf
DxeServicesLib |MdePkg/Library/DxeServicesLib/DxeServicesLib.inf
DxeServicesTableLib |MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.inf
UefiHiiServicesLib |MdeModulePkg/Library/UefiHiiServicesLib/UefiHiiServicesLib.inf
RegisterFilterLib |MdePkg/Library/RegisterFilterLibNull/RegisterFilterLibNull.inf
# Math Libraries
FltUsedLib |MdePkg/Library/FltUsedLib/FltUsedLib.inf
MathLib |MsCorePkg/Library/MathLib/MathLib.inf
SafeIntLib |MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf
# PeCoff Libraries
PeCoffLib |MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
PeCoffGetEntryPointLib |MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
# Debug Libraries
AdvancedLoggerAccessLib |AdvLoggerPkg/Library/AdvancedLoggerAccessLib/AdvancedLoggerAccessLib.inf
DebugPrintErrorLevelLib |MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
OemHookStatusCodeLib |MdeModulePkg/Library/OemHookStatusCodeLibNull/OemHookStatusCodeLibNull.inf
PerformanceLib |MdePkg/Library/BasePerformanceLibNull/BasePerformanceLibNull.inf
ConsoleMsgLib |PcBdsPkg/Library/ConsoleMsgLibNull/ConsoleMsgLibNull.inf
!if $(SOURCE_DEBUG_ENABLE) == TRUE
PeCoffExtraActionLib |SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf
DebugCommunicationLib |SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommunicationLibSerialPort.inf
!else
PeCoffExtraActionLib |MdePkg/Library/BasePeCoffExtraActionLibNull/BasePeCoffExtraActionLibNull.inf
DebugAgentLib |MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
!endif
# Whea Libraries
MsWheaEarlyStorageLib |MsWheaPkg/Library/MsWheaEarlyStorageLib/MsWheaEarlyStorageLib.inf
MuTelemetryHelperLib |MsWheaPkg/Library/MuTelemetryHelperLib/MuTelemetryHelperLib.inf
# Boot and Boot Policy
UefiBootManagerLib |MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
MsBootPolicyLib |OemPkg/Library/MsBootPolicyLib/MsBootPolicyLib.inf
DeviceBootManagerLib |OemPkg/Library/DeviceBootManagerLib/DeviceBootManagerLib.inf
MsAltBootLib |OemPkg/Library/MsAltBootLib/MsAltBootLib.inf # interfaces with alternate boot variable
MsBootOptionsLib |QemuPkg/Library/MsBootOptionsLibQemu/MsBootOptionsLib.inf # attached to BdsDxe to implement Microsoft extensions to UefiBootManagerLib.
MsBootManagerSettingsLib |OemPkg/Library/MsBootManagerSettingsDxeLib/MsBootManagerSettingsDxeLib.inf
# UI and graphics
BmpSupportLib |MdeModulePkg/Library/BaseBmpSupportLib/BaseBmpSupportLib.inf
BootLogoLib |MdeModulePkg/Library/BootLogoLib/BootLogoLib.inf
BootGraphicsProviderLib |OemPkg/Library/BootGraphicsProviderLib/BootGraphicsProviderLib.inf # uses PCDs and raw files in the firmware volumes to get Pcd
CustomizedDisplayLib |MdeModulePkg/Library/CustomizedDisplayLib/CustomizedDisplayLib.inf
FrameBufferBltLib |MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf
FrameBufferMemDrawLib |MsGraphicsPkg/Library/FrameBufferMemDrawLib/FrameBufferMemDrawLib.inf
BootGraphicsLib |MsGraphicsPkg/Library/BootGraphicsLib/BootGraphicsLib.inf
GraphicsConsoleHelperLib |PcBdsPkg/Library/GraphicsConsoleHelperLib/GraphicsConsoleHelper.inf
DisplayDeviceStateLib |MsGraphicsPkg/Library/ColorBarDisplayDeviceStateLib/ColorBarDisplayDeviceStateLib.inf # Display the On screen notifications for the platform using color bars
UIToolKitLib |MsGraphicsPkg/Library/SimpleUIToolKit/SimpleUIToolKit.inf
MsColorTableLib |MsGraphicsPkg/Library/MsColorTableLib/MsColorTableLib.inf
SwmDialogsLib |MsGraphicsPkg/Library/SwmDialogsLib/SwmDialogs.inf # Dialog Boxes in a Simple Window Manager environment.
DeviceStateLib |MdeModulePkg/Library/DeviceStateLib/DeviceStateLib.inf
UiRectangleLib |MsGraphicsPkg/Library/BaseUiRectangleLib/BaseUiRectangleLib.inf
PlatformThemeLib |QemuPkg/Library/PlatformThemeLib/PlatformThemeLib.inf # Q35 theme
MsUiThemeCopyLib |MsGraphicsPkg/Library/MsUiThemeCopyLib/MsUiThemeCopyLib.inf # handles copying the theme
# CPU/SMBUS/Peripherals Libraries
CpuLib |MdePkg/Library/BaseCpuLib/BaseCpuLib.inf
UefiCpuLib |UefiCpuPkg/Library/BaseUefiCpuLib/BaseUefiCpuLib.inf
SynchronizationLib |MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
LocalApicLib |UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
SmbusLib |MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf
CacheMaintenanceLib |MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
MicrocodeLib |UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf
# File Libraries
FileExplorerLib |MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
FileHandleLib |MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
NvVarsFileLib |QemuQ35Pkg/Library/NvVarsFileLib/NvVarsFileLib.inf
UefiDecompressLib |MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf
# Capsule/Versioning Libraries
DisplayUpdateProgressLib |MdeModulePkg/Library/DisplayUpdateProgressLibText/DisplayUpdateProgressLibText.inf
CapsulePersistLib |MdeModulePkg/Library/CapsulePersistLibNull/CapsulePersistLibNull.inf
MuUefiVersionLib |OemPkg/Library/MuUefiVersionLib/MuUefiVersionLib.inf
# Sorter helper Libraries
SortLib |MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
OrderedCollectionLib |MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf
# PCI libraries
PciCf8Lib |MdePkg/Library/BasePciCf8Lib/BasePciCf8Lib.inf
PciExpressLib |MdePkg/Library/BasePciExpressLib/BasePciExpressLib.inf
PciLib |MdePkg/Library/BasePciLibCf8/BasePciLibCf8.inf
PciSegmentLib |MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf
PciCapLib |QemuPkg/Library/BasePciCapLib/BasePciCapLib.inf
PciCapPciSegmentLib |QemuPkg/Library/BasePciCapPciSegmentLib/BasePciCapPciSegmentLib.inf
PciCapPciIoLib |QemuPkg/Library/UefiPciCapPciIoLib/UefiPciCapPciIoLib.inf
# IO Libraries
IoLib |MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicSev.inf
SerialPortLib |PcAtChipsetPkg/Library/SerialIoLib/SerialIoLib.inf
VirtioLib |QemuPkg/Library/VirtioLib/VirtioLib.inf
TdxLib |MdePkg/Library/TdxLib/TdxLib.inf
CcProbeLib |MdePkg/Library/CcProbeLibNull/CcProbeLibNull.inf
# USB Libraries
UefiUsbLib |MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
# Security Libraries
SecurityManagementLib |MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
BaseBinSecurityLib |MdePkg/Library/BaseBinSecurityLibNull/BaseBinSecurityLibNull.inf
SecurityLockAuditLib |MdeModulePkg/Library/SecurityLockAuditDebugMessageLib/SecurityLockAuditDebugMessageLib.inf ##MU_CHANGE
LockBoxLib |QemuPkg/Library/LockBoxLib/LockBoxBaseLib.inf
PlatformSecureLib |QemuPkg/Library/PlatformSecureLib/PlatformSecureLib.inf
PasswordStoreLib |MsCorePkg/Library/PasswordStoreLibNull/PasswordStoreLibNull.inf
PasswordPolicyLib |OemPkg/Library/PasswordPolicyLib/PasswordPolicyLib.inf
SecureBootVariableLib |SecurityPkg/Library/SecureBootVariableLib/SecureBootVariableLib.inf
SecureBootKeyStoreLib |OemPkg/Library/SecureBootKeyStoreLibOem/SecureBootKeyStoreLibOem.inf
PlatformPKProtectionLib|SecurityPkg/Library/PlatformPKProtectionLibVarPolicy/PlatformPKProtectionLibVarPolicy.inf
MuSecureBootKeySelectorLib|MsCorePkg/Library/MuSecureBootKeySelectorLib/MuSecureBootKeySelectorLib.inf
# Memory Libraries
BaseMemoryLib |MdePkg/Library/BaseMemoryLibRepStr/BaseMemoryLibRepStr.inf
MemEncryptSevLib |QemuQ35Pkg/Library/BaseMemEncryptSevLib/DxeMemEncryptSevLib.inf
MemoryTypeInfoSecVarCheckLib |MdeModulePkg/Library/MemoryTypeInfoSecVarCheckLib/MemoryTypeInfoSecVarCheckLib.inf # MU_CHANGE TCBZ1086
MemoryTypeInformationChangeLib |MdeModulePkg/Library/MemoryTypeInformationChangeLibNull/MemoryTypeInformationChangeLibNull.inf
MtrrLib |UefiCpuPkg/Library/MtrrLib/MtrrLib.inf # Memory Type Range Register (https://en.wikipedia.org/wiki/Memory_type_range_register)
MmUnblockMemoryLib |MdePkg/Library/MmUnblockMemoryLib/MmUnblockMemoryLibNull.inf
DxeMemoryProtectionHobLib |MdeModulePkg/Library/MemoryProtectionHobLibNull/DxeMemoryProtectionHobLibNull.inf
ExceptionPersistenceLib |MsCorePkg/Library/ExceptionPersistenceLibCmos/ExceptionPersistenceLibCmos.inf
CpuPageTableLib |UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf
# Variable Libraries
VariablePolicyLib |MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.inf
VariablePolicyHelperLib |MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.inf
AuthVariableLib |SecurityPkg/Library/AuthVariableLib/AuthVariableLib.inf
VarCheckLib |MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
SerializeVariablesLib |QemuQ35Pkg/Library/SerializeVariablesLib/SerializeVariablesLib.inf
VariableFlashInfoLib |MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseVariableFlashInfoLib.inf
# Unit Test Libs
UnitTestLib |UnitTestFrameworkPkg/Library/UnitTestLib/UnitTestLib.inf
UnitTestBootLib |UnitTestFrameworkPkg/Library/UnitTestBootLibNull/UnitTestBootLibNull.inf
UnitTestPersistenceLib |UnitTestFrameworkPkg/Library/UnitTestPersistenceLibSimpleFileSystem/UnitTestPersistenceLibSimpleFileSystem.inf
UnitTestResultReportLib |XmlSupportPkg/Library/UnitTestResultReportJUnitFormatLib/UnitTestResultReportLib.inf
# Xen Libraries
XenHypercallLib |QemuQ35Pkg/Library/XenHypercallLib/XenHypercallLib.inf
XenPlatformLib |QemuPkg/Library/XenPlatformLib/XenPlatformLib.inf
# Crypto Libraries
RngLib |MdePkg/Library/BaseRngLib/BaseRngLib.inf
Hash2CryptoLib |SecurityPkg/Library/BaseHash2CryptoLibNull/BaseHash2CryptoLibNull.inf
# Power/Thermal/Power State Libraries
MsNVBootReasonLib |OemPkg/Library/MsNVBootReasonLib/MsNVBootReasonLib.inf # interface on Reboot Reason non volatile variables
ResetUtilityLib |MdeModulePkg/Library/ResetUtilityLib/ResetUtilityLib.inf
S3BootScriptLib |MdeModulePkg/Library/PiDxeS3BootScriptLib/DxeS3BootScriptLib.inf
PowerServicesLib |PcBdsPkg/Library/PowerServicesLibNull/PowerServicesLibNull.inf
ThermalServicesLib |PcBdsPkg/Library/ThermalServicesLibNull/ThermalServicesLibNull.inf
MsPlatformPowerCheckLib |PcBdsPkg/Library/MsPlatformPowerCheckLibNull/MsPlatformPowerCheckLibNull.inf
# TPM Libraries
OemTpm2InitLib |SecurityPkg/Library/OemTpm2InitLibNull/OemTpm2InitLib.inf
Tpm2DebugLib |SecurityPkg/Library/Tpm2DebugLib/Tpm2DebugLibNull.inf
Tpm12CommandLib |SecurityPkg/Library/Tpm12CommandLib/Tpm12CommandLib.inf
Tpm2CommandLib |SecurityPkg/Library/Tpm2CommandLib/Tpm2CommandLib.inf
Tpm2DeviceLib |SecurityPkg/Library/Tpm2DeviceLibTcg2/Tpm2DeviceLibTcg2.inf
Tcg2PpVendorLib |SecurityPkg/Library/Tcg2PpVendorLibNull/Tcg2PpVendorLibNull.inf
TpmMeasurementLib |MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf
Tcg2PhysicalPresenceLib |QemuPkg/Library/Tcg2PhysicalPresenceLibNull/DxeTcg2PhysicalPresenceLib.inf
!if $(TPM_ENABLE) == TRUE
Tcg2PhysicalPresenceLib |QemuPkg/Library/Tcg2PhysicalPresenceLibQemu/DxeTcg2PhysicalPresenceLib.inf
TpmMeasurementLib |SecurityPkg/Library/DxeTpmMeasurementLib/DxeTpmMeasurementLib.inf
Tpm2DebugLib |SecurityPkg/Library/Tpm2DebugLib/Tpm2DebugLibSimple.inf
!endif
# Shell Libraries
ShellLib |ShellPkg/Library/UefiShellLib/UefiShellLib.inf
ShellCommandLib |ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
ShellCEntryLib |ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
HandleParsingLib |ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
BcfgCommandLib |ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.inf
# DFCI / XML / JSON Libraries
DfciUiSupportLib |DfciPkg/Library/DfciUiSupportLibNull/DfciUiSupportLibNull.inf # Supports DFCI Groups.
DfciV1SupportLib |DfciPkg/Library/DfciV1SupportLibNull/DfciV1SupportLibNull.inf # Backwards compatibility with DFCI V1 functions.
DfciDeviceIdSupportLib |OemPkg/Library/DfciDeviceIdSupportLib/DfciDeviceIdSupportLib.inf
DfciGroupLib |DfciPkg/Library/DfciGroupLibNull/DfciGroups.inf
DfciRecoveryLib |DfciPkg/Library/DfciRecoveryLib/DfciRecoveryLib.inf
# Zero Touch is part of DFCI
ZeroTouchSettingsLib |ZeroTouchPkg/Library/ZeroTouchSettings/ZeroTouchSettings.inf
# Libraries that understands the MsXml Settings Schema and providers helper functions
DfciXmlIdentitySchemaSupportLib |DfciPkg/Library/DfciXmlIdentitySchemaSupportLib/DfciXmlIdentitySchemaSupportLib.inf
DfciXmlDeviceIdSchemaSupportLib |DfciPkg/Library/DfciXmlDeviceIdSchemaSupportLib/DfciXmlDeviceIdSchemaSupportLib.inf
DfciXmlSettingSchemaSupportLib |DfciPkg/Library/DfciXmlSettingSchemaSupportLib/DfciXmlSettingSchemaSupportLib.inf
DfciXmlPermissionSchemaSupportLib |DfciPkg/Library/DfciXmlPermissionSchemaSupportLib/DfciXmlPermissionSchemaSupportLib.inf
DfciSettingChangedNotificationLib |DfciPkg/Library/DfciSettingChangedNotificationLib/DfciSettingChangedNotificationLibNull.inf
#XML libraries
XmlTreeQueryLib |XmlSupportPkg/Library/XmlTreeQueryLib/XmlTreeQueryLib.inf
XmlTreeLib |XmlSupportPkg/Library/XmlTreeLib/XmlTreeLib.inf
# Json parser
JsonLiteParserLib |MsCorePkg/Library/JsonLiteParser/JsonLiteParser.inf
# Qemu specific libraries
QemuFwCfgLib |QemuQ35Pkg/Library/QemuFwCfgLib/QemuFwCfgDxeLib.inf
QemuFwCfgSimpleParserLib |QemuQ35Pkg/Library/QemuFwCfgSimpleParserLib/QemuFwCfgSimpleParserLib.inf
VmgExitLib |UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
# Platform devices path libraries
MsPlatformDevicesLib |QemuQ35Pkg/Library/MsPlatformDevicesLibQemuQ35/MsPlatformDevicesLib.inf
DevicePathLib |MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf
LoadLinuxLib |QemuQ35Pkg/Library/LoadLinuxLib/LoadLinuxLib.inf
# Setup variable libraries
SvdXmlSettingSchemaSupportLib |SetupDataPkg/Library/SvdXmlSettingSchemaSupportLib/SvdXmlSettingSchemaSupportLib.inf
ConfigVariableListLib |SetupDataPkg/Library/ConfigVariableListLib/ConfigVariableListLib.inf
ConfigSystemModeLib |QemuPkg/Library/ConfigSystemModeLibQemu/ConfigSystemModeLib.inf
ActiveProfileIndexSelectorLib |OemPkg/Library/ActiveProfileIndexSelectorPcdLib/ActiveProfileIndexSelectorPcdLib.inf
# Network libraries
NetLib |NetworkPkg/Library/DxeNetLib/DxeNetLib.inf
MsNetworkDependencyLib |PcBdsPkg/Library/MsNetworkDependencyLib/MsNetworkDependencyLib.inf # Library that is attached to drivers that require networking.
!include NetworkPkg/NetworkLibs.dsc.inc
PlatformSmmProtectionsTestLib|UefiTestingPkg/Library/PlatformSmmProtectionsTestLibNull/PlatformSmmProtectionsTestLibNull.inf
FmpDependencyLib|FmpDevicePkg/Library/FmpDependencyLib/FmpDependencyLib.inf
DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
[LibraryClasses.common.PEI_CORE, LibraryClasses.common.PEIM, LibraryClasses.common.DXE_CORE, LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.DXE_RUNTIME_DRIVER, LibraryClasses.common.SMM_CORE, LibraryClasses.common.DXE_SMM_DRIVER, LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.UEFI_APPLICATION, LibraryClasses.common.MM_CORE_STANDALONE, LibraryClasses.common.MM_STANDALONE]
!ifndef $(DEBUG_ON_SERIAL_PORT)
DebugLib|QemuQ35Pkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
!endif
##MSCHANGE Begin
!if $(TOOL_CHAIN_TAG) == VS2019 or $(TOOL_CHAIN_TAG) == VS2022
[LibraryClasses.X64, LibraryClasses.IA32]
#if debug is enabled provide StackCookie support lib so that we can link to /GS exports on MSVC
RngLib|MdePkg/Library/BaseRngLib/BaseRngLib.inf
[LibraryClasses.X64]
BaseBinSecurityLib|MdePkg/Library/BaseBinSecurityLibRng/BaseBinSecurityLibRng.inf
NULL|MdePkg/Library/BaseBinSecurityLibRng/BaseBinSecurityLibRng.inf
!endif
##MSCHANGE End
#SHARED_CRYPTO
!if $(ENABLE_SHARED_CRYPTO) == FALSE
[LibraryClasses.IA32]
BaseCryptLib|CryptoPkg/Library/BaseCryptLibOnProtocolPpi/PeiCryptLib.inf
TlsLib|CryptoPkg/Library/BaseCryptLibOnProtocolPpi/PeiCryptLib.inf
[LibraryClasses.X64]
BaseCryptLib|CryptoPkg/Library/BaseCryptLibOnProtocolPpi/DxeCryptLib.inf
TlsLib|CryptoPkg/Library/BaseCryptLibOnProtocolPpi/DxeCryptLib.inf
[LibraryClasses.X64.DXE_SMM_DRIVER]
BaseCryptLib|CryptoPkg/Library/BaseCryptLibOnProtocolPpi/SmmCryptLib.inf
TlsLib|CryptoPkg/Library/BaseCryptLibOnProtocolPpi/SmmCryptLib.inf
[LibraryClasses.X64.MM_STANDALONE]
BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
[Components.IA32]
CryptoPkg/Driver/CryptoPei.inf {
<LibraryClasses>
BaseCryptLib|CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf
TlsLib|CryptoPkg/Library/TlsLibNull/TlsLibNull.inf
!if $(TOOL_CHAIN_TAG) == VS2017 or $(TOOL_CHAIN_TAG) == VS2015 or $(TOOL_CHAIN_TAG) == VS2019 or $(TOOL_CHAIN_TAG) == VS2022
NULL|MdePkg/Library/VsIntrinsicLib/VsIntrinsicLib.inf
!endif
IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf # Contains openSSL library used by BaseCryptoLib
<PcdsFixedAtBuild>
!include CryptoPkg/Driver/Bin/Crypto.pcd.TINY_SHA.inc.dsc
}
[Components.X64]
CryptoPkg/Driver/CryptoDxe.inf {
<LibraryClasses>
BaseCryptLib|CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf
TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf
IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf # Contains openSSL library used by BaseCryptoLib
<PcdsFixedAtBuild>
!include CryptoPkg/Driver/Bin/Crypto.pcd.STANDARD.inc.dsc
}
CryptoPkg/Driver/CryptoSmm.inf {
<LibraryClasses>
BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
TlsLib|CryptoPkg/Library/TlsLibNull/TlsLibNull.inf
IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf # Contains openSSL library used by BaseCryptoLib
<PcdsFixedAtBuild>
!include CryptoPkg/Driver/Bin/Crypto.pcd.STANDARD.inc.dsc
}
!endif
[LibraryClasses]
# Platform Runtime Mechanism (PRM) libraries
PrmContextBufferLib|PrmPkg/Library/DxePrmContextBufferLib/DxePrmContextBufferLib.inf
PrmModuleDiscoveryLib|PrmPkg/Library/DxePrmModuleDiscoveryLib/DxePrmModuleDiscoveryLib.inf
PrmPeCoffLib|PrmPkg/Library/DxePrmPeCoffLib/DxePrmPeCoffLib.inf
#########################################
# SEC Libraries
#########################################
[LibraryClasses.common.SEC]
TimerLib |QemuQ35Pkg/Library/AcpiTimerLib/BaseRomAcpiTimerLib.inf
QemuFwCfgLib |QemuQ35Pkg/Library/QemuFwCfgLib/QemuFwCfgSecLib.inf
HobLib |MdePkg/Library/PeiHobLib/PeiHobLib.inf
PeiServicesLib |MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
PeiServicesTablePointerLib |MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
MemoryAllocationLib |MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
CpuExceptionHandlerLib |UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf
ReportStatusCodeLib |MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
ExtractGuidedSectionLib |MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.inf
!ifndef $(DEBUG_ON_SERIAL_PORT)
DebugLib |QemuQ35Pkg/Library/PlatformDebugLibIoPort/PlatformRomDebugLibIoPort.inf
!endif
!if $(SOURCE_DEBUG_ENABLE) == TRUE
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
!endif
MemEncryptSevLib|QemuQ35Pkg/Library/BaseMemEncryptSevLib/SecMemEncryptSevLib.inf
[LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.DXE_CORE, LibraryClasses.common.UEFI_APPLICATION]
DxeMemoryProtectionHobLib|MdeModulePkg/Library/MemoryProtectionHobLib/DxeMemoryProtectionHobLib.inf
[LibraryClasses.common.SMM_CORE, LibraryClasses.common.DXE_SMM_DRIVER]
MmMemoryProtectionHobLib|MdeModulePkg/Library/MemoryProtectionHobLib/SmmMemoryProtectionHobLib.inf
[LibraryClasses.common.MM_CORE_STANDALONE, LibraryClasses.common.MM_STANDALONE]
MmMemoryProtectionHobLib|MdeModulePkg/Library/MemoryProtectionHobLib/StandaloneMmMemoryProtectionHobLib.inf
#########################################
# PEI Libraries
#########################################
[LibraryClasses.common.PEI_CORE, LibraryClasses.common.PEIM]
HobLib |MdePkg/Library/PeiHobLib/PeiHobLib.inf
PeiServicesTablePointerLib |MdePkg/Library/PeiServicesTablePointerLibIdt/PeiServicesTablePointerLibIdt.inf
PeiServicesLib |MdePkg/Library/PeiServicesLib/PeiServicesLib.inf
MemoryAllocationLib |MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
ReportStatusCodeLib |MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf
RngLib |MdePkg/Library/BaseRngLibNull/BaseRngLibNull.inf
MemEncryptSevLib |QemuQ35Pkg/Library/BaseMemEncryptSevLib/PeiMemEncryptSevLib.inf
[LibraryClasses.common.PEI_CORE]
PeiCoreEntryPoint |MdePkg/Library/PeiCoreEntryPoint/PeiCoreEntryPoint.inf
[LibraryClasses.common.PEIM]
ResetSystemLib |MdeModulePkg/Library/PeiResetSystemLib/PeiResetSystemLib.inf
HwResetSystemLib |QemuQ35Pkg/Library/ResetSystemLib/BaseResetSystemLib.inf
PeimEntryPoint |MdePkg/Library/PeimEntryPoint/PeimEntryPoint.inf
MsPlatformEarlyGraphicsLib |MsGraphicsPkg/Library/MsEarlyGraphicsLibNull/Pei/MsEarlyGraphicsLibNull.inf
MsUiThemeLib |MsGraphicsPkg/Library/MsUiThemeLib/Pei/MsUiThemeLib.inf
LockBoxLib |MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxPeiLib.inf
ResourcePublicationLib |MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf
ExtractGuidedSectionLib |MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf
CpuExceptionHandlerLib |UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuExceptionHandlerLib.inf
MpInitLib |UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf
QemuFwCfgS3Lib |QemuQ35Pkg/Library/QemuFwCfgS3Lib/PeiQemuFwCfgS3LibFwCfg.inf
PcdLib |MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
QemuFwCfgLib |QemuQ35Pkg/Library/QemuFwCfgLib/QemuFwCfgPeiLib.inf
PcdDatabaseLoaderLib |MdeModulePkg/Library/PcdDatabaseLoaderLib/Pei/PcdDatabaseLoaderLibPei.inf
OemMfciLib |OemPkg/Library/OemMfciLib/OemMfciLibPei.inf
ConfigKnobShimLib |SetupDataPkg/Library/ConfigKnobShimLib/ConfigKnobShimPeiLib/ConfigKnobShimPeiLib.inf
!if $(SOURCE_DEBUG_ENABLE) == TRUE
DebugAgentLib |SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgentLib.inf
!endif
!if $(TPM_ENABLE) == TRUE
Tpm12DeviceLib |SecurityPkg/Library/Tpm12DeviceLibDTpm/Tpm12DeviceLibDTpm.inf
Tpm2DeviceLib |SecurityPkg/Library/Tpm2DeviceLibDTpm/Tpm2DeviceLibDTpm.inf
SourceDebugEnabledLib |SourceLevelDebugPkg/Library/SourceDebugEnabled/SourceDebugEnabledLib.inf
Tcg2PreUefiEventLogLib |SecurityPkg/Library/QemuQ35PkgPreUefiEventLogLib/QemuQ35PkgPreUefiEventLogLib.inf ## BRET - Do we have a null instance
!endif
[LibraryClasses.X64.PEIM]
CpuExceptionHandlerLib |UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf
#########################################
# DXE Libraries
#########################################
# Common to all DXE phases
[LibraryClasses.common.DXE_CORE, LibraryClasses.common.DXE_RUNTIME_DRIVER, LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.UEFI_APPLICATION]
MsUiThemeLib |MsGraphicsPkg/Library/MsUiThemeLib/Dxe/MsUiThemeLib.inf
MsPlatformEarlyGraphicsLib |MsGraphicsPkg/Library/MsEarlyGraphicsLibNull/Dxe/MsEarlyGraphicsLibNull.inf
PcdLib |MdePkg/Library/DxePcdLib/DxePcdLib.inf
HobLib |MdePkg/Library/DxeHobLib/DxeHobLib.inf
ResetSystemLib |MdeModulePkg/Library/DxeResetSystemLib/DxeResetSystemLib.inf
HwResetSystemLib |MdeModulePkg/Library/DxeResetSystemLib/DxeResetSystemLib.inf
DxeCoreEntryPoint |MdePkg/Library/DxeCoreEntryPoint/DxeCoreEntryPoint.inf
MemoryAllocationLib |MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
CpuExceptionHandlerLib |UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
ReportStatusCodeLib |MdeModulePkg/Library/DxeReportStatusCodeLib/DxeReportStatusCodeLib.inf
QemuFwCfgS3Lib |QemuQ35Pkg/Library/QemuFwCfgS3Lib/DxeQemuFwCfgS3LibFwCfg.inf
MmUnblockMemoryLib |MmSupervisorPkg/Library/MmSupervisorUnblockMemoryLib/MmSupervisorUnblockMemoryLibDxe.inf
# Non DXE Core but everything else
[LibraryClasses.common.DXE_RUNTIME_DRIVER, LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.UEFI_APPLICATION]
TimerLib |QemuQ35Pkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
RngLib |MdePkg/Library/BaseRngLibTimerLib/BaseRngLibTimerLib.inf # MU_CHANGE use timer lib as the source of random
PciLib |QemuQ35Pkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
OemMfciLib |OemPkg/Library/OemMfciLib/OemMfciLibDxe.inf
[LibraryClasses.common.DXE_CORE]
HobLib |MdePkg/Library/DxeCoreHobLib/DxeCoreHobLib.inf
MemoryAllocationLib |MdeModulePkg/Library/DxeCoreMemoryAllocationLib/DxeCoreMemoryAllocationLib.inf
ExtractGuidedSectionLib |MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.inf
!if $(SOURCE_DEBUG_ENABLE) == TRUE
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
!endif
MemoryBinOverrideLib |MdeModulePkg/Library/MemoryBinOverrideLibNull/MemoryBinOverrideLibNull.inf
[LibraryClasses.common.DXE_RUNTIME_DRIVER]
ReportStatusCodeLib|MdeModulePkg/Library/RuntimeDxeReportStatusCodeLib/RuntimeDxeReportStatusCodeLib.inf
ResetSystemLib|QemuQ35Pkg/Library/ResetSystemLib/DxeResetSystemLib.inf
HwResetSystemLib|QemuQ35Pkg/Library/ResetSystemLib/DxeResetSystemLib.inf
UefiRuntimeLib|MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibFmp/DxeRuntimeCapsuleLib.inf
VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLibRuntimeDxe.inf
[LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.DXE_DRIVER]
UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
[LibraryClasses.common.UEFI_DRIVER]
RngLib|MdePkg/Library/DxeRngLib/DxeRngLib.inf
[LibraryClasses.common.UEFI_APPLICATION]
CheckHwErrRecHeaderLib|MsWheaPkg/Library/CheckHwErrRecHeaderLib/CheckHwErrRecHeaderLib.inf
[LibraryClasses.common.DXE_DRIVER]
PlatformBootManagerLib|MsCorePkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
PlatformBmPrintScLib|QemuPkg/Library/PlatformBmPrintScLib/PlatformBmPrintScLib.inf
LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxDxeLib.inf
QemuLoadImageLib|QemuQ35Pkg/Library/GenericQemuLoadImageLib/GenericQemuLoadImageLib.inf
MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
UpdateFacsHardwareSignatureLib|OemPkg/Library/UpdateFacsHardwareSignatureLib/UpdateFacsHardwareSignatureLib.inf
PcdDatabaseLoaderLib|MdeModulePkg/Library/PcdDatabaseLoaderLib/Dxe/PcdDatabaseLoaderLibDxe.inf
CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibFmp/DxeCapsuleLib.inf
!if $(SOURCE_DEBUG_ENABLE) == TRUE
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgentLib.inf
!endif
!if $(TPM_ENABLE) == TRUE
Tpm12DeviceLib|SecurityPkg/Library/Tpm12DeviceLibTcg/Tpm12DeviceLibTcg.inf
Tpm2DeviceLib|SecurityPkg/Library/Tpm2DeviceLibTcg2/Tpm2DeviceLibTcg2.inf
!endif
#########################################
# SMM Libraries
#########################################
[LibraryClasses.common.SMM_CORE, LibraryClasses.common.DXE_SMM_DRIVER]
ResetSystemLib|QemuQ35Pkg/Library/ResetSystemLib/DxeResetSystemLib.inf
HwResetSystemLib|QemuQ35Pkg/Library/ResetSystemLib/DxeResetSystemLib.inf
ReportStatusCodeLib|MdeModulePkg/Library/SmmReportStatusCodeLib/SmmReportStatusCodeLib.inf
HobLib|MdePkg/Library/DxeHobLib/DxeHobLib.inf
PciLib|QemuQ35Pkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
TimerLib|QemuQ35Pkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
[LibraryClasses.common.DXE_SMM_DRIVER]
MemoryAllocationLib|MdePkg/Library/SmmMemoryAllocationLib/SmmMemoryAllocationLib.inf
SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
MmServicesTableLib|MdePkg/Library/MmServicesTableLib/MmServicesTableLib.inf
SmmServicesTableLib|MdePkg/Library/SmmServicesTableLib/SmmServicesTableLib.inf
CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf
RngLib|MdePkg/Library/BaseRngLibNull/BaseRngLibNull.inf
LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxSmmLib.inf
AdvLoggerAccessLib|AdvLoggerPkg/Library/AdvLoggerSmmAccessLib/AdvLoggerSmmAccessLib.inf
!if $(SOURCE_DEBUG_ENABLE) == TRUE
DebugAgentLib|SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgentLib.inf
!endif
[LibraryClasses.common.SMM_CORE]
SmmCorePlatformHookLib|MdeModulePkg/Library/SmmCorePlatformHookLibNull/SmmCorePlatformHookLibNull.inf
MemoryAllocationLib|MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/PiSmmCoreMemoryAllocationLib.inf
SmmMemLib|MdePkg/Library/SmmMemLib/SmmMemLib.inf
SmmServicesTableLib|MdeModulePkg/Library/PiSmmCoreSmmServicesTableLib/PiSmmCoreSmmServicesTableLib.inf
[LibraryClasses.common.MM_CORE_STANDALONE]
TimerLib|QemuQ35Pkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
ExtractGuidedSectionLib|MdePkg/Library/BaseExtractGuidedSectionLib/BaseExtractGuidedSectionLib.inf
FvLib|StandaloneMmPkg/Library/FvLib/FvLib.inf
HobLib|StandaloneMmPkg/Library/StandaloneMmCoreHobLib/StandaloneMmCoreHobLib.inf
MemoryAllocationLib|StandaloneMmPkg/Library/StandaloneMmCoreMemoryAllocationLib/StandaloneMmCoreMemoryAllocationLib.inf
MemLib|MmSupervisorPkg/Library/MmSupervisorMemLib/MmSupervisorCoreMemLib.inf
ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
StandaloneMmCoreEntryPoint|StandaloneMmPkg/Library/StandaloneMmCoreEntryPoint/StandaloneMmCoreEntryPoint.inf
SmmCpuFeaturesLib|QemuQ35Pkg/Library/SmmCpuFeaturesLib/StandaloneMmCpuFeaturesLib.inf
SmmCpuPlatformHookLib|QemuQ35Pkg/Library/SmmCpuPlatformHookLibQemu/SmmCpuPlatformHookLibQemu.inf
CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf
DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLibStandaloneMm.inf
SortLib|MdeModulePkg/Library/BaseSortLib/BaseSortLib.inf
SmmPolicyGateLib|MmSupervisorPkg/Library/SmmPolicyGateLib/SmmPolicyGateLib.inf
HwResetSystemLib|PcAtChipsetPkg/Library/ResetSystemLib/ResetSystemLib.inf
IhvSmmSaveStateSupervisionLib|MmSupervisorPkg/Library/IhvMmSaveStateSupervisionLib/IhvMmSaveStateSupervisionLib.inf
[LibraryClasses.common.MM_STANDALONE]
TimerLib|QemuQ35Pkg/Library/AcpiTimerLib/DxeAcpiTimerLib.inf
MmServicesTableLib|MmSupervisorPkg/Library/StandaloneMmServicesTableLib/StandaloneMmServicesTableLib.inf
MemoryAllocationLib|StandaloneMmPkg/Library/StandaloneMmMemoryAllocationLib/StandaloneMmMemoryAllocationLib.inf
HobLib|MmSupervisorPkg/Library/StandaloneMmHobLibSyscall/StandaloneMmHobLibSyscall.inf
MemLib|MmSupervisorPkg/Library/MmSupervisorMemLib/MmSupervisorMemLibSyscall.inf
LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxStandaloneMmLib.inf
CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf
ReportStatusCodeLib|MdeModulePkg/Library/SmmReportStatusCodeLib/StandaloneMmReportStatusCodeLib.inf
HwResetSystemLib|PcAtChipsetPkg/Library/ResetSystemLib/ResetSystemLib.inf
StandaloneMmDriverEntryPoint|MmSupervisorPkg/Library/StandaloneMmDriverEntryPoint/StandaloneMmDriverEntryPoint.inf
# TODO: ShareCrypto support
BaseCryptLib|CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf
OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf
IntrinsicLib|CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf
AdvLoggerAccessLib|MdeModulePkg/Library/AdvLoggerAccessLibNull/AdvLoggerAccessLib.inf
DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLibStandaloneMm.inf
RngLib|MdePkg/Library/BaseRngLibNull/BaseRngLibNull.inf
PciLib|QemuQ35Pkg/Library/DxePciLibI440FxQ35/DxePciLibI440FxQ35.inf
BaseLib|MmSupervisorPkg/Library/BaseLibSysCall/BaseLib.inf
IoLib|MmSupervisorPkg/Library/BaseIoLibIntrinsicSysCall/BaseIoLibIntrinsic.inf
SysCallLib|MmSupervisorPkg/Library/SysCallLib/SysCallLib.inf
CpuLib|MmSupervisorPkg/Library/BaseCpuLibSysCall/BaseCpuLib.inf
################################################################################
#
# Pcd Section - list of all EDK II PCD Entries defined by this Platform.
#
################################################################################
[PcdsFeatureFlag]
gEfiMdeModulePkgTokenSpaceGuid.PcdHiiOsRuntimeSupport|FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSupportUefiDecompress|FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode|TRUE
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdInstallAcpiSdtProtocol|TRUE
gEmbeddedTokenSpaceGuid.PcdPrePiProduceMemoryTypeInformationHob|TRUE
gQemuPkgTokenSpaceGuid.PcdSmmSmramRequire|$(SMM_ENABLED)
gUefiQemuQ35PkgTokenSpaceGuid.PcdStandaloneMmEnable|$(SMM_ENABLED)
gUefiCpuPkgTokenSpaceGuid.PcdCpuHotPlugSupport|FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdRequireIommu|FALSE # don't require IOMMU
gQemuPkgTokenSpaceGuid.PcdEnableMemoryProtection|$(MEMORY_PROTECTION)
!if $(BUILD_UNIT_TESTS) == TRUE
gUefiCpuPkgTokenSpaceGuid.PcdSmmExceptionTestModeSupport|TRUE
gMmSupervisorPkgTokenSpaceGuid.PcdMmSupervisorTestEnable|TRUE
!endif
[PcdsPatchableInModule]
!if $(SOURCE_DEBUG_ENABLE) == TRUE
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
!else
gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
!endif
[PcdsFixedAtBuild]
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
gEfiMdePkgTokenSpaceGuid.PcdMaximumGuidedExtractHandler|0x10
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize|0x8400
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxAuthVariableSize|0x8400
gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize|0x1000
gPcBdsPkgTokenSpaceGuid.PcdEnableMemMapOutput|0x1
!if $(NETWORK_TLS_ENABLE) == FALSE
# match PcdFlashNvStorageVariableSize purely for convenience
gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x40000
!endif
!if $(NETWORK_TLS_ENABLE) == TRUE
gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize|0x80000
gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVolatileVariableSize|0x40000
!endif
gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress|0x0
gEfiMdePkgTokenSpaceGuid.PcdReportStatusCodePropertyMask|0x07
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseSerial|FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeUseMemory|TRUE
gPcAtChipsetPkgTokenSpaceGuid.PcdUartIoPortBaseAddress|0x402
# DEBUG_INIT 0x00000001 // Initialization
# DEBUG_WARN 0x00000002 // Warnings
# DEBUG_LOAD 0x00000004 // Load events
# DEBUG_FS 0x00000008 // EFI File system
# DEBUG_POOL 0x00000010 // Alloc & Free (pool)
# DEBUG_PAGE 0x00000020 // Alloc & Free (page)
# DEBUG_INFO 0x00000040 // Informational debug messages
# DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers
# DEBUG_VARIABLE 0x00000100 // Variable
# DEBUG_BM 0x00000400 // Boot Manager
# DEBUG_BLKIO 0x00001000 // BlkIo Driver
# DEBUG_NET 0x00004000 // SNP Driver
# DEBUG_UNDI 0x00010000 // UNDI Driver
# DEBUG_LOADFILE 0x00020000 // LoadFile
# DEBUG_EVENT 0x00080000 // Event messages
# DEBUG_GCD 0x00100000 // Global Coherency Database changes
# DEBUG_CACHE 0x00200000 // Memory range cachability changes
# DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may
# // significantly impact boot performance
# DEBUG_ERROR 0x80000000 // Error
gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80080246
#gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x800002CF # use when debugging depex loading issues
gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel|gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel
# This PCD is used to set the base address of the PCI express hierarchy. It
# is only consulted when OVMF runs on Q35. In that case it is programmed into
# the PCIEXBAR register.
#
# On Q35 machine types that QEMU intends to support in the long term, QEMU
# never lets the RAM below 4 GB exceed 2816 MB.
gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xB0000000
!if $(SOURCE_DEBUG_ENABLE) == TRUE
gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdDebugLoadImageMethod|0x2
!endif
gUefiCpuPkgTokenSpaceGuid.PcdCpuMaxLogicalProcessorNumber|$(QEMU_CORE_NUM)
!if $(SMM_ENABLED) == FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvModeEnable|TRUE
!endif
# Use profile index 1
gOemPkgTokenSpaceGuid.PcdActiveProfileIndex|0x1
[PcdsFixedAtBuild.common]
# a PCD that controls the enumeration and connection of ConIn's. When true, ConIn is only connected once a console input is requests
gEfiMdeModulePkgTokenSpaceGuid.PcdConInConnectOnDemand|TRUE
# Enable SHELL to build instead of just taking the binary
gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize|16000
gEfiShellPkgTokenSpaceGuid.PcdShellProfileMask|0x1f # All profiles
gMsGraphicsPkgTokenSpaceGuid.PcdUiThemeInDxe|TRUE
gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerInBootOrder|FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdPlatformRecoverySupport|FALSE
gPcBdsPkgTokenSpaceGuid.PcdLowResolutionInternalShell|FALSE
# Set this to be gOemConfigPolicyGuid
gSetupDataPkgTokenSpaceGuid.PcdConfigurationPolicyGuid|{GUID("ba320ade-e132-4c99-a3df-74d673ea6f76")}
# The GUID of SetupDataPkg/ConfApp/ConfApp.inf: E3624086-4FCD-446E-9D07-B6B913792071
!if $(GUI_FRONT_PAGE) == TRUE
# Note:
# The PcdBootManagerMenuFile Pcd does two things:
# 1. It sets the default front page (the one entered exiting the shell, or if all boot
# boot options fail), and:
# 2. If this application is the first boot option being loaded, Bds does not call ReadyToBoot
# to lock the private settings variables.
#
# To use this feature:
#
# 1. Build QemuQ35Pkg with BLD_*_GUI_FRONT_PAGE=TRUE
# 2. Run QEMU
# 3. Exit from the shell to enter the gui front page. Because the shell was booted first,
# the private settings variables will still be locked, and the boot order is unlocked.
# 4. Reorder the the UEFI front page boot option to be the first boot option using GUI (click
# the mouse in the Q35 display to give Qemu the mouse pointer, move the mouse pointer to
# the MU UEFI UI Front Page entry, press the left button down, while keeping the left
# button down, move the mouse pointer to the first boot option (probably Internal Stoarage),
# then let go of the left button. The GUI is very slow, so wait for it).
# 5. Select Exit, Restart to restart the system to enter front page with the variables unlocked
#
# Until you build again, every time you start Q35, the GUI front page will load first.
#
gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x8A, 0x70, 0x42, 0x40, 0x2D, 0x0F, 0x23, 0x48, 0xAC, 0x60, 0x0D, 0x77, 0xB3, 0x11, 0x18, 0x89 }
!else
gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x86, 0x40, 0x62, 0xe3, 0xcd, 0x4f, 0x6e, 0x44, 0x9d, 0x7, 0xb6, 0xb9, 0x13, 0x79, 0x20, 0x71 }
!endif
gQemuPkgTokenSpaceGuid.PcdUIApplicationFile|{ 0x8A, 0x70, 0x42, 0x40, 0x2D, 0x0F, 0x23, 0x48, 0xAC, 0x60, 0x0D, 0x77, 0xB3, 0x11, 0x18, 0x89 }
gUefiQemuQ35PkgTokenSpaceGuid.PcdOvmfFlashVariablesEnable|TRUE
gQemuPkgTokenSpaceGuid.PcdOvmfHostBridgePciDevId|0x29C0
[PcdsFixedAtBuild.IA32]
#
# The NumberOfPages values below are ad-hoc. They are updated sporadically at
# best (please refer to git-blame for past updates). The values capture a set
# of BIN hints that made sense at a particular time, for some (now likely
# unknown) workloads / boot paths.
#
gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIMemoryNVS|0x80
gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiACPIReclaimMemory|0x10
gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiReservedMemoryType|0x80
gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesCode|0x100
gEmbeddedTokenSpaceGuid.PcdMemoryTypeEfiRuntimeServicesData|0x100
[PcdsFixedAtBuild.X64]
#
# Network Pcds
#
!include NetworkPkg/NetworkPcds.dsc.inc
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmStackSize|0x4000
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmSyncMode|0x00
gUefiCpuPkgTokenSpaceGuid.PcdCpuSmmApSyncTimeout|1000000
# IRQs 5, 9, 10, 11 are level-triggered
#gUefiTempTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0E20
gUefiQemuQ35PkgTokenSpaceGuid.Pcd8259LegacyModeEdgeLevel|0x0E20
gMsGraphicsPkgTokenSpaceGuid.PcdMsGopOverrideProtocolGuid|{0xF5, 0x3B, 0x5E, 0xAA, 0x8A, 0x81, 0x2D, 0x41, 0xA1, 0x8E, 0xD8, 0x79, 0x3B, 0xA0, 0x3A, 0x5C}
# QEMU does not support SMRR, adding the PCD override to skip corresponding audit tests
!if $(BUILD_UNIT_TESTS) == TRUE
gUefiTestingPkgTokenSpaceGuid.PcdPlatformSmrrUnsupported|TRUE
!endif
################################################################################
#
# Pcd Dynamic Section - list of all EDK II PCD Entries defined by this Platform
#
################################################################################
[PcdsDynamicDefault]
gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration|FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution|1024
gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution|768
gEfiMdeModulePkgTokenSpaceGuid.PcdAcpiS3Enable|FALSE
gUefiQemuQ35PkgTokenSpaceGuid.PcdPciMmio64Size|0x800000000
gUefiQemuQ35PkgTokenSpaceGuid.PcdPciIoBase|0x0
gUefiQemuQ35PkgTokenSpaceGuid.PcdPciIoSize|0x0
gUefiQemuQ35PkgTokenSpaceGuid.PcdPciMmio32Base|0x0
gUefiQemuQ35PkgTokenSpaceGuid.PcdPciMmio32Size|0x0
gUefiQemuQ35PkgTokenSpaceGuid.PcdPciMmio64Base|0x0
gUefiQemuQ35PkgTokenSpaceGuid.PcdPciMmio64Size|0x800000000
gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved|0
gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|0
# Set video resolution for text setup.
gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoHorizontalResolution|1024
gEfiMdeModulePkgTokenSpaceGuid.PcdSetupVideoVerticalResolution|768
# Set video resolution source to be controlled by video driver
gQemuPkgTokenSpaceGuid.PcdVideoResolutionSource|2
gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosVersion|0x0208
gEfiMdeModulePkgTokenSpaceGuid.PcdSmbiosDocRev|0x0
gUefiQemuQ35PkgTokenSpaceGuid.PcdQemuSmbiosValidated|FALSE
# UefiCpuPkg PCDs related to initial AP bringup and general AP management.
gUefiCpuPkgTokenSpaceGuid.PcdCpuBootLogicalProcessorNumber|0
gUefiQemuQ35PkgTokenSpaceGuid.PcdQ35TsegMbytes|8
gUefiQemuQ35PkgTokenSpaceGuid.PcdQ35SmramAtDefaultSmbase|FALSE
gEfiSecurityPkgTokenSpaceGuid.PcdOptionRomImageVerificationPolicy|0x00
!if $(TPM_ENABLE) == TRUE
# Set this to gEfiTpmDeviceInstanceTpm20DtpmGuid
gEfiSecurityPkgTokenSpaceGuid.PcdTpmInstanceGuid|{0x5a, 0xf2, 0x6b, 0x28, 0xc3, 0xc2, 0x8c, 0x40, 0xb3, 0xb4, 0x25, 0xe6, 0x75, 0x8b, 0x73, 0x17}
!endif
# IPv4 and IPv6 PXE Boot support.
gEfiNetworkPkgTokenSpaceGuid.PcdIPv4PXESupport|0x01
gEfiNetworkPkgTokenSpaceGuid.PcdIPv6PXESupport|0x01
# Set ConfidentialComputing defaults
gEfiMdePkgTokenSpaceGuid.PcdConfidentialComputingGuestAttr|0
# Add DEVICE_STATE_UNIT_TEST_MODE to the device state bitmask if BUILD_UNIT_TESTS=TRUE (default)
!if $(BUILD_UNIT_TESTS) == TRUE
gEfiMdeModulePkgTokenSpaceGuid.PcdDeviceStateBitmask|0x20
!endif
[PcdsDynamicHii]
!if $(TPM_ENABLE) == TRUE && $(TPM_CONFIG_ENABLE) == TRUE
gEfiSecurityPkgTokenSpaceGuid.PcdTcgPhysicalPresenceInterfaceVer|L"TCG2_VERSION"|gTcg2ConfigFormSetGuid|0x0|"1.3"|NV,BS
gEfiSecurityPkgTokenSpaceGuid.PcdTpm2AcpiTableRev|L"TCG2_VERSION"|gTcg2ConfigFormSetGuid|0x8|3|NV,BS
!endif
################################################################################
#
# MFCI DSC include - packaged this way because MFCI aspires to one day be a binary
#
################################################################################
!include MfciPkg/MfciPkg.dsc.inc
################################################################################
#
# Components Section - list of all EDK II Modules needed by this Platform.
#
################################################################################
[Components]
# Shared Crypto Include
!if $(ENABLE_SHARED_CRYPTO) == TRUE
!include CryptoPkg/Driver/Bin/CryptoDriver.inc.dsc
!endif
[Components.IA32]
QemuQ35Pkg/ResetVector/ResetVector.inf
#########################################
# SEC Phase modules
#########################################
QemuQ35Pkg/Sec/SecMain.inf {
<LibraryClasses>
NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
}
#########################################
# PEI Phase modules
#########################################
MdeModulePkg/Core/Pei/PeiMain.inf
MdeModulePkg/Universal/PCD/Pei/Pcd.inf {
<LibraryClasses>
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
}
MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf {
<LibraryClasses>
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
}
MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf {
<LibraryClasses>
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
}
MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
QemuQ35Pkg/PlatformPei/PlatformPei.inf {
<LibraryClasses>
NULL|StandaloneMmPkg/Library/PeiStandaloneMmHobProductionLib/PeiStandaloneMmHobProductionLib.inf
}
UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf {
<LibraryClasses>
LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxPeiLib.inf
}
MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf
MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
QemuQ35Pkg/SmmAccess/SmmAccessPei.inf
MmSupervisorPkg/Drivers/StandaloneMmHob/StandaloneMmHob.inf
MmSupervisorPkg/Drivers/MmCommunicationBuffer/MmCommunicationBufferPei.inf
!if $(PEI_MM_IPL_ENABLED) == TRUE
MmSupervisorPkg/Drivers/MmPeiLaunchers/MmIplPei.inf
QemuQ35Pkg/SmmControl2Dxe/MmControlPei.inf
!endif
UefiCpuPkg/CpuMpPei/CpuMpPei.inf
!if $(TPM_ENABLE) == TRUE
QemuPkg/Tcg/Tcg2Config/Tcg2ConfigPei.inf
SecurityPkg/Tcg/TcgPei/TcgPei.inf
SecurityPkg/Tcg/Tcg2Pei/Tcg2Pei.inf {
<LibraryClasses>
HashLib|SecurityPkg/Library/HashLibBaseCryptoRouter/HashLibBaseCryptoRouterPei.inf
NULL|SecurityPkg/Library/HashInstanceLibSha1/HashInstanceLibSha1.inf
NULL|SecurityPkg/Library/HashInstanceLibSha256/HashInstanceLibSha256.inf
NULL|SecurityPkg/Library/HashInstanceLibSha384/HashInstanceLibSha384.inf
NULL|SecurityPkg/Library/HashInstanceLibSha512/HashInstanceLibSha512.inf
NULL|SecurityPkg/Library/HashInstanceLibSm3/HashInstanceLibSm3.inf
}
!endif
#
# MU Modules
#
## PEI
MdeModulePkg/Universal/ResetSystemPei/ResetSystemPei.inf
MsCorePkg/Universal/StatusCodeHandler/Serial/Pei/SerialStatusCodeHandlerPei.inf {
<LibraryClasses>
DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
}
MsCorePkg/Core/GuidedSectionExtractPeim/GuidedSectionExtract.inf {
<LibraryClasses>
NULL|MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
}
MsWheaPkg/MsWheaReport/Pei/MsWheaReportPei.inf
MsGraphicsPkg/MsUiTheme/Pei/MsUiThemePpi.inf
MsGraphicsPkg/MsEarlyGraphics/Pei/MsEarlyGraphics.inf
MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTablePei/FirmwarePerformancePei.inf
OemPkg/DeviceStatePei/DeviceStatePei.inf
MfciPkg/MfciPei/MfciPei.inf
PolicyServicePkg/PolicyService/Pei/PolicyPei.inf
QemuQ35Pkg/PolicyDataGfx/PolicyDataGfx.inf
QemuQ35Pkg/ConfigKnobs/ConfigKnobs.inf
OemPkg/OemConfigPolicyCreatorPei/OemConfigPolicyCreatorPei.inf {
<LibraryClasses>
# producer of config data
NULL|QemuQ35Pkg/Library/Q35ConfigDataLib/Q35ConfigDataLib.inf
}
[Components.X64]
#########################################
# DXE Phase modules
#########################################
# Spoofs button press to automatically boot to FrontPage.
OemPkg/FrontpageButtonsVolumeUp/FrontpageButtonsVolumeUp.inf
# Application that presents and manages FrontPage.
OemPkg/FrontPage/FrontPage.inf
# Application that presents & manages the Boot Menu Setup on Front Page.
OemPkg/BootMenu/BootMenu.inf
PcBdsPkg/MsBootPolicy/MsBootPolicy.inf
MdeModulePkg/Universal/BootManagerPolicyDxe/BootManagerPolicyDxe.inf
# AuthManager provides authentication for DFCI. AuthManagerNull passes out a consistent token to allow the rest
# of FrontPage to be developed and tested while RngLib or other parts of the authentication process are being developed.
DfciPkg/IdentityAndAuthManager/IdentityAndAuthManagerDxe.inf
# Processes ingoing and outgoing DFCI settings requests.
DfciPkg/DfciManager/DfciManager.inf
# Manages windows and fonts to be drawn by the RenderingEngine.
MsGraphicsPkg/SimpleWindowManagerDxe/SimpleWindowManagerDxe.inf
# Produces EfiGraphicsOutputProtocol to draw graphics to the screen.
MsGraphicsPkg/RenderingEngineDxe/RenderingEngineDxe.inf
# Driver for On Screen Keyboard.
MsGraphicsPkg/OnScreenKeyboardDxe/OnScreenKeyboardDxe.inf
# Installs protocol to share the UI theme. If PcdUiThemeInDxe, this will involve calling the PlatformThemeLib directly.