2 * Copyright (c) 2014 Google, Inc
3 * Copyright (C) 2000 Ronald G. Minnich
5 * Microcode update for Intel PIII and later CPUs
7 * SPDX-License-Identifier: GPL-2.0
15 #include <asm/microcode.h>
17 #include <asm/msr-index.h>
18 #include <asm/processor.h>
20 DECLARE_GLOBAL_DATA_PTR;
23 * struct microcode_update - standard microcode header from Intel
25 * We read this information out of the device tree and use it to determine
26 * whether the update is applicable or not. We also use the same structure
27 * to read information from the CPU.
29 struct microcode_update {
33 uint processor_signature;
41 static int microcode_decode_node(const void *blob, int node,
42 struct microcode_update *update)
44 update->data = fdt_getprop(blob, node, "data", &update->size);
47 update->data += UCODE_HEADER_LEN;
48 update->size -= UCODE_HEADER_LEN;
50 update->header_version = fdtdec_get_int(blob, node,
51 "intel,header-version", 0);
52 update->update_revision = fdtdec_get_int(blob, node,
53 "intel,update-revision", 0);
54 update->date_code = fdtdec_get_int(blob, node,
55 "intel,date-code", 0);
56 update->processor_signature = fdtdec_get_int(blob, node,
57 "intel,processor-signature", 0);
58 update->checksum = fdtdec_get_int(blob, node, "intel,checksum", 0);
59 update->loader_revision = fdtdec_get_int(blob, node,
60 "intel,loader-revision", 0);
61 update->processor_flags = fdtdec_get_int(blob, node,
62 "intel,processor-flags", 0);
67 static inline uint32_t microcode_read_rev(void)
70 * Some Intel CPUs can be very finicky about the CPUID sequence used.
71 * So this is implemented in assembly so that it works reliably.
85 "=a" (low), "=d" (high)
87 "i" (MSR_IA32_UCODE_REV)
95 static void microcode_read_cpu(struct microcode_update *cpu)
97 /* CPUID sets MSR 0x8B iff a microcode update has been loaded. */
98 unsigned int x86_model, x86_family;
99 struct cpuid_result result;
102 wrmsr(MSR_IA32_UCODE_REV, 0, 0);
104 rdmsr(MSR_IA32_UCODE_REV, low, cpu->update_revision);
105 x86_model = (result.eax >> 4) & 0x0f;
106 x86_family = (result.eax >> 8) & 0x0f;
107 cpu->processor_signature = result.eax;
109 cpu->processor_flags = 0;
110 if ((x86_model >= 5) || (x86_family > 6)) {
111 rdmsr(0x17, low, high);
112 cpu->processor_flags = 1 << ((high >> 18) & 7);
114 debug("microcode: sig=%#x pf=%#x revision=%#x\n",
115 cpu->processor_signature, cpu->processor_flags,
116 cpu->update_revision);
119 /* Get a microcode update from the device tree and apply it */
120 int microcode_update_intel(void)
122 struct microcode_update cpu, update;
123 const void *blob = gd->fdt_blob;
130 microcode_read_cpu(&cpu);
135 node = fdtdec_next_compatible(blob, node,
136 COMPAT_INTEL_MICROCODE);
138 debug("%s: Found %d updates\n", __func__, count);
139 return count ? 0 : skipped ? -EEXIST : -ENOENT;
142 ret = microcode_decode_node(blob, node, &update);
144 debug("%s: Unable to decode update: %d\n", __func__,
148 if (!(update.processor_signature == cpu.processor_signature &&
149 (update.processor_flags & cpu.processor_flags))) {
150 debug("%s: Skipping non-matching update, sig=%x, pf=%x\n",
151 __func__, update.processor_signature,
152 update.processor_flags);
156 wrmsr(MSR_IA32_UCODE_WRITE, (ulong)update.data, 0);
157 rev = microcode_read_rev();
158 debug("microcode: updated to revision 0x%x date=%04x-%02x-%02x\n",
159 rev, update.date_code & 0xffff,
160 (update.date_code >> 24) & 0xff,
161 (update.date_code >> 16) & 0xff);
162 if (update.update_revision != rev) {
163 printf("Microcode update failed\n");