1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
//! MSR value list and function to read and write them.

use core::arch::asm;

/// Write 64 bits to msr register.
///
/// # Safety
/// Needs CPL 0.
pub unsafe fn wrmsr(msr: u32, value: u64) {
    let low = value as u32;
    let high = (value >> 32) as u32;
    asm!("wrmsr", in("ecx") msr, in("eax") low, in("edx") high);
}

/// Read 64 bits msr register.
///
/// # Safety
/// Needs CPL 0.
#[allow(unused_mut)]
pub unsafe fn rdmsr(msr: u32) -> u64 {
    let (high, low): (u32, u32);
    asm!("rdmsr", out("eax") low, out("edx") high, in("ecx") msr);
    ((high as u64) << 32) | (low as u64)
}

// What follows is a long list of all MSR register taken from Intel's manual.
// Some of the register values appear duplicated as they may be
// called differently for different architectures or they just have
// different meanings on different platforms. It's a mess.

/// See Section 35.16, MSRs in Pentium Processors,  and see  Table 35-2.
pub const P5_MC_ADDR: u32 = 0x0;

/// See Section 35.16, MSRs in Pentium Processors.
pub const IA32_P5_MC_ADDR: u32 = 0x0;

/// See Section 35.16, MSRs in Pentium Processors,  and see  Table 35-2.
pub const P5_MC_TYPE: u32 = 0x1;

/// See Section 35.16, MSRs in Pentium Processors.
pub const IA32_P5_MC_TYPE: u32 = 0x1;

/// See Section 8.10.5, Monitor/Mwait Address Range Determination,   and see Table 35-2.
pub const IA32_MONITOR_FILTER_SIZE: u32 = 0x6;

/// See Section 8.10.5, Monitor/Mwait Address  Range Determination.
pub const IA32_MONITOR_FILTER_LINE_SIZE: u32 = 0x6;

/// See Section 17.13, Time-Stamp Counter,  and see Table 35-2.
pub const IA32_TIME_STAMP_COUNTER: u32 = 0x10;

/// See Section 17.13, Time-Stamp Counter.
pub const TSC: u32 = 0x10;

/// Model Specific Platform ID (R)
pub const MSR_PLATFORM_ID: u32 = 0x17;

/// Platform ID (R)  See Table 35-2. The operating system can use this MSR to  determine slot  information for the processor and the proper microcode update to load.
pub const IA32_PLATFORM_ID: u32 = 0x17;

/// Section 10.4.4, Local APIC Status and Location.
pub const APIC_BASE: u32 = 0x1b;

/// APIC Location and Status (R/W) See Table 35-2. See Section 10.4.4, Local APIC  Status and Location.
pub const IA32_APIC_BASE: u32 = 0x1b;

/// Processor Hard Power-On Configuration  (R/W) Enables and disables processor features;  (R) indicates current processor configuration.
pub const EBL_CR_POWERON: u32 = 0x2a;

/// Processor Hard Power-On Configuration (R/W) Enables and  disables processor features;  (R) indicates current processor configuration.
pub const MSR_EBL_CR_POWERON: u32 = 0x2a;

/// Processor Hard Power-On Configuration (R/W) Enables and disables processor features;  (R) indicates current processor configuration.
pub const MSR_EBC_HARD_POWERON: u32 = 0x2a;

/// Processor Soft Power-On Configuration (R/W)  Enables and disables processor features.
pub const MSR_EBC_SOFT_POWERON: u32 = 0x2b;

/// Processor Frequency Configuration The bit field layout of this MSR varies according to  the MODEL value in the CPUID version  information. The following bit field layout applies to Pentium 4 and Xeon Processors with MODEL  encoding equal or greater than 2.  (R) The field Indicates the current processor  frequency configuration.
pub const MSR_EBC_FREQUENCY_ID: u32 = 0x2c;

/// Test Control Register
pub const TEST_CTL: u32 = 0x33;

/// SMI Counter (R/O)
pub const MSR_SMI_COUNT: u32 = 0x34;

/// Control Features in IA-32 Processor (R/W) See Table 35-2 (If CPUID.01H:ECX.\[bit 5\])
pub const IA32_FEATURE_CONTROL: u32 = 0x3a;

/// Per-Logical-Processor TSC ADJUST (R/W) See Table 35-2.
pub const IA32_TSC_ADJUST: u32 = 0x3b;

/// Last Branch Record 0 From IP (R/W) One of eight pairs of last branch record registers on the last branch  record stack. This part of the stack contains pointers to the source  instruction for one of the last eight branches, exceptions, or  interrupts taken by the processor. See also: Last Branch Record Stack TOS at 1C9H Section 17.11, Last Branch, Interrupt, and Exception Recording  (Pentium M Processors).
pub const MSR_LASTBRANCH_0_FROM_IP: u32 = 0x40;

/// Last Branch Record 1 (R/W) See description of MSR_LASTBRANCH_0.
pub const MSR_LASTBRANCH_1: u32 = 0x41;

/// Last Branch Record 1 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_1_FROM_IP: u32 = 0x41;

/// Last Branch Record 2 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_2_FROM_IP: u32 = 0x42;

/// Last Branch Record 3 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_3_FROM_IP: u32 = 0x43;

/// Last Branch Record 4 (R/W) See description of MSR_LASTBRANCH_0.
pub const MSR_LASTBRANCH_4: u32 = 0x44;

/// Last Branch Record 4 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_4_FROM_IP: u32 = 0x44;

/// Last Branch Record 5 (R/W) See description of MSR_LASTBRANCH_0.
pub const MSR_LASTBRANCH_5: u32 = 0x45;

/// Last Branch Record 5 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_5_FROM_IP: u32 = 0x45;

/// Last Branch Record 6 (R/W) See description of MSR_LASTBRANCH_0.
pub const MSR_LASTBRANCH_6: u32 = 0x46;

/// Last Branch Record 6 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_6_FROM_IP: u32 = 0x46;

/// Last Branch Record 7 (R/W) See description of MSR_LASTBRANCH_0.
pub const MSR_LASTBRANCH_7: u32 = 0x47;

/// Last Branch Record 7 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_7_FROM_IP: u32 = 0x47;

/// Last Branch Record 0 (R/W)  One of 16 pairs of last branch record registers on  the last branch record stack (6C0H-6CFH). This  part of the stack contains pointers to the  destination instruction for one of the last 16  branches, exceptions, or interrupts that the  processor took. See Section 17.9, Last Branch, Interrupt, and  Exception Recording (Processors based on Intel  NetBurst® Microarchitecture).
pub const MSR_LASTBRANCH_0_TO_IP: u32 = 0x6c0;

/// Last Branch Record 1 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_1_TO_IP: u32 = 0x61;

/// Last Branch Record 2 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_2_TO_IP: u32 = 0x62;

/// Last Branch Record 3 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_3_TO_IP: u32 = 0x63;

/// Last Branch Record 4 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_4_TO_IP: u32 = 0x64;

/// Last Branch Record 5 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_5_TO_IP: u32 = 0x65;

/// Last Branch Record 6 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_6_TO_IP: u32 = 0x66;

/// Last Branch Record 7 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_7_TO_IP: u32 = 0x67;

/// BIOS Update Trigger Register (W)  See Table 35-2.
pub const IA32_BIOS_UPDT_TRIG: u32 = 0x79;

/// BIOS Update Trigger Register.
pub const BIOS_UPDT_TRIG: u32 = 0x79;

/// BIOS Update Signature ID (R/W) See Table 35-2.
pub const IA32_BIOS_SIGN_ID: u32 = 0x8b;

/// SMM Monitor Configuration (R/W) See Table 35-2.
pub const IA32_SMM_MONITOR_CTL: u32 = 0x9b;

/// If IA32_VMX_MISC\[bit 15\])
pub const IA32_SMBASE: u32 = 0x9e;

/// System Management Mode Physical Address Mask register  (WO in SMM) Model-specific implementation of SMRR-like interface, read visible  and write only in SMM..
pub const MSR_SMRR_PHYSMASK: u32 = 0xa1;

/// Performance Counter Register  See Table 35-2.
pub const IA32_PMC0: u32 = 0xc1;

/// Performance Counter Register  See Table 35-2.
pub const IA32_PMC1: u32 = 0xc2;

/// Performance Counter Register  See Table 35-2.
pub const IA32_PMC2: u32 = 0xc3;

/// Performance Counter Register  See Table 35-2.
pub const IA32_PMC3: u32 = 0xc4;

/// Performance Counter Register  See Table 35-2.
pub const IA32_PMC4: u32 = 0xc5;

/// Performance Counter Register  See Table 35-2.
pub const IA32_PMC5: u32 = 0xc6;

/// Performance Counter Register  See Table 35-2.
pub const IA32_PMC6: u32 = 0xc7;

/// Performance Counter Register  See Table 35-2.
pub const IA32_PMC7: u32 = 0xc8;

/// Scaleable Bus Speed(RO) This field indicates the intended scaleable bus clock speed for  processors based on Intel Atom microarchitecture:
pub const MSR_FSB_FREQ: u32 = 0xcd;

/// see http://biosbits.org.
pub const MSR_PLATFORM_INFO: u32 = 0xce;

/// C-State Configuration Control (R/W)  Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States. See http://biosbits.org.
pub const MSR_PKG_CST_CONFIG_CONTROL: u32 = 0xe2;

/// Power Management IO Redirection in C-state (R/W)  See http://biosbits.org.
pub const MSR_PMG_IO_CAPTURE_BASE: u32 = 0xe4;

/// Maximum Performance Frequency Clock Count (RW)  See Table 35-2.
pub const IA32_MPERF: u32 = 0xe7;

/// Actual Performance Frequency Clock Count (RW)  See Table 35-2.
pub const IA32_APERF: u32 = 0xe8;

/// MTRR Information See Section 11.11.1, MTRR Feature  Identification. .
pub const IA32_MTRRCAP: u32 = 0xfe;

pub const MSR_BBL_CR_CTL: u32 = 0x119;

pub const MSR_BBL_CR_CTL3: u32 = 0x11e;

/// TSX Ctrl Register for TSX Async Abot (TAA) Migration. See Volume 3A, Section 2.1, Table 2-2.
pub const MSR_IA32_TSX_CTRL: u32 = 0x122;

/// CS register target for CPL 0 code (R/W) See Table 35-2. See Section 5.8.7, Performing Fast Calls to  System Procedures with the SYSENTER and  SYSEXIT Instructions.
pub const IA32_SYSENTER_CS: u32 = 0x174;

/// CS register target for CPL 0 code
pub const SYSENTER_CS_MSR: u32 = 0x174;

/// Stack pointer for CPL 0 stack (R/W) See Table 35-2. See Section 5.8.7, Performing Fast Calls to  System Procedures with the SYSENTER and  SYSEXIT Instructions.
pub const IA32_SYSENTER_ESP: u32 = 0x175;

/// Stack pointer for CPL 0 stack
pub const SYSENTER_ESP_MSR: u32 = 0x175;

/// CPL 0 code entry point (R/W) See Table 35-2. See Section 5.8.7, Performing  Fast Calls to System Procedures with the SYSENTER and SYSEXIT Instructions.
pub const IA32_SYSENTER_EIP: u32 = 0x176;

/// CPL 0 code entry point
pub const SYSENTER_EIP_MSR: u32 = 0x176;

pub const MCG_CAP: u32 = 0x179;

/// Machine Check Capabilities (R) See Table 35-2. See Section 15.3.1.1,  IA32_MCG_CAP MSR.
pub const IA32_MCG_CAP: u32 = 0x179;

/// Machine Check Status. (R) See Table 35-2. See Section 15.3.1.2,  IA32_MCG_STATUS MSR.
pub const IA32_MCG_STATUS: u32 = 0x17a;

pub const MCG_STATUS: u32 = 0x17a;

pub const MCG_CTL: u32 = 0x17b;

/// Machine Check Feature Enable (R/W) See Table 35-2. See Section 15.3.1.3, IA32_MCG_CTL MSR.
pub const IA32_MCG_CTL: u32 = 0x17b;

/// Enhanced SMM Capabilities (SMM-RO) Reports SMM capability Enhancement. Accessible only while in  SMM.
pub const MSR_SMM_MCA_CAP: u32 = 0x17d;

/// MC Bank Error Configuration (R/W)
pub const MSR_ERROR_CONTROL: u32 = 0x17f;

/// Machine Check EAX/RAX Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RAX: u32 = 0x180;

/// Machine Check EBX/RBX Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RBX: u32 = 0x181;

/// Machine Check ECX/RCX Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RCX: u32 = 0x182;

/// Machine Check EDX/RDX Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RDX: u32 = 0x183;

/// Machine Check ESI/RSI Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RSI: u32 = 0x184;

/// Machine Check EDI/RDI Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RDI: u32 = 0x185;

/// Machine Check EBP/RBP Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RBP: u32 = 0x186;

/// Performance Event Select for Counter 0 (R/W) Supports all fields described inTable 35-2 and the fields below.
pub const IA32_PERFEVTSEL0: u32 = 0x186;

/// Performance Event Select for Counter 1 (R/W) Supports all fields described inTable 35-2 and the fields below.
pub const IA32_PERFEVTSEL1: u32 = 0x187;

/// Performance Event Select for Counter 2 (R/W) Supports all fields described inTable 35-2 and the fields below.
pub const IA32_PERFEVTSEL2: u32 = 0x188;

/// Machine Check EFLAGS/RFLAG Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RFLAGS: u32 = 0x188;

/// Performance Event Select for Counter 3 (R/W) Supports all fields described inTable 35-2 and the fields below.
pub const IA32_PERFEVTSEL3: u32 = 0x189;

/// Machine Check EIP/RIP Save State See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_RIP: u32 = 0x189;

/// Machine Check Miscellaneous See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_MISC: u32 = 0x18a;

/// See Table 35-2; If CPUID.0AH:EAX\[15:8\] = 8
pub const IA32_PERFEVTSEL4: u32 = 0x18a;

/// See Table 35-2; If CPUID.0AH:EAX\[15:8\] = 8
pub const IA32_PERFEVTSEL5: u32 = 0x18b;

/// See Table 35-2; If CPUID.0AH:EAX\[15:8\] = 8
pub const IA32_PERFEVTSEL6: u32 = 0x18c;

/// See Table 35-2; If CPUID.0AH:EAX\[15:8\] = 8
pub const IA32_PERFEVTSEL7: u32 = 0x18d;

/// Machine Check R8 See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_R8: u32 = 0x190;

/// Machine Check R9D/R9 See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_R9: u32 = 0x191;

/// Machine Check R10 See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_R10: u32 = 0x192;

/// Machine Check R11 See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_R11: u32 = 0x193;

/// Machine Check R12 See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_R12: u32 = 0x194;

/// Machine Check R13 See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_R13: u32 = 0x195;

/// Machine Check R14 See Section 15.3.2.6, IA32_MCG Extended  Machine Check State MSRs.
pub const MSR_MCG_R14: u32 = 0x196;

pub const MSR_PERF_STATUS: u32 = 0x198;

/// See Table 35-2. See Section 14.1, Enhanced Intel  Speedstep® Technology.
pub const IA32_PERF_STATUS: u32 = 0x198;

/// See Table 35-2. See Section 14.1, Enhanced Intel  Speedstep® Technology.
pub const IA32_PERF_CTL: u32 = 0x199;

/// Clock Modulation (R/W)  See Table 35-2. IA32_CLOCK_MODULATION MSR was originally named  IA32_THERM_CONTROL MSR.
pub const IA32_CLOCK_MODULATION: u32 = 0x19a;

/// Thermal Interrupt Control (R/W) See Section 14.5.2, Thermal Monitor,  and see Table 35-2.
pub const IA32_THERM_INTERRUPT: u32 = 0x19b;

/// Thermal Monitor Status (R/W) See Section 14.5.2, Thermal Monitor,  and see  Table 35-2.
pub const IA32_THERM_STATUS: u32 = 0x19c;

/// Thermal Monitor 2 Control.
pub const MSR_THERM2_CTL: u32 = 0x19d;

pub const IA32_MISC_ENABLE: u32 = 0x1a0;

/// Platform Feature Requirements (R)
pub const MSR_PLATFORM_BRV: u32 = 0x1a1;

pub const MSR_TEMPERATURE_TARGET: u32 = 0x1a2;

/// Offcore Response Event Select Register (R/W)
pub const MSR_OFFCORE_RSP_0: u32 = 0x1a6;

/// Offcore Response Event Select Register (R/W)
pub const MSR_OFFCORE_RSP_1: u32 = 0x1a7;

/// See http://biosbits.org.
pub const MSR_MISC_PWR_MGMT: u32 = 0x1aa;

