Commit 4bae1967 authored by Ingo Molnar's avatar Ingo Molnar

x86: microcode: cleanup

Impact: cleanup

Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Dmitry Adamushko <dmitry.adamushko@gmail.com>
Cc: Peter Oruba <peter.oruba@amd.com>
LKML-Reference: <200903111632.37279.rusty@rustcorp.com.au>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent af5c820a
...@@ -12,31 +12,30 @@ ...@@ -12,31 +12,30 @@
* *
* Licensed under the terms of the GNU General Public * Licensed under the terms of the GNU General Public
* License version 2. See file COPYING for details. * License version 2. See file COPYING for details.
*/ */
#include <linux/platform_device.h>
#include <linux/capability.h> #include <linux/capability.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/cpumask.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <linux/miscdevice.h> #include <linux/miscdevice.h>
#include <linux/firmware.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/mm.h> #include <linux/cpumask.h>
#include <linux/fs.h> #include <linux/pci_ids.h>
#include <linux/uaccess.h>
#include <linux/vmalloc.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/cpu.h> #include <linux/cpu.h>
#include <linux/firmware.h>
#include <linux/platform_device.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/pci_ids.h> #include <linux/fs.h>
#include <linux/uaccess.h> #include <linux/mm.h>
#include <asm/msr.h>
#include <asm/processor.h>
#include <asm/microcode.h> #include <asm/microcode.h>
#include <asm/processor.h>
#include <asm/msr.h>
MODULE_DESCRIPTION("AMD Microcode Update Driver"); MODULE_DESCRIPTION("AMD Microcode Update Driver");
MODULE_AUTHOR("Peter Oruba"); MODULE_AUTHOR("Peter Oruba");
...@@ -72,8 +71,8 @@ struct microcode_header_amd { ...@@ -72,8 +71,8 @@ struct microcode_header_amd {
} __attribute__((packed)); } __attribute__((packed));
struct microcode_amd { struct microcode_amd {
struct microcode_header_amd hdr; struct microcode_header_amd hdr;
unsigned int mpb[0]; unsigned int mpb[0];
}; };
#define UCODE_MAX_SIZE 2048 #define UCODE_MAX_SIZE 2048
...@@ -184,8 +183,8 @@ static int get_ucode_data(void *to, const u8 *from, size_t n) ...@@ -184,8 +183,8 @@ static int get_ucode_data(void *to, const u8 *from, size_t n)
return 0; return 0;
} }
static void *get_next_ucode(const u8 *buf, unsigned int size, static void *
unsigned int *mc_size) get_next_ucode(const u8 *buf, unsigned int size, unsigned int *mc_size)
{ {
unsigned int total_size; unsigned int total_size;
u8 section_hdr[UCODE_CONTAINER_SECTION_HDR]; u8 section_hdr[UCODE_CONTAINER_SECTION_HDR];
...@@ -223,7 +222,6 @@ static void *get_next_ucode(const u8 *buf, unsigned int size, ...@@ -223,7 +222,6 @@ static void *get_next_ucode(const u8 *buf, unsigned int size,
return mc; return mc;
} }
static int install_equiv_cpu_table(const u8 *buf) static int install_equiv_cpu_table(const u8 *buf)
{ {
u8 *container_hdr[UCODE_CONTAINER_HEADER_SIZE]; u8 *container_hdr[UCODE_CONTAINER_HEADER_SIZE];
...@@ -372,4 +370,3 @@ struct microcode_ops * __init init_amd_microcode(void) ...@@ -372,4 +370,3 @@ struct microcode_ops * __init init_amd_microcode(void)
{ {
return &microcode_amd_ops; return &microcode_amd_ops;
} }
...@@ -70,47 +70,47 @@ ...@@ -70,47 +70,47 @@
* Fix sigmatch() macro to handle old CPUs with pf == 0. * Fix sigmatch() macro to handle old CPUs with pf == 0.
* Thanks to Stuart Swales for pointing out this bug. * Thanks to Stuart Swales for pointing out this bug.
*/ */
#include <linux/platform_device.h>
#include <linux/capability.h> #include <linux/capability.h>
#include <linux/kernel.h> #include <linux/miscdevice.h>
#include <linux/init.h> #include <linux/firmware.h>
#include <linux/sched.h>
#include <linux/smp_lock.h> #include <linux/smp_lock.h>
#include <linux/spinlock.h>
#include <linux/cpumask.h> #include <linux/cpumask.h>
#include <linux/module.h> #include <linux/uaccess.h>
#include <linux/slab.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include <linux/miscdevice.h> #include <linux/kernel.h>
#include <linux/spinlock.h> #include <linux/module.h>
#include <linux/mm.h>
#include <linux/fs.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/cpu.h> #include <linux/cpu.h>
#include <linux/firmware.h> #include <linux/fs.h>
#include <linux/platform_device.h> #include <linux/mm.h>
#include <asm/msr.h>
#include <asm/uaccess.h>
#include <asm/processor.h>
#include <asm/microcode.h> #include <asm/microcode.h>
#include <asm/processor.h>
#include <asm/msr.h>
MODULE_DESCRIPTION("Microcode Update Driver"); MODULE_DESCRIPTION("Microcode Update Driver");
MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>"); MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
#define MICROCODE_VERSION "2.00" #define MICROCODE_VERSION "2.00"
static struct microcode_ops *microcode_ops; static struct microcode_ops *microcode_ops;
/* no concurrent ->write()s are allowed on /dev/cpu/microcode */ /* no concurrent ->write()s are allowed on /dev/cpu/microcode */
static DEFINE_MUTEX(microcode_mutex); static DEFINE_MUTEX(microcode_mutex);
struct ucode_cpu_info ucode_cpu_info[NR_CPUS]; struct ucode_cpu_info ucode_cpu_info[NR_CPUS];
EXPORT_SYMBOL_GPL(ucode_cpu_info); EXPORT_SYMBOL_GPL(ucode_cpu_info);
#ifdef CONFIG_MICROCODE_OLD_INTERFACE #ifdef CONFIG_MICROCODE_OLD_INTERFACE
struct update_for_cpu { struct update_for_cpu {
const void __user *buf; const void __user *buf;
size_t size; size_t size;
}; };
static long update_for_cpu(void *_ufc) static long update_for_cpu(void *_ufc)
...@@ -209,12 +209,12 @@ static void microcode_dev_exit(void) ...@@ -209,12 +209,12 @@ static void microcode_dev_exit(void)
MODULE_ALIAS_MISCDEV(MICROCODE_MINOR); MODULE_ALIAS_MISCDEV(MICROCODE_MINOR);
#else #else
#define microcode_dev_init() 0 #define microcode_dev_init() 0
#define microcode_dev_exit() do { } while (0) #define microcode_dev_exit() do { } while (0)
#endif #endif
/* fake device for request_firmware */ /* fake device for request_firmware */
static struct platform_device *microcode_pdev; static struct platform_device *microcode_pdev;
static long reload_for_cpu(void *unused) static long reload_for_cpu(void *unused)
{ {
...@@ -282,8 +282,8 @@ static struct attribute *mc_default_attrs[] = { ...@@ -282,8 +282,8 @@ static struct attribute *mc_default_attrs[] = {
}; };
static struct attribute_group mc_attr_group = { static struct attribute_group mc_attr_group = {
.attrs = mc_default_attrs, .attrs = mc_default_attrs,
.name = "microcode", .name = "microcode",
}; };
static void __microcode_fini_cpu(int cpu) static void __microcode_fini_cpu(int cpu)
...@@ -353,7 +353,7 @@ static long microcode_update_cpu(void *unused) ...@@ -353,7 +353,7 @@ static long microcode_update_cpu(void *unused)
*/ */
if (uci->valid) { if (uci->valid) {
err = microcode_resume_cpu(smp_processor_id()); err = microcode_resume_cpu(smp_processor_id());
} else { } else {
collect_cpu_info(smp_processor_id()); collect_cpu_info(smp_processor_id());
if (uci->valid && system_state == SYSTEM_RUNNING) if (uci->valid && system_state == SYSTEM_RUNNING)
err = microcode_ops->request_microcode_fw( err = microcode_ops->request_microcode_fw(
...@@ -423,9 +423,9 @@ static int mc_sysdev_resume(struct sys_device *dev) ...@@ -423,9 +423,9 @@ static int mc_sysdev_resume(struct sys_device *dev)
} }
static struct sysdev_driver mc_sysdev_driver = { static struct sysdev_driver mc_sysdev_driver = {
.add = mc_sysdev_add, .add = mc_sysdev_add,
.remove = mc_sysdev_remove, .remove = mc_sysdev_remove,
.resume = mc_sysdev_resume, .resume = mc_sysdev_resume,
}; };
static __cpuinit int static __cpuinit int
...@@ -464,7 +464,7 @@ mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu) ...@@ -464,7 +464,7 @@ mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu)
} }
static struct notifier_block __refdata mc_cpu_notifier = { static struct notifier_block __refdata mc_cpu_notifier = {
.notifier_call = mc_cpu_callback, .notifier_call = mc_cpu_callback,
}; };
static int __init microcode_init(void) static int __init microcode_init(void)
......
...@@ -70,28 +70,28 @@ ...@@ -70,28 +70,28 @@
* Fix sigmatch() macro to handle old CPUs with pf == 0. * Fix sigmatch() macro to handle old CPUs with pf == 0.
* Thanks to Stuart Swales for pointing out this bug. * Thanks to Stuart Swales for pointing out this bug.
*/ */
#include <linux/platform_device.h>
#include <linux/capability.h> #include <linux/capability.h>
#include <linux/kernel.h> #include <linux/miscdevice.h>
#include <linux/init.h> #include <linux/firmware.h>
#include <linux/sched.h>
#include <linux/smp_lock.h> #include <linux/smp_lock.h>
#include <linux/spinlock.h>
#include <linux/cpumask.h> #include <linux/cpumask.h>
#include <linux/module.h> #include <linux/uaccess.h>
#include <linux/slab.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include <linux/miscdevice.h> #include <linux/kernel.h>
#include <linux/spinlock.h> #include <linux/module.h>
#include <linux/mm.h>
#include <linux/fs.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/cpu.h> #include <linux/cpu.h>
#include <linux/firmware.h> #include <linux/fs.h>
#include <linux/platform_device.h> #include <linux/mm.h>
#include <linux/uaccess.h>
#include <asm/msr.h>
#include <asm/processor.h>
#include <asm/microcode.h> #include <asm/microcode.h>
#include <asm/processor.h>
#include <asm/msr.h>
MODULE_DESCRIPTION("Microcode Update Driver"); MODULE_DESCRIPTION("Microcode Update Driver");
MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>"); MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>");
...@@ -129,12 +129,13 @@ struct extended_sigtable { ...@@ -129,12 +129,13 @@ struct extended_sigtable {
struct extended_signature sigs[0]; struct extended_signature sigs[0];
}; };
#define DEFAULT_UCODE_DATASIZE (2000) #define DEFAULT_UCODE_DATASIZE (2000)
#define MC_HEADER_SIZE (sizeof(struct microcode_header_intel)) #define MC_HEADER_SIZE (sizeof(struct microcode_header_intel))
#define DEFAULT_UCODE_TOTALSIZE (DEFAULT_UCODE_DATASIZE + MC_HEADER_SIZE) #define DEFAULT_UCODE_TOTALSIZE (DEFAULT_UCODE_DATASIZE + MC_HEADER_SIZE)
#define EXT_HEADER_SIZE (sizeof(struct extended_sigtable)) #define EXT_HEADER_SIZE (sizeof(struct extended_sigtable))
#define EXT_SIGNATURE_SIZE (sizeof(struct extended_signature)) #define EXT_SIGNATURE_SIZE (sizeof(struct extended_signature))
#define DWSIZE (sizeof(u32)) #define DWSIZE (sizeof(u32))
#define get_totalsize(mc) \ #define get_totalsize(mc) \
(((struct microcode_intel *)mc)->hdr.totalsize ? \ (((struct microcode_intel *)mc)->hdr.totalsize ? \
((struct microcode_intel *)mc)->hdr.totalsize : \ ((struct microcode_intel *)mc)->hdr.totalsize : \
...@@ -197,30 +198,31 @@ static inline int update_match_cpu(struct cpu_signature *csig, int sig, int pf) ...@@ -197,30 +198,31 @@ static inline int update_match_cpu(struct cpu_signature *csig, int sig, int pf)
} }
static inline int static inline int
update_match_revision(struct microcode_header_intel *mc_header, int rev) update_match_revision(struct microcode_header_intel *mc_header, int rev)
{ {
return (mc_header->rev <= rev) ? 0 : 1; return (mc_header->rev <= rev) ? 0 : 1;
} }
static int microcode_sanity_check(void *mc) static int microcode_sanity_check(void *mc)
{ {
unsigned long total_size, data_size, ext_table_size;
struct microcode_header_intel *mc_header = mc; struct microcode_header_intel *mc_header = mc;
struct extended_sigtable *ext_header = NULL; struct extended_sigtable *ext_header = NULL;
struct extended_signature *ext_sig;
unsigned long total_size, data_size, ext_table_size;
int sum, orig_sum, ext_sigcount = 0, i; int sum, orig_sum, ext_sigcount = 0, i;
struct extended_signature *ext_sig;
total_size = get_totalsize(mc_header); total_size = get_totalsize(mc_header);
data_size = get_datasize(mc_header); data_size = get_datasize(mc_header);
if (data_size + MC_HEADER_SIZE > total_size) { if (data_size + MC_HEADER_SIZE > total_size) {
printk(KERN_ERR "microcode: error! " printk(KERN_ERR "microcode: error! "
"Bad data size in microcode data file\n"); "Bad data size in microcode data file\n");
return -EINVAL; return -EINVAL;
} }
if (mc_header->ldrver != 1 || mc_header->hdrver != 1) { if (mc_header->ldrver != 1 || mc_header->hdrver != 1) {
printk(KERN_ERR "microcode: error! " printk(KERN_ERR "microcode: error! "
"Unknown microcode update format\n"); "Unknown microcode update format\n");
return -EINVAL; return -EINVAL;
} }
ext_table_size = total_size - (MC_HEADER_SIZE + data_size); ext_table_size = total_size - (MC_HEADER_SIZE + data_size);
...@@ -318,11 +320,15 @@ get_matching_microcode(struct cpu_signature *cpu_sig, void *mc, int rev) ...@@ -318,11 +320,15 @@ get_matching_microcode(struct cpu_signature *cpu_sig, void *mc, int rev)
static void apply_microcode(int cpu) static void apply_microcode(int cpu)
{ {
struct microcode_intel *mc_intel;
struct ucode_cpu_info *uci;
unsigned long flags; unsigned long flags;
unsigned int val[2]; unsigned int val[2];
int cpu_num = raw_smp_processor_id(); int cpu_num;
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
struct microcode_intel *mc_intel = uci->mc; cpu_num = raw_smp_processor_id();
uci = ucode_cpu_info + cpu;
mc_intel = uci->mc;
/* We should bind the task to the CPU */ /* We should bind the task to the CPU */
BUG_ON(cpu_num != cpu); BUG_ON(cpu_num != cpu);
...@@ -348,15 +354,17 @@ static void apply_microcode(int cpu) ...@@ -348,15 +354,17 @@ static void apply_microcode(int cpu)
spin_unlock_irqrestore(&microcode_update_lock, flags); spin_unlock_irqrestore(&microcode_update_lock, flags);
if (val[1] != mc_intel->hdr.rev) { if (val[1] != mc_intel->hdr.rev) {
printk(KERN_ERR "microcode: CPU%d update from revision " printk(KERN_ERR "microcode: CPU%d update from revision "
"0x%x to 0x%x failed\n", cpu_num, uci->cpu_sig.rev, val[1]); "0x%x to 0x%x failed\n",
cpu_num, uci->cpu_sig.rev, val[1]);
return; return;
} }
printk(KERN_INFO "microcode: CPU%d updated from revision " printk(KERN_INFO "microcode: CPU%d updated from revision "
"0x%x to 0x%x, date = %04x-%02x-%02x \n", "0x%x to 0x%x, date = %04x-%02x-%02x \n",
cpu_num, uci->cpu_sig.rev, val[1], cpu_num, uci->cpu_sig.rev, val[1],
mc_intel->hdr.date & 0xffff, mc_intel->hdr.date & 0xffff,
mc_intel->hdr.date >> 24, mc_intel->hdr.date >> 24,
(mc_intel->hdr.date >> 16) & 0xff); (mc_intel->hdr.date >> 16) & 0xff);
uci->cpu_sig.rev = val[1]; uci->cpu_sig.rev = val[1];
} }
...@@ -404,18 +412,23 @@ static int generic_load_microcode(int cpu, void *data, size_t size, ...@@ -404,18 +412,23 @@ static int generic_load_microcode(int cpu, void *data, size_t size,
leftover -= mc_size; leftover -= mc_size;
} }
if (new_mc) { if (!new_mc)
if (!leftover) { goto out;
if (uci->mc)
vfree(uci->mc); if (leftover) {
uci->mc = (struct microcode_intel *)new_mc; vfree(new_mc);
pr_debug("microcode: CPU%d found a matching microcode update with" goto out;
" version 0x%x (current=0x%x)\n",
cpu, new_rev, uci->cpu_sig.rev);
} else
vfree(new_mc);
} }
if (uci->mc)
vfree(uci->mc);
uci->mc = (struct microcode_intel *)new_mc;
pr_debug("microcode: CPU%d found a matching microcode update with"
" version 0x%x (current=0x%x)\n",
cpu, new_rev, uci->cpu_sig.rev);
out:
return (int)leftover; return (int)leftover;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment