powerflags.c 709 B

123456789101112131415161718192021222324
  1. /*
  2. * Strings for the various x86 power flags
  3. *
  4. * This file must not contain any executable code.
  5. */
  6. #include <asm/cpufeature.h>
  7. const char *const x86_power_flags[32] = {
  8. "ts", /* temperature sensor */
  9. "fid", /* frequency id control */
  10. "vid", /* voltage id control */
  11. "ttp", /* thermal trip */
  12. "tm", /* hardware thermal control */
  13. "stc", /* software thermal control */
  14. "100mhzsteps", /* 100 MHz multiplier control */
  15. "hwpstate", /* hardware P-state control */
  16. "", /* tsc invariant mapped to constant_tsc */
  17. "cpb", /* core performance boost */
  18. "eff_freq_ro", /* Readonly aperf/mperf */
  19. "proc_feedback", /* processor feedback interface */
  20. "acc_power", /* accumulated power mechanism */
  21. };