summaryrefslogtreecommitdiff
path: root/Core/CORE_DXE/CORE_DXE.sdl
blob: 37a52e0423ad4728860b65574339c9784b96cca3 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
TOKEN
	Name  = "CORE_DXE_SUPPORT"
	Value  = "1"
	Help  = "Main switch to enable CORE_DXE support in Project"
	TokenType = Boolean
	TargetEQU = Yes
	TargetMAK = Yes
	Master = Yes
End

TOKEN
	Name  = "ConSplitter_SUPPORT"
	Value  = "1"
	Help  = "Main switch to enable ConSplitter support in Project"
	TokenType = Boolean
	TargetMAK = Yes
End

TOKEN
	Name  = "Partition_SUPPORT"
	Value  = "1"
	Help  = "Main switch to enable Partition support in Project"
	TokenType = Boolean
	TargetMAK = Yes
End

TOKEN
	Name  = "PS2Ctl_SUPPORT"
	Value  = "1"
	Help  = "Main switch to enable PS2 Controller support in the project."
	TokenType = Boolean
	TargetH = Yes
	TargetMAK = Yes
	Token = "KBC_SUPPORT" "=" "1"
End

TOKEN
	Name  = "GC_COLOR_BLACK"
	Value  = "0,0,0"
	Help  = "Definition of the black color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_BLUE"
	Value  = "0x98,0,0"
	Help  = "Definition of the blue color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_GREEN"
	Value  = "0,0x98,0"
	Help  = "Definition of the green color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_CYAN"
	Value  = "0x98,0x98,0"
	Help  = "Definition of the cyan color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_RED"
	Value  = "0,0,0x98"
	Help  = "Definition of the red color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_MAGENTA"
	Value  = "0x98,0,0x98"
	Help  = "Definition of the magenta color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_BROWN"
	Value  = "0x0,0x40,0x80"
	Help  = "Definition of the brown color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_LIGHTGRAY"
	Value  = "0x98,0x98,0x98"
	Help  = "Definition of the light gray color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_DARKGRAY"
	Value  = "0x10,0x10,0x10"
	Help  = "Definition of the dark gray color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_LIGHTBLUE"
	Value  = "0xFF,0x10,0x10"
	Help  = "Definition of the light blue color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_LIGHTGREEN"
	Value  = "0x10,0xFF,0x10"
	Help  = "Definition of the light green color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_LIGHTCYAN"
	Value  = "0xFF,0xFF,0xE0"
	Help  = "Definition of the light cyan color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_LIGHTRED"
	Value  = "0x10,0x10,0xFF "
	Help  = "Definition of the light red color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_LIGHTMAGENTA"
	Value  = "0xF0,0x10,0xFF"
	Help  = "Definition of the light magenta color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_YELLOW"
	Value  = "0x10,0xFF,0xFF"
	Help  = "Definition of the yellow color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_COLOR_WHITE"
	Value  = "0xFF,0xFF,0xFF"
	Help  = "Definition of the white color used by the graphic console\Format: <Blue>,<Green>,<Red>"
	TokenType = Expression
	TargetH = Yes
	Range  = "<0-255>,<0-255>,<0-255>"
End

TOKEN
	Name  = "GC_MODE0"
	Value  = "{ 0, 80, 25, 800, 600 }"
	Help  = "Parameters of the graphica console text mode 0.\NOTE: Text resolution of the mode 0 must be 80 by 25\Format: {ModeNumber, TextColomns,TextRows, HorizontalPixels,VerticalPixels}"
	TokenType = Expression
	TargetH = Yes
End

TOKEN
	Name  = "GC_MODE1"
	Value  = "{ 1, 80, 50, 1280, 1024 }"
	Help  = "Parameters of the graphica console text mode 1.\NOTE: Text resolution of the mode 0 must be 80 by 50\Format: {ModeNumber, TextColomns,TextRows, HorizontalPixels,VerticalPixels}"
	TokenType = Expression
	TargetH = Yes
End

TOKEN
	Name  = "GC_MODE2"
	Value  = "{ 2, 100, 31, 800, 600 }"
	Help  = "Parameters of the graphica console text mode 2.\Format: {ModeNumber, TextColomns,TextRows, HorizontalPixels,VerticalPixels}"
	TokenType = Expression
	TargetH = Yes
End

