2 * Intel CPU microcode early update for Linux
4 * Copyright (C) 2012 Fenghua Yu <fenghua.yu@intel.com>
5 * H Peter Anvin" <hpa@zytor.com>
7 * This allows to early upgrade microcode on Intel processors
8 * belonging to IA-32 family - PentiumPro, Pentium II,
9 * Pentium III, Xeon, Pentium 4, etc.
11 * Reference: Section 9.11 of Volume 3, IA-32 Intel Architecture
12 * Software Developer's Manual.
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
21 * This needs to be before all headers so that pr_debug in printk.h doesn't turn
22 * printk calls into no_printk().
27 #include <linux/module.h>
29 #include <linux/slab.h>
30 #include <linux/earlycpio.h>
31 #include <linux/initrd.h>
32 #include <linux/cpu.h>
34 #include <asm/microcode_intel.h>
35 #include <asm/processor.h>
36 #include <asm/tlbflush.h>
37 #include <asm/setup.h>
40 #define pr_fmt(fmt) "microcode: " fmt
42 static unsigned long mc_saved_in_initrd
[MAX_UCODE_COUNT
];
43 static struct mc_saved_data
{
44 unsigned int mc_saved_count
;
45 struct microcode_intel
**mc_saved
;
48 static enum ucode_state
49 load_microcode_early(struct microcode_intel
**saved
,
50 unsigned int num_saved
, struct ucode_cpu_info
*uci
)
52 struct microcode_intel
*ucode_ptr
, *new_mc
= NULL
;
53 struct microcode_header_intel
*mc_hdr
;
56 new_rev
= uci
->cpu_sig
.rev
;
58 for (i
= 0; i
< num_saved
; i
++) {
60 mc_hdr
= (struct microcode_header_intel
*)ucode_ptr
;
62 ret
= get_matching_microcode(uci
->cpu_sig
.sig
,
69 new_rev
= mc_hdr
->rev
;
76 uci
->mc
= (struct microcode_intel
*)new_mc
;
81 copy_initrd_ptrs(struct microcode_intel
**mc_saved
, unsigned long *initrd
,
82 unsigned long off
, int num_saved
)
86 for (i
= 0; i
< num_saved
; i
++)
87 mc_saved
[i
] = (struct microcode_intel
*)(initrd
[i
] + off
);
92 microcode_phys(struct microcode_intel
**mc_saved_tmp
,
93 struct mc_saved_data
*mc_saved_data
)
96 struct microcode_intel
***mc_saved
;
98 mc_saved
= (struct microcode_intel
***)
99 __pa_nodebug(&mc_saved_data
->mc_saved
);
100 for (i
= 0; i
< mc_saved_data
->mc_saved_count
; i
++) {
101 struct microcode_intel
*p
;
103 p
= *(struct microcode_intel
**)
104 __pa_nodebug(mc_saved_data
->mc_saved
+ i
);
105 mc_saved_tmp
[i
] = (struct microcode_intel
*)__pa_nodebug(p
);
110 static enum ucode_state
111 load_microcode(struct mc_saved_data
*mc_saved_data
, unsigned long *initrd
,
112 unsigned long initrd_start
, struct ucode_cpu_info
*uci
)
114 struct microcode_intel
*mc_saved_tmp
[MAX_UCODE_COUNT
];
115 unsigned int count
= mc_saved_data
->mc_saved_count
;
117 if (!mc_saved_data
->mc_saved
) {
118 copy_initrd_ptrs(mc_saved_tmp
, initrd
, initrd_start
, count
);
120 return load_microcode_early(mc_saved_tmp
, count
, uci
);
123 microcode_phys(mc_saved_tmp
, mc_saved_data
);
124 return load_microcode_early(mc_saved_tmp
, count
, uci
);
126 return load_microcode_early(mc_saved_data
->mc_saved
,
133 * Given CPU signature and a microcode patch, this function finds if the
134 * microcode patch has matching family and model with the CPU.
136 static enum ucode_state
137 matching_model_microcode(struct microcode_header_intel
*mc_header
,
140 unsigned int fam
, model
;
141 unsigned int fam_ucode
, model_ucode
;
142 struct extended_sigtable
*ext_header
;
143 unsigned long total_size
= get_totalsize(mc_header
);
144 unsigned long data_size
= get_datasize(mc_header
);
146 struct extended_signature
*ext_sig
;
148 fam
= __x86_family(sig
);
149 model
= x86_model(sig
);
151 fam_ucode
= __x86_family(mc_header
->sig
);
152 model_ucode
= x86_model(mc_header
->sig
);
154 if (fam
== fam_ucode
&& model
== model_ucode
)
157 /* Look for ext. headers: */
158 if (total_size
<= data_size
+ MC_HEADER_SIZE
)
161 ext_header
= (void *) mc_header
+ data_size
+ MC_HEADER_SIZE
;
162 ext_sig
= (void *)ext_header
+ EXT_HEADER_SIZE
;
163 ext_sigcount
= ext_header
->count
;
165 for (i
= 0; i
< ext_sigcount
; i
++) {
166 fam_ucode
= __x86_family(ext_sig
->sig
);
167 model_ucode
= x86_model(ext_sig
->sig
);
169 if (fam
== fam_ucode
&& model
== model_ucode
)
178 save_microcode(struct mc_saved_data
*mc_saved_data
,
179 struct microcode_intel
**mc_saved_src
,
180 unsigned int mc_saved_count
)
183 struct microcode_intel
**saved_ptr
;
190 * Copy new microcode data.
192 saved_ptr
= kcalloc(mc_saved_count
, sizeof(struct microcode_intel
*), GFP_KERNEL
);
196 for (i
= 0; i
< mc_saved_count
; i
++) {
197 struct microcode_header_intel
*mc_hdr
;
198 struct microcode_intel
*mc
;
201 if (!mc_saved_src
[i
]) {
206 mc
= mc_saved_src
[i
];
208 size
= get_totalsize(mc_hdr
);
210 saved_ptr
[i
] = kmalloc(size
, GFP_KERNEL
);
216 memcpy(saved_ptr
[i
], mc
, size
);
220 * Point to newly saved microcode.
222 mc_saved_data
->mc_saved
= saved_ptr
;
223 mc_saved_data
->mc_saved_count
= mc_saved_count
;
228 for (j
= 0; j
<= i
; j
++)
236 * A microcode patch in ucode_ptr is saved into mc_saved
237 * - if it has matching signature and newer revision compared to an existing
239 * - or if it is a newly discovered microcode patch.
241 * The microcode patch should have matching model with CPU.
243 * Returns: The updated number @num_saved of saved microcode patches.
245 static unsigned int _save_mc(struct microcode_intel
**mc_saved
,
246 u8
*ucode_ptr
, unsigned int num_saved
)
248 struct microcode_header_intel
*mc_hdr
, *mc_saved_hdr
;
249 unsigned int sig
, pf
, new_rev
;
252 mc_hdr
= (struct microcode_header_intel
*)ucode_ptr
;
254 for (i
= 0; i
< num_saved
; i
++) {
255 mc_saved_hdr
= (struct microcode_header_intel
*)mc_saved
[i
];
256 sig
= mc_saved_hdr
->sig
;
257 pf
= mc_saved_hdr
->pf
;
258 new_rev
= mc_hdr
->rev
;
260 if (!get_matching_sig(sig
, pf
, new_rev
, ucode_ptr
))
265 if (!revision_is_newer(mc_hdr
, new_rev
))
269 * Found an older ucode saved earlier. Replace it with
272 mc_saved
[i
] = (struct microcode_intel
*)ucode_ptr
;
276 /* Newly detected microcode, save it to memory. */
277 if (i
>= num_saved
&& !found
)
278 mc_saved
[num_saved
++] = (struct microcode_intel
*)ucode_ptr
;
284 * Get microcode matching with BSP's model. Only CPUs with the same model as
285 * BSP can stay in the platform.
287 static enum ucode_state __init
288 get_matching_model_microcode(int cpu
, unsigned long start
,
289 void *data
, size_t size
,
290 struct mc_saved_data
*mc_saved_data
,
291 unsigned long *mc_saved_in_initrd
,
292 struct ucode_cpu_info
*uci
)
294 u8
*ucode_ptr
= data
;
295 unsigned int leftover
= size
;
296 enum ucode_state state
= UCODE_OK
;
297 unsigned int mc_size
;
298 struct microcode_header_intel
*mc_header
;
299 struct microcode_intel
*mc_saved_tmp
[MAX_UCODE_COUNT
];
300 unsigned int mc_saved_count
= mc_saved_data
->mc_saved_count
;
303 while (leftover
&& mc_saved_count
< ARRAY_SIZE(mc_saved_tmp
)) {
305 if (leftover
< sizeof(mc_header
))
308 mc_header
= (struct microcode_header_intel
*)ucode_ptr
;
310 mc_size
= get_totalsize(mc_header
);
311 if (!mc_size
|| mc_size
> leftover
||
312 microcode_sanity_check(ucode_ptr
, 0) < 0)
318 * Since APs with same family and model as the BSP may boot in
319 * the platform, we need to find and save microcode patches
320 * with the same family and model as the BSP.
322 if (matching_model_microcode(mc_header
, uci
->cpu_sig
.sig
) !=
324 ucode_ptr
+= mc_size
;
328 mc_saved_count
= _save_mc(mc_saved_tmp
, ucode_ptr
, mc_saved_count
);
330 ucode_ptr
+= mc_size
;
338 if (mc_saved_count
== 0) {
339 state
= UCODE_NFOUND
;
343 for (i
= 0; i
< mc_saved_count
; i
++)
344 mc_saved_in_initrd
[i
] = (unsigned long)mc_saved_tmp
[i
] - start
;
346 mc_saved_data
->mc_saved_count
= mc_saved_count
;
351 static int collect_cpu_info_early(struct ucode_cpu_info
*uci
)
354 unsigned int family
, model
;
355 struct cpu_signature csig
;
356 unsigned int eax
, ebx
, ecx
, edx
;
362 memset(uci
, 0, sizeof(*uci
));
366 native_cpuid(&eax
, &ebx
, &ecx
, &edx
);
369 family
= __x86_family(csig
.sig
);
370 model
= x86_model(csig
.sig
);
372 if ((model
>= 5) || (family
> 6)) {
373 /* get processor flags from MSR 0x17 */
374 native_rdmsr(MSR_IA32_PLATFORM_ID
, val
[0], val
[1]);
375 csig
.pf
= 1 << ((val
[1] >> 18) & 7);
377 native_wrmsr(MSR_IA32_UCODE_REV
, 0, 0);
379 /* As documented in the SDM: Do a CPUID 1 here */
382 /* get the current revision from MSR 0x8B */
383 native_rdmsr(MSR_IA32_UCODE_REV
, val
[0], val
[1]);
394 static void __ref
show_saved_mc(void)
397 unsigned int sig
, pf
, rev
, total_size
, data_size
, date
;
398 struct ucode_cpu_info uci
;
400 if (mc_saved_data
.mc_saved_count
== 0) {
401 pr_debug("no microcode data saved.\n");
404 pr_debug("Total microcode saved: %d\n", mc_saved_data
.mc_saved_count
);
406 collect_cpu_info_early(&uci
);
408 sig
= uci
.cpu_sig
.sig
;
410 rev
= uci
.cpu_sig
.rev
;
411 pr_debug("CPU: sig=0x%x, pf=0x%x, rev=0x%x\n", sig
, pf
, rev
);
413 for (i
= 0; i
< mc_saved_data
.mc_saved_count
; i
++) {
414 struct microcode_header_intel
*mc_saved_header
;
415 struct extended_sigtable
*ext_header
;
417 struct extended_signature
*ext_sig
;
419 mc_saved_header
= (struct microcode_header_intel
*)
420 mc_saved_data
.mc_saved
[i
];
421 sig
= mc_saved_header
->sig
;
422 pf
= mc_saved_header
->pf
;
423 rev
= mc_saved_header
->rev
;
424 total_size
= get_totalsize(mc_saved_header
);
425 data_size
= get_datasize(mc_saved_header
);
426 date
= mc_saved_header
->date
;
428 pr_debug("mc_saved[%d]: sig=0x%x, pf=0x%x, rev=0x%x, toal size=0x%x, date = %04x-%02x-%02x\n",
429 i
, sig
, pf
, rev
, total_size
,
432 (date
>> 16) & 0xff);
434 /* Look for ext. headers: */
435 if (total_size
<= data_size
+ MC_HEADER_SIZE
)
438 ext_header
= (void *) mc_saved_header
+ data_size
+ MC_HEADER_SIZE
;
439 ext_sigcount
= ext_header
->count
;
440 ext_sig
= (void *)ext_header
+ EXT_HEADER_SIZE
;
442 for (j
= 0; j
< ext_sigcount
; j
++) {
446 pr_debug("\tExtended[%d]: sig=0x%x, pf=0x%x\n",
455 static inline void show_saved_mc(void)
460 #if defined(CONFIG_MICROCODE_INTEL_EARLY) && defined(CONFIG_HOTPLUG_CPU)
461 static DEFINE_MUTEX(x86_cpu_microcode_mutex
);
463 * Save this mc into mc_saved_data. So it will be loaded early when a CPU is
464 * hot added or resumes.
466 * Please make sure this mc should be a valid microcode patch before calling
469 int save_mc_for_early(u8
*mc
)
471 struct microcode_intel
*mc_saved_tmp
[MAX_UCODE_COUNT
];
472 unsigned int mc_saved_count_init
;
473 unsigned int mc_saved_count
;
474 struct microcode_intel
**mc_saved
;
479 * Hold hotplug lock so mc_saved_data is not accessed by a CPU in
482 mutex_lock(&x86_cpu_microcode_mutex
);
484 mc_saved_count_init
= mc_saved_data
.mc_saved_count
;
485 mc_saved_count
= mc_saved_data
.mc_saved_count
;
486 mc_saved
= mc_saved_data
.mc_saved
;
488 if (mc_saved
&& mc_saved_count
)
489 memcpy(mc_saved_tmp
, mc_saved
,
490 mc_saved_count
* sizeof(struct microcode_intel
*));
492 * Save the microcode patch mc in mc_save_tmp structure if it's a newer
495 mc_saved_count
= _save_mc(mc_saved_tmp
, mc
, mc_saved_count
);
498 * Save the mc_save_tmp in global mc_saved_data.
500 ret
= save_microcode(&mc_saved_data
, mc_saved_tmp
, mc_saved_count
);
502 pr_err("Cannot save microcode patch.\n");
509 * Free old saved microcode data.
512 for (i
= 0; i
< mc_saved_count_init
; i
++)
518 mutex_unlock(&x86_cpu_microcode_mutex
);
522 EXPORT_SYMBOL_GPL(save_mc_for_early
);
525 static __initdata
char ucode_name
[] = "kernel/x86/microcode/GenuineIntel.bin";
526 static __init
enum ucode_state
527 scan_microcode(struct mc_saved_data
*mc_saved_data
, unsigned long *initrd
,
528 unsigned long start
, unsigned long size
,
529 struct ucode_cpu_info
*uci
)
534 char *p
= (char *)__pa_nodebug(ucode_name
);
536 char *p
= ucode_name
;
542 cd
= find_cpio_data(p
, (void *)start
, size
, &offset
);
546 return get_matching_model_microcode(0, start
, cd
.data
, cd
.size
,
547 mc_saved_data
, initrd
, uci
);
551 * Print ucode update info.
554 print_ucode_info(struct ucode_cpu_info
*uci
, unsigned int date
)
556 int cpu
= smp_processor_id();
558 pr_info("CPU%d microcode updated early to revision 0x%x, date = %04x-%02x-%02x\n",
563 (date
>> 16) & 0xff);
568 static int delay_ucode_info
;
569 static int current_mc_date
;
572 * Print early updated ucode info after printk works. This is delayed info dump.
574 void show_ucode_info_early(void)
576 struct ucode_cpu_info uci
;
578 if (delay_ucode_info
) {
579 collect_cpu_info_early(&uci
);
580 print_ucode_info(&uci
, current_mc_date
);
581 delay_ucode_info
= 0;
586 * At this point, we can not call printk() yet. Keep microcode patch number in
587 * mc_saved_data.mc_saved and delay printing microcode info in
588 * show_ucode_info_early() until printk() works.
590 static void print_ucode(struct ucode_cpu_info
*uci
)
592 struct microcode_intel
*mc_intel
;
593 int *delay_ucode_info_p
;
594 int *current_mc_date_p
;
597 if (mc_intel
== NULL
)
600 delay_ucode_info_p
= (int *)__pa_nodebug(&delay_ucode_info
);
601 current_mc_date_p
= (int *)__pa_nodebug(¤t_mc_date
);
603 *delay_ucode_info_p
= 1;
604 *current_mc_date_p
= mc_intel
->hdr
.date
;
609 * Flush global tlb. We only do this in x86_64 where paging has been enabled
610 * already and PGE should be enabled as well.
612 static inline void flush_tlb_early(void)
614 __native_flush_tlb_global_irq_disabled();
617 static inline void print_ucode(struct ucode_cpu_info
*uci
)
619 struct microcode_intel
*mc_intel
;
622 if (mc_intel
== NULL
)
625 print_ucode_info(uci
, mc_intel
->hdr
.date
);
629 static int apply_microcode_early(struct ucode_cpu_info
*uci
, bool early
)
631 struct microcode_intel
*mc_intel
;
635 if (mc_intel
== NULL
)
638 /* write microcode via MSR 0x79 */
639 native_wrmsr(MSR_IA32_UCODE_WRITE
,
640 (unsigned long) mc_intel
->bits
,
641 (unsigned long) mc_intel
->bits
>> 16 >> 16);
642 native_wrmsr(MSR_IA32_UCODE_REV
, 0, 0);
644 /* As documented in the SDM: Do a CPUID 1 here */
647 /* get the current revision from MSR 0x8B */
648 native_rdmsr(MSR_IA32_UCODE_REV
, val
[0], val
[1]);
649 if (val
[1] != mc_intel
->hdr
.rev
)
653 /* Flush global tlb. This is precaution. */
656 uci
->cpu_sig
.rev
= val
[1];
661 print_ucode_info(uci
, mc_intel
->hdr
.date
);
667 * This function converts microcode patch offsets previously stored in
668 * mc_saved_in_initrd to pointers and stores the pointers in mc_saved_data.
670 int __init
save_microcode_in_initrd_intel(void)
672 unsigned int count
= mc_saved_data
.mc_saved_count
;
673 struct microcode_intel
*mc_saved
[MAX_UCODE_COUNT
];
679 copy_initrd_ptrs(mc_saved
, mc_saved_in_initrd
, initrd_start
, count
);
680 ret
= save_microcode(&mc_saved_data
, mc_saved
, count
);
682 pr_err("Cannot save microcode patches from initrd.\n");
690 _load_ucode_intel_bsp(struct mc_saved_data
*mc_saved_data
,
691 unsigned long *initrd
,
692 unsigned long start
, unsigned long size
)
694 struct ucode_cpu_info uci
;
695 enum ucode_state ret
;
697 collect_cpu_info_early(&uci
);
699 ret
= scan_microcode(mc_saved_data
, initrd
, start
, size
, &uci
);
703 ret
= load_microcode(mc_saved_data
, initrd
, start
, &uci
);
707 apply_microcode_early(&uci
, true);
710 void __init
load_ucode_intel_bsp(void)
714 struct boot_params
*p
;
716 p
= (struct boot_params
*)__pa_nodebug(&boot_params
);
717 start
= p
->hdr
.ramdisk_image
;
718 size
= p
->hdr
.ramdisk_size
;
720 _load_ucode_intel_bsp(
721 (struct mc_saved_data
*)__pa_nodebug(&mc_saved_data
),
722 (unsigned long *)__pa_nodebug(&mc_saved_in_initrd
),
725 start
= boot_params
.hdr
.ramdisk_image
+ PAGE_OFFSET
;
726 size
= boot_params
.hdr
.ramdisk_size
;
728 _load_ucode_intel_bsp(&mc_saved_data
, mc_saved_in_initrd
, start
, size
);
732 void load_ucode_intel_ap(void)
734 struct mc_saved_data
*mc_saved_data_p
;
735 struct ucode_cpu_info uci
;
736 unsigned long *mc_saved_in_initrd_p
;
737 unsigned long initrd_start_addr
;
738 enum ucode_state ret
;
740 unsigned long *initrd_start_p
;
742 mc_saved_in_initrd_p
=
743 (unsigned long *)__pa_nodebug(mc_saved_in_initrd
);
744 mc_saved_data_p
= (struct mc_saved_data
*)__pa_nodebug(&mc_saved_data
);
745 initrd_start_p
= (unsigned long *)__pa_nodebug(&initrd_start
);
746 initrd_start_addr
= (unsigned long)__pa_nodebug(*initrd_start_p
);
748 mc_saved_data_p
= &mc_saved_data
;
749 mc_saved_in_initrd_p
= mc_saved_in_initrd
;
750 initrd_start_addr
= initrd_start
;
754 * If there is no valid ucode previously saved in memory, no need to
755 * update ucode on this AP.
757 if (mc_saved_data_p
->mc_saved_count
== 0)
760 collect_cpu_info_early(&uci
);
761 ret
= load_microcode(mc_saved_data_p
, mc_saved_in_initrd_p
,
762 initrd_start_addr
, &uci
);
767 apply_microcode_early(&uci
, true);
770 void reload_ucode_intel(void)
772 struct ucode_cpu_info uci
;
773 enum ucode_state ret
;
775 if (!mc_saved_data
.mc_saved_count
)
778 collect_cpu_info_early(&uci
);
780 ret
= load_microcode_early(mc_saved_data
.mc_saved
,
781 mc_saved_data
.mc_saved_count
, &uci
);
785 apply_microcode_early(&uci
, false);