aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/Register/Intel/Msr/P6Msr.h
blob: db5396f74c24bdea0edd976569253786e8bdc575 (plain)
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
/** @file
  MSR Definitions for P6 Family Processors.

  Provides defines for Machine Specific Registers(MSR) indexes. Data structures
  are provided for MSRs that contain one or more bit fields.  If the MSR value
  returned is a single 32-bit or 64-bit value, then a data structure is not
  provided for that MSR.

  Copyright (c) 2016 - 2019, Intel Corporation. All rights reserved.<BR>
  SPDX-License-Identifier: BSD-2-Clause-Patent

  @par Specification Reference:
  Intel(R) 64 and IA-32 Architectures Software Developer's Manual, Volume 4,
  May 2018, Volume 4: Model-Specific-Registers (MSR)

**/

#ifndef __P6_MSR_H__
#define __P6_MSR_H__

#include <Register/Intel/ArchitecturalMsr.h>

/**
  Is P6 Family Processors?

  @param   DisplayFamily  Display Family ID
  @param   DisplayModel   Display Model ID

  @retval  TRUE   Yes, it is.
  @retval  FALSE  No, it isn't.
**/
#define IS_P6_PROCESSOR(DisplayFamily, DisplayModel) \
  (DisplayFamily == 0x06 && \
   (                        \
    DisplayModel == 0x03 || \
    DisplayModel == 0x05 || \
    DisplayModel == 0x07 || \
    DisplayModel == 0x08 || \
    DisplayModel == 0x0A || \
    DisplayModel == 0x0B \
    ) \
   )

/**
  See Section 2.22, "MSRs in Pentium Processors.".

  @param  ECX  MSR_P6_P5_MC_ADDR (0x00000000)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_P5_MC_ADDR);
  AsmWriteMsr64 (MSR_P6_P5_MC_ADDR, Msr);
  @endcode
  @note MSR_P6_P5_MC_ADDR is defined as P5_MC_ADDR in SDM.
**/
#define MSR_P6_P5_MC_ADDR                        0x00000000


/**
  See Section 2.22, "MSRs in Pentium Processors.".

  @param  ECX  MSR_P6_P5_MC_TYPE (0x00000001)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_P5_MC_TYPE);
  AsmWriteMsr64 (MSR_P6_P5_MC_TYPE, Msr);
  @endcode
  @note MSR_P6_P5_MC_TYPE is defined as P5_MC_TYPE in SDM.
**/
#define MSR_P6_P5_MC_TYPE                        0x00000001


/**
  See Section 17.17, "Time-Stamp Counter.".

  @param  ECX  MSR_P6_TSC (0x00000010)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_TSC);
  AsmWriteMsr64 (MSR_P6_TSC, Msr);
  @endcode
  @note MSR_P6_TSC is defined as TSC in SDM.
**/
#define MSR_P6_TSC                               0x00000010


/**
  Platform ID (R)  The operating system can use this MSR to determine "slot"
  information for the processor and the proper microcode update to load.

  @param  ECX  MSR_P6_IA32_PLATFORM_ID (0x00000017)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_IA32_PLATFORM_ID_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_IA32_PLATFORM_ID_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_IA32_PLATFORM_ID_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_IA32_PLATFORM_ID);
  @endcode
  @note MSR_P6_IA32_PLATFORM_ID is defined as IA32_PLATFORM_ID in SDM.
**/
#define MSR_P6_IA32_PLATFORM_ID                  0x00000017

/**
  MSR information returned for MSR index #MSR_P6_IA32_PLATFORM_ID
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    UINT32  Reserved1:32;
    UINT32  Reserved2:18;
    ///
    /// [Bits 52:50] Platform Id (R) Contains information concerning the
    /// intended platform for the processor.
    ///
    ///  52 51 50
    ///   0  0  0  Processor Flag 0.
    ///   0  0  1  Processor Flag 1
    ///   0  1  0  Processor Flag 2
    ///   0  1  1  Processor Flag 3
    ///   1  0  0  Processor Flag 4
    ///   1  0  1  Processor Flag 5
    ///   1  1  0  Processor Flag 6
    ///   1  1  1  Processor Flag 7
    ///
    UINT32  PlatformId:3;
    ///
    /// [Bits 56:53] L2 Cache Latency Read.
    ///
    UINT32  L2CacheLatencyRead:4;
    UINT32  Reserved3:3;
    ///
    /// [Bit 60] Clock Frequency Ratio Read.
    ///
    UINT32  ClockFrequencyRatioRead:1;
    UINT32  Reserved4:3;
  } Bits;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_IA32_PLATFORM_ID_REGISTER;


/**
  Section 10.4.4, "Local APIC Status and Location.".

  @param  ECX  MSR_P6_APIC_BASE (0x0000001B)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_APIC_BASE_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_APIC_BASE_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_APIC_BASE_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_APIC_BASE);
  AsmWriteMsr64 (MSR_P6_APIC_BASE, Msr.Uint64);
  @endcode
  @note MSR_P6_APIC_BASE is defined as APIC_BASE in SDM.
**/
#define MSR_P6_APIC_BASE                         0x0000001B