TOKEN
	Name  = "GC_MODE3"
	Value  = "{ 3, 0, 0, 0, 0 }"
	Help  = "Parameters of the graphica console text mode 3.\Format: {ModeNumber, TextColomns,TextRows, HorizontalPixels,VerticalPixels}"
	TokenType = Expression
	TargetH = Yes
End

TOKEN
	Name  = "GC_MODE_LIST"
	Value  = "$(GC_MODE0), $(GC_MODE1), $(GC_MODE2), $(GC_MODE3)"
	Help  = "List of text modes supported by graphic console.\NOTE: Mode numbers defined by GC_MODEx tokens must be in ascending order."
	TokenType = Expression
	TargetH = Yes
End

TOKEN
	Name  = "START_IN_NATIVE_RESOLUTION"
	Value  = "1"
	Help  = "When this token is 'on', Graphics console will start in native resolution if available"
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "INSTALL_DUMMY_SECURITY_PROTOCOL"
	Value  = "1"
	Help  = "When this token is 'on', the Core publishes dummy instance of the security protocol.\The security protocol is one of the architectural protocols and as such must be available.\The default value is 'on'.  \Set to 'off' if project includes driver that publishes the security protocol.\"
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "PS2MOUSE_SUPPORT"
	Value  = "1"
	TokenType = Boolean
	TargetH = Yes
	Token = "PS2Ctl_SUPPORT" "=" "1"
End

TOKEN
	Name  = "PS2KBD_SUPPORT"
	Value  = "1"
	TokenType = Boolean
	TargetH = Yes
	Token = "PS2Ctl_SUPPORT" "=" "1"
End

TOKEN
	Name  = "KBC_AUTODETECT_PORTS"
	Value  = "0"
	Help  = "Auto detection of KB/MS using AMI KB-5.  This switch will enable/disable the connector swap of Keyboard and PS2 Mouse i.e. keyboard\can be connected to PS2 Mouse connector and vice-versa."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "KBC_AUTODETECT_PORTS_FUNCTION"
	Value  = "AutodetectKbdMousePorts"
	TokenType = Expression
	TargetH = Yes
	Token = "KBC_AUTODETECT_PORTS" "=" "1"
End

TOKEN
	Name  = "BLOCK_KBC_PIN_22_23_BIT"
	Value  = "1"
	Help  = "Turn this switch On or Off to block or unblock KBC lines P22 and P23.\If unblocked - KBC will be able to change lines P22 and P23 from high to low and back using D1 command.\If blocked - KBC will not be able to change the state of P22 and P23 lines."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "LEDS_AT_STARTUP"
	Value  = "2"
	Help  = "Keyboard LEDs after startup:\Bit0: ScrlLock is on/off;\Bit1: NumLock is on/off;\Bit2: CapsLock is on/off."
	TokenType = Integer
	TargetH = Yes
End

TOKEN
	Name  = "MAX_HOTKEYS"
	Value  = "20"
	Help  = "Number of hot keys."
	TokenType = Integer
	TargetH = Yes
End

TOKEN
	Name  = "INIT_DEFAULT_HOTKEYS"
	Value  = "1"
	Help  = "Initialize default hot keys (perform system soft reset on Ctrl+Alt+Del combination)."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "KBC_BASIC_ASSURANCE_TEST"
	Value  = "1"
	Help  = "1 - Perform KBC Basic Assurance Test. 0 - Do not peform KBC Basic Assurance Test."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "DETECT_PS2_KEYBOARD"
	Value  = "0"
	Help  = "1 - Perform PS2 Keyboard Detection. 0 - Do not perform PS2 Keybaord Detection."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "DETECT_PS2_MOUSE"
	Value  = "0"
	Help  = "1 - Perform PS2 Mouse Detection. 0 - Do not perform PS2 Mouse Detection."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "INSTALL_KEYBOARD_MOUSE_ALWAYS"
	Value  = "1"
	Help  = "1 - Install the Keyboard- SimpleTextIn, Mouse - AbsPointer Always, 0 - Install the Keyboard- SimpleTextIn, Mouse - AbsPointer only if the device is present at the time of detection."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "RETURN_CURRENT_KEY_STATE"
	Value  = "0"
	Help  = "0 - return key shift and toggle states captured during a keypress, 1 - return current shift and toggle state."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "KB_IRQ_SUPPORT"
	Value  = "0"
	Help  = "When this token is ON mouse will operate using interrupt, when OFF polling will be used"
	TokenType = Boolean
	TargetEQU = Yes
	TargetMAK = Yes
	TargetH = Yes
