Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Intel CPU Microcode Update Driver for Linux |
| 3 | * |
| 4 | * Copyright (C) 2000-2006 Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
| 5 | * 2006 Shaohua Li <shaohua.li@intel.com> |
| 6 | * |
| 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. |
| 10 | * |
| 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: |
| 14 | * |
| 15 | * http://developer.intel.com/design/pentium4/manuals/253668.htm |
| 16 | * |
| 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 Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 58 | * Serialize updates as required on HT processors due to |
| 59 | * speculative nature of implementation. |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 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. |
| 72 | */ |
| 73 | |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 74 | /*#define DEBUG pr_debug */ |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 75 | #include <linux/capability.h> |
| 76 | #include <linux/kernel.h> |
| 77 | #include <linux/init.h> |
| 78 | #include <linux/sched.h> |
| 79 | #include <linux/smp_lock.h> |
| 80 | #include <linux/cpumask.h> |
| 81 | #include <linux/module.h> |
| 82 | #include <linux/slab.h> |
| 83 | #include <linux/vmalloc.h> |
| 84 | #include <linux/miscdevice.h> |
| 85 | #include <linux/spinlock.h> |
| 86 | #include <linux/mm.h> |
| 87 | #include <linux/fs.h> |
| 88 | #include <linux/mutex.h> |
| 89 | #include <linux/cpu.h> |
| 90 | #include <linux/firmware.h> |
| 91 | #include <linux/platform_device.h> |
| 92 | |
| 93 | #include <asm/msr.h> |
| 94 | #include <asm/uaccess.h> |
| 95 | #include <asm/processor.h> |
| 96 | #include <asm/microcode.h> |
| 97 | |
| 98 | MODULE_DESCRIPTION("Microcode Update Driver"); |
| 99 | MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>"); |
| 100 | MODULE_LICENSE("GPL"); |
| 101 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 102 | #define MICROCODE_VERSION "2.00" |
| 103 | |
| 104 | struct microcode_ops *microcode_ops; |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 105 | |
| 106 | /* no concurrent ->write()s are allowed on /dev/cpu/microcode */ |
Ingo Molnar | 224e946 | 2008-07-29 09:52:55 +0200 | [diff] [blame] | 107 | DEFINE_MUTEX(microcode_mutex); |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 108 | EXPORT_SYMBOL_GPL(microcode_mutex); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 109 | |
Ingo Molnar | 224e946 | 2008-07-29 09:52:55 +0200 | [diff] [blame] | 110 | struct ucode_cpu_info ucode_cpu_info[NR_CPUS]; |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 111 | EXPORT_SYMBOL_GPL(ucode_cpu_info); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 112 | |
| 113 | #ifdef CONFIG_MICROCODE_OLD_INTERFACE |
Ingo Molnar | 224e946 | 2008-07-29 09:52:55 +0200 | [diff] [blame] | 114 | void __user *user_buffer; /* user area microcode data buffer */ |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 115 | EXPORT_SYMBOL_GPL(user_buffer); |
Ingo Molnar | 224e946 | 2008-07-29 09:52:55 +0200 | [diff] [blame] | 116 | unsigned int user_buffer_size; /* it's size */ |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 117 | EXPORT_SYMBOL_GPL(user_buffer_size); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 118 | |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 119 | static int do_microcode_update(void) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 120 | { |
| 121 | long cursor = 0; |
| 122 | int error = 0; |
| 123 | void *new_mc = NULL; |
| 124 | int cpu; |
| 125 | cpumask_t old; |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 126 | |
| 127 | old = current->cpus_allowed; |
| 128 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 129 | while ((cursor = microcode_ops->get_next_ucode(&new_mc, cursor)) > 0) { |
| 130 | error = microcode_ops->microcode_sanity_check(new_mc); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 131 | if (error) |
| 132 | goto out; |
| 133 | /* |
| 134 | * It's possible the data file has multiple matching ucode, |
| 135 | * lets keep searching till the latest version |
| 136 | */ |
| 137 | for_each_online_cpu(cpu) { |
| 138 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
| 139 | |
| 140 | if (!uci->valid) |
| 141 | continue; |
Mike Travis | 0bc3cc0 | 2008-07-24 18:21:31 -0700 | [diff] [blame] | 142 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 143 | error = microcode_ops->get_matching_microcode(new_mc, |
| 144 | cpu); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 145 | if (error < 0) |
| 146 | goto out; |
| 147 | if (error == 1) |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 148 | microcode_ops->apply_microcode(cpu); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 149 | } |
| 150 | vfree(new_mc); |
| 151 | } |
| 152 | out: |
| 153 | if (cursor > 0) |
| 154 | vfree(new_mc); |
| 155 | if (cursor < 0) |
| 156 | error = cursor; |
| 157 | set_cpus_allowed_ptr(current, &old); |
| 158 | return error; |
| 159 | } |
| 160 | |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 161 | static int microcode_open(struct inode *unused1, struct file *unused2) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 162 | { |
| 163 | cycle_kernel_lock(); |
| 164 | return capable(CAP_SYS_RAWIO) ? 0 : -EPERM; |
| 165 | } |
| 166 | |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 167 | static ssize_t microcode_write(struct file *file, const char __user *buf, |
| 168 | size_t len, loff_t *ppos) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 169 | { |
| 170 | ssize_t ret; |
| 171 | |
| 172 | if ((len >> PAGE_SHIFT) > num_physpages) { |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 173 | printk(KERN_ERR "microcode: too much data (max %ld pages)\n", |
| 174 | num_physpages); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 175 | return -EINVAL; |
| 176 | } |
| 177 | |
| 178 | get_online_cpus(); |
| 179 | mutex_lock(µcode_mutex); |
| 180 | |
| 181 | user_buffer = (void __user *) buf; |
| 182 | user_buffer_size = (int) len; |
| 183 | |
| 184 | ret = do_microcode_update(); |
| 185 | if (!ret) |
| 186 | ret = (ssize_t)len; |
| 187 | |
| 188 | mutex_unlock(µcode_mutex); |
| 189 | put_online_cpus(); |
| 190 | |
| 191 | return ret; |
| 192 | } |
| 193 | |
| 194 | static const struct file_operations microcode_fops = { |
| 195 | .owner = THIS_MODULE, |
| 196 | .write = microcode_write, |
| 197 | .open = microcode_open, |
| 198 | }; |
| 199 | |
| 200 | static struct miscdevice microcode_dev = { |
| 201 | .minor = MICROCODE_MINOR, |
| 202 | .name = "microcode", |
| 203 | .fops = µcode_fops, |
| 204 | }; |
| 205 | |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 206 | static int __init microcode_dev_init(void) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 207 | { |
| 208 | int error; |
| 209 | |
| 210 | error = misc_register(µcode_dev); |
| 211 | if (error) { |
| 212 | printk(KERN_ERR |
| 213 | "microcode: can't misc_register on minor=%d\n", |
| 214 | MICROCODE_MINOR); |
| 215 | return error; |
| 216 | } |
| 217 | |
| 218 | return 0; |
| 219 | } |
| 220 | |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 221 | static void microcode_dev_exit(void) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 222 | { |
| 223 | misc_deregister(µcode_dev); |
| 224 | } |
| 225 | |
| 226 | MODULE_ALIAS_MISCDEV(MICROCODE_MINOR); |
| 227 | #else |
| 228 | #define microcode_dev_init() 0 |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 229 | #define microcode_dev_exit() do { } while (0) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 230 | #endif |
| 231 | |
| 232 | /* fake device for request_firmware */ |
Ingo Molnar | 224e946 | 2008-07-29 09:52:55 +0200 | [diff] [blame] | 233 | struct platform_device *microcode_pdev; |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 234 | EXPORT_SYMBOL_GPL(microcode_pdev); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 235 | |
| 236 | static void microcode_init_cpu(int cpu, int resume) |
| 237 | { |
| 238 | cpumask_t old; |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 239 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
| 240 | |
| 241 | old = current->cpus_allowed; |
| 242 | |
Mike Travis | 0bc3cc0 | 2008-07-24 18:21:31 -0700 | [diff] [blame] | 243 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 244 | mutex_lock(µcode_mutex); |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 245 | microcode_ops->collect_cpu_info(cpu); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 246 | if (uci->valid && system_state == SYSTEM_RUNNING && !resume) |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 247 | microcode_ops->cpu_request_microcode(cpu); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 248 | mutex_unlock(µcode_mutex); |
| 249 | set_cpus_allowed_ptr(current, &old); |
| 250 | } |
| 251 | |
| 252 | static ssize_t reload_store(struct sys_device *dev, |
| 253 | struct sysdev_attribute *attr, |
| 254 | const char *buf, size_t sz) |
| 255 | { |
| 256 | struct ucode_cpu_info *uci = ucode_cpu_info + dev->id; |
| 257 | char *end; |
| 258 | unsigned long val = simple_strtoul(buf, &end, 0); |
| 259 | int err = 0; |
| 260 | int cpu = dev->id; |
| 261 | |
| 262 | if (end == buf) |
| 263 | return -EINVAL; |
| 264 | if (val == 1) { |
Mike Travis | 0bc3cc0 | 2008-07-24 18:21:31 -0700 | [diff] [blame] | 265 | cpumask_t old = current->cpus_allowed; |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 266 | |
| 267 | get_online_cpus(); |
Mike Travis | 0bc3cc0 | 2008-07-24 18:21:31 -0700 | [diff] [blame] | 268 | set_cpus_allowed_ptr(current, &cpumask_of_cpu(cpu)); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 269 | |
| 270 | mutex_lock(µcode_mutex); |
| 271 | if (uci->valid) |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 272 | err = microcode_ops->cpu_request_microcode(cpu); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 273 | mutex_unlock(µcode_mutex); |
| 274 | put_online_cpus(); |
| 275 | set_cpus_allowed_ptr(current, &old); |
| 276 | } |
| 277 | if (err) |
| 278 | return err; |
| 279 | return sz; |
| 280 | } |
| 281 | |
| 282 | static ssize_t version_show(struct sys_device *dev, |
| 283 | struct sysdev_attribute *attr, char *buf) |
| 284 | { |
| 285 | struct ucode_cpu_info *uci = ucode_cpu_info + dev->id; |
| 286 | |
| 287 | return sprintf(buf, "0x%x\n", uci->rev); |
| 288 | } |
| 289 | |
| 290 | static ssize_t pf_show(struct sys_device *dev, |
| 291 | struct sysdev_attribute *attr, char *buf) |
| 292 | { |
| 293 | struct ucode_cpu_info *uci = ucode_cpu_info + dev->id; |
| 294 | |
| 295 | return sprintf(buf, "0x%x\n", uci->pf); |
| 296 | } |
| 297 | |
| 298 | static SYSDEV_ATTR(reload, 0200, NULL, reload_store); |
| 299 | static SYSDEV_ATTR(version, 0400, version_show, NULL); |
| 300 | static SYSDEV_ATTR(processor_flags, 0400, pf_show, NULL); |
| 301 | |
| 302 | static struct attribute *mc_default_attrs[] = { |
| 303 | &attr_reload.attr, |
| 304 | &attr_version.attr, |
| 305 | &attr_processor_flags.attr, |
| 306 | NULL |
| 307 | }; |
| 308 | |
| 309 | static struct attribute_group mc_attr_group = { |
| 310 | .attrs = mc_default_attrs, |
| 311 | .name = "microcode", |
| 312 | }; |
| 313 | |
| 314 | static int __mc_sysdev_add(struct sys_device *sys_dev, int resume) |
| 315 | { |
| 316 | int err, cpu = sys_dev->id; |
| 317 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
| 318 | |
| 319 | if (!cpu_online(cpu)) |
| 320 | return 0; |
| 321 | |
| 322 | pr_debug("microcode: CPU%d added\n", cpu); |
| 323 | memset(uci, 0, sizeof(*uci)); |
| 324 | |
| 325 | err = sysfs_create_group(&sys_dev->kobj, &mc_attr_group); |
| 326 | if (err) |
| 327 | return err; |
| 328 | |
| 329 | microcode_init_cpu(cpu, resume); |
| 330 | |
| 331 | return 0; |
| 332 | } |
| 333 | |
| 334 | static int mc_sysdev_add(struct sys_device *sys_dev) |
| 335 | { |
| 336 | return __mc_sysdev_add(sys_dev, 0); |
| 337 | } |
| 338 | |
| 339 | static int mc_sysdev_remove(struct sys_device *sys_dev) |
| 340 | { |
| 341 | int cpu = sys_dev->id; |
| 342 | |
| 343 | if (!cpu_online(cpu)) |
| 344 | return 0; |
| 345 | |
| 346 | pr_debug("microcode: CPU%d removed\n", cpu); |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 347 | microcode_ops->microcode_fini_cpu(cpu); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 348 | sysfs_remove_group(&sys_dev->kobj, &mc_attr_group); |
| 349 | return 0; |
| 350 | } |
| 351 | |
| 352 | static int mc_sysdev_resume(struct sys_device *dev) |
| 353 | { |
| 354 | int cpu = dev->id; |
| 355 | |
| 356 | if (!cpu_online(cpu)) |
| 357 | return 0; |
| 358 | pr_debug("microcode: CPU%d resumed\n", cpu); |
| 359 | /* only CPU 0 will apply ucode here */ |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 360 | microcode_ops->apply_microcode(0); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 361 | return 0; |
| 362 | } |
| 363 | |
| 364 | static struct sysdev_driver mc_sysdev_driver = { |
| 365 | .add = mc_sysdev_add, |
| 366 | .remove = mc_sysdev_remove, |
| 367 | .resume = mc_sysdev_resume, |
| 368 | }; |
| 369 | |
| 370 | static __cpuinit int |
| 371 | mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu) |
| 372 | { |
| 373 | unsigned int cpu = (unsigned long)hcpu; |
| 374 | struct sys_device *sys_dev; |
| 375 | |
| 376 | sys_dev = get_cpu_sysdev(cpu); |
| 377 | switch (action) { |
| 378 | case CPU_UP_CANCELED_FROZEN: |
| 379 | /* The CPU refused to come up during a system resume */ |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 380 | microcode_ops->microcode_fini_cpu(cpu); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 381 | break; |
| 382 | case CPU_ONLINE: |
| 383 | case CPU_DOWN_FAILED: |
| 384 | mc_sysdev_add(sys_dev); |
| 385 | break; |
| 386 | case CPU_ONLINE_FROZEN: |
| 387 | /* System-wide resume is in progress, try to apply microcode */ |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 388 | if (microcode_ops->apply_microcode_check_cpu(cpu)) { |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 389 | /* The application of microcode failed */ |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 390 | microcode_ops->microcode_fini_cpu(cpu); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 391 | __mc_sysdev_add(sys_dev, 1); |
| 392 | break; |
| 393 | } |
| 394 | case CPU_DOWN_FAILED_FROZEN: |
| 395 | if (sysfs_create_group(&sys_dev->kobj, &mc_attr_group)) |
| 396 | printk(KERN_ERR "microcode: Failed to create the sysfs " |
| 397 | "group for CPU%d\n", cpu); |
| 398 | break; |
| 399 | case CPU_DOWN_PREPARE: |
| 400 | mc_sysdev_remove(sys_dev); |
| 401 | break; |
| 402 | case CPU_DOWN_PREPARE_FROZEN: |
| 403 | /* Suspend is in progress, only remove the interface */ |
| 404 | sysfs_remove_group(&sys_dev->kobj, &mc_attr_group); |
| 405 | break; |
| 406 | } |
| 407 | return NOTIFY_OK; |
| 408 | } |
| 409 | |
| 410 | static struct notifier_block __refdata mc_cpu_notifier = { |
| 411 | .notifier_call = mc_cpu_callback, |
| 412 | }; |
| 413 | |
Ingo Molnar | 45b1e23 | 2008-07-29 09:42:17 +0200 | [diff] [blame] | 414 | int microcode_init(void *opaque, struct module *module) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 415 | { |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 416 | struct microcode_ops *ops = (struct microcode_ops *)opaque; |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 417 | int error; |
| 418 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 419 | if (microcode_ops) { |
| 420 | printk(KERN_ERR "microcode: already loaded the other module\n"); |
| 421 | return -EEXIST; |
| 422 | } |
| 423 | |
| 424 | microcode_ops = ops; |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 425 | |
| 426 | error = microcode_dev_init(); |
| 427 | if (error) |
| 428 | return error; |
| 429 | microcode_pdev = platform_device_register_simple("microcode", -1, |
| 430 | NULL, 0); |
| 431 | if (IS_ERR(microcode_pdev)) { |
| 432 | microcode_dev_exit(); |
| 433 | return PTR_ERR(microcode_pdev); |
| 434 | } |
| 435 | |
| 436 | get_online_cpus(); |
| 437 | error = sysdev_driver_register(&cpu_sysdev_class, &mc_sysdev_driver); |
| 438 | put_online_cpus(); |
| 439 | if (error) { |
| 440 | microcode_dev_exit(); |
| 441 | platform_device_unregister(microcode_pdev); |
| 442 | return error; |
| 443 | } |
| 444 | |
| 445 | register_hotcpu_notifier(&mc_cpu_notifier); |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 446 | |
| 447 | printk(KERN_INFO |
| 448 | "Microcode Update Driver: v" MICROCODE_VERSION |
| 449 | " <tigran@aivazian.fsnet.co.uk>" |
| 450 | " <peter.oruba@amd.com>\n"); |
| 451 | |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 452 | return 0; |
| 453 | } |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 454 | EXPORT_SYMBOL_GPL(microcode_init); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 455 | |
Peter Oruba | d33dcb9 | 2008-08-01 12:46:45 +0200 | [diff] [blame^] | 456 | void __exit microcode_exit(void) |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 457 | { |
| 458 | microcode_dev_exit(); |
| 459 | |
| 460 | unregister_hotcpu_notifier(&mc_cpu_notifier); |
| 461 | |
| 462 | get_online_cpus(); |
| 463 | sysdev_driver_unregister(&cpu_sysdev_class, &mc_sysdev_driver); |
| 464 | put_online_cpus(); |
| 465 | |
| 466 | platform_device_unregister(microcode_pdev); |
Peter Oruba | 3e135d8 | 2008-07-28 18:44:17 +0200 | [diff] [blame] | 467 | |
Peter Oruba | 8d86f39 | 2008-07-28 18:44:21 +0200 | [diff] [blame] | 468 | microcode_ops = NULL; |
| 469 | |
| 470 | printk(KERN_INFO |
| 471 | "Microcode Update Driver: v" MICROCODE_VERSION " removed.\n"); |
| 472 | } |
| 473 | EXPORT_SYMBOL_GPL(microcode_exit); |