/**
  MSR information returned for MSR index #MSR_P6_APIC_BASE
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    UINT32  Reserved1:8;
    ///
    /// [Bit 8] Boot Strap Processor indicator Bit 1 = BSP.
    ///
    UINT32  BSP:1;
    UINT32  Reserved2:2;
    ///
    /// [Bit 11] APIC Global Enable Bit - Permanent till reset 1 = Enabled 0 =
    /// Disabled.
    ///
    UINT32  EN:1;
    ///
    /// [Bits 31:12] APIC Base Address.
    ///
    UINT32  ApicBase:20;
    UINT32  Reserved3:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_APIC_BASE_REGISTER;


/**
  Processor Hard Power-On Configuration (R/W) Enables and disables processor
  features; (R) indicates current processor configuration.

  @param  ECX  MSR_P6_EBL_CR_POWERON (0x0000002A)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_EBL_CR_POWERON_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_EBL_CR_POWERON_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_EBL_CR_POWERON_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_EBL_CR_POWERON);
  AsmWriteMsr64 (MSR_P6_EBL_CR_POWERON, Msr.Uint64);
  @endcode
  @note MSR_P6_EBL_CR_POWERON is defined as EBL_CR_POWERON in SDM.
**/
#define MSR_P6_EBL_CR_POWERON                    0x0000002A

/**
  MSR information returned for MSR index #MSR_P6_EBL_CR_POWERON
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    UINT32  Reserved1:1;
    ///
    /// [Bit 1] Data Error Checking Enable (R/W) 1 = Enabled 0 = Disabled.
    ///
    UINT32  DataErrorCheckingEnable:1;
    ///
    /// [Bit 2] Response Error Checking Enable FRCERR Observation Enable (R/W)
    /// 1 = Enabled 0 = Disabled.
    ///
    UINT32  ResponseErrorCheckingEnable:1;
    ///
    /// [Bit 3] AERR# Drive Enable (R/W) 1 = Enabled 0 = Disabled.
    ///
    UINT32  AERR_DriveEnable:1;
    ///
    /// [Bit 4] BERR# Enable for Initiator Bus Requests (R/W) 1 = Enabled 0 =
    /// Disabled.
    ///
    UINT32  BERR_Enable:1;
    UINT32  Reserved2:1;
    ///
    /// [Bit 6] BERR# Driver Enable for Initiator Internal Errors (R/W) 1 =
    /// Enabled 0 = Disabled.
    ///
    UINT32  BERR_DriverEnable:1;
    ///
    /// [Bit 7] BINIT# Driver Enable (R/W) 1 = Enabled 0 = Disabled.
    ///
    UINT32  BINIT_DriverEnable:1;
    ///
    /// [Bit 8] Output Tri-state Enabled (R) 1 = Enabled 0 = Disabled.
    ///
    UINT32  OutputTriStateEnable:1;
    ///
    /// [Bit 9] Execute BIST (R) 1 = Enabled 0 = Disabled.
    ///
    UINT32  ExecuteBIST:1;
    ///
    /// [Bit 10] AERR# Observation Enabled (R) 1 = Enabled 0 = Disabled.
    ///
    UINT32  AERR_ObservationEnabled:1;
    UINT32  Reserved3:1;
    ///
    /// [Bit 12] BINIT# Observation Enabled (R) 1 = Enabled 0 = Disabled.
    ///
    UINT32  BINIT_ObservationEnabled:1;
    ///
    /// [Bit 13] In Order Queue Depth (R) 1 = 1 0 = 8.
    ///
    UINT32  InOrderQueueDepth:1;
    ///
    /// [Bit 14] 1-MByte Power on Reset Vector (R) 1 = 1MByte 0 = 4GBytes.
    ///
    UINT32  ResetVector:1;
    ///
    /// [Bit 15] FRC Mode Enable (R) 1 = Enabled 0 = Disabled.
    ///
    UINT32  FRCModeEnable:1;
    ///
    /// [Bits 17:16] APIC Cluster ID (R).
    ///
    UINT32  APICClusterID:2;
    ///
    /// [Bits 19:18] System Bus Frequency (R) 00 = 66MHz 10 = 100Mhz 01 =
    /// 133MHz 11 = Reserved.
    ///
    UINT32  SystemBusFrequency:2;
    ///
    /// [Bits 21:20] Symmetric Arbitration ID (R).
    ///
    UINT32  SymmetricArbitrationID:2;
    ///
    /// [Bits 25:22] Clock Frequency Ratio (R).
    ///
    UINT32  ClockFrequencyRatio:4;
    ///
    /// [Bit 26] Low Power Mode Enable (R/W).
    ///
    UINT32  LowPowerModeEnable:1;
    ///
    /// [Bit 27] Clock Frequency Ratio.
    ///
    UINT32  ClockFrequencyRatio1:1;
    UINT32  Reserved4:4;
    UINT32  Reserved5:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_EBL_CR_POWERON_REGISTER;


/**
  Test Control Register.

  @param  ECX  MSR_P6_TEST_CTL (0x00000033)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_TEST_CTL_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_TEST_CTL_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_TEST_CTL_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_TEST_CTL);
  AsmWriteMsr64 (MSR_P6_TEST_CTL, Msr.Uint64);
  @endcode
  @note MSR_P6_TEST_CTL is defined as TEST_CTL in SDM.
**/
#define MSR_P6_TEST_CTL                          0x00000033

/**
  MSR information returned for MSR index #MSR_P6_TEST_CTL
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    UINT32  Reserved1:30;
    ///
    /// [Bit 30] Streaming Buffer Disable.
    ///
    UINT32  StreamingBufferDisable:1;
    ///
    /// [Bit 31] Disable LOCK# Assertion for split locked access.
    ///
    UINT32  Disable_LOCK:1;
    UINT32  Reserved2:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_TEST_CTL_REGISTER;


/**
  BIOS Update Trigger Register.

  @param  ECX  MSR_P6_BIOS_UPDT_TRIG (0x00000079)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_BIOS_UPDT_TRIG);
  AsmWriteMsr64 (MSR_P6_BIOS_UPDT_TRIG, Msr);
  @endcode
  @note MSR_P6_BIOS_UPDT_TRIG is defined as BIOS_UPDT_TRIG in SDM.
**/
#define MSR_P6_BIOS_UPDT_TRIG                    0x00000079