End

TOKEN
	Name  = "MS_IRQ_SUPPORT"
	Value  = "0"
	Help  = "When this token is ON mouse will operate using interrupt, when OFF polling will be used"
	TokenType = Boolean
	TargetEQU = Yes
	TargetMAK = Yes
	TargetH = Yes
End

TOKEN
	Name  = "KBD_READ_BEFORE_INSTALL"
	Value  = "0"
	Help  = "This token will be used to save the key codes if keys are pressed before installing keyboard driver"
	TokenType = Expression
	TargetH = Yes
	Token = "KB_IRQ_SUPPORT" "=" "1"
End

TOKEN
	Name  = "IBFREE_TIMEOUT"
	Value  = "300"
	Help  = "Timeout (in miliseconds) used for the function IbFreeTimeout()"
	TokenType = Integer
	TargetH = Yes
End

TOKEN
	Name  = "CLEAR_PS2KB_BUFFER_AT_READYTOBOOT"
	Value  = "0"
	Help  = "ON   -> PS2 KB Buffer will be cleared at ReadyToBoot.\OFF  -> PS2 KB Buffer will not be cleared at ReadyToBoot."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "CHECK_BDA_KEYBOARD_BUFFER"
	Value  = "1"
	Help  = "ON   -> BDA KBD Buffer will be checked for any key whenever there is no key is found in ReadKeyStroke().\OFF  -> BDA KBD Buffer will not be checked."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "CLEAR_PENDING_KEYS_IN_PS2"
	Value  = "0"
	Help  = "ON -> Resets the keyboard before PS2 Driver is started and Clears OBF on every Kbd Reset as some Notbook KBC has some pending keys even after disabling and enabling Scanning."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "BBS_USB_DEVICE_TYPE_SUPPORT"
	Value  = "0"
	Help  = "Treat USB devices as a separate BBS device type"
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "BBS_NETWORK_DEVICE_TYPE_SUPPORT"
	Value  = "0"
	Help  = "Treat network devices as a separate BBS device type"
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "GROUP_BOOT_OPTIONS_BY_TAG"
	Value  = "1"
	Help  = "When this token is on, the boot options are grouped by tag.\When this token is off, the boot list is flat (a.k.a. flex boot)."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "FW_ORPHAN_BOOT_OPTIONS_POLICY"
	Value  = "ORPHAN_BOOT_OPTIONS_POLICY_DELETE"
	Help  = "Defines handling of the firmware boot options not associated with the device.\The supported policies are: \ORPHAN_BOOT_OPTIONS_POLICY_KEEP\ORPHAN_BOOT_OPTIONS_POLICY_DELETE\ORPHAN_BOOT_OPTIONS_POLICY_DISABLE\"
	TokenType = Expression
	TargetH = Yes
End

TOKEN
	Name  = "NON_FW_ORPHAN_BOOT_OPTIONS_POLICY"
	Value  = "ORPHAN_BOOT_OPTIONS_POLICY_HIDE"
	Help  = "Defines handling of the non-firmware (third party) boot options not associated with the device.\The supported policies are: \ORPHAN_BOOT_OPTIONS_POLICY_KEEP\ORPHAN_BOOT_OPTIONS_POLICY_DELETE\ORPHAN_BOOT_OPTIONS_POLICY_DISABLE\ORPHAN_BOOT_OPTIONS_POLICY_HIDE\"
	TokenType = Expression
	TargetH = Yes
	Range  = "ORPHAN_BOOT_OPTIONS_POLICY_KEEP"
End

TOKEN
	Name  = "ORPHAN_GROUP_HEADERS_POLICY"
	Value  = "ORPHAN_BOOT_OPTIONS_POLICY_DELETE"
	Help  = "Defines handling of the non-firmware (third party) boot options not associated with the device.\The supported policies are: \ORPHAN_BOOT_OPTIONS_POLICY_KEEP\ORPHAN_BOOT_OPTIONS_POLICY_DELETE\ORPHAN_BOOT_OPTIONS_POLICY_DISABLE\"
	TokenType = Expression
	TargetH = Yes
	Range  = "ORPHAN_BOOT_OPTIONS_POLICY_KEEP"
