microcode.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. #ifndef _ASM_X86_MICROCODE_H
  2. #define _ASM_X86_MICROCODE_H
  3. #include <asm/cpu.h>
  4. #include <linux/earlycpio.h>
  5. #include <linux/initrd.h>
  6. #define native_rdmsr(msr, val1, val2) \
  7. do { \
  8. u64 __val = native_read_msr((msr)); \
  9. (void)((val1) = (u32)__val); \
  10. (void)((val2) = (u32)(__val >> 32)); \
  11. } while (0)
  12. #define native_wrmsr(msr, low, high) \
  13. native_write_msr(msr, low, high)
  14. #define native_wrmsrl(msr, val) \
  15. native_write_msr((msr), \
  16. (u32)((u64)(val)), \
  17. (u32)((u64)(val) >> 32))
  18. struct cpu_signature {
  19. unsigned int sig;
  20. unsigned int pf;
  21. unsigned int rev;
  22. };
  23. struct device;
  24. enum ucode_state { UCODE_ERROR, UCODE_OK, UCODE_NFOUND };
  25. struct microcode_ops {
  26. enum ucode_state (*request_microcode_user) (int cpu,
  27. const void __user *buf, size_t size);
  28. enum ucode_state (*request_microcode_fw) (int cpu, struct device *,
  29. bool refresh_fw);
  30. void (*microcode_fini_cpu) (int cpu);
  31. /*
  32. * The generic 'microcode_core' part guarantees that
  33. * the callbacks below run on a target cpu when they
  34. * are being called.
  35. * See also the "Synchronization" section in microcode_core.c.
  36. */
  37. int (*apply_microcode) (int cpu);
  38. int (*collect_cpu_info) (int cpu, struct cpu_signature *csig);
  39. };
  40. struct ucode_cpu_info {
  41. struct cpu_signature cpu_sig;
  42. int valid;
  43. void *mc;
  44. };
  45. extern struct ucode_cpu_info ucode_cpu_info[];
  46. #ifdef CONFIG_MICROCODE
  47. int __init microcode_init(void);
  48. #else
  49. static inline int __init microcode_init(void) { return 0; };
  50. #endif
  51. #ifdef CONFIG_MICROCODE_INTEL
  52. extern struct microcode_ops * __init init_intel_microcode(void);
  53. #else
  54. static inline struct microcode_ops * __init init_intel_microcode(void)
  55. {
  56. return NULL;
  57. }
  58. #endif /* CONFIG_MICROCODE_INTEL */
  59. #ifdef CONFIG_MICROCODE_AMD
  60. extern struct microcode_ops * __init init_amd_microcode(void);
  61. extern void __exit exit_amd_microcode(void);
  62. #else
  63. static inline struct microcode_ops * __init init_amd_microcode(void)
  64. {
  65. return NULL;
  66. }
  67. static inline void __exit exit_amd_microcode(void) {}
  68. #endif
  69. #define MAX_UCODE_COUNT 128
  70. #define QCHAR(a, b, c, d) ((a) + ((b) << 8) + ((c) << 16) + ((d) << 24))
  71. #define CPUID_INTEL1 QCHAR('G', 'e', 'n', 'u')
  72. #define CPUID_INTEL2 QCHAR('i', 'n', 'e', 'I')
  73. #define CPUID_INTEL3 QCHAR('n', 't', 'e', 'l')
  74. #define CPUID_AMD1 QCHAR('A', 'u', 't', 'h')
  75. #define CPUID_AMD2 QCHAR('e', 'n', 't', 'i')
  76. #define CPUID_AMD3 QCHAR('c', 'A', 'M', 'D')
  77. #define CPUID_IS(a, b, c, ebx, ecx, edx) \
  78. (!((ebx ^ (a))|(edx ^ (b))|(ecx ^ (c))))
  79. /*
  80. * In early loading microcode phase on BSP, boot_cpu_data is not set up yet.
  81. * x86_cpuid_vendor() gets vendor id for BSP.
  82. *
  83. * In 32 bit AP case, accessing boot_cpu_data needs linear address. To simplify
  84. * coding, we still use x86_cpuid_vendor() to get vendor id for AP.
  85. *
  86. * x86_cpuid_vendor() gets vendor information directly from CPUID.
  87. */
  88. static inline int x86_cpuid_vendor(void)
  89. {
  90. u32 eax = 0x00000000;
  91. u32 ebx, ecx = 0, edx;
  92. native_cpuid(&eax, &ebx, &ecx, &edx);
  93. if (CPUID_IS(CPUID_INTEL1, CPUID_INTEL2, CPUID_INTEL3, ebx, ecx, edx))
  94. return X86_VENDOR_INTEL;
  95. if (CPUID_IS(CPUID_AMD1, CPUID_AMD2, CPUID_AMD3, ebx, ecx, edx))
  96. return X86_VENDOR_AMD;
  97. return X86_VENDOR_UNKNOWN;
  98. }
  99. static inline unsigned int x86_cpuid_family(void)
  100. {
  101. u32 eax = 0x00000001;
  102. u32 ebx, ecx = 0, edx;
  103. native_cpuid(&eax, &ebx, &ecx, &edx);
  104. return x86_family(eax);
  105. }
  106. #ifdef CONFIG_MICROCODE
  107. extern void __init load_ucode_bsp(void);
  108. extern void load_ucode_ap(void);
  109. void reload_early_microcode(void);
  110. extern bool get_builtin_firmware(struct cpio_data *cd, const char *name);
  111. #else
  112. static inline void __init load_ucode_bsp(void) { }
  113. static inline void load_ucode_ap(void) { }
  114. static inline void reload_early_microcode(void) { }
  115. static inline bool
  116. get_builtin_firmware(struct cpio_data *cd, const char *name) { return false; }
  117. #endif
  118. #endif /* _ASM_X86_MICROCODE_H */