-
Notifications
You must be signed in to change notification settings - Fork 4
/
BE0089 Intel UQI List.txt
1901 lines (1515 loc) · 72 KB
/
BE0089 Intel UQI List.txt
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
I N T E L ® I N T E G R A T O R T O O L K I T
System Information Report
Mon Jun 21 03:15:00 PM
*******************************************************************************
My System
*******************************************************************************
BIOS File Location D:\Intel\SPG\BeanCanyon\BECFL357.86A.0089\BIO\BE0089.bio
BIOS ID BECFL357.86A.0089.2021.0621.1343
BIOS Date 21/06/2021
*******************************************************************************
BIOS Settings
*******************************************************************************
[07cc] - CHECK BOX
Clear Event Log
-------------------------------------------------------------------------------
Enable to clear the Event Log at next boot.
0 : Disable (default)
1 : Enable
[07cd] - CHECK BOX
Event Logging
-------------------------------------------------------------------------------
Enables or Disables Event Logging. If Enabled, BIOS will log POST Errors in NVRAM.
0 : Disable
1 : Enable (default)
[07a3] - CHECK BOX
USB Legacy
-------------------------------------------------------------------------------
USB Legacy allows USB support under non-USB-aware OSes.
Disabling USB Legacy will not disable USB keyboards during BIOS POST, including BIOS SETUP and Option ROMs.
0 : Disable
1 : Enable (default)
[078f] - ONE_OF
Portable Device Charging Mode
-------------------------------------------------------------------------------
USB ports that are colored yellow support a Portable Device Charging Mode with higher maximum current.
Off: USB Port will not provide extra power during system sleep states.
Charging in S3/S4/S5: USB Port will provide extra power during system sleep states.
Charging Only: USB Port will always provide extra power but cannot be used to transfer data with USB 2.0 device.
0 : OFF
1 : Charging in S3/S4/S5 (default)
2 : Charging Only
[05b1] - ONE_OF
USB2 Header Connector 1:
-------------------------------------------------------------------------------
USB Ports 5 & 6 are located internally on a USB header.
Enable: All devices on this port will be available to BIOS and OS.
Disable: Only keyboards will be available to BIOS, and all devices on this port will be unavailable to OS.
No Detect: No devices on this port will be detected by BIOS, but all will be available to OS. Use this option to speed up BIOS boot.
1 : Enable (default)
0 : Disable
2 : No Detect
[05b0] - ONE_OF
USB2 Header Connector 2:
-------------------------------------------------------------------------------
USB Ports 5 & 6 are located internally on a USB header.
Enable: All devices on this port will be available to BIOS and OS.
Disable: Only keyboards will be available to BIOS, and all devices on this port will be unavailable to OS.
No Detect: No devices on this port will be detected by BIOS, but all will be available to OS. Use this option to speed up BIOS boot.
1 : Enable (default)
0 : Disable
2 : No Detect
[05ae] - ONE_OF
USB3 Front Port:
-------------------------------------------------------------------------------
USB Ports 3 & 4 are located on the front panel.
Enable: All devices on this port will be available to BIOS and OS.
Disable: Only keyboards will be available to BIOS, and all devices on this port will be unavailable to OS.
No Detect: No devices on this port will be detected by BIOS, but all will be available to OS. Use this option to speed up BIOS boot.
1 : Enable (default)
0 : Disable
2 : No Detect
[05af] - ONE_OF
USB3 Front Charging Port:
-------------------------------------------------------------------------------
USB Ports 3 & 4 are located on the front panel.
Enable: All devices on this port will be available to BIOS and OS.
Disable: Only keyboards will be available to BIOS, and all devices on this port will be unavailable to OS.
No Detect: No devices on this port will be detected by BIOS, but all will be available to OS. Use this option to speed up BIOS boot.
1 : Enable (default)
0 : Disable
2 : No Detect
[05ad] - ONE_OF
USB3 Rear Upper Port:
-------------------------------------------------------------------------------
USB Ports 1 & 2 are located on the back panel.
Enable: All devices on this port will be available to BIOS and OS.
Disable: Only keyboards will be available to BIOS, and all devices on this port will be unavailable to OS.
No Detect: No devices on this port will be detected by BIOS, but all will be available to OS. Use this option to speed up BIOS boot.
1 : Enable (default)
0 : Disable
2 : No Detect
[05ac] - ONE_OF
USB3 Rear Lower Port:
-------------------------------------------------------------------------------
USB Ports 1 & 2 are located on the back panel.
Enable: All devices on this port will be available to BIOS and OS.
Disable: Only keyboards will be available to BIOS, and all devices on this port will be unavailable to OS.
No Detect: No devices on this port will be detected by BIOS, but all will be available to OS. Use this option to speed up BIOS boot.
1 : Enable (default)
0 : Disable
2 : No Detect
[07b8] - CHECK BOX
Chipset SATA
-------------------------------------------------------------------------------
The Chipset SATA controller supports the internal black SATA port and M.2 SATA port.
0 : Disable
1 : Enable (default)
[0063] - ONE_OF
Chipset SATA Mode
-------------------------------------------------------------------------------
Configures the Chipset SATA controller mode.
Warning: OS may not boot if this setting is changed after OS install.
AHCI: Supports advanced SATA features such as Native Command Queuing.
RAID: Allows multiple drives to be merged into larger volumes for increased performance and/or reliability. Always enables AHCI.
Intel RST Premium With Intel Optane System Acceleration: Fast Boot will be Grayed-out and disabled under Optane mode.
Warning: OS may not boot if this setting is changed after OS install.
1 : RAID
2 : AHCI (default)
3 : Intel® RST Premium With Intel® Optane System Acceleration
[0063] - ONE_OF
Chipset SATA Mode
-------------------------------------------------------------------------------
Configures the Chipset SATA controller mode.
Warning: OS may not boot if this setting is changed after OS install.
AHCI: Supports advanced SATA features such as Native Command Queuing.
RAID: Allows multiple drives to be merged into larger volumes for increased performance and/or reliability. Always enables AHCI.
Intel RST Premium With Intel Optane System Acceleration: Fast Boot will be Grayed-out and disabled under Optane mode.
Warning: OS may not boot if this setting is changed after OS install.
1 : RAID
2 : AHCI (default)
[0961] - CHECK BOX
RST PCIe Storage Remapping
-------------------------------------------------------------------------------
Configures the PCIe storage remapping.
Warning: OS may not boot if this setting is changed after OS install.
0 : Disabled (default)
1 : Enabled
[0961] - CHECK BOX
RST PCIe Storage Remapping
-------------------------------------------------------------------------------
Configures the PCIe storage remapping.
Warning: OS may not boot if this setting is changed after OS install.
0 : Disabled (default)
1 : Enabled
[07ba] - CHECK BOX
S.M.A.R.T.
-------------------------------------------------------------------------------
Enables or Disables S.M.A.R.T - Self-Monitoring, Analysis, and Reporting Technology. If supported on any attached drives, BIOS will monitor drive health.
0 : Disable
1 : Enable (default)
[0948] - CHECK BOX
SATA Port
-------------------------------------------------------------------------------
Enables or Disables SATA Port
0 : Disable
1 : Enable (default)
[0086] - NUMERIC
Hard Disk Pre-Delay
-------------------------------------------------------------------------------
Delay (in seconds) before hard drives are initialized. This can be used to increase the amount of time that the BIOS Splash Screen displays.
Default Value is 0.
Minimum Value : 0
Maximum Value : 30
[095c] - CHECK BOX
HDD Activity LED
-------------------------------------------------------------------------------
Determines HDD Activity LED behavior during S0 system power state.
0 : Disable
1 : Enable (default)
[0945] - CHECK BOX
M.2 PCIe SSD LED
-------------------------------------------------------------------------------
Allows SSD activity from PCIe-based M.2 storage card to be indicated by the chassis HDD activity LED. PCIe-based M.2 storage card must provide SSD activity LED signal in order to support this feature, as no activity would be detected otherwise.
0 : Disable
1 : Enable (default)
[0836] - ONE_OF
IGD Minimum Memory
-------------------------------------------------------------------------------
Selects the minimum amount of system memory allocated to the Integrated Graphics Device (IGD).
The maximum amount of memory allocated is determined by the operating system and video driver.
1 : 32 MB
2 : 64 MB (default)
[0083] - ONE_OF
IGD Aperture Size
-------------------------------------------------------------------------------
Selects the aperture size for the Integrated Graphics Device (IGD).
0 : 128 MB
1 : 256 MB (default)
3 : 512 MB
7 : 1024 MB
[0083] - ONE_OF
IGD Aperture Size
-------------------------------------------------------------------------------
Selects the aperture size for the Integrated Graphics Device (IGD).
0 : 128 MB
1 : 256 MB (default)
3 : 512 MB
7 : 1024 MB
[05fe] - ONE_OF
IGD Primary Video Port
-------------------------------------------------------------------------------
Selects preference for Integrated Graphics Device (IGD) display interface used for environments without a graphics driver, such as POST.
Auto will attempt to detect connected monitors, and will display video on a maximum of two ports.
0 : Auto (default)
5 : HDMI
8 : Thunderbolt
[05ff] - ONE_OF
IGD Secondary Video Port
-------------------------------------------------------------------------------
Selects preference for mirrored Integrated Graphics Device (IGD) display interface used for environments without a graphics driver, such as POST.
0 : None (default)
8 : Thunderbolt
[05ff] - ONE_OF
IGD Secondary Video Port
-------------------------------------------------------------------------------
Selects preference for mirrored Integrated Graphics Device (IGD) display interface used for environments without a graphics driver, such as POST.
0 : None (default)
5 : HDMI
8 : Thunderbolt
[05ff] - ONE_OF
IGD Secondary Video Port
-------------------------------------------------------------------------------
Selects preference for mirrored Integrated Graphics Device (IGD) display interface used for environments without a graphics driver, such as POST.
0 : None (default)
5 : HDMI
[05fe] - ONE_OF
IGD Primary Video Port
-------------------------------------------------------------------------------
Selects preference for Integrated Graphics Device (IGD) display interface used for environments without a graphics driver, such as POST.
Auto will attempt to detect connected monitors, and will display video on a maximum of two ports.
0 : Auto (default)
5 : HDMI
[05ff] - ONE_OF
IGD Secondary Video Port
-------------------------------------------------------------------------------
Selects preference for mirrored Integrated Graphics Device (IGD) display interface used for environments without a graphics driver, such as POST.
0 : None (default)
5 : HDMI
[07ad] - CHECK BOX
Audio
-------------------------------------------------------------------------------
Enables or Disables Onboard Audio.
0 : Disable
1 : Enable (default)
[07ae] - CHECK BOX
HDMI/DisplayPort Audio
-------------------------------------------------------------------------------
If enabled, HDMI/DisplayPort output includes both audio and video. If disabled, HDMI/DisplayPort output is video only.
0 : Disable
1 : Enable (default)
[090c] - CHECK BOX
Digital Microphone
-------------------------------------------------------------------------------
Enables or Disables Digital Microphone support that is part of the Custom Solutions Header
0 : Disable
1 : Enable (default)
[07af] - CHECK BOX
LAN
-------------------------------------------------------------------------------
Enables or Disables the Onboard LAN Controller.
0 : Disable
1 : Enable (default)
[07b2] - CHECK BOX
Thunderbolt Controller
-------------------------------------------------------------------------------
Enables or Disables the Onboard Thunderbolt Controller.
0 : Disable
1 : Enable (default)
[0934] - CHECK BOX
WLAN
-------------------------------------------------------------------------------
Enables or Disables the Onboard WLAN Controller.
0 : Disable
1 : Enable (default)
[0935] - CHECK BOX
Bluetooth
-------------------------------------------------------------------------------
Enables or Disables the Onboard Bluetooth Controller.
0 : Disable
1 : Enable (default)
[0947] - ONE_OF
SD Card
-------------------------------------------------------------------------------
Allows users to read/write to or disable the SD card reader
0 : Disable
2 : Read/Write (default)
[07ac] - CHECK BOX
Enhanced Consumer IR
-------------------------------------------------------------------------------
Enables or Disables Enhanced Consumer Infrared (CIR)
0 : Disable (default)
1 : Enable
[0994] - ONE_OF
Auto Turn Off TV
-------------------------------------------------------------------------------
Auto Turn Off TV
0 : Disable (default)
1 : When S0 to S3/S4/S5
2 : When S0 to S3
3 : When S0 to S4/S5
[0995] - ONE_OF
Wake On TV
-------------------------------------------------------------------------------
Wake On TV
0 : Disable (default)
1 : From S3/S4/S5
2 : From S3
3 : From S4/S5
[0996] - ONE_OF
Standby by TV
-------------------------------------------------------------------------------
Standby by TV
0 : Disable (default)
1 : Power Button Toggle
2 : Sleep Button Toggle
[0828] - CHECK BOX
High Precision Event Timers
-------------------------------------------------------------------------------
High Precision Event Timers are integrated into chipset hardware and are available for use by operating systems. They can be disabled if incompatible with an OS or application.
0 : Disable
1 : Enable (default)
[07b5] - CHECK BOX
Num Lock
-------------------------------------------------------------------------------
If Num Lock is enabled, the keypad defaults to numeric functionality.
0 : Disable
1 : Enable (default)
[0964] - CHECK BOX
M.2 Slot
-------------------------------------------------------------------------------
If enabled, the SATA port, PCIe and USB interface to the M.2 slot are enabled.
0 : Disable
1 : Enable (default)
[0910] - ONE_OF
Fan Control Mode
-------------------------------------------------------------------------------
Select how the system fan is to be controlled.Quiet, Balanced and Cool are used to select a preconfigured automatic fan control profile. Custom selects the user-customizable automatic fan control profile. Fixed selects a static duty cycle for the fan.
0 : Fixed
1 : Custom
2 : Cool
3 : Balanced (default)
4 : Quiet
5 : Fanless
[0911] - ONE_OF
Primary Temperature Sensor
-------------------------------------------------------------------------------
Select the Primary Temperature Input for automatic fan control
0 : Processor (default)
1 : PCH
[098d] - CHECK BOX
Fan off capability
-------------------------------------------------------------------------------
Fan off capability
0 : Disable
1 : Enable (default)
[098e] - NUMERIC
Fan Off Temperature (°C)
-------------------------------------------------------------------------------
Fan Off Temperature
Default Value is 40.
Minimum Value : 1
Maximum Value : 48
[0912] - NUMERIC
Minimum Temperature (°C)
-------------------------------------------------------------------------------
Defines temperature that the fan control subsystem attempts to maintain for this device. Default Value is 65.
Minimum Value : 1
Maximum Value : 127
[0913] - NUMERIC
Minimum Duty Cycle (%)
-------------------------------------------------------------------------------
Selects the minimum duty cycle that the fan will never go below. Default Value is 35.
Minimum Value : 1
Maximum Value : 100
[0914] - NUMERIC
Duty Cycle Increment (%/°C)
-------------------------------------------------------------------------------
Fan control will increase fan duty cycle by this % for each degree Primary Temperature Sensor is over Minimum Temperature.
Default Value is 2.
Minimum Value : 1
Maximum Value : 30
[0919] - NUMERIC
Fixed Duty Cycle (%)
-------------------------------------------------------------------------------
Selects the duty cycle that the fan will operate at.
Default Value is 70.
Minimum Value : 30
Maximum Value : 100
[0915] - ONE_OF
Secondary Temperature Sensor
-------------------------------------------------------------------------------
Select the Primary Temperature Input for automatic fan control
2 : Memory (default)
3 : Motherboard
[0990] - NUMERIC
Fan Off Temperature (°C)
-------------------------------------------------------------------------------
Fan Off Temperature
Default Value is 32.
Minimum Value : 1
Maximum Value : 55
[0916] - NUMERIC
Minimum Temperature (°C)
-------------------------------------------------------------------------------
Defines temperature that the fan control subsystem attempts to maintain for this device.
Default Value is 55.
Minimum Value : 0
Maximum Value : 127
[0917] - NUMERIC
Minimum Duty Cycle (%)
-------------------------------------------------------------------------------
Selects the minimum duty cycle that the fan will never go below.
Default Value is 35.
Minimum Value : 1
Maximum Value : 100
[0918] - NUMERIC
Duty Cycle Increment (%/°C)
-------------------------------------------------------------------------------
Fan control will increase fan duty cycle by this % for each degree Primary Temperature Sensor is over Minimum Temperature.
Default Value is 2.
Minimum Value : 1
Maximum Value : 7
[0080] - ONE_OF
User Access Level
-------------------------------------------------------------------------------
User Access Level determines the level of BIOS Setup access granted when the User Password is entered.
0 : No Access
1 : View Only (default)
2 : Limited
3 : Full Access
[07d8] - CHECK BOX
Hard Disk Drive Password Prompt
-------------------------------------------------------------------------------
If disabled, BIOS will never prompt for an HDD password unless attempting to boot to a drive with a User HDD Password installed.
If set to Enable, BIOS will always prompt for an HDD password if a User HDD Password is installed.
If set to Disable, BIOS will never prompt for an HDD password unless attempting to boot to a drive with a User HDD Password installed.
0 : Disable
1 : Enable (default)
[0804] - ONE_OF
Unattended BIOS Configuration
-------------------------------------------------------------------------------
Configuring the BIOS via Intel® Integrator Toolkit normally requires physical presence via a keyboard response prompt.
Enabling Secure Boot will set Unattended BIOS Configuration to Always Prompt.
Configuring the BIOS via Intel® Integrator Toolkit normally requires physical presence via a keyboard response prompt.
This prompt can disabled temporarily or permanently, or unattended BIOS configuration can be locked out entirely.
If set to Lock, BIOS Setup is still accessible.
Enabling Secure Boot will set Unattended BIOS Configuration to Always Prompt.
Once Secure Boot is enabled, Unattended BIOS Configuration can only be set to Always Prompt or Lock.
0 : Always Prompt (default)
1 : Lock
2 : Temporarily Skip Prompt
3 : Never Prompt
[0804] - ONE_OF
Unattended BIOS Configuration
-------------------------------------------------------------------------------
Configuring the BIOS via Intel® Integrator Toolkit normally requires physical presence via a keyboard response prompt.
Enabling Secure Boot will set Unattended BIOS Configuration to Always Prompt.
Configuring the BIOS via Intel® Integrator Toolkit normally requires physical presence via a keyboard response prompt.
This prompt can disabled temporarily or permanently, or unattended BIOS configuration can be locked out entirely.
If set to Lock, BIOS Setup is still accessible.
Enabling Secure Boot will set Unattended BIOS Configuration to Always Prompt.
Once Secure Boot is enabled, Unattended BIOS Configuration can only be set to Always Prompt or Lock.
0 : Always Prompt (default)
1 : Lock
2 : Temporarily Skip Prompt
[07dc] - CHECK BOX
Intel® Trusted Execution Technology
-------------------------------------------------------------------------------
Intel® TXT provides hardware-based mechanisms that may help protect against software-based attacks and protect the confidentiality and integrity of data.
If Intel® TXT is enabled, then Intel® VT, Intel® VT-d, Intel® HT Technology, all processor cores, and the onboard TPM will also be enabled. Once Intel® TXT is enabled, it must be disabled before disabling any of these required features.
0 : Disable (default)
1 : Enable
[07db] - CHECK BOX
Intel® Virtualization Technology
-------------------------------------------------------------------------------
Enables or Disables features that provide hardware support for virtualization. Requires power cycling and specific hardware/software installed to take effect.
0 : Disable
1 : Enable (default)
[07dd] - CHECK BOX
Intel® VT for Directed I/O (VT-d)
-------------------------------------------------------------------------------
Enables or Disables Intel® VT for Directed I/O (VT-d) which provides additional hardware support for managing I/O virtualization. If Enabled, BIOS will publish a DMA Remapping ACPI table.
0 : Disable
1 : Enable (default)
[00f2] - ONE_OF
Fixed Disk Boot Sector
-------------------------------------------------------------------------------
Write Protect provides some Master Boot Record protection.
Set to Normal while installing an operating system.
Only applicable to Legacy BIOS interfaces.
0 : Normal (default)
1 : Write Protect
[090d] - CHECK BOX
Intel® Platform Trust Technology
-------------------------------------------------------------------------------
Enables or Disables Intel® Platform Trust Technology
0 : Disable
1 : Enable (default)
[095d] - ONE_OF
Intel® Software Guard Extension (SGX)
-------------------------------------------------------------------------------
Enables or Disables Intel® Software Guard Extensions (SGX).
Software Controlled: SGX is disabled initially. When SGX application and ME FW driver are installed, SGX will be enabled via a UEFI OS-BIOS runtime interface.
0 : Disabled
1 : Enabled
2 : Software Controlled (default)
[095e] - ONE_OF
SGX Owner EPOCHs
-------------------------------------------------------------------------------
Keep or change the SGX Owner EPOCHs value. SGX sealing key is derived from Owner EPOCHs. Warning: after change the Owner EPOCH value, previously Intel SGX sealed data cannot be accessed.
Factory Default to use default Owner EPOCH value.
New Random Owner EPOCHs to generate and use a new random Owner EPOCHs.
User Defined Owner EPOCHs will extract customer defined EPOCHs value from EPOCH variable.
0 : Factory Default (default)
1 : New Random Owner EPOCHs
2 : User Defined Owner EPOCHs
[095f] - CHECK BOX
Reset SGX Owner EPOCHs to Factory Default
-------------------------------------------------------------------------------
Reset Intel® SGX Owner EPOCHs to factory default value. Warning: after change the Owner EPOCH value, previously Intel SGX sealed data cannot be accessed.
0 : No (default)
1 : Yes
[0960] - ONE_OF
SGX Reserved Memory Size
-------------------------------------------------------------------------------
Configure the SGX Reserved Memory Size.
0 : AUTO (default)
33554432 : 32MB
67108864 : 64MB
134217728 : 128MB
[0960] - ONE_OF
SGX Reserved Memory Size
-------------------------------------------------------------------------------
Configure the SGX Reserved Memory Size.
0 : AUTO (default)
33554432 : 32MB
67108864 : 64MB
[0960] - ONE_OF
SGX Reserved Memory Size
-------------------------------------------------------------------------------
Configure the SGX Reserved Memory Size.
0 : AUTO (default)
33554432 : 32MB
[0969] - ONE_OF
Thunderbolt Security Level
-------------------------------------------------------------------------------
Configure the Thunderbolt security level.
Legacy Mode - allow legacy Thunderbolt devices to auto connect.
Unique ID - With this mode the connection manager requests connection approval from the host SW, auto approval may be given based on the Unique ID of the connecting device.
One time saved key - With this mode the connection manager requests connection approval from the host SW, auto approval is only given if the host challenge to the device is acceptable.
DP++ only - allow only DP sinks to be connected.
0 : Legacy Mode
1 : Unique ID (default)
2 : One time saved Key
3 : DP++ only
[093b] - CHECK BOX
Balanced Enabled
-------------------------------------------------------------------------------
(null)
0 : Disable (default)
1 : Enable
[093c] - CHECK BOX
Low Power Enabled
-------------------------------------------------------------------------------
(null)
0 : Disable (default)
1 : Enable
[093d] - CHECK BOX
Max Performance Enabled
-------------------------------------------------------------------------------
(null)
0 : Disable
1 : Enable (default)
[0785] - ONE_OF
Intel® Dynamic Power Technology
-------------------------------------------------------------------------------
Configures processor power management features.
Setting this to Off will disable Enhanced Intel SpeedStep® Technology and Intel® Turbo Boost Technology.
0 : Energy Efficient Performance (default)
1 : OFF
2 : Custom
[07de] - CHECK BOX
Enhanced Intel SpeedStep® Technology
-------------------------------------------------------------------------------
Enhanced Intel SpeedStep® Technology allows the system to dynamically adjust processor voltage and core frequency, which can result in decreased average power consumption, decreased average heat production, and a quieter system.
Disabling Enhanced Intel SpeedStep® Technology will disable Intel® Turbo Boost Technology and Processor Idle State.
0 : Disable
1 : Enable (default)
[07df] - CHECK BOX
OS ACPI C2 Report
-------------------------------------------------------------------------------
Enables or Disables OS ACPI C2 Report. If enabled, BIOS will report ACPI C2 State (mapped to processor C7 or deeper C state).
0 : Disable
1 : Enable (default)
[078a] - ONE_OF
Processor Power Efficiency Policy
-------------------------------------------------------------------------------
Configures processor bias for power efficiency vs. performance.
0 : High Performance (default)
5 : Balanced
12 : Low Power
[0669] - NUMERIC
Package Power Limit 1 (Sustained)
-------------------------------------------------------------------------------
Intel® Turbo Boost Technology will control processor power usage to the Sustained Mode Power Limit over a moving average time window: Sustained Mode Time (specified in seconds).
Default Value is 0.
Minimum Value : 0
Maximum Value : 85
[0667] - NUMERIC
Package Power Limit 2 (Burst Mode)
-------------------------------------------------------------------------------
Intel® Turbo Boost Technology will use this power limit for a very short duration. After that, the Sustained Mode Power Limit will be used. The recommended value is 1.3 x the Sustained Mode Power Limit.
Default Value is 0.
Minimum Value : 0
Maximum Value : 85
[0668] - ONE_OF
Package Power Time Window (Tau)
-------------------------------------------------------------------------------
Intel® Turbo Boost Technology will control processor power usage to the Sustained Mode Power Limit over a moving average time window: Sustained Mode Time (specified in seconds).
113 : 224
81 : 192
49 : 160
17 : 128
112 : 112
80 : 96
48 : 80
16 : 64 (default)
111 : 56
79 : 48
47 : 40
15 : 32
110 : 28
78 : 24
46 : 20
14 : 16
109 : 14
77 : 12
45 : 10
13 : 8
108 : 7
76 : 6
44 : 5
12 : 4
75 : 3
11 : 2
10 : 1
[0071] - ONE_OF
After Power Failure
-------------------------------------------------------------------------------
Configures system behavior after AC power is lost.
If set to Stay Off, the System will stay in a power-off state after AC power is restored.
If set to Last State, the System will return to the last power state before AC power was lost.
If set to Power On, the System will automatically power-on after AC power is restored.
1 : Stay Off (default)
2 : Last State
0 : Power On
[07e2] - CHECK BOX
Deep S4/S5
-------------------------------------------------------------------------------
If Enabled, system will use less power while in S4/S5 sleep states, but will wake only via LAN, power button, or RTC alarm.
0 : Disable (default)
1 : Enable
[0975] - ONE_OF
Button LED
-------------------------------------------------------------------------------
Configures Button LED functionality.
0 : Power State Indicator (default)
1 : HDD Activity LED
[0976] - NUMERIC
S0 Indicator Brightness
-------------------------------------------------------------------------------
Determines Button LED brightness during S0 system power state
Default Value is 50.
Minimum Value : 0
Maximum Value : 100
[0977] - ONE_OF
S0 Indicator Blinking Frequency
-------------------------------------------------------------------------------
Determines Button LED blinking frequency during S0 system power state.
0 : 1Hz
1 : 0.9Hz
2 : 0.8Hz
3 : 0.7Hz
4 : 0.6Hz (default)
5 : 0.5Hz
6 : 0.4Hz
7 : 0.3Hz
8 : 0.2Hz
9 : 0.1Hz
[0978] - ONE_OF
S0 Indicator Color
-------------------------------------------------------------------------------
Determines Button LED color during S0 system power state
1 : Blue (default)
2 : Amber
[0979] - NUMERIC
S3 Indicator Brightness
-------------------------------------------------------------------------------
Determines Button LED brightness during S3 system power state
Default Value is 50.
Minimum Value : 0
Maximum Value : 100
[09ad] - ONE_OF
S3 Indicator Blinking Behavior
-------------------------------------------------------------------------------
Determines Button LED blinking behavior during S3 system power state.
1 : Solid
2 : Breathing (default)
3 : Pulsing
4 : Strobing
[097a] - ONE_OF
S3 Indicator Blinking Frequency
-------------------------------------------------------------------------------
Determines Button LED blinking frequency during S0 system power state.
0 : 1Hz (default)
1 : 0.9Hz
2 : 0.8Hz
3 : 0.7Hz
4 : 0.6Hz
5 : 0.5Hz
6 : 0.4Hz
7 : 0.3Hz
8 : 0.2Hz
9 : 0.1Hz
[097b] - ONE_OF
S3 Indicator Color
-------------------------------------------------------------------------------
Determines Button LED color during S3 system power state.
1 : Blue (default)
2 : Amber
[09c2] - NUMERIC
Modern Standby Indicator Brightness (%)
-------------------------------------------------------------------------------
Determines Button LED brightness during modern standby system power state.
Default Value is 50.
Minimum Value : 0
Maximum Value : 100
[09c3] - ONE_OF
Modern Standby Indicator Blinking Behavior
-------------------------------------------------------------------------------
Determines Button LED blinking behavior during modern standby system power state.
1 : Solid
2 : Breathing (default)
3 : Pulsing
4 : Strobing
[09c4] - ONE_OF
Modern Standby Indicator Blinking Frequency (Hz)
-------------------------------------------------------------------------------
Determines Button LED blinking frequency during modern standby system power state.
0 : 1Hz (default)
1 : 0.9Hz
2 : 0.8Hz
3 : 0.7Hz
4 : 0.6Hz
5 : 0.5Hz
6 : 0.4Hz
7 : 0.3Hz
8 : 0.2Hz
9 : 0.1Hz
[09c5] - ONE_OF
Modern Standby Indicator Color
-------------------------------------------------------------------------------
Determines Button LED color during modern standby system power state.
1 : Blue (default)
2 : Amber
[097f] - NUMERIC
Brightness (%)
-------------------------------------------------------------------------------
Determines Button LED brightness for HDD activity.
Default Value is 50.
Minimum Value : 0
Maximum Value : 100
[09b2] - ONE_OF
Behavior
-------------------------------------------------------------------------------
Determines Button LED Behavior for HDD activity.
1 : On (default)
0 : Off
[0980] - ONE_OF
Color
-------------------------------------------------------------------------------
Determines Button LED color for HDD activity.
1 : Blue
2 : Amber (default)
[0981] - ONE_OF
RGB LED
-------------------------------------------------------------------------------
Configures RGB LED functionality.
0 : Power State Indicator (default)
1 : HDD Activity LED
[09d0] - NUMERIC