/// See http://biosbits.org.
pub const MSR_TURBO_POWER_CURRENT_LIMIT: u32 = 0x1ac;

/// Maximum Ratio Limit of Turbo Mode RO if MSR_PLATFORM_INFO.\[28\] = 0, RW if MSR_PLATFORM_INFO.\[28\] = 1
pub const MSR_TURBO_RATIO_LIMIT: u32 = 0x1ad;

/// if CPUID.6H:ECX\[3\] = 1
pub const IA32_ENERGY_PERF_BIAS: u32 = 0x1b0;

/// If CPUID.06H: EAX\[6\] = 1
pub const IA32_PACKAGE_THERM_STATUS: u32 = 0x1b1;

/// If CPUID.06H: EAX\[6\] = 1
pub const IA32_PACKAGE_THERM_INTERRUPT: u32 = 0x1b2;

/// Last Branch Record Filtering Select Register (R/W)  See Section 17.6.2, Filtering of Last Branch Records.
pub const MSR_LBR_SELECT: u32 = 0x1c8;

/// Last Branch Record Stack TOS (R/W)  Contains an index (0-3 or 0-15) that points to the  top of the last branch record stack (that is, that points the index of the MSR containing the most  recent branch record). See Section 17.9.2, LBR Stack for Processors Based on Intel NetBurst® Microarchitecture ; and  addresses 1DBH-1DEH and 680H-68FH.
pub const MSR_LASTBRANCH_TOS: u32 = 0x1da;

pub const DEBUGCTLMSR: u32 = 0x1d9;

/// Debug Control (R/W)  Controls how several debug features are used. Bit  definitions are discussed in the referenced section. See Section 17.9.1, MSR_DEBUGCTLA MSR.
pub const MSR_DEBUGCTLA: u32 = 0x1d9;

/// Debug Control (R/W)  Controls how several debug features are used. Bit definitions are discussed in the referenced section. See Section 17.11, Last Branch, Interrupt, and Exception Recording  (Pentium M Processors).
pub const MSR_DEBUGCTLB: u32 = 0x1d9;

/// Debug Control (R/W)  Controls how several debug features are used. Bit definitions are  discussed in the referenced section.
pub const IA32_DEBUGCTL: u32 = 0x1d9;

pub const LASTBRANCHFROMIP: u32 = 0x1db;

/// Last Branch Record 0 (R/W)  One of four last branch record registers on the last  branch record stack. It contains pointers to the  source and destination instruction for one of the  last four branches, exceptions, or interrupts that  the processor took. MSR_LASTBRANCH_0 through  MSR_LASTBRANCH_3 at 1DBH-1DEH are  available only on family 0FH, models 0H-02H.  They have been replaced by the MSRs at 680H- 68FH and 6C0H-6CFH.
pub const MSR_LASTBRANCH_0: u32 = 0x1db;

pub const LASTBRANCHTOIP: u32 = 0x1dc;

pub const LASTINTFROMIP: u32 = 0x1dd;

/// Last Branch Record 2 See description of the MSR_LASTBRANCH_0 MSR at 1DBH.
pub const MSR_LASTBRANCH_2: u32 = 0x1dd;

/// Last Exception Record From Linear IP (R)  Contains a pointer to the last branch instruction that the processor  executed prior to the last exception that was generated or the last  interrupt that was handled. See Section 17.11, Last Branch, Interrupt, and Exception Recording  (Pentium M Processors)  and Section 17.12.2, Last Branch and Last  Exception MSRs.
pub const MSR_LER_FROM_LIP: u32 = 0x1de;

pub const LASTINTTOIP: u32 = 0x1de;

/// Last Branch Record 3 See description of the MSR_LASTBRANCH_0 MSR  at 1DBH.
pub const MSR_LASTBRANCH_3: u32 = 0x1de;

/// Last Exception Record To Linear IP (R)  This area contains a pointer to the target of the last branch instruction  that the processor executed prior to the last exception that was  generated or the last interrupt that was handled. See Section 17.11, Last Branch, Interrupt, and Exception Recording  (Pentium M Processors)  and Section 17.12.2, Last Branch and Last  Exception MSRs.
pub const MSR_LER_TO_LIP: u32 = 0x1dd;

pub const ROB_CR_BKUPTMPDR6: u32 = 0x1e0;

/// See Table 35-2.
pub const IA32_SMRR_PHYSBASE: u32 = 0x1f2;

/// If IA32_MTRR_CAP\[SMRR\]  = 1
pub const IA32_SMRR_PHYSMASK: u32 = 0x1f3;

/// 06_0FH
pub const IA32_PLATFORM_DCA_CAP: u32 = 0x1f8;

pub const IA32_CPU_DCA_CAP: u32 = 0x1f9;

/// 06_2EH
pub const IA32_DCA_0_CAP: u32 = 0x1fa;

/// Power Control Register. See http://biosbits.org.
pub const MSR_POWER_CTL: u32 = 0x1fc;

/// Variable Range Base MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSBASE0: u32 = 0x200;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSMASK0: u32 = 0x201;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSBASE1: u32 = 0x202;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSMASK1: u32 = 0x203;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSBASE2: u32 = 0x204;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs .
pub const IA32_MTRR_PHYSMASK2: u32 = 0x205;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSBASE3: u32 = 0x206;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSMASK3: u32 = 0x207;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSBASE4: u32 = 0x208;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSMASK4: u32 = 0x209;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSBASE5: u32 = 0x20a;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSMASK5: u32 = 0x20b;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSBASE6: u32 = 0x20c;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSMASK6: u32 = 0x20d;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSBASE7: u32 = 0x20e;

/// Variable Range Mask MTRR See Section 11.11.2.3, Variable Range MTRRs.
pub const IA32_MTRR_PHYSMASK7: u32 = 0x20f;

/// if IA32_MTRR_CAP\[7:0\] >  8
pub const IA32_MTRR_PHYSBASE8: u32 = 0x210;

/// if IA32_MTRR_CAP\[7:0\] >  8
pub const IA32_MTRR_PHYSMASK8: u32 = 0x211;

/// if IA32_MTRR_CAP\[7:0\] >  9
pub const IA32_MTRR_PHYSBASE9: u32 = 0x212;

/// if IA32_MTRR_CAP\[7:0\] >  9
pub const IA32_MTRR_PHYSMASK9: u32 = 0x213;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX64K_00000: u32 = 0x250;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX16K_80000: u32 = 0x258;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX16K_A0000: u32 = 0x259;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX4K_C0000: u32 = 0x268;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs .
pub const IA32_MTRR_FIX4K_C8000: u32 = 0x269;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs .
pub const IA32_MTRR_FIX4K_D0000: u32 = 0x26a;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX4K_D8000: u32 = 0x26b;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX4K_E0000: u32 = 0x26c;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX4K_E8000: u32 = 0x26d;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX4K_F0000: u32 = 0x26e;

/// Fixed Range MTRR See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_MTRR_FIX4K_F8000: u32 = 0x26f;

/// Page Attribute Table See Section 11.11.2.2, Fixed Range MTRRs.
pub const IA32_PAT: u32 = 0x277;

/// See Table 35-2.
pub const IA32_MC0_CTL2: u32 = 0x280;

/// See Table 35-2.
pub const IA32_MC1_CTL2: u32 = 0x281;

/// See Table 35-2.
pub const IA32_MC2_CTL2: u32 = 0x282;

/// See Table 35-2.
pub const IA32_MC3_CTL2: u32 = 0x283;

/// See Table 35-2.
pub const IA32_MC4_CTL2: u32 = 0x284;

/// Always 0 (CMCI not supported).
pub const MSR_MC4_CTL2: u32 = 0x284;

/// See Table 35-2.
pub const IA32_MC5_CTL2: u32 = 0x285;

/// See Table 35-2.
pub const IA32_MC6_CTL2: u32 = 0x286;

/// See Table 35-2.
pub const IA32_MC7_CTL2: u32 = 0x287;

/// See Table 35-2.
pub const IA32_MC8_CTL2: u32 = 0x288;

/// See Table 35-2.
pub const IA32_MC9_CTL2: u32 = 0x289;

/// See Table 35-2.
pub const IA32_MC10_CTL2: u32 = 0x28a;

/// See Table 35-2.
pub const IA32_MC11_CTL2: u32 = 0x28b;

/// See Table 35-2.
pub const IA32_MC12_CTL2: u32 = 0x28c;

/// See Table 35-2.
pub const IA32_MC13_CTL2: u32 = 0x28d;

/// See Table 35-2.
pub const IA32_MC14_CTL2: u32 = 0x28e;

/// See Table 35-2.
pub const IA32_MC15_CTL2: u32 = 0x28f;

/// See Table 35-2.
pub const IA32_MC16_CTL2: u32 = 0x290;

/// See Table 35-2.
pub const IA32_MC17_CTL2: u32 = 0x291;

/// See Table 35-2.
pub const IA32_MC18_CTL2: u32 = 0x292;

/// See Table 35-2.
pub const IA32_MC19_CTL2: u32 = 0x293;

/// See Table 35-2.
pub const IA32_MC20_CTL2: u32 = 0x294;

/// See Table 35-2.
pub const IA32_MC21_CTL2: u32 = 0x295;

/// Default Memory Types (R/W)  Sets the memory type for the regions of physical memory that are not  mapped by the MTRRs.  See Section 11.11.2.1, IA32_MTRR_DEF_TYPE MSR.
pub const IA32_MTRR_DEF_TYPE: u32 = 0x2ff;

/// See Section 18.12.2, Performance Counters.
pub const MSR_BPU_COUNTER0: u32 = 0x300;

pub const MSR_GQ_SNOOP_MESF: u32 = 0x301;

/// See Section 18.12.2, Performance Counters.
pub const MSR_BPU_COUNTER1: u32 = 0x301;

/// See Section 18.12.2, Performance Counters.
pub const MSR_BPU_COUNTER2: u32 = 0x302;

/// See Section 18.12.2, Performance Counters.
pub const MSR_BPU_COUNTER3: u32 = 0x303;

/// See Section 18.12.2, Performance Counters.
pub const MSR_MS_COUNTER0: u32 = 0x304;

/// See Section 18.12.2, Performance Counters.
pub const MSR_MS_COUNTER1: u32 = 0x305;

/// See Section 18.12.2, Performance Counters.
pub const MSR_MS_COUNTER2: u32 = 0x306;

/// See Section 18.12.2, Performance Counters.
pub const MSR_MS_COUNTER3: u32 = 0x307;

/// See Section 18.12.2, Performance Counters.
pub const MSR_FLAME_COUNTER0: u32 = 0x308;

/// Fixed-Function Performance Counter Register 0 (R/W)
pub const MSR_PERF_FIXED_CTR0: u32 = 0x309;

/// Fixed-Function Performance Counter Register 0 (R/W)  See Table 35-2.
pub const IA32_FIXED_CTR0: u32 = 0x309;

/// See Section 18.12.2, Performance Counters.
pub const MSR_FLAME_COUNTER1: u32 = 0x309;

/// Fixed-Function Performance Counter Register 1 (R/W)
pub const MSR_PERF_FIXED_CTR1: u32 = 0x30a;

/// Fixed-Function Performance Counter Register 1 (R/W)  See Table 35-2.
pub const IA32_FIXED_CTR1: u32 = 0x30a;

/// See Section 18.12.2, Performance Counters.
pub const MSR_FLAME_COUNTER2: u32 = 0x30a;

/// Fixed-Function Performance Counter Register 2 (R/W)
pub const MSR_PERF_FIXED_CTR2: u32 = 0x30b;

/// Fixed-Function Performance Counter Register 2 (R/W)  See Table 35-2.
pub const IA32_FIXED_CTR2: u32 = 0x30b;

/// See Section 18.12.2, Performance Counters.
pub const MSR_FLAME_COUNTER3: u32 = 0x30b;

/// See Section 18.12.2, Performance Counters.
pub const MSR_IQ_COUNTER4: u32 = 0x310;

/// See Section 18.12.2, Performance Counters.
pub const MSR_IQ_COUNTER5: u32 = 0x311;

/// See Table 35-2. See Section 17.4.1, IA32_DEBUGCTL MSR.
pub const IA32_PERF_CAPABILITIES: u32 = 0x345;

/// RO. This applies to processors that do not support architectural  perfmon version 2.
pub const MSR_PERF_CAPABILITIES: u32 = 0x345;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_BPU_CCCR0: u32 = 0x360;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_BPU_CCCR1: u32 = 0x361;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_BPU_CCCR2: u32 = 0x362;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_BPU_CCCR3: u32 = 0x363;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_MS_CCCR0: u32 = 0x364;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_MS_CCCR1: u32 = 0x365;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_MS_CCCR2: u32 = 0x366;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_MS_CCCR3: u32 = 0x367;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_FLAME_CCCR0: u32 = 0x368;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_FLAME_CCCR1: u32 = 0x369;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_FLAME_CCCR2: u32 = 0x36a;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_FLAME_CCCR3: u32 = 0x36b;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_IQ_CCCR0: u32 = 0x36c;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_IQ_CCCR1: u32 = 0x36d;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_IQ_CCCR2: u32 = 0x36e;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_IQ_CCCR3: u32 = 0x36f;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_IQ_CCCR4: u32 = 0x370;

/// See Section 18.12.3, CCCR MSRs.
pub const MSR_IQ_CCCR5: u32 = 0x371;

/// Fixed-Function-Counter Control Register (R/W)
pub const MSR_PERF_FIXED_CTR_CTRL: u32 = 0x38d;

/// Fixed-Function-Counter Control Register (R/W)  See Table 35-2.
pub const IA32_FIXED_CTR_CTRL: u32 = 0x38d;

/// See Section 18.4.2, Global Counter Control Facilities.
pub const MSR_PERF_GLOBAL_STAUS: u32 = 0x38e;

/// See Table 35-2. See Section 18.4.2, Global Counter Control  Facilities.
pub const IA32_PERF_GLOBAL_STAUS: u32 = 0x38e;

/// See Section 18.4.2, Global Counter Control Facilities.
pub const MSR_PERF_GLOBAL_CTRL: u32 = 0x38f;

/// See Table 35-2. See Section 18.4.2, Global Counter Control  Facilities.
pub const IA32_PERF_GLOBAL_CTRL: u32 = 0x38f;

/// See Section 18.4.2, Global Counter Control Facilities.
pub const MSR_PERF_GLOBAL_OVF_CTRL: u32 = 0x390;

/// See Table 35-2. See Section 18.4.2, Global Counter Control  Facilities.
pub const IA32_PERF_GLOBAL_OVF_CTRL: u32 = 0x390;

/// See Section 18.7.2.1, Uncore Performance Monitoring  Management Facility.
pub const MSR_UNCORE_PERF_GLOBAL_CTRL: u32 = 0x391;

/// Uncore PMU global control
pub const MSR_UNC_PERF_GLOBAL_CTRL: u32 = 0x391;

/// See Section 18.7.2.1, Uncore Performance Monitoring  Management Facility.
pub const MSR_UNCORE_PERF_GLOBAL_STATUS: u32 = 0x392;

/// Uncore PMU main status
pub const MSR_UNC_PERF_GLOBAL_STATUS: u32 = 0x392;

/// See Section 18.7.2.1, Uncore Performance Monitoring  Management Facility.
pub const MSR_UNCORE_PERF_GLOBAL_OVF_CTRL: u32 = 0x393;

/// See Section 18.7.2.1, Uncore Performance Monitoring  Management Facility.
pub const MSR_UNCORE_FIXED_CTR0: u32 = 0x394;

/// Uncore W-box perfmon fixed counter
pub const MSR_W_PMON_FIXED_CTR: u32 = 0x394;

/// Uncore fixed counter control (R/W)
pub const MSR_UNC_PERF_FIXED_CTRL: u32 = 0x394;

/// See Section 18.7.2.1, Uncore Performance Monitoring  Management Facility.
pub const MSR_UNCORE_FIXED_CTR_CTRL: u32 = 0x395;

/// Uncore U-box perfmon fixed counter control MSR
pub const MSR_W_PMON_FIXED_CTR_CTL: u32 = 0x395;

/// Uncore fixed counter
pub const MSR_UNC_PERF_FIXED_CTR: u32 = 0x395;

/// See Section 18.7.2.3, Uncore Address/Opcode Match MSR.
pub const MSR_UNCORE_ADDR_OPCODE_MATCH: u32 = 0x396;

/// Uncore C-Box configuration information (R/O)
pub const MSR_UNC_CBO_CONFIG: u32 = 0x396;