End

TOKEN
	Name  = "NORMALIZE_BOOT_OPTION_NAME"
	Value  = "1"
	Help  = "When the token is on, the Description of the existing boot options is regenerated during the boot option processing.\It is possible to override built time Description normalization policy using NormalizeBootOptionName variable."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "NORMALIZE_BOOT_OPTION_DEVICE_PATH"
	Value  = "1"
	Help  = "When the token is on, the FilePathList of the existing boot options is regenerated during the boot option processing.\It is possible to override built time FilePathList normalization policy using NormalizeBootOptionDevicePath variable."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "BOOT_OPTION_TAG_PRIORITIES"
	Value  = "BoTagUefi, BoTagLegacyCdrom, BoTagLegacyHardDisk, BoTagLegacyFloppy, BoTagLegacyEmbedNetwork, BoTagEmbeddedShell"
	Help  = "List of value of type BOOT_OPTION_TAG that define priorities of the boot option tags.\BOOT_OPTION_TAG is defined in BdsBoard.c\"
	TokenType = Expression
	TargetH = Yes
	Token = "DEBUG_MODE" "=" "0"
End

TOKEN
	Name  = "BOOT_OPTION_TAG_PRIORITIES"
	Value  = "BoTagEmbeddedShell, BoTagUefi, BoTagLegacyCdrom, BoTagLegacyHardDisk, BoTagLegacyFloppy, BoTagLegacyEmbedNetwork"
	Help  = "List of value of type BOOT_OPTION_TAG that define priorities of the boot option tags.\BOOT_OPTION_TAG is defined in BdsBoard.c\"
	TokenType = Expression
	TargetH = Yes
	Token = "DEBUG_MODE" "!=" "0"
End

TOKEN
	Name  = "BOOT_OPTION_NAME_PREFIX_FUNCTION"
	Value  = "ConstructBootOptionNamePrefixDefault"
	Help  = "Name of the function of type CONSTRUCT_BOOT_OPTION_NAME.\The function is used to create boot option name prefix."
	TokenType = Expression
	TargetH = Yes
End

TOKEN
	Name  = "BOOT_OPTION_NAME_SUFFIX_FUNCTION"
	Value  = "ConstructBootOptionNameSuffixDefault"
	Help  = "Name of the function of type CONSTRUCT_BOOT_OPTION_NAME.\The function is used to create boot option name suffix."
	TokenType = Expression
	TargetH = Yes
End

TOKEN
	Name  = "BOOT_OPTION_GET_BBS_ENTRY_DEVICE_TYPE_FUNCTION"
	Value  = "GetBbsEntryDeviceTypeDefault"
	Help  = "Name of the function of type GET_BBS_ENTRY_DEVICE_TYPE.\The function is used to convert device type stored in the BBS table to a legacy device type that will be stored in the NVRAM.\The default implementation(GetBbsEntryDeviceTypeDefault) provides support for BBS_USB_DEVICE_TYPE_SUPPORT and BBS_NETWORK_DEVICE_TYPE_SUPPORT SDL tokens."
	TokenType = Expression
	TargetH = Yes
	Token = "CSM_SUPPORT" "=" "1"
End

TOKEN
	Name  = "MATCH_BOOT_OPTION_BY_LOCATION"
	Value  = "1"
	Help  = "When this option is on, the boot option is matched to the boot device using device location information. The device location is a specific connection point that the device is attached to. \For example: SATA Controller 1 Port 0,  IDE Primary Master,  USB Controller 1 Port 3\"
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "MATCH_BOOT_OPTION_BY_DEVICE"
	Value  = "1"
	Help  = "When this option is on, the boot option is matched to the boot device using device information such as device name, device serial number or other information that uniquely identifies the device."
	TokenType = Boolean
	TargetH = Yes
End

TOKEN
	Name  = "BDS_CONNECT_CONSOLE_DEVICES"
	Value  = "1"
	Help  = "Enables/Disables execution of the BDS Control Flow \functions from the 'Connect Console Devices' group"
	TokenType = Boolean
End

TOKEN
	Name  = "BDS_FULL_SYSTEM_INITIALIZATION"
	Value  = "1"
	Help  = "Enables/Disables execution of the BDS Control Flow(BDS_CONTROL_FLOW) \functions from the 'Full System Initialization' group"
	TokenType = Boolean
End

