162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci#ifndef _ASM_X86_MSR_INDEX_H 362306a36Sopenharmony_ci#define _ASM_X86_MSR_INDEX_H 462306a36Sopenharmony_ci 562306a36Sopenharmony_ci#include <linux/bits.h> 662306a36Sopenharmony_ci 762306a36Sopenharmony_ci/* CPU model specific register (MSR) numbers. */ 862306a36Sopenharmony_ci 962306a36Sopenharmony_ci/* x86-64 specific MSRs */ 1062306a36Sopenharmony_ci#define MSR_EFER 0xc0000080 /* extended feature register */ 1162306a36Sopenharmony_ci#define MSR_STAR 0xc0000081 /* legacy mode SYSCALL target */ 1262306a36Sopenharmony_ci#define MSR_LSTAR 0xc0000082 /* long mode SYSCALL target */ 1362306a36Sopenharmony_ci#define MSR_CSTAR 0xc0000083 /* compat mode SYSCALL target */ 1462306a36Sopenharmony_ci#define MSR_SYSCALL_MASK 0xc0000084 /* EFLAGS mask for syscall */ 1562306a36Sopenharmony_ci#define MSR_FS_BASE 0xc0000100 /* 64bit FS base */ 1662306a36Sopenharmony_ci#define MSR_GS_BASE 0xc0000101 /* 64bit GS base */ 1762306a36Sopenharmony_ci#define MSR_KERNEL_GS_BASE 0xc0000102 /* SwapGS GS shadow */ 1862306a36Sopenharmony_ci#define MSR_TSC_AUX 0xc0000103 /* Auxiliary TSC */ 1962306a36Sopenharmony_ci 2062306a36Sopenharmony_ci/* EFER bits: */ 2162306a36Sopenharmony_ci#define _EFER_SCE 0 /* SYSCALL/SYSRET */ 2262306a36Sopenharmony_ci#define _EFER_LME 8 /* Long mode enable */ 2362306a36Sopenharmony_ci#define _EFER_LMA 10 /* Long mode active (read-only) */ 2462306a36Sopenharmony_ci#define _EFER_NX 11 /* No execute enable */ 2562306a36Sopenharmony_ci#define _EFER_SVME 12 /* Enable virtualization */ 2662306a36Sopenharmony_ci#define _EFER_LMSLE 13 /* Long Mode Segment Limit Enable */ 2762306a36Sopenharmony_ci#define _EFER_FFXSR 14 /* Enable Fast FXSAVE/FXRSTOR */ 2862306a36Sopenharmony_ci#define _EFER_AUTOIBRS 21 /* Enable Automatic IBRS */ 2962306a36Sopenharmony_ci 3062306a36Sopenharmony_ci#define EFER_SCE (1<<_EFER_SCE) 3162306a36Sopenharmony_ci#define EFER_LME (1<<_EFER_LME) 3262306a36Sopenharmony_ci#define EFER_LMA (1<<_EFER_LMA) 3362306a36Sopenharmony_ci#define EFER_NX (1<<_EFER_NX) 3462306a36Sopenharmony_ci#define EFER_SVME (1<<_EFER_SVME) 3562306a36Sopenharmony_ci#define EFER_LMSLE (1<<_EFER_LMSLE) 3662306a36Sopenharmony_ci#define EFER_FFXSR (1<<_EFER_FFXSR) 3762306a36Sopenharmony_ci#define EFER_AUTOIBRS (1<<_EFER_AUTOIBRS) 3862306a36Sopenharmony_ci 3962306a36Sopenharmony_ci/* Intel MSRs. Some also available on other CPUs */ 4062306a36Sopenharmony_ci 4162306a36Sopenharmony_ci#define MSR_TEST_CTRL 0x00000033 4262306a36Sopenharmony_ci#define MSR_TEST_CTRL_SPLIT_LOCK_DETECT_BIT 29 4362306a36Sopenharmony_ci#define MSR_TEST_CTRL_SPLIT_LOCK_DETECT BIT(MSR_TEST_CTRL_SPLIT_LOCK_DETECT_BIT) 4462306a36Sopenharmony_ci 4562306a36Sopenharmony_ci#define MSR_IA32_SPEC_CTRL 0x00000048 /* Speculation Control */ 4662306a36Sopenharmony_ci#define SPEC_CTRL_IBRS BIT(0) /* Indirect Branch Restricted Speculation */ 4762306a36Sopenharmony_ci#define SPEC_CTRL_STIBP_SHIFT 1 /* Single Thread Indirect Branch Predictor (STIBP) bit */ 4862306a36Sopenharmony_ci#define SPEC_CTRL_STIBP BIT(SPEC_CTRL_STIBP_SHIFT) /* STIBP mask */ 4962306a36Sopenharmony_ci#define SPEC_CTRL_SSBD_SHIFT 2 /* Speculative Store Bypass Disable bit */ 5062306a36Sopenharmony_ci#define SPEC_CTRL_SSBD BIT(SPEC_CTRL_SSBD_SHIFT) /* Speculative Store Bypass Disable */ 5162306a36Sopenharmony_ci#define SPEC_CTRL_RRSBA_DIS_S_SHIFT 6 /* Disable RRSBA behavior */ 5262306a36Sopenharmony_ci#define SPEC_CTRL_RRSBA_DIS_S BIT(SPEC_CTRL_RRSBA_DIS_S_SHIFT) 5362306a36Sopenharmony_ci 5462306a36Sopenharmony_ci/* A mask for bits which the kernel toggles when controlling mitigations */ 5562306a36Sopenharmony_ci#define SPEC_CTRL_MITIGATIONS_MASK (SPEC_CTRL_IBRS | SPEC_CTRL_STIBP | SPEC_CTRL_SSBD \ 5662306a36Sopenharmony_ci | SPEC_CTRL_RRSBA_DIS_S) 5762306a36Sopenharmony_ci 5862306a36Sopenharmony_ci#define MSR_IA32_PRED_CMD 0x00000049 /* Prediction Command */ 5962306a36Sopenharmony_ci#define PRED_CMD_IBPB BIT(0) /* Indirect Branch Prediction Barrier */ 6062306a36Sopenharmony_ci#define PRED_CMD_SBPB BIT(7) /* Selective Branch Prediction Barrier */ 6162306a36Sopenharmony_ci 6262306a36Sopenharmony_ci#define MSR_PPIN_CTL 0x0000004e 6362306a36Sopenharmony_ci#define MSR_PPIN 0x0000004f 6462306a36Sopenharmony_ci 6562306a36Sopenharmony_ci#define MSR_IA32_PERFCTR0 0x000000c1 6662306a36Sopenharmony_ci#define MSR_IA32_PERFCTR1 0x000000c2 6762306a36Sopenharmony_ci#define MSR_FSB_FREQ 0x000000cd 6862306a36Sopenharmony_ci#define MSR_PLATFORM_INFO 0x000000ce 6962306a36Sopenharmony_ci#define MSR_PLATFORM_INFO_CPUID_FAULT_BIT 31 7062306a36Sopenharmony_ci#define MSR_PLATFORM_INFO_CPUID_FAULT BIT_ULL(MSR_PLATFORM_INFO_CPUID_FAULT_BIT) 7162306a36Sopenharmony_ci 7262306a36Sopenharmony_ci#define MSR_IA32_UMWAIT_CONTROL 0xe1 7362306a36Sopenharmony_ci#define MSR_IA32_UMWAIT_CONTROL_C02_DISABLE BIT(0) 7462306a36Sopenharmony_ci#define MSR_IA32_UMWAIT_CONTROL_RESERVED BIT(1) 7562306a36Sopenharmony_ci/* 7662306a36Sopenharmony_ci * The time field is bit[31:2], but representing a 32bit value with 7762306a36Sopenharmony_ci * bit[1:0] zero. 7862306a36Sopenharmony_ci */ 7962306a36Sopenharmony_ci#define MSR_IA32_UMWAIT_CONTROL_TIME_MASK (~0x03U) 8062306a36Sopenharmony_ci 8162306a36Sopenharmony_ci/* Abbreviated from Intel SDM name IA32_CORE_CAPABILITIES */ 8262306a36Sopenharmony_ci#define MSR_IA32_CORE_CAPS 0x000000cf 8362306a36Sopenharmony_ci#define MSR_IA32_CORE_CAPS_INTEGRITY_CAPS_BIT 2 8462306a36Sopenharmony_ci#define MSR_IA32_CORE_CAPS_INTEGRITY_CAPS BIT(MSR_IA32_CORE_CAPS_INTEGRITY_CAPS_BIT) 8562306a36Sopenharmony_ci#define MSR_IA32_CORE_CAPS_SPLIT_LOCK_DETECT_BIT 5 8662306a36Sopenharmony_ci#define MSR_IA32_CORE_CAPS_SPLIT_LOCK_DETECT BIT(MSR_IA32_CORE_CAPS_SPLIT_LOCK_DETECT_BIT) 8762306a36Sopenharmony_ci 8862306a36Sopenharmony_ci#define MSR_PKG_CST_CONFIG_CONTROL 0x000000e2 8962306a36Sopenharmony_ci#define NHM_C3_AUTO_DEMOTE (1UL << 25) 9062306a36Sopenharmony_ci#define NHM_C1_AUTO_DEMOTE (1UL << 26) 9162306a36Sopenharmony_ci#define ATM_LNC_C6_AUTO_DEMOTE (1UL << 25) 9262306a36Sopenharmony_ci#define SNB_C3_AUTO_UNDEMOTE (1UL << 27) 9362306a36Sopenharmony_ci#define SNB_C1_AUTO_UNDEMOTE (1UL << 28) 9462306a36Sopenharmony_ci 9562306a36Sopenharmony_ci#define MSR_MTRRcap 0x000000fe 9662306a36Sopenharmony_ci 9762306a36Sopenharmony_ci#define MSR_IA32_ARCH_CAPABILITIES 0x0000010a 9862306a36Sopenharmony_ci#define ARCH_CAP_RDCL_NO BIT(0) /* Not susceptible to Meltdown */ 9962306a36Sopenharmony_ci#define ARCH_CAP_IBRS_ALL BIT(1) /* Enhanced IBRS support */ 10062306a36Sopenharmony_ci#define ARCH_CAP_RSBA BIT(2) /* RET may use alternative branch predictors */ 10162306a36Sopenharmony_ci#define ARCH_CAP_SKIP_VMENTRY_L1DFLUSH BIT(3) /* Skip L1D flush on vmentry */ 10262306a36Sopenharmony_ci#define ARCH_CAP_SSB_NO BIT(4) /* 10362306a36Sopenharmony_ci * Not susceptible to Speculative Store Bypass 10462306a36Sopenharmony_ci * attack, so no Speculative Store Bypass 10562306a36Sopenharmony_ci * control required. 10662306a36Sopenharmony_ci */ 10762306a36Sopenharmony_ci#define ARCH_CAP_MDS_NO BIT(5) /* 10862306a36Sopenharmony_ci * Not susceptible to 10962306a36Sopenharmony_ci * Microarchitectural Data 11062306a36Sopenharmony_ci * Sampling (MDS) vulnerabilities. 11162306a36Sopenharmony_ci */ 11262306a36Sopenharmony_ci#define ARCH_CAP_PSCHANGE_MC_NO BIT(6) /* 11362306a36Sopenharmony_ci * The processor is not susceptible to a 11462306a36Sopenharmony_ci * machine check error due to modifying the 11562306a36Sopenharmony_ci * code page size along with either the 11662306a36Sopenharmony_ci * physical address or cache type 11762306a36Sopenharmony_ci * without TLB invalidation. 11862306a36Sopenharmony_ci */ 11962306a36Sopenharmony_ci#define ARCH_CAP_TSX_CTRL_MSR BIT(7) /* MSR for TSX control is available. */ 12062306a36Sopenharmony_ci#define ARCH_CAP_TAA_NO BIT(8) /* 12162306a36Sopenharmony_ci * Not susceptible to 12262306a36Sopenharmony_ci * TSX Async Abort (TAA) vulnerabilities. 12362306a36Sopenharmony_ci */ 12462306a36Sopenharmony_ci#define ARCH_CAP_SBDR_SSDP_NO BIT(13) /* 12562306a36Sopenharmony_ci * Not susceptible to SBDR and SSDP 12662306a36Sopenharmony_ci * variants of Processor MMIO stale data 12762306a36Sopenharmony_ci * vulnerabilities. 12862306a36Sopenharmony_ci */ 12962306a36Sopenharmony_ci#define ARCH_CAP_FBSDP_NO BIT(14) /* 13062306a36Sopenharmony_ci * Not susceptible to FBSDP variant of 13162306a36Sopenharmony_ci * Processor MMIO stale data 13262306a36Sopenharmony_ci * vulnerabilities. 13362306a36Sopenharmony_ci */ 13462306a36Sopenharmony_ci#define ARCH_CAP_PSDP_NO BIT(15) /* 13562306a36Sopenharmony_ci * Not susceptible to PSDP variant of 13662306a36Sopenharmony_ci * Processor MMIO stale data 13762306a36Sopenharmony_ci * vulnerabilities. 13862306a36Sopenharmony_ci */ 13962306a36Sopenharmony_ci#define ARCH_CAP_FB_CLEAR BIT(17) /* 14062306a36Sopenharmony_ci * VERW clears CPU fill buffer 14162306a36Sopenharmony_ci * even on MDS_NO CPUs. 14262306a36Sopenharmony_ci */ 14362306a36Sopenharmony_ci#define ARCH_CAP_FB_CLEAR_CTRL BIT(18) /* 14462306a36Sopenharmony_ci * MSR_IA32_MCU_OPT_CTRL[FB_CLEAR_DIS] 14562306a36Sopenharmony_ci * bit available to control VERW 14662306a36Sopenharmony_ci * behavior. 14762306a36Sopenharmony_ci */ 14862306a36Sopenharmony_ci#define ARCH_CAP_RRSBA BIT(19) /* 14962306a36Sopenharmony_ci * Indicates RET may use predictors 15062306a36Sopenharmony_ci * other than the RSB. With eIBRS 15162306a36Sopenharmony_ci * enabled predictions in kernel mode 15262306a36Sopenharmony_ci * are restricted to targets in 15362306a36Sopenharmony_ci * kernel. 15462306a36Sopenharmony_ci */ 15562306a36Sopenharmony_ci#define ARCH_CAP_PBRSB_NO BIT(24) /* 15662306a36Sopenharmony_ci * Not susceptible to Post-Barrier 15762306a36Sopenharmony_ci * Return Stack Buffer Predictions. 15862306a36Sopenharmony_ci */ 15962306a36Sopenharmony_ci#define ARCH_CAP_GDS_CTRL BIT(25) /* 16062306a36Sopenharmony_ci * CPU is vulnerable to Gather 16162306a36Sopenharmony_ci * Data Sampling (GDS) and 16262306a36Sopenharmony_ci * has controls for mitigation. 16362306a36Sopenharmony_ci */ 16462306a36Sopenharmony_ci#define ARCH_CAP_GDS_NO BIT(26) /* 16562306a36Sopenharmony_ci * CPU is not vulnerable to Gather 16662306a36Sopenharmony_ci * Data Sampling (GDS). 16762306a36Sopenharmony_ci */ 16862306a36Sopenharmony_ci#define ARCH_CAP_RFDS_NO BIT(27) /* 16962306a36Sopenharmony_ci * Not susceptible to Register 17062306a36Sopenharmony_ci * File Data Sampling. 17162306a36Sopenharmony_ci */ 17262306a36Sopenharmony_ci#define ARCH_CAP_RFDS_CLEAR BIT(28) /* 17362306a36Sopenharmony_ci * VERW clears CPU Register 17462306a36Sopenharmony_ci * File. 17562306a36Sopenharmony_ci */ 17662306a36Sopenharmony_ci 17762306a36Sopenharmony_ci#define ARCH_CAP_XAPIC_DISABLE BIT(21) /* 17862306a36Sopenharmony_ci * IA32_XAPIC_DISABLE_STATUS MSR 17962306a36Sopenharmony_ci * supported 18062306a36Sopenharmony_ci */ 18162306a36Sopenharmony_ci 18262306a36Sopenharmony_ci#define MSR_IA32_FLUSH_CMD 0x0000010b 18362306a36Sopenharmony_ci#define L1D_FLUSH BIT(0) /* 18462306a36Sopenharmony_ci * Writeback and invalidate the 18562306a36Sopenharmony_ci * L1 data cache. 18662306a36Sopenharmony_ci */ 18762306a36Sopenharmony_ci 18862306a36Sopenharmony_ci#define MSR_IA32_BBL_CR_CTL 0x00000119 18962306a36Sopenharmony_ci#define MSR_IA32_BBL_CR_CTL3 0x0000011e 19062306a36Sopenharmony_ci 19162306a36Sopenharmony_ci#define MSR_IA32_TSX_CTRL 0x00000122 19262306a36Sopenharmony_ci#define TSX_CTRL_RTM_DISABLE BIT(0) /* Disable RTM feature */ 19362306a36Sopenharmony_ci#define TSX_CTRL_CPUID_CLEAR BIT(1) /* Disable TSX enumeration */ 19462306a36Sopenharmony_ci 19562306a36Sopenharmony_ci#define MSR_IA32_MCU_OPT_CTRL 0x00000123 19662306a36Sopenharmony_ci#define RNGDS_MITG_DIS BIT(0) /* SRBDS support */ 19762306a36Sopenharmony_ci#define RTM_ALLOW BIT(1) /* TSX development mode */ 19862306a36Sopenharmony_ci#define FB_CLEAR_DIS BIT(3) /* CPU Fill buffer clear disable */ 19962306a36Sopenharmony_ci#define GDS_MITG_DIS BIT(4) /* Disable GDS mitigation */ 20062306a36Sopenharmony_ci#define GDS_MITG_LOCKED BIT(5) /* GDS mitigation locked */ 20162306a36Sopenharmony_ci 20262306a36Sopenharmony_ci#define MSR_IA32_SYSENTER_CS 0x00000174 20362306a36Sopenharmony_ci#define MSR_IA32_SYSENTER_ESP 0x00000175 20462306a36Sopenharmony_ci#define MSR_IA32_SYSENTER_EIP 0x00000176 20562306a36Sopenharmony_ci 20662306a36Sopenharmony_ci#define MSR_IA32_MCG_CAP 0x00000179 20762306a36Sopenharmony_ci#define MSR_IA32_MCG_STATUS 0x0000017a 20862306a36Sopenharmony_ci#define MSR_IA32_MCG_CTL 0x0000017b 20962306a36Sopenharmony_ci#define MSR_ERROR_CONTROL 0x0000017f 21062306a36Sopenharmony_ci#define MSR_IA32_MCG_EXT_CTL 0x000004d0 21162306a36Sopenharmony_ci 21262306a36Sopenharmony_ci#define MSR_OFFCORE_RSP_0 0x000001a6 21362306a36Sopenharmony_ci#define MSR_OFFCORE_RSP_1 0x000001a7 21462306a36Sopenharmony_ci#define MSR_TURBO_RATIO_LIMIT 0x000001ad 21562306a36Sopenharmony_ci#define MSR_TURBO_RATIO_LIMIT1 0x000001ae 21662306a36Sopenharmony_ci#define MSR_TURBO_RATIO_LIMIT2 0x000001af 21762306a36Sopenharmony_ci 21862306a36Sopenharmony_ci#define MSR_SNOOP_RSP_0 0x00001328 21962306a36Sopenharmony_ci#define MSR_SNOOP_RSP_1 0x00001329 22062306a36Sopenharmony_ci 22162306a36Sopenharmony_ci#define MSR_LBR_SELECT 0x000001c8 22262306a36Sopenharmony_ci#define MSR_LBR_TOS 0x000001c9 22362306a36Sopenharmony_ci 22462306a36Sopenharmony_ci#define MSR_IA32_POWER_CTL 0x000001fc 22562306a36Sopenharmony_ci#define MSR_IA32_POWER_CTL_BIT_EE 19 22662306a36Sopenharmony_ci 22762306a36Sopenharmony_ci/* Abbreviated from Intel SDM name IA32_INTEGRITY_CAPABILITIES */ 22862306a36Sopenharmony_ci#define MSR_INTEGRITY_CAPS 0x000002d9 22962306a36Sopenharmony_ci#define MSR_INTEGRITY_CAPS_ARRAY_BIST_BIT 2 23062306a36Sopenharmony_ci#define MSR_INTEGRITY_CAPS_ARRAY_BIST BIT(MSR_INTEGRITY_CAPS_ARRAY_BIST_BIT) 23162306a36Sopenharmony_ci#define MSR_INTEGRITY_CAPS_PERIODIC_BIST_BIT 4 23262306a36Sopenharmony_ci#define MSR_INTEGRITY_CAPS_PERIODIC_BIST BIT(MSR_INTEGRITY_CAPS_PERIODIC_BIST_BIT) 23362306a36Sopenharmony_ci 23462306a36Sopenharmony_ci#define MSR_LBR_NHM_FROM 0x00000680 23562306a36Sopenharmony_ci#define MSR_LBR_NHM_TO 0x000006c0 23662306a36Sopenharmony_ci#define MSR_LBR_CORE_FROM 0x00000040 23762306a36Sopenharmony_ci#define MSR_LBR_CORE_TO 0x00000060 23862306a36Sopenharmony_ci 23962306a36Sopenharmony_ci#define MSR_LBR_INFO_0 0x00000dc0 /* ... 0xddf for _31 */ 24062306a36Sopenharmony_ci#define LBR_INFO_MISPRED BIT_ULL(63) 24162306a36Sopenharmony_ci#define LBR_INFO_IN_TX BIT_ULL(62) 24262306a36Sopenharmony_ci#define LBR_INFO_ABORT BIT_ULL(61) 24362306a36Sopenharmony_ci#define LBR_INFO_CYC_CNT_VALID BIT_ULL(60) 24462306a36Sopenharmony_ci#define LBR_INFO_CYCLES 0xffff 24562306a36Sopenharmony_ci#define LBR_INFO_BR_TYPE_OFFSET 56 24662306a36Sopenharmony_ci#define LBR_INFO_BR_TYPE (0xfull << LBR_INFO_BR_TYPE_OFFSET) 24762306a36Sopenharmony_ci 24862306a36Sopenharmony_ci#define MSR_ARCH_LBR_CTL 0x000014ce 24962306a36Sopenharmony_ci#define ARCH_LBR_CTL_LBREN BIT(0) 25062306a36Sopenharmony_ci#define ARCH_LBR_CTL_CPL_OFFSET 1 25162306a36Sopenharmony_ci#define ARCH_LBR_CTL_CPL (0x3ull << ARCH_LBR_CTL_CPL_OFFSET) 25262306a36Sopenharmony_ci#define ARCH_LBR_CTL_STACK_OFFSET 3 25362306a36Sopenharmony_ci#define ARCH_LBR_CTL_STACK (0x1ull << ARCH_LBR_CTL_STACK_OFFSET) 25462306a36Sopenharmony_ci#define ARCH_LBR_CTL_FILTER_OFFSET 16 25562306a36Sopenharmony_ci#define ARCH_LBR_CTL_FILTER (0x7full << ARCH_LBR_CTL_FILTER_OFFSET) 25662306a36Sopenharmony_ci#define MSR_ARCH_LBR_DEPTH 0x000014cf 25762306a36Sopenharmony_ci#define MSR_ARCH_LBR_FROM_0 0x00001500 25862306a36Sopenharmony_ci#define MSR_ARCH_LBR_TO_0 0x00001600 25962306a36Sopenharmony_ci#define MSR_ARCH_LBR_INFO_0 0x00001200 26062306a36Sopenharmony_ci 26162306a36Sopenharmony_ci#define MSR_IA32_PEBS_ENABLE 0x000003f1 26262306a36Sopenharmony_ci#define MSR_PEBS_DATA_CFG 0x000003f2 26362306a36Sopenharmony_ci#define MSR_IA32_DS_AREA 0x00000600 26462306a36Sopenharmony_ci#define MSR_IA32_PERF_CAPABILITIES 0x00000345 26562306a36Sopenharmony_ci#define PERF_CAP_METRICS_IDX 15 26662306a36Sopenharmony_ci#define PERF_CAP_PT_IDX 16 26762306a36Sopenharmony_ci 26862306a36Sopenharmony_ci#define MSR_PEBS_LD_LAT_THRESHOLD 0x000003f6 26962306a36Sopenharmony_ci#define PERF_CAP_PEBS_TRAP BIT_ULL(6) 27062306a36Sopenharmony_ci#define PERF_CAP_ARCH_REG BIT_ULL(7) 27162306a36Sopenharmony_ci#define PERF_CAP_PEBS_FORMAT 0xf00 27262306a36Sopenharmony_ci#define PERF_CAP_PEBS_BASELINE BIT_ULL(14) 27362306a36Sopenharmony_ci#define PERF_CAP_PEBS_MASK (PERF_CAP_PEBS_TRAP | PERF_CAP_ARCH_REG | \ 27462306a36Sopenharmony_ci PERF_CAP_PEBS_FORMAT | PERF_CAP_PEBS_BASELINE) 27562306a36Sopenharmony_ci 27662306a36Sopenharmony_ci#define MSR_IA32_RTIT_CTL 0x00000570 27762306a36Sopenharmony_ci#define RTIT_CTL_TRACEEN BIT(0) 27862306a36Sopenharmony_ci#define RTIT_CTL_CYCLEACC BIT(1) 27962306a36Sopenharmony_ci#define RTIT_CTL_OS BIT(2) 28062306a36Sopenharmony_ci#define RTIT_CTL_USR BIT(3) 28162306a36Sopenharmony_ci#define RTIT_CTL_PWR_EVT_EN BIT(4) 28262306a36Sopenharmony_ci#define RTIT_CTL_FUP_ON_PTW BIT(5) 28362306a36Sopenharmony_ci#define RTIT_CTL_FABRIC_EN BIT(6) 28462306a36Sopenharmony_ci#define RTIT_CTL_CR3EN BIT(7) 28562306a36Sopenharmony_ci#define RTIT_CTL_TOPA BIT(8) 28662306a36Sopenharmony_ci#define RTIT_CTL_MTC_EN BIT(9) 28762306a36Sopenharmony_ci#define RTIT_CTL_TSC_EN BIT(10) 28862306a36Sopenharmony_ci#define RTIT_CTL_DISRETC BIT(11) 28962306a36Sopenharmony_ci#define RTIT_CTL_PTW_EN BIT(12) 29062306a36Sopenharmony_ci#define RTIT_CTL_BRANCH_EN BIT(13) 29162306a36Sopenharmony_ci#define RTIT_CTL_EVENT_EN BIT(31) 29262306a36Sopenharmony_ci#define RTIT_CTL_NOTNT BIT_ULL(55) 29362306a36Sopenharmony_ci#define RTIT_CTL_MTC_RANGE_OFFSET 14 29462306a36Sopenharmony_ci#define RTIT_CTL_MTC_RANGE (0x0full << RTIT_CTL_MTC_RANGE_OFFSET) 29562306a36Sopenharmony_ci#define RTIT_CTL_CYC_THRESH_OFFSET 19 29662306a36Sopenharmony_ci#define RTIT_CTL_CYC_THRESH (0x0full << RTIT_CTL_CYC_THRESH_OFFSET) 29762306a36Sopenharmony_ci#define RTIT_CTL_PSB_FREQ_OFFSET 24 29862306a36Sopenharmony_ci#define RTIT_CTL_PSB_FREQ (0x0full << RTIT_CTL_PSB_FREQ_OFFSET) 29962306a36Sopenharmony_ci#define RTIT_CTL_ADDR0_OFFSET 32 30062306a36Sopenharmony_ci#define RTIT_CTL_ADDR0 (0x0full << RTIT_CTL_ADDR0_OFFSET) 30162306a36Sopenharmony_ci#define RTIT_CTL_ADDR1_OFFSET 36 30262306a36Sopenharmony_ci#define RTIT_CTL_ADDR1 (0x0full << RTIT_CTL_ADDR1_OFFSET) 30362306a36Sopenharmony_ci#define RTIT_CTL_ADDR2_OFFSET 40 30462306a36Sopenharmony_ci#define RTIT_CTL_ADDR2 (0x0full << RTIT_CTL_ADDR2_OFFSET) 30562306a36Sopenharmony_ci#define RTIT_CTL_ADDR3_OFFSET 44 30662306a36Sopenharmony_ci#define RTIT_CTL_ADDR3 (0x0full << RTIT_CTL_ADDR3_OFFSET) 30762306a36Sopenharmony_ci#define MSR_IA32_RTIT_STATUS 0x00000571 30862306a36Sopenharmony_ci#define RTIT_STATUS_FILTEREN BIT(0) 30962306a36Sopenharmony_ci#define RTIT_STATUS_CONTEXTEN BIT(1) 31062306a36Sopenharmony_ci#define RTIT_STATUS_TRIGGEREN BIT(2) 31162306a36Sopenharmony_ci#define RTIT_STATUS_BUFFOVF BIT(3) 31262306a36Sopenharmony_ci#define RTIT_STATUS_ERROR BIT(4) 31362306a36Sopenharmony_ci#define RTIT_STATUS_STOPPED BIT(5) 31462306a36Sopenharmony_ci#define RTIT_STATUS_BYTECNT_OFFSET 32 31562306a36Sopenharmony_ci#define RTIT_STATUS_BYTECNT (0x1ffffull << RTIT_STATUS_BYTECNT_OFFSET) 31662306a36Sopenharmony_ci#define MSR_IA32_RTIT_ADDR0_A 0x00000580 31762306a36Sopenharmony_ci#define MSR_IA32_RTIT_ADDR0_B 0x00000581 31862306a36Sopenharmony_ci#define MSR_IA32_RTIT_ADDR1_A 0x00000582 31962306a36Sopenharmony_ci#define MSR_IA32_RTIT_ADDR1_B 0x00000583 32062306a36Sopenharmony_ci#define MSR_IA32_RTIT_ADDR2_A 0x00000584 32162306a36Sopenharmony_ci#define MSR_IA32_RTIT_ADDR2_B 0x00000585 32262306a36Sopenharmony_ci#define MSR_IA32_RTIT_ADDR3_A 0x00000586 32362306a36Sopenharmony_ci#define MSR_IA32_RTIT_ADDR3_B 0x00000587 32462306a36Sopenharmony_ci#define MSR_IA32_RTIT_CR3_MATCH 0x00000572 32562306a36Sopenharmony_ci#define MSR_IA32_RTIT_OUTPUT_BASE 0x00000560 32662306a36Sopenharmony_ci#define MSR_IA32_RTIT_OUTPUT_MASK 0x00000561 32762306a36Sopenharmony_ci 32862306a36Sopenharmony_ci#define MSR_MTRRfix64K_00000 0x00000250 32962306a36Sopenharmony_ci#define MSR_MTRRfix16K_80000 0x00000258 33062306a36Sopenharmony_ci#define MSR_MTRRfix16K_A0000 0x00000259 33162306a36Sopenharmony_ci#define MSR_MTRRfix4K_C0000 0x00000268 33262306a36Sopenharmony_ci#define MSR_MTRRfix4K_C8000 0x00000269 33362306a36Sopenharmony_ci#define MSR_MTRRfix4K_D0000 0x0000026a 33462306a36Sopenharmony_ci#define MSR_MTRRfix4K_D8000 0x0000026b 33562306a36Sopenharmony_ci#define MSR_MTRRfix4K_E0000 0x0000026c 33662306a36Sopenharmony_ci#define MSR_MTRRfix4K_E8000 0x0000026d 33762306a36Sopenharmony_ci#define MSR_MTRRfix4K_F0000 0x0000026e 33862306a36Sopenharmony_ci#define MSR_MTRRfix4K_F8000 0x0000026f 33962306a36Sopenharmony_ci#define MSR_MTRRdefType 0x000002ff 34062306a36Sopenharmony_ci 34162306a36Sopenharmony_ci#define MSR_IA32_CR_PAT 0x00000277 34262306a36Sopenharmony_ci 34362306a36Sopenharmony_ci#define MSR_IA32_DEBUGCTLMSR 0x000001d9 34462306a36Sopenharmony_ci#define MSR_IA32_LASTBRANCHFROMIP 0x000001db 34562306a36Sopenharmony_ci#define MSR_IA32_LASTBRANCHTOIP 0x000001dc 34662306a36Sopenharmony_ci#define MSR_IA32_LASTINTFROMIP 0x000001dd 34762306a36Sopenharmony_ci#define MSR_IA32_LASTINTTOIP 0x000001de 34862306a36Sopenharmony_ci 34962306a36Sopenharmony_ci#define MSR_IA32_PASID 0x00000d93 35062306a36Sopenharmony_ci#define MSR_IA32_PASID_VALID BIT_ULL(31) 35162306a36Sopenharmony_ci 35262306a36Sopenharmony_ci/* DEBUGCTLMSR bits (others vary by model): */ 35362306a36Sopenharmony_ci#define DEBUGCTLMSR_LBR (1UL << 0) /* last branch recording */ 35462306a36Sopenharmony_ci#define DEBUGCTLMSR_BTF_SHIFT 1 35562306a36Sopenharmony_ci#define DEBUGCTLMSR_BTF (1UL << 1) /* single-step on branches */ 35662306a36Sopenharmony_ci#define DEBUGCTLMSR_BUS_LOCK_DETECT (1UL << 2) 35762306a36Sopenharmony_ci#define DEBUGCTLMSR_TR (1UL << 6) 35862306a36Sopenharmony_ci#define DEBUGCTLMSR_BTS (1UL << 7) 35962306a36Sopenharmony_ci#define DEBUGCTLMSR_BTINT (1UL << 8) 36062306a36Sopenharmony_ci#define DEBUGCTLMSR_BTS_OFF_OS (1UL << 9) 36162306a36Sopenharmony_ci#define DEBUGCTLMSR_BTS_OFF_USR (1UL << 10) 36262306a36Sopenharmony_ci#define DEBUGCTLMSR_FREEZE_LBRS_ON_PMI (1UL << 11) 36362306a36Sopenharmony_ci#define DEBUGCTLMSR_FREEZE_PERFMON_ON_PMI (1UL << 12) 36462306a36Sopenharmony_ci#define DEBUGCTLMSR_FREEZE_IN_SMM_BIT 14 36562306a36Sopenharmony_ci#define DEBUGCTLMSR_FREEZE_IN_SMM (1UL << DEBUGCTLMSR_FREEZE_IN_SMM_BIT) 36662306a36Sopenharmony_ci 36762306a36Sopenharmony_ci#define MSR_PEBS_FRONTEND 0x000003f7 36862306a36Sopenharmony_ci 36962306a36Sopenharmony_ci#define MSR_IA32_MC0_CTL 0x00000400 37062306a36Sopenharmony_ci#define MSR_IA32_MC0_STATUS 0x00000401 37162306a36Sopenharmony_ci#define MSR_IA32_MC0_ADDR 0x00000402 37262306a36Sopenharmony_ci#define MSR_IA32_MC0_MISC 0x00000403 37362306a36Sopenharmony_ci 37462306a36Sopenharmony_ci/* C-state Residency Counters */ 37562306a36Sopenharmony_ci#define MSR_PKG_C3_RESIDENCY 0x000003f8 37662306a36Sopenharmony_ci#define MSR_PKG_C6_RESIDENCY 0x000003f9 37762306a36Sopenharmony_ci#define MSR_ATOM_PKG_C6_RESIDENCY 0x000003fa 37862306a36Sopenharmony_ci#define MSR_PKG_C7_RESIDENCY 0x000003fa 37962306a36Sopenharmony_ci#define MSR_CORE_C3_RESIDENCY 0x000003fc 38062306a36Sopenharmony_ci#define MSR_CORE_C6_RESIDENCY 0x000003fd 38162306a36Sopenharmony_ci#define MSR_CORE_C7_RESIDENCY 0x000003fe 38262306a36Sopenharmony_ci#define MSR_KNL_CORE_C6_RESIDENCY 0x000003ff 38362306a36Sopenharmony_ci#define MSR_PKG_C2_RESIDENCY 0x0000060d 38462306a36Sopenharmony_ci#define MSR_PKG_C8_RESIDENCY 0x00000630 38562306a36Sopenharmony_ci#define MSR_PKG_C9_RESIDENCY 0x00000631 38662306a36Sopenharmony_ci#define MSR_PKG_C10_RESIDENCY 0x00000632 38762306a36Sopenharmony_ci 38862306a36Sopenharmony_ci/* Interrupt Response Limit */ 38962306a36Sopenharmony_ci#define MSR_PKGC3_IRTL 0x0000060a 39062306a36Sopenharmony_ci#define MSR_PKGC6_IRTL 0x0000060b 39162306a36Sopenharmony_ci#define MSR_PKGC7_IRTL 0x0000060c 39262306a36Sopenharmony_ci#define MSR_PKGC8_IRTL 0x00000633 39362306a36Sopenharmony_ci#define MSR_PKGC9_IRTL 0x00000634 39462306a36Sopenharmony_ci#define MSR_PKGC10_IRTL 0x00000635 39562306a36Sopenharmony_ci 39662306a36Sopenharmony_ci/* Run Time Average Power Limiting (RAPL) Interface */ 39762306a36Sopenharmony_ci 39862306a36Sopenharmony_ci#define MSR_VR_CURRENT_CONFIG 0x00000601 39962306a36Sopenharmony_ci#define MSR_RAPL_POWER_UNIT 0x00000606 40062306a36Sopenharmony_ci 40162306a36Sopenharmony_ci#define MSR_PKG_POWER_LIMIT 0x00000610 40262306a36Sopenharmony_ci#define MSR_PKG_ENERGY_STATUS 0x00000611 40362306a36Sopenharmony_ci#define MSR_PKG_PERF_STATUS 0x00000613 40462306a36Sopenharmony_ci#define MSR_PKG_POWER_INFO 0x00000614 40562306a36Sopenharmony_ci 40662306a36Sopenharmony_ci#define MSR_DRAM_POWER_LIMIT 0x00000618 40762306a36Sopenharmony_ci#define MSR_DRAM_ENERGY_STATUS 0x00000619 40862306a36Sopenharmony_ci#define MSR_DRAM_PERF_STATUS 0x0000061b 40962306a36Sopenharmony_ci#define MSR_DRAM_POWER_INFO 0x0000061c 41062306a36Sopenharmony_ci 41162306a36Sopenharmony_ci#define MSR_PP0_POWER_LIMIT 0x00000638 41262306a36Sopenharmony_ci#define MSR_PP0_ENERGY_STATUS 0x00000639 41362306a36Sopenharmony_ci#define MSR_PP0_POLICY 0x0000063a 41462306a36Sopenharmony_ci#define MSR_PP0_PERF_STATUS 0x0000063b 41562306a36Sopenharmony_ci 41662306a36Sopenharmony_ci#define MSR_PP1_POWER_LIMIT 0x00000640 41762306a36Sopenharmony_ci#define MSR_PP1_ENERGY_STATUS 0x00000641 41862306a36Sopenharmony_ci#define MSR_PP1_POLICY 0x00000642 41962306a36Sopenharmony_ci 42062306a36Sopenharmony_ci#define MSR_AMD_RAPL_POWER_UNIT 0xc0010299 42162306a36Sopenharmony_ci#define MSR_AMD_CORE_ENERGY_STATUS 0xc001029a 42262306a36Sopenharmony_ci#define MSR_AMD_PKG_ENERGY_STATUS 0xc001029b 42362306a36Sopenharmony_ci 42462306a36Sopenharmony_ci/* Config TDP MSRs */ 42562306a36Sopenharmony_ci#define MSR_CONFIG_TDP_NOMINAL 0x00000648 42662306a36Sopenharmony_ci#define MSR_CONFIG_TDP_LEVEL_1 0x00000649 42762306a36Sopenharmony_ci#define MSR_CONFIG_TDP_LEVEL_2 0x0000064A 42862306a36Sopenharmony_ci#define MSR_CONFIG_TDP_CONTROL 0x0000064B 42962306a36Sopenharmony_ci#define MSR_TURBO_ACTIVATION_RATIO 0x0000064C 43062306a36Sopenharmony_ci 43162306a36Sopenharmony_ci#define MSR_PLATFORM_ENERGY_STATUS 0x0000064D 43262306a36Sopenharmony_ci#define MSR_SECONDARY_TURBO_RATIO_LIMIT 0x00000650 43362306a36Sopenharmony_ci 43462306a36Sopenharmony_ci#define MSR_PKG_WEIGHTED_CORE_C0_RES 0x00000658 43562306a36Sopenharmony_ci#define MSR_PKG_ANY_CORE_C0_RES 0x00000659 43662306a36Sopenharmony_ci#define MSR_PKG_ANY_GFXE_C0_RES 0x0000065A 43762306a36Sopenharmony_ci#define MSR_PKG_BOTH_CORE_GFXE_C0_RES 0x0000065B 43862306a36Sopenharmony_ci 43962306a36Sopenharmony_ci#define MSR_CORE_C1_RES 0x00000660 44062306a36Sopenharmony_ci#define MSR_MODULE_C6_RES_MS 0x00000664 44162306a36Sopenharmony_ci 44262306a36Sopenharmony_ci#define MSR_CC6_DEMOTION_POLICY_CONFIG 0x00000668 44362306a36Sopenharmony_ci#define MSR_MC6_DEMOTION_POLICY_CONFIG 0x00000669 44462306a36Sopenharmony_ci 44562306a36Sopenharmony_ci#define MSR_ATOM_CORE_RATIOS 0x0000066a 44662306a36Sopenharmony_ci#define MSR_ATOM_CORE_VIDS 0x0000066b 44762306a36Sopenharmony_ci#define MSR_ATOM_CORE_TURBO_RATIOS 0x0000066c 44862306a36Sopenharmony_ci#define MSR_ATOM_CORE_TURBO_VIDS 0x0000066d 44962306a36Sopenharmony_ci 45062306a36Sopenharmony_ci#define MSR_CORE_PERF_LIMIT_REASONS 0x00000690 45162306a36Sopenharmony_ci#define MSR_GFX_PERF_LIMIT_REASONS 0x000006B0 45262306a36Sopenharmony_ci#define MSR_RING_PERF_LIMIT_REASONS 0x000006B1 45362306a36Sopenharmony_ci 45462306a36Sopenharmony_ci/* Control-flow Enforcement Technology MSRs */ 45562306a36Sopenharmony_ci#define MSR_IA32_U_CET 0x000006a0 /* user mode cet */ 45662306a36Sopenharmony_ci#define MSR_IA32_S_CET 0x000006a2 /* kernel mode cet */ 45762306a36Sopenharmony_ci#define CET_SHSTK_EN BIT_ULL(0) 45862306a36Sopenharmony_ci#define CET_WRSS_EN BIT_ULL(1) 45962306a36Sopenharmony_ci#define CET_ENDBR_EN BIT_ULL(2) 46062306a36Sopenharmony_ci#define CET_LEG_IW_EN BIT_ULL(3) 46162306a36Sopenharmony_ci#define CET_NO_TRACK_EN BIT_ULL(4) 46262306a36Sopenharmony_ci#define CET_SUPPRESS_DISABLE BIT_ULL(5) 46362306a36Sopenharmony_ci#define CET_RESERVED (BIT_ULL(6) | BIT_ULL(7) | BIT_ULL(8) | BIT_ULL(9)) 46462306a36Sopenharmony_ci#define CET_SUPPRESS BIT_ULL(10) 46562306a36Sopenharmony_ci#define CET_WAIT_ENDBR BIT_ULL(11) 46662306a36Sopenharmony_ci 46762306a36Sopenharmony_ci#define MSR_IA32_PL0_SSP 0x000006a4 /* ring-0 shadow stack pointer */ 46862306a36Sopenharmony_ci#define MSR_IA32_PL1_SSP 0x000006a5 /* ring-1 shadow stack pointer */ 46962306a36Sopenharmony_ci#define MSR_IA32_PL2_SSP 0x000006a6 /* ring-2 shadow stack pointer */ 47062306a36Sopenharmony_ci#define MSR_IA32_PL3_SSP 0x000006a7 /* ring-3 shadow stack pointer */ 47162306a36Sopenharmony_ci#define MSR_IA32_INT_SSP_TAB 0x000006a8 /* exception shadow stack table */ 47262306a36Sopenharmony_ci 47362306a36Sopenharmony_ci/* Hardware P state interface */ 47462306a36Sopenharmony_ci#define MSR_PPERF 0x0000064e 47562306a36Sopenharmony_ci#define MSR_PERF_LIMIT_REASONS 0x0000064f 47662306a36Sopenharmony_ci#define MSR_PM_ENABLE 0x00000770 47762306a36Sopenharmony_ci#define MSR_HWP_CAPABILITIES 0x00000771 47862306a36Sopenharmony_ci#define MSR_HWP_REQUEST_PKG 0x00000772 47962306a36Sopenharmony_ci#define MSR_HWP_INTERRUPT 0x00000773 48062306a36Sopenharmony_ci#define MSR_HWP_REQUEST 0x00000774 48162306a36Sopenharmony_ci#define MSR_HWP_STATUS 0x00000777 48262306a36Sopenharmony_ci 48362306a36Sopenharmony_ci/* CPUID.6.EAX */ 48462306a36Sopenharmony_ci#define HWP_BASE_BIT (1<<7) 48562306a36Sopenharmony_ci#define HWP_NOTIFICATIONS_BIT (1<<8) 48662306a36Sopenharmony_ci#define HWP_ACTIVITY_WINDOW_BIT (1<<9) 48762306a36Sopenharmony_ci#define HWP_ENERGY_PERF_PREFERENCE_BIT (1<<10) 48862306a36Sopenharmony_ci#define HWP_PACKAGE_LEVEL_REQUEST_BIT (1<<11) 48962306a36Sopenharmony_ci 49062306a36Sopenharmony_ci/* IA32_HWP_CAPABILITIES */ 49162306a36Sopenharmony_ci#define HWP_HIGHEST_PERF(x) (((x) >> 0) & 0xff) 49262306a36Sopenharmony_ci#define HWP_GUARANTEED_PERF(x) (((x) >> 8) & 0xff) 49362306a36Sopenharmony_ci#define HWP_MOSTEFFICIENT_PERF(x) (((x) >> 16) & 0xff) 49462306a36Sopenharmony_ci#define HWP_LOWEST_PERF(x) (((x) >> 24) & 0xff) 49562306a36Sopenharmony_ci 49662306a36Sopenharmony_ci/* IA32_HWP_REQUEST */ 49762306a36Sopenharmony_ci#define HWP_MIN_PERF(x) (x & 0xff) 49862306a36Sopenharmony_ci#define HWP_MAX_PERF(x) ((x & 0xff) << 8) 49962306a36Sopenharmony_ci#define HWP_DESIRED_PERF(x) ((x & 0xff) << 16) 50062306a36Sopenharmony_ci#define HWP_ENERGY_PERF_PREFERENCE(x) (((unsigned long long) x & 0xff) << 24) 50162306a36Sopenharmony_ci#define HWP_EPP_PERFORMANCE 0x00 50262306a36Sopenharmony_ci#define HWP_EPP_BALANCE_PERFORMANCE 0x80 50362306a36Sopenharmony_ci#define HWP_EPP_BALANCE_POWERSAVE 0xC0 50462306a36Sopenharmony_ci#define HWP_EPP_POWERSAVE 0xFF 50562306a36Sopenharmony_ci#define HWP_ACTIVITY_WINDOW(x) ((unsigned long long)(x & 0xff3) << 32) 50662306a36Sopenharmony_ci#define HWP_PACKAGE_CONTROL(x) ((unsigned long long)(x & 0x1) << 42) 50762306a36Sopenharmony_ci 50862306a36Sopenharmony_ci/* IA32_HWP_STATUS */ 50962306a36Sopenharmony_ci#define HWP_GUARANTEED_CHANGE(x) (x & 0x1) 51062306a36Sopenharmony_ci#define HWP_EXCURSION_TO_MINIMUM(x) (x & 0x4) 51162306a36Sopenharmony_ci 51262306a36Sopenharmony_ci/* IA32_HWP_INTERRUPT */ 51362306a36Sopenharmony_ci#define HWP_CHANGE_TO_GUARANTEED_INT(x) (x & 0x1) 51462306a36Sopenharmony_ci#define HWP_EXCURSION_TO_MINIMUM_INT(x) (x & 0x2) 51562306a36Sopenharmony_ci 51662306a36Sopenharmony_ci#define MSR_AMD64_MC0_MASK 0xc0010044 51762306a36Sopenharmony_ci 51862306a36Sopenharmony_ci#define MSR_IA32_MCx_CTL(x) (MSR_IA32_MC0_CTL + 4*(x)) 51962306a36Sopenharmony_ci#define MSR_IA32_MCx_STATUS(x) (MSR_IA32_MC0_STATUS + 4*(x)) 52062306a36Sopenharmony_ci#define MSR_IA32_MCx_ADDR(x) (MSR_IA32_MC0_ADDR + 4*(x)) 52162306a36Sopenharmony_ci#define MSR_IA32_MCx_MISC(x) (MSR_IA32_MC0_MISC + 4*(x)) 52262306a36Sopenharmony_ci 52362306a36Sopenharmony_ci#define MSR_AMD64_MCx_MASK(x) (MSR_AMD64_MC0_MASK + (x)) 52462306a36Sopenharmony_ci 52562306a36Sopenharmony_ci/* These are consecutive and not in the normal 4er MCE bank block */ 52662306a36Sopenharmony_ci#define MSR_IA32_MC0_CTL2 0x00000280 52762306a36Sopenharmony_ci#define MSR_IA32_MCx_CTL2(x) (MSR_IA32_MC0_CTL2 + (x)) 52862306a36Sopenharmony_ci 52962306a36Sopenharmony_ci#define MSR_P6_PERFCTR0 0x000000c1 53062306a36Sopenharmony_ci#define MSR_P6_PERFCTR1 0x000000c2 53162306a36Sopenharmony_ci#define MSR_P6_EVNTSEL0 0x00000186 53262306a36Sopenharmony_ci#define MSR_P6_EVNTSEL1 0x00000187 53362306a36Sopenharmony_ci 53462306a36Sopenharmony_ci#define MSR_KNC_PERFCTR0 0x00000020 53562306a36Sopenharmony_ci#define MSR_KNC_PERFCTR1 0x00000021 53662306a36Sopenharmony_ci#define MSR_KNC_EVNTSEL0 0x00000028 53762306a36Sopenharmony_ci#define MSR_KNC_EVNTSEL1 0x00000029 53862306a36Sopenharmony_ci 53962306a36Sopenharmony_ci/* Alternative perfctr range with full access. */ 54062306a36Sopenharmony_ci#define MSR_IA32_PMC0 0x000004c1 54162306a36Sopenharmony_ci 54262306a36Sopenharmony_ci/* Auto-reload via MSR instead of DS area */ 54362306a36Sopenharmony_ci#define MSR_RELOAD_PMC0 0x000014c1 54462306a36Sopenharmony_ci#define MSR_RELOAD_FIXED_CTR0 0x00001309 54562306a36Sopenharmony_ci 54662306a36Sopenharmony_ci/* 54762306a36Sopenharmony_ci * AMD64 MSRs. Not complete. See the architecture manual for a more 54862306a36Sopenharmony_ci * complete list. 54962306a36Sopenharmony_ci */ 55062306a36Sopenharmony_ci#define MSR_AMD64_PATCH_LEVEL 0x0000008b 55162306a36Sopenharmony_ci#define MSR_AMD64_TSC_RATIO 0xc0000104 55262306a36Sopenharmony_ci#define MSR_AMD64_NB_CFG 0xc001001f 55362306a36Sopenharmony_ci#define MSR_AMD64_PATCH_LOADER 0xc0010020 55462306a36Sopenharmony_ci#define MSR_AMD_PERF_CTL 0xc0010062 55562306a36Sopenharmony_ci#define MSR_AMD_PERF_STATUS 0xc0010063 55662306a36Sopenharmony_ci#define MSR_AMD_PSTATE_DEF_BASE 0xc0010064 55762306a36Sopenharmony_ci#define MSR_AMD64_OSVW_ID_LENGTH 0xc0010140 55862306a36Sopenharmony_ci#define MSR_AMD64_OSVW_STATUS 0xc0010141 55962306a36Sopenharmony_ci#define MSR_AMD_PPIN_CTL 0xc00102f0 56062306a36Sopenharmony_ci#define MSR_AMD_PPIN 0xc00102f1 56162306a36Sopenharmony_ci#define MSR_AMD64_CPUID_FN_1 0xc0011004 56262306a36Sopenharmony_ci#define MSR_AMD64_LS_CFG 0xc0011020 56362306a36Sopenharmony_ci#define MSR_AMD64_DC_CFG 0xc0011022 56462306a36Sopenharmony_ci#define MSR_AMD64_TW_CFG 0xc0011023 56562306a36Sopenharmony_ci 56662306a36Sopenharmony_ci#define MSR_AMD64_DE_CFG 0xc0011029 56762306a36Sopenharmony_ci#define MSR_AMD64_DE_CFG_LFENCE_SERIALIZE_BIT 1 56862306a36Sopenharmony_ci#define MSR_AMD64_DE_CFG_LFENCE_SERIALIZE BIT_ULL(MSR_AMD64_DE_CFG_LFENCE_SERIALIZE_BIT) 56962306a36Sopenharmony_ci#define MSR_AMD64_DE_CFG_ZEN2_FP_BACKUP_FIX_BIT 9 57062306a36Sopenharmony_ci 57162306a36Sopenharmony_ci#define MSR_AMD64_BU_CFG2 0xc001102a 57262306a36Sopenharmony_ci#define MSR_AMD64_IBSFETCHCTL 0xc0011030 57362306a36Sopenharmony_ci#define MSR_AMD64_IBSFETCHLINAD 0xc0011031 57462306a36Sopenharmony_ci#define MSR_AMD64_IBSFETCHPHYSAD 0xc0011032 57562306a36Sopenharmony_ci#define MSR_AMD64_IBSFETCH_REG_COUNT 3 57662306a36Sopenharmony_ci#define MSR_AMD64_IBSFETCH_REG_MASK ((1UL<<MSR_AMD64_IBSFETCH_REG_COUNT)-1) 57762306a36Sopenharmony_ci#define MSR_AMD64_IBSOPCTL 0xc0011033 57862306a36Sopenharmony_ci#define MSR_AMD64_IBSOPRIP 0xc0011034 57962306a36Sopenharmony_ci#define MSR_AMD64_IBSOPDATA 0xc0011035 58062306a36Sopenharmony_ci#define MSR_AMD64_IBSOPDATA2 0xc0011036 58162306a36Sopenharmony_ci#define MSR_AMD64_IBSOPDATA3 0xc0011037 58262306a36Sopenharmony_ci#define MSR_AMD64_IBSDCLINAD 0xc0011038 58362306a36Sopenharmony_ci#define MSR_AMD64_IBSDCPHYSAD 0xc0011039 58462306a36Sopenharmony_ci#define MSR_AMD64_IBSOP_REG_COUNT 7 58562306a36Sopenharmony_ci#define MSR_AMD64_IBSOP_REG_MASK ((1UL<<MSR_AMD64_IBSOP_REG_COUNT)-1) 58662306a36Sopenharmony_ci#define MSR_AMD64_IBSCTL 0xc001103a 58762306a36Sopenharmony_ci#define MSR_AMD64_IBSBRTARGET 0xc001103b 58862306a36Sopenharmony_ci#define MSR_AMD64_ICIBSEXTDCTL 0xc001103c 58962306a36Sopenharmony_ci#define MSR_AMD64_IBSOPDATA4 0xc001103d 59062306a36Sopenharmony_ci#define MSR_AMD64_IBS_REG_COUNT_MAX 8 /* includes MSR_AMD64_IBSBRTARGET */ 59162306a36Sopenharmony_ci#define MSR_AMD64_SVM_AVIC_DOORBELL 0xc001011b 59262306a36Sopenharmony_ci#define MSR_AMD64_VM_PAGE_FLUSH 0xc001011e 59362306a36Sopenharmony_ci#define MSR_AMD64_SEV_ES_GHCB 0xc0010130 59462306a36Sopenharmony_ci#define MSR_AMD64_SEV 0xc0010131 59562306a36Sopenharmony_ci#define MSR_AMD64_SEV_ENABLED_BIT 0 59662306a36Sopenharmony_ci#define MSR_AMD64_SEV_ES_ENABLED_BIT 1 59762306a36Sopenharmony_ci#define MSR_AMD64_SEV_SNP_ENABLED_BIT 2 59862306a36Sopenharmony_ci#define MSR_AMD64_SEV_ENABLED BIT_ULL(MSR_AMD64_SEV_ENABLED_BIT) 59962306a36Sopenharmony_ci#define MSR_AMD64_SEV_ES_ENABLED BIT_ULL(MSR_AMD64_SEV_ES_ENABLED_BIT) 60062306a36Sopenharmony_ci#define MSR_AMD64_SEV_SNP_ENABLED BIT_ULL(MSR_AMD64_SEV_SNP_ENABLED_BIT) 60162306a36Sopenharmony_ci 60262306a36Sopenharmony_ci/* SNP feature bits enabled by the hypervisor */ 60362306a36Sopenharmony_ci#define MSR_AMD64_SNP_VTOM BIT_ULL(3) 60462306a36Sopenharmony_ci#define MSR_AMD64_SNP_REFLECT_VC BIT_ULL(4) 60562306a36Sopenharmony_ci#define MSR_AMD64_SNP_RESTRICTED_INJ BIT_ULL(5) 60662306a36Sopenharmony_ci#define MSR_AMD64_SNP_ALT_INJ BIT_ULL(6) 60762306a36Sopenharmony_ci#define MSR_AMD64_SNP_DEBUG_SWAP BIT_ULL(7) 60862306a36Sopenharmony_ci#define MSR_AMD64_SNP_PREVENT_HOST_IBS BIT_ULL(8) 60962306a36Sopenharmony_ci#define MSR_AMD64_SNP_BTB_ISOLATION BIT_ULL(9) 61062306a36Sopenharmony_ci#define MSR_AMD64_SNP_VMPL_SSS BIT_ULL(10) 61162306a36Sopenharmony_ci#define MSR_AMD64_SNP_SECURE_TSC BIT_ULL(11) 61262306a36Sopenharmony_ci#define MSR_AMD64_SNP_VMGEXIT_PARAM BIT_ULL(12) 61362306a36Sopenharmony_ci#define MSR_AMD64_SNP_IBS_VIRT BIT_ULL(14) 61462306a36Sopenharmony_ci#define MSR_AMD64_SNP_VMSA_REG_PROTECTION BIT_ULL(16) 61562306a36Sopenharmony_ci#define MSR_AMD64_SNP_SMT_PROTECTION BIT_ULL(17) 61662306a36Sopenharmony_ci 61762306a36Sopenharmony_ci/* SNP feature bits reserved for future use. */ 61862306a36Sopenharmony_ci#define MSR_AMD64_SNP_RESERVED_BIT13 BIT_ULL(13) 61962306a36Sopenharmony_ci#define MSR_AMD64_SNP_RESERVED_BIT15 BIT_ULL(15) 62062306a36Sopenharmony_ci#define MSR_AMD64_SNP_RESERVED_MASK GENMASK_ULL(63, 18) 62162306a36Sopenharmony_ci 62262306a36Sopenharmony_ci#define MSR_AMD64_VIRT_SPEC_CTRL 0xc001011f 62362306a36Sopenharmony_ci 62462306a36Sopenharmony_ci/* AMD Collaborative Processor Performance Control MSRs */ 62562306a36Sopenharmony_ci#define MSR_AMD_CPPC_CAP1 0xc00102b0 62662306a36Sopenharmony_ci#define MSR_AMD_CPPC_ENABLE 0xc00102b1 62762306a36Sopenharmony_ci#define MSR_AMD_CPPC_CAP2 0xc00102b2 62862306a36Sopenharmony_ci#define MSR_AMD_CPPC_REQ 0xc00102b3 62962306a36Sopenharmony_ci#define MSR_AMD_CPPC_STATUS 0xc00102b4 63062306a36Sopenharmony_ci 63162306a36Sopenharmony_ci#define AMD_CPPC_LOWEST_PERF(x) (((x) >> 0) & 0xff) 63262306a36Sopenharmony_ci#define AMD_CPPC_LOWNONLIN_PERF(x) (((x) >> 8) & 0xff) 63362306a36Sopenharmony_ci#define AMD_CPPC_NOMINAL_PERF(x) (((x) >> 16) & 0xff) 63462306a36Sopenharmony_ci#define AMD_CPPC_HIGHEST_PERF(x) (((x) >> 24) & 0xff) 63562306a36Sopenharmony_ci 63662306a36Sopenharmony_ci#define AMD_CPPC_MAX_PERF(x) (((x) & 0xff) << 0) 63762306a36Sopenharmony_ci#define AMD_CPPC_MIN_PERF(x) (((x) & 0xff) << 8) 63862306a36Sopenharmony_ci#define AMD_CPPC_DES_PERF(x) (((x) & 0xff) << 16) 63962306a36Sopenharmony_ci#define AMD_CPPC_ENERGY_PERF_PREF(x) (((x) & 0xff) << 24) 64062306a36Sopenharmony_ci 64162306a36Sopenharmony_ci/* AMD Performance Counter Global Status and Control MSRs */ 64262306a36Sopenharmony_ci#define MSR_AMD64_PERF_CNTR_GLOBAL_STATUS 0xc0000300 64362306a36Sopenharmony_ci#define MSR_AMD64_PERF_CNTR_GLOBAL_CTL 0xc0000301 64462306a36Sopenharmony_ci#define MSR_AMD64_PERF_CNTR_GLOBAL_STATUS_CLR 0xc0000302 64562306a36Sopenharmony_ci 64662306a36Sopenharmony_ci/* AMD Last Branch Record MSRs */ 64762306a36Sopenharmony_ci#define MSR_AMD64_LBR_SELECT 0xc000010e 64862306a36Sopenharmony_ci 64962306a36Sopenharmony_ci/* Zen4 */ 65062306a36Sopenharmony_ci#define MSR_ZEN4_BP_CFG 0xc001102e 65162306a36Sopenharmony_ci#define MSR_ZEN4_BP_CFG_SHARED_BTB_FIX_BIT 5 65262306a36Sopenharmony_ci 65362306a36Sopenharmony_ci/* Zen 2 */ 65462306a36Sopenharmony_ci#define MSR_ZEN2_SPECTRAL_CHICKEN 0xc00110e3 65562306a36Sopenharmony_ci#define MSR_ZEN2_SPECTRAL_CHICKEN_BIT BIT_ULL(1) 65662306a36Sopenharmony_ci 65762306a36Sopenharmony_ci/* Fam 17h MSRs */ 65862306a36Sopenharmony_ci#define MSR_F17H_IRPERF 0xc00000e9 65962306a36Sopenharmony_ci 66062306a36Sopenharmony_ci/* Fam 16h MSRs */ 66162306a36Sopenharmony_ci#define MSR_F16H_L2I_PERF_CTL 0xc0010230 66262306a36Sopenharmony_ci#define MSR_F16H_L2I_PERF_CTR 0xc0010231 66362306a36Sopenharmony_ci#define MSR_F16H_DR1_ADDR_MASK 0xc0011019 66462306a36Sopenharmony_ci#define MSR_F16H_DR2_ADDR_MASK 0xc001101a 66562306a36Sopenharmony_ci#define MSR_F16H_DR3_ADDR_MASK 0xc001101b 66662306a36Sopenharmony_ci#define MSR_F16H_DR0_ADDR_MASK 0xc0011027 66762306a36Sopenharmony_ci 66862306a36Sopenharmony_ci/* Fam 15h MSRs */ 66962306a36Sopenharmony_ci#define MSR_F15H_CU_PWR_ACCUMULATOR 0xc001007a 67062306a36Sopenharmony_ci#define MSR_F15H_CU_MAX_PWR_ACCUMULATOR 0xc001007b 67162306a36Sopenharmony_ci#define MSR_F15H_PERF_CTL 0xc0010200 67262306a36Sopenharmony_ci#define MSR_F15H_PERF_CTL0 MSR_F15H_PERF_CTL 67362306a36Sopenharmony_ci#define MSR_F15H_PERF_CTL1 (MSR_F15H_PERF_CTL + 2) 67462306a36Sopenharmony_ci#define MSR_F15H_PERF_CTL2 (MSR_F15H_PERF_CTL + 4) 67562306a36Sopenharmony_ci#define MSR_F15H_PERF_CTL3 (MSR_F15H_PERF_CTL + 6) 67662306a36Sopenharmony_ci#define MSR_F15H_PERF_CTL4 (MSR_F15H_PERF_CTL + 8) 67762306a36Sopenharmony_ci#define MSR_F15H_PERF_CTL5 (MSR_F15H_PERF_CTL + 10) 67862306a36Sopenharmony_ci 67962306a36Sopenharmony_ci#define MSR_F15H_PERF_CTR 0xc0010201 68062306a36Sopenharmony_ci#define MSR_F15H_PERF_CTR0 MSR_F15H_PERF_CTR 68162306a36Sopenharmony_ci#define MSR_F15H_PERF_CTR1 (MSR_F15H_PERF_CTR + 2) 68262306a36Sopenharmony_ci#define MSR_F15H_PERF_CTR2 (MSR_F15H_PERF_CTR + 4) 68362306a36Sopenharmony_ci#define MSR_F15H_PERF_CTR3 (MSR_F15H_PERF_CTR + 6) 68462306a36Sopenharmony_ci#define MSR_F15H_PERF_CTR4 (MSR_F15H_PERF_CTR + 8) 68562306a36Sopenharmony_ci#define MSR_F15H_PERF_CTR5 (MSR_F15H_PERF_CTR + 10) 68662306a36Sopenharmony_ci 68762306a36Sopenharmony_ci#define MSR_F15H_NB_PERF_CTL 0xc0010240 68862306a36Sopenharmony_ci#define MSR_F15H_NB_PERF_CTR 0xc0010241 68962306a36Sopenharmony_ci#define MSR_F15H_PTSC 0xc0010280 69062306a36Sopenharmony_ci#define MSR_F15H_IC_CFG 0xc0011021 69162306a36Sopenharmony_ci#define MSR_F15H_EX_CFG 0xc001102c 69262306a36Sopenharmony_ci 69362306a36Sopenharmony_ci/* Fam 10h MSRs */ 69462306a36Sopenharmony_ci#define MSR_FAM10H_MMIO_CONF_BASE 0xc0010058 69562306a36Sopenharmony_ci#define FAM10H_MMIO_CONF_ENABLE (1<<0) 69662306a36Sopenharmony_ci#define FAM10H_MMIO_CONF_BUSRANGE_MASK 0xf 69762306a36Sopenharmony_ci#define FAM10H_MMIO_CONF_BUSRANGE_SHIFT 2 69862306a36Sopenharmony_ci#define FAM10H_MMIO_CONF_BASE_MASK 0xfffffffULL 69962306a36Sopenharmony_ci#define FAM10H_MMIO_CONF_BASE_SHIFT 20 70062306a36Sopenharmony_ci#define MSR_FAM10H_NODE_ID 0xc001100c 70162306a36Sopenharmony_ci 70262306a36Sopenharmony_ci/* K8 MSRs */ 70362306a36Sopenharmony_ci#define MSR_K8_TOP_MEM1 0xc001001a 70462306a36Sopenharmony_ci#define MSR_K8_TOP_MEM2 0xc001001d 70562306a36Sopenharmony_ci#define MSR_AMD64_SYSCFG 0xc0010010 70662306a36Sopenharmony_ci#define MSR_AMD64_SYSCFG_MEM_ENCRYPT_BIT 23 70762306a36Sopenharmony_ci#define MSR_AMD64_SYSCFG_MEM_ENCRYPT BIT_ULL(MSR_AMD64_SYSCFG_MEM_ENCRYPT_BIT) 70862306a36Sopenharmony_ci#define MSR_K8_INT_PENDING_MSG 0xc0010055 70962306a36Sopenharmony_ci/* C1E active bits in int pending message */ 71062306a36Sopenharmony_ci#define K8_INTP_C1E_ACTIVE_MASK 0x18000000 71162306a36Sopenharmony_ci#define MSR_K8_TSEG_ADDR 0xc0010112 71262306a36Sopenharmony_ci#define MSR_K8_TSEG_MASK 0xc0010113 71362306a36Sopenharmony_ci#define K8_MTRRFIXRANGE_DRAM_ENABLE 0x00040000 /* MtrrFixDramEn bit */ 71462306a36Sopenharmony_ci#define K8_MTRRFIXRANGE_DRAM_MODIFY 0x00080000 /* MtrrFixDramModEn bit */ 71562306a36Sopenharmony_ci#define K8_MTRR_RDMEM_WRMEM_MASK 0x18181818 /* Mask: RdMem|WrMem */ 71662306a36Sopenharmony_ci 71762306a36Sopenharmony_ci/* K7 MSRs */ 71862306a36Sopenharmony_ci#define MSR_K7_EVNTSEL0 0xc0010000 71962306a36Sopenharmony_ci#define MSR_K7_PERFCTR0 0xc0010004 72062306a36Sopenharmony_ci#define MSR_K7_EVNTSEL1 0xc0010001 72162306a36Sopenharmony_ci#define MSR_K7_PERFCTR1 0xc0010005 72262306a36Sopenharmony_ci#define MSR_K7_EVNTSEL2 0xc0010002 72362306a36Sopenharmony_ci#define MSR_K7_PERFCTR2 0xc0010006 72462306a36Sopenharmony_ci#define MSR_K7_EVNTSEL3 0xc0010003 72562306a36Sopenharmony_ci#define MSR_K7_PERFCTR3 0xc0010007 72662306a36Sopenharmony_ci#define MSR_K7_CLK_CTL 0xc001001b 72762306a36Sopenharmony_ci#define MSR_K7_HWCR 0xc0010015 72862306a36Sopenharmony_ci#define MSR_K7_HWCR_SMMLOCK_BIT 0 72962306a36Sopenharmony_ci#define MSR_K7_HWCR_SMMLOCK BIT_ULL(MSR_K7_HWCR_SMMLOCK_BIT) 73062306a36Sopenharmony_ci#define MSR_K7_HWCR_IRPERF_EN_BIT 30 73162306a36Sopenharmony_ci#define MSR_K7_HWCR_IRPERF_EN BIT_ULL(MSR_K7_HWCR_IRPERF_EN_BIT) 73262306a36Sopenharmony_ci#define MSR_K7_FID_VID_CTL 0xc0010041 73362306a36Sopenharmony_ci#define MSR_K7_FID_VID_STATUS 0xc0010042 73462306a36Sopenharmony_ci 73562306a36Sopenharmony_ci/* K6 MSRs */ 73662306a36Sopenharmony_ci#define MSR_K6_WHCR 0xc0000082 73762306a36Sopenharmony_ci#define MSR_K6_UWCCR 0xc0000085 73862306a36Sopenharmony_ci#define MSR_K6_EPMR 0xc0000086 73962306a36Sopenharmony_ci#define MSR_K6_PSOR 0xc0000087 74062306a36Sopenharmony_ci#define MSR_K6_PFIR 0xc0000088 74162306a36Sopenharmony_ci 74262306a36Sopenharmony_ci/* Centaur-Hauls/IDT defined MSRs. */ 74362306a36Sopenharmony_ci#define MSR_IDT_FCR1 0x00000107 74462306a36Sopenharmony_ci#define MSR_IDT_FCR2 0x00000108 74562306a36Sopenharmony_ci#define MSR_IDT_FCR3 0x00000109 74662306a36Sopenharmony_ci#define MSR_IDT_FCR4 0x0000010a 74762306a36Sopenharmony_ci 74862306a36Sopenharmony_ci#define MSR_IDT_MCR0 0x00000110 74962306a36Sopenharmony_ci#define MSR_IDT_MCR1 0x00000111 75062306a36Sopenharmony_ci#define MSR_IDT_MCR2 0x00000112 75162306a36Sopenharmony_ci#define MSR_IDT_MCR3 0x00000113 75262306a36Sopenharmony_ci#define MSR_IDT_MCR4 0x00000114 75362306a36Sopenharmony_ci#define MSR_IDT_MCR5 0x00000115 75462306a36Sopenharmony_ci#define MSR_IDT_MCR6 0x00000116 75562306a36Sopenharmony_ci#define MSR_IDT_MCR7 0x00000117 75662306a36Sopenharmony_ci#define MSR_IDT_MCR_CTRL 0x00000120 75762306a36Sopenharmony_ci 75862306a36Sopenharmony_ci/* VIA Cyrix defined MSRs*/ 75962306a36Sopenharmony_ci#define MSR_VIA_FCR 0x00001107 76062306a36Sopenharmony_ci#define MSR_VIA_LONGHAUL 0x0000110a 76162306a36Sopenharmony_ci#define MSR_VIA_RNG 0x0000110b 76262306a36Sopenharmony_ci#define MSR_VIA_BCR2 0x00001147 76362306a36Sopenharmony_ci 76462306a36Sopenharmony_ci/* Transmeta defined MSRs */ 76562306a36Sopenharmony_ci#define MSR_TMTA_LONGRUN_CTRL 0x80868010 76662306a36Sopenharmony_ci#define MSR_TMTA_LONGRUN_FLAGS 0x80868011 76762306a36Sopenharmony_ci#define MSR_TMTA_LRTI_READOUT 0x80868018 76862306a36Sopenharmony_ci#define MSR_TMTA_LRTI_VOLT_MHZ 0x8086801a 76962306a36Sopenharmony_ci 77062306a36Sopenharmony_ci/* Intel defined MSRs. */ 77162306a36Sopenharmony_ci#define MSR_IA32_P5_MC_ADDR 0x00000000 77262306a36Sopenharmony_ci#define MSR_IA32_P5_MC_TYPE 0x00000001 77362306a36Sopenharmony_ci#define MSR_IA32_TSC 0x00000010 77462306a36Sopenharmony_ci#define MSR_IA32_PLATFORM_ID 0x00000017 77562306a36Sopenharmony_ci#define MSR_IA32_EBL_CR_POWERON 0x0000002a 77662306a36Sopenharmony_ci#define MSR_EBC_FREQUENCY_ID 0x0000002c 77762306a36Sopenharmony_ci#define MSR_SMI_COUNT 0x00000034 77862306a36Sopenharmony_ci 77962306a36Sopenharmony_ci/* Referred to as IA32_FEATURE_CONTROL in Intel's SDM. */ 78062306a36Sopenharmony_ci#define MSR_IA32_FEAT_CTL 0x0000003a 78162306a36Sopenharmony_ci#define FEAT_CTL_LOCKED BIT(0) 78262306a36Sopenharmony_ci#define FEAT_CTL_VMX_ENABLED_INSIDE_SMX BIT(1) 78362306a36Sopenharmony_ci#define FEAT_CTL_VMX_ENABLED_OUTSIDE_SMX BIT(2) 78462306a36Sopenharmony_ci#define FEAT_CTL_SGX_LC_ENABLED BIT(17) 78562306a36Sopenharmony_ci#define FEAT_CTL_SGX_ENABLED BIT(18) 78662306a36Sopenharmony_ci#define FEAT_CTL_LMCE_ENABLED BIT(20) 78762306a36Sopenharmony_ci 78862306a36Sopenharmony_ci#define MSR_IA32_TSC_ADJUST 0x0000003b 78962306a36Sopenharmony_ci#define MSR_IA32_BNDCFGS 0x00000d90 79062306a36Sopenharmony_ci 79162306a36Sopenharmony_ci#define MSR_IA32_BNDCFGS_RSVD 0x00000ffc 79262306a36Sopenharmony_ci 79362306a36Sopenharmony_ci#define MSR_IA32_XFD 0x000001c4 79462306a36Sopenharmony_ci#define MSR_IA32_XFD_ERR 0x000001c5 79562306a36Sopenharmony_ci#define MSR_IA32_XSS 0x00000da0 79662306a36Sopenharmony_ci 79762306a36Sopenharmony_ci#define MSR_IA32_APICBASE 0x0000001b 79862306a36Sopenharmony_ci#define MSR_IA32_APICBASE_BSP (1<<8) 79962306a36Sopenharmony_ci#define MSR_IA32_APICBASE_ENABLE (1<<11) 80062306a36Sopenharmony_ci#define MSR_IA32_APICBASE_BASE (0xfffff<<12) 80162306a36Sopenharmony_ci 80262306a36Sopenharmony_ci#define MSR_IA32_UCODE_WRITE 0x00000079 80362306a36Sopenharmony_ci#define MSR_IA32_UCODE_REV 0x0000008b 80462306a36Sopenharmony_ci 80562306a36Sopenharmony_ci/* Intel SGX Launch Enclave Public Key Hash MSRs */ 80662306a36Sopenharmony_ci#define MSR_IA32_SGXLEPUBKEYHASH0 0x0000008C 80762306a36Sopenharmony_ci#define MSR_IA32_SGXLEPUBKEYHASH1 0x0000008D 80862306a36Sopenharmony_ci#define MSR_IA32_SGXLEPUBKEYHASH2 0x0000008E 80962306a36Sopenharmony_ci#define MSR_IA32_SGXLEPUBKEYHASH3 0x0000008F 81062306a36Sopenharmony_ci 81162306a36Sopenharmony_ci#define MSR_IA32_SMM_MONITOR_CTL 0x0000009b 81262306a36Sopenharmony_ci#define MSR_IA32_SMBASE 0x0000009e 81362306a36Sopenharmony_ci 81462306a36Sopenharmony_ci#define MSR_IA32_PERF_STATUS 0x00000198 81562306a36Sopenharmony_ci#define MSR_IA32_PERF_CTL 0x00000199 81662306a36Sopenharmony_ci#define INTEL_PERF_CTL_MASK 0xffff 81762306a36Sopenharmony_ci 81862306a36Sopenharmony_ci/* AMD Branch Sampling configuration */ 81962306a36Sopenharmony_ci#define MSR_AMD_DBG_EXTN_CFG 0xc000010f 82062306a36Sopenharmony_ci#define MSR_AMD_SAMP_BR_FROM 0xc0010300 82162306a36Sopenharmony_ci 82262306a36Sopenharmony_ci#define DBG_EXTN_CFG_LBRV2EN BIT_ULL(6) 82362306a36Sopenharmony_ci 82462306a36Sopenharmony_ci#define MSR_IA32_MPERF 0x000000e7 82562306a36Sopenharmony_ci#define MSR_IA32_APERF 0x000000e8 82662306a36Sopenharmony_ci 82762306a36Sopenharmony_ci#define MSR_IA32_THERM_CONTROL 0x0000019a 82862306a36Sopenharmony_ci#define MSR_IA32_THERM_INTERRUPT 0x0000019b 82962306a36Sopenharmony_ci 83062306a36Sopenharmony_ci#define THERM_INT_HIGH_ENABLE (1 << 0) 83162306a36Sopenharmony_ci#define THERM_INT_LOW_ENABLE (1 << 1) 83262306a36Sopenharmony_ci#define THERM_INT_PLN_ENABLE (1 << 24) 83362306a36Sopenharmony_ci 83462306a36Sopenharmony_ci#define MSR_IA32_THERM_STATUS 0x0000019c 83562306a36Sopenharmony_ci 83662306a36Sopenharmony_ci#define THERM_STATUS_PROCHOT (1 << 0) 83762306a36Sopenharmony_ci#define THERM_STATUS_POWER_LIMIT (1 << 10) 83862306a36Sopenharmony_ci 83962306a36Sopenharmony_ci#define MSR_THERM2_CTL 0x0000019d 84062306a36Sopenharmony_ci 84162306a36Sopenharmony_ci#define MSR_THERM2_CTL_TM_SELECT (1ULL << 16) 84262306a36Sopenharmony_ci 84362306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE 0x000001a0 84462306a36Sopenharmony_ci 84562306a36Sopenharmony_ci#define MSR_IA32_TEMPERATURE_TARGET 0x000001a2 84662306a36Sopenharmony_ci 84762306a36Sopenharmony_ci#define MSR_MISC_FEATURE_CONTROL 0x000001a4 84862306a36Sopenharmony_ci#define MSR_MISC_PWR_MGMT 0x000001aa 84962306a36Sopenharmony_ci 85062306a36Sopenharmony_ci#define MSR_IA32_ENERGY_PERF_BIAS 0x000001b0 85162306a36Sopenharmony_ci#define ENERGY_PERF_BIAS_PERFORMANCE 0 85262306a36Sopenharmony_ci#define ENERGY_PERF_BIAS_BALANCE_PERFORMANCE 4 85362306a36Sopenharmony_ci#define ENERGY_PERF_BIAS_NORMAL 6 85462306a36Sopenharmony_ci#define ENERGY_PERF_BIAS_NORMAL_POWERSAVE 7 85562306a36Sopenharmony_ci#define ENERGY_PERF_BIAS_BALANCE_POWERSAVE 8 85662306a36Sopenharmony_ci#define ENERGY_PERF_BIAS_POWERSAVE 15 85762306a36Sopenharmony_ci 85862306a36Sopenharmony_ci#define MSR_IA32_PACKAGE_THERM_STATUS 0x000001b1 85962306a36Sopenharmony_ci 86062306a36Sopenharmony_ci#define PACKAGE_THERM_STATUS_PROCHOT (1 << 0) 86162306a36Sopenharmony_ci#define PACKAGE_THERM_STATUS_POWER_LIMIT (1 << 10) 86262306a36Sopenharmony_ci#define PACKAGE_THERM_STATUS_HFI_UPDATED (1 << 26) 86362306a36Sopenharmony_ci 86462306a36Sopenharmony_ci#define MSR_IA32_PACKAGE_THERM_INTERRUPT 0x000001b2 86562306a36Sopenharmony_ci 86662306a36Sopenharmony_ci#define PACKAGE_THERM_INT_HIGH_ENABLE (1 << 0) 86762306a36Sopenharmony_ci#define PACKAGE_THERM_INT_LOW_ENABLE (1 << 1) 86862306a36Sopenharmony_ci#define PACKAGE_THERM_INT_PLN_ENABLE (1 << 24) 86962306a36Sopenharmony_ci#define PACKAGE_THERM_INT_HFI_ENABLE (1 << 25) 87062306a36Sopenharmony_ci 87162306a36Sopenharmony_ci/* Thermal Thresholds Support */ 87262306a36Sopenharmony_ci#define THERM_INT_THRESHOLD0_ENABLE (1 << 15) 87362306a36Sopenharmony_ci#define THERM_SHIFT_THRESHOLD0 8 87462306a36Sopenharmony_ci#define THERM_MASK_THRESHOLD0 (0x7f << THERM_SHIFT_THRESHOLD0) 87562306a36Sopenharmony_ci#define THERM_INT_THRESHOLD1_ENABLE (1 << 23) 87662306a36Sopenharmony_ci#define THERM_SHIFT_THRESHOLD1 16 87762306a36Sopenharmony_ci#define THERM_MASK_THRESHOLD1 (0x7f << THERM_SHIFT_THRESHOLD1) 87862306a36Sopenharmony_ci#define THERM_STATUS_THRESHOLD0 (1 << 6) 87962306a36Sopenharmony_ci#define THERM_LOG_THRESHOLD0 (1 << 7) 88062306a36Sopenharmony_ci#define THERM_STATUS_THRESHOLD1 (1 << 8) 88162306a36Sopenharmony_ci#define THERM_LOG_THRESHOLD1 (1 << 9) 88262306a36Sopenharmony_ci 88362306a36Sopenharmony_ci/* MISC_ENABLE bits: architectural */ 88462306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_FAST_STRING_BIT 0 88562306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_FAST_STRING (1ULL << MSR_IA32_MISC_ENABLE_FAST_STRING_BIT) 88662306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_TCC_BIT 1 88762306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_TCC (1ULL << MSR_IA32_MISC_ENABLE_TCC_BIT) 88862306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_EMON_BIT 7 88962306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_EMON (1ULL << MSR_IA32_MISC_ENABLE_EMON_BIT) 89062306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_BTS_UNAVAIL_BIT 11 89162306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_BTS_UNAVAIL (1ULL << MSR_IA32_MISC_ENABLE_BTS_UNAVAIL_BIT) 89262306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_PEBS_UNAVAIL_BIT 12 89362306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_PEBS_UNAVAIL (1ULL << MSR_IA32_MISC_ENABLE_PEBS_UNAVAIL_BIT) 89462306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP_BIT 16 89562306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP (1ULL << MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP_BIT) 89662306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_MWAIT_BIT 18 89762306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_MWAIT (1ULL << MSR_IA32_MISC_ENABLE_MWAIT_BIT) 89862306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT 22 89962306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_LIMIT_CPUID (1ULL << MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) 90062306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_XTPR_DISABLE_BIT 23 90162306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_XTPR_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_XTPR_DISABLE_BIT) 90262306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_XD_DISABLE_BIT 34 90362306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_XD_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_XD_DISABLE_BIT) 90462306a36Sopenharmony_ci 90562306a36Sopenharmony_ci/* MISC_ENABLE bits: model-specific, meaning may vary from core to core */ 90662306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_X87_COMPAT_BIT 2 90762306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_X87_COMPAT (1ULL << MSR_IA32_MISC_ENABLE_X87_COMPAT_BIT) 90862306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_TM1_BIT 3 90962306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_TM1 (1ULL << MSR_IA32_MISC_ENABLE_TM1_BIT) 91062306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_SPLIT_LOCK_DISABLE_BIT 4 91162306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_SPLIT_LOCK_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_SPLIT_LOCK_DISABLE_BIT) 91262306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_L3CACHE_DISABLE_BIT 6 91362306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_L3CACHE_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_L3CACHE_DISABLE_BIT) 91462306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_SUPPRESS_LOCK_BIT 8 91562306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_SUPPRESS_LOCK (1ULL << MSR_IA32_MISC_ENABLE_SUPPRESS_LOCK_BIT) 91662306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE_BIT 9 91762306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE_BIT) 91862306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_FERR_BIT 10 91962306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_FERR (1ULL << MSR_IA32_MISC_ENABLE_FERR_BIT) 92062306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_FERR_MULTIPLEX_BIT 10 92162306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_FERR_MULTIPLEX (1ULL << MSR_IA32_MISC_ENABLE_FERR_MULTIPLEX_BIT) 92262306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_TM2_BIT 13 92362306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_TM2 (1ULL << MSR_IA32_MISC_ENABLE_TM2_BIT) 92462306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_ADJ_PREF_DISABLE_BIT 19 92562306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_ADJ_PREF_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_ADJ_PREF_DISABLE_BIT) 92662306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_SPEEDSTEP_LOCK_BIT 20 92762306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_SPEEDSTEP_LOCK (1ULL << MSR_IA32_MISC_ENABLE_SPEEDSTEP_LOCK_BIT) 92862306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_L1D_CONTEXT_BIT 24 92962306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_L1D_CONTEXT (1ULL << MSR_IA32_MISC_ENABLE_L1D_CONTEXT_BIT) 93062306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_DCU_PREF_DISABLE_BIT 37 93162306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_DCU_PREF_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_DCU_PREF_DISABLE_BIT) 93262306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_TURBO_DISABLE_BIT 38 93362306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_TURBO_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_TURBO_DISABLE_BIT) 93462306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_IP_PREF_DISABLE_BIT 39 93562306a36Sopenharmony_ci#define MSR_IA32_MISC_ENABLE_IP_PREF_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_IP_PREF_DISABLE_BIT) 93662306a36Sopenharmony_ci 93762306a36Sopenharmony_ci/* MISC_FEATURES_ENABLES non-architectural features */ 93862306a36Sopenharmony_ci#define MSR_MISC_FEATURES_ENABLES 0x00000140 93962306a36Sopenharmony_ci 94062306a36Sopenharmony_ci#define MSR_MISC_FEATURES_ENABLES_CPUID_FAULT_BIT 0 94162306a36Sopenharmony_ci#define MSR_MISC_FEATURES_ENABLES_CPUID_FAULT BIT_ULL(MSR_MISC_FEATURES_ENABLES_CPUID_FAULT_BIT) 94262306a36Sopenharmony_ci#define MSR_MISC_FEATURES_ENABLES_RING3MWAIT_BIT 1 94362306a36Sopenharmony_ci 94462306a36Sopenharmony_ci#define MSR_IA32_TSC_DEADLINE 0x000006E0 94562306a36Sopenharmony_ci 94662306a36Sopenharmony_ci 94762306a36Sopenharmony_ci#define MSR_TSX_FORCE_ABORT 0x0000010F 94862306a36Sopenharmony_ci 94962306a36Sopenharmony_ci#define MSR_TFA_RTM_FORCE_ABORT_BIT 0 95062306a36Sopenharmony_ci#define MSR_TFA_RTM_FORCE_ABORT BIT_ULL(MSR_TFA_RTM_FORCE_ABORT_BIT) 95162306a36Sopenharmony_ci#define MSR_TFA_TSX_CPUID_CLEAR_BIT 1 95262306a36Sopenharmony_ci#define MSR_TFA_TSX_CPUID_CLEAR BIT_ULL(MSR_TFA_TSX_CPUID_CLEAR_BIT) 95362306a36Sopenharmony_ci#define MSR_TFA_SDV_ENABLE_RTM_BIT 2 95462306a36Sopenharmony_ci#define MSR_TFA_SDV_ENABLE_RTM BIT_ULL(MSR_TFA_SDV_ENABLE_RTM_BIT) 95562306a36Sopenharmony_ci 95662306a36Sopenharmony_ci/* P4/Xeon+ specific */ 95762306a36Sopenharmony_ci#define MSR_IA32_MCG_EAX 0x00000180 95862306a36Sopenharmony_ci#define MSR_IA32_MCG_EBX 0x00000181 95962306a36Sopenharmony_ci#define MSR_IA32_MCG_ECX 0x00000182 96062306a36Sopenharmony_ci#define MSR_IA32_MCG_EDX 0x00000183 96162306a36Sopenharmony_ci#define MSR_IA32_MCG_ESI 0x00000184 96262306a36Sopenharmony_ci#define MSR_IA32_MCG_EDI 0x00000185 96362306a36Sopenharmony_ci#define MSR_IA32_MCG_EBP 0x00000186 96462306a36Sopenharmony_ci#define MSR_IA32_MCG_ESP 0x00000187 96562306a36Sopenharmony_ci#define MSR_IA32_MCG_EFLAGS 0x00000188 96662306a36Sopenharmony_ci#define MSR_IA32_MCG_EIP 0x00000189 96762306a36Sopenharmony_ci#define MSR_IA32_MCG_RESERVED 0x0000018a 96862306a36Sopenharmony_ci 96962306a36Sopenharmony_ci/* Pentium IV performance counter MSRs */ 97062306a36Sopenharmony_ci#define MSR_P4_BPU_PERFCTR0 0x00000300 97162306a36Sopenharmony_ci#define MSR_P4_BPU_PERFCTR1 0x00000301 97262306a36Sopenharmony_ci#define MSR_P4_BPU_PERFCTR2 0x00000302 97362306a36Sopenharmony_ci#define MSR_P4_BPU_PERFCTR3 0x00000303 97462306a36Sopenharmony_ci#define MSR_P4_MS_PERFCTR0 0x00000304 97562306a36Sopenharmony_ci#define MSR_P4_MS_PERFCTR1 0x00000305 97662306a36Sopenharmony_ci#define MSR_P4_MS_PERFCTR2 0x00000306 97762306a36Sopenharmony_ci#define MSR_P4_MS_PERFCTR3 0x00000307 97862306a36Sopenharmony_ci#define MSR_P4_FLAME_PERFCTR0 0x00000308 97962306a36Sopenharmony_ci#define MSR_P4_FLAME_PERFCTR1 0x00000309 98062306a36Sopenharmony_ci#define MSR_P4_FLAME_PERFCTR2 0x0000030a 98162306a36Sopenharmony_ci#define MSR_P4_FLAME_PERFCTR3 0x0000030b 98262306a36Sopenharmony_ci#define MSR_P4_IQ_PERFCTR0 0x0000030c 98362306a36Sopenharmony_ci#define MSR_P4_IQ_PERFCTR1 0x0000030d 98462306a36Sopenharmony_ci#define MSR_P4_IQ_PERFCTR2 0x0000030e 98562306a36Sopenharmony_ci#define MSR_P4_IQ_PERFCTR3 0x0000030f 98662306a36Sopenharmony_ci#define MSR_P4_IQ_PERFCTR4 0x00000310 98762306a36Sopenharmony_ci#define MSR_P4_IQ_PERFCTR5 0x00000311 98862306a36Sopenharmony_ci#define MSR_P4_BPU_CCCR0 0x00000360 98962306a36Sopenharmony_ci#define MSR_P4_BPU_CCCR1 0x00000361 99062306a36Sopenharmony_ci#define MSR_P4_BPU_CCCR2 0x00000362 99162306a36Sopenharmony_ci#define MSR_P4_BPU_CCCR3 0x00000363 99262306a36Sopenharmony_ci#define MSR_P4_MS_CCCR0 0x00000364 99362306a36Sopenharmony_ci#define MSR_P4_MS_CCCR1 0x00000365 99462306a36Sopenharmony_ci#define MSR_P4_MS_CCCR2 0x00000366 99562306a36Sopenharmony_ci#define MSR_P4_MS_CCCR3 0x00000367 99662306a36Sopenharmony_ci#define MSR_P4_FLAME_CCCR0 0x00000368 99762306a36Sopenharmony_ci#define MSR_P4_FLAME_CCCR1 0x00000369 99862306a36Sopenharmony_ci#define MSR_P4_FLAME_CCCR2 0x0000036a 99962306a36Sopenharmony_ci#define MSR_P4_FLAME_CCCR3 0x0000036b 100062306a36Sopenharmony_ci#define MSR_P4_IQ_CCCR0 0x0000036c 100162306a36Sopenharmony_ci#define MSR_P4_IQ_CCCR1 0x0000036d 100262306a36Sopenharmony_ci#define MSR_P4_IQ_CCCR2 0x0000036e 100362306a36Sopenharmony_ci#define MSR_P4_IQ_CCCR3 0x0000036f 100462306a36Sopenharmony_ci#define MSR_P4_IQ_CCCR4 0x00000370 100562306a36Sopenharmony_ci#define MSR_P4_IQ_CCCR5 0x00000371 100662306a36Sopenharmony_ci#define MSR_P4_ALF_ESCR0 0x000003ca 100762306a36Sopenharmony_ci#define MSR_P4_ALF_ESCR1 0x000003cb 100862306a36Sopenharmony_ci#define MSR_P4_BPU_ESCR0 0x000003b2 100962306a36Sopenharmony_ci#define MSR_P4_BPU_ESCR1 0x000003b3 101062306a36Sopenharmony_ci#define MSR_P4_BSU_ESCR0 0x000003a0 101162306a36Sopenharmony_ci#define MSR_P4_BSU_ESCR1 0x000003a1 101262306a36Sopenharmony_ci#define MSR_P4_CRU_ESCR0 0x000003b8 101362306a36Sopenharmony_ci#define MSR_P4_CRU_ESCR1 0x000003b9 101462306a36Sopenharmony_ci#define MSR_P4_CRU_ESCR2 0x000003cc 101562306a36Sopenharmony_ci#define MSR_P4_CRU_ESCR3 0x000003cd 101662306a36Sopenharmony_ci#define MSR_P4_CRU_ESCR4 0x000003e0 101762306a36Sopenharmony_ci#define MSR_P4_CRU_ESCR5 0x000003e1 101862306a36Sopenharmony_ci#define MSR_P4_DAC_ESCR0 0x000003a8 101962306a36Sopenharmony_ci#define MSR_P4_DAC_ESCR1 0x000003a9 102062306a36Sopenharmony_ci#define MSR_P4_FIRM_ESCR0 0x000003a4 102162306a36Sopenharmony_ci#define MSR_P4_FIRM_ESCR1 0x000003a5 102262306a36Sopenharmony_ci#define MSR_P4_FLAME_ESCR0 0x000003a6 102362306a36Sopenharmony_ci#define MSR_P4_FLAME_ESCR1 0x000003a7 102462306a36Sopenharmony_ci#define MSR_P4_FSB_ESCR0 0x000003a2 102562306a36Sopenharmony_ci#define MSR_P4_FSB_ESCR1 0x000003a3 102662306a36Sopenharmony_ci#define MSR_P4_IQ_ESCR0 0x000003ba 102762306a36Sopenharmony_ci#define MSR_P4_IQ_ESCR1 0x000003bb 102862306a36Sopenharmony_ci#define MSR_P4_IS_ESCR0 0x000003b4 102962306a36Sopenharmony_ci#define MSR_P4_IS_ESCR1 0x000003b5 103062306a36Sopenharmony_ci#define MSR_P4_ITLB_ESCR0 0x000003b6 103162306a36Sopenharmony_ci#define MSR_P4_ITLB_ESCR1 0x000003b7 103262306a36Sopenharmony_ci#define MSR_P4_IX_ESCR0 0x000003c8 103362306a36Sopenharmony_ci#define MSR_P4_IX_ESCR1 0x000003c9 103462306a36Sopenharmony_ci#define MSR_P4_MOB_ESCR0 0x000003aa 103562306a36Sopenharmony_ci#define MSR_P4_MOB_ESCR1 0x000003ab 103662306a36Sopenharmony_ci#define MSR_P4_MS_ESCR0 0x000003c0 103762306a36Sopenharmony_ci#define MSR_P4_MS_ESCR1 0x000003c1 103862306a36Sopenharmony_ci#define MSR_P4_PMH_ESCR0 0x000003ac 103962306a36Sopenharmony_ci#define MSR_P4_PMH_ESCR1 0x000003ad 104062306a36Sopenharmony_ci#define MSR_P4_RAT_ESCR0 0x000003bc 104162306a36Sopenharmony_ci#define MSR_P4_RAT_ESCR1 0x000003bd 104262306a36Sopenharmony_ci#define MSR_P4_SAAT_ESCR0 0x000003ae 104362306a36Sopenharmony_ci#define MSR_P4_SAAT_ESCR1 0x000003af 104462306a36Sopenharmony_ci#define MSR_P4_SSU_ESCR0 0x000003be 104562306a36Sopenharmony_ci#define MSR_P4_SSU_ESCR1 0x000003bf /* guess: not in manual */ 104662306a36Sopenharmony_ci 104762306a36Sopenharmony_ci#define MSR_P4_TBPU_ESCR0 0x000003c2 104862306a36Sopenharmony_ci#define MSR_P4_TBPU_ESCR1 0x000003c3 104962306a36Sopenharmony_ci#define MSR_P4_TC_ESCR0 0x000003c4 105062306a36Sopenharmony_ci#define MSR_P4_TC_ESCR1 0x000003c5 105162306a36Sopenharmony_ci#define MSR_P4_U2L_ESCR0 0x000003b0 105262306a36Sopenharmony_ci#define MSR_P4_U2L_ESCR1 0x000003b1 105362306a36Sopenharmony_ci 105462306a36Sopenharmony_ci#define MSR_P4_PEBS_MATRIX_VERT 0x000003f2 105562306a36Sopenharmony_ci 105662306a36Sopenharmony_ci/* Intel Core-based CPU performance counters */ 105762306a36Sopenharmony_ci#define MSR_CORE_PERF_FIXED_CTR0 0x00000309 105862306a36Sopenharmony_ci#define MSR_CORE_PERF_FIXED_CTR1 0x0000030a 105962306a36Sopenharmony_ci#define MSR_CORE_PERF_FIXED_CTR2 0x0000030b 106062306a36Sopenharmony_ci#define MSR_CORE_PERF_FIXED_CTR3 0x0000030c 106162306a36Sopenharmony_ci#define MSR_CORE_PERF_FIXED_CTR_CTRL 0x0000038d 106262306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_STATUS 0x0000038e 106362306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_CTRL 0x0000038f 106462306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_OVF_CTRL 0x00000390 106562306a36Sopenharmony_ci 106662306a36Sopenharmony_ci#define MSR_PERF_METRICS 0x00000329 106762306a36Sopenharmony_ci 106862306a36Sopenharmony_ci/* PERF_GLOBAL_OVF_CTL bits */ 106962306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT 55 107062306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI (1ULL << MSR_CORE_PERF_GLOBAL_OVF_CTRL_TRACE_TOPA_PMI_BIT) 107162306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_OVF_CTRL_OVF_BUF_BIT 62 107262306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_OVF_CTRL_OVF_BUF (1ULL << MSR_CORE_PERF_GLOBAL_OVF_CTRL_OVF_BUF_BIT) 107362306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_OVF_CTRL_COND_CHGD_BIT 63 107462306a36Sopenharmony_ci#define MSR_CORE_PERF_GLOBAL_OVF_CTRL_COND_CHGD (1ULL << MSR_CORE_PERF_GLOBAL_OVF_CTRL_COND_CHGD_BIT) 107562306a36Sopenharmony_ci 107662306a36Sopenharmony_ci/* Geode defined MSRs */ 107762306a36Sopenharmony_ci#define MSR_GEODE_BUSCONT_CONF0 0x00001900 107862306a36Sopenharmony_ci 107962306a36Sopenharmony_ci/* Intel VT MSRs */ 108062306a36Sopenharmony_ci#define MSR_IA32_VMX_BASIC 0x00000480 108162306a36Sopenharmony_ci#define MSR_IA32_VMX_PINBASED_CTLS 0x00000481 108262306a36Sopenharmony_ci#define MSR_IA32_VMX_PROCBASED_CTLS 0x00000482 108362306a36Sopenharmony_ci#define MSR_IA32_VMX_EXIT_CTLS 0x00000483 108462306a36Sopenharmony_ci#define MSR_IA32_VMX_ENTRY_CTLS 0x00000484 108562306a36Sopenharmony_ci#define MSR_IA32_VMX_MISC 0x00000485 108662306a36Sopenharmony_ci#define MSR_IA32_VMX_CR0_FIXED0 0x00000486 108762306a36Sopenharmony_ci#define MSR_IA32_VMX_CR0_FIXED1 0x00000487 108862306a36Sopenharmony_ci#define MSR_IA32_VMX_CR4_FIXED0 0x00000488 108962306a36Sopenharmony_ci#define MSR_IA32_VMX_CR4_FIXED1 0x00000489 109062306a36Sopenharmony_ci#define MSR_IA32_VMX_VMCS_ENUM 0x0000048a 109162306a36Sopenharmony_ci#define MSR_IA32_VMX_PROCBASED_CTLS2 0x0000048b 109262306a36Sopenharmony_ci#define MSR_IA32_VMX_EPT_VPID_CAP 0x0000048c 109362306a36Sopenharmony_ci#define MSR_IA32_VMX_TRUE_PINBASED_CTLS 0x0000048d 109462306a36Sopenharmony_ci#define MSR_IA32_VMX_TRUE_PROCBASED_CTLS 0x0000048e 109562306a36Sopenharmony_ci#define MSR_IA32_VMX_TRUE_EXIT_CTLS 0x0000048f 109662306a36Sopenharmony_ci#define MSR_IA32_VMX_TRUE_ENTRY_CTLS 0x00000490 109762306a36Sopenharmony_ci#define MSR_IA32_VMX_VMFUNC 0x00000491 109862306a36Sopenharmony_ci#define MSR_IA32_VMX_PROCBASED_CTLS3 0x00000492 109962306a36Sopenharmony_ci 110062306a36Sopenharmony_ci/* VMX_BASIC bits and bitmasks */ 110162306a36Sopenharmony_ci#define VMX_BASIC_VMCS_SIZE_SHIFT 32 110262306a36Sopenharmony_ci#define VMX_BASIC_TRUE_CTLS (1ULL << 55) 110362306a36Sopenharmony_ci#define VMX_BASIC_64 0x0001000000000000LLU 110462306a36Sopenharmony_ci#define VMX_BASIC_MEM_TYPE_SHIFT 50 110562306a36Sopenharmony_ci#define VMX_BASIC_MEM_TYPE_MASK 0x003c000000000000LLU 110662306a36Sopenharmony_ci#define VMX_BASIC_MEM_TYPE_WB 6LLU 110762306a36Sopenharmony_ci#define VMX_BASIC_INOUT 0x0040000000000000LLU 110862306a36Sopenharmony_ci 110962306a36Sopenharmony_ci/* Resctrl MSRs: */ 111062306a36Sopenharmony_ci/* - Intel: */ 111162306a36Sopenharmony_ci#define MSR_IA32_L3_QOS_CFG 0xc81 111262306a36Sopenharmony_ci#define MSR_IA32_L2_QOS_CFG 0xc82 111362306a36Sopenharmony_ci#define MSR_IA32_QM_EVTSEL 0xc8d 111462306a36Sopenharmony_ci#define MSR_IA32_QM_CTR 0xc8e 111562306a36Sopenharmony_ci#define MSR_IA32_PQR_ASSOC 0xc8f 111662306a36Sopenharmony_ci#define MSR_IA32_L3_CBM_BASE 0xc90 111762306a36Sopenharmony_ci#define MSR_IA32_L2_CBM_BASE 0xd10 111862306a36Sopenharmony_ci#define MSR_IA32_MBA_THRTL_BASE 0xd50 111962306a36Sopenharmony_ci 112062306a36Sopenharmony_ci/* - AMD: */ 112162306a36Sopenharmony_ci#define MSR_IA32_MBA_BW_BASE 0xc0000200 112262306a36Sopenharmony_ci#define MSR_IA32_SMBA_BW_BASE 0xc0000280 112362306a36Sopenharmony_ci#define MSR_IA32_EVT_CFG_BASE 0xc0000400 112462306a36Sopenharmony_ci 112562306a36Sopenharmony_ci/* MSR_IA32_VMX_MISC bits */ 112662306a36Sopenharmony_ci#define MSR_IA32_VMX_MISC_INTEL_PT (1ULL << 14) 112762306a36Sopenharmony_ci#define MSR_IA32_VMX_MISC_VMWRITE_SHADOW_RO_FIELDS (1ULL << 29) 112862306a36Sopenharmony_ci#define MSR_IA32_VMX_MISC_PREEMPTION_TIMER_SCALE 0x1F 112962306a36Sopenharmony_ci/* AMD-V MSRs */ 113062306a36Sopenharmony_ci 113162306a36Sopenharmony_ci#define MSR_VM_CR 0xc0010114 113262306a36Sopenharmony_ci#define MSR_VM_IGNNE 0xc0010115 113362306a36Sopenharmony_ci#define MSR_VM_HSAVE_PA 0xc0010117 113462306a36Sopenharmony_ci 113562306a36Sopenharmony_ci/* Hardware Feedback Interface */ 113662306a36Sopenharmony_ci#define MSR_IA32_HW_FEEDBACK_PTR 0x17d0 113762306a36Sopenharmony_ci#define MSR_IA32_HW_FEEDBACK_CONFIG 0x17d1 113862306a36Sopenharmony_ci 113962306a36Sopenharmony_ci/* x2APIC locked status */ 114062306a36Sopenharmony_ci#define MSR_IA32_XAPIC_DISABLE_STATUS 0xBD 114162306a36Sopenharmony_ci#define LEGACY_XAPIC_DISABLED BIT(0) /* 114262306a36Sopenharmony_ci * x2APIC mode is locked and 114362306a36Sopenharmony_ci * disabling x2APIC will cause 114462306a36Sopenharmony_ci * a #GP 114562306a36Sopenharmony_ci */ 114662306a36Sopenharmony_ci 114762306a36Sopenharmony_ci#endif /* _ASM_X86_MSR_INDEX_H */ 1148