pub const MSR_PEBS_NUM_ALT: u32 = 0x39c;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_BSU_ESCR0: u32 = 0x3a0;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_BSU_ESCR1: u32 = 0x3a1;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_FSB_ESCR0: u32 = 0x3a2;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_FSB_ESCR1: u32 = 0x3a3;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_FIRM_ESCR0: u32 = 0x3a4;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_FIRM_ESCR1: u32 = 0x3a5;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_FLAME_ESCR0: u32 = 0x3a6;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_FLAME_ESCR1: u32 = 0x3a7;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_DAC_ESCR0: u32 = 0x3a8;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_DAC_ESCR1: u32 = 0x3a9;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_MOB_ESCR0: u32 = 0x3aa;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_MOB_ESCR1: u32 = 0x3ab;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_PMH_ESCR0: u32 = 0x3ac;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_PMH_ESCR1: u32 = 0x3ad;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_SAAT_ESCR0: u32 = 0x3ae;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_SAAT_ESCR1: u32 = 0x3af;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_U2L_ESCR0: u32 = 0x3b0;

/// See Section 18.7.2.2, Uncore Performance Event Configuration  Facility.
pub const MSR_UNCORE_PMC0: u32 = 0x3b0;

/// Uncore Arb unit, performance counter 0
pub const MSR_UNC_ARB_PER_CTR0: u32 = 0x3b0;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_U2L_ESCR1: u32 = 0x3b1;

/// See Section 18.7.2.2, Uncore Performance Event Configuration  Facility.
pub const MSR_UNCORE_PMC1: u32 = 0x3b1;

/// Uncore Arb unit, performance counter 1
pub const MSR_UNC_ARB_PER_CTR1: u32 = 0x3b1;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_BPU_ESCR0: u32 = 0x3b2;

/// See Section 18.7.2.2, Uncore Performance Event Configuration  Facility.
pub const MSR_UNCORE_PMC2: u32 = 0x3b2;

/// Uncore Arb unit, counter 0 event select MSR
pub const MSR_UNC_ARB_PERFEVTSEL0: u32 = 0x3b2;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_BPU_ESCR1: u32 = 0x3b3;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PMC3: u32 = 0x3b3;

/// Uncore Arb unit, counter 1 event select MSR
pub const MSR_UNC_ARB_PERFEVTSEL1: u32 = 0x3b3;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_IS_ESCR0: u32 = 0x3b4;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PMC4: u32 = 0x3b4;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_IS_ESCR1: u32 = 0x3b5;

/// See Section 18.7.2.2, Uncore Performance Event Configuration  Facility.
pub const MSR_UNCORE_PMC5: u32 = 0x3b5;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_ITLB_ESCR0: u32 = 0x3b6;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PMC6: u32 = 0x3b6;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_ITLB_ESCR1: u32 = 0x3b7;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PMC7: u32 = 0x3b7;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_CRU_ESCR0: u32 = 0x3b8;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_CRU_ESCR1: u32 = 0x3b9;

/// See Section 18.12.1, ESCR MSRs. This MSR is not available on later processors. It is  only available on processor family 0FH, models  01H-02H.
pub const MSR_IQ_ESCR0: u32 = 0x3ba;

/// See Section 18.12.1, ESCR MSRs. This MSR is not available on later processors. It is  only available on processor family 0FH, models  01H-02H.
pub const MSR_IQ_ESCR1: u32 = 0x3bb;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_RAT_ESCR0: u32 = 0x3bc;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_RAT_ESCR1: u32 = 0x3bd;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_SSU_ESCR0: u32 = 0x3be;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_MS_ESCR0: u32 = 0x3c0;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PERFEVTSEL0: u32 = 0x3c0;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_MS_ESCR1: u32 = 0x3c1;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PERFEVTSEL1: u32 = 0x3c1;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_TBPU_ESCR0: u32 = 0x3c2;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PERFEVTSEL2: u32 = 0x3c2;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_TBPU_ESCR1: u32 = 0x3c3;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PERFEVTSEL3: u32 = 0x3c3;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_TC_ESCR0: u32 = 0x3c4;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PERFEVTSEL4: u32 = 0x3c4;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_TC_ESCR1: u32 = 0x3c5;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PERFEVTSEL5: u32 = 0x3c5;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PERFEVTSEL6: u32 = 0x3c6;

/// See Section 18.7.2.2, Uncore Performance Event Configuration Facility.
pub const MSR_UNCORE_PERFEVTSEL7: u32 = 0x3c7;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_IX_ESCR0: u32 = 0x3c8;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_ALF_ESCR0: u32 = 0x3ca;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_ALF_ESCR1: u32 = 0x3cb;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_CRU_ESCR2: u32 = 0x3cc;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_CRU_ESCR3: u32 = 0x3cd;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_CRU_ESCR4: u32 = 0x3e0;

/// See Section 18.12.1, ESCR MSRs.
pub const MSR_CRU_ESCR5: u32 = 0x3e1;

pub const IA32_PEBS_ENABLE: u32 = 0x3f1;

/// Precise Event-Based Sampling (PEBS) (R/W)  Controls the enabling of precise event sampling  and replay tagging.
pub const MSR_PEBS_ENABLE: u32 = 0x3f1;

/// See Table 19-26.
pub const MSR_PEBS_MATRIX_VERT: u32 = 0x3f2;

/// see See Section 18.7.1.2, Load Latency Performance Monitoring  Facility.
pub const MSR_PEBS_LD_LAT: u32 = 0x3f6;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_PKG_C3_RESIDENCY: u32 = 0x3f8;

/// Package C2 Residency Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C-States
pub const MSR_PKG_C2_RESIDENCY: u32 = 0x3f8;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_PKG_C6C_RESIDENCY: u32 = 0x3f9;

/// Package C4 Residency Note: C-state values are processor specific C-state code names, unrelated to MWAIT extension C-state parameters or ACPI C-States
pub const MSR_PKG_C4_RESIDENCY: u32 = 0x3f9;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_PKG_C7_RESIDENCY: u32 = 0x3fa;

/// Package C6 Residency Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C-States
pub const MSR_PKG_C6_RESIDENCY: u32 = 0x3fa;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_CORE_C3_RESIDENCY: u32 = 0x3fc;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_CORE_C4_RESIDENCY: u32 = 0x3fc;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_CORE_C6_RESIDENCY: u32 = 0x3fd;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_CORE_C7_RESIDENCY: u32 = 0x3fe;

pub const MC0_CTL: u32 = 0x400;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const IA32_MC0_CTL: u32 = 0x400;

pub const MC0_STATUS: u32 = 0x401;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const IA32_MC0_STATUS: u32 = 0x401;

pub const MC0_ADDR: u32 = 0x402;

/// P6 Family Processors
pub const IA32_MC0_ADDR1: u32 = 0x402;

/// See Section 14.3.2.3., IA32_MCi_ADDR MSRs .  The IA32_MC0_ADDR register is either not implemented or contains no address if the ADDRV flag in the IA32_MC0_STATUS register is clear.  When not implemented in the processor, all reads and writes to this MSR  will cause a general-protection exception.
pub const IA32_MC0_ADDR: u32 = 0x402;

/// Defined in MCA architecture but not implemented in the P6 family  processors.
pub const MC0_MISC: u32 = 0x403;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs. The IA32_MC0_MISC MSR is either not  implemented or does not contain additional  information if the MISCV flag in the  IA32_MC0_STATUS register is clear. When not implemented in the processor, all reads  and writes to this MSR will cause a general- protection exception.
pub const IA32_MC0_MISC: u32 = 0x403;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC0_MISC: u32 = 0x403;

pub const MC1_CTL: u32 = 0x404;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const IA32_MC1_CTL: u32 = 0x404;

/// Bit definitions same as MC0_STATUS.
pub const MC1_STATUS: u32 = 0x405;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const IA32_MC1_STATUS: u32 = 0x405;

pub const MC1_ADDR: u32 = 0x406;

/// P6 Family Processors
pub const IA32_MC1_ADDR2: u32 = 0x406;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs. The IA32_MC1_ADDR register is either not implemented or  contains no address if the ADDRV flag in the IA32_MC1_STATUS  register is clear.  When not implemented in the processor, all reads and writes to this  MSR will cause a general-protection exception.
pub const IA32_MC1_ADDR: u32 = 0x406;

/// Defined in MCA architecture but not implemented in the P6 family  processors.
pub const MC1_MISC: u32 = 0x407;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs. The IA32_MC1_MISC MSR is either not  implemented or does not contain additional  information if the MISCV flag in the  IA32_MC1_STATUS register is clear. When not implemented in the processor, all reads  and writes to this MSR will cause a general- protection exception.
pub const IA32_MC1_MISC: u32 = 0x407;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC1_MISC: u32 = 0x407;

pub const MC2_CTL: u32 = 0x408;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const IA32_MC2_CTL: u32 = 0x408;

/// Bit definitions same as MC0_STATUS.
pub const MC2_STATUS: u32 = 0x409;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const IA32_MC2_STATUS: u32 = 0x409;

pub const MC2_ADDR: u32 = 0x40a;

/// P6 Family Processors
pub const IA32_MC2_ADDR1: u32 = 0x40a;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs. The IA32_MC2_ADDR register is either not  implemented or contains no address if the ADDRV  flag in the IA32_MC2_STATUS register is clear.  When not implemented in the processor, all reads  and writes to this MSR will cause a general- protection exception.
pub const IA32_MC2_ADDR: u32 = 0x40a;

/// Defined in MCA architecture but not implemented in the P6 family  processors.
pub const MC2_MISC: u32 = 0x40b;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs. The IA32_MC2_MISC MSR is either not  implemented or does not contain additional  information if the MISCV flag in the IA32_MC2_STATUS register is clear.  When not implemented in the processor, all reads  and writes to this MSR will cause a general- protection exception.
pub const IA32_MC2_MISC: u32 = 0x40b;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC2_MISC: u32 = 0x40b;

pub const MC4_CTL: u32 = 0x40c;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const IA32_MC3_CTL: u32 = 0x40c;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC4_CTL: u32 = 0x40c;

/// Bit definitions same as MC0_STATUS, except bits 0, 4, 57, and 61 are  hardcoded to 1.
pub const MC4_STATUS: u32 = 0x40d;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const IA32_MC3_STATUS: u32 = 0x40d;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS.
pub const MSR_MC4_STATUS: u32 = 0x40d;

/// Defined in MCA architecture but not implemented in P6 Family processors.
pub const MC4_ADDR: u32 = 0x40e;

/// P6 Family Processors
pub const IA32_MC3_ADDR1: u32 = 0x40e;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs. The IA32_MC3_ADDR register is either not  implemented or contains no address if the ADDRV  flag in the IA32_MC3_STATUS register is clear. When not implemented in the processor, all reads  and writes to this MSR will cause a general- protection exception.
pub const IA32_MC3_ADDR: u32 = 0x40e;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs. The MSR_MC4_ADDR register is either not implemented or  contains no address if the ADDRV flag in the MSR_MC4_STATUS  register is clear. When not implemented in the processor, all reads and writes to this  MSR will cause a general-protection exception.
pub const MSR_MC4_ADDR: u32 = 0x412;

/// Defined in MCA architecture but not implemented in the P6 family  processors.
pub const MC4_MISC: u32 = 0x40f;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs. The IA32_MC3_MISC MSR is either not  implemented or does not contain additional  information if the MISCV flag in the  IA32_MC3_STATUS register is clear. When not implemented in the processor, all reads  and writes to this MSR will cause a general- protection exception.
pub const IA32_MC3_MISC: u32 = 0x40f;

pub const MC3_CTL: u32 = 0x410;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const IA32_MC4_CTL: u32 = 0x410;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC3_CTL: u32 = 0x410;

/// Bit definitions same as MC0_STATUS.
pub const MC3_STATUS: u32 = 0x411;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const IA32_MC4_STATUS: u32 = 0x411;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS.
pub const MSR_MC3_STATUS: u32 = 0x411;

pub const MC3_ADDR: u32 = 0x412;

/// P6 Family Processors
pub const IA32_MC4_ADDR1: u32 = 0x412;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs. The IA32_MC2_ADDR register is either not  implemented or contains no address if the ADDRV  flag in the IA32_MC4_STATUS register is clear.  When not implemented in the processor, all reads  and writes to this MSR will cause a general- protection exception.
pub const IA32_MC4_ADDR: u32 = 0x412;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs. The MSR_MC3_ADDR register is either not implemented or  contains no address if the ADDRV flag in the MSR_MC3_STATUS register is clear.  When not implemented in the processor, all reads and writes to this  MSR will cause a general-protection exception.
pub const MSR_MC3_ADDR: u32 = 0x412;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC3_MISC: u32 = 0x40f;

/// Defined in MCA architecture but not implemented in the P6 family  processors.
pub const MC3_MISC: u32 = 0x413;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.   The IA32_MC2_MISC MSR is either not  implemented or does not contain additional  information if the MISCV flag in the  IA32_MC4_STATUS register is clear.  When not implemented in the processor, all reads  and writes to this MSR will cause a general- protection exception.
pub const IA32_MC4_MISC: u32 = 0x413;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC4_MISC: u32 = 0x413;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC5_CTL: u32 = 0x414;

/// 06_0FH
pub const IA32_MC5_CTL: u32 = 0x414;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC5_STATUS: u32 = 0x415;

/// 06_0FH
pub const IA32_MC5_STATUS: u32 = 0x415;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs. The MSR_MC4_ADDR register is either not implemented or  contains no address if the ADDRV flag in the MSR_MC4_STATUS  register is clear. When not implemented in the processor, all reads and writes to this  MSR will cause a general-protection exception.
pub const MSR_MC5_ADDR: u32 = 0x416;

/// 06_0FH
pub const IA32_MC5_ADDR1: u32 = 0x416;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC5_MISC: u32 = 0x417;

/// 06_0FH
pub const IA32_MC5_MISC: u32 = 0x417;

/// 06_1DH
pub const IA32_MC6_CTL: u32 = 0x418;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC6_CTL: u32 = 0x418;

/// 06_1DH
pub const IA32_MC6_STATUS: u32 = 0x419;

/// Apply to Intel Xeon processor 7400 series (processor signature  06_1D) only. See Section 15.3.2.2, IA32_MCi_STATUS MSRS.  and  Chapter 23.
pub const MSR_MC6_STATUS: u32 = 0x419;

/// 06_1DH
pub const IA32_MC6_ADDR1: u32 = 0x41a;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC6_ADDR: u32 = 0x41a;

/// Misc MAC information of Integrated I/O. (R/O) see Section 15.3.2.4
pub const IA32_MC6_MISC: u32 = 0x41b;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC6_MISC: u32 = 0x41b;

/// 06_1AH
pub const IA32_MC7_CTL: u32 = 0x41c;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC7_CTL: u32 = 0x41c;

/// 06_1AH
pub const IA32_MC7_STATUS: u32 = 0x41d;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC7_STATUS: u32 = 0x41d;

/// 06_1AH
pub const IA32_MC7_ADDR1: u32 = 0x41e;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC7_ADDR: u32 = 0x41e;

/// 06_1AH
pub const IA32_MC7_MISC: u32 = 0x41f;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC7_MISC: u32 = 0x41f;

/// 06_1AH
pub const IA32_MC8_CTL: u32 = 0x420;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC8_CTL: u32 = 0x420;

/// 06_1AH
pub const IA32_MC8_STATUS: u32 = 0x421;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC8_STATUS: u32 = 0x421;

/// 06_1AH
pub const IA32_MC8_ADDR1: u32 = 0x422;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC8_ADDR: u32 = 0x422;

/// 06_1AH
pub const IA32_MC8_MISC: u32 = 0x423;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC8_MISC: u32 = 0x423;

/// 06_2EH
pub const IA32_MC9_CTL: u32 = 0x424;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC9_CTL: u32 = 0x424;

/// 06_2EH
pub const IA32_MC9_STATUS: u32 = 0x425;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC9_STATUS: u32 = 0x425;

/// 06_2EH
pub const IA32_MC9_ADDR1: u32 = 0x426;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC9_ADDR: u32 = 0x426;

/// 06_2EH
pub const IA32_MC9_MISC: u32 = 0x427;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC9_MISC: u32 = 0x427;

/// 06_2EH
pub const IA32_MC10_CTL: u32 = 0x428;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC10_CTL: u32 = 0x428;

/// 06_2EH
pub const IA32_MC10_STATUS: u32 = 0x429;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC10_STATUS: u32 = 0x429;

/// 06_2EH
pub const IA32_MC10_ADDR1: u32 = 0x42a;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC10_ADDR: u32 = 0x42a;

/// 06_2EH
pub const IA32_MC10_MISC: u32 = 0x42b;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC10_MISC: u32 = 0x42b;