TOKEN
	Name  = "BDS_CONNECT_CON_OUT_DEVICES"
	Value  = "1"
	Help  = "Enables/Disables execution of the BDS Control Flow(BDS_CONTROL_FLOW) \functions from the 'Connect ConOut Devices' group"
	TokenType = Boolean
	Token = "BDS_CONNECT_CONSOLE_DEVICES" "=" "1"
End

TOKEN
	Name  = "BDS_CONNECT_CON_IN_DEVICES"
	Value  = "1"
	Help  = "Enables/Disables execution of the BDS Control Flow(BDS_CONTROL_FLOW) \functions from the 'Connect ConIn Devices' group"
	TokenType = Boolean
	Token = "BDS_CONNECT_CONSOLE_DEVICES" "=" "1"
End

TOKEN
	Name  = "BDS_UPDATE_BOOT_OPTION_VARIABLES"
	Value  = "1"
	Help  = "Enables/Disables execution of the BDS Control Flow(BDS_CONTROL_FLOW) \functions from the 'UpdateBootOptionVariables,' group"
	TokenType = Boolean
End

TOKEN
	Name  = "BDS_PROCESS_BOOT_OPTION_LIST"
	Value  = "1"
	Help  = "Enables/Disables execution of the BDS Control Flow(BDS_CONTROL_FLOW) \functions from the '/*Process Boot Option List*/' group"
	TokenType = Boolean
	Token = "BDS_UPDATE_BOOT_OPTION_VARIABLES" "=" "1"
End

TOKEN
	Name  = "ATAPI_BUSY_CLEAR_TIMEOUT"
	Value  = "16000"
	Help  = "Timeout value for ATAPI busy clear. Set to 16 sec."
	TokenType = Integer
	TargetH = Yes
End

TOKEN
	Name  = "S3_BUSY_CLEAR_TIMEOUT"
	Value  = "10000"
	Help  = "Timeout value for S3 busy clear. Set to 10 sec."
	TokenType = Integer
	TargetH = Yes
End

TOKEN
	Name  = "DMA_ATA_COMMAND_COMPLETE_TIMEOUT"
	Value  = "5000"
	Help  = "Timeout value for completion of DMA ATA command. Set to 5 Sec."
	TokenType = Integer
	TargetH = Yes
End

TOKEN
	Name  = "DMA_ATAPI_COMMAND_COMPLETE_TIMEOUT"
	Value  = "16000"
	Help  = "Timeout value for completion of DMA ATAPI command. Set to 16 Sec."
	TokenType = Integer
	TargetH = Yes
End

TOKEN
	Name  = "ATAPI_RESET_COMMAND_TIMEOUT"
	Value  = "5000"
	Help  = "Timeout Value for ATAPI reset command. Set to 5 sec."
	TokenType = Integer
	TargetH = Yes
End

TOKEN
	Name  = "POWERON_BUSY_CLEAR_TIMEOUT"
	Value  = "10000"
	Help  = "The Poweron busy clear timeout value. Set to 10 sec."
	TokenType = Integer
	TargetH = Yes
End

PATH
	Name  = "CORE_DXE_DIR"
End

MODULE
	Help  = "Includes CORE_DXE.mak to Project"
	File  = "CORE_DXE.mak"
End

