powerflags.c 417 B

1234567891011121314151617181920
  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. /* nothing */
  18. };