/// 06_2EH
pub const IA32_MC11_CTL: u32 = 0x42c;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC11_CTL: u32 = 0x42c;

/// 06_2EH
pub const IA32_MC11_STATUS: u32 = 0x42d;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC11_STATUS: u32 = 0x42d;

/// 06_2EH
pub const IA32_MC11_ADDR1: u32 = 0x42e;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC11_ADDR: u32 = 0x42e;

/// 06_2EH
pub const IA32_MC11_MISC: u32 = 0x42f;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC11_MISC: u32 = 0x42f;

/// 06_2EH
pub const IA32_MC12_CTL: u32 = 0x430;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC12_CTL: u32 = 0x430;

/// 06_2EH
pub const IA32_MC12_STATUS: u32 = 0x431;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC12_STATUS: u32 = 0x431;

/// 06_2EH
pub const IA32_MC12_ADDR1: u32 = 0x432;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC12_ADDR: u32 = 0x432;

/// 06_2EH
pub const IA32_MC12_MISC: u32 = 0x433;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC12_MISC: u32 = 0x433;

/// 06_2EH
pub const IA32_MC13_CTL: u32 = 0x434;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC13_CTL: u32 = 0x434;

/// 06_2EH
pub const IA32_MC13_STATUS: u32 = 0x435;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC13_STATUS: u32 = 0x435;

/// 06_2EH
pub const IA32_MC13_ADDR1: u32 = 0x436;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC13_ADDR: u32 = 0x436;

/// 06_2EH
pub const IA32_MC13_MISC: u32 = 0x437;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC13_MISC: u32 = 0x437;

/// 06_2EH
pub const IA32_MC14_CTL: u32 = 0x438;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC14_CTL: u32 = 0x438;

/// 06_2EH
pub const IA32_MC14_STATUS: u32 = 0x439;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC14_STATUS: u32 = 0x439;

/// 06_2EH
pub const IA32_MC14_ADDR1: u32 = 0x43a;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC14_ADDR: u32 = 0x43a;

/// 06_2EH
pub const IA32_MC14_MISC: u32 = 0x43b;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC14_MISC: u32 = 0x43b;

/// 06_2EH
pub const IA32_MC15_CTL: u32 = 0x43c;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC15_CTL: u32 = 0x43c;

/// 06_2EH
pub const IA32_MC15_STATUS: u32 = 0x43d;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC15_STATUS: u32 = 0x43d;

/// 06_2EH
pub const IA32_MC15_ADDR1: u32 = 0x43e;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC15_ADDR: u32 = 0x43e;

/// 06_2EH
pub const IA32_MC15_MISC: u32 = 0x43f;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC15_MISC: u32 = 0x43f;

/// 06_2EH
pub const IA32_MC16_CTL: u32 = 0x440;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC16_CTL: u32 = 0x440;

/// 06_2EH
pub const IA32_MC16_STATUS: u32 = 0x441;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC16_STATUS: u32 = 0x441;

/// 06_2EH
pub const IA32_MC16_ADDR1: u32 = 0x442;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC16_ADDR: u32 = 0x442;

/// 06_2EH
pub const IA32_MC16_MISC: u32 = 0x443;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC16_MISC: u32 = 0x443;

/// 06_2EH
pub const IA32_MC17_CTL: u32 = 0x444;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC17_CTL: u32 = 0x444;

/// 06_2EH
pub const IA32_MC17_STATUS: u32 = 0x445;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC17_STATUS: u32 = 0x445;

/// 06_2EH
pub const IA32_MC17_ADDR1: u32 = 0x446;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC17_ADDR: u32 = 0x446;

/// 06_2EH
pub const IA32_MC17_MISC: u32 = 0x447;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC17_MISC: u32 = 0x447;

/// 06_2EH
pub const IA32_MC18_CTL: u32 = 0x448;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC18_CTL: u32 = 0x448;

/// 06_2EH
pub const IA32_MC18_STATUS: u32 = 0x449;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC18_STATUS: u32 = 0x449;

/// 06_2EH
pub const IA32_MC18_ADDR1: u32 = 0x44a;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC18_ADDR: u32 = 0x44a;

/// 06_2EH
pub const IA32_MC18_MISC: u32 = 0x44b;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC18_MISC: u32 = 0x44b;

/// 06_2EH
pub const IA32_MC19_CTL: u32 = 0x44c;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC19_CTL: u32 = 0x44c;

/// 06_2EH
pub const IA32_MC19_STATUS: u32 = 0x44d;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC19_STATUS: u32 = 0x44d;

/// 06_2EH
pub const IA32_MC19_ADDR1: u32 = 0x44e;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC19_ADDR: u32 = 0x44e;

/// 06_2EH
pub const IA32_MC19_MISC: u32 = 0x44f;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC19_MISC: u32 = 0x44f;

/// 06_2EH
pub const IA32_MC20_CTL: u32 = 0x450;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC20_CTL: u32 = 0x450;

/// 06_2EH
pub const IA32_MC20_STATUS: u32 = 0x451;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC20_STATUS: u32 = 0x451;

/// 06_2EH
pub const IA32_MC20_ADDR1: u32 = 0x452;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC20_ADDR: u32 = 0x452;

/// 06_2EH
pub const IA32_MC20_MISC: u32 = 0x453;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC20_MISC: u32 = 0x453;

/// 06_2EH
pub const IA32_MC21_CTL: u32 = 0x454;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC21_CTL: u32 = 0x454;

/// 06_2EH
pub const IA32_MC21_STATUS: u32 = 0x455;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC21_STATUS: u32 = 0x455;

/// 06_2EH
pub const IA32_MC21_ADDR1: u32 = 0x456;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC21_ADDR: u32 = 0x456;

/// 06_2EH
pub const IA32_MC21_MISC: u32 = 0x457;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC21_MISC: u32 = 0x457;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC22_CTL: u32 = 0x458;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC22_STATUS: u32 = 0x459;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC22_ADDR: u32 = 0x45a;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC22_MISC: u32 = 0x45b;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC23_CTL: u32 = 0x45c;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC23_STATUS: u32 = 0x45d;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC23_ADDR: u32 = 0x45e;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC23_MISC: u32 = 0x45f;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC24_CTL: u32 = 0x460;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC24_STATUS: u32 = 0x461;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC24_ADDR: u32 = 0x462;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC24_MISC: u32 = 0x463;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC25_CTL: u32 = 0x464;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC25_STATUS: u32 = 0x465;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC25_ADDR: u32 = 0x466;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC25_MISC: u32 = 0x467;

/// See Section 15.3.2.1,  IA32_MCi_CTL MSRs.
pub const MSR_MC26_CTL: u32 = 0x468;

/// See Section 15.3.2.2, IA32_MCi_STATUS MSRS,  and Chapter 16.
pub const MSR_MC26_STATUS: u32 = 0x469;

/// See Section 15.3.2.3, IA32_MCi_ADDR MSRs.
pub const MSR_MC26_ADDR: u32 = 0x46a;

/// See Section 15.3.2.4,  IA32_MCi_MISC MSRs.
pub const MSR_MC26_MISC: u32 = 0x46b;

/// Reporting Register of Basic VMX Capabilities (R/O) See Table 35-2. See Appendix A.1, Basic VMX Information (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_BASIC: u32 = 0x480;

/// Capability Reporting Register of Pin-based VM-execution  Controls (R/O) See Appendix A.3, VM-Execution Controls (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_PINBASED_CTLS: u32 = 0x481;

/// Capability Reporting Register of Primary Processor-based  VM-execution Controls (R/O) See Appendix A.3, VM-Execution Controls (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_PROCBASED_CTLS: u32 = 0x482;

/// Capability Reporting Register of VM-exit Controls (R/O) See Appendix A.4, VM-Exit Controls (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_EXIT_CTLS: u32 = 0x483;

/// Capability Reporting Register of VM-entry Controls (R/O) See Appendix A.5, VM-Entry Controls (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_ENTRY_CTLS: u32 = 0x484;

/// Reporting Register of Miscellaneous VMX Capabilities (R/O) See Appendix A.6, Miscellaneous Data (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_MISC: u32 = 0x485;

/// Capability Reporting Register of CR0 Bits Fixed to 0 (R/O) See Appendix A.7, VMX-Fixed Bits in CR0 (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_CR0_FIXED0: u32 = 0x486;

/// If CPUID.01H:ECX.\[bit 5\] = 1
pub const IA32_VMX_CRO_FIXED0: u32 = 0x486;

/// Capability Reporting Register of CR0 Bits Fixed to 1 (R/O) See Appendix A.7, VMX-Fixed Bits in CR0 (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_CR0_FIXED1: u32 = 0x487;

/// If CPUID.01H:ECX.\[bit 5\] = 1
pub const IA32_VMX_CRO_FIXED1: u32 = 0x487;

/// Capability Reporting Register of CR4 Bits Fixed to 0 (R/O) See Appendix A.8, VMX-Fixed Bits in CR4 (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_CR4_FIXED0: u32 = 0x488;

/// Capability Reporting Register of CR4 Bits Fixed to 1 (R/O) See Appendix A.8, VMX-Fixed Bits in CR4 (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_CR4_FIXED1: u32 = 0x489;

/// Capability Reporting Register of VMCS Field Enumeration (R/O) See Appendix A.9, VMCS Enumeration (If CPUID.01H:ECX.\[bit 9\])
pub const IA32_VMX_VMCS_ENUM: u32 = 0x48a;

/// Capability Reporting Register of Secondary Processor-based  VM-execution Controls (R/O) See Appendix A.3, VM-Execution Controls (If CPUID.01H:ECX.\[bit 9\] and  IA32_VMX_PROCBASED_CTLS\[bit 63\])
pub const IA32_VMX_PROCBASED_CTLS2: u32 = 0x48b;

/// Capability Reporting Register of EPT and VPID (R/O)  See Table 35-2
pub const IA32_VMX_EPT_VPID_ENUM: u32 = 0x48c;

/// If ( CPUID.01H:ECX.\[bit 5\],  IA32_VMX_PROCBASED_C TLS\[bit 63\], and either  IA32_VMX_PROCBASED_C TLS2\[bit 33\] or  IA32_VMX_PROCBASED_C TLS2\[bit 37\])
pub const IA32_VMX_EPT_VPID_CAP: u32 = 0x48c;

/// Capability Reporting Register of Pin-based VM-execution Flex  Controls (R/O) See Table 35-2
pub const IA32_VMX_TRUE_PINBASED_CTLS: u32 = 0x48d;

/// Capability Reporting Register of Primary Processor-based  VM-execution Flex Controls (R/O) See Table 35-2
pub const IA32_VMX_TRUE_PROCBASED_CTLS: u32 = 0x48e;

/// Capability Reporting Register of VM-exit Flex Controls (R/O) See Table 35-2
pub const IA32_VMX_TRUE_EXIT_CTLS: u32 = 0x48f;

/// Capability Reporting Register of VM-entry Flex Controls (R/O) See Table 35-2
pub const IA32_VMX_TRUE_ENTRY_CTLS: u32 = 0x490;

/// Capability Reporting Register of VM-function Controls (R/O) See Table 35-2
pub const IA32_VMX_FMFUNC: u32 = 0x491;

/// If( CPUID.01H:ECX.\[bit 5\] =  1 and IA32_VMX_BASIC\[bit 55\] )
pub const IA32_VMX_VMFUNC: u32 = 0x491;

/// (If CPUID.0AH: EAX\[15:8\] >  0) & IA32_PERF_CAPABILITIES\[ 13\] = 1
pub const IA32_A_PMC0: u32 = 0x4c1;

/// (If CPUID.0AH: EAX\[15:8\] >  1) & IA32_PERF_CAPABILITIES\[ 13\] = 1
pub const IA32_A_PMC1: u32 = 0x4c2;

/// (If CPUID.0AH: EAX\[15:8\] >  2) & IA32_PERF_CAPABILITIES\[ 13\] = 1
pub const IA32_A_PMC2: u32 = 0x4c3;

/// (If CPUID.0AH: EAX\[15:8\] >  3) & IA32_PERF_CAPABILITIES\[ 13\] = 1
pub const IA32_A_PMC3: u32 = 0x4c4;

/// (If CPUID.0AH: EAX\[15:8\] >  4) & IA32_PERF_CAPABILITIES\[ 13\] = 1
pub const IA32_A_PMC4: u32 = 0x4c5;

/// (If CPUID.0AH: EAX\[15:8\] >  5) & IA32_PERF_CAPABILITIES\[ 13\] = 1
pub const IA32_A_PMC5: u32 = 0x4c6;

/// (If CPUID.0AH: EAX\[15:8\] >  6) & IA32_PERF_CAPABILITIES\[ 13\] = 1
pub const IA32_A_PMC6: u32 = 0x4c7;

/// (If CPUID.0AH: EAX\[15:8\] >  7) & IA32_PERF_CAPABILITIES\[ 13\] = 1
pub const IA32_A_PMC7: u32 = 0x4c8;

/// Enhanced SMM Feature Control (SMM-RW) Reports SMM capability Enhancement. Accessible only while in  SMM.
pub const MSR_SMM_FEATURE_CONTROL: u32 = 0x4e0;

/// SMM Delayed (SMM-RO) Reports the interruptible state of all logical processors in the  package . Available only while in SMM and  MSR_SMM_MCA_CAP\[LONG_FLOW_INDICATION\] == 1.
pub const MSR_SMM_DELAYED: u32 = 0x4e2;

/// SMM Blocked (SMM-RO) Reports the blocked state of all logical processors in the package .  Available only while in SMM.
pub const MSR_SMM_BLOCKED: u32 = 0x4e3;

/// Trace Output Base Register (R/W)
pub const MSR_IA32_RTIT_OUTPUT_BASE: u32 = 0x560;

/// Trace Output Mask Pointers Register (R/W)
pub const MSR_IA32_RTIT_OUTPUT_MASK_PTRS: u32 = 0x561;

/// Trace Control Register (R/W)
pub const MSR_IA32_RTIT_CTL: u32 = 0x570;

/// Tracing Status Register (R/W)
pub const MSR_IA32_RTIT_STATUS: u32 = 0x571;

/// Trace Filter CR3 Match Register (R/W)
pub const MSR_IA32_CR3_MATCH: u32 = 0x572;

/// Trace Start Address 0
pub const MSR_IA32_ADDR0_START: u32 = 0x580;

/// Trace End Address 0
pub const MSR_IA32_ADDR0_END: u32 = 0x581;

/// Trace Start Address 1
pub const MSR_IA32_ADDR1_START: u32 = 0x582;

/// Trace End Address 1
pub const MSR_IA32_ADDR1_END: u32 = 0x583;

/// Trace Start Address 3
pub const MSR_IA32_ADDR2_START: u32 = 0x584;

/// Trace End Address 3
pub const MSR_IA32_ADDR2_END: u32 = 0x585;

/// Trace Start Address 4
pub const MSR_IA32_ADDR3_START: u32 = 0x586;

/// Trace End Address 4
pub const MSR_IA32_ADDR3_END: u32 = 0x587;

/// DS Save Area (R/W) See Table 35-2. Points to the DS buffer management area, which is used to manage the  BTS and PEBS buffers. See Section 18.12.4, Debug Store (DS)  Mechanism.
pub const IA32_DS_AREA: u32 = 0x600;

/// Unit Multipliers used in RAPL Interfaces (R/O)  See Section 14.7.1, RAPL Interfaces.
pub const MSR_RAPL_POWER_UNIT: u32 = 0x606;

/// Package C3 Interrupt Response Limit (R/W)  Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_PKGC3_IRTL: u32 = 0x60a;

/// Package C6 Interrupt Response Limit (R/W)  This MSR defines the budget allocated for the package to exit from  C6 to a C0 state, where interrupt request can be delivered to the  core and serviced. Additional core-exit latency amy be applicable  depending on the actual C-state the core is in.  Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_PKGC6_IRTL: u32 = 0x60b;

/// Package C7 Interrupt Response Limit (R/W)  This MSR defines the budget allocated for the package to exit from  C7 to a C0 state, where interrupt request can be delivered to the  core and serviced. Additional core-exit latency amy be applicable  depending on the actual C-state the core is in.  Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C-States.
pub const MSR_PKGC7_IRTL: u32 = 0x60c;

/// PKG RAPL Power Limit Control (R/W)  See Section 14.7.3, Package RAPL Domain.
pub const MSR_PKG_POWER_LIMIT: u32 = 0x610;

/// PKG Energy Status (R/O)  See Section 14.7.3, Package RAPL Domain.
pub const MSR_PKG_ENERGY_STATUS: u32 = 0x611;