ELINK
	Name  = "$(BUILD_DIR)\CORE_DXE.ffs"
	Parent  = "FV_MAIN"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "DxeCoreInitialize"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "BdsInit,"
	Parent  = "DxeCoreInitialize"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "GenericSioEntryPoint,"
	Parent  = "DxeCoreInitialize"
	Token = "SIO_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "InitDataHub,"
	Parent  = "DxeCoreInitialize"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "UnicodeCollationEntryPoint,"
	Parent  = "DxeCoreInitialize"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "BDS_CONTROL_FLOW"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "HiiBdsEntryPoint,"
	Parent  = "BdsEntryInitialize"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "DiskIoEntryPoint,"
	Parent  = "BdsEntryInitialize"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "GCEntryPoint,"
	Parent  = "BdsEntryInitialize"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "CSEntryPoint,"
	Parent  = "BdsEntryInitialize"
	Token = "ConSplitter_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "PartitionEntryPoint,"
	Parent  = "BdsEntryInitialize"
	Token = "Partition_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "CORE_DXE_LIB"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "$(CORE_DXE_DIR)\CORE_DXE$(ARCH)$(DBG).lib"
	Parent  = "CORE_DXE_LIB"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "BdsEntryInitialize"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "DxeSioList"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "PS2CtlEntryPoint,"
	Parent  = "BdsEntryInitialize"
	Token = "PS2Ctl_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "FloppyCtrlEntryPoint,"
	Parent  = "BdsEntryInitialize"
	Token = "x64_BUILD" "=" "1"
	Token = "FLOPPY_CTRL_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "HiiDbEntryPoint,"
	Parent  = "DxeCoreInitialize"
	Token = "EFI_SPECIFICATION_VERSION" "<=" "0x20000"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "HiiDriverEntryPoint,"
	Parent  = "DxeCoreInitialize"
	Token = "EFI_SPECIFICATION_VERSION" ">" "0x20000"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "BDS_SDBS"
	Help  = "List of SDB files with the string overrides for the BDS component."
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "BootOptionDpMatchingFunctions"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "BootOptionMatchingFunctions"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "BootOptionBootDeviceFilteringFunctions"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "BootOptionBuildNameFunctions"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "BootOptionBuildFilePathFunctions"
	InvokeOrder = ReplaceParent
End

ELINK
	Name  = "LocateDevicePathTest,"
	Parent  = "BootOptionDpMatchingFunctions"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "PartitionDevicePathTest,"
	Parent  = "BootOptionDpMatchingFunctions"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "UsbClassDevicePathTest,"
	Parent  = "BootOptionDpMatchingFunctions"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "BbsDevicePathTest,"
	Parent  = "BootOptionDpMatchingFunctions"
	Token = "CSM_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "AmiBbsDevicePathTest,"
	Parent  = "BootOptionDpMatchingFunctions"
	Token = "CSM_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConstructBootOptionNameByHandle,"
	Parent  = "BootOptionBuildNameFunctions"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConstructBootOptionNameByBbsDescription,"
	Parent  = "BootOptionBuildNameFunctions"
	Token = "CSM_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConstructBootOptionNameByHandleDevicePath,"
	Parent  = "BootOptionBuildNameFunctions"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConstructBootOptionNameByFilePathList,"
	Parent  = "BootOptionBuildNameFunctions"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "InstallLzmaDecompressProtocol,"
	Parent  = "DxeCoreInitialize"
	Token = "LZMA_SUPPORT" "=" "1"
	InvokeOrder = BeforeParent
End

ELINK
	Name  = "BuildLegacyLocationFilePath,"
	Parent  = "BootOptionBuildFilePathFunctions"
	Token = "CSM_SUPPORT" "=" "1"
	Token = "MATCH_BOOT_OPTION_BY_LOCATION" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "BuildNameFilePath,"
	Parent  = "BootOptionBuildFilePathFunctions"
	Token = "MATCH_BOOT_OPTION_BY_DEVICE" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "BuildLegacyFilePath,"
	Parent  = "BootOptionBuildFilePathFunctions"
	Token = "CSM_SUPPORT" "=" "1"
	InvokeOrder = BeforeParent
End

ELINK
	Name  = "BuildEfiFilePath,"
	Parent  = "BootOptionBuildFilePathFunctions"
	InvokeOrder = BeforeParent
End

