microcode_core.c 13.6 KB
Newer Older
P
Peter Oruba 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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
/*
 *	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:
 *
 *	http://developer.intel.com/design/pentium4/manuals/253668.htm
 *
 *	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.
 */
I
Ingo Molnar 已提交
73
#include <linux/platform_device.h>
P
Peter Oruba 已提交
74
#include <linux/capability.h>
I
Ingo Molnar 已提交
75 76
#include <linux/miscdevice.h>
#include <linux/firmware.h>
P
Peter Oruba 已提交
77
#include <linux/smp_lock.h>
I
Ingo Molnar 已提交
78
#include <linux/spinlock.h>
P
Peter Oruba 已提交
79
#include <linux/cpumask.h>
I
Ingo Molnar 已提交
80
#include <linux/uaccess.h>
P
Peter Oruba 已提交
81
#include <linux/vmalloc.h>
I
Ingo Molnar 已提交
82 83
#include <linux/kernel.h>
#include <linux/module.h>
P
Peter Oruba 已提交
84
#include <linux/mutex.h>
I
Ingo Molnar 已提交
85 86 87
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/slab.h>
P
Peter Oruba 已提交
88
#include <linux/cpu.h>
I
Ingo Molnar 已提交
89 90
#include <linux/fs.h>
#include <linux/mm.h>
P
Peter Oruba 已提交
91 92

#include <asm/microcode.h>
I
Ingo Molnar 已提交
93 94
#include <asm/processor.h>
#include <asm/msr.h>
P
Peter Oruba 已提交
95 96 97 98 99

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

I
Ingo Molnar 已提交
100
#define MICROCODE_VERSION	"2.00"
P
Peter Oruba 已提交
101

I
Ingo Molnar 已提交
102
static struct microcode_ops	*microcode_ops;
P
Peter Oruba 已提交
103

P
Peter Oruba 已提交
104
/* no concurrent ->write()s are allowed on /dev/cpu/microcode */
105
static DEFINE_MUTEX(microcode_mutex);
P
Peter Oruba 已提交
106

I
Ingo Molnar 已提交
107
struct ucode_cpu_info		ucode_cpu_info[NR_CPUS];
P
Peter Oruba 已提交
108
EXPORT_SYMBOL_GPL(ucode_cpu_info);
P
Peter Oruba 已提交
109 110

#ifdef CONFIG_MICROCODE_OLD_INTERFACE
111
struct update_for_cpu {
I
Ingo Molnar 已提交
112 113
	const void __user	*buf;
	size_t			size;
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
};

static long update_for_cpu(void *_ufc)
{
	struct update_for_cpu *ufc = _ufc;
	int error;

	error = microcode_ops->request_microcode_user(smp_processor_id(),
						      ufc->buf, ufc->size);
	if (error < 0)
		return error;
	if (!error)
		microcode_ops->apply_microcode(smp_processor_id());
	return error;
}

D
Dmitry Adamushko 已提交
130
static int do_microcode_update(const void __user *buf, size_t size)
P
Peter Oruba 已提交
131 132 133
{
	int error = 0;
	int cpu;
134
	struct update_for_cpu ufc = { .buf = buf, .size = size };
P
Peter Oruba 已提交
135

D
Dmitry Adamushko 已提交
136 137 138 139 140
	for_each_online_cpu(cpu) {
		struct ucode_cpu_info *uci = ucode_cpu_info + cpu;

		if (!uci->valid)
			continue;
141
		error = work_on_cpu(cpu, update_for_cpu, &ufc);
D
Dmitry Adamushko 已提交
142
		if (error < 0)
143
			break;
P
Peter Oruba 已提交
144 145 146 147
	}
	return error;
}

148
static int microcode_open(struct inode *unused1, struct file *unused2)
P
Peter Oruba 已提交
149 150 151 152 153
{
	cycle_kernel_lock();
	return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
}

154 155
static ssize_t microcode_write(struct file *file, const char __user *buf,
			       size_t len, loff_t *ppos)
P
Peter Oruba 已提交
156 157 158 159
{
	ssize_t ret;

	if ((len >> PAGE_SHIFT) > num_physpages) {
160 161
		printk(KERN_ERR "microcode: too much data (max %ld pages)\n",
		       num_physpages);
P
Peter Oruba 已提交
162 163 164 165 166 167
		return -EINVAL;
	}

	get_online_cpus();
	mutex_lock(&microcode_mutex);

D
Dmitry Adamushko 已提交
168
	ret = do_microcode_update(buf, len);
P
Peter Oruba 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
	if (!ret)
		ret = (ssize_t)len;

	mutex_unlock(&microcode_mutex);
	put_online_cpus();

	return ret;
}

