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 */
16 extern struct list_head microcode_cache
;
18 struct cpu_signature
{
34 struct microcode_ops
{
35 enum ucode_state (*request_microcode_user
) (int cpu
,
36 const void __user
*buf
, size_t size
);
38 enum ucode_state (*request_microcode_fw
) (int cpu
, struct device
*,
41 void (*microcode_fini_cpu
) (int cpu
);
44 * The generic 'microcode_core' part guarantees that
45 * the callbacks below run on a target cpu when they
47 * See also the "Synchronization" section in microcode_core.c.
49 enum ucode_state (*apply_microcode
) (int cpu
);
50 int (*collect_cpu_info
) (int cpu
, struct cpu_signature
*csig
);
53 struct ucode_cpu_info
{
54 struct cpu_signature cpu_sig
;
58 extern struct ucode_cpu_info ucode_cpu_info
[];
59 struct cpio_data
find_microcode_in_initrd(const char *path
, bool use_pa
);
61 #ifdef CONFIG_MICROCODE_INTEL
62 extern struct microcode_ops
* __init
init_intel_microcode(void);
64 static inline struct microcode_ops
* __init
init_intel_microcode(void)
68 #endif /* CONFIG_MICROCODE_INTEL */
70 #ifdef CONFIG_MICROCODE_AMD
71 extern struct microcode_ops
* __init
init_amd_microcode(void);
72 extern void __exit
exit_amd_microcode(void);
74 static inline struct microcode_ops
* __init
init_amd_microcode(void)
78 static inline void __exit
exit_amd_microcode(void) {}
81 #define MAX_UCODE_COUNT 128
83 #define QCHAR(a, b, c, d) ((a) + ((b) << 8) + ((c) << 16) + ((d) << 24))
84 #define CPUID_INTEL1 QCHAR('G', 'e', 'n', 'u')
85 #define CPUID_INTEL2 QCHAR('i', 'n', 'e', 'I')
86 #define CPUID_INTEL3 QCHAR('n', 't', 'e', 'l')
87 #define CPUID_AMD1 QCHAR('A', 'u', 't', 'h')
88 #define CPUID_AMD2 QCHAR('e', 'n', 't', 'i')
89 #define CPUID_AMD3 QCHAR('c', 'A', 'M', 'D')
91 #define CPUID_IS(a, b, c, ebx, ecx, edx) \
92 (!((ebx ^ (a))|(edx ^ (b))|(ecx ^ (c))))
95 * In early loading microcode phase on BSP, boot_cpu_data is not set up yet.
96 * x86_cpuid_vendor() gets vendor id for BSP.
98 * In 32 bit AP case, accessing boot_cpu_data needs linear address. To simplify
99 * coding, we still use x86_cpuid_vendor() to get vendor id for AP.
101 * x86_cpuid_vendor() gets vendor information directly from CPUID.
103 static inline int x86_cpuid_vendor(void)
105 u32 eax
= 0x00000000;
106 u32 ebx
, ecx
= 0, edx
;
108 native_cpuid(&eax
, &ebx
, &ecx
, &edx
);
110 if (CPUID_IS(CPUID_INTEL1
, CPUID_INTEL2
, CPUID_INTEL3
, ebx
, ecx
, edx
))
111 return X86_VENDOR_INTEL
;
113 if (CPUID_IS(CPUID_AMD1
, CPUID_AMD2
, CPUID_AMD3
, ebx
, ecx
, edx
))
114 return X86_VENDOR_AMD
;
116 return X86_VENDOR_UNKNOWN
;
119 static inline unsigned int x86_cpuid_family(void)
121 u32 eax
= 0x00000001;
122 u32 ebx
, ecx
= 0, edx
;
124 native_cpuid(&eax
, &ebx
, &ecx
, &edx
);
126 return x86_family(eax
);
129 #ifdef CONFIG_MICROCODE
130 int __init
microcode_init(void);
131 extern void __init
load_ucode_bsp(void);
132 extern void load_ucode_ap(void);
133 void reload_early_microcode(void);
134 extern bool get_builtin_firmware(struct cpio_data
*cd
, const char *name
);
135 extern bool initrd_gone
;
137 static inline int __init
microcode_init(void) { return 0; };
138 static inline void __init
load_ucode_bsp(void) { }
139 static inline void load_ucode_ap(void) { }
140 static inline void reload_early_microcode(void) { }
142 get_builtin_firmware(struct cpio_data
*cd
, const char *name
) { return false; }
145 #endif /* _ASM_X86_MICROCODE_H */