/// Package RAPL Perf Status (R/O)
pub const MSR_PKG_PERF_STATUS: u32 = 0x613;

/// PKG RAPL Parameters (R/W) See Section 14.7.3,  Package RAPL  Domain.
pub const MSR_PKG_POWER_INFO: u32 = 0x614;

/// DRAM RAPL Power Limit Control (R/W)  See Section 14.7.5, DRAM RAPL Domain.
pub const MSR_DRAM_POWER_LIMIT: u32 = 0x618;

/// DRAM Energy Status (R/O)  See Section 14.7.5, DRAM RAPL Domain.
pub const MSR_DRAM_ENERGY_STATUS: u32 = 0x619;

/// DRAM Performance Throttling Status (R/O) See Section 14.7.5,  DRAM RAPL Domain.
pub const MSR_DRAM_PERF_STATUS: u32 = 0x61b;

/// DRAM RAPL Parameters (R/W) See Section 14.7.5, DRAM RAPL Domain.
pub const MSR_DRAM_POWER_INFO: u32 = 0x61c;

/// Note: C-state values are processor specific C-state code names, unrelated to MWAIT extension C-state parameters or ACPI C-States.
pub const MSR_PKG_C9_RESIDENCY: u32 = 0x631;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C-States.
pub const MSR_PKG_C10_RESIDENCY: u32 = 0x632;

/// PP0 RAPL Power Limit Control (R/W)  See Section 14.7.4, PP0/PP1 RAPL Domains.
pub const MSR_PP0_POWER_LIMIT: u32 = 0x638;

/// PP0 Energy Status (R/O)  See Section 14.7.4, PP0/PP1 RAPL Domains.
pub const MSR_PP0_ENERGY_STATUS: u32 = 0x639;

/// PP0 Balance Policy (R/W)  See Section 14.7.4, PP0/PP1 RAPL Domains.
pub const MSR_PP0_POLICY: u32 = 0x63a;

/// PP0 Performance Throttling Status (R/O) See Section 14.7.4,  PP0/PP1 RAPL Domains.
pub const MSR_PP0_PERF_STATUS: u32 = 0x63b;

/// PP1 RAPL Power Limit Control (R/W)  See Section 14.7.4, PP0/PP1 RAPL Domains.
pub const MSR_PP1_POWER_LIMIT: u32 = 0x640;

/// PP1 Energy Status (R/O)  See Section 14.7.4, PP0/PP1 RAPL Domains.
pub const MSR_PP1_ENERGY_STATUS: u32 = 0x641;

/// PP1 Balance Policy (R/W)  See Section 14.7.4, PP0/PP1 RAPL Domains.
pub const MSR_PP1_POLICY: u32 = 0x642;

/// Nominal TDP Ratio (R/O)
pub const MSR_CONFIG_TDP_NOMINAL: u32 = 0x648;

/// ConfigTDP Level 1 ratio and power level (R/O)
pub const MSR_CONFIG_TDP_LEVEL1: u32 = 0x649;

/// ConfigTDP Level 2 ratio and power level (R/O)
pub const MSR_CONFIG_TDP_LEVEL2: u32 = 0x64a;

/// ConfigTDP Control (R/W)
pub const MSR_CONFIG_TDP_CONTROL: u32 = 0x64b;

/// ConfigTDP Control (R/W)
pub const MSR_TURBO_ACTIVATION_RATIO: u32 = 0x64c;

/// Note: C-state values are processor specific C-state code names,  unrelated to MWAIT extension C-state parameters or ACPI C- States.
pub const MSR_CORE_C1_RESIDENCY: u32 = 0x660;

/// Last Branch Record 8 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_8_FROM_IP: u32 = 0x688;

/// Last Branch Record 9 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_9_FROM_IP: u32 = 0x689;

/// Last Branch Record 10 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_10_FROM_IP: u32 = 0x68a;

/// Last Branch Record 11 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_11_FROM_IP: u32 = 0x68b;

/// Last Branch Record 12 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_12_FROM_IP: u32 = 0x68c;

/// Last Branch Record 13 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_13_FROM_IP: u32 = 0x68d;

/// Last Branch Record 14 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_14_FROM_IP: u32 = 0x68e;

/// Last Branch Record 15 From IP (R/W) See description of MSR_LASTBRANCH_0_FROM_IP.
pub const MSR_LASTBRANCH_15_FROM_IP: u32 = 0x68f;

/// Last Branch Record 8 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_8_TO_IP: u32 = 0x6c8;

/// Last Branch Record 9 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_9_TO_IP: u32 = 0x6c9;

/// Last Branch Record 10 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_10_TO_IP: u32 = 0x6ca;

/// Last Branch Record 11 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_11_TO_IP: u32 = 0x6cb;

/// Last Branch Record 12 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_12_TO_IP: u32 = 0x6cc;

/// Last Branch Record 13 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_13_TO_IP: u32 = 0x6cd;

/// Last Branch Record 14 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_14_TO_IP: u32 = 0x6ce;

/// Last Branch Record 15 To IP (R/W) See description of MSR_LASTBRANCH_0_TO_IP.
pub const MSR_LASTBRANCH_15_TO_IP: u32 = 0x6cf;

/// TSC Target of Local APIC s TSC Deadline Mode (R/W)  See Table 35-2
pub const IA32_TSC_DEADLINE: u32 = 0x6e0;

/// Uncore C-Box 0, counter 0 event select MSR
pub const MSR_UNC_CBO_0_PERFEVTSEL0: u32 = 0x700;

/// Uncore C-Box 0, counter 1 event select MSR
pub const MSR_UNC_CBO_0_PERFEVTSEL1: u32 = 0x701;

/// Uncore C-Box 0, performance counter 0
pub const MSR_UNC_CBO_0_PER_CTR0: u32 = 0x706;

/// Uncore C-Box 0, performance counter 1
pub const MSR_UNC_CBO_0_PER_CTR1: u32 = 0x707;

/// Uncore C-Box 1, counter 0 event select MSR
pub const MSR_UNC_CBO_1_PERFEVTSEL0: u32 = 0x710;

/// Uncore C-Box 1, counter 1 event select MSR
pub const MSR_UNC_CBO_1_PERFEVTSEL1: u32 = 0x711;

/// Uncore C-Box 1, performance counter 0
pub const MSR_UNC_CBO_1_PER_CTR0: u32 = 0x716;

/// Uncore C-Box 1, performance counter 1
pub const MSR_UNC_CBO_1_PER_CTR1: u32 = 0x717;

/// Uncore C-Box 2, counter 0 event select MSR
pub const MSR_UNC_CBO_2_PERFEVTSEL0: u32 = 0x720;

/// Uncore C-Box 2, counter 1 event select MSR
pub const MSR_UNC_CBO_2_PERFEVTSEL1: u32 = 0x721;

/// Uncore C-Box 2, performance counter 0
pub const MSR_UNC_CBO_2_PER_CTR0: u32 = 0x726;

/// Uncore C-Box 2, performance counter 1
pub const MSR_UNC_CBO_2_PER_CTR1: u32 = 0x727;

/// Uncore C-Box 3, counter 0 event select MSR
pub const MSR_UNC_CBO_3_PERFEVTSEL0: u32 = 0x730;

/// Uncore C-Box 3, counter 1 event select MSR.
pub const MSR_UNC_CBO_3_PERFEVTSEL1: u32 = 0x731;

/// Uncore C-Box 3, performance counter 0.
pub const MSR_UNC_CBO_3_PER_CTR0: u32 = 0x736;

/// Uncore C-Box 3, performance counter 1.
pub const MSR_UNC_CBO_3_PER_CTR1: u32 = 0x737;

/// x2APIC ID register (R/O) See x2APIC Specification.
pub const IA32_X2APIC_APICID: u32 = 0x802;

/// x2APIC Version. If ( CPUID.01H:ECX.\[bit 21\]  = 1 )
pub const IA32_X2APIC_VERSION: u32 = 0x803;

/// x2APIC Task Priority register (R/W)
pub const IA32_X2APIC_TPR: u32 = 0x808;

/// x2APIC Processor Priority register (R/O)
pub const IA32_X2APIC_PPR: u32 = 0x80a;

/// x2APIC End of Interrupt. If ( CPUID.01H:ECX.\[bit 21\]  = 1 )
pub const IA32_X2APIC_EOI: u32 = 0x80b;

/// x2APIC Logical Destination register (R/O)
pub const IA32_X2APIC_LDR: u32 = 0x80d;

/// x2APIC Spurious Interrupt Vector register (R/W)
pub const IA32_X2APIC_SIVR: u32 = 0x80f;

/// x2APIC In-Service register bits \[31:0\] (R/O)
pub const IA32_X2APIC_ISR0: u32 = 0x810;

/// x2APIC In-Service register bits \[63:32\] (R/O)
pub const IA32_X2APIC_ISR1: u32 = 0x811;

/// x2APIC In-Service register bits \[95:64\] (R/O)
pub const IA32_X2APIC_ISR2: u32 = 0x812;

/// x2APIC In-Service register bits \[127:96\] (R/O)
pub const IA32_X2APIC_ISR3: u32 = 0x813;

/// x2APIC In-Service register bits \[159:128\] (R/O)
pub const IA32_X2APIC_ISR4: u32 = 0x814;

/// x2APIC In-Service register bits \[191:160\] (R/O)
pub const IA32_X2APIC_ISR5: u32 = 0x815;

/// x2APIC In-Service register bits \[223:192\] (R/O)
pub const IA32_X2APIC_ISR6: u32 = 0x816;

/// x2APIC In-Service register bits \[255:224\] (R/O)
pub const IA32_X2APIC_ISR7: u32 = 0x817;

/// x2APIC Trigger Mode register bits \[31:0\] (R/O)
pub const IA32_X2APIC_TMR0: u32 = 0x818;

/// x2APIC Trigger Mode register bits \[63:32\] (R/O)
pub const IA32_X2APIC_TMR1: u32 = 0x819;

/// x2APIC Trigger Mode register bits \[95:64\] (R/O)
pub const IA32_X2APIC_TMR2: u32 = 0x81a;

/// x2APIC Trigger Mode register bits \[127:96\] (R/O)
pub const IA32_X2APIC_TMR3: u32 = 0x81b;

/// x2APIC Trigger Mode register bits \[159:128\] (R/O)
pub const IA32_X2APIC_TMR4: u32 = 0x81c;

/// x2APIC Trigger Mode register bits \[191:160\] (R/O)
pub const IA32_X2APIC_TMR5: u32 = 0x81d;

/// x2APIC Trigger Mode register bits \[223:192\] (R/O)
pub const IA32_X2APIC_TMR6: u32 = 0x81e;

/// x2APIC Trigger Mode register bits \[255:224\] (R/O)
pub const IA32_X2APIC_TMR7: u32 = 0x81f;

/// x2APIC Interrupt Request register bits \[31:0\] (R/O)
pub const IA32_X2APIC_IRR0: u32 = 0x820;

/// x2APIC Interrupt Request register bits \[63:32\] (R/O)
pub const IA32_X2APIC_IRR1: u32 = 0x821;

/// x2APIC Interrupt Request register bits \[95:64\] (R/O)
pub const IA32_X2APIC_IRR2: u32 = 0x822;

/// x2APIC Interrupt Request register bits \[127:96\] (R/O)
pub const IA32_X2APIC_IRR3: u32 = 0x823;

/// x2APIC Interrupt Request register bits \[159:128\] (R/O)
pub const IA32_X2APIC_IRR4: u32 = 0x824;

/// x2APIC Interrupt Request register bits \[191:160\] (R/O)
pub const IA32_X2APIC_IRR5: u32 = 0x825;

/// x2APIC Interrupt Request register bits \[223:192\] (R/O)
pub const IA32_X2APIC_IRR6: u32 = 0x826;

/// x2APIC Interrupt Request register bits \[255:224\] (R/O)
pub const IA32_X2APIC_IRR7: u32 = 0x827;

/// Error Status Register. If ( CPUID.01H:ECX.\[bit 21\]  = 1 )
pub const IA32_X2APIC_ESR: u32 = 0x828;

/// x2APIC LVT Corrected Machine Check Interrupt register (R/W)
pub const IA32_X2APIC_LVT_CMCI: u32 = 0x82f;

/// x2APIC Interrupt Command register (R/W)
pub const IA32_X2APIC_ICR: u32 = 0x830;

/// x2APIC LVT Timer Interrupt register (R/W)
pub const IA32_X2APIC_LVT_TIMER: u32 = 0x832;

/// x2APIC LVT Thermal Sensor Interrupt register (R/W)
pub const IA32_X2APIC_LVT_THERMAL: u32 = 0x833;

/// x2APIC LVT Performance Monitor register (R/W)
pub const IA32_X2APIC_LVT_PMI: u32 = 0x834;

/// If ( CPUID.01H:ECX.\[bit 21\]  = 1 )
pub const IA32_X2APIC_LVT_LINT0: u32 = 0x835;

/// If ( CPUID.01H:ECX.\[bit 21\]  = 1 )
pub const IA32_X2APIC_LVT_LINT1: u32 = 0x836;

/// If ( CPUID.01H:ECX.\[bit 21\]  = 1 )
pub const IA32_X2APIC_LVT_ERROR: u32 = 0x837;

/// x2APIC Initial Count register (R/W)
pub const IA32_X2APIC_INIT_COUNT: u32 = 0x838;

/// x2APIC Current Count register (R/O)
pub const IA32_X2APIC_CUR_COUNT: u32 = 0x839;

/// x2APIC Divide Configuration register (R/W)
pub const IA32_X2APIC_DIV_CONF: u32 = 0x83e;

/// If ( CPUID.01H:ECX.\[bit 21\]  = 1 )
pub const IA32_X2APIC_SELF_IPI: u32 = 0x83f;

/// Uncore U-box perfmon global control MSR.
pub const MSR_U_PMON_GLOBAL_CTRL: u32 = 0xc00;

/// Uncore U-box perfmon global status MSR.
pub const MSR_U_PMON_GLOBAL_STATUS: u32 = 0xc01;

/// Uncore U-box perfmon global overflow control MSR.
pub const MSR_U_PMON_GLOBAL_OVF_CTRL: u32 = 0xc02;

/// Uncore U-box perfmon event select MSR.
pub const MSR_U_PMON_EVNT_SEL: u32 = 0xc10;

/// Uncore U-box perfmon counter MSR.
pub const MSR_U_PMON_CTR: u32 = 0xc11;

/// Uncore B-box 0 perfmon local box control MSR.
pub const MSR_B0_PMON_BOX_CTRL: u32 = 0xc20;

/// Uncore B-box 0 perfmon local box status MSR.
pub const MSR_B0_PMON_BOX_STATUS: u32 = 0xc21;

/// Uncore B-box 0 perfmon local box overflow control MSR.
pub const MSR_B0_PMON_BOX_OVF_CTRL: u32 = 0xc22;

/// Uncore B-box 0 perfmon event select MSR.
pub const MSR_B0_PMON_EVNT_SEL0: u32 = 0xc30;

/// Uncore B-box 0 perfmon counter MSR.
pub const MSR_B0_PMON_CTR0: u32 = 0xc31;

/// Uncore B-box 0 perfmon event select MSR.
pub const MSR_B0_PMON_EVNT_SEL1: u32 = 0xc32;

/// Uncore B-box 0 perfmon counter MSR.
pub const MSR_B0_PMON_CTR1: u32 = 0xc33;

/// Uncore B-box 0 perfmon event select MSR.
pub const MSR_B0_PMON_EVNT_SEL2: u32 = 0xc34;

/// Uncore B-box 0 perfmon counter MSR.
pub const MSR_B0_PMON_CTR2: u32 = 0xc35;

/// Uncore B-box 0 perfmon event select MSR.
pub const MSR_B0_PMON_EVNT_SEL3: u32 = 0xc36;

/// Uncore B-box 0 perfmon counter MSR.
pub const MSR_B0_PMON_CTR3: u32 = 0xc37;

/// Uncore S-box 0 perfmon local box control MSR.
pub const MSR_S0_PMON_BOX_CTRL: u32 = 0xc40;

/// Uncore S-box 0 perfmon local box status MSR.
pub const MSR_S0_PMON_BOX_STATUS: u32 = 0xc41;

/// Uncore S-box 0 perfmon local box overflow control MSR.
pub const MSR_S0_PMON_BOX_OVF_CTRL: u32 = 0xc42;

/// Uncore S-box 0 perfmon event select MSR.
pub const MSR_S0_PMON_EVNT_SEL0: u32 = 0xc50;

/// Uncore S-box 0 perfmon counter MSR.
pub const MSR_S0_PMON_CTR0: u32 = 0xc51;