/**
  Chunk n data register D[63:0]: used to write to and read from the L2.

  @param  ECX  MSR_P6_BBL_CR_Dn
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_BBL_CR_D0);
  AsmWriteMsr64 (MSR_P6_BBL_CR_D0, Msr);
  @endcode
  @note MSR_P6_BBL_CR_D0 is defined as BBL_CR_D0 in SDM.
        MSR_P6_BBL_CR_D1 is defined as BBL_CR_D1 in SDM.
        MSR_P6_BBL_CR_D2 is defined as BBL_CR_D2 in SDM.
  @{
**/
#define MSR_P6_BBL_CR_D0                         0x00000088
#define MSR_P6_BBL_CR_D1                         0x00000089
#define MSR_P6_BBL_CR_D2                         0x0000008A
/// @}


/**
  BIOS Update Signature Register or Chunk 3 data register D[63:0] Used to
  write to and read from the L2 depending on the usage model.

  @param  ECX  MSR_P6_BIOS_SIGN (0x0000008B)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_BIOS_SIGN);
  AsmWriteMsr64 (MSR_P6_BIOS_SIGN, Msr);
  @endcode
  @note MSR_P6_BIOS_SIGN is defined as BIOS_SIGN in SDM.
**/
#define MSR_P6_BIOS_SIGN                         0x0000008B


/**


  @param  ECX  MSR_P6_PERFCTR0 (0x000000C1)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_PERFCTR0);
  AsmWriteMsr64 (MSR_P6_PERFCTR0, Msr);
  @endcode
  @note MSR_P6_PERFCTR0 is defined as PERFCTR0 in SDM.
        MSR_P6_PERFCTR1 is defined as PERFCTR1 in SDM.
  @{
**/
#define MSR_P6_PERFCTR0                          0x000000C1
#define MSR_P6_PERFCTR1                          0x000000C2
/// @}


/**


  @param  ECX  MSR_P6_MTRRCAP (0x000000FE)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRCAP);
  AsmWriteMsr64 (MSR_P6_MTRRCAP, Msr);
  @endcode
  @note MSR_P6_MTRRCAP is defined as MTRRCAP in SDM.
**/
#define MSR_P6_MTRRCAP                           0x000000FE


/**
  Address register: used to send specified address (A31-A3) to L2 during cache
  initialization accesses.

  @param  ECX  MSR_P6_BBL_CR_ADDR (0x00000116)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_BBL_CR_ADDR_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_BBL_CR_ADDR_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_BBL_CR_ADDR_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_BBL_CR_ADDR);
  AsmWriteMsr64 (MSR_P6_BBL_CR_ADDR, Msr.Uint64);
  @endcode
  @note MSR_P6_BBL_CR_ADDR is defined as BBL_CR_ADDR in SDM.
**/
#define MSR_P6_BBL_CR_ADDR                       0x00000116

/**
  MSR information returned for MSR index #MSR_P6_BBL_CR_ADDR
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    UINT32  Reserved1:3;
    ///
    /// [Bits 31:3] Address bits
    ///
    UINT32  Address:29;
    UINT32  Reserved2:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_BBL_CR_ADDR_REGISTER;


/**
  Data ECC register D[7:0]: used to write ECC and read ECC to/from L2.

  @param  ECX  MSR_P6_BBL_CR_DECC (0x00000118)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_BBL_CR_DECC);
  AsmWriteMsr64 (MSR_P6_BBL_CR_DECC, Msr);
  @endcode
  @note MSR_P6_BBL_CR_DECC is defined as BBL_CR_DECC in SDM.
**/
#define MSR_P6_BBL_CR_DECC                       0x00000118


/**
  Control register: used to program L2 commands to be issued via cache
  configuration accesses mechanism. Also receives L2 lookup response.

  @param  ECX  MSR_P6_BBL_CR_CTL (0x00000119)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_BBL_CR_CTL_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_BBL_CR_CTL_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_BBL_CR_CTL_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_BBL_CR_CTL);
  AsmWriteMsr64 (MSR_P6_BBL_CR_CTL, Msr.Uint64);
  @endcode
  @note MSR_P6_BBL_CR_CTL is defined as BBL_CR_CTL in SDM.
**/
#define MSR_P6_BBL_CR_CTL                        0x00000119