static const struct file_operations microcode_fops = {
	.owner		= THIS_MODULE,
	.write		= microcode_write,
	.open		= microcode_open,
};

static struct miscdevice microcode_dev = {
	.minor		= MICROCODE_MINOR,
	.name		= "microcode",
	.fops		= &microcode_fops,
};

190
static int __init microcode_dev_init(void)
P
Peter Oruba 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203 204
{
	int error;

	error = misc_register(&microcode_dev);
	if (error) {
		printk(KERN_ERR
			"microcode: can't misc_register on minor=%d\n",
			MICROCODE_MINOR);
		return error;
	}

	return 0;
}

205
static void microcode_dev_exit(void)
P
Peter Oruba 已提交
206 207 208 209 210 211
{
	misc_deregister(&microcode_dev);
}

MODULE_ALIAS_MISCDEV(MICROCODE_MINOR);
#else
I
Ingo Molnar 已提交
212 213
#define microcode_dev_init()	0
#define microcode_dev_exit()	do { } while (0)
P
Peter Oruba 已提交
214 215 216
#endif

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

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
static long reload_for_cpu(void *unused)
{
	struct ucode_cpu_info *uci = ucode_cpu_info + smp_processor_id();
	int err = 0;

	mutex_lock(&microcode_mutex);
	if (uci->valid) {
		err = microcode_ops->request_microcode_fw(smp_processor_id(),
							  &microcode_pdev->dev);
		if (!err)
			microcode_ops->apply_microcode(smp_processor_id());
	}
	mutex_unlock(&microcode_mutex);
	return err;
}

P
Peter Oruba 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247
static ssize_t reload_store(struct sys_device *dev,
			    struct sysdev_attribute *attr,
			    const char *buf, size_t sz)
{
	char *end;
	unsigned long val = simple_strtoul(buf, &end, 0);
	int err = 0;
	int cpu = dev->id;

	if (end == buf)
		return -EINVAL;
	if (val == 1) {
		get_online_cpus();
248 249
		if (cpu_online(cpu))
			err = work_on_cpu(cpu, reload_for_cpu, NULL);
P
Peter Oruba 已提交
250 251 252 253 254 255 256 257 258 259 260 261
		put_online_cpus();
	}
	if (err)
		return err;
	return sz;
}

static ssize_t version_show(struct sys_device *dev,
			struct sysdev_attribute *attr, char *buf)
{
	struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;

262
	return sprintf(buf, "0x%x\n", uci->cpu_sig.rev);
P
Peter Oruba 已提交
263 264 265 266 267 268 269
}

static ssize_t pf_show(struct sys_device *dev,
			struct sysdev_attribute *attr, char *buf)
{
	struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;

270
	return sprintf(buf, "0x%x\n", uci->cpu_sig.pf);
P
Peter Oruba 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284
}

static SYSDEV_ATTR(reload, 0200, NULL, reload_store);
static SYSDEV_ATTR(version, 0400, version_show, NULL);
static SYSDEV_ATTR(processor_flags, 0400, pf_show, NULL);

static struct attribute *mc_default_attrs[] = {
	&attr_reload.attr,
	&attr_version.attr,
	&attr_processor_flags.attr,
	NULL
};

static struct attribute_group mc_attr_group = {
I
Ingo Molnar 已提交
285 286
	.attrs		= mc_default_attrs,
	.name		= "microcode",
P
Peter Oruba 已提交
287 288
};

289
static void __microcode_fini_cpu(int cpu)
290 291 292 293 294
{
	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;

	microcode_ops->microcode_fini_cpu(cpu);
	uci->valid = 0;
295 296 297 298 299 300
}

static void microcode_fini_cpu(int cpu)
{
	mutex_lock(&microcode_mutex);
	__microcode_fini_cpu(cpu);
301 302 303 304 305 306 307 308 309 310 311 312
	mutex_unlock(&microcode_mutex);
}

static void collect_cpu_info(int cpu)
{
	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;

	memset(uci, 0, sizeof(*uci));
	if (!microcode_ops->collect_cpu_info(cpu, &uci->cpu_sig))
		uci->valid = 1;
}

