UefiCpuPkg/Include/Register/Msr/CoreMsr.h: Remove old MSR.

Changes includes:
  1. Remove old MSR which not existed in 2018-05 version spec:
     1. MSR_CORE_ROB_CR_BKUPTMPDR6

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
Acked-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
Eric Dong 2018-09-03 10:22:19 +08:00
parent 7ce15b89bb
commit f49bbeda3e
1 changed files with 0 additions and 48 deletions

View File

@ -555,54 +555,6 @@ typedef union {
**/
#define MSR_CORE_LER_TO_LIP 0x000001DE
/**
Unique.
@param ECX MSR_CORE_ROB_CR_BKUPTMPDR6 (0x000001E0)
@param EAX Lower 32-bits of MSR value.
Described by the type MSR_CORE_ROB_CR_BKUPTMPDR6_REGISTER.
@param EDX Upper 32-bits of MSR value.
Described by the type MSR_CORE_ROB_CR_BKUPTMPDR6_REGISTER.
<b>Example usage</b>
@code
MSR_CORE_ROB_CR_BKUPTMPDR6_REGISTER Msr;
Msr.Uint64 = AsmReadMsr64 (MSR_CORE_ROB_CR_BKUPTMPDR6);
AsmWriteMsr64 (MSR_CORE_ROB_CR_BKUPTMPDR6, Msr.Uint64);
@endcode
@note MSR_CORE_ROB_CR_BKUPTMPDR6 is defined as ROB_CR_BKUPTMPDR6 in SDM.
**/
#define MSR_CORE_ROB_CR_BKUPTMPDR6 0x000001E0
/**
MSR information returned for MSR index #MSR_CORE_ROB_CR_BKUPTMPDR6
**/
typedef union {
///
/// Individual bit fields
///
struct {
UINT32 Reserved1:2;
///
/// [Bit 2] Fast Strings Enable bit. (Default, enabled).
///
UINT32 FastStrings:1;
UINT32 Reserved2:29;
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_CORE_ROB_CR_BKUPTMPDR6_REGISTER;
/**
Unique.