blob: 1e1b07a5a7388d45eaaf46e032efd8ee14569662 [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>
6
Borislav Petkove1b43e32013-12-04 12:31:31 +01007#define native_rdmsr(msr, val1, val2) \
8do { \
9 u64 __val = native_read_msr((msr)); \
10 (void)((val1) = (u32)__val); \
11 (void)((val2) = (u32)(__val >> 32)); \
12} while (0)
13
14#define native_wrmsr(msr, low, high) \
15 native_write_msr(msr, low, high)
16
17#define native_wrmsrl(msr, val) \
18 native_write_msr((msr), \
19 (u32)((u64)(val)), \
20 (u32)((u64)(val) >> 32))
21
Dmitry Adamushko18dbc912008-09-23 12:08:44 +020022struct cpu_signature {
23 unsigned int sig;
24 unsigned int pf;
25 unsigned int rev;
26};
Peter Oruba8d86f392008-07-28 18:44:21 +020027
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +020028struct device;
Dmitry Adamushkod45de402008-08-20 00:22:26 +020029
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020030enum ucode_state { UCODE_ERROR, UCODE_OK, UCODE_NFOUND };
31
Peter Oruba26bf7a42008-07-28 18:44:20 +020032struct microcode_ops {
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020033 enum ucode_state (*request_microcode_user) (int cpu,
34 const void __user *buf, size_t size);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +020035
Borislav Petkov48e30682012-07-26 15:51:00 +020036 enum ucode_state (*request_microcode_fw) (int cpu, struct device *,
37 bool refresh_fw);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +020038
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +020039 void (*microcode_fini_cpu) (int cpu);
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020040
41 /*
42 * The generic 'microcode_core' part guarantees that
43 * the callbacks below run on a target cpu when they
44 * are being called.
45 * See also the "Synchronization" section in microcode_core.c.
46 */
47 int (*apply_microcode) (int cpu);
48 int (*collect_cpu_info) (int cpu, struct cpu_signature *csig);
Peter Oruba26bf7a42008-07-28 18:44:20 +020049};
50
Dmitry Adamushkod45de402008-08-20 00:22:26 +020051struct ucode_cpu_info {
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020052 struct cpu_signature cpu_sig;
53 int valid;
54 void *mc;
Peter Orubac3b71bc2008-07-28 18:44:15 +020055};
Dmitry Adamushkod45de402008-08-20 00:22:26 +020056extern struct ucode_cpu_info ucode_cpu_info[];
57
Borislav Petkov9a2bc332015-10-20 11:54:44 +020058#ifdef CONFIG_MICROCODE
59int __init microcode_init(void);
60#else
61static inline int __init microcode_init(void) { return 0; };
62#endif
63
Dmitry Adamushko18dbc912008-09-23 12:08:44 +020064#ifdef CONFIG_MICROCODE_INTEL
65extern struct microcode_ops * __init init_intel_microcode(void);
66#else
67static inline struct microcode_ops * __init init_intel_microcode(void)
68{
69 return NULL;
70}
71#endif /* CONFIG_MICROCODE_INTEL */
72
73#ifdef CONFIG_MICROCODE_AMD
74extern struct microcode_ops * __init init_amd_microcode(void);
Borislav Petkovf72c1a52011-12-02 16:50:04 +010075extern void __exit exit_amd_microcode(void);
Dmitry Adamushko18dbc912008-09-23 12:08:44 +020076#else
77static inline struct microcode_ops * __init init_amd_microcode(void)
78{
79 return NULL;
80}
Borislav Petkovf72c1a52011-12-02 16:50:04 +010081static inline void __exit exit_amd_microcode(void) {}
Dmitry Adamushko18dbc912008-09-23 12:08:44 +020082#endif
83
Fenghua Yua8ebf6d2012-12-20 23:44:25 -080084#define MAX_UCODE_COUNT 128
Borislav Petkov58ce8d62015-02-09 21:42:34 +010085
86#define QCHAR(a, b, c, d) ((a) + ((b) << 8) + ((c) << 16) + ((d) << 24))
87#define CPUID_INTEL1 QCHAR('G', 'e', 'n', 'u')
88#define CPUID_INTEL2 QCHAR('i', 'n', 'e', 'I')
89#define CPUID_INTEL3 QCHAR('n', 't', 'e', 'l')
90#define CPUID_AMD1 QCHAR('A', 'u', 't', 'h')
91#define CPUID_AMD2 QCHAR('e', 'n', 't', 'i')
92#define CPUID_AMD3 QCHAR('c', 'A', 'M', 'D')
93
94#define CPUID_IS(a, b, c, ebx, ecx, edx) \
95 (!((ebx ^ (a))|(edx ^ (b))|(ecx ^ (c))))
96
97/*
98 * In early loading microcode phase on BSP, boot_cpu_data is not set up yet.
Borislav Petkov99f925c2015-11-23 11:12:21 +010099 * x86_cpuid_vendor() gets vendor id for BSP.
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100100 *
101 * In 32 bit AP case, accessing boot_cpu_data needs linear address. To simplify
Borislav Petkov99f925c2015-11-23 11:12:21 +0100102 * coding, we still use x86_cpuid_vendor() to get vendor id for AP.
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100103 *
Borislav Petkov99f925c2015-11-23 11:12:21 +0100104 * x86_cpuid_vendor() gets vendor information directly from CPUID.
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100105 */
Borislav Petkov99f925c2015-11-23 11:12:21 +0100106static inline int x86_cpuid_vendor(void)
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100107{
108 u32 eax = 0x00000000;
109 u32 ebx, ecx = 0, edx;
110
111 native_cpuid(&eax, &ebx, &ecx, &edx);
112
113 if (CPUID_IS(CPUID_INTEL1, CPUID_INTEL2, CPUID_INTEL3, ebx, ecx, edx))
114 return X86_VENDOR_INTEL;
115
116 if (CPUID_IS(CPUID_AMD1, CPUID_AMD2, CPUID_AMD3, ebx, ecx, edx))
117 return X86_VENDOR_AMD;
118
119 return X86_VENDOR_UNKNOWN;
120}
121
Borislav Petkov99f925c2015-11-23 11:12:21 +0100122static inline unsigned int x86_cpuid_family(void)
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100123{
124 u32 eax = 0x00000001;
125 u32 ebx, ecx = 0, edx;
126
127 native_cpuid(&eax, &ebx, &ecx, &edx);
128
Borislav Petkov99f925c2015-11-23 11:12:21 +0100129 return x86_family(eax);
Borislav Petkov58ce8d62015-02-09 21:42:34 +0100130}
131
Borislav Petkovfe055892015-10-20 11:54:45 +0200132#ifdef CONFIG_MICROCODE
Fenghua Yua8ebf6d2012-12-20 23:44:25 -0800133extern void __init load_ucode_bsp(void);
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400134extern void load_ucode_ap(void);
Fenghua Yua8ebf6d2012-12-20 23:44:25 -0800135extern int __init save_microcode_in_initrd(void);
Borislav Petkovfbae4ba2014-12-03 17:21:41 +0100136void reload_early_microcode(void);
Borislav Petkov760d7652015-03-18 19:28:56 +0100137extern bool get_builtin_firmware(struct cpio_data *cd, const char *name);
Fenghua Yua8ebf6d2012-12-20 23:44:25 -0800138#else
Borislav Petkovfe055892015-10-20 11:54:45 +0200139static inline void __init load_ucode_bsp(void) { }
140static inline void load_ucode_ap(void) { }
141static inline int __init save_microcode_in_initrd(void) { return 0; }
142static inline void reload_early_microcode(void) { }
143static inline bool
144get_builtin_firmware(struct cpio_data *cd, const char *name) { return false; }
Fenghua Yua8ebf6d2012-12-20 23:44:25 -0800145#endif
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700146#endif /* _ASM_X86_MICROCODE_H */