scattered.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Routines to identify additional cpu features that are scattered in
  3. * cpuid space.
  4. */
  5. #include <linux/cpu.h>
  6. #include <asm/pat.h>
  7. #include <asm/processor.h>
  8. #include <asm/apic.h>
  9. struct cpuid_bit {
  10. u16 feature;
  11. u8 reg;
  12. u8 bit;
  13. u32 level;
  14. u32 sub_leaf;
  15. };
  16. /* Please keep the leaf sorted by cpuid_bit.level for faster search. */
  17. static const struct cpuid_bit cpuid_bits[] = {
  18. { X86_FEATURE_APERFMPERF, CPUID_ECX, 0, 0x00000006, 0 },
  19. { X86_FEATURE_EPB, CPUID_ECX, 3, 0x00000006, 0 },
  20. { X86_FEATURE_INTEL_PT, CPUID_EBX, 25, 0x00000007, 0 },
  21. { X86_FEATURE_AVX512_4VNNIW, CPUID_EDX, 2, 0x00000007, 0 },
  22. { X86_FEATURE_AVX512_4FMAPS, CPUID_EDX, 3, 0x00000007, 0 },
  23. { X86_FEATURE_CAT_L3, CPUID_EBX, 1, 0x00000010, 0 },
  24. { X86_FEATURE_CAT_L2, CPUID_EBX, 2, 0x00000010, 0 },
  25. { X86_FEATURE_CDP_L3, CPUID_ECX, 2, 0x00000010, 1 },
  26. { X86_FEATURE_HW_PSTATE, CPUID_EDX, 7, 0x80000007, 0 },
  27. { X86_FEATURE_CPB, CPUID_EDX, 9, 0x80000007, 0 },
  28. { X86_FEATURE_PROC_FEEDBACK, CPUID_EDX, 11, 0x80000007, 0 },
  29. { 0, 0, 0, 0, 0 }
  30. };
  31. void init_scattered_cpuid_features(struct cpuinfo_x86 *c)
  32. {
  33. u32 max_level;
  34. u32 regs[4];
  35. const struct cpuid_bit *cb;
  36. for (cb = cpuid_bits; cb->feature; cb++) {
  37. /* Verify that the level is valid */
  38. max_level = cpuid_eax(cb->level & 0xffff0000);
  39. if (max_level < cb->level ||
  40. max_level > (cb->level | 0xffff))
  41. continue;
  42. cpuid_count(cb->level, cb->sub_leaf, &regs[CPUID_EAX],
  43. &regs[CPUID_EBX], &regs[CPUID_ECX],
  44. &regs[CPUID_EDX]);
  45. if (regs[cb->reg] & (1 << cb->bit))
  46. set_cpu_cap(c, cb->feature);
  47. }
  48. }
  49. u32 get_scattered_cpuid_leaf(unsigned int level, unsigned int sub_leaf,
  50. enum cpuid_regs_idx reg)
  51. {
  52. const struct cpuid_bit *cb;
  53. u32 cpuid_val = 0;
  54. for (cb = cpuid_bits; cb->feature; cb++) {
  55. if (level > cb->level)
  56. continue;
  57. if (level < cb->level)
  58. break;
  59. if (reg == cb->reg && sub_leaf == cb->sub_leaf) {
  60. if (cpu_has(&boot_cpu_data, cb->feature))
  61. cpuid_val |= BIT(cb->bit);
  62. }
  63. }
  64. return cpuid_val;
  65. }
  66. EXPORT_SYMBOL_GPL(get_scattered_cpuid_leaf);