2008-07-29 00:44:17 +08:00
|
|
|
/*
|
2015-05-11 16:15:47 +08:00
|
|
|
* CPU Microcode Update Driver for Linux
|
2008-07-29 00:44:17 +08:00
|
|
|
*
|
2017-05-13 06:46:44 +08:00
|
|
|
* Copyright (C) 2000-2006 Tigran Aivazian <aivazian.tigran@gmail.com>
|
2015-05-11 16:15:47 +08:00
|
|
|
* 2006 Shaohua Li <shaohua.li@intel.com>
|
2016-10-25 17:55:22 +08:00
|
|
|
* 2013-2016 Borislav Petkov <bp@alien8.de>
|
2008-07-29 00:44:17 +08:00
|
|
|
*
|
2015-10-20 17:54:45 +08:00
|
|
|
* X86 CPU microcode early update for Linux:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Fenghua Yu <fenghua.yu@intel.com>
|
|
|
|
* H Peter Anvin" <hpa@zytor.com>
|
|
|
|
* (C) 2015 Borislav Petkov <bp@alien8.de>
|
|
|
|
*
|
2015-05-11 16:15:47 +08:00
|
|
|
* This driver allows to upgrade microcode on x86 processors.
|
2008-07-29 00:44:17 +08:00
|
|
|
*
|
2015-05-11 16:15:47 +08:00
|
|
|
* 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.
|
2008-07-29 00:44:17 +08:00
|
|
|
*/
|
2009-12-09 14:30:50 +08:00
|
|
|
|
2015-10-20 17:54:46 +08:00
|
|
|
#define pr_fmt(fmt) "microcode: " fmt
|
2009-12-09 14:30:50 +08:00
|
|
|
|
2009-03-11 18:19:46 +08:00
|
|
|
#include <linux/platform_device.h>
|
2018-02-28 18:28:46 +08:00
|
|
|
#include <linux/stop_machine.h>
|
2015-10-20 17:54:45 +08:00
|
|
|
#include <linux/syscore_ops.h>
|
2009-03-11 18:19:46 +08:00
|
|
|
#include <linux/miscdevice.h>
|
2009-05-12 05:48:27 +08:00
|
|
|
#include <linux/capability.h>
|
2015-10-20 17:54:45 +08:00
|
|
|
#include <linux/firmware.h>
|
2009-03-11 18:19:46 +08:00
|
|
|
#include <linux/kernel.h>
|
2018-02-28 18:28:46 +08:00
|
|
|
#include <linux/delay.h>
|
2008-07-29 00:44:17 +08:00
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/cpu.h>
|
2018-02-28 18:28:46 +08:00
|
|
|
#include <linux/nmi.h>
|
2009-03-11 18:19:46 +08:00
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/mm.h>
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2015-10-20 17:54:45 +08:00
|
|
|
#include <asm/microcode_intel.h>
|
2012-01-26 07:09:13 +08:00
|
|
|
#include <asm/cpu_device_id.h>
|
2015-10-20 17:54:45 +08:00
|
|
|
#include <asm/microcode_amd.h>
|
2012-06-08 20:50:50 +08:00
|
|
|
#include <asm/perf_event.h>
|
2015-10-20 17:54:45 +08:00
|
|
|
#include <asm/microcode.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/cmdline.h>
|
2016-10-25 17:55:21 +08:00
|
|
|
#include <asm/setup.h>
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2016-10-25 17:55:22 +08:00
|
|
|
#define DRIVER_VERSION "2.2"
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2009-03-11 18:19:46 +08:00
|
|
|
static struct microcode_ops *microcode_ops;
|
2016-12-19 00:44:13 +08:00
|
|
|
static bool dis_ucode_ldr = true;
|
2015-10-20 17:54:46 +08:00
|
|
|
|
2017-01-26 04:00:48 +08:00
|
|
|
bool initrd_gone;
|
|
|
|
|
2016-10-25 17:55:15 +08:00
|
|
|
LIST_HEAD(microcode_cache);
|
|
|
|
|
2009-05-12 05:48:27 +08: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-20 06:22:26 +08:00
|
|
|
static DEFINE_MUTEX(microcode_mutex);
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2018-02-28 18:28:46 +08:00
|
|
|
/*
|
|
|
|
* Serialize late loading so that CPUs get updated one-by-one.
|
|
|
|
*/
|
2018-05-24 23:44:20 +08:00
|
|
|
static DEFINE_RAW_SPINLOCK(update_lock);
|
2018-02-28 18:28:46 +08:00
|
|
|
|
2009-03-11 18:19:46 +08:00
|
|
|
struct ucode_cpu_info ucode_cpu_info[NR_CPUS];
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
struct cpu_info_ctx {
|
|
|
|
struct cpu_signature *cpu_sig;
|
|
|
|
int err;
|
|
|
|
};
|
|
|
|
|
2017-01-21 04:29:51 +08:00
|
|
|
/*
|
|
|
|
* Those patch levels cannot be updated to newer ones and thus should be final.
|
|
|
|
*/
|
|
|
|
static u32 final_levels[] = {
|
|
|
|
0x01000098,
|
|
|
|
0x0100009f,
|
|
|
|
0x010000af,
|
|
|
|
0, /* T-101 terminator */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check the current patch level on this CPU.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* - true: if update should stop
|
|
|
|
* - false: otherwise
|
|
|
|
*/
|
|
|
|
static bool amd_check_current_patch_level(void)
|
|
|
|
{
|
|
|
|
u32 lvl, dummy, i;
|
|
|
|
u32 *levels;
|
|
|
|
|
|
|
|
native_rdmsr(MSR_AMD64_PATCH_LEVEL, lvl, dummy);
|
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_X86_32))
|
|
|
|
levels = (u32 *)__pa_nodebug(&final_levels);
|
|
|
|
else
|
|
|
|
levels = final_levels;
|
|
|
|
|
|
|
|
for (i = 0; levels[i]; i++) {
|
|
|
|
if (lvl == levels[i])
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-20 17:54:45 +08:00
|
|
|
static bool __init check_loader_disabled_bsp(void)
|
|
|
|
{
|
2016-02-03 19:33:31 +08:00
|
|
|
static const char *__dis_opt_str = "dis_ucode_ldr";
|
|
|
|
|
2015-10-20 17:54:45 +08:00
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
const char *cmdline = (const char *)__pa_nodebug(boot_command_line);
|
2016-02-03 19:33:31 +08:00
|
|
|
const char *option = (const char *)__pa_nodebug(__dis_opt_str);
|
2015-10-20 17:54:45 +08:00
|
|
|
bool *res = (bool *)__pa_nodebug(&dis_ucode_ldr);
|
|
|
|
|
|
|
|
#else /* CONFIG_X86_64 */
|
|
|
|
const char *cmdline = boot_command_line;
|
2016-02-03 19:33:31 +08:00
|
|
|
const char *option = __dis_opt_str;
|
2015-10-20 17:54:45 +08:00
|
|
|
bool *res = &dis_ucode_ldr;
|
|
|
|
#endif
|
|
|
|
|
2016-12-19 00:44:13 +08:00
|
|
|
/*
|
|
|
|
* CPUID(1).ECX[31]: reserved for hypervisor use. This is still not
|
|
|
|
* completely accurate as xen pv guests don't see that CPUID bit set but
|
|
|
|
* that's good enough as they don't land on the BSP path anyway.
|
|
|
|
*/
|
2017-01-21 04:29:47 +08:00
|
|
|
if (native_cpuid_ecx(1) & BIT(31))
|
2016-12-19 00:44:13 +08:00
|
|
|
return *res;
|
|
|
|
|
2017-01-21 04:29:51 +08:00
|
|
|
if (x86_cpuid_vendor() == X86_VENDOR_AMD) {
|
|
|
|
if (amd_check_current_patch_level())
|
|
|
|
return *res;
|
|
|
|
}
|
|
|
|
|
2016-12-19 00:44:13 +08:00
|
|
|
if (cmdline_find_option_bool(cmdline, option) <= 0)
|
|
|
|
*res = false;
|
2015-10-20 17:54:45 +08:00
|
|
|
|
|
|
|
return *res;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern struct builtin_fw __start_builtin_fw[];
|
|
|
|
extern struct builtin_fw __end_builtin_fw[];
|
|
|
|
|
|
|
|
bool get_builtin_firmware(struct cpio_data *cd, const char *name)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_FW_LOADER
|
|
|
|
struct builtin_fw *b_fw;
|
|
|
|
|
|
|
|
for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
|
|
|
|
if (!strcmp(name, b_fw->name)) {
|
|
|
|
cd->size = b_fw->size;
|
|
|
|
cd->data = b_fw->data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init load_ucode_bsp(void)
|
|
|
|
{
|
2017-01-21 04:29:50 +08:00
|
|
|
unsigned int cpuid_1_eax;
|
2017-10-12 19:23:16 +08:00
|
|
|
bool intel = true;
|
2015-10-20 17:54:45 +08:00
|
|
|
|
2017-10-12 19:23:16 +08:00
|
|
|
if (!have_cpuid_p())
|
2015-10-20 17:54:45 +08:00
|
|
|
return;
|
|
|
|
|
2017-01-21 04:29:47 +08:00
|
|
|
cpuid_1_eax = native_cpuid_eax(1);
|
2015-10-20 17:54:45 +08:00
|
|
|
|
2017-01-21 04:29:50 +08:00
|
|
|
switch (x86_cpuid_vendor()) {
|
2015-10-20 17:54:45 +08:00
|
|
|
case X86_VENDOR_INTEL:
|
2017-10-12 19:23:16 +08:00
|
|
|
if (x86_family(cpuid_1_eax) < 6)
|
|
|
|
return;
|
2015-10-20 17:54:45 +08:00
|
|
|
break;
|
2017-10-12 19:23:16 +08:00
|
|
|
|
2015-10-20 17:54:45 +08:00
|
|
|
case X86_VENDOR_AMD:
|
2017-10-12 19:23:16 +08:00
|
|
|
if (x86_family(cpuid_1_eax) < 0x10)
|
|
|
|
return;
|
|
|
|
intel = false;
|
2015-10-20 17:54:45 +08:00
|
|
|
break;
|
2017-10-12 19:23:16 +08:00
|
|
|
|
2015-10-20 17:54:45 +08:00
|
|
|
default:
|
2017-10-12 19:23:16 +08:00
|
|
|
return;
|
2015-10-20 17:54:45 +08:00
|
|
|
}
|
2017-10-12 19:23:16 +08:00
|
|
|
|
|
|
|
if (check_loader_disabled_bsp())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (intel)
|
|
|
|
load_ucode_intel_bsp();
|
|
|
|
else
|
|
|
|
load_ucode_amd_bsp(cpuid_1_eax);
|
2015-10-20 17:54:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool check_loader_disabled_ap(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
return *((bool *)__pa_nodebug(&dis_ucode_ldr));
|
|
|
|
#else
|
|
|
|
return dis_ucode_ldr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void load_ucode_ap(void)
|
|
|
|
{
|
2017-01-21 04:29:50 +08:00
|
|
|
unsigned int cpuid_1_eax;
|
2015-10-20 17:54:45 +08:00
|
|
|
|
|
|
|
if (check_loader_disabled_ap())
|
|
|
|
return;
|
|
|
|
|
2017-01-21 04:29:47 +08:00
|
|
|
cpuid_1_eax = native_cpuid_eax(1);
|
2015-10-20 17:54:45 +08:00
|
|
|
|
2017-01-21 04:29:50 +08:00
|
|
|
switch (x86_cpuid_vendor()) {
|
2015-10-20 17:54:45 +08:00
|
|
|
case X86_VENDOR_INTEL:
|
2017-01-21 04:29:47 +08:00
|
|
|
if (x86_family(cpuid_1_eax) >= 6)
|
2015-10-20 17:54:45 +08:00
|
|
|
load_ucode_intel_ap();
|
|
|
|
break;
|
|
|
|
case X86_VENDOR_AMD:
|
2017-01-21 04:29:47 +08:00
|
|
|
if (x86_family(cpuid_1_eax) >= 0x10)
|
|
|
|
load_ucode_amd_ap(cpuid_1_eax);
|
2015-10-20 17:54:45 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-06 23:10:43 +08:00
|
|
|
static int __init save_microcode_in_initrd(void)
|
2015-10-20 17:54:45 +08:00
|
|
|
{
|
|
|
|
struct cpuinfo_x86 *c = &boot_cpu_data;
|
2017-01-26 04:00:48 +08:00
|
|
|
int ret = -EINVAL;
|
2015-10-20 17:54:45 +08:00
|
|
|
|
|
|
|
switch (c->x86_vendor) {
|
|
|
|
case X86_VENDOR_INTEL:
|
|
|
|
if (c->x86 >= 6)
|
2017-01-26 04:00:48 +08:00
|
|
|
ret = save_microcode_in_initrd_intel();
|
2015-10-20 17:54:45 +08:00
|
|
|
break;
|
|
|
|
case X86_VENDOR_AMD:
|
|
|
|
if (c->x86 >= 0x10)
|
2018-01-23 18:41:33 +08:00
|
|
|
ret = save_microcode_in_initrd_amd(cpuid_eax(1));
|
2015-10-20 17:54:45 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-01-26 04:00:48 +08:00
|
|
|
initrd_gone = true;
|
|
|
|
|
|
|
|
return ret;
|
2015-10-20 17:54:45 +08:00
|
|
|
}
|
|
|
|
|
2016-10-25 17:55:21 +08:00
|
|
|
struct cpio_data find_microcode_in_initrd(const char *path, bool use_pa)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
|
|
unsigned long start = 0;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
struct boot_params *params;
|
|
|
|
|
|
|
|
if (use_pa)
|
|
|
|
params = (struct boot_params *)__pa_nodebug(&boot_params);
|
|
|
|
else
|
|
|
|
params = &boot_params;
|
|
|
|
|
|
|
|
size = params->hdr.ramdisk_size;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set start only if we have an initrd image. We cannot use initrd_start
|
|
|
|
* because it is not set that early yet.
|
|
|
|
*/
|
|
|
|
if (size)
|
|
|
|
start = params->hdr.ramdisk_image;
|
|
|
|
|
|
|
|
# else /* CONFIG_X86_64 */
|
|
|
|
size = (unsigned long)boot_params.ext_ramdisk_size << 32;
|
|
|
|
size |= boot_params.hdr.ramdisk_size;
|
|
|
|
|
|
|
|
if (size) {
|
|
|
|
start = (unsigned long)boot_params.ext_ramdisk_image << 32;
|
|
|
|
start |= boot_params.hdr.ramdisk_image;
|
|
|
|
|
|
|
|
start += PAGE_OFFSET;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/*
|
2016-12-20 18:54:30 +08:00
|
|
|
* Fixup the start address: after reserve_initrd() runs, initrd_start
|
|
|
|
* has the virtual address of the beginning of the initrd. It also
|
|
|
|
* possibly relocates the ramdisk. In either case, initrd_start contains
|
|
|
|
* the updated address so use that instead.
|
2017-01-26 04:00:48 +08:00
|
|
|
*
|
|
|
|
* initrd_gone is for the hotplug case where we've thrown out initrd
|
|
|
|
* already.
|
2016-10-25 17:55:21 +08:00
|
|
|
*/
|
2017-01-26 04:00:48 +08:00
|
|
|
if (!use_pa) {
|
|
|
|
if (initrd_gone)
|
|
|
|
return (struct cpio_data){ NULL, 0, "" };
|
|
|
|
if (initrd_start)
|
|
|
|
start = initrd_start;
|
2017-06-14 22:06:25 +08:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* The picture with physical addresses is a bit different: we
|
|
|
|
* need to get the *physical* address to which the ramdisk was
|
|
|
|
* relocated, i.e., relocated_ramdisk (not initrd_start) and
|
|
|
|
* since we're running from physical addresses, we need to access
|
|
|
|
* relocated_ramdisk through its *physical* address too.
|
|
|
|
*/
|
|
|
|
u64 *rr = (u64 *)__pa_nodebug(&relocated_ramdisk);
|
|
|
|
if (*rr)
|
|
|
|
start = *rr;
|
2017-01-26 04:00:48 +08:00
|
|
|
}
|
2016-10-25 17:55:21 +08:00
|
|
|
|
|
|
|
return find_cpio_data(path, (void *)start, size, NULL);
|
|
|
|
#else /* !CONFIG_BLK_DEV_INITRD */
|
|
|
|
return (struct cpio_data){ NULL, 0, "" };
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-10-20 17:54:45 +08:00
|
|
|
void reload_early_microcode(void)
|
|
|
|
{
|
|
|
|
int vendor, family;
|
|
|
|
|
2015-11-23 18:12:21 +08:00
|
|
|
vendor = x86_cpuid_vendor();
|
|
|
|
family = x86_cpuid_family();
|
2015-10-20 17:54:45 +08:00
|
|
|
|
|
|
|
switch (vendor) {
|
|
|
|
case X86_VENDOR_INTEL:
|
|
|
|
if (family >= 6)
|
|
|
|
reload_ucode_intel();
|
|
|
|
break;
|
|
|
|
case X86_VENDOR_AMD:
|
|
|
|
if (family >= 0x10)
|
|
|
|
reload_ucode_amd();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apply_microcode_local(void *arg)
|
|
|
|
{
|
2018-02-28 18:28:40 +08:00
|
|
|
enum ucode_state *err = arg;
|
2009-05-12 05:48:27 +08:00
|
|
|
|
2018-02-28 18:28:40 +08:00
|
|
|
*err = microcode_ops->apply_microcode(smp_processor_id());
|
2009-05-12 05:48:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int apply_microcode_on_target(int cpu)
|
|
|
|
{
|
2018-02-28 18:28:40 +08:00
|
|
|
enum ucode_state err;
|
2009-05-12 05:48:27 +08:00
|
|
|
int ret;
|
|
|
|
|
2018-02-28 18:28:40 +08:00
|
|
|
ret = smp_call_function_single(cpu, apply_microcode_local, &err, 1);
|
|
|
|
if (!ret) {
|
|
|
|
if (err == UCODE_ERROR)
|
|
|
|
ret = 1;
|
|
|
|
}
|
2009-05-12 05:48:27 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-07-29 00:44:17 +08:00
|
|
|
#ifdef CONFIG_MICROCODE_OLD_INTERFACE
|
2008-09-12 05:27:52 +08:00
|
|
|
static int do_microcode_update(const void __user *buf, size_t size)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
int cpu;
|
2009-04-15 02:25:42 +08:00
|
|
|
|
2008-09-12 05:27:52 +08:00
|
|
|
for_each_online_cpu(cpu) {
|
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
2009-05-12 05:48:27 +08:00
|
|
|
enum ucode_state ustate;
|
2008-09-12 05:27:52 +08:00
|
|
|
|
|
|
|
if (!uci->valid)
|
|
|
|
continue;
|
2009-04-15 02:25:42 +08:00
|
|
|
|
2009-05-12 05:48:27 +08: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-29 00:44:17 +08:00
|
|
|
}
|
2009-05-12 05:48:27 +08:00
|
|
|
|
2008-07-29 00:44:17 +08:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2010-04-10 22:46:21 +08:00
|
|
|
static int microcode_open(struct inode *inode, struct file *file)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
2010-04-10 22:46:21 +08:00
|
|
|
return capable(CAP_SYS_RAWIO) ? nonseekable_open(inode, file) : -EPERM;
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
2008-08-01 18:46:45 +08:00
|
|
|
static ssize_t microcode_write(struct file *file, const char __user *buf,
|
|
|
|
size_t len, loff_t *ppos)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
2009-05-12 05:48:27 +08:00
|
|
|
ssize_t ret = -EINVAL;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2009-09-22 08:03:05 +08:00
|
|
|
if ((len >> PAGE_SHIFT) > totalram_pages) {
|
2009-12-09 14:30:50 +08:00
|
|
|
pr_err("too much data (max %ld pages)\n", totalram_pages);
|
2009-05-12 05:48:27 +08:00
|
|
|
return ret;
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
get_online_cpus();
|
|
|
|
mutex_lock(µcode_mutex);
|
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
if (do_microcode_update(buf, len) == 0)
|
2008-07-29 00:44:17 +08:00
|
|
|
ret = (ssize_t)len;
|
|
|
|
|
2012-08-24 21:34:34 +08:00
|
|
|
if (ret > 0)
|
|
|
|
perf_check_microcode();
|
|
|
|
|
2008-07-29 00:44:17 +08:00
|
|
|
mutex_unlock(µcode_mutex);
|
|
|
|
put_online_cpus();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations microcode_fops = {
|
2009-05-12 05:48:27 +08: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-16 00:52:59 +08:00
|
|
|
.llseek = no_llseek,
|
2008-07-29 00:44:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct miscdevice microcode_dev = {
|
2009-05-12 05:48:27 +08:00
|
|
|
.minor = MICROCODE_MINOR,
|
|
|
|
.name = "microcode",
|
2009-09-19 05:01:12 +08:00
|
|
|
.nodename = "cpu/microcode",
|
2009-05-12 05:48:27 +08:00
|
|
|
.fops = µcode_fops,
|
2008-07-29 00:44:17 +08:00
|
|
|
};
|
|
|
|
|
2008-08-01 18:46:45 +08:00
|
|
|
static int __init microcode_dev_init(void)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
error = misc_register(µcode_dev);
|
|
|
|
if (error) {
|
2009-12-09 14:30:50 +08:00
|
|
|
pr_err("can't misc_register on minor=%d\n", MICROCODE_MINOR);
|
2008-07-29 00:44:17 +08:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-07 20:35:32 +08:00
|
|
|
static void __exit microcode_dev_exit(void)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
|
|
|
misc_deregister(µcode_dev);
|
|
|
|
}
|
|
|
|
#else
|
2009-03-11 18:19:46 +08:00
|
|
|
#define microcode_dev_init() 0
|
|
|
|
#define microcode_dev_exit() do { } while (0)
|
2008-07-29 00:44:17 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* fake device for request_firmware */
|
2009-03-11 18:19:46 +08:00
|
|
|
static struct platform_device *microcode_pdev;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2018-02-28 18:28:46 +08:00
|
|
|
/*
|
|
|
|
* Late loading dance. Why the heavy-handed stomp_machine effort?
|
|
|
|
*
|
|
|
|
* - HT siblings must be idle and not execute other code while the other sibling
|
|
|
|
* is loading microcode in order to avoid any negative interactions caused by
|
|
|
|
* the loading.
|
|
|
|
*
|
|
|
|
* - In addition, microcode update on the cores must be serialized until this
|
|
|
|
* requirement can be relaxed in the future. Right now, this is conservative
|
|
|
|
* and good.
|
|
|
|
*/
|
|
|
|
#define SPINUNIT 100 /* 100 nsec */
|
|
|
|
|
2018-02-28 18:28:43 +08:00
|
|
|
static int check_online_cpus(void)
|
|
|
|
{
|
|
|
|
if (num_online_cpus() == num_present_cpus())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pr_err("Not all CPUs online, aborting microcode update.\n");
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2018-03-15 02:36:15 +08:00
|
|
|
static atomic_t late_cpus_in;
|
|
|
|
static atomic_t late_cpus_out;
|
|
|
|
|
|
|
|
static int __wait_for_cpus(atomic_t *t, long long timeout)
|
|
|
|
{
|
|
|
|
int all_cpus = num_online_cpus();
|
|
|
|
|
|
|
|
atomic_inc(t);
|
|
|
|
|
|
|
|
while (atomic_read(t) < all_cpus) {
|
|
|
|
if (timeout < SPINUNIT) {
|
|
|
|
pr_err("Timeout while waiting for CPUs rendezvous, remaining: %d\n",
|
|
|
|
all_cpus - atomic_read(t));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ndelay(SPINUNIT);
|
|
|
|
timeout -= SPINUNIT;
|
|
|
|
|
|
|
|
touch_nmi_watchdog();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-28 18:28:46 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns:
|
|
|
|
* < 0 - on error
|
|
|
|
* 0 - no update done
|
|
|
|
* 1 - microcode was updated
|
|
|
|
*/
|
|
|
|
static int __reload_late(void *info)
|
2009-03-11 14:02:36 +08:00
|
|
|
{
|
2018-02-28 18:28:46 +08:00
|
|
|
int cpu = smp_processor_id();
|
|
|
|
enum ucode_state err;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Wait for all CPUs to arrive. A load will not be attempted unless all
|
|
|
|
* CPUs show up.
|
|
|
|
* */
|
2018-03-15 02:36:15 +08:00
|
|
|
if (__wait_for_cpus(&late_cpus_in, NSEC_PER_SEC))
|
|
|
|
return -1;
|
2018-02-28 18:28:46 +08:00
|
|
|
|
2018-05-24 23:44:20 +08:00
|
|
|
raw_spin_lock(&update_lock);
|
2018-02-28 18:28:46 +08:00
|
|
|
apply_microcode_local(&err);
|
2018-05-24 23:44:20 +08:00
|
|
|
raw_spin_unlock(&update_lock);
|
2018-02-28 18:28:46 +08:00
|
|
|
|
2018-04-21 16:19:30 +08:00
|
|
|
/* siblings return UCODE_OK because their engine got updated already */
|
2018-02-28 18:28:46 +08:00
|
|
|
if (err > UCODE_NFOUND) {
|
|
|
|
pr_warn("Error reloading microcode on CPU %d\n", cpu);
|
2018-04-21 16:19:30 +08:00
|
|
|
ret = -1;
|
2018-03-15 02:36:15 +08:00
|
|
|
} else if (err == UCODE_UPDATED || err == UCODE_OK) {
|
2018-02-28 18:28:46 +08:00
|
|
|
ret = 1;
|
|
|
|
}
|
2009-03-11 14:02:36 +08:00
|
|
|
|
2018-03-15 02:36:15 +08:00
|
|
|
/*
|
|
|
|
* Increase the wait timeout to a safe value here since we're
|
|
|
|
* serializing the microcode update and that could take a while on a
|
|
|
|
* large number of CPUs. And that is fine as the *actual* timeout will
|
|
|
|
* be determined by the last CPU finished updating and thus cut short.
|
|
|
|
*/
|
|
|
|
if (__wait_for_cpus(&late_cpus_out, NSEC_PER_SEC * num_online_cpus()))
|
|
|
|
panic("Timeout during microcode update!\n");
|
2018-02-28 18:28:46 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reload microcode late on all CPUs. Wait for a sec until they
|
|
|
|
* all gather together.
|
|
|
|
*/
|
|
|
|
static int microcode_reload_late(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2018-03-15 02:36:15 +08:00
|
|
|
atomic_set(&late_cpus_in, 0);
|
|
|
|
atomic_set(&late_cpus_out, 0);
|
2018-02-28 18:28:46 +08:00
|
|
|
|
|
|
|
ret = stop_machine_cpuslocked(__reload_late, NULL, cpu_online_mask);
|
2018-03-15 02:36:15 +08:00
|
|
|
if (ret > 0)
|
2018-02-28 18:28:46 +08:00
|
|
|
microcode_check();
|
|
|
|
|
|
|
|
return ret;
|
2009-03-11 14:02:36 +08:00
|
|
|
}
|
|
|
|
|
2011-12-22 06:29:42 +08:00
|
|
|
static ssize_t reload_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
2009-05-12 05:48:27 +08:00
|
|
|
const char *buf, size_t size)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
2018-02-16 19:26:38 +08:00
|
|
|
enum ucode_state tmp_ret = UCODE_OK;
|
2018-02-28 18:28:46 +08:00
|
|
|
int bsp = boot_cpu_data.cpu_index;
|
2009-05-12 05:48:27 +08:00
|
|
|
unsigned long val;
|
2018-02-16 19:26:38 +08:00
|
|
|
ssize_t ret = 0;
|
2012-06-21 20:07:16 +08:00
|
|
|
|
2012-05-07 01:11:04 +08:00
|
|
|
ret = kstrtoul(buf, 0, &val);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-05-12 05:48:27 +08:00
|
|
|
|
2012-06-21 20:07:16 +08:00
|
|
|
if (val != 1)
|
|
|
|
return size;
|
|
|
|
|
2018-02-28 18:28:45 +08:00
|
|
|
tmp_ret = microcode_ops->request_microcode_fw(bsp, µcode_pdev->dev, true);
|
2018-03-15 02:36:14 +08:00
|
|
|
if (tmp_ret != UCODE_NEW)
|
2018-02-28 18:28:45 +08:00
|
|
|
return size;
|
|
|
|
|
2012-06-21 20:07:16 +08:00
|
|
|
get_online_cpus();
|
2018-02-28 18:28:43 +08:00
|
|
|
|
|
|
|
ret = check_online_cpus();
|
|
|
|
if (ret)
|
|
|
|
goto put;
|
|
|
|
|
2012-06-08 20:50:50 +08:00
|
|
|
mutex_lock(µcode_mutex);
|
2018-02-28 18:28:46 +08:00
|
|
|
ret = microcode_reload_late();
|
2012-06-08 20:50:50 +08:00
|
|
|
mutex_unlock(µcode_mutex);
|
2018-02-28 18:28:43 +08:00
|
|
|
|
|
|
|
put:
|
2012-06-21 20:07:16 +08:00
|
|
|
put_online_cpus();
|
2009-05-12 05:48:27 +08:00
|
|
|
|
2018-02-28 18:28:46 +08:00
|
|
|
if (ret >= 0)
|
2009-05-12 05:48:27 +08:00
|
|
|
ret = size;
|
|
|
|
|
|
|
|
return ret;
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
2011-12-22 06:29:42 +08:00
|
|
|
static ssize_t version_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
|
|
|
|
|
2008-08-20 06:22:26 +08:00
|
|
|
return sprintf(buf, "0x%x\n", uci->cpu_sig.rev);
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
2011-12-22 06:29:42 +08:00
|
|
|
static ssize_t pf_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + dev->id;
|
|
|
|
|
2008-08-20 06:22:26 +08:00
|
|
|
return sprintf(buf, "0x%x\n", uci->cpu_sig.pf);
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
2017-12-20 02:15:09 +08:00
|
|
|
static DEVICE_ATTR_WO(reload);
|
2011-12-22 06:29:42 +08:00
|
|
|
static DEVICE_ATTR(version, 0400, version_show, NULL);
|
|
|
|
static DEVICE_ATTR(processor_flags, 0400, pf_show, NULL);
|
2008-07-29 00:44:17 +08:00
|
|
|
|
|
|
|
static struct attribute *mc_default_attrs[] = {
|
2011-12-22 06:29:42 +08:00
|
|
|
&dev_attr_version.attr,
|
|
|
|
&dev_attr_processor_flags.attr,
|
2008-07-29 00:44:17 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2017-07-20 19:30:32 +08:00
|
|
|
static const struct attribute_group mc_attr_group = {
|
2009-05-12 05:48:27 +08:00
|
|
|
.attrs = mc_default_attrs,
|
|
|
|
.name = "microcode",
|
2008-07-29 00:44:17 +08:00
|
|
|
};
|
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
static void microcode_fini_cpu(int cpu)
|
2008-08-20 06:22:26 +08:00
|
|
|
{
|
2016-10-25 17:55:21 +08:00
|
|
|
if (microcode_ops->microcode_fini_cpu)
|
|
|
|
microcode_ops->microcode_fini_cpu(cpu);
|
2008-12-20 07:15:24 +08:00
|
|
|
}
|
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
static enum ucode_state microcode_resume_cpu(int cpu)
|
2008-08-20 06:22:26 +08:00
|
|
|
{
|
2012-08-03 21:26:50 +08:00
|
|
|
if (apply_microcode_on_target(cpu))
|
|
|
|
return UCODE_ERROR;
|
2009-05-12 05:48:27 +08:00
|
|
|
|
2016-10-25 17:55:17 +08:00
|
|
|
pr_debug("CPU%d updated upon resume\n", cpu);
|
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
return UCODE_OK;
|
2008-08-20 06:22:26 +08:00
|
|
|
}
|
|
|
|
|
2012-07-26 21:51:00 +08:00
|
|
|
static enum ucode_state microcode_init_cpu(int cpu, bool refresh_fw)
|
2008-08-20 06:22:26 +08:00
|
|
|
{
|
2009-05-12 05:48:27 +08:00
|
|
|
enum ucode_state ustate;
|
2012-12-21 15:44:22 +08:00
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
|
|
|
|
2016-02-03 19:33:32 +08:00
|
|
|
if (uci->valid)
|
2012-12-21 15:44:22 +08:00
|
|
|
return UCODE_OK;
|
2008-08-20 06:22:26 +08:00
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
if (collect_cpu_info(cpu))
|
|
|
|
return UCODE_ERROR;
|
2008-08-20 06:22:26 +08:00
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
/* --dimm. Trigger a delayed update? */
|
|
|
|
if (system_state != SYSTEM_RUNNING)
|
|
|
|
return UCODE_NFOUND;
|
2008-08-20 06:22:26 +08:00
|
|
|
|
2018-03-15 02:36:14 +08:00
|
|
|
ustate = microcode_ops->request_microcode_fw(cpu, µcode_pdev->dev, refresh_fw);
|
|
|
|
if (ustate == UCODE_NEW) {
|
2009-12-09 14:30:50 +08:00
|
|
|
pr_debug("CPU%d updated upon init\n", cpu);
|
2009-05-12 05:48:27 +08:00
|
|
|
apply_microcode_on_target(cpu);
|
2008-08-20 06:22:26 +08:00
|
|
|
}
|
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
return ustate;
|
2008-08-20 06:22:26 +08:00
|
|
|
}
|
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
static enum ucode_state microcode_update_cpu(int cpu)
|
2008-08-20 06:22:26 +08:00
|
|
|
{
|
2009-05-12 05:48:27 +08:00
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
2008-08-20 06:22:26 +08:00
|
|
|
|
2016-10-25 17:55:18 +08:00
|
|
|
/* Refresh CPU microcode revision after resume. */
|
|
|
|
collect_cpu_info(cpu);
|
|
|
|
|
2009-12-24 07:04:53 +08:00
|
|
|
if (uci->valid)
|
2012-08-03 21:26:50 +08:00
|
|
|
return microcode_resume_cpu(cpu);
|
2008-08-20 06:22:26 +08:00
|
|
|
|
2012-07-26 21:51:00 +08:00
|
|
|
return microcode_init_cpu(cpu, false);
|
2008-08-20 06:22:26 +08:00
|
|
|
}
|
|
|
|
|
2011-12-22 06:29:42 +08:00
|
|
|
static int mc_device_add(struct device *dev, struct subsys_interface *sif)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
2011-12-22 06:29:42 +08:00
|
|
|
int err, cpu = dev->id;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
|
|
|
if (!cpu_online(cpu))
|
|
|
|
return 0;
|
|
|
|
|
2009-12-09 14:30:50 +08:00
|
|
|
pr_debug("CPU%d added\n", cpu);
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2011-12-22 06:29:42 +08:00
|
|
|
err = sysfs_create_group(&dev->kobj, &mc_attr_group);
|
2008-07-29 00:44:17 +08:00
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2012-07-26 21:51:00 +08:00
|
|
|
if (microcode_init_cpu(cpu, true) == UCODE_ERROR)
|
2011-01-06 23:56:51 +08:00
|
|
|
return -EINVAL;
|
2009-03-11 14:02:36 +08:00
|
|
|
|
|
|
|
return err;
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
2015-07-30 17:34:01 +08:00
|
|
|
static void mc_device_remove(struct device *dev, struct subsys_interface *sif)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
2011-12-22 06:29:42 +08:00
|
|
|
int cpu = dev->id;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
|
|
|
if (!cpu_online(cpu))
|
2015-07-30 17:34:01 +08:00
|
|
|
return;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2009-12-09 14:30:50 +08:00
|
|
|
pr_debug("CPU%d removed\n", cpu);
|
2008-08-20 06:22:26 +08:00
|
|
|
microcode_fini_cpu(cpu);
|
2011-12-22 06:29:42 +08:00
|
|
|
sysfs_remove_group(&dev->kobj, &mc_attr_group);
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
2011-12-22 06:29:42 +08: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-24 05:15:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* mc_bp_resume - Update boot CPU microcode during resume.
|
|
|
|
*/
|
|
|
|
static void mc_bp_resume(void)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
2011-03-24 05:15:54 +08:00
|
|
|
int cpu = smp_processor_id();
|
2009-05-12 05:48:27 +08:00
|
|
|
struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2009-05-12 05:48:27 +08:00
|
|
|
if (uci->valid && uci->mc)
|
|
|
|
microcode_ops->apply_microcode(cpu);
|
2014-11-18 17:46:57 +08:00
|
|
|
else if (!uci->mc)
|
2014-12-04 00:21:41 +08:00
|
|
|
reload_early_microcode();
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
2011-03-24 05:15:54 +08:00
|
|
|
static struct syscore_ops mc_syscore_ops = {
|
|
|
|
.resume = mc_bp_resume,
|
2008-07-29 00:44:17 +08:00
|
|
|
};
|
|
|
|
|
2016-09-08 00:45:23 +08:00
|
|
|
static int mc_cpu_online(unsigned int cpu)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
2011-12-22 06:29:42 +08:00
|
|
|
struct device *dev;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2011-12-22 06:29:42 +08:00
|
|
|
dev = get_cpu_device(cpu);
|
2016-09-08 00:45:23 +08:00
|
|
|
microcode_update_cpu(cpu);
|
|
|
|
pr_debug("CPU%d added\n", cpu);
|
2012-07-24 02:15:10 +08:00
|
|
|
|
2016-09-08 00:45:23 +08:00
|
|
|
if (sysfs_create_group(&dev->kobj, &mc_attr_group))
|
|
|
|
pr_err("Failed to create group for CPU%d\n", cpu);
|
|
|
|
return 0;
|
|
|
|
}
|
2012-07-24 02:15:10 +08:00
|
|
|
|
2016-09-08 00:45:23 +08:00
|
|
|
static int mc_cpu_down_prep(unsigned int cpu)
|
|
|
|
{
|
|
|
|
struct device *dev;
|
2011-10-10 03:42:00 +08:00
|
|
|
|
2016-09-08 00:45:23 +08:00
|
|
|
dev = get_cpu_device(cpu);
|
|
|
|
/* Suspend is in progress, only remove the interface */
|
|
|
|
sysfs_remove_group(&dev->kobj, &mc_attr_group);
|
|
|
|
pr_debug("CPU%d removed\n", cpu);
|
2016-10-25 17:55:21 +08:00
|
|
|
|
2016-09-08 00:45:23 +08:00
|
|
|
return 0;
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
|
|
|
|
2012-06-21 20:07:17 +08:00
|
|
|
static struct attribute *cpu_root_microcode_attrs[] = {
|
|
|
|
&dev_attr_reload.attr,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2017-07-20 19:30:32 +08:00
|
|
|
static const struct attribute_group cpu_root_microcode_group = {
|
2012-06-21 20:07:17 +08:00
|
|
|
.name = "microcode",
|
|
|
|
.attrs = cpu_root_microcode_attrs,
|
|
|
|
};
|
|
|
|
|
2015-10-20 17:54:44 +08:00
|
|
|
int __init microcode_init(void)
|
2008-07-29 00:44:17 +08:00
|
|
|
{
|
2015-10-20 17:54:44 +08:00
|
|
|
struct cpuinfo_x86 *c = &boot_cpu_data;
|
2008-07-29 00:44:17 +08:00
|
|
|
int error;
|
|
|
|
|
2016-02-16 16:43:19 +08:00
|
|
|
if (dis_ucode_ldr)
|
2015-01-28 10:21:09 +08:00
|
|
|
return -EINVAL;
|
2014-05-20 02:59:17 +08:00
|
|
|
|
2008-09-23 18:08:44 +08:00
|
|
|
if (c->x86_vendor == X86_VENDOR_INTEL)
|
|
|
|
microcode_ops = init_intel_microcode();
|
2008-09-24 17:50:35 +08:00
|
|
|
else if (c->x86_vendor == X86_VENDOR_AMD)
|
2008-09-23 18:08:44 +08:00
|
|
|
microcode_ops = init_amd_microcode();
|
2012-04-12 22:51:57 +08:00
|
|
|
else
|
2009-12-09 14:30:50 +08:00
|
|
|
pr_err("no support for this CPU vendor\n");
|
2012-04-12 22:51:57 +08:00
|
|
|
|
|
|
|
if (!microcode_ops)
|
2008-09-23 18:08:44 +08:00
|
|
|
return -ENODEV;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
|
|
|
microcode_pdev = platform_device_register_simple("microcode", -1,
|
|
|
|
NULL, 0);
|
2011-11-07 20:35:32 +08:00
|
|
|
if (IS_ERR(microcode_pdev))
|
2008-07-29 00:44:17 +08:00
|
|
|
return PTR_ERR(microcode_pdev);
|
|
|
|
|
|
|
|
get_online_cpus();
|
2009-05-12 05:48:27 +08:00
|
|
|
mutex_lock(µcode_mutex);
|
|
|
|
|
2011-12-22 06:29:42 +08:00
|
|
|
error = subsys_interface_register(&mc_cpu_interface);
|
2012-06-08 20:50:50 +08:00
|
|
|
if (!error)
|
|
|
|
perf_check_microcode();
|
2009-05-12 05:48:27 +08:00
|
|
|
mutex_unlock(µcode_mutex);
|
2008-07-29 00:44:17 +08:00
|
|
|
put_online_cpus();
|
2009-05-12 05:48:27 +08:00
|
|
|
|
2011-11-07 20:35:32 +08:00
|
|
|
if (error)
|
|
|
|
goto out_pdev;
|
2008-07-29 00:44:17 +08:00
|
|
|
|
2012-06-21 20:07:17 +08: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-12 05:48:27 +08:00
|
|
|
error = microcode_dev_init();
|
|
|
|
if (error)
|
2012-06-21 20:07:17 +08:00
|
|
|
goto out_ucode_group;
|
2009-05-12 05:48:27 +08:00
|
|
|
|
2011-03-24 05:15:54 +08:00
|
|
|
register_syscore_ops(&mc_syscore_ops);
|
2016-09-08 00:45:23 +08:00
|
|
|
cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "x86/microcode:online",
|
|
|
|
mc_cpu_online, mc_cpu_down_prep);
|
2008-07-29 00:44:21 +08:00
|
|
|
|
2016-10-25 17:55:22 +08:00
|
|
|
pr_info("Microcode Update Driver: v%s.", DRIVER_VERSION);
|
2008-07-29 00:44:21 +08:00
|
|
|
|
2008-07-29 00:44:17 +08:00
|
|
|
return 0;
|
2011-11-07 20:35:32 +08:00
|
|
|
|
2012-06-21 20:07:17 +08:00
|
|
|
out_ucode_group:
|
|
|
|
sysfs_remove_group(&cpu_subsys.dev_root->kobj,
|
|
|
|
&cpu_root_microcode_group);
|
|
|
|
|
|
|
|
out_driver:
|
2011-11-07 20:35:32 +08:00
|
|
|
get_online_cpus();
|
|
|
|
mutex_lock(µcode_mutex);
|
|
|
|
|
2012-01-07 03:42:52 +08:00
|
|
|
subsys_interface_unregister(&mc_cpu_interface);
|
2011-11-07 20:35:32 +08:00
|
|
|
|
|
|
|
mutex_unlock(µcode_mutex);
|
|
|
|
put_online_cpus();
|
|
|
|
|
2012-06-21 20:07:17 +08:00
|
|
|
out_pdev:
|
2011-11-07 20:35:32 +08:00
|
|
|
platform_device_unregister(microcode_pdev);
|
|
|
|
return error;
|
|
|
|
|
2008-07-29 00:44:17 +08:00
|
|
|
}
|
2016-06-06 23:10:43 +08:00
|
|
|
fs_initcall(save_microcode_in_initrd);
|
2015-11-20 19:24:00 +08:00
|
|
|
late_initcall(microcode_init);
|