1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_MICROCODE_H
3 #define _ASM_X86_MICROCODE_H
6 #include <linux/earlycpio.h>
7 #include <linux/initrd.h>
10 struct list_head plist;
11 void *data; /* Intel uses only this one */
17 extern struct list_head microcode_cache;
19 struct cpu_signature {
35 struct microcode_ops {
36 enum ucode_state (*request_microcode_fw) (int cpu, struct device *);
38 void (*microcode_fini_cpu) (int cpu);
41 * The generic 'microcode_core' part guarantees that
42 * the callbacks below run on a target cpu when they
44 * See also the "Synchronization" section in microcode_core.c.
46 enum ucode_state (*apply_microcode) (int cpu);
47 int (*collect_cpu_info) (int cpu, struct cpu_signature *csig);
50 struct ucode_cpu_info {
51 struct cpu_signature cpu_sig;
54 extern struct ucode_cpu_info ucode_cpu_info[];
55 struct cpio_data find_microcode_in_initrd(const char *path, bool use_pa);
57 #ifdef CONFIG_MICROCODE_INTEL
58 extern struct microcode_ops * __init init_intel_microcode(void);
60 static inline struct microcode_ops * __init init_intel_microcode(void)
64 #endif /* CONFIG_MICROCODE_INTEL */
66 #ifdef CONFIG_MICROCODE_AMD
67 extern struct microcode_ops * __init init_amd_microcode(void);
68 extern void __exit exit_amd_microcode(void);
70 static inline struct microcode_ops * __init init_amd_microcode(void)
74 static inline void __exit exit_amd_microcode(void) {}
77 #define MAX_UCODE_COUNT 128
79 #define QCHAR(a, b, c, d) ((a) + ((b) << 8) + ((c) << 16) + ((d) << 24))
80 #define CPUID_INTEL1 QCHAR('G', 'e', 'n', 'u')
81 #define CPUID_INTEL2 QCHAR('i', 'n', 'e', 'I')
82 #define CPUID_INTEL3 QCHAR('n', 't', 'e', 'l')
83 #define CPUID_AMD1 QCHAR('A', 'u', 't', 'h')
84 #define CPUID_AMD2 QCHAR('e', 'n', 't', 'i')
85 #define CPUID_AMD3 QCHAR('c', 'A', 'M', 'D')
87 #define CPUID_IS(a, b, c, ebx, ecx, edx) \
88 (!((ebx ^ (a))|(edx ^ (b))|(ecx ^ (c))))
91 * In early loading microcode phase on BSP, boot_cpu_data is not set up yet.
92 * x86_cpuid_vendor() gets vendor id for BSP.
94 * In 32 bit AP case, accessing boot_cpu_data needs linear address. To simplify
95 * coding, we still use x86_cpuid_vendor() to get vendor id for AP.
97 * x86_cpuid_vendor() gets vendor information directly from CPUID.
99 static inline int x86_cpuid_vendor(void)
101 u32 eax = 0x00000000;
102 u32 ebx, ecx = 0, edx;
104 native_cpuid(&eax, &ebx, &ecx, &edx);
106 if (CPUID_IS(CPUID_INTEL1, CPUID_INTEL2, CPUID_INTEL3, ebx, ecx, edx))
107 return X86_VENDOR_INTEL;
109 if (CPUID_IS(CPUID_AMD1, CPUID_AMD2, CPUID_AMD3, ebx, ecx, edx))
110 return X86_VENDOR_AMD;
112 return X86_VENDOR_UNKNOWN;
115 static inline unsigned int x86_cpuid_family(void)
117 u32 eax = 0x00000001;
118 u32 ebx, ecx = 0, edx;
120 native_cpuid(&eax, &ebx, &ecx, &edx);
122 return x86_family(eax);
125 #ifdef CONFIG_MICROCODE
126 extern void __init load_ucode_bsp(void);
127 extern void load_ucode_ap(void);
128 void reload_early_microcode(unsigned int cpu);
129 extern bool initrd_gone;
130 void microcode_bsp_resume(void);
132 static inline void __init load_ucode_bsp(void) { }
133 static inline void load_ucode_ap(void) { }
134 static inline void reload_early_microcode(unsigned int cpu) { }
135 static inline void microcode_bsp_resume(void) { }
138 #endif /* _ASM_X86_MICROCODE_H */