powerflags.c 482 B

12345678910111213141516171819202122
  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",
  13. "stc",
  14. "100mhzsteps",
  15. "hwpstate",
  16. "", /* tsc invariant mapped to constant_tsc */
  17. "cpb", /* core performance boost */
  18. "eff_freq_ro", /* Readonly aperf/mperf */
  19. };