blob: 9f0a994eef9b1f0ba209cc1b3c4cd62e492d3097 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel CPU Microcode Update Driver for Linux
3 *
Tigran Aivazian69688262006-12-13 00:35:14 -08004 * Copyright (C) 2000-2006 Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Shaohua Li9a3110b2006-09-27 01:50:51 -07005 * 2006 Shaohua Li <shaohua.li@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This driver allows to upgrade microcode on Intel processors
8 * belonging to IA-32 family - PentiumPro, Pentium II,
9 * Pentium III, Xeon, Pentium 4, etc.
10 *
11 * Reference: Section 8.10 of Volume III, Intel Pentium 4 Manual,
12 * Order Number 245472 or free download from:
13 *
14 * http://developer.intel.com/design/pentium4/manuals/245472.htm
15 *
16 * For more information, go to http://www.urbanmyth.org/microcode
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 *
23 * 1.0 16 Feb 2000, Tigran Aivazian <tigran@sco.com>
24 * Initial release.
25 * 1.01 18 Feb 2000, Tigran Aivazian <tigran@sco.com>
26 * Added read() support + cleanups.
27 * 1.02 21 Feb 2000, Tigran Aivazian <tigran@sco.com>
28 * Added 'device trimming' support. open(O_WRONLY) zeroes
29 * and frees the saved copy of applied microcode.
30 * 1.03 29 Feb 2000, Tigran Aivazian <tigran@sco.com>
31 * Made to use devfs (/dev/cpu/microcode) + cleanups.
32 * 1.04 06 Jun 2000, Simon Trimmer <simon@veritas.com>
33 * Added misc device support (now uses both devfs and misc).
34 * Added MICROCODE_IOCFREE ioctl to clear memory.
35 * 1.05 09 Jun 2000, Simon Trimmer <simon@veritas.com>
36 * Messages for error cases (non Intel & no suitable microcode).
37 * 1.06 03 Aug 2000, Tigran Aivazian <tigran@veritas.com>
38 * Removed ->release(). Removed exclusive open and status bitmap.
39 * Added microcode_rwsem to serialize read()/write()/ioctl().
40 * Removed global kernel lock usage.
41 * 1.07 07 Sep 2000, Tigran Aivazian <tigran@veritas.com>
42 * Write 0 to 0x8B msr and then cpuid before reading revision,
43 * so that it works even if there were no update done by the
44 * BIOS. Otherwise, reading from 0x8B gives junk (which happened
45 * to be 0 on my machine which is why it worked even when I
46 * disabled update by the BIOS)
47 * Thanks to Eric W. Biederman <ebiederman@lnxi.com> for the fix.
48 * 1.08 11 Dec 2000, Richard Schaal <richard.schaal@intel.com> and
49 * Tigran Aivazian <tigran@veritas.com>
50 * Intel Pentium 4 processor support and bugfixes.
51 * 1.09 30 Oct 2001, Tigran Aivazian <tigran@veritas.com>
52 * Bugfix for HT (Hyper-Threading) enabled processors
53 * whereby processor resources are shared by all logical processors
54 * in a single CPU package.
55 * 1.10 28 Feb 2002 Asit K Mallick <asit.k.mallick@intel.com> and
56 * Tigran Aivazian <tigran@veritas.com>,
57 * Serialize updates as required on HT processors due to speculative
58 * nature of implementation.
59 * 1.11 22 Mar 2002 Tigran Aivazian <tigran@veritas.com>
60 * Fix the panic when writing zero-length microcode chunk.
61 * 1.12 29 Sep 2003 Nitin Kamble <nitin.a.kamble@intel.com>,
62 * Jun Nakajima <jun.nakajima@intel.com>
63 * Support for the microcode updates in the new format.
64 * 1.13 10 Oct 2003 Tigran Aivazian <tigran@veritas.com>
65 * Removed ->read() method and obsoleted MICROCODE_IOCFREE ioctl
66 * because we no longer hold a copy of applied microcode
67 * in kernel memory.
68 * 1.14 25 Jun 2004 Tigran Aivazian <tigran@veritas.com>
69 * Fix sigmatch() macro to handle old CPUs with pf == 0.
70 * Thanks to Stuart Swales for pointing out this bug.
71 */
72
73//#define DEBUG /* pr_debug */
Randy Dunlapa9415642006-01-11 12:17:48 -080074#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#include <linux/kernel.h>
76#include <linux/init.h>
77#include <linux/sched.h>
Arnd Bergmann77149362008-05-20 19:16:16 +020078#include <linux/smp_lock.h>
Dave Jones5cf6c542006-02-28 16:58:53 -080079#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/module.h>
81#include <linux/slab.h>
82#include <linux/vmalloc.h>
83#include <linux/miscdevice.h>
84#include <linux/spinlock.h>
85#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040086#include <linux/fs.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080087#include <linux/mutex.h>
Shaohua Lia30a6a22006-09-27 01:50:52 -070088#include <linux/cpu.h>
89#include <linux/firmware.h>
90#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#include <asm/msr.h>
93#include <asm/uaccess.h>
94#include <asm/processor.h>
95
96MODULE_DESCRIPTION("Intel CPU (IA-32) Microcode Update Driver");
Tigran Aivazian69688262006-12-13 00:35:14 -080097MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070098MODULE_LICENSE("GPL");
99
Jan Beulichba528f22006-06-23 02:04:19 -0700100#define MICROCODE_VERSION "1.14a"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102#define DEFAULT_UCODE_DATASIZE (2000) /* 2000 bytes */
103#define MC_HEADER_SIZE (sizeof (microcode_header_t)) /* 48 bytes */
104#define DEFAULT_UCODE_TOTALSIZE (DEFAULT_UCODE_DATASIZE + MC_HEADER_SIZE) /* 2048 bytes */
105#define EXT_HEADER_SIZE (sizeof (struct extended_sigtable)) /* 20 bytes */
106#define EXT_SIGNATURE_SIZE (sizeof (struct extended_signature)) /* 12 bytes */
107#define DWSIZE (sizeof (u32))
108#define get_totalsize(mc) \
109 (((microcode_t *)mc)->hdr.totalsize ? \
110 ((microcode_t *)mc)->hdr.totalsize : DEFAULT_UCODE_TOTALSIZE)
111#define get_datasize(mc) \
112 (((microcode_t *)mc)->hdr.datasize ? \
113 ((microcode_t *)mc)->hdr.datasize : DEFAULT_UCODE_DATASIZE)
114
115#define sigmatch(s1, s2, p1, p2) \
116 (((s1) == (s2)) && (((p1) & (p2)) || (((p1) == 0) && ((p2) == 0))))
117
118#define exttable_size(et) ((et)->count * EXT_SIGNATURE_SIZE + EXT_HEADER_SIZE)
119
120/* serialize access to the physical write to MSR 0x79 */
121static DEFINE_SPINLOCK(microcode_update_lock);
122
123/* no concurrent ->write()s are allowed on /dev/cpu/microcode */
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800124static DEFINE_MUTEX(microcode_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static struct ucode_cpu_info {
Shaohua Li9a3110b2006-09-27 01:50:51 -0700127 int valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 unsigned int sig;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700129 unsigned int pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 unsigned int rev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 microcode_t *mc;
132} ucode_cpu_info[NR_CPUS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Shaohua Li9a3110b2006-09-27 01:50:51 -0700134static void collect_cpu_info(int cpu_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Mike Travis92cb7612007-10-19 20:35:04 +0200136 struct cpuinfo_x86 *c = &cpu_data(cpu_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num;
138 unsigned int val[2];
139
Shaohua Li9a3110b2006-09-27 01:50:51 -0700140 /* We should bind the task to the CPU */
141 BUG_ON(raw_smp_processor_id() != cpu_num);
142 uci->pf = uci->rev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 uci->mc = NULL;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700144 uci->valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 ||
147 cpu_has(c, X86_FEATURE_IA64)) {
Shaohua Li9a3110b2006-09-27 01:50:51 -0700148 printk(KERN_ERR "microcode: CPU%d not a capable Intel "
149 "processor\n", cpu_num);
150 uci->valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Shaohua Li9a3110b2006-09-27 01:50:51 -0700154 uci->sig = cpuid_eax(0x00000001);
155
156 if ((c->x86_model >= 5) || (c->x86 > 6)) {
157 /* get processor flags from MSR 0x17 */
158 rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]);
159 uci->pf = 1 << ((val[1] >> 18) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161
162 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
Zachary Amsden245067d2005-09-03 15:56:37 -0700163 /* see notes above for revision 1.07. Apparent chip bug */
Andi Kleen487472b2006-01-11 22:45:27 +0100164 sync_core();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /* get the current revision from MSR 0x8B */
166 rdmsr(MSR_IA32_UCODE_REV, val[0], uci->rev);
167 pr_debug("microcode: collect_cpu_info : sig=0x%x, pf=0x%x, rev=0x%x\n",
168 uci->sig, uci->pf, uci->rev);
169}
170
Shaohua Li9a3110b2006-09-27 01:50:51 -0700171static inline int microcode_update_match(int cpu_num,
172 microcode_header_t *mc_header, int sig, int pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num;
175
Shaohua Li9a3110b2006-09-27 01:50:51 -0700176 if (!sigmatch(sig, uci->sig, pf, uci->pf)
177 || mc_header->rev <= uci->rev)
178 return 0;
179 return 1;
180}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Shaohua Li9a3110b2006-09-27 01:50:51 -0700182static int microcode_sanity_check(void *mc)
183{
184 microcode_header_t *mc_header = mc;
185 struct extended_sigtable *ext_header = NULL;
186 struct extended_signature *ext_sig;
187 unsigned long total_size, data_size, ext_table_size;
188 int sum, orig_sum, ext_sigcount = 0, i;
189
190 total_size = get_totalsize(mc_header);
191 data_size = get_datasize(mc_header);
Shaohua Libd8e39f2006-09-27 01:50:54 -0700192 if (data_size + MC_HEADER_SIZE > total_size) {
Shaohua Li9a3110b2006-09-27 01:50:51 -0700193 printk(KERN_ERR "microcode: error! "
194 "Bad data size in microcode data file\n");
195 return -EINVAL;
196 }
197
198 if (mc_header->ldrver != 1 || mc_header->hdrver != 1) {
199 printk(KERN_ERR "microcode: error! "
200 "Unknown microcode update format\n");
201 return -EINVAL;
202 }
203 ext_table_size = total_size - (MC_HEADER_SIZE + data_size);
204 if (ext_table_size) {
205 if ((ext_table_size < EXT_HEADER_SIZE)
206 || ((ext_table_size - EXT_HEADER_SIZE) % EXT_SIGNATURE_SIZE)) {
207 printk(KERN_ERR "microcode: error! "
208 "Small exttable size in microcode data file\n");
209 return -EINVAL;
Jan Beulichba528f22006-06-23 02:04:19 -0700210 }
Shaohua Li9a3110b2006-09-27 01:50:51 -0700211 ext_header = mc + MC_HEADER_SIZE + data_size;
212 if (ext_table_size != exttable_size(ext_header)) {
213 printk(KERN_ERR "microcode: error! "
214 "Bad exttable size in microcode data file\n");
215 return -EFAULT;
Jan Beulichba528f22006-06-23 02:04:19 -0700216 }
Shaohua Li9a3110b2006-09-27 01:50:51 -0700217 ext_sigcount = ext_header->count;
218 }
219
220 /* check extended table checksum */
221 if (ext_table_size) {
222 int ext_table_sum = 0;
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700223 int *ext_tablep = (int *)ext_header;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700224
225 i = ext_table_size / DWSIZE;
226 while (i--)
227 ext_table_sum += ext_tablep[i];
228 if (ext_table_sum) {
229 printk(KERN_WARNING "microcode: aborting, "
230 "bad extended signature table checksum\n");
231 return -EINVAL;
Jan Beulichba528f22006-06-23 02:04:19 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
Shaohua Li9a3110b2006-09-27 01:50:51 -0700234
235 /* calculate the checksum */
236 orig_sum = 0;
237 i = (MC_HEADER_SIZE + data_size) / DWSIZE;
238 while (i--)
239 orig_sum += ((int *)mc)[i];
240 if (orig_sum) {
241 printk(KERN_ERR "microcode: aborting, bad checksum\n");
242 return -EINVAL;
243 }
244 if (!ext_table_size)
245 return 0;
246 /* check extended signature checksum */
247 for (i = 0; i < ext_sigcount; i++) {
Jan Engelhardtade1af72008-01-30 13:33:23 +0100248 ext_sig = (void *)ext_header + EXT_HEADER_SIZE +
249 EXT_SIGNATURE_SIZE * i;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700250 sum = orig_sum
251 - (mc_header->sig + mc_header->pf + mc_header->cksum)
252 + (ext_sig->sig + ext_sig->pf + ext_sig->cksum);
253 if (sum) {
254 printk(KERN_ERR "microcode: aborting, bad checksum\n");
255 return -EINVAL;
256 }
257 }
258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
Shaohua Li9a3110b2006-09-27 01:50:51 -0700261/*
262 * return 0 - no update found
263 * return 1 - found update
264 * return < 0 - error
265 */
266static int get_maching_microcode(void *mc, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Shaohua Li9a3110b2006-09-27 01:50:51 -0700268 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
269 microcode_header_t *mc_header = mc;
270 struct extended_sigtable *ext_header;
271 unsigned long total_size = get_totalsize(mc_header);
272 int ext_sigcount, i;
273 struct extended_signature *ext_sig;
274 void *new_mc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Shaohua Li9a3110b2006-09-27 01:50:51 -0700276 if (microcode_update_match(cpu, mc_header,
277 mc_header->sig, mc_header->pf))
278 goto find;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Shaohua Li9a3110b2006-09-27 01:50:51 -0700280 if (total_size <= get_datasize(mc_header) + MC_HEADER_SIZE)
281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Jan Engelhardtade1af72008-01-30 13:33:23 +0100283 ext_header = mc + get_datasize(mc_header) + MC_HEADER_SIZE;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700284 ext_sigcount = ext_header->count;
Jan Engelhardtade1af72008-01-30 13:33:23 +0100285 ext_sig = (void *)ext_header + EXT_HEADER_SIZE;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700286 for (i = 0; i < ext_sigcount; i++) {
287 if (microcode_update_match(cpu, mc_header,
288 ext_sig->sig, ext_sig->pf))
289 goto find;
290 ext_sig++;
291 }
292 return 0;
293find:
Ben Castricumfe176de2008-03-27 20:52:35 +0100294 pr_debug("microcode: CPU%d found a matching microcode update with"
Shaohua Li9a3110b2006-09-27 01:50:51 -0700295 " version 0x%x (current=0x%x)\n", cpu, mc_header->rev,uci->rev);
296 new_mc = vmalloc(total_size);
297 if (!new_mc) {
298 printk(KERN_ERR "microcode: error! Can not allocate memory\n");
299 return -ENOMEM;
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Shaohua Li9a3110b2006-09-27 01:50:51 -0700302 /* free previous update file */
303 vfree(uci->mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Shaohua Li9a3110b2006-09-27 01:50:51 -0700305 memcpy(new_mc, mc, total_size);
306 uci->mc = new_mc;
307 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Shaohua Li9a3110b2006-09-27 01:50:51 -0700310static void apply_microcode(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 unsigned long flags;
313 unsigned int val[2];
Shaohua Li9a3110b2006-09-27 01:50:51 -0700314 int cpu_num = raw_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num;
316
Shaohua Li9a3110b2006-09-27 01:50:51 -0700317 /* We should bind the task to the CPU */
318 BUG_ON(cpu_num != cpu);
319
320 if (uci->mc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* serialize access to the physical write to MSR 0x79 */
324 spin_lock_irqsave(&microcode_update_lock, flags);
325
326 /* write microcode via MSR 0x79 */
327 wrmsr(MSR_IA32_UCODE_WRITE,
328 (unsigned long) uci->mc->bits,
329 (unsigned long) uci->mc->bits >> 16 >> 16);
330 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
331
Zachary Amsden245067d2005-09-03 15:56:37 -0700332 /* see notes above for revision 1.07. Apparent chip bug */
Andi Kleen487472b2006-01-11 22:45:27 +0100333 sync_core();
Zachary Amsden245067d2005-09-03 15:56:37 -0700334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 /* get the current revision from MSR 0x8B */
336 rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]);
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 spin_unlock_irqrestore(&microcode_update_lock, flags);
Shaohua Li9a3110b2006-09-27 01:50:51 -0700339 if (val[1] != uci->mc->hdr.rev) {
Ben Castricumfe176de2008-03-27 20:52:35 +0100340 printk(KERN_ERR "microcode: CPU%d update from revision "
Shaohua Li9a3110b2006-09-27 01:50:51 -0700341 "0x%x to 0x%x failed\n", cpu_num, uci->rev, val[1]);
342 return;
343 }
Ben Castricumfe176de2008-03-27 20:52:35 +0100344 printk(KERN_INFO "microcode: CPU%d updated from revision "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 "0x%x to 0x%x, date = %08x \n",
346 cpu_num, uci->rev, val[1], uci->mc->hdr.date);
Shaohua Li9a3110b2006-09-27 01:50:51 -0700347 uci->rev = val[1];
348}
349
350#ifdef CONFIG_MICROCODE_OLD_INTERFACE
351static void __user *user_buffer; /* user area microcode data buffer */
352static unsigned int user_buffer_size; /* it's size */
353
354static long get_next_ucode(void **mc, long offset)
355{
356 microcode_header_t mc_header;
357 unsigned long total_size;
358
359 /* No more data */
360 if (offset >= user_buffer_size)
361 return 0;
362 if (copy_from_user(&mc_header, user_buffer + offset, MC_HEADER_SIZE)) {
363 printk(KERN_ERR "microcode: error! Can not read user data\n");
364 return -EFAULT;
365 }
366 total_size = get_totalsize(&mc_header);
Shaohua Libd8e39f2006-09-27 01:50:54 -0700367 if (offset + total_size > user_buffer_size) {
Shaohua Li9a3110b2006-09-27 01:50:51 -0700368 printk(KERN_ERR "microcode: error! Bad total size in microcode "
369 "data file\n");
370 return -EINVAL;
371 }
372 *mc = vmalloc(total_size);
373 if (!*mc)
374 return -ENOMEM;
375 if (copy_from_user(*mc, user_buffer + offset, total_size)) {
376 printk(KERN_ERR "microcode: error! Can not read user data\n");
377 vfree(*mc);
378 return -EFAULT;
379 }
380 return offset + total_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
383static int do_microcode_update (void)
384{
Shaohua Li9a3110b2006-09-27 01:50:51 -0700385 long cursor = 0;
386 int error = 0;
Andi Kleen2ba1ff22007-02-13 13:26:25 +0100387 void *new_mc = NULL;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700388 int cpu;
389 cpumask_t old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Shaohua Li9a3110b2006-09-27 01:50:51 -0700391 old = current->cpus_allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Shaohua Li9a3110b2006-09-27 01:50:51 -0700393 while ((cursor = get_next_ucode(&new_mc, cursor)) > 0) {
394 error = microcode_sanity_check(new_mc);
395 if (error)
396 goto out;
397 /*
398 * It's possible the data file has multiple matching ucode,
399 * lets keep searching till the latest version
400 */
401 for_each_online_cpu(cpu) {
402 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Shaohua Li9a3110b2006-09-27 01:50:51 -0700404 if (!uci->valid)
405 continue;
Mike Travisfc0e4742008-04-04 18:11:05 -0700406 set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu));
Shaohua Li9a3110b2006-09-27 01:50:51 -0700407 error = get_maching_microcode(new_mc, cpu);
408 if (error < 0)
409 goto out;
410 if (error == 1)
411 apply_microcode(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
Shaohua Li9a3110b2006-09-27 01:50:51 -0700413 vfree(new_mc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415out:
Shaohua Li9a3110b2006-09-27 01:50:51 -0700416 if (cursor > 0)
417 vfree(new_mc);
418 if (cursor < 0)
419 error = cursor;
Mike Travisfc0e4742008-04-04 18:11:05 -0700420 set_cpus_allowed_ptr(current, &old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return error;
422}
423
Shaohua Li9a3110b2006-09-27 01:50:51 -0700424static int microcode_open (struct inode *unused1, struct file *unused2)
425{
Arnd Bergmann77149362008-05-20 19:16:16 +0200426 cycle_kernel_lock();
Shaohua Li9a3110b2006-09-27 01:50:51 -0700427 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430static ssize_t microcode_write (struct file *file, const char __user *buf, size_t len, loff_t *ppos)
431{
432 ssize_t ret;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if ((len >> PAGE_SHIFT) > num_physpages) {
435 printk(KERN_ERR "microcode: too much data (max %ld pages)\n", num_physpages);
436 return -EINVAL;
437 }
438
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100439 get_online_cpus();
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800440 mutex_lock(&microcode_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 user_buffer = (void __user *) buf;
443 user_buffer_size = (int) len;
444
445 ret = do_microcode_update();
446 if (!ret)
447 ret = (ssize_t)len;
448
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800449 mutex_unlock(&microcode_mutex);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100450 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 return ret;
453}
454
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800455static const struct file_operations microcode_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 .owner = THIS_MODULE,
457 .write = microcode_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 .open = microcode_open,
459};
460
461static struct miscdevice microcode_dev = {
462 .minor = MICROCODE_MINOR,
463 .name = "microcode",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 .fops = &microcode_fops,
465};
466
Shaohua Li9a3110b2006-09-27 01:50:51 -0700467static int __init microcode_dev_init (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 int error;
470
471 error = misc_register(&microcode_dev);
472 if (error) {
473 printk(KERN_ERR
474 "microcode: can't misc_register on minor=%d\n",
475 MICROCODE_MINOR);
476 return error;
477 }
478
Shaohua Li9a3110b2006-09-27 01:50:51 -0700479 return 0;
480}
481
Sam Ravnborgf8281a22007-06-01 00:47:10 -0700482static void microcode_dev_exit (void)
Shaohua Li9a3110b2006-09-27 01:50:51 -0700483{
484 misc_deregister(&microcode_dev);
485}
486
487MODULE_ALIAS_MISCDEV(MICROCODE_MINOR);
488#else
489#define microcode_dev_init() 0
490#define microcode_dev_exit() do { } while(0)
491#endif
492
Shaohua Lia30a6a22006-09-27 01:50:52 -0700493static long get_next_ucode_from_buffer(void **mc, void *buf,
494 unsigned long size, long offset)
495{
496 microcode_header_t *mc_header;
497 unsigned long total_size;
498
499 /* No more data */
500 if (offset >= size)
501 return 0;
502 mc_header = (microcode_header_t *)(buf + offset);
503 total_size = get_totalsize(mc_header);
504
Shaohua Libd8e39f2006-09-27 01:50:54 -0700505 if (offset + total_size > size) {
Shaohua Lia30a6a22006-09-27 01:50:52 -0700506 printk(KERN_ERR "microcode: error! Bad data in microcode data file\n");
507 return -EINVAL;
508 }
509
510 *mc = vmalloc(total_size);
511 if (!*mc) {
512 printk(KERN_ERR "microcode: error! Can not allocate memory\n");
513 return -ENOMEM;
514 }
515 memcpy(*mc, buf + offset, total_size);
516 return offset + total_size;
517}
518
519/* fake device for request_firmware */
520static struct platform_device *microcode_pdev;
521
522static int cpu_request_microcode(int cpu)
523{
524 char name[30];
Mike Travis92cb7612007-10-19 20:35:04 +0200525 struct cpuinfo_x86 *c = &cpu_data(cpu);
Shaohua Lia30a6a22006-09-27 01:50:52 -0700526 const struct firmware *firmware;
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700527 void *buf;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700528 unsigned long size;
529 long offset = 0;
530 int error;
531 void *mc;
532
533 /* We should bind the task to the CPU */
534 BUG_ON(cpu != raw_smp_processor_id());
535 sprintf(name,"intel-ucode/%02x-%02x-%02x",
536 c->x86, c->x86_model, c->x86_mask);
537 error = request_firmware(&firmware, name, &microcode_pdev->dev);
538 if (error) {
Ben Castricumfe176de2008-03-27 20:52:35 +0100539 pr_debug("microcode: ucode data file %s load failed\n", name);
Shaohua Lia30a6a22006-09-27 01:50:52 -0700540 return error;
541 }
Jan Engelhardtade1af72008-01-30 13:33:23 +0100542 buf = firmware->data;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700543 size = firmware->size;
544 while ((offset = get_next_ucode_from_buffer(&mc, buf, size, offset))
545 > 0) {
546 error = microcode_sanity_check(mc);
547 if (error)
548 break;
549 error = get_maching_microcode(mc, cpu);
550 if (error < 0)
551 break;
552 /*
553 * It's possible the data file has multiple matching ucode,
554 * lets keep searching till the latest version
555 */
556 if (error == 1) {
557 apply_microcode(cpu);
558 error = 0;
559 }
560 vfree(mc);
561 }
562 if (offset > 0)
563 vfree(mc);
564 if (offset < 0)
565 error = offset;
566 release_firmware(firmware);
567
568 return error;
569}
570
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700571static int apply_microcode_check_cpu(int cpu)
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700572{
Mike Travis92cb7612007-10-19 20:35:04 +0200573 struct cpuinfo_x86 *c = &cpu_data(cpu);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700574 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
575 cpumask_t old;
576 unsigned int val[2];
577 int err = 0;
578
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700579 /* Check if the microcode is available */
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700580 if (!uci->mc)
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700581 return 0;
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700582
583 old = current->cpus_allowed;
Mike Travisfc0e4742008-04-04 18:11:05 -0700584 set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu));
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700585
586 /* Check if the microcode we have in memory matches the CPU */
587 if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 ||
588 cpu_has(c, X86_FEATURE_IA64) || uci->sig != cpuid_eax(0x00000001))
589 err = -EINVAL;
590
591 if (!err && ((c->x86_model >= 5) || (c->x86 > 6))) {
592 /* get processor flags from MSR 0x17 */
593 rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]);
594 if (uci->pf != (1 << ((val[1] >> 18) & 7)))
595 err = -EINVAL;
596 }
597
598 if (!err) {
599 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
600 /* see notes above for revision 1.07. Apparent chip bug */
601 sync_core();
602 /* get the current revision from MSR 0x8B */
603 rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]);
604 if (uci->rev != val[1])
605 err = -EINVAL;
606 }
607
608 if (!err)
609 apply_microcode(cpu);
610 else
611 printk(KERN_ERR "microcode: Could not apply microcode to CPU%d:"
612 " sig=0x%x, pf=0x%x, rev=0x%x\n",
613 cpu, uci->sig, uci->pf, uci->rev);
614
Mike Travisfc0e4742008-04-04 18:11:05 -0700615 set_cpus_allowed_ptr(current, &old);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700616 return err;
617}
618
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700619static void microcode_init_cpu(int cpu, int resume)
Shaohua Lia30a6a22006-09-27 01:50:52 -0700620{
621 cpumask_t old;
622 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
623
624 old = current->cpus_allowed;
625
Mike Travisfc0e4742008-04-04 18:11:05 -0700626 set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu));
Shaohua Lia30a6a22006-09-27 01:50:52 -0700627 mutex_lock(&microcode_mutex);
628 collect_cpu_info(cpu);
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700629 if (uci->valid && system_state == SYSTEM_RUNNING && !resume)
Shaohua Lia30a6a22006-09-27 01:50:52 -0700630 cpu_request_microcode(cpu);
631 mutex_unlock(&microcode_mutex);
Mike Travisfc0e4742008-04-04 18:11:05 -0700632 set_cpus_allowed_ptr(current, &old);
Shaohua Lia30a6a22006-09-27 01:50:52 -0700633}
634
635static void microcode_fini_cpu(int cpu)
636{
637 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
638
639 mutex_lock(&microcode_mutex);
640 uci->valid = 0;
641 vfree(uci->mc);
642 uci->mc = NULL;
643 mutex_unlock(&microcode_mutex);
644}
645
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700646static ssize_t reload_store(struct sys_device *dev, const char *buf, size_t sz)
647{
648 struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
649 char *end;
650 unsigned long val = simple_strtoul(buf, &end, 0);
651 int err = 0;
652 int cpu = dev->id;
653
654 if (end == buf)
655 return -EINVAL;
656 if (val == 1) {
657 cpumask_t old;
658
659 old = current->cpus_allowed;
660
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100661 get_online_cpus();
Mike Travisfc0e4742008-04-04 18:11:05 -0700662 set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu));
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700663
664 mutex_lock(&microcode_mutex);
665 if (uci->valid)
666 err = cpu_request_microcode(cpu);
667 mutex_unlock(&microcode_mutex);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100668 put_online_cpus();
Mike Travisfc0e4742008-04-04 18:11:05 -0700669 set_cpus_allowed_ptr(current, &old);
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700670 }
671 if (err)
672 return err;
673 return sz;
674}
675
676static ssize_t version_show(struct sys_device *dev, char *buf)
677{
678 struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
679
680 return sprintf(buf, "0x%x\n", uci->rev);
681}
682
683static ssize_t pf_show(struct sys_device *dev, char *buf)
684{
685 struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
686
687 return sprintf(buf, "0x%x\n", uci->pf);
688}
689
690static SYSDEV_ATTR(reload, 0200, NULL, reload_store);
691static SYSDEV_ATTR(version, 0400, version_show, NULL);
692static SYSDEV_ATTR(processor_flags, 0400, pf_show, NULL);
693
694static struct attribute *mc_default_attrs[] = {
695 &attr_reload.attr,
696 &attr_version.attr,
697 &attr_processor_flags.attr,
698 NULL
699};
700
701static struct attribute_group mc_attr_group = {
702 .attrs = mc_default_attrs,
703 .name = "microcode",
704};
705
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700706static int __mc_sysdev_add(struct sys_device *sys_dev, int resume)
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700707{
Jeff Garzik2e3ad8a2006-10-11 01:21:53 -0700708 int err, cpu = sys_dev->id;
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700709 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
710
711 if (!cpu_online(cpu))
712 return 0;
Jeff Garzik2e3ad8a2006-10-11 01:21:53 -0700713
Ben Castricumfe176de2008-03-27 20:52:35 +0100714 pr_debug("microcode: CPU%d added\n", cpu);
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700715 memset(uci, 0, sizeof(*uci));
Jeff Garzik2e3ad8a2006-10-11 01:21:53 -0700716
717 err = sysfs_create_group(&sys_dev->kobj, &mc_attr_group);
718 if (err)
719 return err;
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700720
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700721 microcode_init_cpu(cpu, resume);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -0700722
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700723 return 0;
724}
725
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700726static int mc_sysdev_add(struct sys_device *sys_dev)
727{
728 return __mc_sysdev_add(sys_dev, 0);
729}
730
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700731static int mc_sysdev_remove(struct sys_device *sys_dev)
732{
733 int cpu = sys_dev->id;
734
735 if (!cpu_online(cpu))
736 return 0;
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700737
Ben Castricumfe176de2008-03-27 20:52:35 +0100738 pr_debug("microcode: CPU%d removed\n", cpu);
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700739 microcode_fini_cpu(cpu);
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700740 sysfs_remove_group(&sys_dev->kobj, &mc_attr_group);
741 return 0;
742}
743
744static int mc_sysdev_resume(struct sys_device *dev)
745{
746 int cpu = dev->id;
747
748 if (!cpu_online(cpu))
749 return 0;
Ben Castricumfe176de2008-03-27 20:52:35 +0100750 pr_debug("microcode: CPU%d resumed\n", cpu);
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700751 /* only CPU 0 will apply ucode here */
752 apply_microcode(0);
753 return 0;
754}
755
756static struct sysdev_driver mc_sysdev_driver = {
757 .add = mc_sysdev_add,
758 .remove = mc_sysdev_remove,
759 .resume = mc_sysdev_resume,
760};
761
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700762static __cpuinit int
763mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu)
764{
765 unsigned int cpu = (unsigned long)hcpu;
766 struct sys_device *sys_dev;
767
768 sys_dev = get_cpu_sysdev(cpu);
769 switch (action) {
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700770 case CPU_UP_CANCELED_FROZEN:
771 /* The CPU refused to come up during a system resume */
772 microcode_fini_cpu(cpu);
773 break;
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700774 case CPU_ONLINE:
775 case CPU_DOWN_FAILED:
776 mc_sysdev_add(sys_dev);
777 break;
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700778 case CPU_ONLINE_FROZEN:
779 /* System-wide resume is in progress, try to apply microcode */
780 if (apply_microcode_check_cpu(cpu)) {
781 /* The application of microcode failed */
782 microcode_fini_cpu(cpu);
783 __mc_sysdev_add(sys_dev, 1);
784 break;
785 }
786 case CPU_DOWN_FAILED_FROZEN:
787 if (sysfs_create_group(&sys_dev->kobj, &mc_attr_group))
Ben Castricumfe176de2008-03-27 20:52:35 +0100788 printk(KERN_ERR "microcode: Failed to create the sysfs "
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700789 "group for CPU%d\n", cpu);
790 break;
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700791 case CPU_DOWN_PREPARE:
792 mc_sysdev_remove(sys_dev);
793 break;
Rafael J. Wysocki455c0172007-05-09 02:35:11 -0700794 case CPU_DOWN_PREPARE_FROZEN:
795 /* Suspend is in progress, only remove the interface */
796 sysfs_remove_group(&sys_dev->kobj, &mc_attr_group);
797 break;
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700798 }
799 return NOTIFY_OK;
800}
801
Sam Ravnborgc72258c2008-02-01 17:49:42 +0100802static struct notifier_block __refdata mc_cpu_notifier = {
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700803 .notifier_call = mc_cpu_callback,
804};
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700805
Shaohua Li9a3110b2006-09-27 01:50:51 -0700806static int __init microcode_init (void)
807{
808 int error;
809
810 error = microcode_dev_init();
811 if (error)
812 return error;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700813 microcode_pdev = platform_device_register_simple("microcode", -1,
814 NULL, 0);
815 if (IS_ERR(microcode_pdev)) {
816 microcode_dev_exit();
817 return PTR_ERR(microcode_pdev);
818 }
Shaohua Li9a3110b2006-09-27 01:50:51 -0700819
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100820 get_online_cpus();
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700821 error = sysdev_driver_register(&cpu_sysdev_class, &mc_sysdev_driver);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100822 put_online_cpus();
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700823 if (error) {
824 microcode_dev_exit();
825 platform_device_unregister(microcode_pdev);
826 return error;
827 }
828
829 register_hotcpu_notifier(&mc_cpu_notifier);
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 printk(KERN_INFO
Tigran Aivazian69688262006-12-13 00:35:14 -0800832 "IA-32 Microcode Update Driver: v" MICROCODE_VERSION " <tigran@aivazian.fsnet.co.uk>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return 0;
834}
835
836static void __exit microcode_exit (void)
837{
Shaohua Li9a3110b2006-09-27 01:50:51 -0700838 microcode_dev_exit();
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700839
840 unregister_hotcpu_notifier(&mc_cpu_notifier);
841
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100842 get_online_cpus();
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700843 sysdev_driver_unregister(&cpu_sysdev_class, &mc_sysdev_driver);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100844 put_online_cpus();
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700845
Shaohua Lia30a6a22006-09-27 01:50:52 -0700846 platform_device_unregister(microcode_pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
849module_init(microcode_init)
850module_exit(microcode_exit)