blob: 48ed3cef58c104dd341d0af2c63d90e3576d3fd8 [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 *
15 * http://developer.intel.com/design/pentium4/manuals/253668.htm
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 */
Randy Dunlapa9415642006-01-11 12:17:48 -080073#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/kernel.h>
75#include <linux/init.h>
76#include <linux/sched.h>
Arnd Bergmann77149362008-05-20 19:16:16 +020077#include <linux/smp_lock.h>
Dave Jones5cf6c542006-02-28 16:58:53 -080078#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/module.h>
80#include <linux/slab.h>
81#include <linux/vmalloc.h>
82#include <linux/miscdevice.h>
83#include <linux/spinlock.h>
84#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040085#include <linux/fs.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080086#include <linux/mutex.h>
Shaohua Lia30a6a22006-09-27 01:50:52 -070087#include <linux/cpu.h>
88#include <linux/firmware.h>
89#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91#include <asm/msr.h>
92#include <asm/uaccess.h>
93#include <asm/processor.h>
Peter Oruba9a56a0f2008-07-28 18:44:13 +020094#include <asm/microcode.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Peter Oruba3e135d82008-07-28 18:44:17 +020096MODULE_DESCRIPTION("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
Peter Orubaf5165262008-07-29 17:41:05 +0200100#define DEFAULT_UCODE_DATASIZE (2000)
101#define MC_HEADER_SIZE (sizeof(struct microcode_header_intel))
102#define DEFAULT_UCODE_TOTALSIZE (DEFAULT_UCODE_DATASIZE + MC_HEADER_SIZE)
103#define EXT_HEADER_SIZE (sizeof(struct extended_sigtable))
104#define EXT_SIGNATURE_SIZE (sizeof(struct extended_signature))
Peter Oruba3e135d82008-07-28 18:44:17 +0200105#define DWSIZE (sizeof(u32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define get_totalsize(mc) \
Peter Orubad4ee3662008-07-28 18:44:18 +0200107 (((struct microcode_intel *)mc)->hdr.totalsize ? \
108 ((struct microcode_intel *)mc)->hdr.totalsize : \
109 DEFAULT_UCODE_TOTALSIZE)
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define get_datasize(mc) \
Peter Orubad4ee3662008-07-28 18:44:18 +0200112 (((struct microcode_intel *)mc)->hdr.datasize ? \
113 ((struct microcode_intel *)mc)->hdr.datasize : DEFAULT_UCODE_DATASIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
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
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200123static int collect_cpu_info(int cpu_num, struct cpu_signature *csig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Mike Travis92cb7612007-10-19 20:35:04 +0200125 struct cpuinfo_x86 *c = &cpu_data(cpu_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 unsigned int val[2];
127
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200128 memset(csig, 0, sizeof(*csig));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 ||
Peter Oruba3e135d82008-07-28 18:44:17 +0200131 cpu_has(c, X86_FEATURE_IA64)) {
Shaohua Li9a3110b2006-09-27 01:50:51 -0700132 printk(KERN_ERR "microcode: CPU%d not a capable Intel "
133 "processor\n", cpu_num);
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200134 return -1;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200137 csig->sig = cpuid_eax(0x00000001);
Shaohua Li9a3110b2006-09-27 01:50:51 -0700138
139 if ((c->x86_model >= 5) || (c->x86 > 6)) {
140 /* get processor flags from MSR 0x17 */
141 rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]);
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200142 csig->pf = 1 << ((val[1] >> 18) & 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144
145 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
Zachary Amsden245067d2005-09-03 15:56:37 -0700146 /* see notes above for revision 1.07. Apparent chip bug */
Andi Kleen487472b2006-01-11 22:45:27 +0100147 sync_core();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /* get the current revision from MSR 0x8B */
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200149 rdmsr(MSR_IA32_UCODE_REV, val[0], csig->rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 pr_debug("microcode: collect_cpu_info : sig=0x%x, pf=0x%x, rev=0x%x\n",
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200151 csig->sig, csig->pf, csig->rev);
152
153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200156static inline int update_match_cpu(struct cpu_signature *csig, int sig, int pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200158 return (!sigmatch(sig, csig->sig, pf, csig->pf)) ? 0 : 1;
159}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200161static inline int
162update_match_revision(struct microcode_header_intel *mc_header, int rev)
163{
164 return (mc_header->rev <= rev) ? 0 : 1;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700165}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Peter Oruba8d86f392008-07-28 18:44:21 +0200167static int microcode_sanity_check(void *mc)
Shaohua Li9a3110b2006-09-27 01:50:51 -0700168{
Peter Orubad4ee3662008-07-28 18:44:18 +0200169 struct microcode_header_intel *mc_header = mc;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700170 struct extended_sigtable *ext_header = NULL;
171 struct extended_signature *ext_sig;
172 unsigned long total_size, data_size, ext_table_size;
173 int sum, orig_sum, ext_sigcount = 0, i;
174
175 total_size = get_totalsize(mc_header);
176 data_size = get_datasize(mc_header);
Shaohua Libd8e39f2006-09-27 01:50:54 -0700177 if (data_size + MC_HEADER_SIZE > total_size) {
Shaohua Li9a3110b2006-09-27 01:50:51 -0700178 printk(KERN_ERR "microcode: error! "
179 "Bad data size in microcode data file\n");
180 return -EINVAL;
181 }
182
183 if (mc_header->ldrver != 1 || mc_header->hdrver != 1) {
184 printk(KERN_ERR "microcode: error! "
185 "Unknown microcode update format\n");
186 return -EINVAL;
187 }
188 ext_table_size = total_size - (MC_HEADER_SIZE + data_size);
189 if (ext_table_size) {
190 if ((ext_table_size < EXT_HEADER_SIZE)
191 || ((ext_table_size - EXT_HEADER_SIZE) % EXT_SIGNATURE_SIZE)) {
192 printk(KERN_ERR "microcode: error! "
193 "Small exttable size in microcode data file\n");
194 return -EINVAL;
Jan Beulichba528f22006-06-23 02:04:19 -0700195 }
Shaohua Li9a3110b2006-09-27 01:50:51 -0700196 ext_header = mc + MC_HEADER_SIZE + data_size;
197 if (ext_table_size != exttable_size(ext_header)) {
198 printk(KERN_ERR "microcode: error! "
199 "Bad exttable size in microcode data file\n");
200 return -EFAULT;
Jan Beulichba528f22006-06-23 02:04:19 -0700201 }
Shaohua Li9a3110b2006-09-27 01:50:51 -0700202 ext_sigcount = ext_header->count;
203 }
204
205 /* check extended table checksum */
206 if (ext_table_size) {
207 int ext_table_sum = 0;
Shaohua Li9a4b9ef2006-09-27 01:50:53 -0700208 int *ext_tablep = (int *)ext_header;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700209
210 i = ext_table_size / DWSIZE;
211 while (i--)
212 ext_table_sum += ext_tablep[i];
213 if (ext_table_sum) {
214 printk(KERN_WARNING "microcode: aborting, "
215 "bad extended signature table checksum\n");
216 return -EINVAL;
Jan Beulichba528f22006-06-23 02:04:19 -0700217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Shaohua Li9a3110b2006-09-27 01:50:51 -0700219
220 /* calculate the checksum */
221 orig_sum = 0;
222 i = (MC_HEADER_SIZE + data_size) / DWSIZE;
223 while (i--)
224 orig_sum += ((int *)mc)[i];
225 if (orig_sum) {
226 printk(KERN_ERR "microcode: aborting, bad checksum\n");
227 return -EINVAL;
228 }
229 if (!ext_table_size)
230 return 0;
231 /* check extended signature checksum */
232 for (i = 0; i < ext_sigcount; i++) {
Jan Engelhardtade1af72008-01-30 13:33:23 +0100233 ext_sig = (void *)ext_header + EXT_HEADER_SIZE +
234 EXT_SIGNATURE_SIZE * i;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700235 sum = orig_sum
236 - (mc_header->sig + mc_header->pf + mc_header->cksum)
237 + (ext_sig->sig + ext_sig->pf + ext_sig->cksum);
238 if (sum) {
239 printk(KERN_ERR "microcode: aborting, bad checksum\n");
240 return -EINVAL;
241 }
242 }
243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Shaohua Li9a3110b2006-09-27 01:50:51 -0700246/*
247 * return 0 - no update found
248 * return 1 - found update
Shaohua Li9a3110b2006-09-27 01:50:51 -0700249 */
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200250static int
251get_matching_microcode(struct cpu_signature *cpu_sig, void *mc, int rev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Peter Orubad4ee3662008-07-28 18:44:18 +0200253 struct microcode_header_intel *mc_header = mc;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700254 struct extended_sigtable *ext_header;
255 unsigned long total_size = get_totalsize(mc_header);
256 int ext_sigcount, i;
257 struct extended_signature *ext_sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200259 if (!update_match_revision(mc_header, rev))
260 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200262 if (update_match_cpu(cpu_sig, mc_header->sig, mc_header->pf))
263 return 1;
264
265 /* Look for ext. headers: */
Shaohua Li9a3110b2006-09-27 01:50:51 -0700266 if (total_size <= get_datasize(mc_header) + MC_HEADER_SIZE)
267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Jan Engelhardtade1af72008-01-30 13:33:23 +0100269 ext_header = mc + get_datasize(mc_header) + MC_HEADER_SIZE;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700270 ext_sigcount = ext_header->count;
Jan Engelhardtade1af72008-01-30 13:33:23 +0100271 ext_sig = (void *)ext_header + EXT_HEADER_SIZE;
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200272
Shaohua Li9a3110b2006-09-27 01:50:51 -0700273 for (i = 0; i < ext_sigcount; i++) {
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200274 if (update_match_cpu(cpu_sig, ext_sig->sig, ext_sig->pf))
275 return 1;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700276 ext_sig++;
277 }
278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Peter Oruba8d86f392008-07-28 18:44:21 +0200281static void apply_microcode(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 unsigned long flags;
284 unsigned int val[2];
Shaohua Li9a3110b2006-09-27 01:50:51 -0700285 int cpu_num = raw_smp_processor_id();
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200286 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Shaohua Li9a3110b2006-09-27 01:50:51 -0700288 /* We should bind the task to the CPU */
289 BUG_ON(cpu_num != cpu);
290
Peter Orubad4ee3662008-07-28 18:44:18 +0200291 if (uci->mc.mc_intel == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /* serialize access to the physical write to MSR 0x79 */
Ben Castricumbc4e0f92008-06-10 13:15:12 +0200295 spin_lock_irqsave(&microcode_update_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 /* write microcode via MSR 0x79 */
298 wrmsr(MSR_IA32_UCODE_WRITE,
Peter Orubad4ee3662008-07-28 18:44:18 +0200299 (unsigned long) uci->mc.mc_intel->bits,
300 (unsigned long) uci->mc.mc_intel->bits >> 16 >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
302
Zachary Amsden245067d2005-09-03 15:56:37 -0700303 /* see notes above for revision 1.07. Apparent chip bug */
Andi Kleen487472b2006-01-11 22:45:27 +0100304 sync_core();
Zachary Amsden245067d2005-09-03 15:56:37 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* get the current revision from MSR 0x8B */
307 rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]);
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 spin_unlock_irqrestore(&microcode_update_lock, flags);
Peter Orubad4ee3662008-07-28 18:44:18 +0200310 if (val[1] != uci->mc.mc_intel->hdr.rev) {
Ben Castricumfe176de2008-03-27 20:52:35 +0100311 printk(KERN_ERR "microcode: CPU%d update from revision "
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200312 "0x%x to 0x%x failed\n", cpu_num, uci->cpu_sig.rev, val[1]);
Shaohua Li9a3110b2006-09-27 01:50:51 -0700313 return;
314 }
Ben Castricumfe176de2008-03-27 20:52:35 +0100315 printk(KERN_INFO "microcode: CPU%d updated from revision "
David Woodhouse34a1b9f2008-08-12 13:25:44 +0100316 "0x%x to 0x%x, date = %04x-%02x-%02x \n",
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200317 cpu_num, uci->cpu_sig.rev, val[1],
David Woodhouse34a1b9f2008-08-12 13:25:44 +0100318 uci->mc.mc_intel->hdr.date & 0xffff,
319 uci->mc.mc_intel->hdr.date >> 24,
320 (uci->mc.mc_intel->hdr.date >> 16) & 0xff);
Dmitry Adamushkod45de402008-08-20 00:22:26 +0200321 uci->cpu_sig.rev = val[1];
Shaohua Li9a3110b2006-09-27 01:50:51 -0700322}
323
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200324static int generic_load_microcode(int cpu, void *data, size_t size,
325 int (*get_ucode_data)(void *, const void *, size_t))
Shaohua Li9a3110b2006-09-27 01:50:51 -0700326{
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200327 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
328 u8 *ucode_ptr = data, *new_mc = NULL, *mc;
329 int new_rev = uci->cpu_sig.rev;
330 unsigned int leftover = size;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700331
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200332 while (leftover) {
333 struct microcode_header_intel mc_header;
334 unsigned int mc_size;
Shaohua Li9a3110b2006-09-27 01:50:51 -0700335
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200336 if (get_ucode_data(&mc_header, ucode_ptr, sizeof(mc_header)))
337 break;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700338
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200339 mc_size = get_totalsize(&mc_header);
340 if (!mc_size || mc_size > leftover) {
341 printk(KERN_ERR "microcode: error!"
342 "Bad data in microcode data file\n");
343 break;
344 }
Shaohua Lia30a6a22006-09-27 01:50:52 -0700345
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200346 mc = vmalloc(mc_size);
347 if (!mc)
348 break;
349
350 if (get_ucode_data(mc, ucode_ptr, mc_size) ||
351 microcode_sanity_check(mc) < 0) {
352 vfree(mc);
353 break;
354 }
355
356 if (get_matching_microcode(&uci->cpu_sig, mc, new_rev)) {
Ingo Molnara1c75cc2008-09-14 14:50:26 +0200357 if (new_mc)
358 vfree(new_mc);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200359 new_rev = mc_header.rev;
360 new_mc = mc;
361 } else
362 vfree(mc);
363
364 ucode_ptr += mc_size;
365 leftover -= mc_size;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700366 }
367
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200368 if (new_mc) {
369 if (!leftover) {
370 if (uci->mc.mc_intel)
371 vfree(uci->mc.mc_intel);
372 uci->mc.mc_intel = (struct microcode_intel *)new_mc;
373 pr_debug("microcode: CPU%d found a matching microcode update with"
374 " version 0x%x (current=0x%x)\n",
375 cpu, uci->mc.mc_intel->hdr.rev, uci->cpu_sig.rev);
376 } else
377 vfree(new_mc);
Shaohua Lia30a6a22006-09-27 01:50:52 -0700378 }
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200379
380 return (int)leftover;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700381}
382
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200383static int get_ucode_fw(void *to, const void *from, size_t n)
384{
385 memcpy(to, from, n);
386 return 0;
387}
Shaohua Lia30a6a22006-09-27 01:50:52 -0700388
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200389static int request_microcode_fw(int cpu, struct device *device)
Shaohua Lia30a6a22006-09-27 01:50:52 -0700390{
391 char name[30];
Mike Travis92cb7612007-10-19 20:35:04 +0200392 struct cpuinfo_x86 *c = &cpu_data(cpu);
Shaohua Lia30a6a22006-09-27 01:50:52 -0700393 const struct firmware *firmware;
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200394 int ret;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700395
396 /* We should bind the task to the CPU */
397 BUG_ON(cpu != raw_smp_processor_id());
Peter Oruba3e135d82008-07-28 18:44:17 +0200398 sprintf(name, "intel-ucode/%02x-%02x-%02x",
Shaohua Lia30a6a22006-09-27 01:50:52 -0700399 c->x86, c->x86_model, c->x86_mask);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200400 ret = request_firmware(&firmware, name, device);
401 if (ret) {
Ben Castricumbc4e0f92008-06-10 13:15:12 +0200402 pr_debug("microcode: data file %s load failed\n", name);
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200403 return ret;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700404 }
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200405
406 ret = generic_load_microcode(cpu, (void*)firmware->data, firmware->size,
407 &get_ucode_fw);
408
Shaohua Lia30a6a22006-09-27 01:50:52 -0700409 release_firmware(firmware);
410
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200411 return ret;
412}
413
414static int get_ucode_user(void *to, const void *from, size_t n)
415{
416 return copy_from_user(to, from, n);
417}
418
419static int request_microcode_user(int cpu, const void __user *buf, size_t size)
420{
421 /* We should bind the task to the CPU */
422 BUG_ON(cpu != raw_smp_processor_id());
423
424 return generic_load_microcode(cpu, (void*)buf, size, &get_ucode_user);
Shaohua Lia30a6a22006-09-27 01:50:52 -0700425}
426
Peter Oruba8d86f392008-07-28 18:44:21 +0200427static void microcode_fini_cpu(int cpu)
Shaohua Lia30a6a22006-09-27 01:50:52 -0700428{
429 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
430
Peter Oruba8d86f392008-07-28 18:44:21 +0200431 vfree(uci->mc.mc_intel);
Peter Orubad4ee3662008-07-28 18:44:18 +0200432 uci->mc.mc_intel = NULL;
Shaohua Lia30a6a22006-09-27 01:50:52 -0700433}
Peter Oruba8d86f392008-07-28 18:44:21 +0200434
435static struct microcode_ops microcode_intel_ops = {
Dmitry Adamushkoa0a29b62008-09-11 23:27:52 +0200436 .request_microcode_user = request_microcode_user,
437 .request_microcode_fw = request_microcode_fw,
Peter Oruba8d86f392008-07-28 18:44:21 +0200438 .collect_cpu_info = collect_cpu_info,
439 .apply_microcode = apply_microcode,
440 .microcode_fini_cpu = microcode_fini_cpu,
441};
442
443static int __init microcode_intel_module_init(void)
444{
Dmitry Adamushko8343ef22008-08-20 00:16:13 +0200445 struct cpuinfo_x86 *c = &cpu_data(0);
Peter Oruba8d86f392008-07-28 18:44:21 +0200446
Dmitry Adamushko8343ef22008-08-20 00:16:13 +0200447 if (c->x86_vendor != X86_VENDOR_INTEL) {
448 printk(KERN_ERR "microcode: CPU platform is not Intel-capable\n");
Peter Oruba8d86f392008-07-28 18:44:21 +0200449 return -ENODEV;
Dmitry Adamushko8343ef22008-08-20 00:16:13 +0200450 }
451
452 return microcode_init(&microcode_intel_ops, THIS_MODULE);
Peter Oruba8d86f392008-07-28 18:44:21 +0200453}
454
455static void __exit microcode_intel_module_exit(void)
456{
457 microcode_exit();
458}
459
460module_init(microcode_intel_module_init)
461module_exit(microcode_intel_module_exit)