core.c 15.8 KB
Newer Older
P
Peter Oruba 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 *	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:
 *
15
 *	http://developer.intel.com/Assets/PDF/manual/253668.pdf	
P
Peter Oruba 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
 *
 *	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>,
58 59
 *		Serialize updates as required on HT processors due to
 *		speculative nature of implementation.
P
Peter Oruba 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72
 *	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.
 */
73 74 75

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

I
Ingo Molnar 已提交
76 77
#include <linux/platform_device.h>
#include <linux/miscdevice.h>
78
#include <linux/capability.h>
I
Ingo Molnar 已提交
79 80
#include <linux/kernel.h>
#include <linux/module.h>
P
Peter Oruba 已提交
81 82
#include <linux/mutex.h>
#include <linux/cpu.h>
I
Ingo Molnar 已提交
83 84
#include <linux/fs.h>
#include <linux/mm.h>
85
#include <linux/syscore_ops.h>
P
Peter Oruba 已提交
86 87

#include <asm/microcode.h>
I
Ingo Molnar 已提交
88
#include <asm/processor.h>
89
#include <asm/cpu_device_id.h>
90
#include <asm/perf_event.h>
P
Peter Oruba 已提交
91 92 93 94 95

MODULE_DESCRIPTION("Microcode Update Driver");
MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>");
MODULE_LICENSE("GPL");

I
Ingo Molnar 已提交
96
#define MICROCODE_VERSION	"2.00"
P
Peter Oruba 已提交
97

I
Ingo Molnar 已提交
98
static struct microcode_ops	*microcode_ops;
P
Peter Oruba 已提交
99

100 101 102
bool dis_ucode_ldr;
module_param(dis_ucode_ldr, bool, 0);

103 104 105 106 107 108 109 110 111 112 113 114
/*
 * 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.
 */
115
static DEFINE_MUTEX(microcode_mutex);
P
Peter Oruba 已提交
116

I
Ingo Molnar 已提交
117
struct ucode_cpu_info		ucode_cpu_info[NR_CPUS];
P
Peter Oruba 已提交
118
EXPORT_SYMBOL_GPL(ucode_cpu_info);
P
Peter Oruba 已提交
119

120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
/*
 * 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;
}

P
Peter Oruba 已提交
186
#ifdef CONFIG_MICROCODE_OLD_INTERFACE
D
Dmitry Adamushko 已提交
187
static int do_microcode_update(const void __user *buf, size_t size)
P
Peter Oruba 已提交
188 189 190
{
	int error = 0;
	int cpu;
191

D
Dmitry Adamushko 已提交
192 193
	for_each_online_cpu(cpu) {
		struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
194
		enum ucode_state ustate;
D
Dmitry Adamushko 已提交
195 196 197

		if (!uci->valid)
			continue;
198

199 200 201 202 203 204
		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);
P
Peter Oruba 已提交
205
	}
206

P
Peter Oruba 已提交
207 208 209
	return error;
}

210
static int microcode_open(struct inode *inode, struct file *file)
P
Peter Oruba 已提交
211
{
212
	return capable(CAP_SYS_RAWIO) ? nonseekable_open(inode, file) : -EPERM;
P
Peter Oruba 已提交
213 214
}

215 216
static ssize_t microcode_write(struct file *file, const char __user *buf,
			       size_t len, loff_t *ppos)
P
Peter Oruba 已提交
217
{
218
	ssize_t ret = -EINVAL;
P
Peter Oruba 已提交
219

220
	if ((len >> PAGE_SHIFT) > totalram_pages) {
221
		pr_err("too much data (max %ld pages)\n", totalram_pages);
222
		return ret;
P
Peter Oruba 已提交
223 224 225 226 227
	}

	get_online_cpus();
	mutex_lock(&microcode_mutex);

228
	if (do_microcode_update(buf, len) == 0)
P
Peter Oruba 已提交
229 230
		ret = (ssize_t)len;

231 232 233
	if (ret > 0)
		perf_check_microcode();

P
Peter Oruba 已提交
234 235 236 237 238 239 240
	mutex_unlock(&microcode_mutex);
	put_online_cpus();

	return ret;
}

static const struct file_operations microcode_fops = {
241 242 243
	.owner			= THIS_MODULE,
	.write			= microcode_write,
	.open			= microcode_open,
244
	.llseek		= no_llseek,
P
Peter Oruba 已提交
245 246 247
};

static struct miscdevice microcode_dev = {
248 249
	.minor			= MICROCODE_MINOR,
	.name			= "microcode",
250
	.nodename		= "cpu/microcode",
251
	.fops			= &microcode_fops,
P
Peter Oruba 已提交
252 253
};

254
static int __init microcode_dev_init(void)
P
Peter Oruba 已提交
255 256 257 258 259
{
	int error;

	error = misc_register(&microcode_dev);
	if (error) {
260
		pr_err("can't misc_register on minor=%d\n", MICROCODE_MINOR);
P
Peter Oruba 已提交
261 262 263 264 265 266
		return error;
	}

	return 0;
}

267
static void __exit microcode_dev_exit(void)
P
Peter Oruba 已提交
268 269 270 271 272
{
	misc_deregister(&microcode_dev);
}

MODULE_ALIAS_MISCDEV(MICROCODE_MINOR);
273
MODULE_ALIAS("devname:cpu/microcode");
P
Peter Oruba 已提交
274
#else
I
Ingo Molnar 已提交
275 276
#define microcode_dev_init()	0
#define microcode_dev_exit()	do { } while (0)
P
Peter Oruba 已提交
277 278 279
#endif

/* fake device for request_firmware */
I
Ingo Molnar 已提交
280
static struct platform_device	*microcode_pdev;
P
Peter Oruba 已提交
281