/**
  MSR information returned for MSR index #MSR_P6_BBL_CR_CTL
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    ///
    /// [Bits 4:0] L2 Command
    ///   Data Read w/ LRU update (RLU)
    ///   Tag Read w/ Data Read (TRR)
    ///   Tag Inquire (TI)
    ///   L2 Control Register Read (CR)
    ///   L2 Control Register Write (CW)
    ///   Tag Write w/ Data Read (TWR)
    ///   Tag Write w/ Data Write (TWW)
    ///   Tag Write (TW).
    ///
    UINT32  L2Command:5;
    ///
    /// [Bits 6:5] State to L2
    ///
    UINT32  StateToL2:2;
    UINT32  Reserved:1;
    ///
    /// [Bits 9:8] Way to L2.
    ///
    UINT32  WayToL2:2;
    ///
    /// [Bits 11:10] Way 0 - 00, Way 1 - 01, Way 2 - 10, Way 3 - 11.
    ///
    UINT32  Way:2;
    ///
    /// [Bits 13:12] Modified - 11,Exclusive - 10, Shared - 01, Invalid - 00.
    ///
    UINT32  MESI:2;
    ///
    /// [Bits 15:14] State from L2.
    ///
    UINT32  StateFromL2:2;
    UINT32  Reserved2:1;
    ///
    /// [Bit 17] L2 Hit.
    ///
    UINT32  L2Hit:1;
    UINT32  Reserved3:1;
    ///
    /// [Bits 20:19] User supplied ECC.
    ///
    UINT32  UserEcc:2;
    ///
    /// [Bit 21] Processor number Disable = 1 Enable = 0 Reserved.
    ///
    UINT32  ProcessorNumber:1;
    UINT32  Reserved4:10;
    UINT32  Reserved5:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_BBL_CR_CTL_REGISTER;


/**
  Trigger register: used to initiate a cache configuration accesses access,
  Write only with Data = 0.

  @param  ECX  MSR_P6_BBL_CR_TRIG (0x0000011A)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_BBL_CR_TRIG);
  AsmWriteMsr64 (MSR_P6_BBL_CR_TRIG, Msr);
  @endcode
  @note MSR_P6_BBL_CR_TRIG is defined as BBL_CR_TRIG in SDM.
**/
#define MSR_P6_BBL_CR_TRIG                       0x0000011A


/**
  Busy register: indicates when a cache configuration accesses L2 command is
  in progress. D[0] = 1 = BUSY.

  @param  ECX  MSR_P6_BBL_CR_BUSY (0x0000011B)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_BBL_CR_BUSY);
  AsmWriteMsr64 (MSR_P6_BBL_CR_BUSY, Msr);
  @endcode
  @note MSR_P6_BBL_CR_BUSY is defined as BBL_CR_BUSY in SDM.
**/
#define MSR_P6_BBL_CR_BUSY                       0x0000011B


/**
  Control register 3: used to configure the L2 Cache.

  @param  ECX  MSR_P6_BBL_CR_CTL3 (0x0000011E)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_BBL_CR_CTL3_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_BBL_CR_CTL3_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_BBL_CR_CTL3_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_BBL_CR_CTL3);
  AsmWriteMsr64 (MSR_P6_BBL_CR_CTL3, Msr.Uint64);
  @endcode
  @note MSR_P6_BBL_CR_CTL3 is defined as BBL_CR_CTL3 in SDM.
**/
#define MSR_P6_BBL_CR_CTL3                       0x0000011E

/**
  MSR information returned for MSR index #MSR_P6_BBL_CR_CTL3
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    ///
    /// [Bit 0] L2 Configured (read/write ).
    ///
    UINT32  L2Configured:1;
    ///
    /// [Bits 4:1] L2 Cache Latency (read/write).
    ///
    UINT32  L2CacheLatency:4;
    ///
    /// [Bit 5] ECC Check Enable (read/write).
    ///
    UINT32  ECCCheckEnable:1;
    ///
    /// [Bit 6] Address Parity Check Enable (read/write).
    ///
    UINT32  AddressParityCheckEnable:1;
    ///
    /// [Bit 7] CRTN Parity Check Enable (read/write).
    ///
    UINT32  CRTNParityCheckEnable:1;
    ///
    /// [Bit 8] L2 Enabled (read/write).
    ///
    UINT32  L2Enabled:1;
    ///
    /// [Bits 10:9] L2 Associativity (read only) Direct Mapped 2 Way 4 Way
    /// Reserved.
    ///
    UINT32  L2Associativity:2;
    ///
    /// [Bits 12:11] Number of L2 banks (read only).
    ///
    UINT32  L2Banks:2;
    ///
    /// [Bits 17:13] Cache size per bank (read/write) 256KBytes 512KBytes
    /// 1MByte 2MByte 4MBytes.
    ///
    UINT32  CacheSizePerBank:5;
    ///
    /// [Bit 18] Cache State error checking enable (read/write).
    ///
    UINT32  CacheStateErrorEnable:1;
    UINT32  Reserved1:1;
    ///
    /// [Bits 22:20] L2 Physical Address Range support 64GBytes 32GBytes
    /// 16GBytes 8GBytes 4GBytes 2GBytes 1GBytes 512MBytes.
    ///
    UINT32  L2AddressRange:3;
    ///
    /// [Bit 23] L2 Hardware Disable (read only).
    ///
    UINT32  L2HardwareDisable:1;
    UINT32  Reserved2:1;
    ///
    /// [Bit 25] Cache bus fraction (read only).
    ///
    UINT32  CacheBusFraction:1;
    UINT32  Reserved3:6;
    UINT32  Reserved4:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_BBL_CR_CTL3_REGISTER;


/**
  CS register target for CPL 0 code.

  @param  ECX  MSR_P6_SYSENTER_CS_MSR (0x00000174)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_SYSENTER_CS_MSR);
  AsmWriteMsr64 (MSR_P6_SYSENTER_CS_MSR, Msr);
  @endcode
  @note MSR_P6_SYSENTER_CS_MSR is defined as SYSENTER_CS_MSR in SDM.
**/
#define MSR_P6_SYSENTER_CS_MSR                   0x00000174


/**
  Stack pointer for CPL 0 stack.

  @param  ECX  MSR_P6_SYSENTER_ESP_MSR (0x00000175)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_SYSENTER_ESP_MSR);
  AsmWriteMsr64 (MSR_P6_SYSENTER_ESP_MSR, Msr);
  @endcode
  @note MSR_P6_SYSENTER_ESP_MSR is defined as SYSENTER_ESP_MSR in SDM.
**/
#define MSR_P6_SYSENTER_ESP_MSR                  0x00000175