/// Uncore S-box 0 perfmon event select MSR.
pub const MSR_S0_PMON_EVNT_SEL1: u32 = 0xc52;

/// Uncore S-box 0 perfmon counter MSR.
pub const MSR_S0_PMON_CTR1: u32 = 0xc53;

/// Uncore S-box 0 perfmon event select MSR.
pub const MSR_S0_PMON_EVNT_SEL2: u32 = 0xc54;

/// Uncore S-box 0 perfmon counter MSR.
pub const MSR_S0_PMON_CTR2: u32 = 0xc55;

/// Uncore S-box 0 perfmon event select MSR.
pub const MSR_S0_PMON_EVNT_SEL3: u32 = 0xc56;

/// Uncore S-box 0 perfmon counter MSR.
pub const MSR_S0_PMON_CTR3: u32 = 0xc57;

/// Uncore B-box 1 perfmon local box control MSR.
pub const MSR_B1_PMON_BOX_CTRL: u32 = 0xc60;

/// Uncore B-box 1 perfmon local box status MSR.
pub const MSR_B1_PMON_BOX_STATUS: u32 = 0xc61;

/// Uncore B-box 1 perfmon local box overflow control MSR.
pub const MSR_B1_PMON_BOX_OVF_CTRL: u32 = 0xc62;

/// Uncore B-box 1 perfmon event select MSR.
pub const MSR_B1_PMON_EVNT_SEL0: u32 = 0xc70;

/// Uncore B-box 1 perfmon counter MSR.
pub const MSR_B1_PMON_CTR0: u32 = 0xc71;

/// Uncore B-box 1 perfmon event select MSR.
pub const MSR_B1_PMON_EVNT_SEL1: u32 = 0xc72;

/// Uncore B-box 1 perfmon counter MSR.
pub const MSR_B1_PMON_CTR1: u32 = 0xc73;

/// Uncore B-box 1 perfmon event select MSR.
pub const MSR_B1_PMON_EVNT_SEL2: u32 = 0xc74;

/// Uncore B-box 1 perfmon counter MSR.
pub const MSR_B1_PMON_CTR2: u32 = 0xc75;

/// Uncore B-box 1vperfmon event select MSR.
pub const MSR_B1_PMON_EVNT_SEL3: u32 = 0xc76;

/// Uncore B-box 1 perfmon counter MSR.
pub const MSR_B1_PMON_CTR3: u32 = 0xc77;

/// Uncore W-box perfmon local box control MSR.
pub const MSR_W_PMON_BOX_CTRL: u32 = 0xc80;

/// Uncore W-box perfmon local box status MSR.
pub const MSR_W_PMON_BOX_STATUS: u32 = 0xc81;

/// Uncore W-box perfmon local box overflow control MSR.
pub const MSR_W_PMON_BOX_OVF_CTRL: u32 = 0xc82;

/// If ( CPUID.(EAX=07H,  ECX=0):EBX.\[bit 12\] = 1 )
pub const IA32_QM_EVTSEL: u32 = 0xc8d;

/// If ( CPUID.(EAX=07H,  ECX=0):EBX.\[bit 12\] = 1 )
pub const IA32_QM_CTR: u32 = 0xc8e;

/// If ( CPUID.(EAX=07H,  ECX=0):EBX.\[bit 12\] = 1 )
pub const IA32_PQR_ASSOC: u32 = 0xc8f;

/// Uncore W-box perfmon event select MSR.
pub const MSR_W_PMON_EVNT_SEL0: u32 = 0xc90;

/// Uncore W-box perfmon counter MSR.
pub const MSR_W_PMON_CTR0: u32 = 0xc91;

/// Uncore W-box perfmon event select MSR.
pub const MSR_W_PMON_EVNT_SEL1: u32 = 0xc92;

/// Uncore W-box perfmon counter MSR.
pub const MSR_W_PMON_CTR1: u32 = 0xc93;

/// Uncore W-box perfmon event select MSR.
pub const MSR_W_PMON_EVNT_SEL2: u32 = 0xc94;

/// Uncore W-box perfmon counter MSR.
pub const MSR_W_PMON_CTR2: u32 = 0xc95;

/// Uncore W-box perfmon event select MSR.
pub const MSR_W_PMON_EVNT_SEL3: u32 = 0xc96;

/// Uncore W-box perfmon counter MSR.
pub const MSR_W_PMON_CTR3: u32 = 0xc97;

/// Uncore M-box 0 perfmon local box control MSR.
pub const MSR_M0_PMON_BOX_CTRL: u32 = 0xca0;

/// Uncore M-box 0 perfmon local box status MSR.
pub const MSR_M0_PMON_BOX_STATUS: u32 = 0xca1;

/// Uncore M-box 0 perfmon local box overflow control MSR.
pub const MSR_M0_PMON_BOX_OVF_CTRL: u32 = 0xca2;

/// Uncore M-box 0 perfmon time stamp unit select MSR.
pub const MSR_M0_PMON_TIMESTAMP: u32 = 0xca4;

/// Uncore M-box 0 perfmon DSP unit select MSR.
pub const MSR_M0_PMON_DSP: u32 = 0xca5;

/// Uncore M-box 0 perfmon ISS unit select MSR.
pub const MSR_M0_PMON_ISS: u32 = 0xca6;

/// Uncore M-box 0 perfmon MAP unit select MSR.
pub const MSR_M0_PMON_MAP: u32 = 0xca7;

/// Uncore M-box 0 perfmon MIC THR select MSR.
pub const MSR_M0_PMON_MSC_THR: u32 = 0xca8;

/// Uncore M-box 0 perfmon PGT unit select MSR.
pub const MSR_M0_PMON_PGT: u32 = 0xca9;

/// Uncore M-box 0 perfmon PLD unit select MSR.
pub const MSR_M0_PMON_PLD: u32 = 0xcaa;

/// Uncore M-box 0 perfmon ZDP unit select MSR.
pub const MSR_M0_PMON_ZDP: u32 = 0xcab;

/// Uncore M-box 0 perfmon event select MSR.
pub const MSR_M0_PMON_EVNT_SEL0: u32 = 0xcb0;

/// Uncore M-box 0 perfmon counter MSR.
pub const MSR_M0_PMON_CTR0: u32 = 0xcb1;

/// Uncore M-box 0 perfmon event select MSR.
pub const MSR_M0_PMON_EVNT_SEL1: u32 = 0xcb2;

/// Uncore M-box 0 perfmon counter MSR.
pub const MSR_M0_PMON_CTR1: u32 = 0xcb3;

/// Uncore M-box 0 perfmon event select MSR.
pub const MSR_M0_PMON_EVNT_SEL2: u32 = 0xcb4;

/// Uncore M-box 0 perfmon counter MSR.
pub const MSR_M0_PMON_CTR2: u32 = 0xcb5;

/// Uncore M-box 0 perfmon event select MSR.
pub const MSR_M0_PMON_EVNT_SEL3: u32 = 0xcb6;

/// Uncore M-box 0 perfmon counter MSR.
pub const MSR_M0_PMON_CTR3: u32 = 0xcb7;

/// Uncore M-box 0 perfmon event select MSR.
pub const MSR_M0_PMON_EVNT_SEL4: u32 = 0xcb8;

/// Uncore M-box 0 perfmon counter MSR.
pub const MSR_M0_PMON_CTR4: u32 = 0xcb9;

/// Uncore M-box 0 perfmon event select MSR.
pub const MSR_M0_PMON_EVNT_SEL5: u32 = 0xcba;

/// Uncore M-box 0 perfmon counter MSR.
pub const MSR_M0_PMON_CTR5: u32 = 0xcbb;

/// Uncore S-box 1 perfmon local box control MSR.
pub const MSR_S1_PMON_BOX_CTRL: u32 = 0xcc0;

/// Uncore S-box 1 perfmon local box status MSR.
pub const MSR_S1_PMON_BOX_STATUS: u32 = 0xcc1;

/// Uncore S-box 1 perfmon local box overflow control MSR.
pub const MSR_S1_PMON_BOX_OVF_CTRL: u32 = 0xcc2;

/// Uncore S-box 1 perfmon event select MSR.
pub const MSR_S1_PMON_EVNT_SEL0: u32 = 0xcd0;

/// Uncore S-box 1 perfmon counter MSR.
pub const MSR_S1_PMON_CTR0: u32 = 0xcd1;

/// Uncore S-box 1 perfmon event select MSR.
pub const MSR_S1_PMON_EVNT_SEL1: u32 = 0xcd2;

/// Uncore S-box 1 perfmon counter MSR.
pub const MSR_S1_PMON_CTR1: u32 = 0xcd3;

/// Uncore S-box 1 perfmon event select MSR.
pub const MSR_S1_PMON_EVNT_SEL2: u32 = 0xcd4;

/// Uncore S-box 1 perfmon counter MSR.
pub const MSR_S1_PMON_CTR2: u32 = 0xcd5;

/// Uncore S-box 1 perfmon event select MSR.
pub const MSR_S1_PMON_EVNT_SEL3: u32 = 0xcd6;

/// Uncore S-box 1 perfmon counter MSR.
pub const MSR_S1_PMON_CTR3: u32 = 0xcd7;

/// Uncore M-box 1 perfmon local box control MSR.
pub const MSR_M1_PMON_BOX_CTRL: u32 = 0xce0;

/// Uncore M-box 1 perfmon local box status MSR.
pub const MSR_M1_PMON_BOX_STATUS: u32 = 0xce1;

/// Uncore M-box 1 perfmon local box overflow control MSR.
pub const MSR_M1_PMON_BOX_OVF_CTRL: u32 = 0xce2;

/// Uncore M-box 1 perfmon time stamp unit select MSR.
pub const MSR_M1_PMON_TIMESTAMP: u32 = 0xce4;

/// Uncore M-box 1 perfmon DSP unit select MSR.
pub const MSR_M1_PMON_DSP: u32 = 0xce5;

/// Uncore M-box 1 perfmon ISS unit select MSR.
pub const MSR_M1_PMON_ISS: u32 = 0xce6;

/// Uncore M-box 1 perfmon MAP unit select MSR.
pub const MSR_M1_PMON_MAP: u32 = 0xce7;

/// Uncore M-box 1 perfmon MIC THR select MSR.
pub const MSR_M1_PMON_MSC_THR: u32 = 0xce8;

/// Uncore M-box 1 perfmon PGT unit select MSR.
pub const MSR_M1_PMON_PGT: u32 = 0xce9;

/// Uncore M-box 1 perfmon PLD unit select MSR.
pub const MSR_M1_PMON_PLD: u32 = 0xcea;

/// Uncore M-box 1 perfmon ZDP unit select MSR.
pub const MSR_M1_PMON_ZDP: u32 = 0xceb;

/// Uncore M-box 1 perfmon event select MSR.
pub const MSR_M1_PMON_EVNT_SEL0: u32 = 0xcf0;

/// Uncore M-box 1 perfmon counter MSR.
pub const MSR_M1_PMON_CTR0: u32 = 0xcf1;

/// Uncore M-box 1 perfmon event select MSR.
pub const MSR_M1_PMON_EVNT_SEL1: u32 = 0xcf2;

/// Uncore M-box 1 perfmon counter MSR.
pub const MSR_M1_PMON_CTR1: u32 = 0xcf3;

/// Uncore M-box 1 perfmon event select MSR.
pub const MSR_M1_PMON_EVNT_SEL2: u32 = 0xcf4;

/// Uncore M-box 1 perfmon counter MSR.
pub const MSR_M1_PMON_CTR2: u32 = 0xcf5;

/// Uncore M-box 1 perfmon event select MSR.
pub const MSR_M1_PMON_EVNT_SEL3: u32 = 0xcf6;

/// Uncore M-box 1 perfmon counter MSR.
pub const MSR_M1_PMON_CTR3: u32 = 0xcf7;

/// Uncore M-box 1 perfmon event select MSR.
pub const MSR_M1_PMON_EVNT_SEL4: u32 = 0xcf8;

/// Uncore M-box 1 perfmon counter MSR.
pub const MSR_M1_PMON_CTR4: u32 = 0xcf9;

/// Uncore M-box 1 perfmon event select MSR.
pub const MSR_M1_PMON_EVNT_SEL5: u32 = 0xcfa;

/// Uncore M-box 1 perfmon counter MSR.
pub const MSR_M1_PMON_CTR5: u32 = 0xcfb;

/// Uncore C-box 0 perfmon local box control MSR.
pub const MSR_C0_PMON_BOX_CTRL: u32 = 0xd00;

/// Uncore C-box 0 perfmon local box status MSR.
pub const MSR_C0_PMON_BOX_STATUS: u32 = 0xd01;

/// Uncore C-box 0 perfmon local box overflow control MSR.
pub const MSR_C0_PMON_BOX_OVF_CTRL: u32 = 0xd02;

/// Uncore C-box 0 perfmon event select MSR.
pub const MSR_C0_PMON_EVNT_SEL0: u32 = 0xd10;

/// Uncore C-box 0 perfmon counter MSR.
pub const MSR_C0_PMON_CTR0: u32 = 0xd11;

/// Uncore C-box 0 perfmon event select MSR.
pub const MSR_C0_PMON_EVNT_SEL1: u32 = 0xd12;

/// Uncore C-box 0 perfmon counter MSR.
pub const MSR_C0_PMON_CTR1: u32 = 0xd13;

/// Uncore C-box 0 perfmon event select MSR.
pub const MSR_C0_PMON_EVNT_SEL2: u32 = 0xd14;

/// Uncore C-box 0 perfmon counter MSR.
pub const MSR_C0_PMON_CTR2: u32 = 0xd15;

/// Uncore C-box 0 perfmon event select MSR.
pub const MSR_C0_PMON_EVNT_SEL3: u32 = 0xd16;

/// Uncore C-box 0 perfmon counter MSR.
pub const MSR_C0_PMON_CTR3: u32 = 0xd17;

/// Uncore C-box 0 perfmon event select MSR.
pub const MSR_C0_PMON_EVNT_SEL4: u32 = 0xd18;

/// Uncore C-box 0 perfmon counter MSR.
pub const MSR_C0_PMON_CTR4: u32 = 0xd19;

/// Uncore C-box 0 perfmon event select MSR.
pub const MSR_C0_PMON_EVNT_SEL5: u32 = 0xd1a;

/// Uncore C-box 0 perfmon counter MSR.
pub const MSR_C0_PMON_CTR5: u32 = 0xd1b;

/// Uncore C-box 4 perfmon local box control MSR.
pub const MSR_C4_PMON_BOX_CTRL: u32 = 0xd20;

/// Uncore C-box 4 perfmon local box status MSR.
pub const MSR_C4_PMON_BOX_STATUS: u32 = 0xd21;

/// Uncore C-box 4 perfmon local box overflow control MSR.
pub const MSR_C4_PMON_BOX_OVF_CTRL: u32 = 0xd22;

/// Uncore C-box 4 perfmon event select MSR.
pub const MSR_C4_PMON_EVNT_SEL0: u32 = 0xd30;

/// Uncore C-box 4 perfmon counter MSR.
pub const MSR_C4_PMON_CTR0: u32 = 0xd31;

/// Uncore C-box 4 perfmon event select MSR.
pub const MSR_C4_PMON_EVNT_SEL1: u32 = 0xd32;

/// Uncore C-box 4 perfmon counter MSR.
pub const MSR_C4_PMON_CTR1: u32 = 0xd33;

/// Uncore C-box 4 perfmon event select MSR.
pub const MSR_C4_PMON_EVNT_SEL2: u32 = 0xd34;

/// Uncore C-box 4 perfmon counter MSR.
pub const MSR_C4_PMON_CTR2: u32 = 0xd35;

/// Uncore C-box 4 perfmon event select MSR.
pub const MSR_C4_PMON_EVNT_SEL3: u32 = 0xd36;

/// Uncore C-box 4 perfmon counter MSR.
pub const MSR_C4_PMON_CTR3: u32 = 0xd37;

/// Uncore C-box 4 perfmon event select MSR.
pub const MSR_C4_PMON_EVNT_SEL4: u32 = 0xd38;

/// Uncore C-box 4 perfmon counter MSR.
pub const MSR_C4_PMON_CTR4: u32 = 0xd39;

/// Uncore C-box 4 perfmon event select MSR.
pub const MSR_C4_PMON_EVNT_SEL5: u32 = 0xd3a;

/// Uncore C-box 4 perfmon counter MSR.
pub const MSR_C4_PMON_CTR5: u32 = 0xd3b;

/// Uncore C-box 2 perfmon local box control MSR.
pub const MSR_C2_PMON_BOX_CTRL: u32 = 0xd40;

