Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Intel CPU Microcode Update Driver for Linux |
| 3 | * |
Tigran Aivazian | 6968826 | 2006-12-13 00:35:14 -0800 | [diff] [blame] | 4 | * Copyright (C) 2000-2006 Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 5 | * 2006 Shaohua Li <shaohua.li@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * This driver allows to upgrade microcode on Intel processors |
Ben Castricum | bc4e0f9 | 2008-06-10 13:15:12 +0200 | [diff] [blame] | 8 | * belonging to IA-32 family - PentiumPro, Pentium II, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * Pentium III, Xeon, Pentium 4, etc. |
| 10 | * |
Ben Castricum | bc4e0f9 | 2008-06-10 13:15:12 +0200 | [diff] [blame] | 11 | * Reference: Section 8.11 of Volume 3a, IA-32 Intel? Architecture |
| 12 | * Software Developer's Manual |
| 13 | * Order Number 253668 or free download from: |
| 14 | * |
| 15 | * http://developer.intel.com/design/pentium4/manuals/253668.htm |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * |
| 17 | * For more information, go to http://www.urbanmyth.org/microcode |
| 18 | * |
| 19 | * This program is free software; you can redistribute it and/or |
| 20 | * modify it under the terms of the GNU General Public License |
| 21 | * as published by the Free Software Foundation; either version |
| 22 | * 2 of the License, or (at your option) any later version. |
| 23 | * |
| 24 | * 1.0 16 Feb 2000, Tigran Aivazian <tigran@sco.com> |
| 25 | * Initial release. |
| 26 | * 1.01 18 Feb 2000, Tigran Aivazian <tigran@sco.com> |
| 27 | * Added read() support + cleanups. |
| 28 | * 1.02 21 Feb 2000, Tigran Aivazian <tigran@sco.com> |
| 29 | * Added 'device trimming' support. open(O_WRONLY) zeroes |
| 30 | * and frees the saved copy of applied microcode. |
| 31 | * 1.03 29 Feb 2000, Tigran Aivazian <tigran@sco.com> |
| 32 | * Made to use devfs (/dev/cpu/microcode) + cleanups. |
| 33 | * 1.04 06 Jun 2000, Simon Trimmer <simon@veritas.com> |
| 34 | * Added misc device support (now uses both devfs and misc). |
| 35 | * Added MICROCODE_IOCFREE ioctl to clear memory. |
| 36 | * 1.05 09 Jun 2000, Simon Trimmer <simon@veritas.com> |
| 37 | * Messages for error cases (non Intel & no suitable microcode). |
| 38 | * 1.06 03 Aug 2000, Tigran Aivazian <tigran@veritas.com> |
| 39 | * Removed ->release(). Removed exclusive open and status bitmap. |
| 40 | * Added microcode_rwsem to serialize read()/write()/ioctl(). |
| 41 | * Removed global kernel lock usage. |
| 42 | * 1.07 07 Sep 2000, Tigran Aivazian <tigran@veritas.com> |
| 43 | * Write 0 to 0x8B msr and then cpuid before reading revision, |
| 44 | * so that it works even if there were no update done by the |
| 45 | * BIOS. Otherwise, reading from 0x8B gives junk (which happened |
| 46 | * to be 0 on my machine which is why it worked even when I |
| 47 | * disabled update by the BIOS) |
| 48 | * Thanks to Eric W. Biederman <ebiederman@lnxi.com> for the fix. |
| 49 | * 1.08 11 Dec 2000, Richard Schaal <richard.schaal@intel.com> and |
| 50 | * Tigran Aivazian <tigran@veritas.com> |
| 51 | * Intel Pentium 4 processor support and bugfixes. |
| 52 | * 1.09 30 Oct 2001, Tigran Aivazian <tigran@veritas.com> |
| 53 | * Bugfix for HT (Hyper-Threading) enabled processors |
| 54 | * whereby processor resources are shared by all logical processors |
| 55 | * in a single CPU package. |
| 56 | * 1.10 28 Feb 2002 Asit K Mallick <asit.k.mallick@intel.com> and |
| 57 | * Tigran Aivazian <tigran@veritas.com>, |
Peter Oruba | f516526 | 2008-07-29 17:41:05 +0200 | [diff] [blame^] | 58 | * Serialize updates as required on HT processors due to |
| 59 | * speculative nature of implementation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | * 1.11 22 Mar 2002 Tigran Aivazian <tigran@veritas.com> |
| 61 | * Fix the panic when writing zero-length microcode chunk. |
Ben Castricum | bc4e0f9 | 2008-06-10 13:15:12 +0200 | [diff] [blame] | 62 | * 1.12 29 Sep 2003 Nitin Kamble <nitin.a.kamble@intel.com>, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | * Jun Nakajima <jun.nakajima@intel.com> |
| 64 | * Support for the microcode updates in the new format. |
| 65 | * 1.13 10 Oct 2003 Tigran Aivazian <tigran@veritas.com> |
| 66 | * Removed ->read() method and obsoleted MICROCODE_IOCFREE ioctl |
Ben Castricum | bc4e0f9 | 2008-06-10 13:15:12 +0200 | [diff] [blame] | 67 | * because we no longer hold a copy of applied microcode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | * in kernel memory. |
| 69 | * 1.14 25 Jun 2004 Tigran Aivazian <tigran@veritas.com> |
| 70 | * Fix sigmatch() macro to handle old CPUs with pf == 0. |
| 71 | * Thanks to Stuart Swales for pointing out this bug. |
| 72 | */ |
| 73 | |
Peter Oruba | f516526 | 2008-07-29 17:41:05 +0200 | [diff] [blame^] | 74 | /* #define DEBUG */ /* pr_debug */ |
Randy Dunlap | a941564 | 2006-01-11 12:17:48 -0800 | [diff] [blame] | 75 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | #include <linux/kernel.h> |
| 77 | #include <linux/init.h> |
| 78 | #include <linux/sched.h> |
Arnd Bergmann | 7714936 | 2008-05-20 19:16:16 +0200 | [diff] [blame] | 79 | #include <linux/smp_lock.h> |
Dave Jones | 5cf6c54 | 2006-02-28 16:58:53 -0800 | [diff] [blame] | 80 | #include <linux/cpumask.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | #include <linux/module.h> |
| 82 | #include <linux/slab.h> |
| 83 | #include <linux/vmalloc.h> |
| 84 | #include <linux/miscdevice.h> |
| 85 | #include <linux/spinlock.h> |
| 86 | #include <linux/mm.h> |
Alexey Dobriyan | 4e950f6 | 2007-07-30 02:36:13 +0400 | [diff] [blame] | 87 | #include <linux/fs.h> |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 88 | #include <linux/mutex.h> |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 89 | #include <linux/cpu.h> |
| 90 | #include <linux/firmware.h> |
| 91 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
| 93 | #include <asm/msr.h> |
| 94 | #include <asm/uaccess.h> |
| 95 | #include <asm/processor.h> |
Peter Oruba | 9a56a0f | 2008-07-28 18:44:13 +0200 | [diff] [blame] | 96 | #include <asm/microcode.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 98 | MODULE_DESCRIPTION("Microcode Update Driver"); |
Tigran Aivazian | 6968826 | 2006-12-13 00:35:14 -0800 | [diff] [blame] | 99 | MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | MODULE_LICENSE("GPL"); |
| 101 | |
Peter Oruba | f516526 | 2008-07-29 17:41:05 +0200 | [diff] [blame^] | 102 | #define DEFAULT_UCODE_DATASIZE (2000) |
| 103 | #define MC_HEADER_SIZE (sizeof(struct microcode_header_intel)) |
| 104 | #define DEFAULT_UCODE_TOTALSIZE (DEFAULT_UCODE_DATASIZE + MC_HEADER_SIZE) |
| 105 | #define EXT_HEADER_SIZE (sizeof(struct extended_sigtable)) |
| 106 | #define EXT_SIGNATURE_SIZE (sizeof(struct extended_signature)) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 107 | #define DWSIZE (sizeof(u32)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #define get_totalsize(mc) \ |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 109 | (((struct microcode_intel *)mc)->hdr.totalsize ? \ |
| 110 | ((struct microcode_intel *)mc)->hdr.totalsize : \ |
| 111 | DEFAULT_UCODE_TOTALSIZE) |
| 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | #define get_datasize(mc) \ |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 114 | (((struct microcode_intel *)mc)->hdr.datasize ? \ |
| 115 | ((struct microcode_intel *)mc)->hdr.datasize : DEFAULT_UCODE_DATASIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | #define sigmatch(s1, s2, p1, p2) \ |
| 118 | (((s1) == (s2)) && (((p1) & (p2)) || (((p1) == 0) && ((p2) == 0)))) |
| 119 | |
| 120 | #define exttable_size(et) ((et)->count * EXT_SIGNATURE_SIZE + EXT_HEADER_SIZE) |
| 121 | |
| 122 | /* serialize access to the physical write to MSR 0x79 */ |
| 123 | static DEFINE_SPINLOCK(microcode_update_lock); |
| 124 | |
| 125 | /* no concurrent ->write()s are allowed on /dev/cpu/microcode */ |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 126 | extern struct mutex microcode_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 128 | extern struct ucode_cpu_info ucode_cpu_info[NR_CPUS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 130 | static void collect_cpu_info(int cpu_num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 132 | struct cpuinfo_x86 *c = &cpu_data(cpu_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; |
| 134 | unsigned int val[2]; |
| 135 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 136 | /* We should bind the task to the CPU */ |
| 137 | BUG_ON(raw_smp_processor_id() != cpu_num); |
| 138 | uci->pf = uci->rev = 0; |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 139 | uci->mc.mc_intel = NULL; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 140 | uci->valid = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
| 142 | if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 || |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 143 | cpu_has(c, X86_FEATURE_IA64)) { |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 144 | printk(KERN_ERR "microcode: CPU%d not a capable Intel " |
| 145 | "processor\n", cpu_num); |
| 146 | uci->valid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | return; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 148 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 150 | uci->sig = cpuid_eax(0x00000001); |
| 151 | |
| 152 | if ((c->x86_model >= 5) || (c->x86 > 6)) { |
| 153 | /* get processor flags from MSR 0x17 */ |
| 154 | rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]); |
| 155 | uci->pf = 1 << ((val[1] >> 18) & 7); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | wrmsr(MSR_IA32_UCODE_REV, 0, 0); |
Zachary Amsden | 245067d | 2005-09-03 15:56:37 -0700 | [diff] [blame] | 159 | /* see notes above for revision 1.07. Apparent chip bug */ |
Andi Kleen | 487472b | 2006-01-11 22:45:27 +0100 | [diff] [blame] | 160 | sync_core(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | /* get the current revision from MSR 0x8B */ |
| 162 | rdmsr(MSR_IA32_UCODE_REV, val[0], uci->rev); |
| 163 | pr_debug("microcode: collect_cpu_info : sig=0x%x, pf=0x%x, rev=0x%x\n", |
| 164 | uci->sig, uci->pf, uci->rev); |
| 165 | } |
| 166 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 167 | static inline int microcode_update_match(int cpu_num, |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 168 | struct microcode_header_intel *mc_header, int sig, int pf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
| 170 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; |
| 171 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 172 | if (!sigmatch(sig, uci->sig, pf, uci->pf) |
| 173 | || mc_header->rev <= uci->rev) |
| 174 | return 0; |
| 175 | return 1; |
| 176 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 178 | static int microcode_sanity_check(void *mc) |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 179 | { |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 180 | struct microcode_header_intel *mc_header = mc; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 181 | struct extended_sigtable *ext_header = NULL; |
| 182 | struct extended_signature *ext_sig; |
| 183 | unsigned long total_size, data_size, ext_table_size; |
| 184 | int sum, orig_sum, ext_sigcount = 0, i; |
| 185 | |
| 186 | total_size = get_totalsize(mc_header); |
| 187 | data_size = get_datasize(mc_header); |
Shaohua Li | bd8e39f | 2006-09-27 01:50:54 -0700 | [diff] [blame] | 188 | if (data_size + MC_HEADER_SIZE > total_size) { |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 189 | printk(KERN_ERR "microcode: error! " |
| 190 | "Bad data size in microcode data file\n"); |
| 191 | return -EINVAL; |
| 192 | } |
| 193 | |
| 194 | if (mc_header->ldrver != 1 || mc_header->hdrver != 1) { |
| 195 | printk(KERN_ERR "microcode: error! " |
| 196 | "Unknown microcode update format\n"); |
| 197 | return -EINVAL; |
| 198 | } |
| 199 | ext_table_size = total_size - (MC_HEADER_SIZE + data_size); |
| 200 | if (ext_table_size) { |
| 201 | if ((ext_table_size < EXT_HEADER_SIZE) |
| 202 | || ((ext_table_size - EXT_HEADER_SIZE) % EXT_SIGNATURE_SIZE)) { |
| 203 | printk(KERN_ERR "microcode: error! " |
| 204 | "Small exttable size in microcode data file\n"); |
| 205 | return -EINVAL; |
Jan Beulich | ba528f2 | 2006-06-23 02:04:19 -0700 | [diff] [blame] | 206 | } |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 207 | ext_header = mc + MC_HEADER_SIZE + data_size; |
| 208 | if (ext_table_size != exttable_size(ext_header)) { |
| 209 | printk(KERN_ERR "microcode: error! " |
| 210 | "Bad exttable size in microcode data file\n"); |
| 211 | return -EFAULT; |
Jan Beulich | ba528f2 | 2006-06-23 02:04:19 -0700 | [diff] [blame] | 212 | } |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 213 | ext_sigcount = ext_header->count; |
| 214 | } |
| 215 | |
| 216 | /* check extended table checksum */ |
| 217 | if (ext_table_size) { |
| 218 | int ext_table_sum = 0; |
Shaohua Li | 9a4b9ef | 2006-09-27 01:50:53 -0700 | [diff] [blame] | 219 | int *ext_tablep = (int *)ext_header; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 220 | |
| 221 | i = ext_table_size / DWSIZE; |
| 222 | while (i--) |
| 223 | ext_table_sum += ext_tablep[i]; |
| 224 | if (ext_table_sum) { |
| 225 | printk(KERN_WARNING "microcode: aborting, " |
| 226 | "bad extended signature table checksum\n"); |
| 227 | return -EINVAL; |
Jan Beulich | ba528f2 | 2006-06-23 02:04:19 -0700 | [diff] [blame] | 228 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 230 | |
| 231 | /* calculate the checksum */ |
| 232 | orig_sum = 0; |
| 233 | i = (MC_HEADER_SIZE + data_size) / DWSIZE; |
| 234 | while (i--) |
| 235 | orig_sum += ((int *)mc)[i]; |
| 236 | if (orig_sum) { |
| 237 | printk(KERN_ERR "microcode: aborting, bad checksum\n"); |
| 238 | return -EINVAL; |
| 239 | } |
| 240 | if (!ext_table_size) |
| 241 | return 0; |
| 242 | /* check extended signature checksum */ |
| 243 | for (i = 0; i < ext_sigcount; i++) { |
Jan Engelhardt | ade1af7 | 2008-01-30 13:33:23 +0100 | [diff] [blame] | 244 | ext_sig = (void *)ext_header + EXT_HEADER_SIZE + |
| 245 | EXT_SIGNATURE_SIZE * i; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 246 | sum = orig_sum |
| 247 | - (mc_header->sig + mc_header->pf + mc_header->cksum) |
| 248 | + (ext_sig->sig + ext_sig->pf + ext_sig->cksum); |
| 249 | if (sum) { |
| 250 | printk(KERN_ERR "microcode: aborting, bad checksum\n"); |
| 251 | return -EINVAL; |
| 252 | } |
| 253 | } |
| 254 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 257 | /* |
| 258 | * return 0 - no update found |
| 259 | * return 1 - found update |
| 260 | * return < 0 - error |
| 261 | */ |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 262 | static int get_matching_microcode(void *mc, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 264 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 265 | struct microcode_header_intel *mc_header = mc; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 266 | struct extended_sigtable *ext_header; |
| 267 | unsigned long total_size = get_totalsize(mc_header); |
| 268 | int ext_sigcount, i; |
| 269 | struct extended_signature *ext_sig; |
| 270 | void *new_mc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 272 | if (microcode_update_match(cpu, mc_header, |
| 273 | mc_header->sig, mc_header->pf)) |
| 274 | goto find; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 276 | if (total_size <= get_datasize(mc_header) + MC_HEADER_SIZE) |
| 277 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Jan Engelhardt | ade1af7 | 2008-01-30 13:33:23 +0100 | [diff] [blame] | 279 | ext_header = mc + get_datasize(mc_header) + MC_HEADER_SIZE; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 280 | ext_sigcount = ext_header->count; |
Jan Engelhardt | ade1af7 | 2008-01-30 13:33:23 +0100 | [diff] [blame] | 281 | ext_sig = (void *)ext_header + EXT_HEADER_SIZE; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 282 | for (i = 0; i < ext_sigcount; i++) { |
| 283 | if (microcode_update_match(cpu, mc_header, |
| 284 | ext_sig->sig, ext_sig->pf)) |
| 285 | goto find; |
| 286 | ext_sig++; |
| 287 | } |
| 288 | return 0; |
| 289 | find: |
Ben Castricum | fe176de | 2008-03-27 20:52:35 +0100 | [diff] [blame] | 290 | pr_debug("microcode: CPU%d found a matching microcode update with" |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 291 | " version 0x%x (current=0x%x)\n", |
| 292 | cpu, mc_header->rev, uci->rev); |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 293 | new_mc = vmalloc(total_size); |
| 294 | if (!new_mc) { |
| 295 | printk(KERN_ERR "microcode: error! Can not allocate memory\n"); |
| 296 | return -ENOMEM; |
| 297 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 299 | /* free previous update file */ |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 300 | vfree(uci->mc.mc_intel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 302 | memcpy(new_mc, mc, total_size); |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 303 | uci->mc.mc_intel = new_mc; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 304 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | } |
| 306 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 307 | static void apply_microcode(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { |
| 309 | unsigned long flags; |
| 310 | unsigned int val[2]; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 311 | int cpu_num = raw_smp_processor_id(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; |
| 313 | |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 314 | /* We should bind the task to the CPU */ |
| 315 | BUG_ON(cpu_num != cpu); |
| 316 | |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 317 | if (uci->mc.mc_intel == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
| 320 | /* serialize access to the physical write to MSR 0x79 */ |
Ben Castricum | bc4e0f9 | 2008-06-10 13:15:12 +0200 | [diff] [blame] | 321 | spin_lock_irqsave(µcode_update_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
| 323 | /* write microcode via MSR 0x79 */ |
| 324 | wrmsr(MSR_IA32_UCODE_WRITE, |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 325 | (unsigned long) uci->mc.mc_intel->bits, |
| 326 | (unsigned long) uci->mc.mc_intel->bits >> 16 >> 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | wrmsr(MSR_IA32_UCODE_REV, 0, 0); |
| 328 | |
Zachary Amsden | 245067d | 2005-09-03 15:56:37 -0700 | [diff] [blame] | 329 | /* see notes above for revision 1.07. Apparent chip bug */ |
Andi Kleen | 487472b | 2006-01-11 22:45:27 +0100 | [diff] [blame] | 330 | sync_core(); |
Zachary Amsden | 245067d | 2005-09-03 15:56:37 -0700 | [diff] [blame] | 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | /* get the current revision from MSR 0x8B */ |
| 333 | rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]); |
| 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | spin_unlock_irqrestore(µcode_update_lock, flags); |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 336 | if (val[1] != uci->mc.mc_intel->hdr.rev) { |
Ben Castricum | fe176de | 2008-03-27 20:52:35 +0100 | [diff] [blame] | 337 | printk(KERN_ERR "microcode: CPU%d update from revision " |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 338 | "0x%x to 0x%x failed\n", cpu_num, uci->rev, val[1]); |
| 339 | return; |
| 340 | } |
Ben Castricum | fe176de | 2008-03-27 20:52:35 +0100 | [diff] [blame] | 341 | printk(KERN_INFO "microcode: CPU%d updated from revision " |
Ben Castricum | bc4e0f9 | 2008-06-10 13:15:12 +0200 | [diff] [blame] | 342 | "0x%x to 0x%x, date = %08x \n", |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 343 | cpu_num, uci->rev, val[1], uci->mc.mc_intel->hdr.date); |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 344 | uci->rev = val[1]; |
| 345 | } |
| 346 | |
| 347 | #ifdef CONFIG_MICROCODE_OLD_INTERFACE |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 348 | extern void __user *user_buffer; /* user area microcode data buffer */ |
| 349 | extern unsigned int user_buffer_size; /* it's size */ |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 350 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 351 | static long get_next_ucode(void **mc, long offset) |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 352 | { |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 353 | struct microcode_header_intel mc_header; |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 354 | unsigned long total_size; |
| 355 | |
| 356 | /* No more data */ |
| 357 | if (offset >= user_buffer_size) |
| 358 | return 0; |
| 359 | if (copy_from_user(&mc_header, user_buffer + offset, MC_HEADER_SIZE)) { |
| 360 | printk(KERN_ERR "microcode: error! Can not read user data\n"); |
| 361 | return -EFAULT; |
| 362 | } |
| 363 | total_size = get_totalsize(&mc_header); |
Shaohua Li | bd8e39f | 2006-09-27 01:50:54 -0700 | [diff] [blame] | 364 | if (offset + total_size > user_buffer_size) { |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 365 | printk(KERN_ERR "microcode: error! Bad total size in microcode " |
| 366 | "data file\n"); |
| 367 | return -EINVAL; |
| 368 | } |
| 369 | *mc = vmalloc(total_size); |
| 370 | if (!*mc) |
| 371 | return -ENOMEM; |
| 372 | if (copy_from_user(*mc, user_buffer + offset, total_size)) { |
| 373 | printk(KERN_ERR "microcode: error! Can not read user data\n"); |
| 374 | vfree(*mc); |
| 375 | return -EFAULT; |
| 376 | } |
| 377 | return offset + total_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
Shaohua Li | 9a3110b | 2006-09-27 01:50:51 -0700 | [diff] [blame] | 379 | #endif |
| 380 | |
Greg Kroah-Hartman | a13b04a | 2008-05-29 10:05:08 -0700 | [diff] [blame] | 381 | static long get_next_ucode_from_buffer(void **mc, const u8 *buf, |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 382 | unsigned long size, long offset) |
| 383 | { |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 384 | struct microcode_header_intel *mc_header; |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 385 | unsigned long total_size; |
| 386 | |
| 387 | /* No more data */ |
| 388 | if (offset >= size) |
| 389 | return 0; |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 390 | mc_header = (struct microcode_header_intel *)(buf + offset); |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 391 | total_size = get_totalsize(mc_header); |
| 392 | |
Shaohua Li | bd8e39f | 2006-09-27 01:50:54 -0700 | [diff] [blame] | 393 | if (offset + total_size > size) { |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 394 | printk(KERN_ERR "microcode: error! Bad data in microcode data file\n"); |
| 395 | return -EINVAL; |
| 396 | } |
| 397 | |
| 398 | *mc = vmalloc(total_size); |
| 399 | if (!*mc) { |
| 400 | printk(KERN_ERR "microcode: error! Can not allocate memory\n"); |
| 401 | return -ENOMEM; |
| 402 | } |
| 403 | memcpy(*mc, buf + offset, total_size); |
| 404 | return offset + total_size; |
| 405 | } |
| 406 | |
| 407 | /* fake device for request_firmware */ |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 408 | extern struct platform_device *microcode_pdev; |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 409 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 410 | static int cpu_request_microcode(int cpu) |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 411 | { |
| 412 | char name[30]; |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 413 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 414 | const struct firmware *firmware; |
Greg Kroah-Hartman | a13b04a | 2008-05-29 10:05:08 -0700 | [diff] [blame] | 415 | const u8 *buf; |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 416 | unsigned long size; |
| 417 | long offset = 0; |
| 418 | int error; |
| 419 | void *mc; |
| 420 | |
| 421 | /* We should bind the task to the CPU */ |
| 422 | BUG_ON(cpu != raw_smp_processor_id()); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 423 | sprintf(name, "intel-ucode/%02x-%02x-%02x", |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 424 | c->x86, c->x86_model, c->x86_mask); |
| 425 | error = request_firmware(&firmware, name, µcode_pdev->dev); |
| 426 | if (error) { |
Ben Castricum | bc4e0f9 | 2008-06-10 13:15:12 +0200 | [diff] [blame] | 427 | pr_debug("microcode: data file %s load failed\n", name); |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 428 | return error; |
| 429 | } |
Jan Engelhardt | ade1af7 | 2008-01-30 13:33:23 +0100 | [diff] [blame] | 430 | buf = firmware->data; |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 431 | size = firmware->size; |
| 432 | while ((offset = get_next_ucode_from_buffer(&mc, buf, size, offset)) |
| 433 | > 0) { |
| 434 | error = microcode_sanity_check(mc); |
| 435 | if (error) |
| 436 | break; |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 437 | error = get_matching_microcode(mc, cpu); |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 438 | if (error < 0) |
| 439 | break; |
| 440 | /* |
| 441 | * It's possible the data file has multiple matching ucode, |
| 442 | * lets keep searching till the latest version |
| 443 | */ |
| 444 | if (error == 1) { |
| 445 | apply_microcode(cpu); |
| 446 | error = 0; |
| 447 | } |
| 448 | vfree(mc); |
| 449 | } |
| 450 | if (offset > 0) |
| 451 | vfree(mc); |
| 452 | if (offset < 0) |
| 453 | error = offset; |
| 454 | release_firmware(firmware); |
| 455 | |
| 456 | return error; |
| 457 | } |
| 458 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 459 | static int apply_microcode_check_cpu(int cpu) |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 460 | { |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 461 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 462 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
| 463 | cpumask_t old; |
| 464 | unsigned int val[2]; |
| 465 | int err = 0; |
| 466 | |
Rafael J. Wysocki | 455c017 | 2007-05-09 02:35:11 -0700 | [diff] [blame] | 467 | /* Check if the microcode is available */ |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 468 | if (!uci->mc.mc_intel) |
Rafael J. Wysocki | 455c017 | 2007-05-09 02:35:11 -0700 | [diff] [blame] | 469 | return 0; |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 470 | |
| 471 | old = current->cpus_allowed; |
Ingo Molnar | 3825c9e | 2008-07-29 11:54:24 +0200 | [diff] [blame] | 472 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 473 | |
| 474 | /* Check if the microcode we have in memory matches the CPU */ |
| 475 | if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 || |
| 476 | cpu_has(c, X86_FEATURE_IA64) || uci->sig != cpuid_eax(0x00000001)) |
| 477 | err = -EINVAL; |
| 478 | |
| 479 | if (!err && ((c->x86_model >= 5) || (c->x86 > 6))) { |
| 480 | /* get processor flags from MSR 0x17 */ |
| 481 | rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]); |
| 482 | if (uci->pf != (1 << ((val[1] >> 18) & 7))) |
| 483 | err = -EINVAL; |
| 484 | } |
| 485 | |
| 486 | if (!err) { |
| 487 | wrmsr(MSR_IA32_UCODE_REV, 0, 0); |
| 488 | /* see notes above for revision 1.07. Apparent chip bug */ |
| 489 | sync_core(); |
| 490 | /* get the current revision from MSR 0x8B */ |
| 491 | rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]); |
| 492 | if (uci->rev != val[1]) |
| 493 | err = -EINVAL; |
| 494 | } |
| 495 | |
| 496 | if (!err) |
| 497 | apply_microcode(cpu); |
| 498 | else |
| 499 | printk(KERN_ERR "microcode: Could not apply microcode to CPU%d:" |
| 500 | " sig=0x%x, pf=0x%x, rev=0x%x\n", |
| 501 | cpu, uci->sig, uci->pf, uci->rev); |
| 502 | |
Mike Travis | fc0e474 | 2008-04-04 18:11:05 -0700 | [diff] [blame] | 503 | set_cpus_allowed_ptr(current, &old); |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 504 | return err; |
| 505 | } |
| 506 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 507 | static void microcode_fini_cpu(int cpu) |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 508 | { |
| 509 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
| 510 | |
| 511 | mutex_lock(µcode_mutex); |
| 512 | uci->valid = 0; |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 513 | vfree(uci->mc.mc_intel); |
Peter Oruba | d4ee366 | 2008-07-28 18:44:18 +0200 | [diff] [blame] | 514 | uci->mc.mc_intel = NULL; |
Shaohua Li | a30a6a2 | 2006-09-27 01:50:52 -0700 | [diff] [blame] | 515 | mutex_unlock(µcode_mutex); |
| 516 | } |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 517 | |
| 518 | static struct microcode_ops microcode_intel_ops = { |
| 519 | .get_next_ucode = get_next_ucode, |
| 520 | .get_matching_microcode = get_matching_microcode, |
| 521 | .microcode_sanity_check = microcode_sanity_check, |
| 522 | .apply_microcode_check_cpu = apply_microcode_check_cpu, |
| 523 | .cpu_request_microcode = cpu_request_microcode, |
| 524 | .collect_cpu_info = collect_cpu_info, |
| 525 | .apply_microcode = apply_microcode, |
| 526 | .microcode_fini_cpu = microcode_fini_cpu, |
| 527 | }; |
| 528 | |
| 529 | static int __init microcode_intel_module_init(void) |
| 530 | { |
| 531 | struct cpuinfo_x86 *c = &cpu_data(get_cpu()); |
| 532 | |
| 533 | if (c->x86_vendor == X86_VENDOR_INTEL) |
| 534 | return microcode_init(µcode_intel_ops, THIS_MODULE); |
| 535 | else |
| 536 | return -ENODEV; |
| 537 | } |
| 538 | |
| 539 | static void __exit microcode_intel_module_exit(void) |
| 540 | { |
| 541 | microcode_exit(); |
| 542 | } |
| 543 | |
| 544 | module_init(microcode_intel_module_init) |
| 545 | module_exit(microcode_intel_module_exit) |