scattered.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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_CAT_L3, CPUID_EBX, 1, 0x00000010, 0 },
  21. { X86_FEATURE_CAT_L2, CPUID_EBX, 2, 0x00000010, 0 },
  22. { X86_FEATURE_CDP_L3, CPUID_ECX, 2, 0x00000010, 1 },
  23. { X86_FEATURE_CDP_L2, CPUID_ECX, 2, 0x00000010, 2 },
  24. { X86_FEATURE_MBA, CPUID_EBX, 3, 0x00000010, 0 },
  25. { X86_FEATURE_HW_PSTATE, CPUID_EDX, 7, 0x80000007, 0 },
  26. { X86_FEATURE_CPB, CPUID_EDX, 9, 0x80000007, 0 },
  27. { X86_FEATURE_PROC_FEEDBACK, CPUID_EDX, 11, 0x80000007, 0 },
  28. { X86_FEATURE_SME, CPUID_EAX, 0, 0x8000001f, 0 },
  29. { X86_FEATURE_SEV, CPUID_EAX, 1, 0x8000001f, 0 },
  30. { 0, 0, 0, 0, 0 }
  31. };
  32. void init_scattered_cpuid_features(struct cpuinfo_x86 *c)
  33. {
  34. u32 max_level;
  35. u32 regs[4];
  36. const struct cpuid_bit *cb;
  37. for (cb = cpuid_bits; cb->feature; cb++) {
  38. /* Verify that the level is valid */
  39. max_level = cpuid_eax(cb->level & 0xffff0000);
  40. if (max_level < cb->level ||
  41. max_level > (cb->level | 0xffff))
  42. continue;
  43. cpuid_count(cb->level, cb->sub_leaf, &regs[CPUID_EAX],
  44. &regs[CPUID_EBX], &regs[CPUID_ECX],
  45. &regs[CPUID_EDX]);
  46. if (regs[cb->reg] & (1 << cb->bit))
  47. set_cpu_cap(c, cb->feature);
  48. }
  49. }
  50. u32 get_scattered_cpuid_leaf(unsigned int level, unsigned int sub_leaf,
  51. enum cpuid_regs_idx reg)
  52. {
  53. const struct cpuid_bit *cb;
  54. u32 cpuid_val = 0;
  55. for (cb = cpuid_bits; cb->feature; cb++) {
  56. if (level > cb->level)
  57. continue;
  58. if (level < cb->level)
  59. break;
  60. if (reg == cb->reg && sub_leaf == cb->sub_leaf) {
  61. if (cpu_has(&boot_cpu_data, cb->feature))
  62. cpuid_val |= BIT(cb->bit);
  63. }
  64. }
  65. return cpuid_val;
  66. }
  67. EXPORT_SYMBOL_GPL(get_scattered_cpuid_leaf);