/// Uncore C-box 2 perfmon local box status MSR.
pub const MSR_C2_PMON_BOX_STATUS: u32 = 0xd41;

/// Uncore C-box 2 perfmon local box overflow control MSR.
pub const MSR_C2_PMON_BOX_OVF_CTRL: u32 = 0xd42;

/// Uncore C-box 2 perfmon event select MSR.
pub const MSR_C2_PMON_EVNT_SEL0: u32 = 0xd50;

/// Uncore C-box 2 perfmon counter MSR.
pub const MSR_C2_PMON_CTR0: u32 = 0xd51;

/// Uncore C-box 2 perfmon event select MSR.
pub const MSR_C2_PMON_EVNT_SEL1: u32 = 0xd52;

/// Uncore C-box 2 perfmon counter MSR.
pub const MSR_C2_PMON_CTR1: u32 = 0xd53;

/// Uncore C-box 2 perfmon event select MSR.
pub const MSR_C2_PMON_EVNT_SEL2: u32 = 0xd54;

/// Uncore C-box 2 perfmon counter MSR.
pub const MSR_C2_PMON_CTR2: u32 = 0xd55;

/// Uncore C-box 2 perfmon event select MSR.
pub const MSR_C2_PMON_EVNT_SEL3: u32 = 0xd56;

/// Uncore C-box 2 perfmon counter MSR.
pub const MSR_C2_PMON_CTR3: u32 = 0xd57;

/// Uncore C-box 2 perfmon event select MSR.
pub const MSR_C2_PMON_EVNT_SEL4: u32 = 0xd58;

/// Uncore C-box 2 perfmon counter MSR.
pub const MSR_C2_PMON_CTR4: u32 = 0xd59;

/// Uncore C-box 2 perfmon event select MSR.
pub const MSR_C2_PMON_EVNT_SEL5: u32 = 0xd5a;

/// Uncore C-box 2 perfmon counter MSR.
pub const MSR_C2_PMON_CTR5: u32 = 0xd5b;

/// Uncore C-box 6 perfmon local box control MSR.
pub const MSR_C6_PMON_BOX_CTRL: u32 = 0xd60;

/// Uncore C-box 6 perfmon local box status MSR.
pub const MSR_C6_PMON_BOX_STATUS: u32 = 0xd61;

/// Uncore C-box 6 perfmon local box overflow control MSR.
pub const MSR_C6_PMON_BOX_OVF_CTRL: u32 = 0xd62;

/// Uncore C-box 6 perfmon event select MSR.
pub const MSR_C6_PMON_EVNT_SEL0: u32 = 0xd70;

/// Uncore C-box 6 perfmon counter MSR.
pub const MSR_C6_PMON_CTR0: u32 = 0xd71;

/// Uncore C-box 6 perfmon event select MSR.
pub const MSR_C6_PMON_EVNT_SEL1: u32 = 0xd72;

/// Uncore C-box 6 perfmon counter MSR.
pub const MSR_C6_PMON_CTR1: u32 = 0xd73;

/// Uncore C-box 6 perfmon event select MSR.
pub const MSR_C6_PMON_EVNT_SEL2: u32 = 0xd74;

/// Uncore C-box 6 perfmon counter MSR.
pub const MSR_C6_PMON_CTR2: u32 = 0xd75;

/// Uncore C-box 6 perfmon event select MSR.
pub const MSR_C6_PMON_EVNT_SEL3: u32 = 0xd76;

/// Uncore C-box 6 perfmon counter MSR.
pub const MSR_C6_PMON_CTR3: u32 = 0xd77;

/// Uncore C-box 6 perfmon event select MSR.
pub const MSR_C6_PMON_EVNT_SEL4: u32 = 0xd78;

/// Uncore C-box 6 perfmon counter MSR.
pub const MSR_C6_PMON_CTR4: u32 = 0xd79;

/// Uncore C-box 6 perfmon event select MSR.
pub const MSR_C6_PMON_EVNT_SEL5: u32 = 0xd7a;

/// Uncore C-box 6 perfmon counter MSR.
pub const MSR_C6_PMON_CTR5: u32 = 0xd7b;

/// Uncore C-box 1 perfmon local box control MSR.
pub const MSR_C1_PMON_BOX_CTRL: u32 = 0xd80;

/// Uncore C-box 1 perfmon local box status MSR.
pub const MSR_C1_PMON_BOX_STATUS: u32 = 0xd81;

/// Uncore C-box 1 perfmon local box overflow control MSR.
pub const MSR_C1_PMON_BOX_OVF_CTRL: u32 = 0xd82;

/// Uncore C-box 1 perfmon event select MSR.
pub const MSR_C1_PMON_EVNT_SEL0: u32 = 0xd90;

/// Uncore C-box 1 perfmon counter MSR.
pub const MSR_C1_PMON_CTR0: u32 = 0xd91;

/// Uncore C-box 1 perfmon event select MSR.
pub const MSR_C1_PMON_EVNT_SEL1: u32 = 0xd92;

/// Uncore C-box 1 perfmon counter MSR.
pub const MSR_C1_PMON_CTR1: u32 = 0xd93;

/// Uncore C-box 1 perfmon event select MSR.
pub const MSR_C1_PMON_EVNT_SEL2: u32 = 0xd94;

/// Uncore C-box 1 perfmon counter MSR.
pub const MSR_C1_PMON_CTR2: u32 = 0xd95;

/// Uncore C-box 1 perfmon event select MSR.
pub const MSR_C1_PMON_EVNT_SEL3: u32 = 0xd96;

/// Uncore C-box 1 perfmon counter MSR.
pub const MSR_C1_PMON_CTR3: u32 = 0xd97;

/// Uncore C-box 1 perfmon event select MSR.
pub const MSR_C1_PMON_EVNT_SEL4: u32 = 0xd98;

/// Uncore C-box 1 perfmon counter MSR.
pub const MSR_C1_PMON_CTR4: u32 = 0xd99;

/// Uncore C-box 1 perfmon event select MSR.
pub const MSR_C1_PMON_EVNT_SEL5: u32 = 0xd9a;

/// Uncore C-box 1 perfmon counter MSR.
pub const MSR_C1_PMON_CTR5: u32 = 0xd9b;

/// Uncore C-box 5 perfmon local box control MSR.
pub const MSR_C5_PMON_BOX_CTRL: u32 = 0xda0;

/// Uncore C-box 5 perfmon local box status MSR.
pub const MSR_C5_PMON_BOX_STATUS: u32 = 0xda1;

/// Uncore C-box 5 perfmon local box overflow control MSR.
pub const MSR_C5_PMON_BOX_OVF_CTRL: u32 = 0xda2;

/// Uncore C-box 5 perfmon event select MSR.
pub const MSR_C5_PMON_EVNT_SEL0: u32 = 0xdb0;

/// Uncore C-box 5 perfmon counter MSR.
pub const MSR_C5_PMON_CTR0: u32 = 0xdb1;

/// Uncore C-box 5 perfmon event select MSR.
pub const MSR_C5_PMON_EVNT_SEL1: u32 = 0xdb2;

/// Uncore C-box 5 perfmon counter MSR.
pub const MSR_C5_PMON_CTR1: u32 = 0xdb3;

/// Uncore C-box 5 perfmon event select MSR.
pub const MSR_C5_PMON_EVNT_SEL2: u32 = 0xdb4;

/// Uncore C-box 5 perfmon counter MSR.
pub const MSR_C5_PMON_CTR2: u32 = 0xdb5;

/// Uncore C-box 5 perfmon event select MSR.
pub const MSR_C5_PMON_EVNT_SEL3: u32 = 0xdb6;

/// Uncore C-box 5 perfmon counter MSR.
pub const MSR_C5_PMON_CTR3: u32 = 0xdb7;

/// Uncore C-box 5 perfmon event select MSR.
pub const MSR_C5_PMON_EVNT_SEL4: u32 = 0xdb8;

/// Uncore C-box 5 perfmon counter MSR.
pub const MSR_C5_PMON_CTR4: u32 = 0xdb9;

/// Uncore C-box 5 perfmon event select MSR.
pub const MSR_C5_PMON_EVNT_SEL5: u32 = 0xdba;

/// Uncore C-box 5 perfmon counter MSR.
pub const MSR_C5_PMON_CTR5: u32 = 0xdbb;

/// Uncore C-box 3 perfmon local box control MSR.
pub const MSR_C3_PMON_BOX_CTRL: u32 = 0xdc0;

/// Uncore C-box 3 perfmon local box status MSR.
pub const MSR_C3_PMON_BOX_STATUS: u32 = 0xdc1;

/// Uncore C-box 3 perfmon local box overflow control MSR.
pub const MSR_C3_PMON_BOX_OVF_CTRL: u32 = 0xdc2;

/// Uncore C-box 3 perfmon event select MSR.
pub const MSR_C3_PMON_EVNT_SEL0: u32 = 0xdd0;

/// Uncore C-box 3 perfmon counter MSR.
pub const MSR_C3_PMON_CTR0: u32 = 0xdd1;

/// Uncore C-box 3 perfmon event select MSR.
pub const MSR_C3_PMON_EVNT_SEL1: u32 = 0xdd2;

/// Uncore C-box 3 perfmon counter MSR.
pub const MSR_C3_PMON_CTR1: u32 = 0xdd3;

/// Uncore C-box 3 perfmon event select MSR.
pub const MSR_C3_PMON_EVNT_SEL2: u32 = 0xdd4;

/// Uncore C-box 3 perfmon counter MSR.
pub const MSR_C3_PMON_CTR2: u32 = 0xdd5;

/// Uncore C-box 3 perfmon event select MSR.
pub const MSR_C3_PMON_EVNT_SEL3: u32 = 0xdd6;

/// Uncore C-box 3 perfmon counter MSR.
pub const MSR_C3_PMON_CTR3: u32 = 0xdd7;

/// Uncore C-box 3 perfmon event select MSR.
pub const MSR_C3_PMON_EVNT_SEL4: u32 = 0xdd8;

/// Uncore C-box 3 perfmon counter MSR.
pub const MSR_C3_PMON_CTR4: u32 = 0xdd9;

/// Uncore C-box 3 perfmon event select MSR.
pub const MSR_C3_PMON_EVNT_SEL5: u32 = 0xdda;

/// Uncore C-box 3 perfmon counter MSR.
pub const MSR_C3_PMON_CTR5: u32 = 0xddb;

/// Uncore C-box 7 perfmon local box control MSR.
pub const MSR_C7_PMON_BOX_CTRL: u32 = 0xde0;

/// Uncore C-box 7 perfmon local box status MSR.
pub const MSR_C7_PMON_BOX_STATUS: u32 = 0xde1;

/// Uncore C-box 7 perfmon local box overflow control MSR.
pub const MSR_C7_PMON_BOX_OVF_CTRL: u32 = 0xde2;

/// Uncore C-box 7 perfmon event select MSR.
pub const MSR_C7_PMON_EVNT_SEL0: u32 = 0xdf0;

/// Uncore C-box 7 perfmon counter MSR.
pub const MSR_C7_PMON_CTR0: u32 = 0xdf1;

/// Uncore C-box 7 perfmon event select MSR.
pub const MSR_C7_PMON_EVNT_SEL1: u32 = 0xdf2;

/// Uncore C-box 7 perfmon counter MSR.
pub const MSR_C7_PMON_CTR1: u32 = 0xdf3;

/// Uncore C-box 7 perfmon event select MSR.
pub const MSR_C7_PMON_EVNT_SEL2: u32 = 0xdf4;

/// Uncore C-box 7 perfmon counter MSR.
pub const MSR_C7_PMON_CTR2: u32 = 0xdf5;

/// Uncore C-box 7 perfmon event select MSR.
pub const MSR_C7_PMON_EVNT_SEL3: u32 = 0xdf6;

/// Uncore C-box 7 perfmon counter MSR.
pub const MSR_C7_PMON_CTR3: u32 = 0xdf7;

/// Uncore C-box 7 perfmon event select MSR.
pub const MSR_C7_PMON_EVNT_SEL4: u32 = 0xdf8;

/// Uncore C-box 7 perfmon counter MSR.
pub const MSR_C7_PMON_CTR4: u32 = 0xdf9;

/// Uncore C-box 7 perfmon event select MSR.
pub const MSR_C7_PMON_EVNT_SEL5: u32 = 0xdfa;

/// Uncore C-box 7 perfmon counter MSR.
pub const MSR_C7_PMON_CTR5: u32 = 0xdfb;

/// Uncore R-box 0 perfmon local box control MSR.
pub const MSR_R0_PMON_BOX_CTRL: u32 = 0xe00;

/// Uncore R-box 0 perfmon local box status MSR.
pub const MSR_R0_PMON_BOX_STATUS: u32 = 0xe01;

/// Uncore R-box 0 perfmon local box overflow control MSR.
pub const MSR_R0_PMON_BOX_OVF_CTRL: u32 = 0xe02;

/// Uncore R-box 0 perfmon IPERF0 unit Port 0 select MSR.
pub const MSR_R0_PMON_IPERF0_P0: u32 = 0xe04;

/// Uncore R-box 0 perfmon IPERF0 unit Port 1 select MSR.
pub const MSR_R0_PMON_IPERF0_P1: u32 = 0xe05;

/// Uncore R-box 0 perfmon IPERF0 unit Port 2 select MSR.
pub const MSR_R0_PMON_IPERF0_P2: u32 = 0xe06;

/// Uncore R-box 0 perfmon IPERF0 unit Port 3 select MSR.
pub const MSR_R0_PMON_IPERF0_P3: u32 = 0xe07;

/// Uncore R-box 0 perfmon IPERF0 unit Port 4 select MSR.
pub const MSR_R0_PMON_IPERF0_P4: u32 = 0xe08;

/// Uncore R-box 0 perfmon IPERF0 unit Port 5 select MSR.
pub const MSR_R0_PMON_IPERF0_P5: u32 = 0xe09;

/// Uncore R-box 0 perfmon IPERF0 unit Port 6 select MSR.
pub const MSR_R0_PMON_IPERF0_P6: u32 = 0xe0a;

/// Uncore R-box 0 perfmon IPERF0 unit Port 7 select MSR.
pub const MSR_R0_PMON_IPERF0_P7: u32 = 0xe0b;

/// Uncore R-box 0 perfmon QLX unit Port 0 select MSR.
pub const MSR_R0_PMON_QLX_P0: u32 = 0xe0c;

/// Uncore R-box 0 perfmon QLX unit Port 1 select MSR.
pub const MSR_R0_PMON_QLX_P1: u32 = 0xe0d;

/// Uncore R-box 0 perfmon QLX unit Port 2 select MSR.
pub const MSR_R0_PMON_QLX_P2: u32 = 0xe0e;

/// Uncore R-box 0 perfmon QLX unit Port 3 select MSR.
pub const MSR_R0_PMON_QLX_P3: u32 = 0xe0f;

/// Uncore R-box 0 perfmon event select MSR.
pub const MSR_R0_PMON_EVNT_SEL0: u32 = 0xe10;

/// Uncore R-box 0 perfmon counter MSR.
pub const MSR_R0_PMON_CTR0: u32 = 0xe11;

/// Uncore R-box 0 perfmon event select MSR.
pub const MSR_R0_PMON_EVNT_SEL1: u32 = 0xe12;

/// Uncore R-box 0 perfmon counter MSR.
pub const MSR_R0_PMON_CTR1: u32 = 0xe13;

/// Uncore R-box 0 perfmon event select MSR.
pub const MSR_R0_PMON_EVNT_SEL2: u32 = 0xe14;

/// Uncore R-box 0 perfmon counter MSR.
pub const MSR_R0_PMON_CTR2: u32 = 0xe15;

/// Uncore R-box 0 perfmon event select MSR.
pub const MSR_R0_PMON_EVNT_SEL3: u32 = 0xe16;

/// Uncore R-box 0 perfmon counter MSR.
pub const MSR_R0_PMON_CTR3: u32 = 0xe17;

/// Uncore R-box 0 perfmon event select MSR.
pub const MSR_R0_PMON_EVNT_SEL4: u32 = 0xe18;

/// Uncore R-box 0 perfmon counter MSR.
pub const MSR_R0_PMON_CTR4: u32 = 0xe19;

/// Uncore R-box 0 perfmon event select MSR.
pub const MSR_R0_PMON_EVNT_SEL5: u32 = 0xe1a;

/// Uncore R-box 0 perfmon counter MSR.
pub const MSR_R0_PMON_CTR5: u32 = 0xe1b;

