diff options
| -rw-r--r-- | arch/x86/include/asm/mce.h | 3 | ||||
| -rw-r--r-- | arch/x86/include/asm/msr-index.h | 12 | ||||
| -rw-r--r-- | arch/x86/kernel/cpu/mcheck/therm_throt.c | 40 |
3 files changed, 55 insertions, 0 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h index c62c13cb9788..eb16e94ae04f 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h | |||
| @@ -223,6 +223,9 @@ void intel_init_thermal(struct cpuinfo_x86 *c); | |||
| 223 | 223 | ||
| 224 | void mce_log_therm_throt_event(__u64 status); | 224 | void mce_log_therm_throt_event(__u64 status); |
| 225 | 225 | ||
| 226 | /* Interrupt Handler for core thermal thresholds */ | ||
| 227 | extern int (*platform_thermal_notify)(__u64 msr_val); | ||
| 228 | |||
| 226 | #ifdef CONFIG_X86_THERMAL_VECTOR | 229 | #ifdef CONFIG_X86_THERMAL_VECTOR |
| 227 | extern void mcheck_intel_therm_init(void); | 230 | extern void mcheck_intel_therm_init(void); |
| 228 | #else | 231 | #else |
diff --git a/arch/x86/include/asm/msr-index.h b/arch/x86/include/asm/msr-index.h index 6b89f5e86021..622c80b7dbee 100644 --- a/arch/x86/include/asm/msr-index.h +++ b/arch/x86/include/asm/msr-index.h | |||
| @@ -253,6 +253,18 @@ | |||
| 253 | #define PACKAGE_THERM_INT_LOW_ENABLE (1 << 1) | 253 | #define PACKAGE_THERM_INT_LOW_ENABLE (1 << 1) |
| 254 | #define PACKAGE_THERM_INT_PLN_ENABLE (1 << 24) | 254 | #define PACKAGE_THERM_INT_PLN_ENABLE (1 << 24) |
| 255 | 255 | ||
| 256 | /* Thermal Thresholds Support */ | ||
| 257 | #define THERM_INT_THRESHOLD0_ENABLE (1 << 15) | ||
| 258 | #define THERM_SHIFT_THRESHOLD0 8 | ||
| 259 | #define THERM_MASK_THRESHOLD0 (0x7f << THERM_SHIFT_THRESHOLD0) | ||
| 260 | #define THERM_INT_THRESHOLD1_ENABLE (1 << 23) | ||
| 261 | #define THERM_SHIFT_THRESHOLD1 16 | ||
| 262 | #define THERM_MASK_THRESHOLD1 (0x7f << THERM_SHIFT_THRESHOLD1) | ||
| 263 | #define THERM_STATUS_THRESHOLD0 (1 << 6) | ||
| 264 | #define THERM_LOG_THRESHOLD0 (1 << 7) | ||
| 265 | #define THERM_STATUS_THRESHOLD1 (1 << 8) | ||
| 266 | #define THERM_LOG_THRESHOLD1 (1 << 9) | ||
| 267 | |||
| 256 | /* MISC_ENABLE bits: architectural */ | 268 | /* MISC_ENABLE bits: architectural */ |
| 257 | #define MSR_IA32_MISC_ENABLE_FAST_STRING (1ULL << 0) | 269 | #define MSR_IA32_MISC_ENABLE_FAST_STRING (1ULL << 0) |
| 258 | #define MSR_IA32_MISC_ENABLE_TCC (1ULL << 1) | 270 | #define MSR_IA32_MISC_ENABLE_TCC (1ULL << 1) |
diff --git a/arch/x86/kernel/cpu/mcheck/therm_throt.c b/arch/x86/kernel/cpu/mcheck/therm_throt.c index 4b683267eca5..e12246ff5aa6 100644 --- a/arch/x86/kernel/cpu/mcheck/therm_throt.c +++ b/arch/x86/kernel/cpu/mcheck/therm_throt.c | |||
| @@ -53,8 +53,13 @@ struct thermal_state { | |||
| 53 | struct _thermal_state core_power_limit; | 53 | struct _thermal_state core_power_limit; |
| 54 | struct _thermal_state package_throttle; | 54 | struct _thermal_state package_throttle; |
| 55 | struct _thermal_state package_power_limit; | 55 | struct _thermal_state package_power_limit; |
| 56 | struct _thermal_state core_thresh0; | ||
| 57 | struct _thermal_state core_thresh1; | ||
| 56 | }; | 58 | }; |
| 57 | 59 | ||
| 60 | /* Callback to handle core threshold interrupts */ | ||
| 61 | int (*platform_thermal_notify)(__u64 msr_val); | ||
| 62 | |||
| 58 | static DEFINE_PER_CPU(struct thermal_state, thermal_state); | 63 | static DEFINE_PER_CPU(struct thermal_state, thermal_state); |
| 59 | 64 | ||
| 60 | static atomic_t therm_throt_en = ATOMIC_INIT(0); | 65 | static atomic_t therm_throt_en = ATOMIC_INIT(0); |
| @@ -200,6 +205,22 @@ static int therm_throt_process(bool new_event, int event, int level) | |||
| 200 | return 0; | 205 | return 0; |
| 201 | } | 206 | } |
| 202 | 207 | ||
| 208 | static int thresh_event_valid(int event) | ||
| 209 | { | ||
| 210 | struct _thermal_state *state; | ||
| 211 | unsigned int this_cpu = smp_processor_id(); | ||
| 212 | struct thermal_state *pstate = &per_cpu(thermal_state, this_cpu); | ||
| 213 | u64 now = get_jiffies_64(); | ||
| 214 | |||
| 215 | state = (event == 0) ? &pstate->core_thresh0 : &pstate->core_thresh1; | ||
| 216 | |||
| 217 | if (time_before64(now, state->next_check)) | ||
| 218 | return 0; | ||
| 219 | |||
| 220 | state->next_check = now + CHECK_INTERVAL; | ||
| 221 | return 1; | ||
| 222 | } | ||
| 223 | |||
| 203 | #ifdef CONFIG_SYSFS | 224 | #ifdef CONFIG_SYSFS |
| 204 | /* Add/Remove thermal_throttle interface for CPU device: */ | 225 | /* Add/Remove thermal_throttle interface for CPU device: */ |
| 205 | static __cpuinit int thermal_throttle_add_dev(struct sys_device *sys_dev, | 226 | static __cpuinit int thermal_throttle_add_dev(struct sys_device *sys_dev, |
| @@ -313,6 +334,22 @@ device_initcall(thermal_throttle_init_device); | |||
| 313 | #define PACKAGE_THROTTLED ((__u64)2 << 62) | 334 | #define PACKAGE_THROTTLED ((__u64)2 << 62) |
| 314 | #define PACKAGE_POWER_LIMIT ((__u64)3 << 62) | 335 | #define PACKAGE_POWER_LIMIT ((__u64)3 << 62) |
| 315 | 336 | ||
| 337 | static void notify_thresholds(__u64 msr_val) | ||
| 338 | { | ||
| 339 | /* check whether the interrupt handler is defined; | ||
| 340 | * otherwise simply return | ||
| 341 | */ | ||
| 342 | if (!platform_thermal_notify) | ||
| 343 | return; | ||
| 344 | |||
| 345 | /* lower threshold reached */ | ||
| 346 | if ((msr_val & THERM_LOG_THRESHOLD0) && thresh_event_valid(0)) | ||
| 347 | platform_thermal_notify(msr_val); | ||
| 348 | /* higher threshold reached */ | ||
| 349 | if ((msr_val & THERM_LOG_THRESHOLD1) && thresh_event_valid(1)) | ||
| 350 | platform_thermal_notify(msr_val); | ||
| 351 | } | ||
| 352 | |||
| 316 | /* Thermal transition interrupt handler */ | 353 | /* Thermal transition interrupt handler */ |
| 317 | static void intel_thermal_interrupt(void) | 354 | static void intel_thermal_interrupt(void) |
| 318 | { | 355 | { |
| @@ -321,6 +358,9 @@ static void intel_thermal_interrupt(void) | |||
| 321 | 358 | ||
| 322 | rdmsrl(MSR_IA32_THERM_STATUS, msr_val); | 359 | rdmsrl(MSR_IA32_THERM_STATUS, msr_val); |
| 323 | 360 | ||
| 361 | /* Check for violation of core thermal thresholds*/ | ||
| 362 | notify_thresholds(msr_val); | ||
| 363 | |||
| 324 | if (therm_throt_process(msr_val & THERM_STATUS_PROCHOT, | 364 | if (therm_throt_process(msr_val & THERM_STATUS_PROCHOT, |
| 325 | THERMAL_THROTTLING_EVENT, | 365 | THERMAL_THROTTLING_EVENT, |
| 326 | CORE_LEVEL) != 0) | 366 | CORE_LEVEL) != 0) |