/**
  CPL 0 code entry point.

  @param  ECX  MSR_P6_SYSENTER_EIP_MSR (0x00000176)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_SYSENTER_EIP_MSR);
  AsmWriteMsr64 (MSR_P6_SYSENTER_EIP_MSR, Msr);
  @endcode
  @note MSR_P6_SYSENTER_EIP_MSR is defined as SYSENTER_EIP_MSR in SDM.
**/
#define MSR_P6_SYSENTER_EIP_MSR                  0x00000176


/**


  @param  ECX  MSR_P6_MCG_CAP (0x00000179)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MCG_CAP);
  AsmWriteMsr64 (MSR_P6_MCG_CAP, Msr);
  @endcode
  @note MSR_P6_MCG_CAP is defined as MCG_CAP in SDM.
**/
#define MSR_P6_MCG_CAP                           0x00000179


/**


  @param  ECX  MSR_P6_MCG_STATUS (0x0000017A)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MCG_STATUS);
  AsmWriteMsr64 (MSR_P6_MCG_STATUS, Msr);
  @endcode
  @note MSR_P6_MCG_STATUS is defined as MCG_STATUS in SDM.
**/
#define MSR_P6_MCG_STATUS                        0x0000017A


/**


  @param  ECX  MSR_P6_MCG_CTL (0x0000017B)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MCG_CTL);
  AsmWriteMsr64 (MSR_P6_MCG_CTL, Msr);
  @endcode
  @note MSR_P6_MCG_CTL is defined as MCG_CTL in SDM.
**/
#define MSR_P6_MCG_CTL                           0x0000017B


/**


  @param  ECX  MSR_P6_PERFEVTSELn
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_PERFEVTSEL_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_PERFEVTSEL_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_PERFEVTSEL_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_PERFEVTSEL0);
  AsmWriteMsr64 (MSR_P6_PERFEVTSEL0, Msr.Uint64);
  @endcode
  @note MSR_P6_PERFEVTSEL0 is defined as PERFEVTSEL0 in SDM.
        MSR_P6_PERFEVTSEL1 is defined as PERFEVTSEL1 in SDM.
  @{
**/
#define MSR_P6_PERFEVTSEL0                       0x00000186
#define MSR_P6_PERFEVTSEL1                       0x00000187
/// @}

/**
  MSR information returned for MSR indexes #MSR_P6_PERFEVTSEL0 and
  #MSR_P6_PERFEVTSEL1.
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    ///
    /// [Bits 7:0] Event Select Refer to Performance Counter section for a
    /// list of event encodings.
    ///
    UINT32  EventSelect:8;
    ///
    /// [Bits 15:8] UMASK (Unit Mask) Unit mask register set to 0 to enable
    /// all count options.
    ///
    UINT32  UMASK:8;
    ///
    /// [Bit 16] USER Controls the counting of events at Privilege levels of
    /// 1, 2, and 3.
    ///
    UINT32  USR:1;
    ///
    /// [Bit 17] OS Controls the counting of events at Privilege level of 0.
    ///
    UINT32  OS:1;
    ///
    /// [Bit 18] E Occurrence/Duration Mode Select 1 = Occurrence 0 = Duration.
    ///
    UINT32  E:1;
    ///
    /// [Bit 19] PC Enabled the signaling of performance counter overflow via
    /// BP0 pin.
    ///
    UINT32  PC:1;
    ///
    /// [Bit 20] INT Enables the signaling of counter overflow via input to
    /// APIC 1 = Enable 0 = Disable.
    ///
    UINT32  INT:1;
    UINT32  Reserved1:1;
    ///
    /// [Bit 22] ENABLE Enables the counting of performance events in both
    /// counters 1 = Enable 0 = Disable.
    ///
    UINT32  EN:1;
    ///
    /// [Bit 23] INV Inverts the result of the CMASK condition 1 = Inverted 0
    /// = Non-Inverted.
    ///
    UINT32  INV:1;
    ///
    /// [Bits 31:24] CMASK (Counter Mask).
    ///
    UINT32  CMASK:8;
    UINT32  Reserved2:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_PERFEVTSEL_REGISTER;


/**


  @param  ECX  MSR_P6_DEBUGCTLMSR (0x000001D9)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_DEBUGCTLMSR_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_DEBUGCTLMSR_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_DEBUGCTLMSR_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_DEBUGCTLMSR);
  AsmWriteMsr64 (MSR_P6_DEBUGCTLMSR, Msr.Uint64);
  @endcode
  @note MSR_P6_DEBUGCTLMSR is defined as DEBUGCTLMSR in SDM.
**/
#define MSR_P6_DEBUGCTLMSR                       0x000001D9

/**
  MSR information returned for MSR index #MSR_P6_DEBUGCTLMSR
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    ///
    /// [Bit 0] Enable/Disable Last Branch Records.
    ///
    UINT32  LBR:1;
    ///
    /// [Bit 1] Branch Trap Flag.
    ///
    UINT32  BTF:1;
    ///
    /// [Bit 2] Performance Monitoring/Break Point Pins.
    ///
    UINT32  PB0:1;
    ///
    /// [Bit 3] Performance Monitoring/Break Point Pins.
    ///
    UINT32  PB1:1;
    ///
    /// [Bit 4] Performance Monitoring/Break Point Pins.
    ///
    UINT32  PB2:1;
    ///
    /// [Bit 5] Performance Monitoring/Break Point Pins.
    ///
    UINT32  PB3:1;
    ///
    /// [Bit 6] Enable/Disable Execution Trace Messages.
    ///
    UINT32  TR:1;
    UINT32  Reserved1:25;
    UINT32  Reserved2:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_DEBUGCTLMSR_REGISTER;


/**


  @param  ECX  MSR_P6_LASTBRANCHFROMIP (0x000001DB)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_LASTBRANCHFROMIP);
  AsmWriteMsr64 (MSR_P6_LASTBRANCHFROMIP, Msr);
  @endcode
  @note MSR_P6_LASTBRANCHFROMIP is defined as LASTBRANCHFROMIP in SDM.
**/
#define MSR_P6_LASTBRANCHFROMIP                  0x000001DB


