2008-08-28 00:56:44 +00:00
|
|
|
/*
|
|
|
|
* 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 */
|
2013-04-23 14:19:55 +00:00
|
|
|
"tm", /* hardware thermal control */
|
|
|
|
"stc", /* software thermal control */
|
|
|
|
"100mhzsteps", /* 100 MHz multiplier control */
|
|
|
|
"hwpstate", /* hardware P-state control */
|
2008-08-28 00:56:44 +00:00
|
|
|
"", /* tsc invariant mapped to constant_tsc */
|
2011-12-14 15:12:54 +00:00
|
|
|
"cpb", /* core performance boost */
|
|
|
|
"eff_freq_ro", /* Readonly aperf/mperf */
|
2008-08-28 00:56:44 +00:00
|
|
|
};
|