282
static int reload_for_cpu(int cpu)
283
{
284
	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
285
	enum ucode_state ustate;
286 287
	int err = 0;

288 289
	if (!uci->valid)
		return err;
290

291
	ustate = microcode_ops->request_microcode_fw(cpu, &microcode_pdev->dev, true);
292 293 294 295 296
	if (ustate == UCODE_OK)
		apply_microcode_on_target(cpu);
	else
		if (ustate == UCODE_ERROR)
			err = -EINVAL;
297 298 299
	return err;
}

300 301
static ssize_t reload_store(struct device *dev,
			    struct device_attribute *attr,
302
			    const char *buf, size_t size)
P
Peter Oruba 已提交
303
{
304
	unsigned long val;
305 306 307
	int cpu;
	ssize_t ret = 0, tmp_ret;

308 309 310
	ret = kstrtoul(buf, 0, &val);
	if (ret)
		return ret;
311

312 313 314 315
	if (val != 1)
		return size;

	get_online_cpus();
316
	mutex_lock(&microcode_mutex);
317 318 319 320 321 322 323 324
	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;
P
Peter Oruba 已提交
325
	}
326 327 328
	if (!ret)
		perf_check_microcode();
	mutex_unlock(&microcode_mutex);
329
	put_online_cpus();
330 331 332 333 334

	if (!ret)
		ret = size;

	return ret;
P
Peter Oruba 已提交
335 336
}

337 338
static ssize_t version_show(struct device *dev,
			struct device_attribute *attr, char *buf)
P
Peter Oruba 已提交
339 340 341
{
	struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;

342
	return sprintf(buf, "0x%x\n", uci->cpu_sig.rev);
P
Peter Oruba 已提交
343 344
}

345 346
static ssize_t pf_show(struct device *dev,
			struct device_attribute *attr, char *buf)
P
Peter Oruba 已提交
347 348 349
{
	struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;

350
	return sprintf(buf, "0x%x\n", uci->cpu_sig.pf);
P
Peter Oruba 已提交
351 352
}

353 354 355
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);
P
Peter Oruba 已提交
356 357

static struct attribute *mc_default_attrs[] = {
358 359
	&dev_attr_version.attr,
	&dev_attr_processor_flags.attr,
P
Peter Oruba 已提交
360 361 362 363
	NULL
};

static struct attribute_group mc_attr_group = {
364 365
	.attrs			= mc_default_attrs,
	.name			= "microcode",
P
Peter Oruba 已提交
366 367
};

368
static void microcode_fini_cpu(int cpu)
369 370
{
	microcode_ops->microcode_fini_cpu(cpu);
371 372
}

373
static enum ucode_state microcode_resume_cpu(int cpu)
374
{
375
	pr_debug("CPU%d updated upon resume\n", cpu);
376 377 378

	if (apply_microcode_on_target(cpu))
		return UCODE_ERROR;
379 380

	return UCODE_OK;
381 382
}

383
static enum ucode_state microcode_init_cpu(int cpu, bool refresh_fw)
384
{
385
	enum ucode_state ustate;
386 387 388 389
	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;

	if (uci && uci->valid)
		return UCODE_OK;
390

391 392
	if (collect_cpu_info(cpu))
		return UCODE_ERROR;
393

394 395 396
	/* --dimm. Trigger a delayed update? */
	if (system_state != SYSTEM_RUNNING)
		return UCODE_NFOUND;
397

398 399
	ustate = microcode_ops->request_microcode_fw(cpu, &microcode_pdev->dev,
						     refresh_fw);
400

401
	if (ustate == UCODE_OK) {
402
		pr_debug("CPU%d updated upon init\n", cpu);
403
		apply_microcode_on_target(cpu);
404 405
	}

406
	return ustate;
407 408
}