/**


  @param  ECX  MSR_P6_LASTBRANCHTOIP (0x000001DC)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_LASTBRANCHTOIP);
  AsmWriteMsr64 (MSR_P6_LASTBRANCHTOIP, Msr);
  @endcode
  @note MSR_P6_LASTBRANCHTOIP is defined as LASTBRANCHTOIP in SDM.
**/
#define MSR_P6_LASTBRANCHTOIP                    0x000001DC


/**


  @param  ECX  MSR_P6_LASTINTFROMIP (0x000001DD)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_LASTINTFROMIP);
  AsmWriteMsr64 (MSR_P6_LASTINTFROMIP, Msr);
  @endcode
  @note MSR_P6_LASTINTFROMIP is defined as LASTINTFROMIP in SDM.
**/
#define MSR_P6_LASTINTFROMIP                     0x000001DD


/**


  @param  ECX  MSR_P6_LASTINTTOIP (0x000001DE)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_LASTINTTOIP);
  AsmWriteMsr64 (MSR_P6_LASTINTTOIP, Msr);
  @endcode
  @note MSR_P6_LASTINTTOIP is defined as LASTINTTOIP in SDM.
**/
#define MSR_P6_LASTINTTOIP                       0x000001DE

/**


  @param  ECX  MSR_P6_MTRRPHYSBASEn
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRPHYSBASE0);
  AsmWriteMsr64 (MSR_P6_MTRRPHYSBASE0, Msr);
  @endcode
  @note MSR_P6_MTRRPHYSBASE0 is defined as MTRRPHYSBASE0 in SDM.
        MSR_P6_MTRRPHYSBASE1 is defined as MTRRPHYSBASE1 in SDM.
        MSR_P6_MTRRPHYSBASE2 is defined as MTRRPHYSBASE2 in SDM.
        MSR_P6_MTRRPHYSBASE3 is defined as MTRRPHYSBASE3 in SDM.
        MSR_P6_MTRRPHYSBASE4 is defined as MTRRPHYSBASE4 in SDM.
        MSR_P6_MTRRPHYSBASE5 is defined as MTRRPHYSBASE5 in SDM.
        MSR_P6_MTRRPHYSBASE6 is defined as MTRRPHYSBASE6 in SDM.
        MSR_P6_MTRRPHYSBASE7 is defined as MTRRPHYSBASE7 in SDM.
  @{
**/
#define MSR_P6_MTRRPHYSBASE0                     0x00000200
#define MSR_P6_MTRRPHYSBASE1                     0x00000202
#define MSR_P6_MTRRPHYSBASE2                     0x00000204
#define MSR_P6_MTRRPHYSBASE3                     0x00000206
#define MSR_P6_MTRRPHYSBASE4                     0x00000208
#define MSR_P6_MTRRPHYSBASE5                     0x0000020A
#define MSR_P6_MTRRPHYSBASE6                     0x0000020C
#define MSR_P6_MTRRPHYSBASE7                     0x0000020E
/// @}


/**


  @param  ECX  MSR_P6_MTRRPHYSMASKn
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRPHYSMASK0);
  AsmWriteMsr64 (MSR_P6_MTRRPHYSMASK0, Msr);
  @endcode
  @note MSR_P6_MTRRPHYSMASK0 is defined as MTRRPHYSMASK0 in SDM.
        MSR_P6_MTRRPHYSMASK1 is defined as MTRRPHYSMASK1 in SDM.
        MSR_P6_MTRRPHYSMASK2 is defined as MTRRPHYSMASK2 in SDM.
        MSR_P6_MTRRPHYSMASK3 is defined as MTRRPHYSMASK3 in SDM.
        MSR_P6_MTRRPHYSMASK4 is defined as MTRRPHYSMASK4 in SDM.
        MSR_P6_MTRRPHYSMASK5 is defined as MTRRPHYSMASK5 in SDM.
        MSR_P6_MTRRPHYSMASK6 is defined as MTRRPHYSMASK6 in SDM.
        MSR_P6_MTRRPHYSMASK7 is defined as MTRRPHYSMASK7 in SDM.
  @{
**/
#define MSR_P6_MTRRPHYSMASK0                     0x00000201
#define MSR_P6_MTRRPHYSMASK1                     0x00000203
#define MSR_P6_MTRRPHYSMASK2                     0x00000205
#define MSR_P6_MTRRPHYSMASK3                     0x00000207
#define MSR_P6_MTRRPHYSMASK4                     0x00000209
#define MSR_P6_MTRRPHYSMASK5                     0x0000020B
#define MSR_P6_MTRRPHYSMASK6                     0x0000020D
#define MSR_P6_MTRRPHYSMASK7                     0x0000020F
/// @}


