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>
140 lines
3.6 KiB
C
140 lines
3.6 KiB
C
/** @file
|
|
MSR Definitions for Pentium 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 __PENTIUM_MSR_H__
|
|
#define __PENTIUM_MSR_H__
|
|
|
|
#include <Register/Intel/ArchitecturalMsr.h>
|
|
|
|
/**
|
|
Is Pentium Processors?
|
|
|
|
@param DisplayFamily Display Family ID
|
|
@param DisplayModel Display Model ID
|
|
|
|
@retval TRUE Yes, it is.
|
|
@retval FALSE No, it isn't.
|
|
**/
|
|
#define IS_PENTIUM_PROCESSOR(DisplayFamily, DisplayModel) \
|
|
(DisplayFamily == 0x05 && \
|
|
( \
|
|
DisplayModel == 0x01 || \
|
|
DisplayModel == 0x02 || \
|
|
DisplayModel == 0x04 \
|
|
) \
|
|
)
|
|
|
|
/**
|
|
See Section 15.10.2, "Pentium Processor Machine-Check Exception Handling.".
|
|
|
|
@param ECX MSR_PENTIUM_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_PENTIUM_P5_MC_ADDR);
|
|
AsmWriteMsr64 (MSR_PENTIUM_P5_MC_ADDR, Msr);
|
|
@endcode
|
|
@note MSR_PENTIUM_P5_MC_ADDR is defined as P5_MC_ADDR in SDM.
|
|
**/
|
|
#define MSR_PENTIUM_P5_MC_ADDR 0x00000000
|
|
|
|
|
|
/**
|
|
See Section 15.10.2, "Pentium Processor Machine-Check Exception Handling.".
|
|
|
|
@param ECX MSR_PENTIUM_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_PENTIUM_P5_MC_TYPE);
|
|
AsmWriteMsr64 (MSR_PENTIUM_P5_MC_TYPE, Msr);
|
|
@endcode
|
|
@note MSR_PENTIUM_P5_MC_TYPE is defined as P5_MC_TYPE in SDM.
|
|
**/
|
|
#define MSR_PENTIUM_P5_MC_TYPE 0x00000001
|
|
|
|
|
|
/**
|
|
See Section 17.17, "Time-Stamp Counter.".
|
|
|
|
@param ECX MSR_PENTIUM_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_PENTIUM_TSC);
|
|
AsmWriteMsr64 (MSR_PENTIUM_TSC, Msr);
|
|
@endcode
|
|
@note MSR_PENTIUM_TSC is defined as TSC in SDM.
|
|
**/
|
|
#define MSR_PENTIUM_TSC 0x00000010
|
|
|
|
|
|
/**
|
|
See Section 18.6.9.1, "Control and Event Select Register (CESR).".
|
|
|
|
@param ECX MSR_PENTIUM_CESR (0x00000011)
|
|
@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_PENTIUM_CESR);
|
|
AsmWriteMsr64 (MSR_PENTIUM_CESR, Msr);
|
|
@endcode
|
|
@note MSR_PENTIUM_CESR is defined as CESR in SDM.
|
|
**/
|
|
#define MSR_PENTIUM_CESR 0x00000011
|
|
|
|
|
|
/**
|
|
Section 18.6.9.3, "Events Counted.".
|
|
|
|
@param ECX MSR_PENTIUM_CTRn
|
|
@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_PENTIUM_CTR0);
|
|
AsmWriteMsr64 (MSR_PENTIUM_CTR0, Msr);
|
|
@endcode
|
|
@note MSR_PENTIUM_CTR0 is defined as CTR0 in SDM.
|
|
MSR_PENTIUM_CTR1 is defined as CTR1 in SDM.
|
|
@{
|
|
**/
|
|
#define MSR_PENTIUM_CTR0 0x00000012
|
|
#define MSR_PENTIUM_CTR1 0x00000013
|
|
/// @}
|
|
|
|
#endif
|