409
static enum ucode_state microcode_update_cpu(int cpu)
410
{
411
	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
412

413
	if (uci->valid)
414
		return microcode_resume_cpu(cpu);
415

416
	return microcode_init_cpu(cpu, false);
417 418
}

419
static int mc_device_add(struct device *dev, struct subsys_interface *sif)
P
Peter Oruba 已提交
420
{
421
	int err, cpu = dev->id;
P
Peter Oruba 已提交
422 423 424 425

	if (!cpu_online(cpu))
		return 0;

426
	pr_debug("CPU%d added\n", cpu);
P
Peter Oruba 已提交
427

428
	err = sysfs_create_group(&dev->kobj, &mc_attr_group);
P
Peter Oruba 已提交
429 430 431
	if (err)
		return err;

432
	if (microcode_init_cpu(cpu, true) == UCODE_ERROR)
433
		return -EINVAL;
434 435

	return err;
P
Peter Oruba 已提交
436 437
}

438
static int mc_device_remove(struct device *dev, struct subsys_interface *sif)
P
Peter Oruba 已提交
439
{
440
	int cpu = dev->id;
P
Peter Oruba 已提交
441 442 443 444

	if (!cpu_online(cpu))
		return 0;

445
	pr_debug("CPU%d removed\n", cpu);
446
	microcode_fini_cpu(cpu);
447
	sysfs_remove_group(&dev->kobj, &mc_attr_group);
P
Peter Oruba 已提交
448 449 450
	return 0;
}

451 452 453 454 455
static struct subsys_interface mc_cpu_interface = {
	.name			= "microcode",
	.subsys			= &cpu_subsys,
	.add_dev		= mc_device_add,
	.remove_dev		= mc_device_remove,
456 457 458 459 460 461
};

/**
 * mc_bp_resume - Update boot CPU microcode during resume.
 */
static void mc_bp_resume(void)
P
Peter Oruba 已提交
462
{
463
	int cpu = smp_processor_id();
464
	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
P
Peter Oruba 已提交
465

466 467
	if (uci->valid && uci->mc)
		microcode_ops->apply_microcode(cpu);
468 469 470 471 472 473 474 475
	else if (!uci->mc)
		/*
		 * We might resume and not have applied late microcode but still
		 * have a newer patch stashed from the early loader. We don't
		 * have it in uci->mc so we have to load it the same way we're
		 * applying patches early on the APs.
		 */
		load_ucode_ap();
P
Peter Oruba 已提交
476 477
}

478 479
static struct syscore_ops mc_syscore_ops = {
	.resume			= mc_bp_resume,
P
Peter Oruba 已提交
480 481
};

482
static int
P
Peter Oruba 已提交
483 484 485
mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu)
{
	unsigned int cpu = (unsigned long)hcpu;
486
	struct device *dev;
P
Peter Oruba 已提交
487

488
	dev = get_cpu_device(cpu);
489 490

	switch (action & ~CPU_TASKS_FROZEN) {
P
Peter Oruba 已提交
491
	case CPU_ONLINE:
492
		microcode_update_cpu(cpu);
493
		pr_debug("CPU%d added\n", cpu);
494 495 496 497 498 499
		/*
		 * "break" is missing on purpose here because we want to fall
		 * through in order to create the sysfs group.
		 */

	case CPU_DOWN_FAILED:
500
		if (sysfs_create_group(&dev->kobj, &mc_attr_group))
501
			pr_err("Failed to create group for CPU%d\n", cpu);
P
Peter Oruba 已提交
502
		break;
503

P
Peter Oruba 已提交
504 505
	case CPU_DOWN_PREPARE:
		/* Suspend is in progress, only remove the interface */
506
		sysfs_remove_group(&dev->kobj, &mc_attr_group);
507
		pr_debug("CPU%d removed\n", cpu);
508
		break;
509 510

	/*
511 512
	 * case CPU_DEAD:
	 *
513 514 515 516 517
	 * 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.
	 */
P
Peter Oruba 已提交
518
	}
519 520 521 522 523

	/* The CPU refused to come up during a system resume */
	if (action == CPU_UP_CANCELED_FROZEN)
		microcode_fini_cpu(cpu);

P
Peter Oruba 已提交
524 525 526 527
	return NOTIFY_OK;
}

