-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPenguin_Computing_Red_Hat_Configure_UEFI_postCMOS.sce
More file actions
1266 lines (1132 loc) · 29.5 KB
/
Penguin_Computing_Red_Hat_Configure_UEFI_postCMOS.sce
File metadata and controls
1266 lines (1132 loc) · 29.5 KB
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
// Script File Name : postCMOS.sce
// Created on 09/06/18 at 11:02:17
// Copyright (c)2016 American Megatrends, Inc.
// AMISCE Utility. Ver 5.02.1097
HIICrc32= 40E57483
Setup Question = PCH CRID
Map String = PCH015
Token =44 // Do NOT change this line
Offset =EA
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = USB Precondition
Map String = PCH016
Token =45 // Do NOT change this line
Offset =128
Width =01
BIOS Default =[00]Disabled
Options =[01]Enabled // Move "*" to the desired Option
*[00]Disabled
Setup Question = xHCI Mode
Map String = PCH017
Token =46 // Do NOT change this line
Offset =10E
Width =01
BIOS Default =[02]Auto
Options =[03]Smart Auto // Move "*" to the desired Option
*[02]Auto
[01]Enabled
[00]Disabled
Setup Question = SATA Controller
Map String = PCH15C
Token =7C // Do NOT change this line
Offset =12B
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Configure SATA as
Map String = PCH04D
Token =7D // Do NOT change this line
Offset =12C
Width =01
BIOS Default =[01]AHCI
Options =[00]IDE // Move "*" to the desired Option
*[01]AHCI
[02]RAID
Setup Question = Port 0
Map String = PCH053
Token =84 // Do NOT change this line
Offset =12E
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH059
Token =85 // Do NOT change this line
Offset =134
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH065
Token =88 // Do NOT change this line
Offset =140
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Port 1
Map String = PCH054
Token =8A // Do NOT change this line
Offset =12F
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH05A
Token =8B // Do NOT change this line
Offset =135
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH066
Token =8E // Do NOT change this line
Offset =141
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Port 2
Map String = PCH055
Token =90 // Do NOT change this line
Offset =130
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH05B
Token =91 // Do NOT change this line
Offset =136
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH067
Token =94 // Do NOT change this line
Offset =142
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Port 3
Map String = PCH056
Token =96 // Do NOT change this line
Offset =131
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH05C
Token =97 // Do NOT change this line
Offset =137
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH068
Token =9A // Do NOT change this line
Offset =143
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Port 4
Map String = PCH057
Token =9C // Do NOT change this line
Offset =132
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH05D
Token =9D // Do NOT change this line
Offset =138
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH069
Token =A0 // Do NOT change this line
Offset =144
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Hot Plug
Map String = PCH05E
Token =A3 // Do NOT change this line
Offset =139
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH06A
Token =A6 // Do NOT change this line
Offset =145
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = sSATA Controller
Map String = PCH075
Token =B3 // Do NOT change this line
Offset =169
Width =01
BIOS Default =[01]Enabled
Options =*[01]Enabled // Move "*" to the desired Option
[00]Disabled
Setup Question = Configure sSATA as
Map String = PCH076
Token =B4 // Do NOT change this line
Offset =16A
Width =01
BIOS Default =[01]AHCI
Options =[00]IDE // Move "*" to the desired Option
*[01]AHCI
[02]RAID
Setup Question = Port 0
Map String = PCH07B
Token =BB // Do NOT change this line
Offset =16C
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH083
Token =BC // Do NOT change this line
Offset =172
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH08D
Token =BF // Do NOT change this line
Offset =17B
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Port 1
Map String = PCH080
Token =C1 // Do NOT change this line
Offset =16D
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH084
Token =C2 // Do NOT change this line
Offset =173
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH08E
Token =C5 // Do NOT change this line
Offset =17C
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Port 2
Map String = PCH081
Token =C7 // Do NOT change this line
Offset =16E
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH085
Token =C8 // Do NOT change this line
Offset =174
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH08F
Token =CB // Do NOT change this line
Offset =17D
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Port 3
Map String = PCH082
Token =CD // Do NOT change this line
Offset =16F
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Hot Plug
Map String = PCH086
Token =CE // Do NOT change this line
Offset =175
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Spin Up Device
Map String = PCH090
Token =D0 // Do NOT change this line
Offset =17E
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Isoc Mode
Map String = CMRF006
Token =19F // Do NOT change this line
Offset =F7C
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
[02]Auto
Setup Question = Numa
Map String = CMRF008
Token =1A1 // Do NOT change this line
Offset =F7E
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = Link Frequency Select
Map String = QPI01B
Token =1A7 // Do NOT change this line
Offset =1014
Width =01
BIOS Default =[05]9.6GB/s
Options =[01]6.4GB/s // Move "*" to the desired Option
[03]8.0GB/s
*[05]9.6GB/s
[06]Auto
[07]Auto Limited
Setup Question = Home Dir Snoop with IVT- Style OSB Enable
Map String = QPI0F5
Token =1B5 // Do NOT change this line
Offset =1648
Width =01
BIOS Default =[02]Auto
Options =[00]Disable // Move "*" to the desired Option
[01]Enable
*[02]Auto
Setup Question = EV DFX Features
Map String = IIO007
Token =216 // Do NOT change this line
Offset =C1E
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = Intel VT for Directed I/O (VT-d)
Map String = IIO152
Token =29B // Do NOT change this line
Offset =2E8
Width =01
BIOS Default =[00]Disable
Options =[01]Enable // Move "*" to the desired Option
*[00]Disable
Setup Question = Enable IOAT
Map String = IIO15C
Token =2AC // Do NOT change this line
Offset =B66
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = No Snoop
Map String = IIO15D
Token =2AD // Do NOT change this line
Offset =B67
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = System Errors
Map String = EVLG010
Token =AFB // Do NOT change this line
Offset =2A1
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = S/W Error Injection Support
Map String = EVLG027
Token =AFD // Do NOT change this line
Offset =2BA
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = PCI-Ex Error Enable
Map String = EVLG01F
Token =1680 // Do NOT change this line
Offset =2CE
Width =01
BIOS Default =[00]no
Options =*[00]no // Move "*" to the desired Option
[01]yes
Setup Question = WHEA Support
Map String = EVLG011
Token =B24 // Do NOT change this line
Offset =2AB
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = Uncorrected Error disable Memory
Map String = EVLG160
Token =B2A // Do NOT change this line
Offset =2BB
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = Memory corrected Error enbaling
Map String = EVLG024
Token =B2B // Do NOT change this line
Offset =2B6
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = Enforce POR
Map String = MEM000
Token =B2E // Do NOT change this line
Offset =1133
Width =01
BIOS Default =[02]Disabled
Options =[00]Enforce POR // Move "*" to the desired Option
*[02]Disabled
Setup Question = Memory Frequency
Map String = MEM001
Token =B31 // Do NOT change this line
Offset =10E7
Width =01
BIOS Default =[00]Auto
Options =*[00]Auto // Move "*" to the desired Option
[05]1333
[07]1600
[09]1867
[0B]2133
[0D]2400
Setup Question = ECC Support
Map String = MEM007
Token =B38 // Do NOT change this line
Offset =109E
Width =01
BIOS Default =[02]Auto
Options =*[02]Auto // Move "*" to the desired Option
[00]Disable
[01]Enable
Setup Question = Rank Margin Tool
Map String = MEM014
Token =B4A // Do NOT change this line
Offset =1127
Width =01
BIOS Default =[02]Auto
Options =*[02]Auto // Move "*" to the desired Option
[00]Disabled
[01]Enabled
Setup Question = RMT Pattern Length
Map String = MEM015
Token =B4B // Do NOT change this line
Offset =10ED
Width =04
BIOS Default =7FFF
Value =7FFF
Setup Question = Enable ADR
Map String = MEM021
Token =B63 // Do NOT change this line
Offset =1125
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Hardware Triggered ADR
Setup Question = Set Throttling Mode
Map String = MEM059
Token =BA2 // Do NOT change this line
Offset =10C7
Width =01
BIOS Default =[02]CLTT
Options =[00]Disabled // Move "*" to the desired Option
*[02]CLTT
Setup Question = MEMHOT Throttling Mode
Map String = MEM060
Token =BA9 // Do NOT change this line
Offset =1124
Width =01
BIOS Default =[02]Input-only
Options =[00]Disabled // Move "*" to the desired Option
[01]Output-only
*[02]Input-only
Setup Question = Socket Interleave Below 4GB
Map String = MEM076
Token =BC0 // Do NOT change this line
Offset =109F
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = Channel Interleaving
Map String = MEM077
Token =BC1 // Do NOT change this line
Offset =10A0
Width =01
BIOS Default =[00]Auto
Options =*[00]Auto // Move "*" to the desired Option
[01]1-way Interleave
[02]2-way Interleave
[03]3-way Interleave
[04]4-way Interleave
Setup Question = Rank Interleaving
Map String = MEM079
Token =BC2 // Do NOT change this line
Offset =10A1
Width =01
BIOS Default =[00]Auto
Options =*[00]Auto // Move "*" to the desired Option
[01]1-way Interleave
[02]2-way Interleave
[04]4-way Interleave
[08]8-way Interleave
Setup Question = RAS Mode
Map String = MEM07C
Token =BC5 // Do NOT change this line
Offset =11CE
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Mirror
[02]Lockstep Mode
Setup Question = Lockstep x4 DIMMs
Map String = MEM07E
Token =BC6 // Do NOT change this line
Offset =112F
Width =01
BIOS Default =[02]Auto
Options =*[02]Auto // Move "*" to the desired Option
[00]Disabled
[01]Enabled
Setup Question = Memory Rank Sparing
Map String = MEM07F
Token =BC7 // Do NOT change this line
Offset =1129
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Correctable Error Threshold
Map String = MEM081
Token =BC9 // Do NOT change this line
Offset =1067
Width =02
BIOS Default =1
Value =1
Setup Question = Execute Disable Bit
Map String = PRC0F2
Token =BE7 // Do NOT change this line
Offset =61
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = Enable Intel TXT Support
Map String = PRC0EB
Token =BE8 // Do NOT change this line
Offset =71
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = VMX
Map String = PRC0EC
Token =BE9 // Do NOT change this line
Offset =72
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = Enable SMX
Map String = PRC0ED
Token =BEA // Do NOT change this line
Offset =73
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = Hardware Prefetcher
Map String = PRC0F7
Token =BEF // Do NOT change this line
Offset =81
Width =01
BIOS Default =[01]Enable
Options =*[01]Enable // Move "*" to the desired Option
[00]Disable
Setup Question = Adjacent Cache Prefetch
Map String = PRC0F8
Token =BF0 // Do NOT change this line
Offset =82
Width =01
BIOS Default =[01]Enable
Options =*[01]Enable // Move "*" to the desired Option
[00]Disable
Setup Question = DCU Streamer Prefetcher
Map String = PRC0F9
Token =BF1 // Do NOT change this line
Offset =83
Width =01
BIOS Default =[01]Enable
Options =*[01]Enable // Move "*" to the desired Option
[00]Disable
Setup Question = DCU IP Prefetcher
Map String = PRC0FA
Token =BF2 // Do NOT change this line
Offset =84
Width =01
BIOS Default =[01]Enable
Options =*[01]Enable // Move "*" to the desired Option
[00]Disable
Setup Question = DCU Mode
Map String = PRC101
Token =BF3 // Do NOT change this line
Offset =85
Width =01
BIOS Default =[00]32KB 8Way Without ECC
Options =*[00]32KB 8Way Without ECC // Move "*" to the desired Option
[01]16KB 4Way With ECC
Setup Question = Direct Cache Access (DCA)
Map String = PRC0E8
Token =BF7 // Do NOT change this line
Offset =7F
Width =01
BIOS Default =[02]Auto
Options =[00]Disable // Move "*" to the desired Option
[01]Enable
*[02]Auto
Setup Question = DCA Prefetch Delay
Map String = PRC0E9
Token =BF8 // Do NOT change this line
Offset =80
Width =01
BIOS Default =[04]32
Options =[00]Disable // Move "*" to the desired Option
[01]8
[02]16
[03]24
*[04]32
[05]40
[06]48
[07]56
[08]64
[09]72
[0A]80
[0B]88
[0C]96
[0D]104
[0E]112
Setup Question = X2APIC
Map String = PRC0F4
Token =BFA // Do NOT change this line
Offset =86
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = AES-NI
Map String = PRC0F5
Token =BFC // Do NOT change this line
Offset =B0
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = Cores Enabled
Map String = PRC11B
Token =2850 // Do NOT change this line
Offset =9E
Width =01
BIOS Default =0
Value =0
Setup Question = Cores Enabled
Map String = PRC11B
Token =2851 // Do NOT change this line
Offset =9F
Width =01
BIOS Default =0
Value =0
Setup Question = MCTP Bus Owner
Map String = ME001
Token =C11 // Do NOT change this line
Offset =116A
Width =02
BIOS Default =0
Value =0
Setup Question = Power Technology
Map String = PRC0003
Token =2800 // Do NOT change this line
Offset =11F4
Width =01
BIOS Default =[02]Custom
Options =[00]Disable // Move "*" to the desired Option
[01]Energy Efficient
*[02]Custom
Setup Question = EIST (P-states)
Map String = PRC000E
Token =C63 // Do NOT change this line
Offset =62
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = CPU C State
Map String = PRC02E
Token =C87 // Do NOT change this line
Offset =68
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = Package C State limit
Map String = PRC02F
Token =C88 // Do NOT change this line
Offset =6B
Width =01
BIOS Default =[00]C0/C1 state
Options =*[00]C0/C1 state // Move "*" to the desired Option
[01]C2 state
[02]C6(non Retention) state
[03]C6(Retention) state
Setup Question = CPU C3 report
Map String = PRC030
Token =C89 // Do NOT change this line
Offset =6C
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = CPU C6 report
Map String = PRC031
Token =C8A // Do NOT change this line
Offset =6D
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = Enhanced Halt State (C1E)
Map String = PRC032
Token =C8B // Do NOT change this line
Offset =6F
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = ACPI T-States
Map String = PRC0C8
Token =C8D // Do NOT change this line
Offset =AA
Width =01
BIOS Default =[01]Enable
Options =[00]Disable // Move "*" to the desired Option
*[01]Enable
Setup Question = Turbo Mode
Map String = PRC00F
Token =D23 // Do NOT change this line
Offset =B3
Width =01
BIOS Default =[00]Disable
Options =*[00]Disable // Move "*" to the desired Option
[01]Enable
Setup Question = FRB-2 Timer
Map String = IPMI100
Token =03 // Do NOT change this line
Offset =08
Width =01
BIOS Default =[00]Disabled
Options =[01]Enabled // Move "*" to the desired Option
*[00]Disabled
Setup Question = FRB-2 Timer timeout
Map String = IPMI101
Token =04 // Do NOT change this line
Offset =09
Width =02
BIOS Default =[168]6 minutes
Options =[B4]3 minutes // Move "*" to the desired Option
[F0]4 minutes
[12C]5 minutes
*[168]6 minutes
Setup Question = FRB-2 Timer Policy
Map String = IPMI102
Token =05 // Do NOT change this line
Offset =0B
Width =01
BIOS Default =[00]Do Nothing
Options =*[00]Do Nothing // Move "*" to the desired Option
[01]Reset
[02]Power Down
[03]Power Cycle
Setup Question = OS Watchdog Timer
Map String = IPMI103
Token =06 // Do NOT change this line
Offset =0C
Width =01
BIOS Default =[00]Disabled
Options =[01]Enabled // Move "*" to the desired Option
*[00]Disabled
Setup Question = OS Wtd Timer Timeout
Map String = IPMI104
Token =07 // Do NOT change this line
Offset =0D
Width =02
BIOS Default =[258]10 minutes
Options =[12C]5 minutes // Move "*" to the desired Option
*[258]10 minutes
[384]15 minutes
[4B0]20 minutes
Setup Question = OS Wtd Timer Policy
Map String = IPMI105
Token =08 // Do NOT change this line
Offset =0F
Width =01
BIOS Default =[01]Reset
Options =[00]Do Nothing // Move "*" to the desired Option
*[01]Reset
[02]Power Down
[03]Power Cycle
Setup Question = SEL Components
Map String = IPMI000
Token =0A // Do NOT change this line
Offset =02
Width =01
BIOS Default =[01]Enabled
Options =[00]Disabled // Move "*" to the desired Option
*[01]Enabled
Setup Question = Erase SEL
Map String = IPMI001
Token =0B // Do NOT change this line
Offset =03
Width =01
BIOS Default =[00]No
Options =*[00]No // Move "*" to the desired Option
[01]Yes, On next reset
[02]Yes, On every reset
Setup Question = When SEL is Full
Map String = IPMI002
Token =0C // Do NOT change this line
Offset =04
Width =01
BIOS Default =[00]Do Nothing
Options =*[00]Do Nothing // Move "*" to the desired Option
[01]Erase Immediately
Setup Question = Log EFI Status Codes
Map String = IPMI003
Token =0D // Do NOT change this line
Offset =05
Width =01
BIOS Default =[02]Error code
Options =[00]Disabled // Move "*" to the desired Option
[01]Both
*[02]Error code
[03]Progress code
Setup Question = Configuration Address source
Map String = IPMI500
Token =0F // Do NOT change this line
Offset =12
Width =01
BIOS Default =[02]DynamicBmcDhcp
Options =[00]Unspecified // Move "*" to the desired Option
[01]Static
*[02]DynamicBmcDhcp
Setup Question = Legacy Serial Redirection Port
Map String = TER010
Token =43 // Do NOT change this line
Offset =3E
Width =01
BIOS Default =[00]COM1
Options =*[00]COM1 // Move "*" to the desired Option
[01]COM2/Serial Over LAN
Setup Question = PCI Latency Timer
Map String = PCIS001
Token =6A // Do NOT change this line
Offset =41
Width =01
BIOS Default =[20]32 PCI Bus Clocks
Options =*[20]32 PCI Bus Clocks // Move "*" to the desired Option
[40]64 PCI Bus Clocks
[60]96 PCI Bus Clocks
[80]128 PCI Bus Clocks
[A0]160 PCI Bus Clocks
[C0]192 PCI Bus Clocks
[E0]224 PCI Bus Clocks
[F8]248 PCI Bus Clocks
Setup Question = VGA Palette Snoop
Map String = PCIS003
Token =6C // Do NOT change this line
Offset =42
Width =01
BIOS Default =[00]Disabled
Options =*[00]Disabled // Move "*" to the desired Option
[01]Enabled
Setup Question = Above 4G Decoding
Map String = PCIS006
Token =6F // Do NOT change this line