dm table: reject devices without request fns
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kernel / microcode_core.c
blob1cca374a2bacc8f1f5275847ef4d4cd2787c0545
1 /*
2 * Intel CPU Microcode Update Driver for Linux
4 * Copyright (C) 2000-2006 Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
5 * 2006 Shaohua Li <shaohua.li@intel.com>
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.
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:
15 * http://developer.intel.com/Assets/PDF/manual/253668.pdf
17 * For more information, go to http://www.urbanmyth.org/microcode
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.
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>,
58 * Serialize updates as required on HT processors due to
59 * speculative nature of implementation.
60 * 1.11 22 Mar 2002 Tigran Aivazian <tigran@veritas.com>
61 * Fix the panic when writing zero-length microcode chunk.
62 * 1.12 29 Sep 2003 Nitin Kamble <nitin.a.kamble@intel.com>,
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
67 * because we no longer hold a copy of applied microcode
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.
74 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
76 #include <linux/platform_device.h>
77 #include <linux/miscdevice.h>
78 #include <linux/capability.h>
79 #include <linux/kernel.h>
80 #include <linux/module.h>
81 #include <linux/mutex.h>
82 #include <linux/cpu.h>
83 #include <linux/fs.h>
84 #include <linux/mm.h>
86 #include <asm/microcode.h>
87 #include <asm/processor.h>
89 MODULE_DESCRIPTION("Microcode Update Driver");
90 MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>");
91 MODULE_LICENSE("GPL");
93 #define MICROCODE_VERSION "2.00"
95 static struct microcode_ops *microcode_ops;
98 * Synchronization.
100 * All non cpu-hotplug-callback call sites use:
102 * - microcode_mutex to synchronize with each other;
103 * - get/put_online_cpus() to synchronize with
104 * the cpu-hotplug-callback call sites.
106 * We guarantee that only a single cpu is being
107 * updated at any particular moment of time.
109 static DEFINE_MUTEX(microcode_mutex);
111 struct ucode_cpu_info ucode_cpu_info[NR_CPUS];
112 EXPORT_SYMBOL_GPL(ucode_cpu_info);
115 * Operations that are run on a target cpu:
118 struct cpu_info_ctx {
119 struct cpu_signature *cpu_sig;
120 int err;
123 static void collect_cpu_info_local(void *arg)
125 struct cpu_info_ctx *ctx = arg;
127 ctx->err = microcode_ops->collect_cpu_info(smp_processor_id(),
128 ctx->cpu_sig);
131 static int collect_cpu_info_on_target(int cpu, struct cpu_signature *cpu_sig)
133 struct cpu_info_ctx ctx = { .cpu_sig = cpu_sig, .err = 0 };
134 int ret;
136 ret = smp_call_function_single(cpu, collect_cpu_info_local, &ctx, 1);
137 if (!ret)
138 ret = ctx.err;
140 return ret;
143 static int collect_cpu_info(int cpu)
145 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
146 int ret;
148 memset(uci, 0, sizeof(*uci));
150 ret = collect_cpu_info_on_target(cpu, &uci->cpu_sig);
151 if (!ret)
152 uci->valid = 1;
154 return ret;
157 struct apply_microcode_ctx {
158 int err;
161 static void apply_microcode_local(void *arg)
163 struct apply_microcode_ctx *ctx = arg;
165 ctx->err = microcode_ops->apply_microcode(smp_processor_id());
168 static int apply_microcode_on_target(int cpu)
170 struct apply_microcode_ctx ctx = { .err = 0 };
171 int ret;
173 ret = smp_call_function_single(cpu, apply_microcode_local, &ctx, 1);
174 if (!ret)
175 ret = ctx.err;
177 return ret;
180 #ifdef CONFIG_MICROCODE_OLD_INTERFACE
181 static int do_microcode_update(const void __user *buf, size_t size)
183 int error = 0;
184 int cpu;
186 for_each_online_cpu(cpu) {
187 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
188 enum ucode_state ustate;
190 if (!uci->valid)
191 continue;
193 ustate = microcode_ops->request_microcode_user(cpu, buf, size);
194 if (ustate == UCODE_ERROR) {
195 error = -1;
196 break;
197 } else if (ustate == UCODE_OK)
198 apply_microcode_on_target(cpu);
201 return error;
204 static int microcode_open(struct inode *inode, struct file *file)
206 return capable(CAP_SYS_RAWIO) ? nonseekable_open(inode, file) : -EPERM;
209 static ssize_t microcode_write(struct file *file, const char __user *buf,
210 size_t len, loff_t *ppos)
212 ssize_t ret = -EINVAL;
214 if ((len >> PAGE_SHIFT) > totalram_pages) {
215 pr_err("too much data (max %ld pages)\n", totalram_pages);
216 return ret;
219 get_online_cpus();
220 mutex_lock(&microcode_mutex);
222 if (do_microcode_update(buf, len) == 0)
223 ret = (ssize_t)len;
225 mutex_unlock(&microcode_mutex);
226 put_online_cpus();
228 return ret;
231 static const struct file_operations microcode_fops = {
232 .owner = THIS_MODULE,
233 .write = microcode_write,
234 .open = microcode_open,
235 .llseek = no_llseek,
238 static struct miscdevice microcode_dev = {
239 .minor = MICROCODE_MINOR,
240 .name = "microcode",
241 .nodename = "cpu/microcode",
242 .fops = &microcode_fops,
245 static int __init microcode_dev_init(void)
247 int error;
249 error = misc_register(&microcode_dev);
250 if (error) {
251 pr_err("can't misc_register on minor=%d\n", MICROCODE_MINOR);
252 return error;
255 return 0;
258 static void microcode_dev_exit(void)
260 misc_deregister(&microcode_dev);
263 MODULE_ALIAS_MISCDEV(MICROCODE_MINOR);
264 MODULE_ALIAS("devname:cpu/microcode");
265 #else
266 #define microcode_dev_init() 0
267 #define microcode_dev_exit() do { } while (0)
268 #endif
270 /* fake device for request_firmware */
271 static struct platform_device *microcode_pdev;
273 static int reload_for_cpu(int cpu)
275 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
276 int err = 0;
278 mutex_lock(&microcode_mutex);
279 if (uci->valid) {
280 enum ucode_state ustate;
282 ustate = microcode_ops->request_microcode_fw(cpu, &microcode_pdev->dev);
283 if (ustate == UCODE_OK)
284 apply_microcode_on_target(cpu);
285 else
286 if (ustate == UCODE_ERROR)
287 err = -EINVAL;
289 mutex_unlock(&microcode_mutex);
291 return err;
294 static ssize_t reload_store(struct sys_device *dev,
295 struct sysdev_attribute *attr,
296 const char *buf, size_t size)
298 unsigned long val;
299 int cpu = dev->id;
300 int ret = 0;
301 char *end;
303 val = simple_strtoul(buf, &end, 0);
304 if (end == buf)
305 return -EINVAL;
307 if (val == 1) {
308 get_online_cpus();
309 if (cpu_online(cpu))
310 ret = reload_for_cpu(cpu);
311 put_online_cpus();
314 if (!ret)
315 ret = size;
317 return ret;
320 static ssize_t version_show(struct sys_device *dev,
321 struct sysdev_attribute *attr, char *buf)
323 struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
325 return sprintf(buf, "0x%x\n", uci->cpu_sig.rev);
328 static ssize_t pf_show(struct sys_device *dev,
329 struct sysdev_attribute *attr, char *buf)
331 struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
333 return sprintf(buf, "0x%x\n", uci->cpu_sig.pf);
336 static SYSDEV_ATTR(reload, 0200, NULL, reload_store);
337 static SYSDEV_ATTR(version, 0400, version_show, NULL);
338 static SYSDEV_ATTR(processor_flags, 0400, pf_show, NULL);
340 static struct attribute *mc_default_attrs[] = {
341 &attr_reload.attr,
342 &attr_version.attr,
343 &attr_processor_flags.attr,
344 NULL
347 static struct attribute_group mc_attr_group = {
348 .attrs = mc_default_attrs,
349 .name = "microcode",
352 static void microcode_fini_cpu(int cpu)
354 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
356 microcode_ops->microcode_fini_cpu(cpu);
357 uci->valid = 0;
360 static enum ucode_state microcode_resume_cpu(int cpu)
362 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
364 if (!uci->mc)
365 return UCODE_NFOUND;
367 pr_debug("CPU%d updated upon resume\n", cpu);
368 apply_microcode_on_target(cpu);
370 return UCODE_OK;
373 static enum ucode_state microcode_init_cpu(int cpu)
375 enum ucode_state ustate;
377 if (collect_cpu_info(cpu))
378 return UCODE_ERROR;
380 /* --dimm. Trigger a delayed update? */
381 if (system_state != SYSTEM_RUNNING)
382 return UCODE_NFOUND;
384 ustate = microcode_ops->request_microcode_fw(cpu, &microcode_pdev->dev);
386 if (ustate == UCODE_OK) {
387 pr_debug("CPU%d updated upon init\n", cpu);
388 apply_microcode_on_target(cpu);
391 return ustate;
394 static enum ucode_state microcode_update_cpu(int cpu)
396 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
397 enum ucode_state ustate;
399 if (uci->valid)
400 ustate = microcode_resume_cpu(cpu);
401 else
402 ustate = microcode_init_cpu(cpu);
404 return ustate;
407 static int mc_sysdev_add(struct sys_device *sys_dev)
409 int err, cpu = sys_dev->id;
411 if (!cpu_online(cpu))
412 return 0;
414 pr_debug("CPU%d added\n", cpu);
416 err = sysfs_create_group(&sys_dev->kobj, &mc_attr_group);
417 if (err)
418 return err;
420 if (microcode_init_cpu(cpu) == UCODE_ERROR)
421 err = -EINVAL;
423 return err;
426 static int mc_sysdev_remove(struct sys_device *sys_dev)
428 int cpu = sys_dev->id;
430 if (!cpu_online(cpu))
431 return 0;
433 pr_debug("CPU%d removed\n", cpu);
434 microcode_fini_cpu(cpu);
435 sysfs_remove_group(&sys_dev->kobj, &mc_attr_group);
436 return 0;
439 static int mc_sysdev_resume(struct sys_device *dev)
441 int cpu = dev->id;
442 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
444 if (!cpu_online(cpu))
445 return 0;
448 * All non-bootup cpus are still disabled,
449 * so only CPU 0 will apply ucode here.
451 * Moreover, there can be no concurrent
452 * updates from any other places at this point.
454 WARN_ON(cpu != 0);
456 if (uci->valid && uci->mc)
457 microcode_ops->apply_microcode(cpu);
459 return 0;
462 static struct sysdev_driver mc_sysdev_driver = {
463 .add = mc_sysdev_add,
464 .remove = mc_sysdev_remove,
465 .resume = mc_sysdev_resume,
468 static __cpuinit int
469 mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu)
471 unsigned int cpu = (unsigned long)hcpu;
472 struct sys_device *sys_dev;
474 sys_dev = get_cpu_sysdev(cpu);
475 switch (action) {
476 case CPU_ONLINE:
477 case CPU_ONLINE_FROZEN:
478 microcode_update_cpu(cpu);
479 case CPU_DOWN_FAILED:
480 case CPU_DOWN_FAILED_FROZEN:
481 pr_debug("CPU%d added\n", cpu);
482 if (sysfs_create_group(&sys_dev->kobj, &mc_attr_group))
483 pr_err("Failed to create group for CPU%d\n", cpu);
484 break;
485 case CPU_DOWN_PREPARE:
486 case CPU_DOWN_PREPARE_FROZEN:
487 /* Suspend is in progress, only remove the interface */
488 sysfs_remove_group(&sys_dev->kobj, &mc_attr_group);
489 pr_debug("CPU%d removed\n", cpu);
490 break;
491 case CPU_DEAD:
492 case CPU_UP_CANCELED_FROZEN:
493 /* The CPU refused to come up during a system resume */
494 microcode_fini_cpu(cpu);
495 break;
497 return NOTIFY_OK;
500 static struct notifier_block __refdata mc_cpu_notifier = {
501 .notifier_call = mc_cpu_callback,
504 static int __init microcode_init(void)
506 struct cpuinfo_x86 *c = &cpu_data(0);
507 int error;
509 if (c->x86_vendor == X86_VENDOR_INTEL)
510 microcode_ops = init_intel_microcode();
511 else if (c->x86_vendor == X86_VENDOR_AMD)
512 microcode_ops = init_amd_microcode();
514 if (!microcode_ops) {
515 pr_err("no support for this CPU vendor\n");
516 return -ENODEV;
519 microcode_pdev = platform_device_register_simple("microcode", -1,
520 NULL, 0);
521 if (IS_ERR(microcode_pdev)) {
522 microcode_dev_exit();
523 return PTR_ERR(microcode_pdev);
526 get_online_cpus();
527 mutex_lock(&microcode_mutex);
529 error = sysdev_driver_register(&cpu_sysdev_class, &mc_sysdev_driver);
531 mutex_unlock(&microcode_mutex);
532 put_online_cpus();
534 if (error) {
535 platform_device_unregister(microcode_pdev);
536 return error;
539 error = microcode_dev_init();
540 if (error)
541 return error;
543 register_hotcpu_notifier(&mc_cpu_notifier);
545 pr_info("Microcode Update Driver: v" MICROCODE_VERSION
546 " <tigran@aivazian.fsnet.co.uk>, Peter Oruba\n");
548 return 0;
550 module_init(microcode_init);
552 static void __exit microcode_exit(void)
554 microcode_dev_exit();
556 unregister_hotcpu_notifier(&mc_cpu_notifier);
558 get_online_cpus();
559 mutex_lock(&microcode_mutex);
561 sysdev_driver_unregister(&cpu_sysdev_class, &mc_sysdev_driver);
563 mutex_unlock(&microcode_mutex);
564 put_online_cpus();
566 platform_device_unregister(microcode_pdev);
568 microcode_ops = NULL;
570 pr_info("Microcode Update Driver: v" MICROCODE_VERSION " removed.\n");
572 module_exit(microcode_exit);