2 * Intel CPU Microcode Update Driver for Linux
4 * Copyright (C) 2000-2006 Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
5 * 2006 Shaohua Li <shaohua.li@intel.com>
7 * Intel CPU microcode early update for Linux
9 * Copyright (C) 2012 Fenghua Yu <fenghua.yu@intel.com>
10 * H Peter Anvin" <hpa@zytor.com>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
19 * This needs to be before all headers so that pr_debug in printk.h doesn't turn
20 * printk calls into no_printk().
24 #define pr_fmt(fmt) "microcode: " fmt
26 #include <linux/earlycpio.h>
27 #include <linux/firmware.h>
28 #include <linux/uaccess.h>
29 #include <linux/vmalloc.h>
30 #include <linux/initrd.h>
31 #include <linux/kernel.h>
32 #include <linux/slab.h>
33 #include <linux/cpu.h>
36 #include <asm/microcode_intel.h>
37 #include <asm/processor.h>
38 #include <asm/tlbflush.h>
39 #include <asm/setup.h>
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
= has_newer_microcode(ucode_ptr
,
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
;
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
;
259 if (!find_matching_signature(ucode_ptr
, sig
, pf
))
264 if (mc_hdr
->rev
<= mc_saved_hdr
->rev
)
268 * Found an older ucode saved earlier. Replace it with
271 mc_saved
[i
] = (struct microcode_intel
*)ucode_ptr
;
275 /* Newly detected microcode, save it to memory. */
276 if (i
>= num_saved
&& !found
)
277 mc_saved
[num_saved
++] = (struct microcode_intel
*)ucode_ptr
;
283 * Get microcode matching with BSP's model. Only CPUs with the same model as
284 * BSP can stay in the platform.
286 static enum ucode_state __init
287 get_matching_model_microcode(int cpu
, unsigned long start
,
288 void *data
, size_t size
,
289 struct mc_saved_data
*mc_saved_data
,
290 unsigned long *mc_saved_in_initrd
,
291 struct ucode_cpu_info
*uci
)
293 u8
*ucode_ptr
= data
;
294 unsigned int leftover
= size
;
295 enum ucode_state state
= UCODE_OK
;
296 unsigned int mc_size
;
297 struct microcode_header_intel
*mc_header
;
298 struct microcode_intel
*mc_saved_tmp
[MAX_UCODE_COUNT
];
299 unsigned int mc_saved_count
= mc_saved_data
->mc_saved_count
;
302 while (leftover
&& mc_saved_count
< ARRAY_SIZE(mc_saved_tmp
)) {
304 if (leftover
< sizeof(mc_header
))
307 mc_header
= (struct microcode_header_intel
*)ucode_ptr
;
309 mc_size
= get_totalsize(mc_header
);
310 if (!mc_size
|| mc_size
> leftover
||
311 microcode_sanity_check(ucode_ptr
, 0) < 0)
317 * Since APs with same family and model as the BSP may boot in
318 * the platform, we need to find and save microcode patches
319 * with the same family and model as the BSP.
321 if (matching_model_microcode(mc_header
, uci
->cpu_sig
.sig
) !=
323 ucode_ptr
+= mc_size
;
327 mc_saved_count
= _save_mc(mc_saved_tmp
, ucode_ptr
, mc_saved_count
);
329 ucode_ptr
+= mc_size
;
337 if (mc_saved_count
== 0) {
338 state
= UCODE_NFOUND
;
342 for (i
= 0; i
< mc_saved_count
; i
++)
343 mc_saved_in_initrd
[i
] = (unsigned long)mc_saved_tmp
[i
] - start
;
345 mc_saved_data
->mc_saved_count
= mc_saved_count
;
350 static int collect_cpu_info_early(struct ucode_cpu_info
*uci
)
353 unsigned int family
, model
;
354 struct cpu_signature csig
;
355 unsigned int eax
, ebx
, ecx
, edx
;
361 memset(uci
, 0, sizeof(*uci
));
365 native_cpuid(&eax
, &ebx
, &ecx
, &edx
);
368 family
= x86_family(csig
.sig
);
369 model
= x86_model(csig
.sig
);
371 if ((model
>= 5) || (family
> 6)) {
372 /* get processor flags from MSR 0x17 */
373 native_rdmsr(MSR_IA32_PLATFORM_ID
, val
[0], val
[1]);
374 csig
.pf
= 1 << ((val
[1] >> 18) & 7);
376 native_wrmsr(MSR_IA32_UCODE_REV
, 0, 0);
378 /* As documented in the SDM: Do a CPUID 1 here */
381 /* get the current revision from MSR 0x8B */
382 native_rdmsr(MSR_IA32_UCODE_REV
, val
[0], val
[1]);
392 static void show_saved_mc(void)
396 unsigned int sig
, pf
, rev
, total_size
, data_size
, date
;
397 struct ucode_cpu_info uci
;
399 if (mc_saved_data
.mc_saved_count
== 0) {
400 pr_debug("no microcode data saved.\n");
403 pr_debug("Total microcode saved: %d\n", mc_saved_data
.mc_saved_count
);
405 collect_cpu_info_early(&uci
);
407 sig
= uci
.cpu_sig
.sig
;
409 rev
= uci
.cpu_sig
.rev
;
410 pr_debug("CPU: sig=0x%x, pf=0x%x, rev=0x%x\n", sig
, pf
, rev
);
412 for (i
= 0; i
< mc_saved_data
.mc_saved_count
; i
++) {
413 struct microcode_header_intel
*mc_saved_header
;
414 struct extended_sigtable
*ext_header
;
416 struct extended_signature
*ext_sig
;
418 mc_saved_header
= (struct microcode_header_intel
*)
419 mc_saved_data
.mc_saved
[i
];
420 sig
= mc_saved_header
->sig
;
421 pf
= mc_saved_header
->pf
;
422 rev
= mc_saved_header
->rev
;
423 total_size
= get_totalsize(mc_saved_header
);
424 data_size
= get_datasize(mc_saved_header
);
425 date
= mc_saved_header
->date
;
427 pr_debug("mc_saved[%d]: sig=0x%x, pf=0x%x, rev=0x%x, toal size=0x%x, date = %04x-%02x-%02x\n",
428 i
, sig
, pf
, rev
, total_size
,
431 (date
>> 16) & 0xff);
433 /* Look for ext. headers: */
434 if (total_size
<= data_size
+ MC_HEADER_SIZE
)
437 ext_header
= (void *) mc_saved_header
+ data_size
+ MC_HEADER_SIZE
;
438 ext_sigcount
= ext_header
->count
;
439 ext_sig
= (void *)ext_header
+ EXT_HEADER_SIZE
;
441 for (j
= 0; j
< ext_sigcount
; j
++) {
445 pr_debug("\tExtended[%d]: sig=0x%x, pf=0x%x\n",
455 #ifdef CONFIG_HOTPLUG_CPU
456 static DEFINE_MUTEX(x86_cpu_microcode_mutex
);
458 * Save this mc into mc_saved_data. So it will be loaded early when a CPU is
459 * hot added or resumes.
461 * Please make sure this mc should be a valid microcode patch before calling
464 int save_mc_for_early(u8
*mc
)
466 struct microcode_intel
*mc_saved_tmp
[MAX_UCODE_COUNT
];
467 unsigned int mc_saved_count_init
;
468 unsigned int mc_saved_count
;
469 struct microcode_intel
**mc_saved
;
474 * Hold hotplug lock so mc_saved_data is not accessed by a CPU in
477 mutex_lock(&x86_cpu_microcode_mutex
);
479 mc_saved_count_init
= mc_saved_data
.mc_saved_count
;
480 mc_saved_count
= mc_saved_data
.mc_saved_count
;
481 mc_saved
= mc_saved_data
.mc_saved
;
483 if (mc_saved
&& mc_saved_count
)
484 memcpy(mc_saved_tmp
, mc_saved
,
485 mc_saved_count
* sizeof(struct microcode_intel
*));
487 * Save the microcode patch mc in mc_save_tmp structure if it's a newer
490 mc_saved_count
= _save_mc(mc_saved_tmp
, mc
, mc_saved_count
);
493 * Save the mc_save_tmp in global mc_saved_data.
495 ret
= save_microcode(&mc_saved_data
, mc_saved_tmp
, mc_saved_count
);
497 pr_err("Cannot save microcode patch.\n");
504 * Free old saved microcode data.
507 for (i
= 0; i
< mc_saved_count_init
; i
++)
513 mutex_unlock(&x86_cpu_microcode_mutex
);
517 EXPORT_SYMBOL_GPL(save_mc_for_early
);
520 static bool __init
load_builtin_intel_microcode(struct cpio_data
*cp
)
523 unsigned int eax
= 0x00000001, ebx
, ecx
= 0, edx
;
526 native_cpuid(&eax
, &ebx
, &ecx
, &edx
);
528 sprintf(name
, "intel-ucode/%02x-%02x-%02x",
529 x86_family(eax
), x86_model(eax
), x86_stepping(eax
));
531 return get_builtin_firmware(cp
, name
);
537 static __initdata
char ucode_name
[] = "kernel/x86/microcode/GenuineIntel.bin";
538 static __init
enum ucode_state
539 scan_microcode(struct mc_saved_data
*mc_saved_data
, unsigned long *initrd
,
540 unsigned long start
, unsigned long size
,
541 struct ucode_cpu_info
*uci
)
546 char *p
= (char *)__pa_nodebug(ucode_name
);
548 char *p
= ucode_name
;
554 cd
= find_cpio_data(p
, (void *)start
, size
, &offset
);
556 if (!load_builtin_intel_microcode(&cd
))
560 return get_matching_model_microcode(0, start
, cd
.data
, cd
.size
,
561 mc_saved_data
, initrd
, uci
);
565 * Print ucode update info.
568 print_ucode_info(struct ucode_cpu_info
*uci
, unsigned int date
)
570 int cpu
= smp_processor_id();
572 pr_info("CPU%d microcode updated early to revision 0x%x, date = %04x-%02x-%02x\n",
577 (date
>> 16) & 0xff);
582 static int delay_ucode_info
;
583 static int current_mc_date
;
586 * Print early updated ucode info after printk works. This is delayed info dump.
588 void show_ucode_info_early(void)
590 struct ucode_cpu_info uci
;
592 if (delay_ucode_info
) {
593 collect_cpu_info_early(&uci
);
594 print_ucode_info(&uci
, current_mc_date
);
595 delay_ucode_info
= 0;
600 * At this point, we can not call printk() yet. Keep microcode patch number in
601 * mc_saved_data.mc_saved and delay printing microcode info in
602 * show_ucode_info_early() until printk() works.
604 static void print_ucode(struct ucode_cpu_info
*uci
)
606 struct microcode_intel
*mc_intel
;
607 int *delay_ucode_info_p
;
608 int *current_mc_date_p
;
611 if (mc_intel
== NULL
)
614 delay_ucode_info_p
= (int *)__pa_nodebug(&delay_ucode_info
);
615 current_mc_date_p
= (int *)__pa_nodebug(¤t_mc_date
);
617 *delay_ucode_info_p
= 1;
618 *current_mc_date_p
= mc_intel
->hdr
.date
;
623 * Flush global tlb. We only do this in x86_64 where paging has been enabled
624 * already and PGE should be enabled as well.
626 static inline void flush_tlb_early(void)
628 __native_flush_tlb_global_irq_disabled();
631 static inline void print_ucode(struct ucode_cpu_info
*uci
)
633 struct microcode_intel
*mc_intel
;
636 if (mc_intel
== NULL
)
639 print_ucode_info(uci
, mc_intel
->hdr
.date
);
643 static int apply_microcode_early(struct ucode_cpu_info
*uci
, bool early
)
645 struct microcode_intel
*mc_intel
;
649 if (mc_intel
== NULL
)
652 /* write microcode via MSR 0x79 */
653 native_wrmsr(MSR_IA32_UCODE_WRITE
,
654 (unsigned long) mc_intel
->bits
,
655 (unsigned long) mc_intel
->bits
>> 16 >> 16);
656 native_wrmsr(MSR_IA32_UCODE_REV
, 0, 0);
658 /* As documented in the SDM: Do a CPUID 1 here */
661 /* get the current revision from MSR 0x8B */
662 native_rdmsr(MSR_IA32_UCODE_REV
, val
[0], val
[1]);
663 if (val
[1] != mc_intel
->hdr
.rev
)
667 /* Flush global tlb. This is precaution. */
670 uci
->cpu_sig
.rev
= val
[1];
675 print_ucode_info(uci
, mc_intel
->hdr
.date
);
681 * This function converts microcode patch offsets previously stored in
682 * mc_saved_in_initrd to pointers and stores the pointers in mc_saved_data.
684 int __init
save_microcode_in_initrd_intel(void)
686 unsigned int count
= mc_saved_data
.mc_saved_count
;
687 struct microcode_intel
*mc_saved
[MAX_UCODE_COUNT
];
693 copy_initrd_ptrs(mc_saved
, mc_saved_in_initrd
, initrd_start
, count
);
694 ret
= save_microcode(&mc_saved_data
, mc_saved
, count
);
696 pr_err("Cannot save microcode patches from initrd.\n");
704 _load_ucode_intel_bsp(struct mc_saved_data
*mc_saved_data
,
705 unsigned long *initrd
,
706 unsigned long start
, unsigned long size
)
708 struct ucode_cpu_info uci
;
709 enum ucode_state ret
;
711 collect_cpu_info_early(&uci
);
713 ret
= scan_microcode(mc_saved_data
, initrd
, start
, size
, &uci
);
717 ret
= load_microcode(mc_saved_data
, initrd
, start
, &uci
);
721 apply_microcode_early(&uci
, true);
724 void __init
load_ucode_intel_bsp(void)
728 struct boot_params
*p
;
730 p
= (struct boot_params
*)__pa_nodebug(&boot_params
);
731 start
= p
->hdr
.ramdisk_image
;
732 size
= p
->hdr
.ramdisk_size
;
734 _load_ucode_intel_bsp(
735 (struct mc_saved_data
*)__pa_nodebug(&mc_saved_data
),
736 (unsigned long *)__pa_nodebug(&mc_saved_in_initrd
),
739 start
= boot_params
.hdr
.ramdisk_image
+ PAGE_OFFSET
;
740 size
= boot_params
.hdr
.ramdisk_size
;
742 _load_ucode_intel_bsp(&mc_saved_data
, mc_saved_in_initrd
, start
, size
);
746 void load_ucode_intel_ap(void)
748 struct mc_saved_data
*mc_saved_data_p
;
749 struct ucode_cpu_info uci
;
750 unsigned long *mc_saved_in_initrd_p
;
751 unsigned long initrd_start_addr
;
752 enum ucode_state ret
;
754 unsigned long *initrd_start_p
;
756 mc_saved_in_initrd_p
=
757 (unsigned long *)__pa_nodebug(mc_saved_in_initrd
);
758 mc_saved_data_p
= (struct mc_saved_data
*)__pa_nodebug(&mc_saved_data
);
759 initrd_start_p
= (unsigned long *)__pa_nodebug(&initrd_start
);
760 initrd_start_addr
= (unsigned long)__pa_nodebug(*initrd_start_p
);
762 mc_saved_data_p
= &mc_saved_data
;
763 mc_saved_in_initrd_p
= mc_saved_in_initrd
;
764 initrd_start_addr
= initrd_start
;
768 * If there is no valid ucode previously saved in memory, no need to
769 * update ucode on this AP.
771 if (mc_saved_data_p
->mc_saved_count
== 0)
774 collect_cpu_info_early(&uci
);
775 ret
= load_microcode(mc_saved_data_p
, mc_saved_in_initrd_p
,
776 initrd_start_addr
, &uci
);
781 apply_microcode_early(&uci
, true);
784 void reload_ucode_intel(void)
786 struct ucode_cpu_info uci
;
787 enum ucode_state ret
;
789 if (!mc_saved_data
.mc_saved_count
)
792 collect_cpu_info_early(&uci
);
794 ret
= load_microcode_early(mc_saved_data
.mc_saved
,
795 mc_saved_data
.mc_saved_count
, &uci
);
799 apply_microcode_early(&uci
, false);
802 static int collect_cpu_info(int cpu_num
, struct cpu_signature
*csig
)
804 struct cpuinfo_x86
*c
= &cpu_data(cpu_num
);
807 memset(csig
, 0, sizeof(*csig
));
809 csig
->sig
= cpuid_eax(0x00000001);
811 if ((c
->x86_model
>= 5) || (c
->x86
> 6)) {
812 /* get processor flags from MSR 0x17 */
813 rdmsr(MSR_IA32_PLATFORM_ID
, val
[0], val
[1]);
814 csig
->pf
= 1 << ((val
[1] >> 18) & 7);
817 csig
->rev
= c
->microcode
;
818 pr_info("CPU%d sig=0x%x, pf=0x%x, revision=0x%x\n",
819 cpu_num
, csig
->sig
, csig
->pf
, csig
->rev
);
825 * return 0 - no update found
826 * return 1 - found update
828 static int get_matching_mc(struct microcode_intel
*mc_intel
, int cpu
)
830 struct cpu_signature cpu_sig
;
831 unsigned int csig
, cpf
, crev
;
833 collect_cpu_info(cpu
, &cpu_sig
);
839 return has_newer_microcode(mc_intel
, csig
, cpf
, crev
);
842 static int apply_microcode_intel(int cpu
)
844 struct microcode_intel
*mc_intel
;
845 struct ucode_cpu_info
*uci
;
847 int cpu_num
= raw_smp_processor_id();
848 struct cpuinfo_x86
*c
= &cpu_data(cpu_num
);
850 uci
= ucode_cpu_info
+ cpu
;
853 /* We should bind the task to the CPU */
854 BUG_ON(cpu_num
!= cpu
);
856 if (mc_intel
== NULL
)
860 * Microcode on this CPU could be updated earlier. Only apply the
861 * microcode patch in mc_intel when it is newer than the one on this
864 if (get_matching_mc(mc_intel
, cpu
) == 0)
867 /* write microcode via MSR 0x79 */
868 wrmsr(MSR_IA32_UCODE_WRITE
,
869 (unsigned long) mc_intel
->bits
,
870 (unsigned long) mc_intel
->bits
>> 16 >> 16);
871 wrmsr(MSR_IA32_UCODE_REV
, 0, 0);
873 /* As documented in the SDM: Do a CPUID 1 here */
876 /* get the current revision from MSR 0x8B */
877 rdmsr(MSR_IA32_UCODE_REV
, val
[0], val
[1]);
879 if (val
[1] != mc_intel
->hdr
.rev
) {
880 pr_err("CPU%d update to revision 0x%x failed\n",
881 cpu_num
, mc_intel
->hdr
.rev
);
884 pr_info("CPU%d updated to revision 0x%x, date = %04x-%02x-%02x\n",
886 mc_intel
->hdr
.date
& 0xffff,
887 mc_intel
->hdr
.date
>> 24,
888 (mc_intel
->hdr
.date
>> 16) & 0xff);
890 uci
->cpu_sig
.rev
= val
[1];
891 c
->microcode
= val
[1];
896 static enum ucode_state
generic_load_microcode(int cpu
, void *data
, size_t size
,
897 int (*get_ucode_data
)(void *, const void *, size_t))
899 struct ucode_cpu_info
*uci
= ucode_cpu_info
+ cpu
;
900 u8
*ucode_ptr
= data
, *new_mc
= NULL
, *mc
= NULL
;
901 int new_rev
= uci
->cpu_sig
.rev
;
902 unsigned int leftover
= size
;
903 enum ucode_state state
= UCODE_OK
;
904 unsigned int curr_mc_size
= 0;
905 unsigned int csig
, cpf
;
908 struct microcode_header_intel mc_header
;
909 unsigned int mc_size
;
911 if (leftover
< sizeof(mc_header
)) {
912 pr_err("error! Truncated header in microcode data file\n");
916 if (get_ucode_data(&mc_header
, ucode_ptr
, sizeof(mc_header
)))
919 mc_size
= get_totalsize(&mc_header
);
920 if (!mc_size
|| mc_size
> leftover
) {
921 pr_err("error! Bad data in microcode data file\n");
925 /* For performance reasons, reuse mc area when possible */
926 if (!mc
|| mc_size
> curr_mc_size
) {
928 mc
= vmalloc(mc_size
);
931 curr_mc_size
= mc_size
;
934 if (get_ucode_data(mc
, ucode_ptr
, mc_size
) ||
935 microcode_sanity_check(mc
, 1) < 0) {
939 csig
= uci
->cpu_sig
.sig
;
940 cpf
= uci
->cpu_sig
.pf
;
941 if (has_newer_microcode(mc
, csig
, cpf
, new_rev
)) {
943 new_rev
= mc_header
.rev
;
945 mc
= NULL
; /* trigger new vmalloc */
948 ucode_ptr
+= mc_size
;
961 state
= UCODE_NFOUND
;
966 uci
->mc
= (struct microcode_intel
*)new_mc
;
969 * If early loading microcode is supported, save this mc into
970 * permanent memory. So it will be loaded early when a CPU is hot added
973 save_mc_for_early(new_mc
);
975 pr_debug("CPU%d found a matching microcode update with version 0x%x (current=0x%x)\n",
976 cpu
, new_rev
, uci
->cpu_sig
.rev
);
981 static int get_ucode_fw(void *to
, const void *from
, size_t n
)
987 static enum ucode_state
request_microcode_fw(int cpu
, struct device
*device
,
991 struct cpuinfo_x86
*c
= &cpu_data(cpu
);
992 const struct firmware
*firmware
;
993 enum ucode_state ret
;
995 sprintf(name
, "intel-ucode/%02x-%02x-%02x",
996 c
->x86
, c
->x86_model
, c
->x86_mask
);
998 if (request_firmware_direct(&firmware
, name
, device
)) {
999 pr_debug("data file %s load failed\n", name
);
1000 return UCODE_NFOUND
;
1003 ret
= generic_load_microcode(cpu
, (void *)firmware
->data
,
1004 firmware
->size
, &get_ucode_fw
);
1006 release_firmware(firmware
);
1011 static int get_ucode_user(void *to
, const void *from
, size_t n
)
1013 return copy_from_user(to
, from
, n
);
1016 static enum ucode_state
1017 request_microcode_user(int cpu
, const void __user
*buf
, size_t size
)
1019 return generic_load_microcode(cpu
, (void *)buf
, size
, &get_ucode_user
);
1022 static void microcode_fini_cpu(int cpu
)
1024 struct ucode_cpu_info
*uci
= ucode_cpu_info
+ cpu
;
1030 static struct microcode_ops microcode_intel_ops
= {
1031 .request_microcode_user
= request_microcode_user
,
1032 .request_microcode_fw
= request_microcode_fw
,
1033 .collect_cpu_info
= collect_cpu_info
,
1034 .apply_microcode
= apply_microcode_intel
,
1035 .microcode_fini_cpu
= microcode_fini_cpu
,
1038 struct microcode_ops
* __init
init_intel_microcode(void)
1040 struct cpuinfo_x86
*c
= &boot_cpu_data
;
1042 if (c
->x86_vendor
!= X86_VENDOR_INTEL
|| c
->x86
< 6 ||
1043 cpu_has(c
, X86_FEATURE_IA64
)) {
1044 pr_err("Intel CPU family 0x%x not supported\n", c
->x86
);
1048 return µcode_intel_ops
;