blob: 9d3a96c4da789230f9aeb523e6af35e4fe4a8db3 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_MICROCODE_H
2#define _ASM_X86_MICROCODE_H
Dmitry Adamushkod45de402008-08-20 00:22:26 +02003
Borislav Petkov99f925c2015-11-23 11:12:21 +01004#include <asm/cpu.h>
Borislav Petkov760d7652015-03-18 19:28:56 +01005#include <linux/earlycpio.h>
Borislav Petkov5f9c01a2016-02-03 12:33:29 +01006#include <linux/initrd.h>
Borislav Petkov760d7652015-03-18 19:28:56 +01007
Borislav Petkove1b43e32013-12-04 12:31:31 +01008#define native_rdmsr(msr, val1, val2) \
9do { \
10 u64 __val = native_read_msr((msr)); \
11 (void)((val1) = (u32)__val); \
12 (void)((val2) = (u32)(__val >> 32)); \
13} while (0)
14
15#define native_wrmsr(msr, low, high) \
16 native_write_msr(msr, low, high)
17
18#define native_wrmsrl(msr, val) \
19 native_write_msr((msr), \
20 (u32)((u64)(val)), \
21 (u32)((u64)(val) >> 32))
22
Dmitry Adamushko18dbc912008-09-23 12:08:44 +020023struct cpu_signature {
24 unsigned int sig;
25 unsigned int pf;
26 unsigned int rev;
27};
Peter Oruba8d86f392008-07-28 18:44:21 +020028
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +020029struct device;
Dmitry Adamushkod45de402008-08-20 00:22:26 +020030
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020031enum ucode_state { UCODE_ERROR, UCODE_OK, UCODE_NFOUND };
32
Peter Oruba26bf7a42008-07-28 18:44:20 +020033struct microcode_ops {
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020034 enum ucode_state (*request_microcode_user) (int cpu,
35 const void __user *buf, size_t size);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +020036
Borislav Petkov48e30682012-07-26 15:51:00 +020037 enum ucode_state (*request_microcode_fw) (int cpu, struct device *,
38 bool refresh_fw);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +020039
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +020040 void (*microcode_fini_cpu) (int cpu);
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020041
42 /*
43 * The generic 'microcode_core' part guarantees that
44 * the callbacks below run on a target cpu when they
45 * are being called.
46 * See also the "Synchronization" section in microcode_core.c.
47 */
48 int (*apply_microcode) (int cpu);
49 int (*collect_cpu_info) (int cpu, struct cpu_signature *csig);
Peter Oruba26bf7a42008-07-28 18:44:20 +020050};
51
Dmitry Adamushkod45de402008-08-20 00:22:26 +020052struct ucode_cpu_info {
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020053 struct cpu_signature cpu_sig;
54 int valid;
55 void *mc;
Peter Orubac3b71bc2008-07-28 18:44:15 +020056};
Dmitry Adamushkod45de402008-08-20 00:22:26 +020057extern struct ucode_cpu_info ucode_cpu_info[];
58
Borislav Petkov9a2bc332015-10-20 11:54:44 +020059#ifdef CONFIG_MICROCODE
60int __init microcode_init(void);
61#else
62static inline int __init microcode_init(void) { return 0; };
63#endif
64
Dmitry Adamushko18dbc912008-09-23 12:08:44 +020065#ifdef CONFIG_MICROCODE_INTEL
66extern struct microcode_ops * __init init_intel_microcode(void);
67#else
68static inline struct microcode_ops * __init init_intel_microcode(void)
69{
70 return NULL;
71}
72#endif /* CONFIG_MICROCODE_INTEL */
73
74#ifdef CONFIG_MICROCODE_AMD
75extern struct microcode_ops * __init init_amd_microcode(void);
Borislav Petkovf72c1a52011-12-02 16:50:04 +010076extern void __exit exit_amd_microcode(void);
Dmitry Adamushko18dbc912008-09-23 12:08:44 +020077#else
78static inline struct microcode_ops * __init init_amd_microcode(void)
79{
80 return NULL;
81}
Borislav Petkovf72c1a52011-12-02 16:50:04 +010082static inline void __exit exit_amd_microcode(void) {}
Dmitry Adamushko18dbc912008-09-23 12:08:44 +020083#endif
84
Fenghua Yua8ebf6d2012-12-20 23:44:25 -080085#define MAX_UCODE_COUNT 128
Borislav Petkov58ce8d62015-02-09 21:42:34 +010086
87#define QCHAR(a, b, c, d) ((a) + ((b) << 8) + ((c) << 16) + ((d) << 24))
88#define CPUID_INTEL1 QCHAR('G', 'e', 'n', 'u')
89#define CPUID_INTEL2 QCHAR('i', 'n', 'e', 'I')
90#define CPUID_INTEL3 QCHAR('n', 't', 'e', 'l')
91#define CPUID_AMD1 QCHAR('A', 'u', 't', 'h')
92#define CPUID_AMD2 QCHAR('e', 'n', 't', 'i')
93#define CPUID_AMD3 QCHAR('c', 'A', 'M', 'D')
94
95#define CPUID_IS(a, b, c, ebx, ecx, edx) \
96 (!((ebx ^ (a))|(edx ^ (b))|(ecx ^ (c))))
97
98/*
99 * In early loading microcode phase on BSP, boot_cpu_data is not set up yet.
Borislav Petkov99f925c2015-11-23 11:12:21 +0100100 * x86_cpuid_vendor() gets vendor id for BSP.
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100101 *
102 * In 32 bit AP case, accessing boot_cpu_data needs linear address. To simplify
Borislav Petkov99f925c2015-11-23 11:12:21 +0100103 * coding, we still use x86_cpuid_vendor() to get vendor id for AP.
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100104 *
Borislav Petkov99f925c2015-11-23 11:12:21 +0100105 * x86_cpuid_vendor() gets vendor information directly from CPUID.
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100106 */
Borislav Petkov99f925c2015-11-23 11:12:21 +0100107static inline int x86_cpuid_vendor(void)
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100108{
109 u32 eax = 0x00000000;
110 u32 ebx, ecx = 0, edx;
111
112 native_cpuid(&eax, &ebx, &ecx, &edx);
113
114 if (CPUID_IS(CPUID_INTEL1, CPUID_INTEL2, CPUID_INTEL3, ebx, ecx, edx))
115 return X86_VENDOR_INTEL;
116
117 if (CPUID_IS(CPUID_AMD1, CPUID_AMD2, CPUID_AMD3, ebx, ecx, edx))
118 return X86_VENDOR_AMD;
119
120 return X86_VENDOR_UNKNOWN;
121}
122
Borislav Petkov99f925c2015-11-23 11:12:21 +0100123static inline unsigned int x86_cpuid_family(void)
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100124{
125 u32 eax = 0x00000001;
126 u32 ebx, ecx = 0, edx;
127
128 native_cpuid(&eax, &ebx, &ecx, &edx);
129
Borislav Petkov99f925c2015-11-23 11:12:21 +0100130 return x86_family(eax);
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100131}
132
Borislav Petkovfe055892015-10-20 11:54:45 +0200133#ifdef CONFIG_MICROCODE
Fenghua Yua8ebf6d2012-12-20 23:44:25 -0800134extern void __init load_ucode_bsp(void);
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400135extern void load_ucode_ap(void);
Fenghua Yua8ebf6d2012-12-20 23:44:25 -0800136extern int __init save_microcode_in_initrd(void);
Borislav Petkovfbae4ba2014-12-03 17:21:41 +0100137void reload_early_microcode(void);
Borislav Petkov760d7652015-03-18 19:28:56 +0100138extern bool get_builtin_firmware(struct cpio_data *cd, const char *name);
Fenghua Yua8ebf6d2012-12-20 23:44:25 -0800139#else
Borislav Petkovfe055892015-10-20 11:54:45 +0200140static inline void __init load_ucode_bsp(void) { }
141static inline void load_ucode_ap(void) { }
142static inline int __init save_microcode_in_initrd(void) { return 0; }
143static inline void reload_early_microcode(void) { }
144static inline bool
145get_builtin_firmware(struct cpio_data *cd, const char *name) { return false; }
Fenghua Yua8ebf6d2012-12-20 23:44:25 -0800146#endif
Borislav Petkov5f9c01a2016-02-03 12:33:29 +0100147
148static inline unsigned long get_initrd_start(void)
149{
150#ifdef CONFIG_BLK_DEV_INITRD
151 return initrd_start;
152#else
153 return 0;
154#endif
155}
156
157static inline unsigned long get_initrd_start_addr(void)
158{
159#ifdef CONFIG_BLK_DEV_INITRD
160#ifdef CONFIG_X86_32
161 unsigned long *initrd_start_p = (unsigned long *)__pa_nodebug(&initrd_start);
162
163 return (unsigned long)__pa_nodebug(*initrd_start_p);
164#else
165 return get_initrd_start();
166#endif
167#else /* CONFIG_BLK_DEV_INITRD */
168 return 0;
169#endif
170}
171
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700172#endif /* _ASM_X86_MICROCODE_H */