/**


  @param  ECX  MSR_P6_MTRRFIX64K_00000 (0x00000250)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX64K_00000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX64K_00000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX64K_00000 is defined as MTRRFIX64K_00000 in SDM.
**/
#define MSR_P6_MTRRFIX64K_00000                  0x00000250


/**


  @param  ECX  MSR_P6_MTRRFIX16K_80000 (0x00000258)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX16K_80000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX16K_80000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX16K_80000 is defined as MTRRFIX16K_80000 in SDM.
**/
#define MSR_P6_MTRRFIX16K_80000                  0x00000258


/**


  @param  ECX  MSR_P6_MTRRFIX16K_A0000 (0x00000259)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX16K_A0000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX16K_A0000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX16K_A0000 is defined as MTRRFIX16K_A0000 in SDM.
**/
#define MSR_P6_MTRRFIX16K_A0000                  0x00000259


/**


  @param  ECX  MSR_P6_MTRRFIX4K_C0000 (0x00000268)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX4K_C0000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX4K_C0000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX4K_C0000 is defined as MTRRFIX4K_C0000 in SDM.
**/
#define MSR_P6_MTRRFIX4K_C0000                   0x00000268


/**


  @param  ECX  MSR_P6_MTRRFIX4K_C8000 (0x00000269)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX4K_C8000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX4K_C8000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX4K_C8000 is defined as MTRRFIX4K_C8000 in SDM.
**/
#define MSR_P6_MTRRFIX4K_C8000                   0x00000269


/**


  @param  ECX  MSR_P6_MTRRFIX4K_D0000 (0x0000026A)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX4K_D0000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX4K_D0000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX4K_D0000 is defined as MTRRFIX4K_D0000 in SDM.
**/
#define MSR_P6_MTRRFIX4K_D0000                   0x0000026A


/**


  @param  ECX  MSR_P6_MTRRFIX4K_D8000 (0x0000026B)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX4K_D8000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX4K_D8000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX4K_D8000 is defined as MTRRFIX4K_D8000 in SDM.
**/
#define MSR_P6_MTRRFIX4K_D8000                   0x0000026B


/**


  @param  ECX  MSR_P6_MTRRFIX4K_E0000 (0x0000026C)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX4K_E0000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX4K_E0000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX4K_E0000 is defined as MTRRFIX4K_E0000 in SDM.
**/
#define MSR_P6_MTRRFIX4K_E0000                   0x0000026C


/**


  @param  ECX  MSR_P6_MTRRFIX4K_E8000 (0x0000026D)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX4K_E8000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX4K_E8000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX4K_E8000 is defined as MTRRFIX4K_E8000 in SDM.
**/
#define MSR_P6_MTRRFIX4K_E8000                   0x0000026D


/**


  @param  ECX  MSR_P6_MTRRFIX4K_F0000 (0x0000026E)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX4K_F0000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX4K_F0000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX4K_F0000 is defined as MTRRFIX4K_F0000 in SDM.
**/
#define MSR_P6_MTRRFIX4K_F0000                   0x0000026E


/**


  @param  ECX  MSR_P6_MTRRFIX4K_F8000 (0x0000026F)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MTRRFIX4K_F8000);
  AsmWriteMsr64 (MSR_P6_MTRRFIX4K_F8000, Msr);
  @endcode
  @note MSR_P6_MTRRFIX4K_F8000 is defined as MTRRFIX4K_F8000 in SDM.
**/
#define MSR_P6_MTRRFIX4K_F8000                   0x0000026F


/**


  @param  ECX  MSR_P6_MTRRDEFTYPE (0x000002FF)
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_MTRRDEFTYPE_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_MTRRDEFTYPE_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_MTRRDEFTYPE_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_MTRRDEFTYPE);
  AsmWriteMsr64 (MSR_P6_MTRRDEFTYPE, Msr.Uint64);
  @endcode
  @note MSR_P6_MTRRDEFTYPE is defined as MTRRDEFTYPE in SDM.
**/
#define MSR_P6_MTRRDEFTYPE                       0x000002FF

/**
  MSR information returned for MSR index #MSR_P6_MTRRDEFTYPE
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    ///
    /// [Bits 2:0] Default memory type.
    ///
    UINT32  Type:3;
    UINT32  Reserved1:7;
    ///
    /// [Bit 10] Fixed MTRR enable.
    ///
    UINT32  FE:1;
    ///
    /// [Bit 11] MTRR Enable.
    ///
    UINT32  E:1;
    UINT32  Reserved2:20;
    UINT32  Reserved3:32;
  } Bits;
  ///
  /// All bit fields as a 32-bit value
  ///
  UINT32  Uint32;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_MTRRDEFTYPE_REGISTER;


/**


  @param  ECX  MSR_P6_MC0_CTL (0x00000400)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MC0_CTL);
  AsmWriteMsr64 (MSR_P6_MC0_CTL, Msr);
  @endcode
  @note MSR_P6_MC0_CTL is defined as MC0_CTL in SDM.
        MSR_P6_MC1_CTL is defined as MC1_CTL in SDM.
        MSR_P6_MC2_CTL is defined as MC2_CTL in SDM.
        MSR_P6_MC3_CTL is defined as MC3_CTL in SDM.
        MSR_P6_MC4_CTL is defined as MC4_CTL in SDM.
  @{
**/
#define MSR_P6_MC0_CTL                           0x00000400
#define MSR_P6_MC1_CTL                           0x00000404
#define MSR_P6_MC2_CTL                           0x00000408
#define MSR_P6_MC3_CTL                           0x00000410
#define MSR_P6_MC4_CTL                           0x0000040C
/// @}


