-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLenovo ThinkPad E14 Report.htm
10647 lines (10600 loc) · 713 KB
/
Lenovo ThinkPad E14 Report.htm
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="AIDA64 v6.33.5700">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=iso-8859-1">
<STYLE>
#reportmenu > ul{
list-style: none;
margin: 0;
padding: 0;
position: fixed;
display: block;
top: 5px;
right: 20%;
z-index: 100;
}
#reportmenu > ul li {
display: block;
position: relative;
margin: 0;
padding: 0;
min-width: 150px;
}
#reportmenu > ul li a {
font: 80% verdana, tahoma, ms sans serif, arial; color: #000000;
display: block;
position: relative;
min-width: 130px;
min-height: 18px;
padding: 6px 20px;
border-bottom: 1px solid #9fcaeb;
color: #fff;
text-decoration: none;
background: #65a3d3;
}
#reportmenu > ul li>a:hover, #reportmenu > ul li:hover>a {
color: #fff;
background: #a3d4ed;
border-color: transparent;
}
#reportmenu > ul .has-sub>a::after {
content: '';
position: absolute;
top: 13px;
right: 10px;
width: 0px;
height: 0px;
border: 4px solid transparent;
border-left: 4px solid #fff;
}
#reportmenu > ul .top-menu>a::after {
content: '';
position: absolute;
top: 13px;
right: 10px;
width: 0px;
height: 0px;
border: 4px solid transparent;
border-top: 4px solid #fff;
}
#reportmenu > ul ul {
position: absolute;
left: 100%;
top: -9999px;
padding-left: 0;
xborder-left: 5px solid #fff;
opacity: 0;
z-index:100;
-webkit-transition: opacity .3s ease-in;
-moz-transition: opacity .3s ease-in;
-o-transition: opacity .3s ease-in;
-ms-transition: opacity .3s ease-in;
}
#reportmenu ul ul ul {
border-left: 5px solid #fff;
}
#reportmenu ul.submenu {
left: 0;
}
#reportmenu li:hover>ul.submenu {
top: 0;
opacity: 1;
border-top: 4px solid white;
position: relative;
}
#reportmenu > ul li:hover>ul {
top: 0px;
opacity: 1;
}
#reportmenu > ul li:first-child>a {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-top: 0;
}
#reportmenu > ul li:last-child>a {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: 0;
}
A { text-decoration: none }
A:hover { text-decoration: underline }
TD { font: 80% verdana, tahoma, ms sans serif, arial; color: #000000; vertical-align: text-center; text-align: left }
TD.cr { font: 80% verdana, tahoma, ms sans serif, arial; color: #000000; vertical-align: text-center; text-align: right }
TD.cc { font: 80% verdana, tahoma, ms sans serif, arial; color: #000000; vertical-align: text-center; text-align: center }
TD.pt { font: bold 140% verdana, tahoma, ms sans serif, arial; color: #000080; vertical-align: text-center }
TD.dt { font: bold 110% verdana, tahoma, ms sans serif, arial; color: #000080; vertical-align: text-center }
.pc { border: 1px solid #b0bcc8; width:129px }
.bar { padding: 2px 0 }
.bar.r { background-color: #afddff }
.bar.u { background-color: #94f5a3 }
.bar.a { background-color: #f5e294 }
.txt { font-size: 88%; padding: 0 3px }
</STYLE>
<TITLE>Report of <ANISH-THINKPAD></TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<div id="reportmenu"><ul><li class="top-menu" ><a href="#">Navigation</a><ul class="submenu"><li class="has-sub"><a href="#">Computer</a><ul><li><a href="#summary">Summary</a></li><li><a href="#dmi">DMI</a></li><li><a href="#overclock">Overclock</a></li><li><a href="#power management">Power Management</a></li><li><a href="#portable computer">Portable Computer</a></li><li><a href="#sensor">Sensor</a></li></ul></li><li class="has-sub"><a href="#">Motherboard</a><ul><li><a href="#cpu">CPU</a></li><li><a href="#cpuid">CPUID</a></li><li><a href="#motherboard">Motherboard</a></li><li><a href="#memory">Memory</a></li><li><a href="#spd">SPD</a></li><li><a href="#chipset">Chipset</a></li><li><a href="#bios">BIOS</a></li><li><a href="#acpi">ACPI</a></li></ul></li><li class="has-sub"><a href="#">Display</a><ul><li><a href="#windows video">Windows Video</a></li><li><a href="#gpu">GPU</a></li><li><a href="#monitor">Monitor</a></li><li><a href="#desktop">Desktop</a></li><li><a href="#multi-monitor">Multi-Monitor</a></li><li><a href="#video modes">Video Modes</a></li><li><a href="#opengl">OpenGL</a></li><li><a href="#gpgpu">GPGPU</a></li><li><a href="#vulkan">Vulkan</a></li></ul></li><li class="has-sub"><a href="#">Multimedia</a><ul><li><a href="#windows audio">Windows Audio</a></li><li><a href="#pci / pnp audio">PCI / PnP Audio</a></li></ul></li><li class="has-sub"><a href="#">Storage</a><ul><li><a href="#windows storage">Windows Storage</a></li><li><a href="#logical drives">Logical Drives</a></li><li><a href="#physical drives">Physical Drives</a></li><li><a href="#aspi">ASPI</a></li><li><a href="#ata">ATA</a></li><li><a href="#smart">SMART</a></li></ul></li><li class="has-sub"><a href="#">Network</a><ul><li><a href="#windows network">Windows Network</a></li><li><a href="#pci / pnp network">PCI / PnP Network</a></li></ul></li><li class="has-sub"><a href="#">DirectX</a><ul><li><a href="#directx video">DirectX Video</a></li><li><a href="#directx sound">DirectX Sound</a></li></ul></li><li class="has-sub"><a href="#">Devices</a><ul><li><a href="#windows devices">Windows Devices</a></li><li><a href="#physical devices">Physical Devices</a></li><li><a href="#pci devices">PCI Devices</a></li><li><a href="#usb devices">USB Devices</a></li><li><a href="#device resources">Device Resources</a></li><li><a href="#input">Input</a></li><li><a href="#printers">Printers</a></li></ul></li></ul></li></ul></div>
<TABLE WIDTH=100%><TD CLASS=pt>AIDA64 Extreme<TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD><TD>
<TR><TD><TD><TD>Version <TD>AIDA64 v6.33.5700
<TR><TD><TD><TD>Benchmark Module <TD>4.5.846.8-x64
<TR><TD><TD><TD>Homepage <TD><A HREF="http://www.aida64.com/" TARGET=blank>http://www.aida64.com/</A>
<TR><TD><TD><TD>Report Type <TD>Report Wizard [ TRIAL VERSION ]
<TR><TD><TD><TD>Computer <TD>ANISH-THINKPAD
<TR><TD><TD><TD>Generator <TD>Anish Kulkarni
<TR><TD><TD><TD>Operating System <TD>Microsoft Windows 10 Home Single Language 10.0.19041.928 (Win10 20H1 [2004] May 2020 Update)
<TR><TD><TD><TD>Date <TD>2021-04-23
<TR><TD><TD><TD>Time <TD>13:12
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="summary">Summary</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>Computer:</B>
<TR><TD><TD><TD><TD>Computer Type <TD>ACPI x64-based PC (Mobile)
<TR><TD><TD><TD><TD>Operating System <TD><A HREF="https://www.microsoft.com/windows" TARGET=blank TITLE="Microsoft Corporation">Microsoft Windows 10 Home Single Language</A>
<TR><TD><TD><TD><TD>OS Service Pack <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Internet Explorer <TD><A HREF="https://www.microsoft.com/internetexplorer" TARGET=blank TITLE="Microsoft Corporation">11.789.19041.0</A>
<TR><TD><TD><TD><TD>Edge <TD><A HREF="https://www.microsoft.com/windows/microsoft-edge" TARGET=blank TITLE="Microsoft Corporation">90.0.818.42</A>
<TR><TD><TD><TD><TD>DirectX <TD><A HREF="https://support.microsoft.com/help/179113/how-to-install-the-latest-version-of-directx" TARGET=blank TITLE="Microsoft Corporation">DirectX 12.0</A>
<TR><TD><TD><TD><TD>Computer Name <TD>ANISH-THINKPAD
<TR><TD><TD><TD><TD>User Name <TD>Anish Kulkarni
<TR><TD><TD><TD><TD>Logon Domain <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Date / Time <TD>2021-04-23 / 13:12
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Motherboard:</B>
<TR><TD><TD><TD><TD>CPU Type <TD><A HREF="https://ark.intel.com/content/www/us/en/ark/search.html?q=Intel%20Core%20i5-10210U" TARGET=blank TITLE="Intel Corporation">QuadCore Intel Core i5-10210U, 3400 MHz (34 x 100)</A>
<TR><TD><TD><TD><TD>Motherboard Name <TD><A HREF="http://www.lenovo.com/products/us" TARGET=blank TITLE="Lenovo">Lenovo ThinkPad E14</A>
<TR><TD><TD><TD><TD>Motherboard Chipset <TD><A HREF="https://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel Comet Point-LP, Intel Comet Lake-U</A>
<TR><TD><TD><TD><TD>System Memory <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>DIMM1: SK hynix HMA81GS6JJR8N-VK <TD>8 GB DDR4-2666 DDR4 SDRAM (20-19-19-43 @ 1333 MHz) (19-19-19-43 @ 1333 MHz) (18-18-18-42 @ 1309 MHz) (17-17-17-40 @ 1236 MHz) (16-16-16-38 @ 1163 MHz) (15-15-15-35 @ 1090 MHz) (14-14-14-33 @ 1018 MHz) (13-13-13-31 @ 945 MHz) (12-12-12-28 @ 872 MHz) (11-11-11-26 @ 800 MHz) (10-10-10-24 @ 727 MHz)
<TR><TD><TD><TD><TD>BIOS Type <TD><A HREF="http://www.phoenix.com/products" TARGET=blank TITLE="Phoenix Technologies Ltd.">Phoenix (06/08/2020)</A>
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Display:</B>
<TR><TD><TD><TD><TD>Video Adapter <TD><A HREF="https://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) UHD Graphics (1 GB)</A>
<TR><TD><TD><TD><TD>Video Adapter <TD><A HREF="https://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) UHD Graphics (1 GB)</A>
<TR><TD><TD><TD><TD>Video Adapter <TD><A HREF="https://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) UHD Graphics (1 GB)</A>
<TR><TD><TD><TD><TD>Monitor <TD>LCD 1920x1080 [NoDB]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Multimedia:</B>
<TR><TD><TD><TD><TD>Audio Adapter <TD><A HREF="https://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel Comet Point-LP PCH - cAVS (Audio, Voice, Speech)</A>
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Storage:</B>
<TR><TD><TD><TD><TD>IDE Controller <TD><A HREF="https://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel(R) 400 Series Chipset Family SATA AHCI Controller</A>
<TR><TD><TD><TD><TD>Storage Controller <TD>Microsoft Storage Spaces Controller
<TR><TD><TD><TD><TD>Storage Controller <TD>Standard NVM Express Controller
<TR><TD><TD><TD><TD>Disk Drive <TD>HFM128GDHTNG-8510B (128 GB)
<TR><TD><TD><TD><TD>Disk Drive <TD><A HREF="https://www.wdc.com/products/internal-storage.html" TARGET=blank TITLE="Western Digital Corporation">WDC WD10SPZX-08Z10 (1 TB, 5400 RPM, SATA-III)</A>
<TR><TD><TD><TD><TD>SMART Hard Disks Status <TD>OK
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Partitions:</B>
<TR><TD><TD><TD><TD>C: (NTFS) <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>D: (NTFS) <TD>465.7 GB (437.7 GB free)
<TR><TD><TD><TD><TD>E: (NTFS) <TD>426.6 GB (402.3 GB free)
<TR><TD><TD><TD><TD>F: (exFAT) <TD>39997 MB (39995 MB free)
<TR><TD><TD><TD><TD>G: (FAT32) <TD>465.7 GB (415.9 GB free)
<TR><TD><TD><TD><TD>Total Size <TD>[ TRIAL VERSION ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Input:</B>
<TR><TD><TD><TD><TD>Keyboard <TD>Standard PS/2 Keyboard
<TR><TD><TD><TD><TD>Mouse <TD>ELAN Input Device For WDF
<TR><TD><TD><TD><TD>Mouse <TD>HID-compliant mouse
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Network:</B>
<TR><TD><TD><TD><TD>Primary IP Address <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Primary MAC Address <TD>D8-3B-BF-6C-53-A4
<TR><TD><TD><TD><TD>Network Adapter <TD>Bluetooth Device (Personal Area Network)
<TR><TD><TD><TD><TD>Network Adapter <TD><A HREF="https://www.intel.com/content/www/us/en/products/network-io.html" TARGET=blank TITLE="Intel Corporation">Intel(R) Wi-Fi 6 AX201 160MHz (192. [ TRIAL VERSION ])</A>
<TR><TD><TD><TD><TD>Network Adapter <TD>Microsoft Wi-Fi Direct Virtual Adapter #2
<TR><TD><TD><TD><TD>Network Adapter <TD>Microsoft Wi-Fi Direct Virtual Adapter
<TR><TD><TD><TD><TD>Network Adapter <TD><A HREF="https://www.realtek.com/products" TARGET=blank TITLE="Realtek Semiconductor Corp.">Realtek PCIe GbE Family Controller</A>
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Peripherals:</B>
<TR><TD><TD><TD><TD>Printer <TD>Fax
<TR><TD><TD><TD><TD>Printer <TD><A HREF="https://www8.hp.com/us/en/products/printers" TARGET=blank TITLE="Hewlett-Packard Company">HP6F965C (HP DeskJet 2600 series)</A>
<TR><TD><TD><TD><TD>Printer <TD>Microsoft Print to PDF
<TR><TD><TD><TD><TD>Printer <TD>Microsoft XPS Document Writer
<TR><TD><TD><TD><TD>Printer <TD>OneNote (Desktop)
<TR><TD><TD><TD><TD>Printer <TD>OneNote for Windows 10
<TR><TD><TD><TD><TD>USB3 Controller <TD><A HREF="https://www.intel.com/products/chipsets" TARGET=blank TITLE="Intel Corporation">Intel Comet Point-LP PCH - USB 3.1 xHCI Host Controller</A>
<TR><TD><TD><TD><TD>USB Device <TD>Goodix fingerprint
<TR><TD><TD><TD><TD>USB Device <TD>Integrated Camera
<TR><TD><TD><TD><TD>USB Device <TD>Intel(R) Wireless Bluetooth(R)
<TR><TD><TD><TD><TD>USB Device <TD>USB Composite Device
<TR><TD><TD><TD><TD>Battery <TD>Microsoft AC Adapter
<TR><TD><TD><TD><TD>Battery <TD>Microsoft ACPI-Compliant Control Method Battery
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>DMI:</B>
<TR><TD><TD><TD><TD>DMI BIOS Vendor <TD><A HREF="http://www.lenovo.com/products/us" TARGET=blank TITLE="Lenovo">LENOVO</A>
<TR><TD><TD><TD><TD>DMI BIOS Version <TD>R16ET26W (1.12 )
<TR><TD><TD><TD><TD>DMI System Manufacturer <TD>LENOVO
<TR><TD><TD><TD><TD>DMI System Product <TD>PG025WM320
<TR><TD><TD><TD><TD>DMI System Version <TD>ThinkPad E14
<TR><TD><TD><TD><TD>DMI System Serial Number <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>DMI System UUID <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>DMI Motherboard Manufacturer <TD>LENOVO
<TR><TD><TD><TD><TD>DMI Motherboard Product <TD>PG025WM320
<TR><TD><TD><TD><TD>DMI Motherboard Version <TD>SDK0K17763 WIN
<TR><TD><TD><TD><TD>DMI Motherboard Serial Number <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>DMI Chassis Manufacturer <TD>LENOVO
<TR><TD><TD><TD><TD>DMI Chassis Version <TD>None
<TR><TD><TD><TD><TD>DMI Chassis Serial Number <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>DMI Chassis Asset Tag <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>DMI Chassis Type <TD>Notebook
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="dmi">DMI</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ BIOS ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>BIOS Properties:</B>
<TR><TD><TD><TD><TD>Vendor <TD>LENOVO
<TR><TD><TD><TD><TD>Version <TD>R16ET26W (1.12 )
<TR><TD><TD><TD><TD>Release Date <TD>06/08/2020
<TR><TD><TD><TD><TD>Size <TD>32 MB
<TR><TD><TD><TD><TD>System BIOS Version <TD>1.12
<TR><TD><TD><TD><TD>Embedded Controller Firmware Version <TD>1.9
<TR><TD><TD><TD><TD>Boot Devices <TD>Floppy Disk, Hard Disk, CD-ROM
<TR><TD><TD><TD><TD>Capabilities <TD>Flash BIOS, Shadow BIOS, Selectable Boot, EDD, BBS
<TR><TD><TD><TD><TD>Supported Standards <TD>DMI, ACPI, PnP, UEFI
<TR><TD><TD><TD><TD>Expansion Capabilities <TD>PCI, USB
<TR><TD><TD><TD><TD>Virtual Machine <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>BIOS Manufacturer:</B>
<TR><TD><TD><TD><TD>Company Name <TD>Lenovo
<TR><TD><TD><TD><TD>Product Information <TD><A HREF="http://www.lenovo.com/products/us" TARGET=blank>http://www.lenovo.com/products/us</A>
<TR><TD><TD><TD><TD>BIOS Upgrades <TD><A HREF="http://www.aida64.com/goto/?p=biosupdates" TARGET=blank>http://www.aida64.com/goto/?p=biosupdates</A>
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ System ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>System Properties:</B>
<TR><TD><TD><TD><TD>Manufacturer <TD>LENOVO
<TR><TD><TD><TD><TD>Product <TD>PG025WM320
<TR><TD><TD><TD><TD>Version <TD>ThinkPad E14
<TR><TD><TD><TD><TD>Serial Number <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>SKU# <TD>LENOVO_MT_PG02_BU_SMB_FM_ThinkPad E14
<TR><TD><TD><TD><TD>Family <TD>ThinkPad E14
<TR><TD><TD><TD><TD>Universal Unique ID <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Universal Unique ID (GUID) <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Wake-Up Type <TD>Power Switch
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Motherboard ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Motherboard Properties:</B>
<TR><TD><TD><TD><TD>Manufacturer <TD>LENOVO
<TR><TD><TD><TD><TD>Product <TD>PG025WM320
<TR><TD><TD><TD><TD>Version <TD>SDK0K17763 WIN
<TR><TD><TD><TD><TD>Serial Number <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Asset Tag <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Asset Tag <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Asset Tag <TD>[ TRIAL VERSION ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Motherboard Manufacturer:</B>
<TR><TD><TD><TD><TD>Company Name <TD>Lenovo
<TR><TD><TD><TD><TD>Product Information <TD><A HREF="http://www.lenovo.com/products/us" TARGET=blank>http://www.lenovo.com/products/us</A>
<TR><TD><TD><TD><TD>BIOS Download <TD><A HREF="http://support.lenovo.com/en_US" TARGET=blank>http://support.lenovo.com/en_US</A>
<TR><TD><TD><TD><TD>Driver Update <TD><A HREF="http://www.aida64.com/goto/?p=drvupdates" TARGET=blank>http://www.aida64.com/goto/?p=drvupdates</A>
<TR><TD><TD><TD><TD>BIOS Upgrades <TD><A HREF="http://www.aida64.com/goto/?p=biosupdates" TARGET=blank>http://www.aida64.com/goto/?p=biosupdates</A>
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Chassis ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Chassis Properties:</B>
<TR><TD><TD><TD><TD>Manufacturer <TD>LENOVO
<TR><TD><TD><TD><TD>Version <TD>None
<TR><TD><TD><TD><TD>Serial Number <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Asset Tag <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Chassis Type <TD>Notebook
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Processors / Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Processor Properties:</B>
<TR><TD><TD><TD><TD>Manufacturer <TD>Intel(R) Corporation
<TR><TD><TD><TD><TD>Version <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz
<TR><TD><TD><TD><TD>Serial Number <TD>None
<TR><TD><TD><TD><TD>Asset Tag <TD>None
<TR><TD><TD><TD><TD>Part Number <TD>None
<TR><TD><TD><TD><TD>External Clock <TD>100 MHz
<TR><TD><TD><TD><TD>Maximum Clock <TD>2100 MHz
<TR><TD><TD><TD><TD>Current Clock <TD>1600 MHz
<TR><TD><TD><TD><TD>Type <TD>Central Processor
<TR><TD><TD><TD><TD>Voltage <TD>0.6 V
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD><TD><TD><TD>Upgrade <TD>Socket BGA1528
<TR><TD><TD><TD><TD>Socket Designation <TD>U3E1
<TR><TD><TD><TD><TD>HTT / CMP Units <TD>2 / 4
<TR><TD><TD><TD><TD>Capabilities <TD>64-bit, Multi-Core, Multiple Hardware Threads, Execute Protection, Enhanced Virtualization, Power/Performance Control
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Manufacturer:</B>
<TR><TD><TD><TD><TD>Company Name <TD>Intel Corporation
<TR><TD><TD><TD><TD>Product Information <TD><A HREF="https://ark.intel.com/content/www/us/en/ark/search.html?q=Intel%20Core%20i5-10210U" TARGET=blank>https://ark.intel.com/content/www/us/en/ark/search.html?q=Intel%20Core%20i5-10210U</A>
<TR><TD><TD><TD><TD>Driver Update <TD><A HREF="http://www.aida64.com/goto/?p=drvupdates" TARGET=blank>http://www.aida64.com/goto/?p=drvupdates</A>
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Caches / L1 Cache ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Cache Properties:</B>
<TR><TD><TD><TD><TD>Type <TD>Unified
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD><TD><TD><TD>Operational Mode <TD>Write-Back
<TR><TD><TD><TD><TD>Associativity <TD>8-way Set-Associative
<TR><TD><TD><TD><TD>Maximum Size <TD>256 KB
<TR><TD><TD><TD><TD>Installed Size <TD>256 KB
<TR><TD><TD><TD><TD>Supported SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Current SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Error Correction <TD>Parity
<TR><TD><TD><TD><TD>Socket Designation <TD>L1 Cache
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Caches / L2 Cache ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Cache Properties:</B>
<TR><TD><TD><TD><TD>Type <TD>Unified
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD><TD><TD><TD>Operational Mode <TD>Write-Back
<TR><TD><TD><TD><TD>Associativity <TD>4-way Set-Associative
<TR><TD><TD><TD><TD>Maximum Size <TD>1 MB
<TR><TD><TD><TD><TD>Installed Size <TD>1 MB
<TR><TD><TD><TD><TD>Supported SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Current SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Error Correction <TD>Single-bit ECC
<TR><TD><TD><TD><TD>Socket Designation <TD>L2 Cache
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Caches / L3 Cache ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Cache Properties:</B>
<TR><TD><TD><TD><TD>Type <TD>Unified
<TR><TD><TD><TD><TD>Status <TD>Enabled
<TR><TD><TD><TD><TD>Operational Mode <TD>Write-Back
<TR><TD><TD><TD><TD>Associativity <TD>12-way Set-Associative
<TR><TD><TD><TD><TD>Maximum Size <TD>6 MB
<TR><TD><TD><TD><TD>Installed Size <TD>6 MB
<TR><TD><TD><TD><TD>Supported SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Current SRAM Type <TD>Synchronous
<TR><TD><TD><TD><TD>Error Correction <TD>Multi-bit ECC
<TR><TD><TD><TD><TD>Socket Designation <TD>L3 Cache
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Memory Arrays / System Memory ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Memory Array Properties:</B>
<TR><TD><TD><TD><TD>Location <TD>Motherboard
<TR><TD><TD><TD><TD>Memory Array Function <TD>System Memory
<TR><TD><TD><TD><TD>Error Correction <TD>None
<TR><TD><TD><TD><TD>Max. Memory Capacity <TD>16 GB
<TR><TD><TD><TD><TD>Memory Devices <TD>1
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Memory Devices / ChannelA-DIMM0 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Memory Device Properties:</B>
<TR><TD><TD><TD><TD>Form Factor <TD>SODIMM
<TR><TD><TD><TD><TD>Type <TD>DDR4
<TR><TD><TD><TD><TD>Type Detail <TD>Synchronous
<TR><TD><TD><TD><TD>Size <TD>8 GB
<TR><TD><TD><TD><TD>Max. Clock Speed <TD>2667 MT/s
<TR><TD><TD><TD><TD>Current Clock Speed <TD>2667 MT/s
<TR><TD><TD><TD><TD>Total Width <TD>64-bit
<TR><TD><TD><TD><TD>Data Width <TD>64-bit
<TR><TD><TD><TD><TD>Ranks <TD>1
<TR><TD><TD><TD><TD>Current Voltage <TD>1.200 V
<TR><TD><TD><TD><TD>Device Locator <TD>ChannelA-DIMM0
<TR><TD><TD><TD><TD>Bank Locator <TD>BANK 0
<TR><TD><TD><TD><TD>Manufacturer <TD>SK Hynix
<TR><TD><TD><TD><TD>Serial Number <TD>93F02199
<TR><TD><TD><TD><TD>Asset Tag <TD>None
<TR><TD><TD><TD><TD>Part Number <TD>HMA81GS6JJR8N-VK
<TR><TD><TD><TD><TD>Memory Technology <TD>DRAM
<TR><TD><TD><TD><TD>Memory Operating Modes <TD>Volatile Memory
<TR><TD><TD><TD><TD>Module Manufacturer ID <TD>AD80h
<TR><TD><TD><TD><TD>Volatile Size <TD>8 GB
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ System Slots / SimCard Slot ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>System Slot Properties:</B>
<TR><TD><TD><TD><TD>Slot Designation <TD>SimCard Slot
<TR><TD><TD><TD><TD>Usage <TD>Available
<TR><TD><TD><TD><TD>ID <TD>0
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / USB 1 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>USB
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>Not Available
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>USB 1
<TR><TD><TD><TD><TD>External Connector Type <TD>USB
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / USB 2 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>USB
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>Not Available
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>USB 2
<TR><TD><TD><TD><TD>External Connector Type <TD>USB
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / USB 3 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>USB
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>Not Available
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>USB 3
<TR><TD><TD><TD><TD>External Connector Type <TD>USB
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / USB 4 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>USB
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>Not Available
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>USB 4
<TR><TD><TD><TD><TD>External Connector Type <TD>USB
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / Ethernet ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>Network Port
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>Not Available
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>Ethernet
<TR><TD><TD><TD><TD>External Connector Type <TD>RJ-45
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / Hdmi1 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>Video Port
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>Not Available
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>Hdmi1
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Port Connectors / Headphone/Microphone Combo Jack1 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Port Connector Properties:</B>
<TR><TD><TD><TD><TD>Port Type <TD>Audio Port
<TR><TD><TD><TD><TD>Internal Reference Designator <TD>Not Available
<TR><TD><TD><TD><TD>Internal Connector Type <TD>None
<TR><TD><TD><TD><TD>External Reference Designator <TD>Headphone/Microphone Combo Jack1
<TR><TD><TD><TD><TD>External Connector Type <TD>Mini-jack (headphones)
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Pointing Devices / Track Point ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Device Properties:</B>
<TR><TD><TD><TD><TD>Device Type <TD>Track Point
<TR><TD><TD><TD><TD>Interface <TD>PS/2
<TR><TD><TD><TD><TD>Buttons <TD>3
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Pointing Devices / Touch Pad ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Device Properties:</B>
<TR><TD><TD><TD><TD>Device Type <TD>Touch Pad
<TR><TD><TD><TD><TD>Interface <TD>PS/2
<TR><TD><TD><TD><TD>Buttons <TD>2
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Batteries / 01AV445 ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Battery Properties:</B>
<TR><TD><TD><TD><TD>Device Name <TD>01AV445
<TR><TD><TD><TD><TD>Manufacturer <TD>LGC
<TR><TD><TD><TD><TD>Manufacture Date <TD>27-11-2019
<TR><TD><TD><TD><TD>Serial Number <TD>458
<TR><TD><TD><TD><TD>Location <TD>Front
<TR><TD><TD><TD><TD>Battery Type <TD>LiP
<TR><TD><TD><TD><TD>Designed Capacity <TD>45000 mWh
<TR><TD><TD><TD><TD>Designed Voltage <TD>11.100 V
<TR><TD><TD><TD><TD>SDDS Version <TD>00.00
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Intel AMT ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Intel AMT Properties:</B>
<TR><TD><TD><TD><TD>Intel AMT <TD>Not Supported
<TR><TD><TD><TD><TD>IDE Redirection <TD>Disabled
<TR><TD><TD><TD><TD>SOL <TD>Disabled
<TR><TD><TD><TD><TD>AMT Network Interface <TD>Disabled
<TR><TD>
<TR><TD><TD CLASS=dt COLSPAN=5>[ Intel vPro ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Intel vPro Properties:</B>
<TR><TD><TD><TD><TD>MEBX Version <TD>13.0.0.4
<TR><TD><TD><TD><TD>ME Firmware Version <TD>14.0.10.1204
<TR><TD><TD><TD><TD>PCH PCI Bus / Device / Function <TD>0 / 31 / 0
<TR><TD><TD><TD><TD>PCH PCI Device ID <TD>8086-0284
<TR><TD><TD><TD><TD>Wired NIC PCI Bus / Device / Function <TD>0 / 31 / 6
<TR><TD><TD><TD><TD>Wired NIC PCI Device ID <TD>8086-FFFF
<TR><TD><TD><TD><TD>AMT <TD>Not Supported
<TR><TD><TD><TD><TD>Anti-Theft <TD>Not Supported
<TR><TD><TD><TD><TD>Anti-Theft PBA for Recovery <TD>Not Supported
<TR><TD><TD><TD><TD>Anti-Theft WWAN <TD>Not Supported
<TR><TD><TD><TD><TD>BIOS TXT <TD>Not Supported
<TR><TD><TD><TD><TD>BIOS VT-d <TD>Supported
<TR><TD><TD><TD><TD>BIOS VT-x <TD>Supported
<TR><TD><TD><TD><TD>CPU VT-x <TD>Supported, Disabled
<TR><TD><TD><TD><TD>CPU TXT <TD>Not Supported
<TR><TD><TD><TD><TD>KVM <TD>Not Supported
<TR><TD><TD><TD><TD>Local Wakeup Timer <TD>Not Supported
<TR><TD><TD><TD><TD>Management Engine <TD>Enabled
<TR><TD><TD><TD><TD>Small Business Advantage <TD>Not Supported
<TR><TD><TD><TD><TD>Standard Manageability <TD>Not Supported
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="overclock">Overclock</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Properties:</B>
<TR><TD><TD><TD><TD>CPU Type <TD>QuadCore Intel Core i5-10210U
<TR><TD><TD><TD><TD>CPU Alias <TD>Comet Lake-U
<TR><TD><TD><TD><TD>CPU Stepping <TD>V0
<TR><TD><TD><TD><TD>Engineering Sample <TD>No
<TR><TD><TD><TD><TD>CPUID CPU Name <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz
<TR><TD><TD><TD><TD>CPUID Revision <TD>000806ECh
<TR><TD><TD><TD><TD>CPU VID <TD>0.9888 V
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Speed:</B>
<TR><TD><TD><TD><TD>CPU Clock <TD>1596.1 MHz (original: [ TRIAL VERSION ] MHz)
<TR><TD><TD><TD><TD>CPU Multiplier <TD>16x
<TR><TD><TD><TD><TD>CPU FSB <TD>99.8 MHz (original: 100 MHz)
<TR><TD><TD><TD><TD>North Bridge Clock <TD>2992.7 MHz
<TR><TD><TD><TD><TD>Memory Bus <TD>1330.1 MHz
<TR><TD><TD><TD><TD>DRAM:FSB Ratio <TD>40:3
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Cache:</B>
<TR><TD><TD><TD><TD>L1 Code Cache <TD>32 KB per core
<TR><TD><TD><TD><TD>L1 Data Cache <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>L2 Cache <TD>256 KB per core (On-Die, ECC, Full-Speed)
<TR><TD><TD><TD><TD>L3 Cache <TD>6 MB (On-Die, ECC, Full-Speed)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Motherboard Properties:</B>
<TR><TD><TD><TD><TD>Motherboard ID <TD><DMI>
<TR><TD><TD><TD><TD>Motherboard Name <TD>Lenovo ThinkPad E14
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Chipset Properties:</B>
<TR><TD><TD><TD><TD>Motherboard Chipset <TD>Intel Comet Point-LP, Intel Comet Lake-U
<TR><TD><TD><TD><TD>Memory Timings <TD>19-19-19-43 (CL-RCD-RP-RAS)
<TR><TD><TD><TD><TD>Command Rate (CR) <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>DIMM1: SK hynix HMA81GS6JJR8N-VK <TD>8 GB DDR4-2666 DDR4 SDRAM (20-19-19-43 @ 1333 MHz) (19-19-19-43 @ 1333 MHz) (18-18-18-42 @ 1309 MHz) (17-17-17-40 @ 1236 MHz) (16-16-16-38 @ 1163 MHz) (15-15-15-35 @ 1090 MHz) (14-14-14-33 @ 1018 MHz) (13-13-13-31 @ 945 MHz) (12-12-12-28 @ 872 MHz) (11-11-11-26 @ 800 MHz) (10-10-10-24 @ 727 MHz)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>BIOS Properties:</B>
<TR><TD><TD><TD><TD>System BIOS Date <TD>06/08/2020
<TR><TD><TD><TD><TD>Video BIOS Date <TD>06/28/19
<TR><TD><TD><TD><TD>DMI BIOS Version <TD>R16ET26W (1.12 )
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Graphics Processor Properties:</B>
<TR><TD><TD><TD><TD>Video Adapter <TD>Intel Comet Lake-U GT2 - Integrated Graphics Controller [V0]
<TR><TD><TD><TD><TD>GPU Code Name <TD>Comet Lake-U GT2 (Integrated 8086 / 9B41, Rev 02)
<TR><TD><TD><TD><TD>GPU Clock <TD>300 MHz (original: [ TRIAL VERSION ] MHz)
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="power management">Power Management</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>Power Management Properties:</B>
<TR><TD><TD><TD><TD>Current Power Source <TD>Battery
<TR><TD><TD><TD><TD>Battery Status <TD>86 % (High Level)
<TR><TD><TD><TD><TD>Full Battery Lifetime <TD>Unknown
<TR><TD><TD><TD><TD>Remaining Battery Lifetime <TD>15523 sec (4 hours, 18 min, 43 sec)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Battery Properties:</B>
<TR><TD><TD><TD><TD>Device Name <TD>01AV445
<TR><TD><TD><TD><TD>Manufacturer <TD>LGC
<TR><TD><TD><TD><TD>Serial Number <TD>458
<TR><TD><TD><TD><TD>Unique ID <TD>458LGC01AV445
<TR><TD><TD><TD><TD>Battery Type <TD>Rechargeable LiP
<TR><TD><TD><TD><TD>Designed Capacity <TD>45000 mWh
<TR><TD><TD><TD><TD>Fully Charged Capacity <TD>37680 mWh
<TR><TD><TD><TD><TD>Current Capacity <TD>32500 mWh (86 %)
<TR><TD><TD><TD><TD>Battery Voltage <TD>11.894 V
<TR><TD><TD><TD><TD>Charge-Discharge Cycle Count <TD>157
<TR><TD><TD><TD><TD>Wear Level <TD>16 %
<TR><TD><TD><TD><TD>Power State <TD>Discharging
<TR><TD><TD><TD><TD>Discharge Rate <TD>6684 mW
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="portable computer">Portable Computer</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Carmel) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Pentium M (Banias/Dothan) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Intel i855GM/PM <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel PRO/Wireless <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Sonoma) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Pentium M (Dothan) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Intel i915GM/PM <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel PRO/Wireless 2200/2915 <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Napa) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core (Yonah) / Core 2 (Merom) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Intel i945GM/PM <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel PRO/Wireless 3945/3965 <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Santa Rosa) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core 2 (Merom/Penryn) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Intel GM965/PM965 <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel Wireless WiFi Link 4965 <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino 2 (Montevina) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core 2 (Penryn) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 4 Series <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel WiFi Link 5000 Series <TD>No
<TR><TD><TD><TD><TD>System: Centrino 2 Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Calpella) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core i3/i5/i7 (Arrandale/Clarksfield) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 5 Series <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel Centrino Advanced-N / Ultimate-N / Wireless-N <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Huron River) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core i3/i5/i7 (Sandy Bridge-MB) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 6 Series <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel Centrino Advanced-N / Ultimate-N / Wireless-N <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Chief River) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core i3/i5/i7 (Ivy Bridge-MB) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 7 Series <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel Centrino Advanced-N / Ultimate-N / Wireless-N <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Centrino (Shark Bay-MB) Platform Compliancy:</B>
<TR><TD><TD><TD><TD>CPU: Intel Core i3/i5/i7 (Haswell-MB) <TD>No (Intel Core i5-10210U)
<TR><TD><TD><TD><TD>Chipset: Mobile Intel 8/9 Series <TD>No (Intel Comet Point-LP, Intel Comet Lake-U)
<TR><TD><TD><TD><TD>WLAN: Intel Centrino Advanced-N / Ultimate-N / Wireless-N <TD>No
<TR><TD><TD><TD><TD>System: Centrino Compliant <TD>No
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="sensor">Sensor</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>Sensor Properties:</B>
<TR><TD><TD><TD><TD>Sensor Type <TD>ThinkPad EC (ACPI)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Temperatures:</B>
<TR><TD><TD><TD><TD>CPU <TD>49 °C
<TR><TD><TD><TD><TD>CPU Package <TD>48 °C
<TR><TD><TD><TD><TD>CPU IA Cores <TD>48 °C
<TR><TD><TD><TD><TD>CPU GT Cores <TD>47 °C
<TR><TD><TD><TD><TD>CPU #1 / Core #1 <TD>47 °C
<TR><TD><TD><TD><TD>CPU #1 / Core #2 <TD>48 °C
<TR><TD><TD><TD><TD>CPU #1 / Core #3 <TD>47 °C
<TR><TD><TD><TD><TD>CPU #1 / Core #4 <TD>47 °C
<TR><TD><TD><TD><TD>HFM128GDHTNG-8510B <TD>[ TRIAL VERSION ] / 40 °C
<TR><TD><TD><TD><TD>WDC WD10SPZX-08Z10 <TD>[ TRIAL VERSION ]
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Voltage Values:</B>
<TR><TD><TD><TD><TD>CPU Core <TD>0.689 V
<TR><TD><TD><TD><TD>CPU VID <TD>0.689 V
<TR><TD><TD><TD><TD>Battery <TD>11.902 V
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Power Values:</B>
<TR><TD><TD><TD><TD>CPU Package <TD>1.38 W
<TR><TD><TD><TD><TD>CPU IA Cores <TD>0.47 W
<TR><TD><TD><TD><TD>CPU GT Cores <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>CPU Uncore <TD>0.67 W
<TR><TD><TD><TD><TD>DIMM <TD>0.24 W
<TR><TD><TD><TD><TD>Battery Charge Rate <TD>-6.78 W
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="cpu">CPU</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Properties:</B>
<TR><TD><TD><TD><TD>CPU Type <TD>QuadCore Intel Core i5-10210U, 3400 MHz (34 x 100)
<TR><TD><TD><TD><TD>CPU Alias <TD>Comet Lake-U
<TR><TD><TD><TD><TD>CPU Stepping <TD>V0
<TR><TD><TD><TD><TD>Instruction Set <TD>x86, x86-64, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2, FMA, AES
<TR><TD><TD><TD><TD>Original Clock <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>Min / Max CPU Multiplier <TD>4x / 21x
<TR><TD><TD><TD><TD>Engineering Sample <TD>No
<TR><TD><TD><TD><TD>L1 Code Cache <TD>32 KB per core
<TR><TD><TD><TD><TD>L1 Data Cache <TD>[ TRIAL VERSION ]
<TR><TD><TD><TD><TD>L2 Cache <TD>256 KB per core (On-Die, ECC, Full-Speed)
<TR><TD><TD><TD><TD>L3 Cache <TD>6 MB (On-Die, ECC, Full-Speed)
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Physical Info:</B>
<TR><TD><TD><TD><TD>Package Type <TD>1528 Ball BGA
<TR><TD><TD><TD><TD>Package Size <TD>46 mm x 24 mm
<TR><TD><TD><TD><TD>Process Technology <TD>13MiM, 14 nm, CMOS, Cu, High-K + Metal Gate
<TR><TD><TD><TD><TD>Typical Power <TD>15 W
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Manufacturer:</B>
<TR><TD><TD><TD><TD>Company Name <TD>Intel Corporation
<TR><TD><TD><TD><TD>Product Information <TD><A HREF="https://ark.intel.com/content/www/us/en/ark/search.html?q=Intel%20Core%20i5-10210U" TARGET=blank>https://ark.intel.com/content/www/us/en/ark/search.html?q=Intel%20Core%20i5-10210U</A>
<TR><TD><TD><TD><TD>Driver Update <TD><A HREF="http://www.aida64.com/goto/?p=drvupdates" TARGET=blank>http://www.aida64.com/goto/?p=drvupdates</A>
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Multi CPU:</B>
<TR><TD><TD><TD><TD>CPU #1 <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz, 2112 MHz
<TR><TD><TD><TD><TD>CPU #2 <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz, 2112 MHz
<TR><TD><TD><TD><TD>CPU #3 <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz, 2112 MHz
<TR><TD><TD><TD><TD>CPU #4 <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz, 2112 MHz
<TR><TD><TD><TD><TD>CPU #5 <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz, 2112 MHz
<TR><TD><TD><TD><TD>CPU #6 <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz, 2112 MHz
<TR><TD><TD><TD><TD>CPU #7 <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz, 2112 MHz
<TR><TD><TD><TD><TD>CPU #8 <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz, 2112 MHz
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPU Utilization:</B>
<TR><TD><TD><TD><TD>CPU #1 / Core #1 / SMT Unit #1 <TD>0%
<TR><TD><TD><TD><TD>CPU #1 / Core #1 / SMT Unit #2 <TD>0%
<TR><TD><TD><TD><TD>CPU #1 / Core #2 / SMT Unit #1 <TD>0%
<TR><TD><TD><TD><TD>CPU #1 / Core #2 / SMT Unit #2 <TD>0%
<TR><TD><TD><TD><TD>CPU #1 / Core #3 / SMT Unit #1 <TD>0%
<TR><TD><TD><TD><TD>CPU #1 / Core #3 / SMT Unit #2 <TD>0%
<TR><TD><TD><TD><TD>CPU #1 / Core #4 / SMT Unit #1 <TD>0%
<TR><TD><TD><TD><TD>CPU #1 / Core #4 / SMT Unit #2 <TD>0%
</TABLE><BR><BR>
<TABLE WIDTH=100%><TD CLASS=pt><A NAME="cpuid">CPUID</A><TR><TD><HR></TABLE><TABLE><TR><TD WIDTH=16> <TD WIDTH=16><TD WIDTH=16><TD><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPUID Properties:</B>
<TR><TD><TD><TD><TD>CPUID Manufacturer <TD>GenuineIntel
<TR><TD><TD><TD><TD>CPUID CPU Name <TD>Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz
<TR><TD><TD><TD><TD>CPUID Revision <TD>000806ECh
<TR><TD><TD><TD><TD>IA Brand ID <TD>00h (Unknown)
<TR><TD><TD><TD><TD>Platform ID <TD>36h / MC 04h (BGA1528)
<TR><TD><TD><TD><TD>Microcode Update Revision <TD>D6h
<TR><TD><TD><TD><TD>SMT / CMP Units <TD>2 / 4
<TR><TD><TD><TD><TD>Tjmax Temperature <TD>100 °C (212 °F)
<TR><TD><TD><TD><TD>CPU Thermal Design Power (TDP) <TD>15 W
<TR><TD><TD><TD><TD>CPU Thermal Design Current (TDC) <TD>90 A
<TR><TD><TD><TD><TD>CPU Max Power Limit <TD>Unlimited Power / Unlimited Time
<TR><TD><TD><TD><TD>CPU Power Limit 1 (Long Duration) <TD>25 W / 28.00 sec (Unlocked)
<TR><TD><TD><TD><TD>CPU Power Limit 2 (Short Duration) <TD>29 W / 2.44 ms (Unlocked)
<TR><TD><TD><TD><TD>Max Turbo Boost Multipliers <TD>1C: 42x, 2C: 41x, 3C: 39x, 4C: 39x
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Instruction Set:</B>
<TR><TD><TD><TD><TD>64-bit x86 Extension (AMD64, Intel64) <TD>Supported
<TR><TD><TD><TD><TD>AMD 3DNow! <TD>Not Supported
<TR><TD><TD><TD><TD>AMD 3DNow! Professional <TD>Not Supported
<TR><TD><TD><TD><TD>AMD 3DNowPrefetch <TD>Supported
<TR><TD><TD><TD><TD>AMD Enhanced 3DNow! <TD>Not Supported
<TR><TD><TD><TD><TD>AMD Extended MMX <TD>Not Supported
<TR><TD><TD><TD><TD>AMD FMA4 <TD>Not Supported
<TR><TD><TD><TD><TD>AMD MisAligned SSE <TD>Not Supported
<TR><TD><TD><TD><TD>AMD SSE4A <TD>Not Supported
<TR><TD><TD><TD><TD>AMD XOP <TD>Not Supported
<TR><TD><TD><TD><TD>Cyrix Extended MMX <TD>Not Supported
<TR><TD><TD><TD><TD>Enhanced REP MOVSB/STOSB <TD>Supported
<TR><TD><TD><TD><TD>Enqueue Stores <TD>Not Supported
<TR><TD><TD><TD><TD>Galois Field New Instructions (GFNI) <TD>Not Supported
<TR><TD><TD><TD><TD>Float-16 Conversion Instructions <TD>Supported, Enabled
<TR><TD><TD><TD><TD>IA-64 <TD>Not Supported
<TR><TD><TD><TD><TD>IA AES Extensions <TD>Supported
<TR><TD><TD><TD><TD>IA AMX-BF16 <TD>Not Supported
<TR><TD><TD><TD><TD>IA AMX-INT8 <TD>Not Supported
<TR><TD><TD><TD><TD>IA AMX Tile Architecture (AMX-TILE) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX <TD>Supported, Enabled
<TR><TD><TD><TD><TD>IA AVX2 <TD>Supported, Enabled
<TR><TD><TD><TD><TD>IA AVX-512 (AVX512F) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 4x Fused Multiply-Add Single Precision (AVX512_4FMAPS) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 4x Neural Network Instructions (AVX512_4VNNIW) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 52-bit Integer Multiply-Add Instructions (AVX512_IFMA) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 BF16 (AVX512_BF16) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Bit Algorithm (AVX512_BITALG) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Byte and Word Instructions (AVX512BW) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Conflict Detection Instructions (AVX512CD) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Doubleword and Quadword Instructions (AVX512DQ) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Exponential and Reciprocal Instructions (AVX512ER) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 FP16 (AVX512_FP16) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Intersection (AVX512_VP2INTERSECT) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Neural Network Instructions (AVX512_VNNI) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Prefetch Instructions (AVX512PF) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Vector Bit Manipulation Instructions (AVX512_VBMI) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Vector Bit Manipulation Instructions 2 (AVX512_VBMI2) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 Vector Length Extensions (AVX512VL) <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX-512 VPOPCNTDQ <TD>Not Supported
<TR><TD><TD><TD><TD>IA AVX Vector Neural Network Instructions (AVX-VNNI) <TD>Not Supported
<TR><TD><TD><TD><TD>IA BMI1 <TD>Supported
<TR><TD><TD><TD><TD>IA BMI2 <TD>Supported
<TR><TD><TD><TD><TD>IA FMA <TD>Supported, Enabled
<TR><TD><TD><TD><TD>IA MMX <TD>Supported
<TR><TD><TD><TD><TD>IA SHA Extensions <TD>Not Supported
<TR><TD><TD><TD><TD>IA SSE <TD>Supported
<TR><TD><TD><TD><TD>IA SSE2 <TD>Supported
<TR><TD><TD><TD><TD>IA SSE3 <TD>Supported
<TR><TD><TD><TD><TD>IA Supplemental SSE3 <TD>Supported
<TR><TD><TD><TD><TD>IA SSE4.1 <TD>Supported
<TR><TD><TD><TD><TD>IA SSE4.2 <TD>Supported
<TR><TD><TD><TD><TD>Vector AES (VAES) <TD>Not Supported
<TR><TD><TD><TD><TD>VIA Alternate Instruction Set <TD>Not Supported
<TR><TD><TD><TD><TD>ADCX / ADOX Instruction <TD>Supported
<TR><TD><TD><TD><TD>CLDEMOTE Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>CLFLUSH Instruction <TD>Supported
<TR><TD><TD><TD><TD>CLFLUSHOPT Instruction <TD>Supported
<TR><TD><TD><TD><TD>CLWB Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>CLZERO Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>CMPXCHG8B Instruction <TD>Supported
<TR><TD><TD><TD><TD>CMPXCHG16B Instruction <TD>Supported
<TR><TD><TD><TD><TD>Conditional Move Instruction <TD>Supported
<TR><TD><TD><TD><TD>Fast Short CMPSB & SCASB Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>Fast Short REP MOV Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>Fast Short STOSB Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>Fast Zero-Length MOVSB Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>HRESET Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>INVLPGB Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>INVPCID Instruction <TD>Supported
<TR><TD><TD><TD><TD>LAHF / SAHF Instruction <TD>Supported
<TR><TD><TD><TD><TD>LZCNT Instruction <TD>Supported
<TR><TD><TD><TD><TD>MCOMMIT Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>MONITOR / MWAIT Instruction <TD>Supported
<TR><TD><TD><TD><TD>MONITORX / MWAITX Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>MOVBE Instruction <TD>Supported
<TR><TD><TD><TD><TD>MOVDIR64B Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>MOVDIRI Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>PCLMULQDQ Instruction <TD>Supported
<TR><TD><TD><TD><TD>PCOMMIT Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>PCONFIG Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>POPCNT Instruction <TD>Supported
<TR><TD><TD><TD><TD>PREFETCHWT1 Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>PTWRITE Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>RDFSBASE / RDGSBASE / WRFSBASE / WRGSBASE Instruction <TD>Supported
<TR><TD><TD><TD><TD>RDPRU Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>RDRAND Instruction <TD>Supported
<TR><TD><TD><TD><TD>RDSEED Instruction <TD>Supported
<TR><TD><TD><TD><TD>RDTSCP Instruction <TD>Supported
<TR><TD><TD><TD><TD>SKINIT / STGI Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>SYSCALL / SYSRET Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>SYSENTER / SYSEXIT Instruction <TD>Supported
<TR><TD><TD><TD><TD>Trailing Bit Manipulation Instructions <TD>Not Supported
<TR><TD><TD><TD><TD>VIA FEMMS Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>VPCLMULQDQ Instruction <TD>Not Supported
<TR><TD><TD><TD><TD>WBNOINVD Instruction <TD>Not Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Security Features:</B>
<TR><TD><TD><TD><TD>Advanced Cryptography Engine (ACE) <TD>Not Supported
<TR><TD><TD><TD><TD>Advanced Cryptography Engine 2 (ACE2) <TD>Not Supported
<TR><TD><TD><TD><TD>Control-flow Enforcement Technology - Indirect Branch Tracking (CET_IBT) <TD>Not Supported
<TR><TD><TD><TD><TD>Control-flow Enforcement Technology - Shadow Stack (CET_SS) <TD>Not Supported
<TR><TD><TD><TD><TD>Data Execution Prevention (DEP, NX, EDB) <TD>Supported
<TR><TD><TD><TD><TD>Enhanced Indirect Branch Restricted Speculation <TD>Supported
<TR><TD><TD><TD><TD>Hardware Random Number Generator (RNG) <TD>Not Supported
<TR><TD><TD><TD><TD>Hardware Random Number Generator 2 (RNG2) <TD>Not Supported
<TR><TD><TD><TD><TD>Indirect Branch Predictor Barrier (IBPB) <TD>Supported
<TR><TD><TD><TD><TD>Indirect Branch Restricted Speculation (IBRS) <TD>Supported
<TR><TD><TD><TD><TD>Key Locker <TD>Not Supported
<TR><TD><TD><TD><TD>L1D Flush <TD>Supported
<TR><TD><TD><TD><TD>MD_CLEAR <TD>Supported
<TR><TD><TD><TD><TD>Memory Protection Extensions (MPX) <TD>Supported
<TR><TD><TD><TD><TD>PadLock Hash Engine (PHE) <TD>Not Supported
<TR><TD><TD><TD><TD>PadLock Hash Engine 2 (PHE2) <TD>Not Supported
<TR><TD><TD><TD><TD>PadLock Montgomery Multiplier (PMM) <TD>Not Supported
<TR><TD><TD><TD><TD>PadLock Montgomery Multiplier 2 (PMM2) <TD>Not Supported
<TR><TD><TD><TD><TD>Processor Serial Number (PSN) <TD>Not Supported
<TR><TD><TD><TD><TD>Protection Keys for Supervisor-Mode Pages (PKS) <TD>Not Supported
<TR><TD><TD><TD><TD>Protection Keys for User-Mode Pages (PKU) <TD>Not Supported
<TR><TD><TD><TD><TD>Read Processor ID (RDPID) <TD>Not Supported
<TR><TD><TD><TD><TD>Rogue Data Cache Load (RDCL) <TD>Not Susceptible
<TR><TD><TD><TD><TD>Safer Mode Extensions (SMX) <TD>Not Supported
<TR><TD><TD><TD><TD>Secure Memory Encryption (SME) <TD>Not Supported
<TR><TD><TD><TD><TD>SGX Launch Configuration (SGX_LC) <TD>Not Supported
<TR><TD><TD><TD><TD>Software Guard Extensions (SGX) <TD>Supported
<TR><TD><TD><TD><TD>Single Thread Indirect Branch Predictors (STIBP) <TD>Supported
<TR><TD><TD><TD><TD>Speculative Store Bypass Disable (SSBD) <TD>Supported
<TR><TD><TD><TD><TD>SRBDS_CTRL <TD>Supported
<TR><TD><TD><TD><TD>Supervisor Mode Access Prevention (SMAP) <TD>Supported
<TR><TD><TD><TD><TD>Supervisor Mode Execution Protection (SMEP) <TD>Supported
<TR><TD><TD><TD><TD>Total Memory Encryption (TME) <TD>Not Supported
<TR><TD><TD><TD><TD>User-Mode Instruction Prevention (UMIP) <TD>Not Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Power Management Features:</B>
<TR><TD><TD><TD><TD>APM Power Reporting <TD>Not Supported
<TR><TD><TD><TD><TD>Application Power Management (APM) <TD>Not Supported
<TR><TD><TD><TD><TD>Automatic Clock Control <TD>Supported
<TR><TD><TD><TD><TD>Configurable TDP (cTDP) <TD>Not Supported
<TR><TD><TD><TD><TD>Connected Standby <TD>Not Supported
<TR><TD><TD><TD><TD>Core C6 State (CC6) <TD>Not Supported
<TR><TD><TD><TD><TD>Digital Thermometer <TD>Supported
<TR><TD><TD><TD><TD>Dynamic FSB Frequency Switching <TD>Not Supported
<TR><TD><TD><TD><TD>Enhanced Halt State (C1E) <TD>Supported, Enabled
<TR><TD><TD><TD><TD>Enhanced SpeedStep Technology (EIST, ESS) <TD>Supported, Enabled
<TR><TD><TD><TD><TD>Frequency ID Control <TD>Not Supported
<TR><TD><TD><TD><TD>Hardware P-State Control <TD>Not Supported
<TR><TD><TD><TD><TD>Hardware Thermal Control (HTC) <TD>Not Supported
<TR><TD><TD><TD><TD>LongRun <TD>Not Supported
<TR><TD><TD><TD><TD>LongRun Table Interface <TD>Not Supported
<TR><TD><TD><TD><TD>Overstress <TD>Not Supported
<TR><TD><TD><TD><TD>Package C6 State (PC6) <TD>Not Supported
<TR><TD><TD><TD><TD>Parallax <TD>Not Supported
<TR><TD><TD><TD><TD>PowerSaver 1.0 <TD>Not Supported
<TR><TD><TD><TD><TD>PowerSaver 2.0 <TD>Not Supported
<TR><TD><TD><TD><TD>PowerSaver 3.0 <TD>Not Supported
<TR><TD><TD><TD><TD>Processor Duty Cycle Control <TD>Supported
<TR><TD><TD><TD><TD>Running Average Power Limit (RAPL) <TD>Not Supported
<TR><TD><TD><TD><TD>Software Thermal Control <TD>Not Supported
<TR><TD><TD><TD><TD>SpeedShift (SST, HWP) <TD>Supported, Disabled
<TR><TD><TD><TD><TD>Temperature Sensing Diode <TD>Not Supported
<TR><TD><TD><TD><TD>Thermal Monitor 1 <TD>Supported
<TR><TD><TD><TD><TD>Thermal Monitor 2 <TD>Supported
<TR><TD><TD><TD><TD>Thermal Monitor 3 <TD>Not Supported
<TR><TD><TD><TD><TD>Thermal Monitoring <TD>Not Supported
<TR><TD><TD><TD><TD>Thermal Trip <TD>Not Supported
<TR><TD><TD><TD><TD>Voltage ID Control <TD>Not Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>Virtualization Features:</B>
<TR><TD><TD><TD><TD>AMD Virtual Interrupt Controller (AVIC) <TD>Not Supported
<TR><TD><TD><TD><TD>Decode Assists <TD>Not Supported
<TR><TD><TD><TD><TD>Encrypted Microcode Patch <TD>Not Supported
<TR><TD><TD><TD><TD>Encrypted State (SEV-ES) <TD>Not Supported
<TR><TD><TD><TD><TD>Extended Page Table (EPT) <TD>Supported
<TR><TD><TD><TD><TD>Flush by ASID <TD>Not Supported
<TR><TD><TD><TD><TD>Guest Mode Execute Trap Extension (GMET) <TD>Not Supported
<TR><TD><TD><TD><TD>Hypervisor <TD>Not Present
<TR><TD><TD><TD><TD>INVEPT Instruction <TD>Supported
<TR><TD><TD><TD><TD>INVVPID Instruction <TD>Supported
<TR><TD><TD><TD><TD>LBR Virtualization <TD>Not Supported
<TR><TD><TD><TD><TD>Memory Bandwidth Enforcement (MBE) <TD>Not Supported
<TR><TD><TD><TD><TD>Nested Paging (NPT, RVI) <TD>Not Supported
<TR><TD><TD><TD><TD>NRIP Save (NRIPS) <TD>Not Supported
<TR><TD><TD><TD><TD>PAUSE Filter Threshold <TD>Not Supported
<TR><TD><TD><TD><TD>PAUSE Intercept Filter <TD>Not Supported
<TR><TD><TD><TD><TD>Secure Encrypted Virtualization (SEV) <TD>Not Supported
<TR><TD><TD><TD><TD>Secure Virtual Machine (SVM, Pacifica) <TD>Not Supported
<TR><TD><TD><TD><TD>SVM Lock (SVML) <TD>Not Supported
<TR><TD><TD><TD><TD>Virtual Transparent Encryption (VTE) <TD>Not Supported
<TR><TD><TD><TD><TD>Virtualized GIF (vGIF) <TD>Not Supported
<TR><TD><TD><TD><TD>Virtualized VMLOAD and VMSAVE <TD>Not Supported
<TR><TD><TD><TD><TD>Virtual Machine Extensions (VMX, Vanderpool) <TD>Supported
<TR><TD><TD><TD><TD>Virtual Processor ID (VPID) <TD>Supported
<TR><TD><TD><TD><TD>VMCB Clean Bits <TD>Not Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPUID Features:</B>
<TR><TD><TD><TD><TD>1 GB Page Size <TD>Supported
<TR><TD><TD><TD><TD>36-bit Page Size Extension <TD>Supported
<TR><TD><TD><TD><TD>5-Level Paging <TD>Not Supported
<TR><TD><TD><TD><TD>64-bit DS Area <TD>Supported
<TR><TD><TD><TD><TD>Adaptive Overclocking <TD>Not Supported
<TR><TD><TD><TD><TD>Address Region Registers (ARR) <TD>Not Supported
<TR><TD><TD><TD><TD>Code and Data Prioritization Technology (CDP) <TD>Not Supported
<TR><TD><TD><TD><TD>Core Performance Boost (CPB) <TD>Not Supported
<TR><TD><TD><TD><TD>Core Performance Counters <TD>Not Supported
<TR><TD><TD><TD><TD>CPL Qualified Debug Store <TD>Supported
<TR><TD><TD><TD><TD>Data Breakpoint Extension <TD>Not Supported
<TR><TD><TD><TD><TD>Debug Trace Store <TD>Supported
<TR><TD><TD><TD><TD>Debugging Extension <TD>Supported
<TR><TD><TD><TD><TD>Deprecated FPU CS and FPU DS <TD>Supported
<TR><TD><TD><TD><TD>Direct Cache Access <TD>Not Supported
<TR><TD><TD><TD><TD>Dynamic Acceleration Technology (IDA) <TD>Not Supported
<TR><TD><TD><TD><TD>Dynamic Configurable TDP (DcTDP) <TD>Not Supported
<TR><TD><TD><TD><TD>Enhanced Hardware Feedback Interface (EHFI) <TD>Not Supported
<TR><TD><TD><TD><TD>Extended APIC Register Space <TD>Not Supported
<TR><TD><TD><TD><TD>Fast Save & Restore <TD>Supported
<TR><TD><TD><TD><TD>Hardware Feedback Interface (HFI) <TD>Not Supported
<TR><TD><TD><TD><TD>Hardware Lock Elision (HLE) <TD>Not Supported
<TR><TD><TD><TD><TD>Hybrid Boost <TD>Not Supported
<TR><TD><TD><TD><TD>Hybrid CPU <TD>Not Supported
<TR><TD><TD><TD><TD>Hyper-Threading Technology (HTT) <TD>Supported, Enabled
<TR><TD><TD><TD><TD>Instruction Based Sampling <TD>Not Supported
<TR><TD><TD><TD><TD>Invariant Time Stamp Counter <TD>Supported
<TR><TD><TD><TD><TD>L1 Context ID <TD>Not Supported
<TR><TD><TD><TD><TD>L2I Performance Counters <TD>Not Supported
<TR><TD><TD><TD><TD>Lightweight Profiling <TD>Not Supported
<TR><TD><TD><TD><TD>Local APIC On Chip <TD>Supported
<TR><TD><TD><TD><TD>Machine Check Architecture (MCA) <TD>Supported
<TR><TD><TD><TD><TD>Machine Check Exception (MCE) <TD>Supported
<TR><TD><TD><TD><TD>Memory Configuration Registers (MCR) <TD>Not Supported
<TR><TD><TD><TD><TD>Memory Protection Range Registers (MPRR) <TD>Not Supported
<TR><TD><TD><TD><TD>Memory Type Range Registers (MTRR) <TD>Supported
<TR><TD><TD><TD><TD>Model Specific Registers (MSR) <TD>Supported
<TR><TD><TD><TD><TD>NB Performance Counters <TD>Not Supported
<TR><TD><TD><TD><TD>Page Attribute Table (PAT) <TD>Supported
<TR><TD><TD><TD><TD>Page Global Extension <TD>Supported
<TR><TD><TD><TD><TD>Page Size Extension (PSE) <TD>Supported
<TR><TD><TD><TD><TD>Pending Break Event (PBE) <TD>Supported
<TR><TD><TD><TD><TD>Performance Time Stamp Counter (PTSC) <TD>Not Supported
<TR><TD><TD><TD><TD>Physical Address Extension (PAE) <TD>Supported
<TR><TD><TD><TD><TD>Process Context Identifiers (PCID) <TD>Supported
<TR><TD><TD><TD><TD>Processor Feedback Interface <TD>Not Supported
<TR><TD><TD><TD><TD>Processor Trace (PT) <TD>Supported
<TR><TD><TD><TD><TD>Resource Director Technology Allocation (RDT-A) <TD>Not Supported
<TR><TD><TD><TD><TD>Resource Director Technology Monitoring (RDT-M) <TD>Not Supported
<TR><TD><TD><TD><TD>Restricted Transactional Memory (RTM) <TD>Not Supported
<TR><TD><TD><TD><TD>Self-Snoop <TD>Supported
<TR><TD><TD><TD><TD>Time Stamp Counter (TSC) <TD>Supported
<TR><TD><TD><TD><TD>Time Stamp Counter Adjust <TD>Supported
<TR><TD><TD><TD><TD>TSX Suspend Load Address Tracking <TD>Not Supported
<TR><TD><TD><TD><TD>Turbo Boost <TD>Supported, Enabled
<TR><TD><TD><TD><TD>Turbo Boost Max 3.0 <TD>Not Supported
<TR><TD><TD><TD><TD>User Interrupts (UINTR) <TD>Not Supported
<TR><TD><TD><TD><TD>Virtual Mode Extension <TD>Supported
<TR><TD><TD><TD><TD>Watchdog Timer <TD>Not Supported
<TR><TD><TD><TD><TD>x2APIC <TD>Supported, Disabled
<TR><TD><TD><TD><TD>XGETBV / XSETBV OS Enabled <TD>Supported
<TR><TD><TD><TD><TD>XSAVE / XRSTOR / XSETBV / XGETBV Extended States <TD>Supported
<TR><TD><TD><TD><TD>XSAVEOPT <TD>Supported
<TR><TD>
<TR><TD><TD><TD COLSPAN=3><B>CPUID Registers (CPU #0):</B>
<TR><TD><TD><TD><TD>CPUID 00000000 <TD>00000016-756E6547-6C65746E-49656E69 [GenuineIntel]
<TR><TD><TD><TD><TD>CPUID 00000001 <TD>000806EC-00100800-7FFAFBBF-BFEBFBFF
<TR><TD><TD><TD><TD>CPUID 00000002 <TD>76036301-00F0B5FF-00000000-00C30000
<TR><TD><TD><TD><TD>CPUID 00000003 <TD>00000000-00000000-00000000-00000000
<TR><TD><TD><TD><TD>CPUID 00000004 <TD>1C004121-01C0003F-0000003F-00000000 [SL 00]
<TR><TD><TD><TD><TD>CPUID 00000004 <TD>1C004122-01C0003F-0000003F-00000000 [SL 01]
<TR><TD><TD><TD><TD>CPUID 00000004 <TD>1C004143-00C0003F-000003FF-00000000 [SL 02]
<TR><TD><TD><TD><TD>CPUID 00000004 <TD>1C03C163-02C0003F-00001FFF-00000006 [SL 03]
<TR><TD><TD><TD><TD>CPUID 00000005 <TD>00000040-00000040-00000003-11142120