diff options
author | Borislav Petkov <bp@suse.de> | 2021-01-07 15:29:05 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-02-08 13:43:20 +0300 |
commit | 9223d0dccb8f8523754122f68316dd1a4f39f7f8 (patch) | |
tree | 4f27773dde344b360c3b9e18f442714527e8d825 /arch/x86/include/asm/thermal.h | |
parent | 4f432e8bb15b352da72525144da025a46695968f (diff) | |
download | linux-9223d0dccb8f8523754122f68316dd1a4f39f7f8.tar.xz |
thermal: Move therm_throt there from x86/mce
This functionality has nothing to do with MCE, move it to the thermal
framework and untangle it from MCE.
Requested-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Tested-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Link: https://lkml.kernel.org/r/20210202121003.GD18075@zn.tnic
Diffstat (limited to 'arch/x86/include/asm/thermal.h')
-rw-r--r-- | arch/x86/include/asm/thermal.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/x86/include/asm/thermal.h b/arch/x86/include/asm/thermal.h new file mode 100644 index 000000000000..ddbdefd5b94f --- /dev/null +++ b/arch/x86/include/asm/thermal.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef _ASM_X86_THERMAL_H +#define _ASM_X86_THERMAL_H + +#ifdef CONFIG_X86_THERMAL_VECTOR +void intel_init_thermal(struct cpuinfo_x86 *c); +bool x86_thermal_enabled(void); +void intel_thermal_interrupt(void); +#else +static inline void intel_init_thermal(struct cpuinfo_x86 *c) { } +#endif + +#endif /* _ASM_X86_THERMAL_H */ |