D
Dmitry Adamushko 已提交
313
static int microcode_resume_cpu(int cpu)
314 315 316 317 318 319
{
	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
	struct cpu_signature nsig;

	pr_debug("microcode: CPU%d resumed\n", cpu);

320
	if (!uci->mc)
D
Dmitry Adamushko 已提交
321
		return 1;
322 323 324 325 326 327

	/*
	 * Let's verify that the 'cached' ucode does belong
	 * to this cpu (a bit of paranoia):
	 */
	if (microcode_ops->collect_cpu_info(cpu, &nsig)) {
328 329 330
		__microcode_fini_cpu(cpu);
		printk(KERN_ERR "failed to collect_cpu_info for resuming cpu #%d\n",
				cpu);
D
Dmitry Adamushko 已提交
331
		return -1;
332 333
	}

334 335 336 337
	if ((nsig.sig != uci->cpu_sig.sig) || (nsig.pf != uci->cpu_sig.pf)) {
		__microcode_fini_cpu(cpu);
		printk(KERN_ERR "cached ucode doesn't match the resuming cpu #%d\n",
				cpu);
338
		/* Should we look for a new ucode here? */
D
Dmitry Adamushko 已提交
339
		return 1;
340 341
	}

D
Dmitry Adamushko 已提交
342
	return 0;
343 344
}

345
static long microcode_update_cpu(void *unused)
346
{
347
	struct ucode_cpu_info *uci = ucode_cpu_info + smp_processor_id();
D
Dmitry Adamushko 已提交
348
	int err = 0;
349 350 351 352 353 354

	/*
	 * Check if the system resume is in progress (uci->valid != NULL),
	 * otherwise just request a firmware:
	 */
	if (uci->valid) {
355
		err = microcode_resume_cpu(smp_processor_id());
I
Ingo Molnar 已提交
356
	} else {
357
		collect_cpu_info(smp_processor_id());
358
		if (uci->valid && system_state == SYSTEM_RUNNING)
359 360
			err = microcode_ops->request_microcode_fw(
					smp_processor_id(),
D
Dmitry Adamushko 已提交
361
					&microcode_pdev->dev);
362
	}
D
Dmitry Adamushko 已提交
363
	if (!err)
364 365
		microcode_ops->apply_microcode(smp_processor_id());
	return err;
366 367
}

368
static int microcode_init_cpu(int cpu)
369
{
370
	int err;
371
	mutex_lock(&microcode_mutex);
372
	err = work_on_cpu(cpu, microcode_update_cpu, NULL);
373 374
	mutex_unlock(&microcode_mutex);

375
	return err;
376 377 378
}

static int mc_sysdev_add(struct sys_device *sys_dev)
P
Peter Oruba 已提交
379 380 381 382 383 384 385 386 387 388 389 390 391 392
{
	int err, cpu = sys_dev->id;
	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;

	if (!cpu_online(cpu))
		return 0;

	pr_debug("microcode: CPU%d added\n", cpu);
	memset(uci, 0, sizeof(*uci));

	err = sysfs_create_group(&sys_dev->kobj, &mc_attr_group);
	if (err)
		return err;

393 394 395 396 397
	err = microcode_init_cpu(cpu);
	if (err)
		sysfs_remove_group(&sys_dev->kobj, &mc_attr_group);

	return err;
P
Peter Oruba 已提交
398 399 400 401 402 403 404 405 406 407
}

static int mc_sysdev_remove(struct sys_device *sys_dev)
{
	int cpu = sys_dev->id;

	if (!cpu_online(cpu))
		return 0;

	pr_debug("microcode: CPU%d removed\n", cpu);
408
	microcode_fini_cpu(cpu);
P
Peter Oruba 已提交
409 410 411 412 413 414 415 416 417 418
	sysfs_remove_group(&sys_dev->kobj, &mc_attr_group);
	return 0;
}

static int mc_sysdev_resume(struct sys_device *dev)
{
	int cpu = dev->id;

	if (!cpu_online(cpu))
		return 0;
I
Ingo Molnar 已提交
419

P
Peter Oruba 已提交
420
	/* only CPU 0 will apply ucode here */
421
	microcode_update_cpu(NULL);
P
Peter Oruba 已提交
422 423 424 425
	return 0;
}

