diff options
author | Len Brown <len.brown@intel.com> | 2012-10-31 20:47:40 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-11-23 21:40:11 -0500 |
commit | 3fc808aaa052dec7b155f3242c6c0eabf0c49127 (patch) | |
tree | fd445d7caba56ae094b6ca99797bff50ad69fe59 /arch/x86 | |
parent | 9c63a650bb100e7553d60c991ba0c5db9c743239 (diff) |
x86 power: define RAPL MSRs
The Run Time Average Power Limiting interface
is currently model specific, present on Sandy Bridge
and Ivy Bridge processors.
These #defines correspond to documentation in the latest
"IntelĀ® 64 and IA-32 Architectures Software Developer Manual",
plus some typos in that document corrected.
Signed-off-by: Len Brown <len.brown@intel.com>
Cc: x86@kernel.org
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/include/asm/msr-index.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/x86/include/asm/msr-index.h b/arch/x86/include/asm/msr-index.h index 2639f816628e..4a4abaea04d6 100644 --- a/arch/x86/include/asm/msr-index.h +++ b/arch/x86/include/asm/msr-index.h | |||
@@ -117,6 +117,29 @@ | |||
117 | #define MSR_CORE_C7_RESIDENCY 0x000003fe | 117 | #define MSR_CORE_C7_RESIDENCY 0x000003fe |
118 | #define MSR_PKG_C2_RESIDENCY 0x0000060d | 118 | #define MSR_PKG_C2_RESIDENCY 0x0000060d |
119 | 119 | ||
120 | /* Run Time Average Power Limiting (RAPL) Interface */ | ||
121 | |||
122 | #define MSR_RAPL_POWER_UNIT 0x00000606 | ||
123 | |||
124 | #define MSR_PKG_POWER_LIMIT 0x00000610 | ||
125 | #define MSR_PKG_ENERGY_STATUS 0x00000611 | ||
126 | #define MSR_PKG_PERF_STATUS 0x00000613 | ||
127 | #define MSR_PKG_POWER_INFO 0x00000614 | ||
128 | |||
129 | #define MSR_DRAM_POWER_LIMIT 0x00000618 | ||
130 | #define MSR_DRAM_ENERGY_STATUS 0x00000619 | ||
131 | #define MSR_DRAM_PERF_STATUS 0x0000061b | ||
132 | #define MSR_DRAM_POWER_INFO 0x0000061c | ||
133 | |||
134 | #define MSR_PP0_POWER_LIMIT 0x00000638 | ||
135 | #define MSR_PP0_ENERGY_STATUS 0x00000639 | ||
136 | #define MSR_PP0_POLICY 0x0000063a | ||
137 | #define MSR_PP0_PERF_STATUS 0x0000063b | ||
138 | |||
139 | #define MSR_PP1_POWER_LIMIT 0x00000640 | ||
140 | #define MSR_PP1_ENERGY_STATUS 0x00000641 | ||
141 | #define MSR_PP1_POLICY 0x00000642 | ||
142 | |||
120 | #define MSR_AMD64_MC0_MASK 0xc0010044 | 143 | #define MSR_AMD64_MC0_MASK 0xc0010044 |
121 | 144 | ||
122 | #define MSR_IA32_MCx_CTL(x) (MSR_IA32_MC0_CTL + 4*(x)) | 145 | #define MSR_IA32_MCx_CTL(x) (MSR_IA32_MC0_CTL + 4*(x)) |