The patch moves all files under UefiCpuPkg/Include/Register/ to MdePkg/Include/Register using following detailed approaches: 1. Move UefiCpuPkg/Include/Register/Amd/ to MdePkg/Include/Register/Amd folder. 2. Move remaining in UefiCpuPkg/Include/Register/ to MdePkg/Include/Register/Intel folder. 3. Create wrapper header files under UefiCpuPkg/Include/Register/ to include the accordingly files in MdePkg/Include/Register/Intel. This is to avoid build break because code in other repos like edk2-platform includes the file from UefiCpuPkg. The wrapper header files will be removed after all consumers code is updated. Signed-off-by: Ray Ni <ray.ni@intel.com> Reviewed-by: Eric Dong <eric.dong@intel.com> Regression-tested-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Liming Gao <liming.gao@intel.com> Signed-off-by: Eric Dong <eric.dong@intel.com>
45 lines
1.6 KiB
C
45 lines
1.6 KiB
C
/** @file
|
|
MSR Definitions.
|
|
|
|
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 __INTEL_MSR_H__
|
|
#define __INTEL_MSR_H__
|
|
|
|
#include <Register/Intel/ArchitecturalMsr.h>
|
|
#include <Register/Intel/Msr/Core2Msr.h>
|
|
#include <Register/Intel/Msr/AtomMsr.h>
|
|
#include <Register/Intel/Msr/SilvermontMsr.h>
|
|
#include <Register/Intel/Msr/GoldmontMsr.h>
|
|
#include <Register/Intel/Msr/GoldmontPlusMsr.h>
|
|
#include <Register/Intel/Msr/NehalemMsr.h>
|
|
#include <Register/Intel/Msr/Xeon5600Msr.h>
|
|
#include <Register/Intel/Msr/XeonE7Msr.h>
|
|
#include <Register/Intel/Msr/SandyBridgeMsr.h>
|
|
#include <Register/Intel/Msr/IvyBridgeMsr.h>
|
|
#include <Register/Intel/Msr/HaswellMsr.h>
|
|
#include <Register/Intel/Msr/HaswellEMsr.h>
|
|
#include <Register/Intel/Msr/BroadwellMsr.h>
|
|
#include <Register/Intel/Msr/XeonDMsr.h>
|
|
#include <Register/Intel/Msr/SkylakeMsr.h>
|
|
#include <Register/Intel/Msr/XeonPhiMsr.h>
|
|
#include <Register/Intel/Msr/Pentium4Msr.h>
|
|
#include <Register/Intel/Msr/CoreMsr.h>
|
|
#include <Register/Intel/Msr/PentiumMMsr.h>
|
|
#include <Register/Intel/Msr/P6Msr.h>
|
|
#include <Register/Intel/Msr/PentiumMsr.h>
|
|
|
|
#endif
|