25 lines
		
	
	
		
			745 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			745 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * 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 */
 | 
						|
};
 |