1 /** @file 2 MSR Definitions. 3 4 Provides defines for Machine Specific Registers(MSR) indexes. Data structures 5 are provided for MSRs that contain one or more bit fields. If the MSR value 6 returned is a single 32-bit or 64-bit value, then a data structure is not 7 provided for that MSR. 8 9 Copyright (c) 2016, Intel Corporation. All rights reserved.<BR> 10 This program and the accompanying materials 11 are licensed and made available under the terms and conditions of the BSD License 12 which accompanies this distribution. The full text of the license may be found at 13 http://opensource.org/licenses/bsd-license.php 14 15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17 18 @par Specification Reference: 19 Intel(R) 64 and IA-32 Architectures Software Developer's Manual, Volume 3, 20 September 2016, Chapter 35 Model-Specific-Registers (MSR), Chapter 35. 21 22 **/ 23 24 #ifndef __MSR_H__ 25 #define __MSR_H__ 26 27 #include <Register/ArchitecturalMsr.h> 28 #include <Register/Msr/Core2Msr.h> 29 #include <Register/Msr/AtomMsr.h> 30 #include <Register/Msr/SilvermontMsr.h> 31 #include <Register/Msr/GoldmontMsr.h> 32 #include <Register/Msr/NehalemMsr.h> 33 #include <Register/Msr/Xeon5600Msr.h> 34 #include <Register/Msr/XeonE7Msr.h> 35 #include <Register/Msr/SandyBridgeMsr.h> 36 #include <Register/Msr/IvyBridgeMsr.h> 37 #include <Register/Msr/HaswellMsr.h> 38 #include <Register/Msr/HaswellEMsr.h> 39 #include <Register/Msr/BroadwellMsr.h> 40 #include <Register/Msr/XeonDMsr.h> 41 #include <Register/Msr/SkylakeMsr.h> 42 #include <Register/Msr/XeonPhiMsr.h> 43 #include <Register/Msr/Pentium4Msr.h> 44 #include <Register/Msr/CoreMsr.h> 45 #include <Register/Msr/PentiumMMsr.h> 46 #include <Register/Msr/P6Msr.h> 47 #include <Register/Msr/PentiumMsr.h> 48 49 #endif 50