static struct sysdev_driver mc_sysdev_driver = {
I
Ingo Molnar 已提交
426 427 428
	.add		= mc_sysdev_add,
	.remove		= mc_sysdev_remove,
	.resume		= mc_sysdev_resume,
P
Peter Oruba 已提交
429 430 431 432 433 434 435 436 437 438 439 440
};

static __cpuinit int
mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu)
{
	unsigned int cpu = (unsigned long)hcpu;
	struct sys_device *sys_dev;

	sys_dev = get_cpu_sysdev(cpu);
	switch (action) {
	case CPU_ONLINE:
	case CPU_ONLINE_FROZEN:
441 442 443
		if (microcode_init_cpu(cpu))
			printk(KERN_ERR "microcode: failed to init CPU%d\n",
			       cpu);
444
	case CPU_DOWN_FAILED:
P
Peter Oruba 已提交
445
	case CPU_DOWN_FAILED_FROZEN:
446
		pr_debug("microcode: CPU%d added\n", cpu);
P
Peter Oruba 已提交
447 448 449 450 451 452 453 454
		if (sysfs_create_group(&sys_dev->kobj, &mc_attr_group))
			printk(KERN_ERR "microcode: Failed to create the sysfs "
				"group for CPU%d\n", cpu);
		break;
	case CPU_DOWN_PREPARE:
	case CPU_DOWN_PREPARE_FROZEN:
		/* Suspend is in progress, only remove the interface */
		sysfs_remove_group(&sys_dev->kobj, &mc_attr_group);
455 456 457 458 459 460
		pr_debug("microcode: CPU%d removed\n", cpu);
		break;
	case CPU_DEAD:
	case CPU_UP_CANCELED_FROZEN:
		/* The CPU refused to come up during a system resume */
		microcode_fini_cpu(cpu);
P
Peter Oruba 已提交
461 462 463 464 465 466
		break;
	}
	return NOTIFY_OK;
}

static struct notifier_block __refdata mc_cpu_notifier = {
I
Ingo Molnar 已提交
467
	.notifier_call	= mc_cpu_callback,
P
Peter Oruba 已提交
468 469
};

470
static int __init microcode_init(void)
P
Peter Oruba 已提交
471
{
472
	struct cpuinfo_x86 *c = &cpu_data(0);
P
Peter Oruba 已提交
473 474
	int error;

475 476
	if (c->x86_vendor == X86_VENDOR_INTEL)
		microcode_ops = init_intel_microcode();
P
Peter Oruba 已提交
477
	else if (c->x86_vendor == X86_VENDOR_AMD)
478
		microcode_ops = init_amd_microcode();
P
Peter Oruba 已提交
479

480 481 482 483
	if (!microcode_ops) {
		printk(KERN_ERR "microcode: no support for this CPU vendor\n");
		return -ENODEV;
	}
P
Peter Oruba 已提交
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504

	error = microcode_dev_init();
	if (error)
		return error;
	microcode_pdev = platform_device_register_simple("microcode", -1,
							 NULL, 0);
	if (IS_ERR(microcode_pdev)) {
		microcode_dev_exit();
		return PTR_ERR(microcode_pdev);
	}

	get_online_cpus();
	error = sysdev_driver_register(&cpu_sysdev_class, &mc_sysdev_driver);
	put_online_cpus();
	if (error) {
		microcode_dev_exit();
		platform_device_unregister(microcode_pdev);
		return error;
	}

	register_hotcpu_notifier(&mc_cpu_notifier);
P
Peter Oruba 已提交
505 506 507

	printk(KERN_INFO
	       "Microcode Update Driver: v" MICROCODE_VERSION
508 509
	       " <tigran@aivazian.fsnet.co.uk>,"
	       " Peter Oruba\n");
P
Peter Oruba 已提交
510

P
Peter Oruba 已提交
511 512 513
	return 0;
}

514
static void __exit microcode_exit(void)
P
Peter Oruba 已提交
515 516 517 518 519 520 521 522 523 524 525
{
	microcode_dev_exit();

	unregister_hotcpu_notifier(&mc_cpu_notifier);

	get_online_cpus();
	sysdev_driver_unregister(&cpu_sysdev_class, &mc_sysdev_driver);
	put_online_cpus();

	platform_device_unregister(microcode_pdev);

P
Peter Oruba 已提交
526 527 528 529 530
	microcode_ops = NULL;

	printk(KERN_INFO
	       "Microcode Update Driver: v" MICROCODE_VERSION " removed.\n");
}
531 532 533

module_init(microcode_init);
module_exit(microcode_exit);