mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 18:24:14 +08:00
34a4cceb78
Bit 11 of CPUID 8000_0007 edx is processor feedback interface. Bit 12 of CPUID 8000_0007 edx is accumulated power. Print proper names in proc/cpuinfo Reported-and-tested-by: Borislav Petkov <bp@alien8.de> Signed-off-by: Huang Rui <ray.huang@amd.com> Cc: Tony Li <tony.li@amd.com> Cc: Fenghua Yu <fenghua.yu@intel.com> Cc: Tony Luck <tony.luck@intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Fengguang Wu <fengguang.wu@intel.com> Cc: Sherry Hurwitz <sherry.hurwitz@amd.com> Cc: Borislav Petkov <bp@suse.de> Cc: "Len Brown" <lenb@kernel.org> Link: http://lkml.kernel.org/r/1458871720-3209-1-git-send-email-ray.huang@amd.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
24 lines
709 B
C
24 lines
709 B
C
/*
|
|
* Strings for the various x86 power flags
|
|
*
|
|
* This file must not contain any executable code.
|
|
*/
|
|
|
|
#include <asm/cpufeature.h>
|
|
|
|
const char *const x86_power_flags[32] = {
|
|
"ts", /* temperature sensor */
|
|
"fid", /* frequency id control */
|
|
"vid", /* voltage id control */
|
|
"ttp", /* thermal trip */
|
|
"tm", /* hardware thermal control */
|
|
"stc", /* software thermal control */
|
|
"100mhzsteps", /* 100 MHz multiplier control */
|
|
"hwpstate", /* hardware P-state control */
|
|
"", /* tsc invariant mapped to constant_tsc */
|
|
"cpb", /* core performance boost */
|
|
"eff_freq_ro", /* Readonly aperf/mperf */
|
|
"proc_feedback", /* processor feedback interface */
|
|
"acc_power", /* accumulated power mechanism */
|
|
};
|