-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssdtPRGen.sh
executable file
·4789 lines (4350 loc) · 157 KB
/
ssdtPRGen.sh
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
#!/bin/bash
#
# Script (ssdtPRGen.sh) to create ssdt-pr.dsl for Apple Power Management Support.
#
# Version 0.9 - Copyright (c) 2012 by RevoGirl
# Version 14.0 - Copyright (c) 2014 by Pike <[email protected]>
#
# Updates:
# - Added support for Ivy Bridge (Pike, January 2013)
# - Filename error fixed (Pike, January 2013)
# - Namespace error fixed in _printScopeStart (Pike, January 2013)
# - Model and board-id checks added (Pike, January 2013)
# - SMBIOS cpu-type check added (Pike, January 2013)
# - Copy/paste error fixed (Pike, January 2013)
# - Method ACST added to CPU scopes for IB CPUPM (Pike, January 2013)
# - Method ACST corrected for latest version of iasl (Dave, January 2013)
# - Changed path/filename to ~/Desktop/SSDT_PR.dsl (Dave, January 2013)
# - P-States are now one-liners instead of blocks (Pike, January 2013)
# - Support for flexible ProcessorNames added (Pike, Februari 2013)
# - Better feedback and Debug() injection added (Pike, Februari 2013)
# - Automatic processor type detection (Pike, Februari 2013)
# - TDP and processor type are now optional arguments (Pike, Februari 2013)
# - system-type check (used by X86PlatformPlugin) added (Pike, Februari 2013)
# - ACST injection for all logical processors (Pike, Februari 2013)
# - Introducing a stand-alone version of method _DSM (Pike, Februari 2013)
# - Fix incorrect turbo range (Pike, Februari 2013)
# - Restore IFS before return (Pike, Februari 2013)
# - Better/more complete feedback added (Jeroen, Februari 2013)
# - Processor data for desktop/mobile and server CPU's added (Jeroen, Februari 2013)
# - Improved power calculation, matching Apple's new algorithm (Pike, Februari 2013)
# - Fix iMac13,N latency and power values for C3 (Jeroen/Pike, Februari 2013)
# - IASL failed to launch when path included spaces (Pike, Februari 2013)
# - Typo in cpu-type check fixed (Jeroen, Februari 2013)
# - Error in CPU data (i5-3317U) fixed (Pike, Februari 2013)
# - Setting added for the target path/filename (Jeroen, Februari 2013)
# - Initial implementation of auto-copy (Jeroen, Februari 2013)
# - Additional checks added for cpu data/turbo modes (Jeroen, Februari 2013)
# - Undo filename change done by Jeroen (Pike, Februari 2013)
# - Improved/faster search algorithm to locate iasl (Jeroen, Februari 2013)
# - Bug fix, automatic revision update and better feedback (Pike, Februari 2013)
# - Turned auto copy on (Jeroen, Februari 2013)
# - Download IASL if it isn't there where we expect it (Pike, Februari 2013)
# - A sweet dreams update for Pike who wants better feedback (Jeroen, Februari 2013)
# - First set of Haswell processors added (Pike/Jeroen, Februari 2013)
# - More rigid testing for user errors (Pike/Jeroen, Februari 2013)
# - Getting ready for new Haswell setups (Pike/Jeroen, Februari 2013)
# - Typo and ssdtPRGen.command breakage fixed (Jeroen, Februari 2013)
# - Target folder check added for _findIASL (Pike, Februari 2013)
# - Set $baseFreqyency to $lfm when the latter isn't zero (Pike, Februari 2013)
# - Check PlatformSupport.plist for supported model/board-id added (Jeroen, Februari 2013)
# - New/expanded Sandy Bridge CPU lists, thanks to Francis (Jeroen, Februari 2013)
# - More preparations for the official Haswell launch (Pike, Februari 2013)
# - Fix for home directory with space characters (Pike, Februari 2013)
# - Sandy Bridge CPU lists rearranged/extended, thanks to 'stinga11' (Jeroen, Februari 2013)
# - Now supporting up to 16 logical cores (Jeroen, Februari 2013)
# - Improved argument checking, now supporting a fourth argument (Jeroen/Pike, Februari 2013)
# - Suppress override output when possible (Jeroen, Februari 2013)
# - Get processor label from ioreg (Jeroen/Pike, Februari 2013)
# - Create /usr/local/bin when missing (Jeroen, Februari 2013)
# - Changed warnings to make them pop out in the on-screen log (Pike, March 2013)
# - Now using the ACPI processor names of the running system (Pike, March 2013)
# - Now supporting up to 256/0xff logical processors (Pike, March 2013)
# - Command line argument for processor labels added (Pike, March 2013)
# - Bug fix, overriding the cpu type displayed the wrong name (Jeroen, March 2013)
# - Automatic detection of CPU scopes added (Pike, March 2013)
# - Show warnings for Sandy Bridge systems as well (Jeroen, March 2013)
# - New Intel Haswell processors added (Jeroen, April 2013)
# - Improved Processor declaration detection (Jeroen/Pike, April 2013)
# - New path for Clover revision 1277 (Jeroen, April 2013)
# - Haswell's minimum core frequency is 800 MHz (Jeroen, April 2013)
# - CPU signature output added (Jeroen/Pike, April 2013)
# - Updating to v6.4 after Jeroen's accidental RM of my local RevoBoot directory (Pike, May 2013)
# - v6.5 Updating to v6.5 with bugs fixes and EFI partition checking for Clover compatibility (Pike, May 2013)
# - Output of Clover ACPI directory detection fixed (Pike, June 2013)
# - Haswell CPUs added (Jeroen, June 2013)
# - board-id's for new MacBookAir6,[1/2] added (Pike, June 2013)
# - board-id's for new iMac14,[1/2/3] added (Pike, October 2013)
# - board-id's for new MacBookPro11,[1/2/3] added (Pike, October 2013)
# - Cleanups and board-id for new MacPro6,1 added (Pike, October 2013)
# – Frequency error in i7-4700MQ data fixed, thanks to RehabMan (Pike, November 2013)
# - Intel i5-4200M added (Pike, December 2013)
# - LFM fixed in the Intel i7-3930K data (Pike, December 2013)
# - Intel E5-2695 V2 added (Pike, December 2013)
# - Intel i3-3250 added (Pike, December 2013)
# - Sed RegEx error fixed in _getCPUtype (Pike, January 2014)
# - Fixed a typo 's/i7-2640M/i7-2674M/' (Pike, January 2014)
# - Fixed a typo 's/gHaswellCPUList/gServerHaswellCPUList/' (Pike, January 2014)
# - Intel E5-26nn v2 Xeon Processors added (Pike, January 2014)
# - v8.0 Show the CPU brandstring at all times (Pike, January 2014)
# - Fixed cpu-type suggestion for MacPro6,1 (Pike, January 2014)
# - Intel i7-4771 added (Pike, January 2014)
# - A couple Intel Haswell/Crystal Well processor models added (Pike, January 2014)
# - Moved a couple of Ivy Bridge desktop model processors to the right spot (Pike, January 2014)
# - Experimental code added for Gringo Vermelho (Pike, January 2014)
# - Fixed a typo so that checking gIvyWorkAround really works (Pike, January 2014)
# - Added extra OS checks (as a test) to filter out possibly unwanted LFM P-States (Pike, January 2014)
# - Let gIvyWorkAround control the additional LFM P-States (Pike, January 2014)
# - Fixed a typo in processor data (i7-4960K should be i7-4960X) (Pike, January 2014)
# - v9.5 Missing Haswell i3 processor data added (Pike, Februari 2014)
# - TDP can now also be a floating-point number (Pike, Februari 2014)
# - New Broadwell processor preps (Pike, Februari 2014)
# - Reformatted code layout (Pike, Februari 2014)
# - Changed a bunch of misnamed (local) variables (Pike, Februari 2014)
# - Fixed a couple of let/local mixups (Pike, Februari 2014)
# - Destination path/filename no longer defauls to RevoBoot (Pike, Februari 2014)
# - Support for RevoEFI added (Pike, Februari 2014)
# - Changed SSDT.dsl open behaviour/ask for confirmation (Pike, Februari 2014)
# - Additional processor scope check to get \_SB_ (Pike, Februari 2014)
# - Set gIvyWorkAround=0 when XCPM is being used (Pike, Februari 2014)
# - Added a lost return (Pike, Februari 2014)
# - Fixed some layout issues (Pike, Februari 2014)
# - Removed a misleading piece of text (Pike, Februari 2014)
# - v10.0 Search for Scope (\_PR_) instead of just "_PR_" (Pike, Februari 2014)
# - Major rewrite/new routines added to search for the processor scope (Pike, Februari 2014)
# - New error message/added text about SMBIOS (Pike, Februari 2014)
# - Ask for confirmation when the script may break/produce errors (Pike, Februari 2014)
# - Double "${" error on line 1640 fixed (Pike, Februari 2014)
# - v11.0 gSystemType for Ivy Bridge desktop models fixed (Pike, Februari 2014)
# - major rewrite to support more flexible script arguments (Pike, Februari 2014)
# - lists with supported board-id/model combinations added (Pike, Februari 2014)
# - renamed argument -l to -s (Pike, Februari 2014)
# - argument -l is now used to override the number of logical processors (Pike, Februari 2014)
# - fixed cpu/bridge type override logic (Pike, Februari 2014)
# - more comments added (Pike, Februari 2014)
# - change bridge type from Sandy Bridge to Ivy Bridge when -w argument is used (Pike, Februari 2014)
# - Use Scope (_PR) {} if found for DSDT's without Processor declarations (Pike, Februari 2014)
# - less cluttered output (Pike, Februari 2014)
# - check all processor declarations instead of just the first one (Pike, Februari 2014)
# - show warning if not all processor declarations are found in the DSDT (Pike, Februari 2014)
# - first set of changes for multi-processor support (Pike, Februari 2014)
# - v12.0 inconsistency in argument -c values fixed (Pike, Februari 2014)
# - fixed a couple of typos (Pike, Februari 2014)
# - show less/ignore some debug warnings (Pike, Februari 2014)
# - multi-processor support added (Pike, Februari 2014)
# - fixed an issue when argument -p was used (Pike, Februari 2014)
# - inconsistency in argument -a fixed (Pike, Februari 2014)
# - mixup of $data / $matchingData fixed (Pike, Februari 2014)
# - better deviceName check/stop warning with wrong values (Pike, Februari 2014)
# - skip inactive cores with -k clock-frequency in function _getProcessorNames (Pike, March 2014)
# - processor data for the Intel E5-2620 added (Pike, March 2014)
# - v12.5 processor data for the Intel i3-3250T and i3-3245 added (Pike, March 2014)
# - processor data for the Intel E5-1600 v2 product family added (Pike, March 2014)
# - v12.7 processor data for the Intel E5-1650 v2 fixed (Pike, March 2014)
# - v12.8 processor data for the Intel i5-4300 mobile processor series added (Pike, March 2014)
# - v12.9 processor data for the Intel E5-2600 and E5-4600 processor series added (Pike, March 2014)
# - v13.0 removed unused variable 'checkGlobalProcessorScope' (Pike, April 2014)
# - missing deviceName in two calls to _debugPrint fixed (Pike, April 2014)
# - fixed a typo in help text for -d and now -d 2 also works again (Pike, April 2014)
# - made -help work (Pike, April 2014)
# - stop overwriting the ACPI processor scope name with the last one, by using $scopeIndex (Pike, April 2014)
# - debug data fixed/running processor was missing when the -p argument was used (Pike, April 2014)
# - more text hidden/only shown when -d [2/3] argument is used (Pike, April 2014)
# - improved multi-processor support (Pike, April 2014)
# - v13.1 enhanced _debugPrint with argument support (Pike, April 2014)
# - Haswell refresh (desktop) processor data added.
# - triple/quad byte package length support added .
# - typo in help text (-turbo) fixed.
# - opcode error ('Name' instead of 'Device') fixed.
# - v13.2 fix for https://github.com/Piker-Alpha/ssdtPRGen.sh/issues/21 (Pike, April 2014)
# - v13.3 additional Haswell refresh (desktop/mobile) processor data added (Pike, April 2014)
# - fix for https://github.com/Piker-Alpha/ssdtPRGen.sh/issues/25
# - TDP value for the i5-4200Y and i3-4010Y fixed.
# - v13.4 processor data for upcomming Xeon E3-12nn v3 models added (Pike, April 2014)
# - v13.5 processor data for i5-4440S,i5-4570TE,i5-4400E,i5-4402E and i5-4200H added (Pike, May 2014)
# - v13.6 processor data update for mobile i5/i7 and future Haswell-E processors (Pike, July 2014)
# - v13.7 moved some processor data from mobile to desktop definitions (Pike, August 2014)
# - fix for https://github.com/Piker-Alpha/ssdtPRGen.sh/issues/47
# - processor data for missing i3 Haswell processors added.
# - v13.8 processor data for i7-3900 Mobile Processor Extreme Edition added (Pike, September 2014)
# - v13.9 processor data for Xeon E5-16NN v3 and E5-26NN v3 Processor Series added (Pike, September 2014)
# - v14.0 zipped up data of acpiTableExtract tool added (Pike, October 2014)
# - Support for Yosemite added (no longer using ioreg to get ACPI table data).
# - Commit text/version information copied from Github (partly/too much work).
#
# Contributors:
# - Thanks to Dave, toleda and Francis for their help (bug fixes and other improvements).
# - Thanks to 'stinga11' for Sandy Bridge (E5) data and processor list errors.
# - Many thanks to Jeroen († 2013) for the CPU data, cleanups, renaming stuff and other improvements.
# - Thanks to 'philip_petev' for his help with Snow Leopard/egrep incompatibility.
# - Thanks to 'RehabMan' for his help with Snow Leopard/egrep incompatibility.
# - Thanks to 'BigDonkey' for his help with LFM (800 MHz) for Sandy Bridge mobility models.
# - Thanks to 'rtcl777' on Github issues for the tip about a typo in the iMac12 board-id's.
# - Thanks to 'xpamamadeus' for the Clover boot.log tip.
# - Thanks to 'rileyfreeman' for the Intel i7-3930K LFM value.
# - Thanks to 'Klonkrieger2' aka Mark for the tip about the sed RegEx error in _getCPUtype.
# - Thanks to 'dhnguyen92' on Github issues for the tip about a typo in the i7-2640M model data.
# - Thanks to 'fabiosun' on Github issues for the tip about a typo in the cpu-type check.
# - Thanks to 'Hackmodford ' on Github issues for testing/confirming that PM in Mavericks was changed.
# - Thanks to 'Rals2007' for reporting the double "${${" error on line 1640.
# - Thanks to 'MMMProd' for reporting the -eg instead of -eq error on line 3567.
# - Thanks to 'DKMN' for reporting the omision of the Intel E5-2620.
# - Thanks to 'nijntje' (blog) for reporting the omision of the Intel i3-3245.
# - Thanks to 't2m' for (blog) for reporting the omision of the Intel E5-1600 product family.
# - Thanks to 'arkanisman' for reporting the missing data of the Intel E5-2650.
# - Thanks to 'dsaltos' on Github issues for reporting the omision of the Intel i5-4400S.
#
# Bugs:
# - Bug reports can be filed at https://github.com/Piker-Alpha/RevoBoot/issues
# Please provide clear steps to reproduce the bug, the output of the
# script and the resulting SSDT.dsl Thank you!
#
# Usage (v11.0 and greater):
#
# - ./ssdtPRGen.sh -h[elp]
#
# set -x # Used for tracing errors (can be used anywhere in the script).
#================================= GLOBAL VARS ==================================
#
# Script version info.
#
gScriptVersion=14.0
#
# Initial xcpm mode. Default value is -1 (uninitialised).
#
let gXcpm=-1
#
# Change this when your CPU is stuck in Low Frequency Mode!
#
# 1 - Injects one extra Turbo P-State at he top with max-Turbo frequency + 1 MHz.
# 2 - Injects N extra Turbo P-States at the bottom.
# 3 - Injects both of them.
#
# Note: Will be changed to 0 in _checkForXCPM() when XCPM mode is detected.
#
let gIvyWorkAround=0
#
# Ask for confirmation before copying the new SSDT to the target location.
#
let gAutoCopy=1
#
# This is the target location that ssdt.aml will be copied to.
#
# Note: Do no change this - will be updated automatically for Clover/RevoBoot!
#
gDestinationPath="/Extra/"
#
# This is the filename used for the copy process
#
gDestinationFile="ssdt.aml"
#
# A value of 1 will make this script call iasl (compiles ssdt_pr.dsl)
#
# Note: Will be set to 0 when we failed to locate a copy of iasl!
#
let gCallIasl=1
#
# Open generated SSDT on request (default value is 2).
#
# 0 = don't open the generated SSDT.
# 1 = open the generated SSDT in the editor of your choice.
# 2 = ask for confirmation before opening the generated SSDT in the editor of your choice.
#
let gCallOpen=2
# 0 = no debug injection/debug statements executed.
# 1 = inject debug data.
# 3 = inject debug data and execute _debugPrint statements.
#
let gDebug=1
#
# Get user id
#
let gID=$(id -u)
#
# Lowest possible idle frequency (user configurable). Also known as Low Frequency Mode.
#
let gBaseFrequency=1600
#
# This is the default processor label (verified by _setProcessorLabel).
#
gProcLabel="CPU"
#
# The Processor scope will be initialised by _initProcessorScope).
#
gScope=""
#
# Legacy RevoBoot status (default value is 0).
#
let gIsLegacyRevoBoot=0
#
# Change this to 0 if you don't want additional styling (bold/underlined).
#
let gExtraStyling=1
#
# Global variable used by some functions to return a value to the callee.
#
let gFunctionReturn=0
#
# Global variable used for the used/target board-id.
#
gBoardID=""
#
# Global variable used for the used/target board-id.
#
gModelID=""
#
# Number of logical processors.
#
let gLogicalCPUs=0
#
# Clock frequency (uninitialised).
#
let gFrequency=-1
#
# Set to 1 if _PR scope is found in the DSDT.
#
let gScopePRFound=0
#
# For future use!
#
# Note: Set this to 0 when you want to inject ACPI Processor (...) {} declarations intead of External () objects.
#
let gInjectExternalObjects=1
#
# Output styling.
#
STYLE_RESET="[0m"
STYLE_BOLD="[1m"
STYLE_UNDERLINED="[4m"
#
# Other global variables.
#
gRevision='0x000'${gScriptVersion:0:2}${gScriptVersion:3:1}'00'
#
# Path and filename setup.
#
gPath=~/Desktop
gSsdtID="ssdt"
gSsdtPR="${gPath}/${gSsdtID}.dsl"
let gDesktopCPU=1
let gMobileCPU=2
let gServerCPU=3
let gSystemType=0
let gACST_CPU0=13
let gACST_CPU1=7
gTargetMacModel=""
let SANDY_BRIDGE=2
let IVY_BRIDGE=4
let HASWELL=8
let BROADWELL=16
#
# Global variable used as target cpu/bridge type.
#
let gBridgeType=-1
let gTypeCPU=0
let gProcessorStartIndex=0
gProcessorData="Unknown CPU"
gProcessorNumber=""
gBusFrequency=100
#
# Set to 1 after _setDestinationPath mounted the EFI partition.
#
let gUnmountEFIPartition=0
gProductName=$(sw_vers -productName)
gProductVersion="$(sw_vers -productVersion)"
gBuildVersion=$(sw_vers -buildVersion)
let gOSVersion=$(echo $gProductVersion | tr -d '.')
#
# Maximum Turbo Clock Speed (user configurable)
#
let gMaxOCFrequency=6300
let MAX_TURBO_FREQUENCY_ERROR=2
let MAX_TDP_ERROR=3
let TARGET_CPU_ERROR=4
let PROCESSOR_NUMBER_ERROR=5
let PROCESSOR_LABEL_LENGTH_ERROR=6
let PROCESSOR_NAMES_ERROR=7
let PROCESSOR_DECLARATION_ERROR=8
#
# First OS version number that no longer requires extra Low Frequency Mode P-States.
#
# Note: For future use (when we figured out what we need).
#
let LFM_REQUIRED_OS=1091
#
# Setup supported byte encodings
#
# Note: value is number of characters that we read.
#
let AML_SINGLE_BYTE_ENCODING=2
let AML_DUAL_BYTE_ENCODING=4
let AML_TRIPLE_BYTE_ENCODING=6
let AML_QUAD_BYTE_ENCODING=8
#
# Setup used AML encoding values.
#
AML_SCOPE_OPCODE=10
AML_DEVICE_OPCODE=5b82
AML_PROCESSOR_SCOPE_OPCODE=5b83
#
# Global variable with supported board-id / model name for Sandy Bridge processors.
#
gSandyBridgeModelData=(
Mac-942B5BF58194151B:iMac12,1
Mac-942B59F58194171B:iMac12,2
Mac-8ED6AF5B48C039E1:Macmini5,1
Mac-4BC72D62AD45599E:Macmini5,2
Mac-7BA5B2794B2CDB12:Macmini5,3
Mac-94245B3640C91C81:MacBookPro8,1
Mac-94245A3940C91C80:MacBookPro8,2
Mac-942459F5819B171B:MacBookPro8,3
Mac-C08A6BB70A942AC2:MacBookAir4,1
Mac-742912EFDBEE19B3:MacBookAir4,2
)
#
# Global variable with supported board-id / model name for Ivy Bridge processors.
#
gIvyBridgeModelData=(
Mac-00BE6ED71E35EB86:iMac13,1
Mac-FC02E91DDD3FA6A4:iMac13,2
Mac-031AEE4D24BFF0B1:Macmini6,1
Mac-F65AE981FFA204ED:Macmini6,2
Mac-4B7AC7E43945597E:MacBookPro9,1
Mac-6F01561E16C75D06:MacBookPro9,2
Mac-C3EC7CD22292981F:MacBookPro10,1
Mac-AFD8A9D944EA4843:MacBookPro10,2
Mac-66F35F19FE2A0D05:MacBookAir5,1
Mac-2E6FAB96566FE58C:MacBookAir5,2
Mac-F60DEB81FF30ACF6:MacPro6,1
)
#
# Global variable with supported board-id / model name for Haswell processors.
#
gHaswellModelData=(
Mac-031B6874CF7F642A:iMac14,1
Mac-27ADBB7B4CEE8E61:iMac14,2
Mac-77EB7D7DAF985301:iMac14,3
Mac-189A3D4F975D5FFC:MacBookPro11,1
Mac-3CBD00234E554E41:MacBookPro11,2
Mac-2BD1B31983FE1663:MacBookPro11,3
Mac-35C1E88140C3E6CF:MacBookAir6,1
Mac-7DF21CB3ED6977E5:MacBookAir6,2
Mac-F60DEB81FF30ACF6:MacPro6,1
)
#
# Global variable with supported board-id / model name for Broadwell processors.
#
gBroadwellModelData=(
)
#
# Processor Number, Max TDP, Low Frequency Mode, Clock Speed, Max Turbo Frequency, Cores, Threads
#
gServerSandyBridgeCPUList=(
# E5-2600 Xeon Processor Series
E5-2648L,70,1200,1800,2100,8,16
E5-2658,95,1200,2100,2400,8,16
E5-2687W,150,1200,3100,3800,8,16
E5-2680,130,1200,2700,3500,8,16
E5-2660,95,1200,2200,3000,8,16
E5-2650L,70,1200,1800,2300,8,16
E5-2630L,60,1200,2000,2500,6,12
E5-2643,130,1200,3300,3500,4,8
E5-2609,80,1200,2400,2400,4,4
E5-2667,130,1200,2900,3500,6,12
E5-2650,95,1200,2000,2800,8,16
E5-2640,95,1200,2500,3000,6,12
E5-2603,80,1200,1900,1800,4,4
E5-2630,95,1200,2300,2800,6,12
E5-2620,95,1200,2000,2500,6,12
E5-2670,115,1200,2600,3300,8,16
E5-2690,135,1200,2900,3800,8,16
E5-2665,115,1200,2400,3100,8,16
E5-2637,80,1200,3000,3500,2,2
# E5-4600 Xeon Processor Series
E5-4610,95,1200,2400,2900,6,12
E5-4640,95,1200,2400,2800,8,16
E5-4607,95,1200,2200,2200,6,12
E5-4650L,115,1200,2600,3100,8,16
E5-4620,95,1200,2200,2600,8,16
E5-4617,130,1200,2900,3400,6,6
E5-4603,95,1200,2000,2000,4,8
E5-4650,130,1200,2700,3300,8,16
# E5-1600 Xeon Processor Series
E5-1660,130,0,3300,3900,6,12
E5-1650,130,0,3200,3800,6,12
E5-1620,130,0,3600,3800,4,8
# E3-1200 Xeon Processor Series
E3-1290,95,0,3600,4000,4,8
E3-1280,95,0,3500,3900,4,8
E3-1275,95,0,3400,3800,4,8
E3-1270,80,0,3400,3800,4,8
E3-1260L,45,0,2400,3300,4,8
E3-1245,95,0,3300,3700,4,8
E3-1240,80,0,3300,3700,4,8
E3-1235,95,0,3200,3600,4,8
E3-1230,80,0,3200,3600,4,8
E3-1225,95,0,3100,3400,4,4
E3-1220L,20,0,2200,3400,2,4
E3-1220,80,0,3100,3400,4,4
)
gDesktopSandyBridgeCPUList=(
i7-35355,120,1600,2666,2666,4,4
# i7 Desktop Extreme Series
i7-3970X,150,1200,3500,4000,6,12
i7-3960X,130,1200,3300,3900,6,12
i7-3930K,130,1200,3200,3800,6,12
i7-3820,130,1200,3600,3800,4,8
# i7 Desktop series
i7-2600S,65,1600,2800,3800,4,8
i7-2600,95,1600,3400,3800,4,8
i7-2600K,95,1600,3400,3800,4,8
i7-2700K,95,1600,3500,3900,4,8
# i5 Desktop Series
i5-2300,95,1600,2800,3100,4,4
i5-2310,95,1600,2900,3200,4,4
i5-2320,95,1600,3000,3300,4,4
i5-2380P,95,1600,3100,3400,4,4
i5-2390T,35,1600,2700,3500,2,4
i5-2400S,65,1600,2500,3300,4,4
i5-2405S,65,1600,2500,3300,4,4
i5-2400,95,1600,3100,3400,4,4
i5-2450P,95,1600,3200,3500,4,4
i5-2500T,45,1600,2300,3300,4,4
i5-2500S,65,1600,2700,3700,4,4
i5-2500,95,1600,3300,3700,4,4
i5-2500K,95,1600,3300,3700,4,4
i5-2550K,95,1600,3400,3800,4,4
# i3 1200 Desktop Series
i3-2130,65,1600,3400,0,2,4
i3-2125,65,1600,3300,0,2,4
i3-2120T,35,1600,2600,0,2,4
i3-2120,65,1600,3300,0,2,4
i3-2115C,25,1600,2000,0,2,4
i3-2105,65,1600,3100,0,2,4
i3-2102,65,1600,3100,0,2,4
i3-2100T,35,1600,2500,0,2,4
i3-2100,65,1600,3100,0,2,4
)
gMobileSandyBridgeCPUList=(
# i7 Mobile Extreme Series
i7-2960XM,55,800,2700,3700,4,8
i7-2920XM,55,800,2500,3500,4,8
# i7 Mobile Series
i7-2860QM,45,800,2500,3600,4,8
i7-2820QM,45,800,2300,3400,4,8
i7-2760QM,45,800,2400,3500,4,8
i7-2720QM,45,800,2200,3300,4,8
i7-2715QE,45,800,2100,3000,4,8
i7-2710QE,45,800,2100,3000,4,8
i7-2677M,17,800,1800,2900,2,4
i7-2675QM,45,800,2200,3100,4,8
i7-2670QM,45,800,2200,3100,4,8
i7-2675M,17,800,1600,2700,2,4
i7-2655LE,25,800,2200,2900,2,4
i7-2649M,25,800,2300,3200,2,4
i7-2640M,35,800,2800,3500,2,4
i7-2637M,17,800,1700,2800,2,4
i7-2635QM,45,800,2000,2900,4,8
i7-2630QM,45,800,2000,2900,4,8
i7-2629M,25,800,2100,3000,2,4
i7-2620M,35,800,2700,3400,2,4
i7-2617M,17,800,1500,2600,2,4
i7-2610UE,17,800,1500,2400,2,4
# i5 Mobile Series
i5-2467M,17,800,1600,2300,2,4
i5-2450M,35,800,2300,3100,2,4
i5-2435M,35,800,2400,3000,2,4
i5-2430M,35,800,2400,3000,2,4
i5-2410M,35,800,2300,2900,2,4
i5-2557M,17,800,1700,2700,2,4
i5-2540M,35,800,2600,3300,2,4
i5-2537M,17,800,1400,2300,2,4
i5-2520M,35,800,2500,3200,2,4
i5-2515E,35,800,2500,3100,2,4
i5-2510E,35,800,2500,3100,2,4
# i3 2300 Mobile Series
i3-2377M,17,800,1500,0,2,4
i3-2370M,35,800,2400,0,2,4
i3-2367M,17,800,1400,0,2,4
i3-2365M,17,800,1400,0,2,4
i3-2357M,17,800,1300,0,2,4
i3-2350M,35,800,2300,0,2,4
i3-2348M,35,800,2300,0,2,4
i3-2340UE,17,800,1300,0,2,4
i3-2330M,35,800,2200,0,2,4
i3-2330E,35,800,2200,0,2,4
i3-2328M,35,800,2200,0,2,4
i3-2312M,35,800,2100,0,2,4
i3-2310M,35,800,2100,0,2,4
i3-2310E,35,800,2100,0,2,4
)
#
# Processor Number, Max TDP, Low Frequency Mode, Clock Speed, Max Turbo Frequency, Cores, Threads
#
gServerIvyBridgeCPUList=(
# E3-1200 Xeon Processor Series
'E3-1290 v2',87,1200,3700,4100,4,8
'E3-1280 v2',69,1200,3600,4000,4,8
'E3-1275 v2',77,1200,3500,3900,4,8
'E3-1270 v2',69,1200,3500,3900,4,8
'E3-1265L v2',45,1200,2500,3500,4,8
'E3-1245 v2',77,1200,3400,3800,4,8
'E3-1240 v2',69,1200,3400,3800,4,8
'E3-1230 v2',69,1200,3300,3700,4,8
'E3-1225 v2',77,1200,3200,3600,4,4
'E3-1220 v2',69,1200,3100,3500,4,4
'E3-1220L v2',17,1200,2300,3500,2,4
# E5-1600 Xeon Processor Series
'E5-1620 v2',130,1200,3700,3900,4,8
'E5-1650 v2',130,1200,3500,3900,6,12
'E5-1660 v2',130,1200,3700,4000,6,12
# E5-2600 Xeon Processor Series
'E5-2687W v2',150,1200,3400,4000,8,16
'E5-2658 v2 ',95,1200,2400,3000,10,20
'E5-2648L v2',70,1200,1900,2500,10,20
'E5-2628L v2',70,1200,1900,2400,8,16
'E5-2603 v2',80,1200,1800,1800,4,4
'E5-2637 v2',130,1200,3500,3800,4,8
'E5-2630L v2',60,1200,2400,2800,6,12
'E5-2630 v2',80,1200,2600,3100,6,12
'E5-2620 v2',80,1200,2100,2600,6,12
'E5-2618L v2',50,1200,2000,2000,6,12
'E5-2609 v2',80,1200,2500,2500,4,4
'E5-2697 v2',130,1200,2700,3500,12,24
'E5-2695 v2',115,1200,2400,3200,12,24
'E5-2690 v2',130,1200,3000,3600,10,20
'E5-2680 v2',115,1200,2800,3600,10,20
'E5-2670 v2',115,1200,2500,3300,10,20
'E5-2667 v2',130,1200,3300,4000,6,16
'E5-2660 v2',95,1200,2200,3000,10,20
'E5-2650L v2',70,1200,1700,2100,10,20
'E5-2650 v2',95,1200,2600,3400,8,16
'E5-2643 v2',130,1200,3500,3800,6,12
'E5-2640 v2',95,1200,2000,2500,8,16
)
gDesktopIvyBridgeCPUList=(
# Socket 2011 (Premium Power)
i7-4960X,130,1200,3600,4000,6,12
i7-4930K,130,1200,3400,3900,6,12
i7-4820K,130,1200,3700,3900,4,8
# i7-3700 Desktop Processor Series
i7-3770T,45,1600,2500,3700,4,8
i7-3770S,65,1600,3100,3900,4,8
i7-3770K,77,1600,3500,3900,4,8
i7-3770,77,1600,3400,3900,4,8
# i5-3500 Desktop Processor Series
i5-3570T,45,1600,2300,3300,4,4
i5-3570K,77,1600,3400,3800,4,4
i5-3570S,65,1600,3100,3800,4,4
i5-3570,77,1600,3400,3800,4,4
i5-3550S,65,1600,3000,3700,4,4
i5-3550,77,1600,3300,3700,4,4
# i5-3400 Desktop Processor Series
i5-3475S,65,1600,2900,3600,4,4
i5-3470S,65,1600,2900,3600,4,4
i5-3470,77,1600,3200,3600,4,4
i5-3470T,35,1600,2900,3600,2,4
i5-3450S,65,1600,2800,3500,4,4
i5-3450,77,1600,3100,3500,4,4
# i5-3300 Desktop Processor Series
i5-3350P,69,1600,3100,3300,4,4
i5-3330S,65,1600,2700,3200,4,4
i5-3333S,65,1600,2700,3200,4,4
i5-3330S,65,1600,3700,3200,4,4
i5-3330,77,1600,3000,3200,4,4
# i3-3200 Desktop Processor Series
i3-3250,55,1600,3500,0,2,4
i3-3250T,25,1600,3000,0,2,4
i3-3245,55,1600,3400,0,2,4
i3-3240,55,1600,3400,0,2,4
i3-3240T,35,1600,2900,0,2,4
i3-3225,55,1600,3300,0,2,4
i3-3220,55,1600,3300,0,2,4
i3-3220T,35,1600,2800,0,2,4
i3-3210,55,1600,3200,0,2,4
)
gMobileIvyBridgeCPUList=(
# i7-3900 Mobile Processor Extreme Edition
i7-3940XM,55,1200,3000,3900,4,8
i7-3920XM,55,1200,2900,3800,4,8
# i7-3800 Mobile Processor Series
i7-3840QM,45,1200,2800,3800,4,8
i7-3820QM,45,1200,2700,3700,4,8
# i7-3700 Mobile Processor Series
i7-3740QM,45,1200,2700,3700,4,8
i7-3720QM,45,1200,2600,3600,4,8
# i7-3600 Mobile Processor Series
i7-3689Y,13,0,1500,2600,2,4
i7-3687U,17,800,2100,3300,2,4
i7-3667U,17,800,2000,3200,2,4
i7-3635QM,45,0,2400,3400,4,8
i7-3620QM,35,0,2200,3200,4,8
i7-3632QM,35,0,2200,3200,4,8
i7-3630QM,45,0,2400,3400,4,8
i7-3615QM,45,0,2300,3300,4,8
i7-3615QE,45,0,2300,3300,4,8
i7-3612QM,35,0,2100,3100,4,8
i7-3612QE,35,0,2100,3100,4,8
i7-3610QM,45,0,2300,3300,4,8
i7-3610QE,45,0,2300,3300,4,8
# i7-3500 Mobile Processor Series
i7-3555LE,25,0,2500,3200,2,4
i7-3540M,35,1200,3000,3700,2,4
i7-3537U,17,800,2000,3100,2,4
i7-3520M,35,1200,2900,3600,2,4
i7-3517UE,17,0,1700,2800,2,4
i7-3517U,17,800,1900,3000,2,4
# i5-3600 Mobile Processor Series
i5-3610ME,35,0,2700,3300,2,4
# i5-3400 Mobile Processor Series
i5-3439Y,13,0,1500,2300,2,4
i5-3437U,17,800,1900,2900,2,4
i5-3427U,17,800,1800,2800,2,4
# i5-3300 Mobile Processor Series
i5-3380M,35,1200,2900,3600,2,4
i5-3360M,35,1200,2800,3500,2,4
i5-3340M,35,1200,2700,3400,2,4
i5-3339Y,13,0,1500,2000,2,4
i5-3337U,17,0,1800,2700,2,4
i5-3320M,35,1200,2600,3300,2,4
i5-3317U,17,0,1700,2600,2,4
# i5-3200 Mobile Processor Series
i5-3230M,35,1200,2600,3200,2,4
i5-3210M,35,1200,2500,3100,2,4
# i3-3200 Mobile Processor Series
i3-3239Y,13,0,1400,0,2,4
i3-3227U,17,800,1900,0,2,4
i3-3217UE,17,0,1600,0,2,4
i3-3217U,17,0,1800,0,2,4
# i3-3100 Mobile Processor Series
i3-3130M,35,1200,2600,0,2,4
i3-3120ME,35,0,2400,0,2,4
i3-3120M,35,0,2500,0,2,4
i3-3110M,35,0,2400,0,2,4
)
#
# Haswell processors (with HD-4600 graphics)
#
gServerHaswellCPUList=(
# E3-1200 v3 Xeon Processor Series
'E3-1285L v3',65,800,3100,3900,4,8
'E3-1286L v3',65,800,3200,4000,4,8
'E3-1285 v3',84,800,3600,4000,4,8
'E3-1286 v3',84,800,3700,4100,4,8
'E3-1280 v3',82,800,3600,4000,4,8
'E3-1281 v3',82,800,3700,4100,4,8
'E3-1275 v3',84,800,3500,3900,4,8
'E3-1276 v3',84,800,3600,4000,4,8
'E3-1270 v3',80,800,3500,3900,4,8
'E3-1271 v3',80,800,3600,4000,4,8
'E3-1268L v3',45,800,2300,3300,4,8
'E3-1265L v3',45,800,2500,3700,4,8
'E3-1245 v3',84,800,3400,3800,4,8
'E3-1246 v3',84,800,3500,3900,4,8
'E3-1240 v3',80,800,3400,3800,4,8
'E3-1241 v3',80,800,3500,3900,4,8
'E3-1230L v3',25,800,1800,2800,4,8
'E3-1230 v3',80,800,3300,3700,4,8
'E3-1231 v3',80,800,3400,3800,4,8
'E3-1225 v3',80,800,3200,3600,4,4
'E3-1226 v3',80,800,3300,3700,4,4
'E3-1220 v3',80,800,3100,3500,4,4
'E3-1220L v3',13,800,1100,1500,2,4
# E5-1600 v3 Xeon Processor Series (AVX2 Turbo Frequency)
'E5-1620 v3',140,1200,3500,3600,4,8
'E5-1630 v3',140,1200,3700,3800,4,8
'E5-1650 v3',140,1200,3500,3800,6,12
'E5-1660 v3',140,1200,3000,3500,8,16
'E5-1680 v3',140,1200,3200,3800,8,16
# E5-2600 v3 Xeon Processor Series (AVX2 Turbo Frequency)
'E5-2683 v3',120,1200,2000,3000,14,28
'E5-2695 v3',120,1200,2300,3300,14,28
'E5-2697 v3',145,1200,2600,3600,14,28
'E5-2698 v3',135,1200,2300,3600,16,32
'E5-2699 v3',145,1200,2300,3600,18,36
'E5-2628L v3',75,1200,2000,2500,10,20
'E5-2650 v3',105,1200,2300,3000,10,20
'E5-2660 v3',105,1200,2600,3300,10,20
'E5-2670 v3',120,1200,2300,3100,12,24
'E5-2690 v3',135,1200,2600,3500,12,24
'E5-2609 v3',85,1200,1900,1900,6,6
'E5-2643 v3',135,1200,3400,3700,6,12
'E5-2648L v3',75,1200,1900,2500,12,24
'E5-2650L v3',65,1200,1800,2500,12,24
'E5-2658 v3',105,1200,2200,2900,12,24
'E5-2680 v3',120,1200,2500,3300,12,24
'E5-2687W v3',160,1200,3100,3500,10,20
'E5-2603 v3',85,1200,1600,1600,6,6
'E5-2608L v3',52,1200,2000,2000,6,12
'E5-2618L v3',75,1200,2300,3400,6,12
'E5-2620 v3',85,1200,2400,3200,6,12
'E5-2623 v3',105,1200,3000,3500,4,8
'E5-2630 v3',85,1200,2400,3200,8,16
'E5-2630L v3',55,1200,1800,2900,8,16
'E5-2637 v3',135,1200,3500,3700,4,8
'E5-2640 v3',90,1200,2600,2400,8,16
'E5-2667 v3',135,1200,3200,3600,8,16
)
gDesktopHaswellCPUList=(
# Haswell-E Processor Series (socket 2011-3)
i7-5960X,140,1200,3000,3400,8,16
i7-5930K,140,1200,3500,3900,6,12
i7-5820K,140,1200,3300,3700,6,12
# Socket 1150 (Standard Power)
i7-4790K,88,800,4000,4400,4,8
i5-4690K,88,800,3500,3900,4,4
i7-4790,84,800,3600,4000,4,8
i7-4770K,84,800,3500,3900,4,8
i7-4771,84,800,3500,3900,4,8
i7-4770,84,800,3400,3900,4,8
i5-4590K,84,800,3300,3700,4,4
i5-4590,84,800,3300,3700,4,4
i5-4670K,84,800,3400,3800,4,4
i5-4670,84,800,3400,3800,4,4
i5-4570,84,800,3200,3600,4,4
i5-4440,84,800,3100,3300,4,4
i5-4440S,65,800,2800,3300,4,4
i5-4430,84,800,3000,3200,4,4
# Socket 1150 (Low Power)
i7-4790S,65,800,3200,4000,4,8
i7-4790T,45,800,2700,3900,4,8
i7-4785T,35,800,2200,3200,4,8
i7-4770S,65,800,3100,3900,4,8
i7-4770T,45,800,2500,3700,4,8
i7-4765T,35,800,2000,3000,4,8
i5-4690,65,800,3300,3900,4,4
i5-4690S,65,800,3200,3900,4,4
i5-4690T,45,800,2500,3500,4,4
i5-4670S,65,800,3100,3800,4,4
i5-4670T,45,800,2300,3300,4,4
i5-4590,84,800,3300,3700,4,4
i5-4590S,65,800,3000,3700,4,4
i5-4590T,35,800,3000,3700,4,4
i5-4570S,65,800,2900,3600,4,4
i5-4570T,35,800,2900,3600,4,4
i5-4570TE,35,800,2700,3300,2,4
i5-4460,84,800,3200,3400,4,4
i5-4460T,35,800,1900,2700,4,4
i5-4460S,65,800,2900,3600,4,4
i5-4430S,65,800,2700,3200,4,4
# BGA
i7-4770R,65,800,3200,3900,4,8
i5-4670R,65,800,3000,3700,4,4
#FCLGA1150
i3-4130,54,800,3400,3400,2,4
i3-4130T,35,800,2900,2900,2,4
i3-4150,54,800,3500,3500,2,4
i3-4150T,35,800,3000,3000,2,4
i3-4160,54,800,3600,3600,2,4
i3-4160T,35,800,3100,3100,2,4
i3-4330,54,800,3500,3500,2,4
i3-4330T,35,800,3000,3000,2,4
i3-4330TE,35,800,2400,2400,2,4
i3-4340,54,800,3600,3600,2,4
i3-4340TE,35,800,2600,2600,2,4
i3-4350,54,800,3600,3600,2,4
i3-4350T,35,800,3100,3100,2,4
i3-4360,54,800,3700,3700,2,4
i3-4360T,35,800,3200,3200,2,4
i3-4370,54,800,3800,3800,2,4
)
gMobileHaswellCPUList=(
# Socket FCBGA1364
i7-4980HQ,47,800,2800,4000,4,8
i7-4960HQ,47,800,2600,3800,4,8
i7-4950HQ,47,800,2400,3600,4,8
i7-4870HQ,47,800,2500,3700,4,8
i7-4860HQ,47,800,2400,3600,4,8
i7-4850HQ,47,800,2300,3500,4,8
i7-4770HQ,47,800,2200,3400,4,8
i7-4760HQ,47,800,2100,3300,4,8
i7-4750HQ,47,800,2000,3200,4,8
i7-4702HQ,37,800,2200,3200,4,8
i7-4700HQ,47,800,2400,3400,4,8
i7-4710HQ,47,800,2500,3500,4,8
i7-4712HQ,37,800,2300,3300,4,8
i7-4700EC,43,800,2700,2700,4,8
i7-4702EC,27,800,2000,2000,4,8
# Extreme Edition Series - socket FCPGA946
i7-4930MX,57,800,3000,3900,4,8
# Socket FCPGA946
i7-4910MQ,47,800,2900,3900,4,8
i7-4900MQ,47,800,2800,3800,4,8
i7-4810MQ,47,800,2800,3800,4,8
i7-4800MQ,47,800,2700,3700,4,8
i7-4702MQ,37,800,2200,3200,4,8
i7-4700MQ,47,800,2400,3400,4,8
i7-4710MQ,47,800,2500,3500,4,8
i7-4712MQ,37,800,2300,3300,4,8
i7-4610M,37,800,3000,3700,4,8
i7-4600M,37,800,2900,3300,4,8
i5-4200M,37,800,2500,3100,2,4
# Socket FCBGA1168
i7-4650U,15,800,1700,3300,2,4
i7-4650U,15,800,1700,3300,2,4
i7-4600U,15,800,2100,3300,2,4
i7-4610Y,11.5,800,1700,2900,2,4
i7-4578U,28,800,3000,3500,2,4
i7-4558U,28,800,2800,3300,2,4
i7-4550U,15,800,1500,3000,2,4
i7-4500U,15,800,1800,3000,2,4
i7-4510U,15,800,2000,3100,2,4
i5-4360U,15,800,1500,3000,2,4
i5-4350U,15,800,1400,2900,2,4
i5-4310U,15,800,2000,3000,2,4
i5-4308U,28,800,2800,3300,2,4
i5-4300U,15,800,1900,2900,2,4
i5-4302Y,11.5,800,1600,2300,2,4
i5-4300Y,11.5,800,1600,2300,2,4
i5-4288U,28,800,2600,3100,2,4
i5-4278U,28,800,2600,3100,2,4
i5-4258U,28,800,2400,2900,2,4
i5-4250U,15,800,1300,2600,2,4
i5-4200U,15,800,1600,2600,2,4
i5-4200Y,11.5,800,1400,1900,2,4
i5-4202Y,11.5,800,1600,2000,2,4
i5-4210Y,11.5,800,1500,1900,2,4
i5-4210U,15,800,1700,2700,2,4
i5-4220Y,11.5,800,1600,2000,2,4
i5-4260U,15,800,1400,2700,2,4
# Socket FCPGA946
i5-4340M,37,800,2900,3600,2,4
i5-4330M,37,800,2800,3500,2,4
i5-4310M,37,800,2700,3400,2,4
i5-4300M,37,800,2600,3300,2,4
i5-4210M,37,800,2600,3200,2,4
i3-4000M,37,800,2400,2400,2,4
i3-4100M,37,800,2500,2500,2,4
i3-4110M,37,800,2600,2600,2,4
# Socket FCBGA1364
i3-4100E,37,800,2400,2400,2,4
i3-4110E,37,800,2600,2600,2,4
i3-4102E,25,800,1600,1600,2,4
i3-4112E,25,800,1800,1800,2,4
i5-4400E,37,800,2700,3300,2,4
i5-4410E,37,800,2900,2900,2,4
i5-4422E,25,800,1800,2900,2,4
i5-4402E,25,800,1600,2700,2,4
i5-4402EC,27,800,2500,2500,2,4
i5-4200H,47,800,2800,3400,2,4
i5-4210H,47,800,2900,3500,2,4
# Socket FCBGA1168
i3-4005U,15,800,1700,1700,2,4
i3-4010U,15,800,1700,1700,2,4
i3-4100U,15,800,1800,1800,2,4
i3-4010Y,11.5,800,1300,1300,2,4
i3-4158U,28,800,2000,2000,2,4
i3-4012Y,11.5,800,1500,1500,2,4
i3-4020Y,11.5,800,1500,1500,2,4
i3-4120U,15,800,2000,2000,2,4
i3-4030U,15,800,1900,1900,2,4
i3-4025U,15,800,1900,1900,2,4