powerflags.c 745 B

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