static struct notifier_block __refdata mc_cpu_notifier = {
I
Ingo Molnar 已提交
528
	.notifier_call	= mc_cpu_callback,
P
Peter Oruba 已提交
529 530
};

531 532
#ifdef MODULE
/* Autoload on Intel and AMD systems */
533
static const struct x86_cpu_id __initconst microcode_id[] = {
534 535 536 537 538 539 540 541 542 543 544
#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

545 546 547 548 549 550 551 552 553 554
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,
};

555
static int __init microcode_init(void)
P
Peter Oruba 已提交
556
{
557
	struct cpuinfo_x86 *c = &cpu_data(0);
P
Peter Oruba 已提交
558 559
	int error;

560
	if (paravirt_enabled() || dis_ucode_ldr)
561 562
		return 0;

563 564
	if (c->x86_vendor == X86_VENDOR_INTEL)
		microcode_ops = init_intel_microcode();
P
Peter Oruba 已提交
565
	else if (c->x86_vendor == X86_VENDOR_AMD)
566
		microcode_ops = init_amd_microcode();
567
	else
568
		pr_err("no support for this CPU vendor\n");
569 570

	if (!microcode_ops)
571
		return -ENODEV;
P
Peter Oruba 已提交
572 573 574

	microcode_pdev = platform_device_register_simple("microcode", -1,
							 NULL, 0);
575
	if (IS_ERR(microcode_pdev))
P
Peter Oruba 已提交
576 577 578
		return PTR_ERR(microcode_pdev);

	get_online_cpus();
579 580
	mutex_lock(&microcode_mutex);

581
	error = subsys_interface_register(&mc_cpu_interface);
582 583
	if (!error)
		perf_check_microcode();
584
	mutex_unlock(&microcode_mutex);
P
Peter Oruba 已提交
585
	put_online_cpus();
586

587 588
	if (error)
		goto out_pdev;
P
Peter Oruba 已提交
589

590 591 592 593 594 595 596 597
	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;
	}

598 599
	error = microcode_dev_init();
	if (error)
600
		goto out_ucode_group;
601

602
	register_syscore_ops(&mc_syscore_ops);
P
Peter Oruba 已提交
603
	register_hotcpu_notifier(&mc_cpu_notifier);
P
Peter Oruba 已提交
604

605
	pr_info("Microcode Update Driver: v" MICROCODE_VERSION
606
		" <tigran@aivazian.fsnet.co.uk>, Peter Oruba\n");
P
Peter Oruba 已提交
607

P
Peter Oruba 已提交
608
	return 0;
609

610 611 612 613 614
 out_ucode_group:
	sysfs_remove_group(&cpu_subsys.dev_root->kobj,
			   &cpu_root_microcode_group);

 out_driver:
615 616 617
	get_online_cpus();
	mutex_lock(&microcode_mutex);

618
	subsys_interface_unregister(&mc_cpu_interface);
619 620 621 622

	mutex_unlock(&microcode_mutex);
	put_online_cpus();

623
 out_pdev:
624 625 626
	platform_device_unregister(microcode_pdev);
	return error;

P
Peter Oruba 已提交
627
}
628
module_init(microcode_init);
P
Peter Oruba 已提交
629

630
static void __exit microcode_exit(void)
P
Peter Oruba 已提交
631
{
632 633
	struct cpuinfo_x86 *c = &cpu_data(0);

P
Peter Oruba 已提交
634 635 636
	microcode_dev_exit();

	unregister_hotcpu_notifier(&mc_cpu_notifier);
637
	unregister_syscore_ops(&mc_syscore_ops);
P
Peter Oruba 已提交
638

639 640 641
	sysfs_remove_group(&cpu_subsys.dev_root->kobj,
			   &cpu_root_microcode_group);

P
Peter Oruba 已提交
642
	get_online_cpus();
643 644
	mutex_lock(&microcode_mutex);

645
	subsys_interface_unregister(&mc_cpu_interface);
646 647

	mutex_unlock(&microcode_mutex);
P
Peter Oruba 已提交
648 649 650 651
	put_online_cpus();

	platform_device_unregister(microcode_pdev);

P
Peter Oruba 已提交
652 653
	microcode_ops = NULL;

654 655 656
	if (c->x86_vendor == X86_VENDOR_AMD)
		exit_amd_microcode();

657
	pr_info("Microcode Update Driver: v" MICROCODE_VERSION " removed.\n");
P
Peter Oruba 已提交
658
}
659
module_exit(microcode_exit);