ELINK
	Name  = "AmiDeviceNameDevicePathTest,"
	Parent  = "BootOptionDpMatchingFunctions"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "DeviceTypeDevicePathTest,"
	Parent  = "BootOptionDpMatchingFunctions"
	Token = "MATCH_BOOT_OPTION_BY_LOCATION" "=" "0"
	Token = "MATCH_BOOT_OPTION_BY_DEVICE" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "SignalConnectDriversEvent,"
	Parent  = "BDS_CONTROL_FLOW"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConnectRootBridgeHandles,"
	Parent  = "BDS_CONTROL_FLOW"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "RegisterMemoryTypeInformationUpdateCallback,"
	Parent  = "BDS_CONTROL_FLOW"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "FastBootHook,"
	Parent  = "BDS_CONTROL_FLOW"
	Token = "FAST_BOOT_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "/* Connect Console Devices */"
	Parent  = "BDS_CONTROL_FLOW"
	Token = "BDS_CONNECT_CONSOLE_DEVICES" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "/* Full System Initialization */"
	Parent  = "BDS_CONTROL_FLOW"
	Token = "BDS_CONNECT_CONSOLE_DEVICES" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "/* Connect ConOut Devices */"
	Parent  = "/* Connect Console Devices */"
	Token = "BDS_CONNECT_CON_OUT_DEVICES" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "/* Connect ConIn Devices */"
	Parent  = "/* Connect Console Devices */"
	Token = "BDS_CONNECT_CON_IN_DEVICES" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ReportConnectConOutProgressCode,"
	Parent  = "/* Connect ConOut Devices */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConnectVgaConOut,"
	Parent  = "/* Connect ConOut Devices */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConnectConOutVariable,"
	Parent  = "/* Connect ConOut Devices */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "InstallConOutStartedProtocol,"
	Parent  = "/* Connect ConOut Devices */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ReportConnectConInProgressCode,"
	Parent  = "/* Connect ConIn Devices */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConnectPs2ConIn,"
	Parent  = "/* Connect ConIn Devices */"
	Token = "PS2Ctl_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConnectUsbConIn,"
	Parent  = "/* Connect ConIn Devices */"
	Token = "AMIUSB_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConnectConInVariable,"
	Parent  = "/* Connect ConIn Devices */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "InstallConInStartedProtocol,"
	Parent  = "/* Connect ConIn Devices */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConInAvailabilityBeep,"
	Parent  = "/* Connect ConIn Devices */"
	Token = "BEEP_ENABLE" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ConnectEverything,"
	Parent  = "/* Full System Initialization */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "RunDrivers,"
	Parent  = "/* Full System Initialization */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "InitConVars,"
	Parent  = "/* Full System Initialization */"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "InstallFwLoadFile,"
	Parent  = "/* Full System Initialization */"
	Token = "Shell_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "UpdateBootOptionVariables,"
	Parent  = "/* Full System Initialization */"
	Token = "BDS_UPDATE_BOOT_OPTION_VARIABLES" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "CallTheDispatcher,"
	Parent  = "BDS_CONTROL_FLOW"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "CapsuleHook,"
	Parent  = "BDS_CONTROL_FLOW"
	Token = "CAPSULE_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "SignalAllDriversConnectedEvent,"
	Parent  = "BDS_CONTROL_FLOW"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "HandoffToTse,"
	Parent  = "BDS_CONTROL_FLOW"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "ReadBootOptions,"
	Parent  = "UpdateBootOptionVariables,"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "AdjustLegacyBootOptionPriorities,"
	Parent  = "UpdateBootOptionVariables,"
	Token = "CSM_SUPPORT" "=" "1"
	Token = "GROUP_BOOT_OPTIONS_BY_TAG" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "UnmaskOrphanDevices,"
	Parent  = "UpdateBootOptionVariables,"
	Token = "CSM_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "CollectBootDevices,"
	Parent  = "UpdateBootOptionVariables,"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "FilterBootDeviceList,"
	Parent  = "UpdateBootOptionVariables,"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "MatchBootOptionsToDevices,"
	Parent  = "UpdateBootOptionVariables,"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "DeleteUnmatchedUefiHddBootDevices,"
	Parent  = "UpdateBootOptionVariables,"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "CreateBootOptionsForNewBootDevices,"
	Parent  = "UpdateBootOptionVariables,"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "/*Process Boot Option List*/"
	Parent  = "UpdateBootOptionVariables,"
	Token = "BDS_PROCESS_BOOT_OPTION_LIST" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "MaskOrphanDevices,"
	Parent  = "UpdateBootOptionVariables,"
	Token = "CSM_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "SaveLegacyDevOrder,"
	Parent  = "UpdateBootOptionVariables,"
	Token = "CSM_SUPPORT" "=" "1"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "SaveBootOptions,"
	Parent  = "UpdateBootOptionVariables,"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "SetBootOptionTags,"
	Parent  = "/*Process Boot Option List*/"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "NormalizeBootOptions,"
	Parent  = "/*Process Boot Option List*/"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "PreProcessBootOptions,"
	Parent  = "/*Process Boot Option List*/"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "SetBootOptionPriorities,"
	Parent  = "/*Process Boot Option List*/"
	InvokeOrder = AfterParent
End

ELINK
	Name  = "PostProcessBootOptions,"
	Parent  = "/*Process Boot Option List*/"
	InvokeOrder = AfterParent
End