/// Uncore R-box 0 perfmon event select MSR.
pub const MSR_R0_PMON_EVNT_SEL6: u32 = 0xe1c;

/// Uncore R-box 0 perfmon counter MSR.
pub const MSR_R0_PMON_CTR6: u32 = 0xe1d;

/// Uncore R-box 0 perfmon event select MSR.
pub const MSR_R0_PMON_EVNT_SEL7: u32 = 0xe1e;

/// Uncore R-box 0 perfmon counter MSR.
pub const MSR_R0_PMON_CTR7: u32 = 0xe1f;

/// Uncore R-box 1 perfmon local box control MSR.
pub const MSR_R1_PMON_BOX_CTRL: u32 = 0xe20;

/// Uncore R-box 1 perfmon local box status MSR.
pub const MSR_R1_PMON_BOX_STATUS: u32 = 0xe21;

/// Uncore R-box 1 perfmon local box overflow control MSR.
pub const MSR_R1_PMON_BOX_OVF_CTRL: u32 = 0xe22;

/// Uncore R-box 1 perfmon IPERF1 unit Port 8 select MSR.
pub const MSR_R1_PMON_IPERF1_P8: u32 = 0xe24;

/// Uncore R-box 1 perfmon IPERF1 unit Port 9 select MSR.
pub const MSR_R1_PMON_IPERF1_P9: u32 = 0xe25;

/// Uncore R-box 1 perfmon IPERF1 unit Port 10 select MSR.
pub const MSR_R1_PMON_IPERF1_P10: u32 = 0xe26;

/// Uncore R-box 1 perfmon IPERF1 unit Port 11 select MSR.
pub const MSR_R1_PMON_IPERF1_P11: u32 = 0xe27;

/// Uncore R-box 1 perfmon IPERF1 unit Port 12 select MSR.
pub const MSR_R1_PMON_IPERF1_P12: u32 = 0xe28;

/// Uncore R-box 1 perfmon IPERF1 unit Port 13 select MSR.
pub const MSR_R1_PMON_IPERF1_P13: u32 = 0xe29;

/// Uncore R-box 1 perfmon IPERF1 unit Port 14 select MSR.
pub const MSR_R1_PMON_IPERF1_P14: u32 = 0xe2a;

/// Uncore R-box 1 perfmon IPERF1 unit Port 15 select MSR.
pub const MSR_R1_PMON_IPERF1_P15: u32 = 0xe2b;

/// Uncore R-box 1 perfmon QLX unit Port 4 select MSR.
pub const MSR_R1_PMON_QLX_P4: u32 = 0xe2c;

/// Uncore R-box 1 perfmon QLX unit Port 5 select MSR.
pub const MSR_R1_PMON_QLX_P5: u32 = 0xe2d;

/// Uncore R-box 1 perfmon QLX unit Port 6 select MSR.
pub const MSR_R1_PMON_QLX_P6: u32 = 0xe2e;

/// Uncore R-box 1 perfmon QLX unit Port 7 select MSR.
pub const MSR_R1_PMON_QLX_P7: u32 = 0xe2f;

/// Uncore R-box 1 perfmon event select MSR.
pub const MSR_R1_PMON_EVNT_SEL8: u32 = 0xe30;

/// Uncore R-box 1 perfmon counter MSR.
pub const MSR_R1_PMON_CTR8: u32 = 0xe31;

/// Uncore R-box 1 perfmon event select MSR.
pub const MSR_R1_PMON_EVNT_SEL9: u32 = 0xe32;

/// Uncore R-box 1 perfmon counter MSR.
pub const MSR_R1_PMON_CTR9: u32 = 0xe33;

/// Uncore R-box 1 perfmon event select MSR.
pub const MSR_R1_PMON_EVNT_SEL10: u32 = 0xe34;

/// Uncore R-box 1 perfmon counter MSR.
pub const MSR_R1_PMON_CTR10: u32 = 0xe35;

/// Uncore R-box 1 perfmon event select MSR.
pub const MSR_R1_PMON_EVNT_SEL11: u32 = 0xe36;

/// Uncore R-box 1 perfmon counter MSR.
pub const MSR_R1_PMON_CTR11: u32 = 0xe37;

/// Uncore R-box 1 perfmon event select MSR.
pub const MSR_R1_PMON_EVNT_SEL12: u32 = 0xe38;

/// Uncore R-box 1 perfmon counter MSR.
pub const MSR_R1_PMON_CTR12: u32 = 0xe39;

/// Uncore R-box 1 perfmon event select MSR.
pub const MSR_R1_PMON_EVNT_SEL13: u32 = 0xe3a;

/// Uncore R-box 1perfmon counter MSR.
pub const MSR_R1_PMON_CTR13: u32 = 0xe3b;

/// Uncore R-box 1 perfmon event select MSR.
pub const MSR_R1_PMON_EVNT_SEL14: u32 = 0xe3c;

/// Uncore R-box 1 perfmon counter MSR.
pub const MSR_R1_PMON_CTR14: u32 = 0xe3d;

/// Uncore R-box 1 perfmon event select MSR.
pub const MSR_R1_PMON_EVNT_SEL15: u32 = 0xe3e;

/// Uncore R-box 1 perfmon counter MSR.
pub const MSR_R1_PMON_CTR15: u32 = 0xe3f;

/// Uncore B-box 0 perfmon local box match MSR.
pub const MSR_B0_PMON_MATCH: u32 = 0xe45;

/// Uncore B-box 0 perfmon local box mask MSR.
pub const MSR_B0_PMON_MASK: u32 = 0xe46;

/// Uncore S-box 0 perfmon local box match MSR.
pub const MSR_S0_PMON_MATCH: u32 = 0xe49;

/// Uncore S-box 0 perfmon local box mask MSR.
pub const MSR_S0_PMON_MASK: u32 = 0xe4a;

/// Uncore B-box 1 perfmon local box match MSR.
pub const MSR_B1_PMON_MATCH: u32 = 0xe4d;

/// Uncore B-box 1 perfmon local box mask MSR.
pub const MSR_B1_PMON_MASK: u32 = 0xe4e;

/// Uncore M-box 0 perfmon local box address match/mask config MSR.
pub const MSR_M0_PMON_MM_CONFIG: u32 = 0xe54;

/// Uncore M-box 0 perfmon local box address match MSR.
pub const MSR_M0_PMON_ADDR_MATCH: u32 = 0xe55;

/// Uncore M-box 0 perfmon local box address mask MSR.
pub const MSR_M0_PMON_ADDR_MASK: u32 = 0xe56;

/// Uncore S-box 1 perfmon local box match MSR.
pub const MSR_S1_PMON_MATCH: u32 = 0xe59;

/// Uncore S-box 1 perfmon local box mask MSR.
pub const MSR_S1_PMON_MASK: u32 = 0xe5a;

/// Uncore M-box 1 perfmon local box address match/mask config MSR.
pub const MSR_M1_PMON_MM_CONFIG: u32 = 0xe5c;

/// Uncore M-box 1 perfmon local box address match MSR.
pub const MSR_M1_PMON_ADDR_MATCH: u32 = 0xe5d;

/// Uncore M-box 1 perfmon local box address mask MSR.
pub const MSR_M1_PMON_ADDR_MASK: u32 = 0xe5e;

/// Uncore C-box 8 perfmon local box control MSR.
pub const MSR_C8_PMON_BOX_CTRL: u32 = 0xf40;

/// Uncore C-box 8 perfmon local box status MSR.
pub const MSR_C8_PMON_BOX_STATUS: u32 = 0xf41;

/// Uncore C-box 8 perfmon local box overflow control MSR.
pub const MSR_C8_PMON_BOX_OVF_CTRL: u32 = 0xf42;

/// Uncore C-box 8 perfmon event select MSR.
pub const MSR_C8_PMON_EVNT_SEL0: u32 = 0xf50;

/// Uncore C-box 8 perfmon counter MSR.
pub const MSR_C8_PMON_CTR0: u32 = 0xf51;

/// Uncore C-box 8 perfmon event select MSR.
pub const MSR_C8_PMON_EVNT_SEL1: u32 = 0xf52;

/// Uncore C-box 8 perfmon counter MSR.
pub const MSR_C8_PMON_CTR1: u32 = 0xf53;

/// Uncore C-box 8 perfmon event select MSR.
pub const MSR_C8_PMON_EVNT_SEL2: u32 = 0xf54;

/// Uncore C-box 8 perfmon counter MSR.
pub const MSR_C8_PMON_CTR2: u32 = 0xf55;

/// Uncore C-box 8 perfmon event select MSR.
pub const MSR_C8_PMON_EVNT_SEL3: u32 = 0xf56;

/// Uncore C-box 8 perfmon counter MSR.
pub const MSR_C8_PMON_CTR3: u32 = 0xf57;

/// Uncore C-box 8 perfmon event select MSR.
pub const MSR_C8_PMON_EVNT_SEL4: u32 = 0xf58;

/// Uncore C-box 8 perfmon counter MSR.
pub const MSR_C8_PMON_CTR4: u32 = 0xf59;

/// Uncore C-box 8 perfmon event select MSR.
pub const MSR_C8_PMON_EVNT_SEL5: u32 = 0xf5a;

/// Uncore C-box 8 perfmon counter MSR.
pub const MSR_C8_PMON_CTR5: u32 = 0xf5b;

/// Uncore C-box 9 perfmon local box control MSR.
pub const MSR_C9_PMON_BOX_CTRL: u32 = 0xfc0;

/// Uncore C-box 9 perfmon local box status MSR.
pub const MSR_C9_PMON_BOX_STATUS: u32 = 0xfc1;

/// Uncore C-box 9 perfmon local box overflow control MSR.
pub const MSR_C9_PMON_BOX_OVF_CTRL: u32 = 0xfc2;

/// Uncore C-box 9 perfmon event select MSR.
pub const MSR_C9_PMON_EVNT_SEL0: u32 = 0xfd0;

/// Uncore C-box 9 perfmon counter MSR.
pub const MSR_C9_PMON_CTR0: u32 = 0xfd1;

/// Uncore C-box 9 perfmon event select MSR.
pub const MSR_C9_PMON_EVNT_SEL1: u32 = 0xfd2;

/// Uncore C-box 9 perfmon counter MSR.
pub const MSR_C9_PMON_CTR1: u32 = 0xfd3;

/// Uncore C-box 9 perfmon event select MSR.
pub const MSR_C9_PMON_EVNT_SEL2: u32 = 0xfd4;

/// Uncore C-box 9 perfmon counter MSR.
pub const MSR_C9_PMON_CTR2: u32 = 0xfd5;

/// Uncore C-box 9 perfmon event select MSR.
pub const MSR_C9_PMON_EVNT_SEL3: u32 = 0xfd6;

/// Uncore C-box 9 perfmon counter MSR.
pub const MSR_C9_PMON_CTR3: u32 = 0xfd7;

/// Uncore C-box 9 perfmon event select MSR.
pub const MSR_C9_PMON_EVNT_SEL4: u32 = 0xfd8;

/// Uncore C-box 9 perfmon counter MSR.
pub const MSR_C9_PMON_CTR4: u32 = 0xfd9;

/// Uncore C-box 9 perfmon event select MSR.
pub const MSR_C9_PMON_EVNT_SEL5: u32 = 0xfda;

/// Uncore C-box 9 perfmon counter MSR.
pub const MSR_C9_PMON_CTR5: u32 = 0xfdb;

/// GBUSQ Event Control and Counter  Register (R/W) See Section 18.17, Performance  Monitoring on 64-bit Intel Xeon Processor MP with Up to 8-MByte L3 Cache.
pub const MSR_EMON_L3_CTR_CTL0: u32 = 0x107cc;

/// IFSB BUSQ Event Control and Counter  Register (R/W) See Section 18.17, Performance  Monitoring on 64-bit Intel Xeon Processor  MP with Up to 8-MByte L3 Cache.
pub const MSR_IFSB_BUSQ0: u32 = 0x107cc;

/// GBUSQ Event Control/Counter Register (R/W) Apply to Intel Xeon processor 7400 series (processor signature  06_1D) only. See Section 17.2.2
pub const MSR_EMON_L3_CTR_CTL1: u32 = 0x107cd;

/// IFSB BUSQ Event Control and Counter Register (R/W)
pub const MSR_IFSB_BUSQ1: u32 = 0x107cd;

/// GSNPQ Event Control and Counter  Register (R/W)  See Section 18.17, Performance Monitoring on 64-bit Intel Xeon Processor MP with Up to 8-MByte L3 Cache.
pub const MSR_EMON_L3_CTR_CTL2: u32 = 0x107ce;

/// IFSB SNPQ Event Control and Counter  Register (R/W)  See Section 18.17, Performance  Monitoring on 64-bit Intel Xeon Processor  MP with Up to 8-MByte L3 Cache.
pub const MSR_IFSB_SNPQ0: u32 = 0x107ce;

/// GSNPQ Event Control/Counter Register (R/W) Apply to Intel Xeon processor 7400 series (processor signature  06_1D) only. See Section 17.2.2
pub const MSR_EMON_L3_CTR_CTL3: u32 = 0x107cf;

/// IFSB SNPQ Event Control and Counter  Register (R/W)
pub const MSR_IFSB_SNPQ1: u32 = 0x107cf;

/// EFSB DRDY Event Control and Counter Register (R/W)  See Section 18.17, Performance  Monitoring on 64-bit Intel Xeon Processor MP with Up to 8-MByte L3 Cache  for  details.
pub const MSR_EFSB_DRDY0: u32 = 0x107d0;

/// FSB Event Control and Counter Register (R/W)  See Section 18.17, Performance  Monitoring on 64-bit Intel Xeon Processor MP with Up to 8-MByte L3 Cache  for  details.
pub const MSR_EMON_L3_CTR_CTL4: u32 = 0x107d0;

/// EFSB DRDY Event Control and Counter  Register (R/W)
pub const MSR_EFSB_DRDY1: u32 = 0x107d1;

/// FSB Event Control/Counter Register (R/W) Apply to Intel Xeon processor 7400 series (processor signature  06_1D) only. See Section 17.2.2
pub const MSR_EMON_L3_CTR_CTL5: u32 = 0x107d1;

/// FSB Event Control/Counter Register (R/W) Apply to Intel Xeon processor 7400 series (processor signature  06_1D) only. See Section 17.2.2
pub const MSR_EMON_L3_CTR_CTL6: u32 = 0x107d2;

/// IFSB Latency Event Control Register  (R/W) See Section 18.17, Performance  Monitoring on 64-bit Intel Xeon Processor MP with Up to 8-MByte L3 Cache  for  details.
pub const MSR_IFSB_CTL6: u32 = 0x107d2;

/// FSB Event Control/Counter Register (R/W) Apply to Intel Xeon processor 7400 series (processor signature  06_1D) only. See Section 17.2.2
pub const MSR_EMON_L3_CTR_CTL7: u32 = 0x107d3;

/// IFSB Latency Event Counter Register  (R/W)  See Section 18.17, Performance  Monitoring on 64-bit Intel Xeon Processor  MP with Up to 8-MByte L3 Cache.
pub const MSR_IFSB_CNTR7: u32 = 0x107d3;

/// L3/FSB Common Control Register (R/W) Apply to Intel Xeon processor 7400 series (processor signature  06_1D) only. See Section 17.2.2
pub const MSR_EMON_L3_GL_CTL: u32 = 0x107d8;

/// If (  CPUID.80000001.EDX.\[bit  20\] or  CPUID.80000001.EDX.\[bit 29\])
pub const IA32_EFER: u32 = 0xc0000080;

/// System Call Target Address (R/W)  See Table 35-2.
pub const IA32_STAR: u32 = 0xc0000081;

/// IA-32e Mode System Call Target Address (R/W)  See Table 35-2.
pub const IA32_LSTAR: u32 = 0xc0000082;

/// System Call Target Address the compatibility mode.
pub const IA32_CSTAR: u32 = 0xc0000083;

/// System Call Flag Mask (R/W)  See Table 35-2.
pub const IA32_FMASK: u32 = 0xc0000084;

/// Map of BASE Address of FS (R/W)  See Table 35-2.
pub const IA32_FS_BASE: u32 = 0xc0000100;

/// Map of BASE Address of GS (R/W)  See Table 35-2.
pub const IA32_GS_BASE: u32 = 0xc0000101;

/// Swap Target of BASE Address of GS (R/W) See Table 35-2.
pub const IA32_KERNEL_GSBASE: u32 = 0xc0000102;

/// AUXILIARY TSC Signature. (R/W) See Table 35-2 and Section  17.13.2, IA32_TSC_AUX Register and RDTSCP Support.
pub const IA32_TSC_AUX: u32 = 0xc0000103;