H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_MICROCODE_H |
| 2 | #define _ASM_X86_MICROCODE_H |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 3 | |
Borislav Petkov | 760d765 | 2015-03-18 19:28:56 +0100 | [diff] [blame] | 4 | #include <linux/earlycpio.h> |
| 5 | |
Borislav Petkov | e1b43e3 | 2013-12-04 12:31:31 +0100 | [diff] [blame] | 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 | |
| 13 | #define native_wrmsr(msr, low, high) \ |
| 14 | native_write_msr(msr, low, high) |
| 15 | |
| 16 | #define native_wrmsrl(msr, val) \ |
| 17 | native_write_msr((msr), \ |
| 18 | (u32)((u64)(val)), \ |
| 19 | (u32)((u64)(val) >> 32)) |
| 20 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 21 | struct cpu_signature { |
| 22 | unsigned int sig; |
| 23 | unsigned int pf; |
| 24 | unsigned int rev; |
| 25 | }; |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 26 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 27 | struct device; |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 28 | |
Dmitry Adamushko | 871b72d | 2009-05-11 23:48:27 +0200 | [diff] [blame] | 29 | enum ucode_state { UCODE_ERROR, UCODE_OK, UCODE_NFOUND }; |
Borislav Petkov | 65cef13 | 2014-05-19 20:59:17 +0200 | [diff] [blame] | 30 | extern bool dis_ucode_ldr; |
Dmitry Adamushko | 871b72d | 2009-05-11 23:48:27 +0200 | [diff] [blame] | 31 | |
Peter Oruba | 26bf7a4 | 2008-07-28 18:44:20 +0200 | [diff] [blame] | 32 | struct microcode_ops { |
Dmitry Adamushko | 871b72d | 2009-05-11 23:48:27 +0200 | [diff] [blame] | 33 | enum ucode_state (*request_microcode_user) (int cpu, |
| 34 | const void __user *buf, size_t size); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 35 | |
Borislav Petkov | 48e3068 | 2012-07-26 15:51:00 +0200 | [diff] [blame] | 36 | enum ucode_state (*request_microcode_fw) (int cpu, struct device *, |
| 37 | bool refresh_fw); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 38 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 39 | void (*microcode_fini_cpu) (int cpu); |
Dmitry Adamushko | 871b72d | 2009-05-11 23:48:27 +0200 | [diff] [blame] | 40 | |
| 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 Oruba | 26bf7a4 | 2008-07-28 18:44:20 +0200 | [diff] [blame] | 49 | }; |
| 50 | |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 51 | struct ucode_cpu_info { |
Dmitry Adamushko | 871b72d | 2009-05-11 23:48:27 +0200 | [diff] [blame] | 52 | struct cpu_signature cpu_sig; |
| 53 | int valid; |
| 54 | void *mc; |
Peter Oruba | c3b71bc | 2008-07-28 18:44:15 +0200 | [diff] [blame] | 55 | }; |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 56 | extern struct ucode_cpu_info ucode_cpu_info[]; |
| 57 | |
Borislav Petkov | 9a2bc33 | 2015-10-20 11:54:44 +0200 | [diff] [blame^] | 58 | #ifdef CONFIG_MICROCODE |
| 59 | int __init microcode_init(void); |
| 60 | #else |
| 61 | static inline int __init microcode_init(void) { return 0; }; |
| 62 | #endif |
| 63 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 64 | #ifdef CONFIG_MICROCODE_INTEL |
| 65 | extern struct microcode_ops * __init init_intel_microcode(void); |
| 66 | #else |
| 67 | static 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 |
| 74 | extern struct microcode_ops * __init init_amd_microcode(void); |
Borislav Petkov | f72c1a5 | 2011-12-02 16:50:04 +0100 | [diff] [blame] | 75 | extern void __exit exit_amd_microcode(void); |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 76 | #else |
| 77 | static inline struct microcode_ops * __init init_amd_microcode(void) |
| 78 | { |
| 79 | return NULL; |
| 80 | } |
Borislav Petkov | f72c1a5 | 2011-12-02 16:50:04 +0100 | [diff] [blame] | 81 | static inline void __exit exit_amd_microcode(void) {} |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 82 | #endif |
| 83 | |
Fenghua Yu | a8ebf6d | 2012-12-20 23:44:25 -0800 | [diff] [blame] | 84 | #ifdef CONFIG_MICROCODE_EARLY |
| 85 | #define MAX_UCODE_COUNT 128 |
Borislav Petkov | 58ce8d6 | 2015-02-09 21:42:34 +0100 | [diff] [blame] | 86 | |
| 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. |
| 100 | * x86_vendor() gets vendor id for BSP. |
| 101 | * |
| 102 | * In 32 bit AP case, accessing boot_cpu_data needs linear address. To simplify |
| 103 | * coding, we still use x86_vendor() to get vendor id for AP. |
| 104 | * |
| 105 | * x86_vendor() gets vendor information directly from CPUID. |
| 106 | */ |
| 107 | static inline int x86_vendor(void) |
| 108 | { |
| 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 | |
| 123 | static inline unsigned int __x86_family(unsigned int sig) |
| 124 | { |
| 125 | unsigned int x86; |
| 126 | |
| 127 | x86 = (sig >> 8) & 0xf; |
| 128 | |
| 129 | if (x86 == 0xf) |
| 130 | x86 += (sig >> 20) & 0xff; |
| 131 | |
| 132 | return x86; |
| 133 | } |
| 134 | |
| 135 | static inline unsigned int x86_family(void) |
| 136 | { |
| 137 | u32 eax = 0x00000001; |
| 138 | u32 ebx, ecx = 0, edx; |
| 139 | |
| 140 | native_cpuid(&eax, &ebx, &ecx, &edx); |
| 141 | |
| 142 | return __x86_family(eax); |
| 143 | } |
| 144 | |
| 145 | static inline unsigned int x86_model(unsigned int sig) |
| 146 | { |
| 147 | unsigned int x86, model; |
| 148 | |
| 149 | x86 = __x86_family(sig); |
| 150 | |
| 151 | model = (sig >> 4) & 0xf; |
| 152 | |
| 153 | if (x86 == 0x6 || x86 == 0xf) |
| 154 | model += ((sig >> 16) & 0xf) << 4; |
| 155 | |
| 156 | return model; |
| 157 | } |
| 158 | |
Fenghua Yu | a8ebf6d | 2012-12-20 23:44:25 -0800 | [diff] [blame] | 159 | extern void __init load_ucode_bsp(void); |
Paul Gortmaker | 148f9bb | 2013-06-18 18:23:59 -0400 | [diff] [blame] | 160 | extern void load_ucode_ap(void); |
Fenghua Yu | a8ebf6d | 2012-12-20 23:44:25 -0800 | [diff] [blame] | 161 | extern int __init save_microcode_in_initrd(void); |
Borislav Petkov | fbae4ba | 2014-12-03 17:21:41 +0100 | [diff] [blame] | 162 | void reload_early_microcode(void); |
Borislav Petkov | 760d765 | 2015-03-18 19:28:56 +0100 | [diff] [blame] | 163 | extern bool get_builtin_firmware(struct cpio_data *cd, const char *name); |
Fenghua Yu | a8ebf6d | 2012-12-20 23:44:25 -0800 | [diff] [blame] | 164 | #else |
| 165 | static inline void __init load_ucode_bsp(void) {} |
Paul Gortmaker | 148f9bb | 2013-06-18 18:23:59 -0400 | [diff] [blame] | 166 | static inline void load_ucode_ap(void) {} |
Fenghua Yu | a8ebf6d | 2012-12-20 23:44:25 -0800 | [diff] [blame] | 167 | static inline int __init save_microcode_in_initrd(void) |
| 168 | { |
| 169 | return 0; |
| 170 | } |
Borislav Petkov | fbae4ba | 2014-12-03 17:21:41 +0100 | [diff] [blame] | 171 | static inline void reload_early_microcode(void) {} |
Borislav Petkov | 760d765 | 2015-03-18 19:28:56 +0100 | [diff] [blame] | 172 | static inline bool get_builtin_firmware(struct cpio_data *cd, const char *name) |
| 173 | { |
| 174 | return false; |
| 175 | } |
Fenghua Yu | a8ebf6d | 2012-12-20 23:44:25 -0800 | [diff] [blame] | 176 | #endif |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 177 | #endif /* _ASM_X86_MICROCODE_H */ |