blob: 5fb2cebf556b1e121923e645b97480ef08335d94 [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
Ben Castricumbc4e0f92008-06-10 13:15:12 +02008 * belonging to IA-32 family - PentiumPro, Pentium II,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Pentium III, Xeon, Pentium 4, etc.
10 *
Ben Castricumbc4e0f92008-06-10 13:15:12 +020011 * 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 *
Justin P. Mattock50a23e62010-10-16 10:36:23 -070015 * http://developer.intel.com/Assets/PDF/manual/253668.pdf
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
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 Orubaf5165262008-07-29 17:41:05 +020058 * Serialize updates as required on HT processors due to
59 * speculative nature of implementation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * 1.11 22 Mar 2002 Tigran Aivazian <tigran@veritas.com>
61 * Fix the panic when writing zero-length microcode chunk.
Ben Castricumbc4e0f92008-06-10 13:15:12 +020062 * 1.12 29 Sep 2003 Nitin Kamble <nitin.a.kamble@intel.com>,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * 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 Castricumbc4e0f92008-06-10 13:15:12 +020067 * because we no longer hold a copy of applied microcode
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * 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 */
Joe Perchesf58e1f52009-12-08 22:30:50 -080073
74#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
75
Ingo Molnar4bae1962009-03-11 11:19:46 +010076#include <linux/firmware.h>
Jaswinder Singh Rajputdd3feda2009-01-12 14:44:29 +053077#include <linux/uaccess.h>
Ingo Molnar4bae1962009-03-11 11:19:46 +010078#include <linux/kernel.h>
79#include <linux/module.h>
Dmitry Adamushko871b72d2009-05-11 23:48:27 +020080#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Fenghua Yu9cd4d782012-12-20 23:44:22 -080082#include <asm/microcode_intel.h>
Ingo Molnar4bae1962009-03-11 11:19:46 +010083#include <asm/processor.h>
84#include <asm/msr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Peter Oruba3e135d82008-07-28 18:44:17 +020086MODULE_DESCRIPTION("Microcode Update Driver");
Tigran Aivazian69688262006-12-13 00:35:14 -080087MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070088MODULE_LICENSE("GPL");
89
Dmitry Adamushkod45de402008-08-20 00:22:26 +020090static int collect_cpu_info(int cpu_num, struct cpu_signature *csig)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Mike Travis92cb7612007-10-19 20:35:04 +020092 struct cpuinfo_x86 *c = &cpu_data(cpu_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unsigned int val[2];
94
Dmitry Adamushkod45de402008-08-20 00:22:26 +020095 memset(csig, 0, sizeof(*csig));
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Dmitry Adamushkod45de402008-08-20 00:22:26 +020097 csig->sig = cpuid_eax(0x00000001);
Shaohua Li9a3110b2006-09-27 01:50:51 -070098
99 if ((c->x86_model >= 5) || (c->x86 > 6)) {
100 /* get processor flags from MSR 0x17 */
101 rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]);
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200102 csig->pf = 1 << ((val[1] >> 18) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104
Andi Kleen506ed6b2011-10-12 17:46:33 -0700105 csig->rev = c->microcode;
Joe Perchesf58e1f52009-12-08 22:30:50 -0800106 pr_info("CPU%d sig=0x%x, pf=0x%x, revision=0x%x\n",
107 cpu_num, csig->sig, csig->pf, csig->rev);
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200108
109 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Shaohua Li9a3110b2006-09-27 01:50:51 -0700112/*
113 * return 0 - no update found
114 * return 1 - found update
Shaohua Li9a3110b2006-09-27 01:50:51 -0700115 */
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800116static int get_matching_mc(struct microcode_intel *mc_intel, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800118 struct cpu_signature cpu_sig;
119 unsigned int csig, cpf, crev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800121 collect_cpu_info(cpu, &cpu_sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800123 csig = cpu_sig.sig;
124 cpf = cpu_sig.pf;
125 crev = cpu_sig.rev;
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200126
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800127 return get_matching_microcode(csig, cpf, mc_intel, crev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800130int apply_microcode(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Ingo Molnar4bae1962009-03-11 11:19:46 +0100132 struct microcode_intel *mc_intel;
133 struct ucode_cpu_info *uci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 unsigned int val[2];
Andi Kleen506ed6b2011-10-12 17:46:33 -0700135 int cpu_num = raw_smp_processor_id();
136 struct cpuinfo_x86 *c = &cpu_data(cpu_num);
Ingo Molnar4bae1962009-03-11 11:19:46 +0100137
Ingo Molnar4bae1962009-03-11 11:19:46 +0100138 uci = ucode_cpu_info + cpu;
139 mc_intel = uci->mc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Shaohua Li9a3110b2006-09-27 01:50:51 -0700141 /* We should bind the task to the CPU */
142 BUG_ON(cpu_num != cpu);
143
Dmitry Adamushko18dbc912008-09-23 12:08:44 +0200144 if (mc_intel == NULL)
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200145 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800147 /*
148 * Microcode on this CPU could be updated earlier. Only apply the
149 * microcode patch in mc_intel when it is newer than the one on this
150 * CPU.
151 */
152 if (get_matching_mc(mc_intel, cpu) == 0)
153 return 0;
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* write microcode via MSR 0x79 */
156 wrmsr(MSR_IA32_UCODE_WRITE,
Dmitry Adamushko18dbc912008-09-23 12:08:44 +0200157 (unsigned long) mc_intel->bits,
158 (unsigned long) mc_intel->bits >> 16 >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
160
Andi Kleen506ed6b2011-10-12 17:46:33 -0700161 /* As documented in the SDM: Do a CPUID 1 here */
Andi Kleen487472b2006-01-11 22:45:27 +0100162 sync_core();
Zachary Amsden245067d2005-09-03 15:56:37 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* get the current revision from MSR 0x8B */
165 rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]);
166
Dmitry Adamushko18dbc912008-09-23 12:08:44 +0200167 if (val[1] != mc_intel->hdr.rev) {
Joe Perchesf58e1f52009-12-08 22:30:50 -0800168 pr_err("CPU%d update to revision 0x%x failed\n",
169 cpu_num, mc_intel->hdr.rev);
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200170 return -1;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700171 }
Frans Pop3235dc32010-02-06 18:47:17 +0100172 pr_info("CPU%d updated to revision 0x%x, date = %04x-%02x-%02x\n",
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200173 cpu_num, val[1],
Dmitry Adamushko18dbc912008-09-23 12:08:44 +0200174 mc_intel->hdr.date & 0xffff,
175 mc_intel->hdr.date >> 24,
176 (mc_intel->hdr.date >> 16) & 0xff);
Ingo Molnar4bae1962009-03-11 11:19:46 +0100177
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200178 uci->cpu_sig.rev = val[1];
Andi Kleen506ed6b2011-10-12 17:46:33 -0700179 c->microcode = val[1];
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200180
181 return 0;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700182}
183
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200184static enum ucode_state generic_load_microcode(int cpu, void *data, size_t size,
185 int (*get_ucode_data)(void *, const void *, size_t))
Shaohua Li9a3110b2006-09-27 01:50:51 -0700186{
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200187 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
Dimitri Sivanich938179b2010-03-05 11:42:03 -0600188 u8 *ucode_ptr = data, *new_mc = NULL, *mc = NULL;
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200189 int new_rev = uci->cpu_sig.rev;
190 unsigned int leftover = size;
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200191 enum ucode_state state = UCODE_OK;
Dimitri Sivanich938179b2010-03-05 11:42:03 -0600192 unsigned int curr_mc_size = 0;
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800193 unsigned int csig, cpf;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700194
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200195 while (leftover) {
196 struct microcode_header_intel mc_header;
197 unsigned int mc_size;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700198
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200199 if (get_ucode_data(&mc_header, ucode_ptr, sizeof(mc_header)))
200 break;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700201
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200202 mc_size = get_totalsize(&mc_header);
203 if (!mc_size || mc_size > leftover) {
Joe Perchesf58e1f52009-12-08 22:30:50 -0800204 pr_err("error! Bad data in microcode data file\n");
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200205 break;
206 }
Shaohua Lia30a6a22006-09-27 01:50:52 -0700207
Dimitri Sivanich938179b2010-03-05 11:42:03 -0600208 /* For performance reasons, reuse mc area when possible */
209 if (!mc || mc_size > curr_mc_size) {
Jesper Juhl5cdd2de2010-12-25 19:57:41 +0100210 vfree(mc);
Dimitri Sivanich938179b2010-03-05 11:42:03 -0600211 mc = vmalloc(mc_size);
212 if (!mc)
213 break;
214 curr_mc_size = mc_size;
215 }
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200216
217 if (get_ucode_data(mc, ucode_ptr, mc_size) ||
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800218 microcode_sanity_check(mc, 1) < 0) {
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200219 break;
220 }
221
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800222 csig = uci->cpu_sig.sig;
223 cpf = uci->cpu_sig.pf;
224 if (get_matching_microcode(csig, cpf, mc, new_rev)) {
Jesper Juhl5cdd2de2010-12-25 19:57:41 +0100225 vfree(new_mc);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200226 new_rev = mc_header.rev;
227 new_mc = mc;
Dimitri Sivanich938179b2010-03-05 11:42:03 -0600228 mc = NULL; /* trigger new vmalloc */
229 }
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200230
231 ucode_ptr += mc_size;
232 leftover -= mc_size;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700233 }
234
Jesper Juhl5cdd2de2010-12-25 19:57:41 +0100235 vfree(mc);
Dimitri Sivanich938179b2010-03-05 11:42:03 -0600236
Ingo Molnar4bae1962009-03-11 11:19:46 +0100237 if (leftover) {
Jesper Juhl5cdd2de2010-12-25 19:57:41 +0100238 vfree(new_mc);
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200239 state = UCODE_ERROR;
240 goto out;
241 }
242
243 if (!new_mc) {
244 state = UCODE_NFOUND;
Ingo Molnar4bae1962009-03-11 11:19:46 +0100245 goto out;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700246 }
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200247
Jesper Juhl5cdd2de2010-12-25 19:57:41 +0100248 vfree(uci->mc);
Ingo Molnar4bae1962009-03-11 11:19:46 +0100249 uci->mc = (struct microcode_intel *)new_mc;
250
Fenghua Yu9cd4d782012-12-20 23:44:22 -0800251 /*
252 * If early loading microcode is supported, save this mc into
253 * permanent memory. So it will be loaded early when a CPU is hot added
254 * or resumes.
255 */
256 save_mc_for_early(new_mc);
257
Joe Perchesf58e1f52009-12-08 22:30:50 -0800258 pr_debug("CPU%d found a matching microcode update with version 0x%x (current=0x%x)\n",
259 cpu, new_rev, uci->cpu_sig.rev);
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200260out:
261 return state;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700262}
263
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200264static int get_ucode_fw(void *to, const void *from, size_t n)
265{
266 memcpy(to, from, n);
267 return 0;
268}
Shaohua Lia30a6a22006-09-27 01:50:52 -0700269
Borislav Petkov48e30682012-07-26 15:51:00 +0200270static enum ucode_state request_microcode_fw(int cpu, struct device *device,
271 bool refresh_fw)
Shaohua Lia30a6a22006-09-27 01:50:52 -0700272{
273 char name[30];
Mike Travis92cb7612007-10-19 20:35:04 +0200274 struct cpuinfo_x86 *c = &cpu_data(cpu);
Shaohua Lia30a6a22006-09-27 01:50:52 -0700275 const struct firmware *firmware;
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200276 enum ucode_state ret;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700277
Peter Oruba3e135d82008-07-28 18:44:17 +0200278 sprintf(name, "intel-ucode/%02x-%02x-%02x",
Shaohua Lia30a6a22006-09-27 01:50:52 -0700279 c->x86, c->x86_model, c->x86_mask);
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200280
281 if (request_firmware(&firmware, name, device)) {
Joe Perchesf58e1f52009-12-08 22:30:50 -0800282 pr_debug("data file %s load failed\n", name);
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200283 return UCODE_NFOUND;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700284 }
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200285
Jaswinder Singh Rajputdd3feda2009-01-12 14:44:29 +0530286 ret = generic_load_microcode(cpu, (void *)firmware->data,
287 firmware->size, &get_ucode_fw);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200288
Shaohua Lia30a6a22006-09-27 01:50:52 -0700289 release_firmware(firmware);
290
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200291 return ret;
292}
293
294static int get_ucode_user(void *to, const void *from, size_t n)
295{
296 return copy_from_user(to, from, n);
297}
298
Dmitry Adamushko871b72d2009-05-11 23:48:27 +0200299static enum ucode_state
300request_microcode_user(int cpu, const void __user *buf, size_t size)
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200301{
Jaswinder Singh Rajputdd3feda2009-01-12 14:44:29 +0530302 return generic_load_microcode(cpu, (void *)buf, size, &get_ucode_user);
Shaohua Lia30a6a22006-09-27 01:50:52 -0700303}
304
Peter Oruba8d86f392008-07-28 18:44:21 +0200305static void microcode_fini_cpu(int cpu)
Shaohua Lia30a6a22006-09-27 01:50:52 -0700306{
307 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
308
Dmitry Adamushko18dbc912008-09-23 12:08:44 +0200309 vfree(uci->mc);
310 uci->mc = NULL;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700311}
Peter Oruba8d86f392008-07-28 18:44:21 +0200312
Hannes Eder4db646b2008-11-23 20:49:52 +0100313static struct microcode_ops microcode_intel_ops = {
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200314 .request_microcode_user = request_microcode_user,
315 .request_microcode_fw = request_microcode_fw,
Peter Oruba8d86f392008-07-28 18:44:21 +0200316 .collect_cpu_info = collect_cpu_info,
317 .apply_microcode = apply_microcode,
318 .microcode_fini_cpu = microcode_fini_cpu,
319};
320
Dmitry Adamushko18dbc912008-09-23 12:08:44 +0200321struct microcode_ops * __init init_intel_microcode(void)
Peter Oruba8d86f392008-07-28 18:44:21 +0200322{
Srivatsa S. Bhat7164b3f2012-04-16 14:12:00 +0530323 struct cpuinfo_x86 *c = &cpu_data(0);
324
325 if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 ||
326 cpu_has(c, X86_FEATURE_IA64)) {
327 pr_err("Intel CPU family 0x%x not supported\n", c->x86);
328 return NULL;
329 }
330
Dmitry Adamushko18dbc912008-09-23 12:08:44 +0200331 return &microcode_intel_ops;
Peter Oruba8d86f392008-07-28 18:44:21 +0200332}
333