/**

  Bit definitions for MSR_P6_MC4_STATUS are the same as MSR_P6_MC0_STATUS,
  except bits 0, 4, 57, and 61 are hardcoded to 1.

  @param  ECX  MSR_P6_MCn_STATUS
  @param  EAX  Lower 32-bits of MSR value.
               Described by the type MSR_P6_MC_STATUS_REGISTER.
  @param  EDX  Upper 32-bits of MSR value.
               Described by the type MSR_P6_MC_STATUS_REGISTER.

  <b>Example usage</b>
  @code
  MSR_P6_MC_STATUS_REGISTER  Msr;

  Msr.Uint64 = AsmReadMsr64 (MSR_P6_MC0_STATUS);
  AsmWriteMsr64 (MSR_P6_MC0_STATUS, Msr.Uint64);
  @endcode
  @note MSR_P6_MC0_STATUS is defined as MC0_STATUS in SDM.
        MSR_P6_MC1_STATUS is defined as MC1_STATUS in SDM.
        MSR_P6_MC2_STATUS is defined as MC2_STATUS in SDM.
        MSR_P6_MC3_STATUS is defined as MC3_STATUS in SDM.
        MSR_P6_MC4_STATUS is defined as MC4_STATUS in SDM.
  @{
**/
#define MSR_P6_MC0_STATUS                        0x00000401
#define MSR_P6_MC1_STATUS                        0x00000405
#define MSR_P6_MC2_STATUS                        0x00000409
#define MSR_P6_MC3_STATUS                        0x00000411
#define MSR_P6_MC4_STATUS                        0x0000040D
/// @}

/**
  MSR information returned for MSR index #MSR_P6_MC0_STATUS to
  #MSR_P6_MC4_STATUS
**/
typedef union {
  ///
  /// Individual bit fields
  ///
  struct {
    ///
    /// [Bits 15:0] MC_STATUS_MCACOD.
    ///
    UINT32  MC_STATUS_MCACOD:16;
    ///
    /// [Bits 31:16] MC_STATUS_MSCOD.
    ///
    UINT32  MC_STATUS_MSCOD:16;
    UINT32  Reserved:25;
    ///
    /// [Bit 57] MC_STATUS_DAM.
    ///
    UINT32  MC_STATUS_DAM:1;
    ///
    /// [Bit 58] MC_STATUS_ADDRV.
    ///
    UINT32  MC_STATUS_ADDRV:1;
    ///
    /// [Bit 59] MC_STATUS_MISCV.
    ///
    UINT32  MC_STATUS_MISCV:1;
    ///
    /// [Bit 60] MC_STATUS_EN. (Note: For MC0_STATUS only, this bit is
    /// hardcoded to 1.).
    ///
    UINT32  MC_STATUS_EN:1;
    ///
    /// [Bit 61] MC_STATUS_UC.
    ///
    UINT32  MC_STATUS_UC:1;
    ///
    /// [Bit 62] MC_STATUS_O.
    ///
    UINT32  MC_STATUS_O:1;
    ///
    /// [Bit 63] MC_STATUS_V.
    ///
    UINT32  MC_STATUS_V:1;
  } Bits;
  ///
  /// All bit fields as a 64-bit value
  ///
  UINT64  Uint64;
} MSR_P6_MC_STATUS_REGISTER;


/**

  MSR_P6_MC4_ADDR is defined in MCA architecture but not implemented in P6 Family processors.

  @param  ECX  MSR_P6_MC0_ADDR (0x00000402)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MC0_ADDR);
  AsmWriteMsr64 (MSR_P6_MC0_ADDR, Msr);
  @endcode
  @note MSR_P6_MC0_ADDR is defined as MC0_ADDR in SDM.
        MSR_P6_MC1_ADDR is defined as MC1_ADDR in SDM.
        MSR_P6_MC2_ADDR is defined as MC2_ADDR in SDM.
        MSR_P6_MC3_ADDR is defined as MC3_ADDR in SDM.
        MSR_P6_MC4_ADDR is defined as MC4_ADDR in SDM.
  @{
**/
#define MSR_P6_MC0_ADDR                          0x00000402
#define MSR_P6_MC1_ADDR                          0x00000406
#define MSR_P6_MC2_ADDR                          0x0000040A
#define MSR_P6_MC3_ADDR                          0x00000412
#define MSR_P6_MC4_ADDR                          0x0000040E
/// @}


/**
  Defined in MCA architecture but not implemented in the P6 family processors.

  @param  ECX  MSR_P6_MC0_MISC (0x00000403)
  @param  EAX  Lower 32-bits of MSR value.
  @param  EDX  Upper 32-bits of MSR value.

  <b>Example usage</b>
  @code
  UINT64  Msr;

  Msr = AsmReadMsr64 (MSR_P6_MC0_MISC);
  AsmWriteMsr64 (MSR_P6_MC0_MISC, Msr);
  @endcode
  @note MSR_P6_MC0_MISC is defined as MC0_MISC in SDM.
        MSR_P6_MC1_MISC is defined as MC1_MISC in SDM.
        MSR_P6_MC2_MISC is defined as MC2_MISC in SDM.
        MSR_P6_MC3_MISC is defined as MC3_MISC in SDM.
        MSR_P6_MC4_MISC is defined as MC4_MISC in SDM.
  @{
**/
#define MSR_P6_MC0_MISC                          0x00000403
#define MSR_P6_MC1_MISC                          0x00000407
#define MSR_P6_MC2_MISC                          0x0000040B
#define MSR_P6_MC3_MISC                          0x00000413
#define MSR_P6_MC4_MISC                          0x0000040F
/// @}

#endif