2008-07-28 16:44:17 +00:00
|
|
|
/*
|
|
|
|
* Intel CPU Microcode Update Driver for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000-2006 Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
|
|
|
|
* 2006 Shaohua Li <shaohua.li@intel.com>
|
|
|
|
*
|
|
|
|
* This driver allows to upgrade microcode on Intel processors
|
|
|
|
* belonging to IA-32 family - PentiumPro, Pentium II,
|
|
|
|
* Pentium III, Xeon, Pentium 4, etc.
|
|
|
|
*
|
|
|
|
* Reference: Section 8.11 of Volume 3a, IA-32 Intel? Architecture
|
|
|
|
* Software Developer's Manual
|
|
|
|
* Order Number 253668 or free download from:
|
|
|
|
*
|
2010-10-16 17:36:23 +00:00
|
|
|
* http://developer.intel.com/Assets/PDF/manual/253668.pdf
|
2008-07-28 16:44:17 +00:00
|
|
|
*
|
|
|
|
* For more information, go to http://www.urbanmyth.org/microcode
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 1.0 16 Feb 2000, Tigran Aivazian <tigran@sco.com>
|
|
|
|
* Initial release.
|
|
|
|
* 1.01 18 Feb 2000, Tigran Aivazian <tigran@sco.com>
|
|
|
|
* Added read() support + cleanups.
|
|
|
|
* 1.02 21 Feb 2000, Tigran Aivazian <tigran@sco.com>
|
|
|
|
* Added 'device trimming' support. open(O_WRONLY) zeroes
|
|
|
|
* and frees the saved copy of applied microcode.
|
|
|
|
* 1.03 29 Feb 2000, Tigran Aivazian <tigran@sco.com>
|
|
|
|
* Made to use devfs (/dev/cpu/microcode) + cleanups.
|
|
|
|
* 1.04 06 Jun 2000, Simon Trimmer <simon@veritas.com>
|
|
|
|
* Added misc device support (now uses both devfs and misc).
|
|
|
|
* Added MICROCODE_IOCFREE ioctl to clear memory.
|
|
|
|
* 1.05 09 Jun 2000, Simon Trimmer <simon@veritas.com>
|
|
|
|
* Messages for error cases (non Intel & no suitable microcode).
|
|
|
|
* 1.06 03 Aug 2000, Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Removed ->release(). Removed exclusive open and status bitmap.
|
|
|
|
* Added microcode_rwsem to serialize read()/write()/ioctl().
|
|
|
|
* Removed global kernel lock usage.
|
|
|
|
* 1.07 07 Sep 2000, Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Write 0 to 0x8B msr and then cpuid before reading revision,
|
|
|
|
* so that it works even if there were no update done by the
|
|
|
|
* BIOS. Otherwise, reading from 0x8B gives junk (which happened
|
|
|
|
* to be 0 on my machine which is why it worked even when I
|
|
|
|
* disabled update by the BIOS)
|
|
|
|
* Thanks to Eric W. Biederman <ebiederman@lnxi.com> for the fix.
|
|
|
|
* 1.08 11 Dec 2000, Richard Schaal <richard.schaal@intel.com> and
|
|
|
|
* Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Intel Pentium 4 processor support and bugfixes.
|
|
|
|
* 1.09 30 Oct 2001, Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Bugfix for HT (Hyper-Threading) enabled processors
|
|
|
|
* whereby processor resources are shared by all logical processors
|
|
|
|
* in a single CPU package.
|
|
|
|
* 1.10 28 Feb 2002 Asit K Mallick <asit.k.mallick@intel.com> and
|
|
|
|
* Tigran Aivazian <tigran@veritas.com>,
|
2008-08-01 10:46:45 +00:00
|
|
|
* Serialize updates as required on HT processors due to
|
|
|
|
* speculative nature of implementation.
|
2008-07-28 16:44:17 +00:00
|
|
|
* 1.11 22 Mar 2002 Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Fix the panic when writing zero-length microcode chunk.
|
|
|
|
* 1.12 29 Sep 2003 Nitin Kamble <nitin.a.kamble@intel.com>,
|
|
|
|
* Jun Nakajima <jun.nakajima@intel.com>
|
|
|
|
* Support for the microcode updates in the new format.
|
|
|
|
* 1.13 10 Oct 2003 Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Removed ->read() method and obsoleted MICROCODE_IOCFREE ioctl
|
|
|
|
* because we no longer hold a copy of applied microcode
|
|
|
|
* in kernel memory.
|
|
|
|
* 1.14 25 Jun 2004 Tigran Aivazian <tigran@veritas.com>
|
|
|
|
* Fix sigmatch() macro to handle old CPUs with pf == 0.
|
|
|
|
* Thanks to Stuart Swales for pointing out this bug.
|
|
|
|
*/
|
2009-12-09 06:30:50 +00:00
|
|
|
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2009-03-11 10:19:46 +00:00
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/miscdevice.h>
|
2009-05-11 21:48:27 +00:00
|
|
|
#include <linux/capability.h>
|
2009-03-11 10:19:46 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
2008-07-28 16:44:17 +00:00
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/cpu.h>
|
2009-03-11 10:19:46 +00:00
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mm.h>
|
2011-03-23 21:15:54 +00:00
|
|
|
#include <linux/syscore_ops.h>
|
2008-07-28 16:44:17 +00:00
|
|
|
|
|
|
|
#include <asm/microcode.h>
|
2009-03-11 10:19:46 +00:00
|
|
|
#include <asm/processor.h>
|
2012-01-25 23:09:13 +00:00
|
|
|
#include <asm/cpu_device_id.h>
|
2012-06-08 12:50:50 +00:00
|
|
|
#include <asm/perf_event.h>
|
2008-07-28 16:44:17 +00:00
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Microcode Update Driver");
|
|
|
|
MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
2009-03-11 10:19:46 +00:00
|
|
|
#define MICROCODE_VERSION "2.00"
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2009-03-11 10:19:46 +00:00
|
|
|
static struct microcode_ops *microcode_ops;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
/*
|
|
|
|
* Synchronization.
|
|
|
|
*
|
|
|
|
* All non cpu-hotplug-callback call sites use:
|
|
|
|
*
|
|
|
|
* - microcode_mutex to synchronize with each other;
|
|
|
|
* - get/put_online_cpus() to synchronize with
|
|
|
|
* the cpu-hotplug-callback call sites.
|
|
|
|
*
|
|
|
|
* We guarantee that only a single cpu is being
|
|
|
|
* updated at any particular moment of time.
|
|
|
|
*/
|
2008-08-19 22:22:26 +00:00
|
|
|
static DEFINE_MUTEX(microcode_mutex);
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2009-03-11 10:19:46 +00:00
|
|
|
struct ucode_cpu_info ucode_cpu_info[NR_CPUS];
|
2008-07-28 16:44:21 +00:00
|
|
|
EXPORT_SYMBOL_GPL(ucode_cpu_info);
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
/*
|
|
|
|
* Operations that are run on a target cpu:
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct cpu_info_ctx {
|
|
|
|
struct cpu_signature *cpu_sig;
|
|
|
|
int err;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void collect_cpu_info_local(void *arg)
|
|
|
|
{
|
|
|
|
struct cpu_info_ctx *ctx = arg;
|
|
|
|
|
|
|
|
ctx->err = microcode_ops->collect_cpu_info(smp_processor_id(),
|
|
|
|
ctx->cpu_sig);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int collect_cpu_info_on_target(int cpu, struct cpu_signature *cpu_sig)
|
|
|
|
{
|
|
|
|
struct cpu_info_ctx ctx = { .cpu_sig = cpu_sig, .err = 0 };
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = smp_call_function_single(cpu, collect_cpu_info_local, &ctx, 1);
|
|
|
|
if (!ret)
|
|
|
|
ret = ctx.err;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int collect_cpu_info(int cpu)
|
|
|
|
{
|
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
memset(uci, 0, sizeof(*uci));
|
|
|
|
|
|
|
|
ret = collect_cpu_info_on_target(cpu, &uci->cpu_sig);
|
|
|
|
if (!ret)
|
|
|
|
uci->valid = 1;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct apply_microcode_ctx {
|
|
|
|
int err;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void apply_microcode_local(void *arg)
|
|
|
|
{
|
|
|
|
struct apply_microcode_ctx *ctx = arg;
|
|
|
|
|
|
|
|
ctx->err = microcode_ops->apply_microcode(smp_processor_id());
|
|
|
|
}
|
|
|
|
|
|
|
|
static int apply_microcode_on_target(int cpu)
|
|
|
|
{
|
|
|
|
struct apply_microcode_ctx ctx = { .err = 0 };
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = smp_call_function_single(cpu, apply_microcode_local, &ctx, 1);
|
|
|
|
if (!ret)
|
|
|
|
ret = ctx.err;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
#ifdef CONFIG_MICROCODE_OLD_INTERFACE
|
2008-09-11 21:27:52 +00:00
|
|
|
static int do_microcode_update(const void __user *buf, size_t size)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
int cpu;
|
2009-04-14 18:25:42 +00:00
|
|
|
|
2008-09-11 21:27:52 +00:00
|
|
|
for_each_online_cpu(cpu) {
|
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
2009-05-11 21:48:27 +00:00
|
|
|
enum ucode_state ustate;
|
2008-09-11 21:27:52 +00:00
|
|
|
|
|
|
|
if (!uci->valid)
|
|
|
|
continue;
|
2009-04-14 18:25:42 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
ustate = microcode_ops->request_microcode_user(cpu, buf, size);
|
|
|
|
if (ustate == UCODE_ERROR) {
|
|
|
|
error = -1;
|
|
|
|
break;
|
|
|
|
} else if (ustate == UCODE_OK)
|
|
|
|
apply_microcode_on_target(cpu);
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
2009-05-11 21:48:27 +00:00
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2010-04-10 14:46:21 +00:00
|
|
|
static int microcode_open(struct inode *inode, struct file *file)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
2010-04-10 14:46:21 +00:00
|
|
|
return capable(CAP_SYS_RAWIO) ? nonseekable_open(inode, file) : -EPERM;
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
|
|
|
|
2008-08-01 10:46:45 +00:00
|
|
|
static ssize_t microcode_write(struct file *file, const char __user *buf,
|
|
|
|
size_t len, loff_t *ppos)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
2009-05-11 21:48:27 +00:00
|
|
|
ssize_t ret = -EINVAL;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2009-09-22 00:03:05 +00:00
|
|
|
if ((len >> PAGE_SHIFT) > totalram_pages) {
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_err("too much data (max %ld pages)\n", totalram_pages);
|
2009-05-11 21:48:27 +00:00
|
|
|
return ret;
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get_online_cpus();
|
|
|
|
mutex_lock(µcode_mutex);
|
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
if (do_microcode_update(buf, len) == 0)
|
2008-07-28 16:44:17 +00:00
|
|
|
ret = (ssize_t)len;
|
|
|
|
|
2012-08-24 13:34:34 +00:00
|
|
|
if (ret > 0)
|
|
|
|
perf_check_microcode();
|
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
mutex_unlock(µcode_mutex);
|
|
|
|
put_online_cpus();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations microcode_fops = {
|
2009-05-11 21:48:27 +00:00
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.write = microcode_write,
|
|
|
|
.open = microcode_open,
|
llseek: automatically add .llseek fop
All file_operations should get a .llseek operation so we can make
nonseekable_open the default for future file operations without a
.llseek pointer.
The three cases that we can automatically detect are no_llseek, seq_lseek
and default_llseek. For cases where we can we can automatically prove that
the file offset is always ignored, we use noop_llseek, which maintains
the current behavior of not returning an error from a seek.
New drivers should normally not use noop_llseek but instead use no_llseek
and call nonseekable_open at open time. Existing drivers can be converted
to do the same when the maintainer knows for certain that no user code
relies on calling seek on the device file.
The generated code is often incorrectly indented and right now contains
comments that clarify for each added line why a specific variant was
chosen. In the version that gets submitted upstream, the comments will
be gone and I will manually fix the indentation, because there does not
seem to be a way to do that using coccinelle.
Some amount of new code is currently sitting in linux-next that should get
the same modifications, which I will do at the end of the merge window.
Many thanks to Julia Lawall for helping me learn to write a semantic
patch that does all this.
===== begin semantic patch =====
// This adds an llseek= method to all file operations,
// as a preparation for making no_llseek the default.
//
// The rules are
// - use no_llseek explicitly if we do nonseekable_open
// - use seq_lseek for sequential files
// - use default_llseek if we know we access f_pos
// - use noop_llseek if we know we don't access f_pos,
// but we still want to allow users to call lseek
//
@ open1 exists @
identifier nested_open;
@@
nested_open(...)
{
<+...
nonseekable_open(...)
...+>
}
@ open exists@
identifier open_f;
identifier i, f;
identifier open1.nested_open;
@@
int open_f(struct inode *i, struct file *f)
{
<+...
(
nonseekable_open(...)
|
nested_open(...)
)
...+>
}
@ read disable optional_qualifier exists @
identifier read_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
expression E;
identifier func;
@@
ssize_t read_f(struct file *f, char *p, size_t s, loff_t *off)
{
<+...
(
*off = E
|
*off += E
|
func(..., off, ...)
|
E = *off
)
...+>
}
@ read_no_fpos disable optional_qualifier exists @
identifier read_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
@@
ssize_t read_f(struct file *f, char *p, size_t s, loff_t *off)
{
... when != off
}
@ write @
identifier write_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
expression E;
identifier func;
@@
ssize_t write_f(struct file *f, const char *p, size_t s, loff_t *off)
{
<+...
(
*off = E
|
*off += E
|
func(..., off, ...)
|
E = *off
)
...+>
}
@ write_no_fpos @
identifier write_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
@@
ssize_t write_f(struct file *f, const char *p, size_t s, loff_t *off)
{
... when != off
}
@ fops0 @
identifier fops;
@@
struct file_operations fops = {
...
};
@ has_llseek depends on fops0 @
identifier fops0.fops;
identifier llseek_f;
@@
struct file_operations fops = {
...
.llseek = llseek_f,
...
};
@ has_read depends on fops0 @
identifier fops0.fops;
identifier read_f;
@@
struct file_operations fops = {
...
.read = read_f,
...
};
@ has_write depends on fops0 @
identifier fops0.fops;
identifier write_f;
@@
struct file_operations fops = {
...
.write = write_f,
...
};
@ has_open depends on fops0 @
identifier fops0.fops;
identifier open_f;
@@
struct file_operations fops = {
...
.open = open_f,
...
};
// use no_llseek if we call nonseekable_open
////////////////////////////////////////////
@ nonseekable1 depends on !has_llseek && has_open @
identifier fops0.fops;
identifier nso ~= "nonseekable_open";
@@
struct file_operations fops = {
... .open = nso, ...
+.llseek = no_llseek, /* nonseekable */
};
@ nonseekable2 depends on !has_llseek @
identifier fops0.fops;
identifier open.open_f;
@@
struct file_operations fops = {
... .open = open_f, ...
+.llseek = no_llseek, /* open uses nonseekable */
};
// use seq_lseek for sequential files
/////////////////////////////////////
@ seq depends on !has_llseek @
identifier fops0.fops;
identifier sr ~= "seq_read";
@@
struct file_operations fops = {
... .read = sr, ...
+.llseek = seq_lseek, /* we have seq_read */
};
// use default_llseek if there is a readdir
///////////////////////////////////////////
@ fops1 depends on !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier readdir_e;
@@
// any other fop is used that changes pos
struct file_operations fops = {
... .readdir = readdir_e, ...
+.llseek = default_llseek, /* readdir is present */
};
// use default_llseek if at least one of read/write touches f_pos
/////////////////////////////////////////////////////////////////
@ fops2 depends on !fops1 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read.read_f;
@@
// read fops use offset
struct file_operations fops = {
... .read = read_f, ...
+.llseek = default_llseek, /* read accesses f_pos */
};
@ fops3 depends on !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier write.write_f;
@@
// write fops use offset
struct file_operations fops = {
... .write = write_f, ...
+ .llseek = default_llseek, /* write accesses f_pos */
};
// Use noop_llseek if neither read nor write accesses f_pos
///////////////////////////////////////////////////////////
@ fops4 depends on !fops1 && !fops2 && !fops3 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read_no_fpos.read_f;
identifier write_no_fpos.write_f;
@@
// write fops use offset
struct file_operations fops = {
...
.write = write_f,
.read = read_f,
...
+.llseek = noop_llseek, /* read and write both use no f_pos */
};
@ depends on has_write && !has_read && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier write_no_fpos.write_f;
@@
struct file_operations fops = {
... .write = write_f, ...
+.llseek = noop_llseek, /* write uses no f_pos */
};
@ depends on has_read && !has_write && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read_no_fpos.read_f;
@@
struct file_operations fops = {
... .read = read_f, ...
+.llseek = noop_llseek, /* read uses no f_pos */
};
@ depends on !has_read && !has_write && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
@@
struct file_operations fops = {
...
+.llseek = noop_llseek, /* no read or write fn */
};
===== End semantic patch =====
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Julia Lawall <julia@diku.dk>
Cc: Christoph Hellwig <hch@infradead.org>
2010-08-15 16:52:59 +00:00
|
|
|
.llseek = no_llseek,
|
2008-07-28 16:44:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct miscdevice microcode_dev = {
|
2009-05-11 21:48:27 +00:00
|
|
|
.minor = MICROCODE_MINOR,
|
|
|
|
.name = "microcode",
|
2009-09-18 21:01:12 +00:00
|
|
|
.nodename = "cpu/microcode",
|
2009-05-11 21:48:27 +00:00
|
|
|
.fops = µcode_fops,
|
2008-07-28 16:44:17 +00:00
|
|
|
};
|
|
|
|
|
2008-08-01 10:46:45 +00:00
|
|
|
static int __init microcode_dev_init(void)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
error = misc_register(µcode_dev);
|
|
|
|
if (error) {
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_err("can't misc_register on minor=%d\n", MICROCODE_MINOR);
|
2008-07-28 16:44:17 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-07 12:35:32 +00:00
|
|
|
static void __exit microcode_dev_exit(void)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
|
|
|
misc_deregister(µcode_dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
MODULE_ALIAS_MISCDEV(MICROCODE_MINOR);
|
driver core: add devname module aliases to allow module on-demand auto-loading
This adds:
alias: devname:<name>
to some common kernel modules, which will allow the on-demand loading
of the kernel module when the device node is accessed.
Ideally all these modules would be compiled-in, but distros seems too
much in love with their modularization that we need to cover the common
cases with this new facility. It will allow us to remove a bunch of pretty
useless init scripts and modprobes from init scripts.
The static device node aliases will be carried in the module itself. The
program depmod will extract this information to a file in the module directory:
$ cat /lib/modules/2.6.34-00650-g537b60d-dirty/modules.devname
# Device nodes to trigger on-demand module loading.
microcode cpu/microcode c10:184
fuse fuse c10:229
ppp_generic ppp c108:0
tun net/tun c10:200
dm_mod mapper/control c10:235
Udev will pick up the depmod created file on startup and create all the
static device nodes which the kernel modules specify, so that these modules
get automatically loaded when the device node is accessed:
$ /sbin/udevd --debug
...
static_dev_create_from_modules: mknod '/dev/cpu/microcode' c10:184
static_dev_create_from_modules: mknod '/dev/fuse' c10:229
static_dev_create_from_modules: mknod '/dev/ppp' c108:0
static_dev_create_from_modules: mknod '/dev/net/tun' c10:200
static_dev_create_from_modules: mknod '/dev/mapper/control' c10:235
udev_rules_apply_static_dev_perms: chmod '/dev/net/tun' 0666
udev_rules_apply_static_dev_perms: chmod '/dev/fuse' 0666
A few device nodes are switched to statically allocated numbers, to allow
the static nodes to work. This might also useful for systems which still run
a plain static /dev, which is completely unsafe to use with any dynamic minor
numbers.
Note:
The devname aliases must be limited to the *common* and *single*instance*
device nodes, like the misc devices, and never be used for conceptually limited
systems like the loop devices, which should rather get fixed properly and get a
control node for losetup to talk to, instead of creating a random number of
device nodes in advance, regardless if they are ever used.
This facility is to hide the mess distros are creating with too modualized
kernels, and just to hide that these modules are not compiled-in, and not to
paper-over broken concepts. Thanks! :)
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: David S. Miller <davem@davemloft.net>
Cc: Miklos Szeredi <miklos@szeredi.hu>
Cc: Chris Mason <chris.mason@oracle.com>
Cc: Alasdair G Kergon <agk@redhat.com>
Cc: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Cc: Ian Kent <raven@themaw.net>
Signed-Off-By: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2010-05-20 16:07:20 +00:00
|
|
|
MODULE_ALIAS("devname:cpu/microcode");
|
2008-07-28 16:44:17 +00:00
|
|
|
#else
|
2009-03-11 10:19:46 +00:00
|
|
|
#define microcode_dev_init() 0
|
|
|
|
#define microcode_dev_exit() do { } while (0)
|
2008-07-28 16:44:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* fake device for request_firmware */
|
2009-03-11 10:19:46 +00:00
|
|
|
static struct platform_device *microcode_pdev;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
static int reload_for_cpu(int cpu)
|
2009-03-11 06:02:36 +00:00
|
|
|
{
|
2009-05-11 21:48:27 +00:00
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
2012-07-23 17:05:53 +00:00
|
|
|
enum ucode_state ustate;
|
2009-03-11 06:02:36 +00:00
|
|
|
int err = 0;
|
|
|
|
|
2012-07-23 17:05:53 +00:00
|
|
|
if (!uci->valid)
|
|
|
|
return err;
|
2009-05-11 21:48:27 +00:00
|
|
|
|
2012-07-26 13:51:00 +00:00
|
|
|
ustate = microcode_ops->request_microcode_fw(cpu, µcode_pdev->dev, true);
|
2012-07-23 17:05:53 +00:00
|
|
|
if (ustate == UCODE_OK)
|
|
|
|
apply_microcode_on_target(cpu);
|
|
|
|
else
|
|
|
|
if (ustate == UCODE_ERROR)
|
|
|
|
err = -EINVAL;
|
2009-03-11 06:02:36 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static ssize_t reload_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
2009-05-11 21:48:27 +00:00
|
|
|
const char *buf, size_t size)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
2009-05-11 21:48:27 +00:00
|
|
|
unsigned long val;
|
2012-06-21 12:07:16 +00:00
|
|
|
int cpu;
|
|
|
|
ssize_t ret = 0, tmp_ret;
|
|
|
|
|
2012-05-06 17:11:04 +00:00
|
|
|
ret = kstrtoul(buf, 0, &val);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-05-11 21:48:27 +00:00
|
|
|
|
2012-06-21 12:07:16 +00:00
|
|
|
if (val != 1)
|
|
|
|
return size;
|
|
|
|
|
|
|
|
get_online_cpus();
|
2012-06-08 12:50:50 +00:00
|
|
|
mutex_lock(µcode_mutex);
|
2012-06-21 12:07:16 +00:00
|
|
|
for_each_online_cpu(cpu) {
|
|
|
|
tmp_ret = reload_for_cpu(cpu);
|
|
|
|
if (tmp_ret != 0)
|
|
|
|
pr_warn("Error reloading microcode on CPU %d\n", cpu);
|
|
|
|
|
|
|
|
/* save retval of the first encountered reload error */
|
|
|
|
if (!ret)
|
|
|
|
ret = tmp_ret;
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
2012-06-08 12:50:50 +00:00
|
|
|
if (!ret)
|
|
|
|
perf_check_microcode();
|
|
|
|
mutex_unlock(µcode_mutex);
|
2012-06-21 12:07:16 +00:00
|
|
|
put_online_cpus();
|
2009-05-11 21:48:27 +00:00
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
ret = size;
|
|
|
|
|
|
|
|
return ret;
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static ssize_t version_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
|
|
|
|
|
2008-08-19 22:22:26 +00:00
|
|
|
return sprintf(buf, "0x%x\n", uci->cpu_sig.rev);
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static ssize_t pf_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
|
|
|
|
|
2008-08-19 22:22:26 +00:00
|
|
|
return sprintf(buf, "0x%x\n", uci->cpu_sig.pf);
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static DEVICE_ATTR(reload, 0200, NULL, reload_store);
|
|
|
|
static DEVICE_ATTR(version, 0400, version_show, NULL);
|
|
|
|
static DEVICE_ATTR(processor_flags, 0400, pf_show, NULL);
|
2008-07-28 16:44:17 +00:00
|
|
|
|
|
|
|
static struct attribute *mc_default_attrs[] = {
|
2011-12-21 22:29:42 +00:00
|
|
|
&dev_attr_version.attr,
|
|
|
|
&dev_attr_processor_flags.attr,
|
2008-07-28 16:44:17 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct attribute_group mc_attr_group = {
|
2009-05-11 21:48:27 +00:00
|
|
|
.attrs = mc_default_attrs,
|
|
|
|
.name = "microcode",
|
2008-07-28 16:44:17 +00:00
|
|
|
};
|
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
static void microcode_fini_cpu(int cpu)
|
2008-08-19 22:22:26 +00:00
|
|
|
{
|
|
|
|
microcode_ops->microcode_fini_cpu(cpu);
|
2008-12-19 23:15:24 +00:00
|
|
|
}
|
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
static enum ucode_state microcode_resume_cpu(int cpu)
|
2008-08-19 22:22:26 +00:00
|
|
|
{
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_debug("CPU%d updated upon resume\n", cpu);
|
2012-08-03 13:26:50 +00:00
|
|
|
|
|
|
|
if (apply_microcode_on_target(cpu))
|
|
|
|
return UCODE_ERROR;
|
2009-05-11 21:48:27 +00:00
|
|
|
|
|
|
|
return UCODE_OK;
|
2008-08-19 22:22:26 +00:00
|
|
|
}
|
|
|
|
|
2012-07-26 13:51:00 +00:00
|
|
|
static enum ucode_state microcode_init_cpu(int cpu, bool refresh_fw)
|
2008-08-19 22:22:26 +00:00
|
|
|
{
|
2009-05-11 21:48:27 +00:00
|
|
|
enum ucode_state ustate;
|
2012-12-21 07:44:22 +00:00
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
|
|
|
|
|
|
|
if (uci && uci->valid)
|
|
|
|
return UCODE_OK;
|
2008-08-19 22:22:26 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
if (collect_cpu_info(cpu))
|
|
|
|
return UCODE_ERROR;
|
2008-08-19 22:22:26 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
/* --dimm. Trigger a delayed update? */
|
|
|
|
if (system_state != SYSTEM_RUNNING)
|
|
|
|
return UCODE_NFOUND;
|
2008-08-19 22:22:26 +00:00
|
|
|
|
2012-07-26 13:51:00 +00:00
|
|
|
ustate = microcode_ops->request_microcode_fw(cpu, µcode_pdev->dev,
|
|
|
|
refresh_fw);
|
2008-08-19 22:22:26 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
if (ustate == UCODE_OK) {
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_debug("CPU%d updated upon init\n", cpu);
|
2009-05-11 21:48:27 +00:00
|
|
|
apply_microcode_on_target(cpu);
|
2008-08-19 22:22:26 +00:00
|
|
|
}
|
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
return ustate;
|
2008-08-19 22:22:26 +00:00
|
|
|
}
|
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
static enum ucode_state microcode_update_cpu(int cpu)
|
2008-08-19 22:22:26 +00:00
|
|
|
{
|
2009-05-11 21:48:27 +00:00
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
2008-08-19 22:22:26 +00:00
|
|
|
|
2009-12-23 23:04:53 +00:00
|
|
|
if (uci->valid)
|
2012-08-03 13:26:50 +00:00
|
|
|
return microcode_resume_cpu(cpu);
|
2008-08-19 22:22:26 +00:00
|
|
|
|
2012-07-26 13:51:00 +00:00
|
|
|
return microcode_init_cpu(cpu, false);
|
2008-08-19 22:22:26 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static int mc_device_add(struct device *dev, struct subsys_interface *sif)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
2011-12-21 22:29:42 +00:00
|
|
|
int err, cpu = dev->id;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
|
|
|
if (!cpu_online(cpu))
|
|
|
|
return 0;
|
|
|
|
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_debug("CPU%d added\n", cpu);
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
err = sysfs_create_group(&dev->kobj, &mc_attr_group);
|
2008-07-28 16:44:17 +00:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2012-07-26 13:51:00 +00:00
|
|
|
if (microcode_init_cpu(cpu, true) == UCODE_ERROR)
|
2011-01-06 15:56:51 +00:00
|
|
|
return -EINVAL;
|
2009-03-11 06:02:36 +00:00
|
|
|
|
|
|
|
return err;
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static int mc_device_remove(struct device *dev, struct subsys_interface *sif)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
2011-12-21 22:29:42 +00:00
|
|
|
int cpu = dev->id;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
|
|
|
if (!cpu_online(cpu))
|
|
|
|
return 0;
|
|
|
|
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_debug("CPU%d removed\n", cpu);
|
2008-08-19 22:22:26 +00:00
|
|
|
microcode_fini_cpu(cpu);
|
2011-12-21 22:29:42 +00:00
|
|
|
sysfs_remove_group(&dev->kobj, &mc_attr_group);
|
2008-07-28 16:44:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static struct subsys_interface mc_cpu_interface = {
|
|
|
|
.name = "microcode",
|
|
|
|
.subsys = &cpu_subsys,
|
|
|
|
.add_dev = mc_device_add,
|
|
|
|
.remove_dev = mc_device_remove,
|
2011-03-23 21:15:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* mc_bp_resume - Update boot CPU microcode during resume.
|
|
|
|
*/
|
|
|
|
static void mc_bp_resume(void)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
2011-03-23 21:15:54 +00:00
|
|
|
int cpu = smp_processor_id();
|
2009-05-11 21:48:27 +00:00
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
if (uci->valid && uci->mc)
|
|
|
|
microcode_ops->apply_microcode(cpu);
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
|
|
|
|
2011-03-23 21:15:54 +00:00
|
|
|
static struct syscore_ops mc_syscore_ops = {
|
|
|
|
.resume = mc_bp_resume,
|
2008-07-28 16:44:17 +00:00
|
|
|
};
|
|
|
|
|
x86: delete __cpuinit usage from all x86 files
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0 ("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
Note that some harmless section mismatch warnings may result, since
notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
are flagged as __cpuinit -- so if we remove the __cpuinit from
arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
content into no-ops as early as possible, since that will get rid
of these warnings. In any case, they are temporary and harmless.
This removes all the arch/x86 uses of the __cpuinit macros from
all C files. x86 only had the one __CPUINIT used in assembly files,
and it wasn't paired off with a .previous or a __FINIT, so we can
delete it directly w/o any corresponding additional change there.
[1] https://lkml.org/lkml/2013/5/20/589
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Acked-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2013-06-18 22:23:59 +00:00
|
|
|
static int
|
2008-07-28 16:44:17 +00:00
|
|
|
mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu)
|
|
|
|
{
|
|
|
|
unsigned int cpu = (unsigned long)hcpu;
|
2011-12-21 22:29:42 +00:00
|
|
|
struct device *dev;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
dev = get_cpu_device(cpu);
|
2012-07-23 18:15:10 +00:00
|
|
|
|
|
|
|
switch (action & ~CPU_TASKS_FROZEN) {
|
2008-07-28 16:44:17 +00:00
|
|
|
case CPU_ONLINE:
|
2009-05-11 21:48:27 +00:00
|
|
|
microcode_update_cpu(cpu);
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_debug("CPU%d added\n", cpu);
|
2012-07-23 18:15:10 +00:00
|
|
|
/*
|
|
|
|
* "break" is missing on purpose here because we want to fall
|
|
|
|
* through in order to create the sysfs group.
|
|
|
|
*/
|
|
|
|
|
|
|
|
case CPU_DOWN_FAILED:
|
2011-12-21 22:29:42 +00:00
|
|
|
if (sysfs_create_group(&dev->kobj, &mc_attr_group))
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_err("Failed to create group for CPU%d\n", cpu);
|
2008-07-28 16:44:17 +00:00
|
|
|
break;
|
2012-07-23 18:15:10 +00:00
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
case CPU_DOWN_PREPARE:
|
|
|
|
/* Suspend is in progress, only remove the interface */
|
2011-12-21 22:29:42 +00:00
|
|
|
sysfs_remove_group(&dev->kobj, &mc_attr_group);
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_debug("CPU%d removed\n", cpu);
|
2008-08-19 22:22:26 +00:00
|
|
|
break;
|
2011-10-09 19:42:00 +00:00
|
|
|
|
|
|
|
/*
|
2012-07-23 18:15:10 +00:00
|
|
|
* case CPU_DEAD:
|
|
|
|
*
|
2011-10-09 19:42:00 +00:00
|
|
|
* When a CPU goes offline, don't free up or invalidate the copy of
|
|
|
|
* the microcode in kernel memory, so that we can reuse it when the
|
|
|
|
* CPU comes back online without unnecessarily requesting the userspace
|
|
|
|
* for it again.
|
|
|
|
*/
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
2012-07-23 18:15:10 +00:00
|
|
|
|
|
|
|
/* The CPU refused to come up during a system resume */
|
|
|
|
if (action == CPU_UP_CANCELED_FROZEN)
|
|
|
|
microcode_fini_cpu(cpu);
|
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
return NOTIFY_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct notifier_block __refdata mc_cpu_notifier = {
|
2009-03-11 10:19:46 +00:00
|
|
|
.notifier_call = mc_cpu_callback,
|
2008-07-28 16:44:17 +00:00
|
|
|
};
|
|
|
|
|
2012-01-25 23:09:13 +00:00
|
|
|
#ifdef MODULE
|
|
|
|
/* Autoload on Intel and AMD systems */
|
2012-06-18 10:28:45 +00:00
|
|
|
static const struct x86_cpu_id __initconst microcode_id[] = {
|
2012-01-25 23:09:13 +00:00
|
|
|
#ifdef CONFIG_MICROCODE_INTEL
|
|
|
|
{ X86_VENDOR_INTEL, X86_FAMILY_ANY, X86_MODEL_ANY, },
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_MICROCODE_AMD
|
|
|
|
{ X86_VENDOR_AMD, X86_FAMILY_ANY, X86_MODEL_ANY, },
|
|
|
|
#endif
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(x86cpu, microcode_id);
|
|
|
|
#endif
|
|
|
|
|
2012-06-21 12:07:17 +00:00
|
|
|
static struct attribute *cpu_root_microcode_attrs[] = {
|
|
|
|
&dev_attr_reload.attr,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct attribute_group cpu_root_microcode_group = {
|
|
|
|
.name = "microcode",
|
|
|
|
.attrs = cpu_root_microcode_attrs,
|
|
|
|
};
|
|
|
|
|
2008-09-23 10:08:44 +00:00
|
|
|
static int __init microcode_init(void)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
2008-09-23 10:08:44 +00:00
|
|
|
struct cpuinfo_x86 *c = &cpu_data(0);
|
2008-07-28 16:44:17 +00:00
|
|
|
int error;
|
|
|
|
|
2008-09-23 10:08:44 +00:00
|
|
|
if (c->x86_vendor == X86_VENDOR_INTEL)
|
|
|
|
microcode_ops = init_intel_microcode();
|
2008-09-24 09:50:35 +00:00
|
|
|
else if (c->x86_vendor == X86_VENDOR_AMD)
|
2008-09-23 10:08:44 +00:00
|
|
|
microcode_ops = init_amd_microcode();
|
2012-04-12 14:51:57 +00:00
|
|
|
else
|
2009-12-09 06:30:50 +00:00
|
|
|
pr_err("no support for this CPU vendor\n");
|
2012-04-12 14:51:57 +00:00
|
|
|
|
|
|
|
if (!microcode_ops)
|
2008-09-23 10:08:44 +00:00
|
|
|
return -ENODEV;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
|
|
|
microcode_pdev = platform_device_register_simple("microcode", -1,
|
|
|
|
NULL, 0);
|
2011-11-07 12:35:32 +00:00
|
|
|
if (IS_ERR(microcode_pdev))
|
2008-07-28 16:44:17 +00:00
|
|
|
return PTR_ERR(microcode_pdev);
|
|
|
|
|
|
|
|
get_online_cpus();
|
2009-05-11 21:48:27 +00:00
|
|
|
mutex_lock(µcode_mutex);
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
error = subsys_interface_register(&mc_cpu_interface);
|
2012-06-08 12:50:50 +00:00
|
|
|
if (!error)
|
|
|
|
perf_check_microcode();
|
2009-05-11 21:48:27 +00:00
|
|
|
mutex_unlock(µcode_mutex);
|
2008-07-28 16:44:17 +00:00
|
|
|
put_online_cpus();
|
2009-05-11 21:48:27 +00:00
|
|
|
|
2011-11-07 12:35:32 +00:00
|
|
|
if (error)
|
|
|
|
goto out_pdev;
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2012-06-21 12:07:17 +00:00
|
|
|
error = sysfs_create_group(&cpu_subsys.dev_root->kobj,
|
|
|
|
&cpu_root_microcode_group);
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
pr_err("Error creating microcode group!\n");
|
|
|
|
goto out_driver;
|
|
|
|
}
|
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
error = microcode_dev_init();
|
|
|
|
if (error)
|
2012-06-21 12:07:17 +00:00
|
|
|
goto out_ucode_group;
|
2009-05-11 21:48:27 +00:00
|
|
|
|
2011-03-23 21:15:54 +00:00
|
|
|
register_syscore_ops(&mc_syscore_ops);
|
2008-07-28 16:44:17 +00:00
|
|
|
register_hotcpu_notifier(&mc_cpu_notifier);
|
2008-07-28 16:44:21 +00:00
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
pr_info("Microcode Update Driver: v" MICROCODE_VERSION
|
2009-12-09 06:30:50 +00:00
|
|
|
" <tigran@aivazian.fsnet.co.uk>, Peter Oruba\n");
|
2008-07-28 16:44:21 +00:00
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
return 0;
|
2011-11-07 12:35:32 +00:00
|
|
|
|
2012-06-21 12:07:17 +00:00
|
|
|
out_ucode_group:
|
|
|
|
sysfs_remove_group(&cpu_subsys.dev_root->kobj,
|
|
|
|
&cpu_root_microcode_group);
|
|
|
|
|
|
|
|
out_driver:
|
2011-11-07 12:35:32 +00:00
|
|
|
get_online_cpus();
|
|
|
|
mutex_lock(µcode_mutex);
|
|
|
|
|
2012-01-06 19:42:52 +00:00
|
|
|
subsys_interface_unregister(&mc_cpu_interface);
|
2011-11-07 12:35:32 +00:00
|
|
|
|
|
|
|
mutex_unlock(µcode_mutex);
|
|
|
|
put_online_cpus();
|
|
|
|
|
2012-06-21 12:07:17 +00:00
|
|
|
out_pdev:
|
2011-11-07 12:35:32 +00:00
|
|
|
platform_device_unregister(microcode_pdev);
|
|
|
|
return error;
|
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
}
|
2009-05-11 21:48:27 +00:00
|
|
|
module_init(microcode_init);
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2008-09-23 10:08:44 +00:00
|
|
|
static void __exit microcode_exit(void)
|
2008-07-28 16:44:17 +00:00
|
|
|
{
|
2011-12-02 15:50:04 +00:00
|
|
|
struct cpuinfo_x86 *c = &cpu_data(0);
|
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
microcode_dev_exit();
|
|
|
|
|
|
|
|
unregister_hotcpu_notifier(&mc_cpu_notifier);
|
2011-03-29 08:34:32 +00:00
|
|
|
unregister_syscore_ops(&mc_syscore_ops);
|
2008-07-28 16:44:17 +00:00
|
|
|
|
2012-06-21 12:07:17 +00:00
|
|
|
sysfs_remove_group(&cpu_subsys.dev_root->kobj,
|
|
|
|
&cpu_root_microcode_group);
|
|
|
|
|
2008-07-28 16:44:17 +00:00
|
|
|
get_online_cpus();
|
2009-05-11 21:48:27 +00:00
|
|
|
mutex_lock(µcode_mutex);
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
subsys_interface_unregister(&mc_cpu_interface);
|
2009-05-11 21:48:27 +00:00
|
|
|
|
|
|
|
mutex_unlock(µcode_mutex);
|
2008-07-28 16:44:17 +00:00
|
|
|
put_online_cpus();
|
|
|
|
|
|
|
|
platform_device_unregister(microcode_pdev);
|
|
|
|
|
2008-07-28 16:44:21 +00:00
|
|
|
microcode_ops = NULL;
|
|
|
|
|
2011-12-02 15:50:04 +00:00
|
|
|
if (c->x86_vendor == X86_VENDOR_AMD)
|
|
|
|
exit_amd_microcode();
|
|
|
|
|
2009-05-11 21:48:27 +00:00
|
|
|
pr_info("Microcode Update Driver: v" MICROCODE_VERSION " removed.\n");
|
2008-07-28 16:44:21 +00:00
|
|
|
}
|
2008-09-23 10:08:44 +00:00
|
|
|
module_exit(microcode_exit);
|