xref: /linux-6.15/arch/x86/kernel/cpu/microcode/intel.c (revision 0177669e)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Intel CPU Microcode Update Driver for Linux
4  *
5  * Copyright (C) 2000-2006 Tigran Aivazian <[email protected]>
6  *		 2006 Shaohua Li <[email protected]>
7  *
8  * Intel CPU microcode early update for Linux
9  *
10  * Copyright (C) 2012 Fenghua Yu <[email protected]>
11  *		      H Peter Anvin" <[email protected]>
12  */
13 #define pr_fmt(fmt) "microcode: " fmt
14 #include <linux/earlycpio.h>
15 #include <linux/firmware.h>
16 #include <linux/uaccess.h>
17 #include <linux/vmalloc.h>
18 #include <linux/initrd.h>
19 #include <linux/kernel.h>
20 #include <linux/slab.h>
21 #include <linux/cpu.h>
22 #include <linux/uio.h>
23 #include <linux/mm.h>
24 
25 #include <asm/intel-family.h>
26 #include <asm/processor.h>
27 #include <asm/tlbflush.h>
28 #include <asm/setup.h>
29 #include <asm/msr.h>
30 
31 #include "internal.h"
32 
33 static const char ucode_path[] = "kernel/x86/microcode/GenuineIntel.bin";
34 
35 /* Current microcode patch used in early patching on the APs. */
36 static struct microcode_intel *intel_ucode_patch __read_mostly;
37 
38 /* last level cache size per core */
39 static unsigned int llc_size_per_core __ro_after_init;
40 
41 /* microcode format is extended from prescott processors */
42 struct extended_signature {
43 	unsigned int	sig;
44 	unsigned int	pf;
45 	unsigned int	cksum;
46 };
47 
48 struct extended_sigtable {
49 	unsigned int			count;
50 	unsigned int			cksum;
51 	unsigned int			reserved[3];
52 	struct extended_signature	sigs[];
53 };
54 
55 #define DEFAULT_UCODE_TOTALSIZE (DEFAULT_UCODE_DATASIZE + MC_HEADER_SIZE)
56 #define EXT_HEADER_SIZE		(sizeof(struct extended_sigtable))
57 #define EXT_SIGNATURE_SIZE	(sizeof(struct extended_signature))
58 
59 static inline unsigned int get_totalsize(struct microcode_header_intel *hdr)
60 {
61 	return hdr->datasize ? hdr->totalsize : DEFAULT_UCODE_TOTALSIZE;
62 }
63 
64 static inline unsigned int exttable_size(struct extended_sigtable *et)
65 {
66 	return et->count * EXT_SIGNATURE_SIZE + EXT_HEADER_SIZE;
67 }
68 
69 int intel_cpu_collect_info(struct ucode_cpu_info *uci)
70 {
71 	unsigned int val[2];
72 	unsigned int family, model;
73 	struct cpu_signature csig = { 0 };
74 	unsigned int eax, ebx, ecx, edx;
75 
76 	memset(uci, 0, sizeof(*uci));
77 
78 	eax = 0x00000001;
79 	ecx = 0;
80 	native_cpuid(&eax, &ebx, &ecx, &edx);
81 	csig.sig = eax;
82 
83 	family = x86_family(eax);
84 	model  = x86_model(eax);
85 
86 	if (model >= 5 || family > 6) {
87 		/* get processor flags from MSR 0x17 */
88 		native_rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]);
89 		csig.pf = 1 << ((val[1] >> 18) & 7);
90 	}
91 
92 	csig.rev = intel_get_microcode_revision();
93 
94 	uci->cpu_sig = csig;
95 
96 	return 0;
97 }
98 EXPORT_SYMBOL_GPL(intel_cpu_collect_info);
99 
100 /*
101  * Returns 1 if update has been found, 0 otherwise.
102  */
103 int intel_find_matching_signature(void *mc, unsigned int csig, int cpf)
104 {
105 	struct microcode_header_intel *mc_hdr = mc;
106 	struct extended_sigtable *ext_hdr;
107 	struct extended_signature *ext_sig;
108 	int i;
109 
110 	if (intel_cpu_signatures_match(csig, cpf, mc_hdr->sig, mc_hdr->pf))
111 		return 1;
112 
113 	/* Look for ext. headers: */
114 	if (get_totalsize(mc_hdr) <= intel_microcode_get_datasize(mc_hdr) + MC_HEADER_SIZE)
115 		return 0;
116 
117 	ext_hdr = mc + intel_microcode_get_datasize(mc_hdr) + MC_HEADER_SIZE;
118 	ext_sig = (void *)ext_hdr + EXT_HEADER_SIZE;
119 
120 	for (i = 0; i < ext_hdr->count; i++) {
121 		if (intel_cpu_signatures_match(csig, cpf, ext_sig->sig, ext_sig->pf))
122 			return 1;
123 		ext_sig++;
124 	}
125 	return 0;
126 }
127 EXPORT_SYMBOL_GPL(intel_find_matching_signature);
128 
129 /**
130  * intel_microcode_sanity_check() - Sanity check microcode file.
131  * @mc: Pointer to the microcode file contents.
132  * @print_err: Display failure reason if true, silent if false.
133  * @hdr_type: Type of file, i.e. normal microcode file or In Field Scan file.
134  *            Validate if the microcode header type matches with the type
135  *            specified here.
136  *
137  * Validate certain header fields and verify if computed checksum matches
138  * with the one specified in the header.
139  *
140  * Return: 0 if the file passes all the checks, -EINVAL if any of the checks
141  * fail.
142  */
143 int intel_microcode_sanity_check(void *mc, bool print_err, int hdr_type)
144 {
145 	unsigned long total_size, data_size, ext_table_size;
146 	struct microcode_header_intel *mc_header = mc;
147 	struct extended_sigtable *ext_header = NULL;
148 	u32 sum, orig_sum, ext_sigcount = 0, i;
149 	struct extended_signature *ext_sig;
150 
151 	total_size = get_totalsize(mc_header);
152 	data_size = intel_microcode_get_datasize(mc_header);
153 
154 	if (data_size + MC_HEADER_SIZE > total_size) {
155 		if (print_err)
156 			pr_err("Error: bad microcode data file size.\n");
157 		return -EINVAL;
158 	}
159 
160 	if (mc_header->ldrver != 1 || mc_header->hdrver != hdr_type) {
161 		if (print_err)
162 			pr_err("Error: invalid/unknown microcode update format. Header type %d\n",
163 			       mc_header->hdrver);
164 		return -EINVAL;
165 	}
166 
167 	ext_table_size = total_size - (MC_HEADER_SIZE + data_size);
168 	if (ext_table_size) {
169 		u32 ext_table_sum = 0;
170 		u32 *ext_tablep;
171 
172 		if (ext_table_size < EXT_HEADER_SIZE ||
173 		    ((ext_table_size - EXT_HEADER_SIZE) % EXT_SIGNATURE_SIZE)) {
174 			if (print_err)
175 				pr_err("Error: truncated extended signature table.\n");
176 			return -EINVAL;
177 		}
178 
179 		ext_header = mc + MC_HEADER_SIZE + data_size;
180 		if (ext_table_size != exttable_size(ext_header)) {
181 			if (print_err)
182 				pr_err("Error: extended signature table size mismatch.\n");
183 			return -EFAULT;
184 		}
185 
186 		ext_sigcount = ext_header->count;
187 
188 		/*
189 		 * Check extended table checksum: the sum of all dwords that
190 		 * comprise a valid table must be 0.
191 		 */
192 		ext_tablep = (u32 *)ext_header;
193 
194 		i = ext_table_size / sizeof(u32);
195 		while (i--)
196 			ext_table_sum += ext_tablep[i];
197 
198 		if (ext_table_sum) {
199 			if (print_err)
200 				pr_warn("Bad extended signature table checksum, aborting.\n");
201 			return -EINVAL;
202 		}
203 	}
204 
205 	/*
206 	 * Calculate the checksum of update data and header. The checksum of
207 	 * valid update data and header including the extended signature table
208 	 * must be 0.
209 	 */
210 	orig_sum = 0;
211 	i = (MC_HEADER_SIZE + data_size) / sizeof(u32);
212 	while (i--)
213 		orig_sum += ((u32 *)mc)[i];
214 
215 	if (orig_sum) {
216 		if (print_err)
217 			pr_err("Bad microcode data checksum, aborting.\n");
218 		return -EINVAL;
219 	}
220 
221 	if (!ext_table_size)
222 		return 0;
223 
224 	/*
225 	 * Check extended signature checksum: 0 => valid.
226 	 */
227 	for (i = 0; i < ext_sigcount; i++) {
228 		ext_sig = (void *)ext_header + EXT_HEADER_SIZE +
229 			  EXT_SIGNATURE_SIZE * i;
230 
231 		sum = (mc_header->sig + mc_header->pf + mc_header->cksum) -
232 		      (ext_sig->sig + ext_sig->pf + ext_sig->cksum);
233 		if (sum) {
234 			if (print_err)
235 				pr_err("Bad extended signature checksum, aborting.\n");
236 			return -EINVAL;
237 		}
238 	}
239 	return 0;
240 }
241 EXPORT_SYMBOL_GPL(intel_microcode_sanity_check);
242 
243 static void save_microcode_patch(void *data, unsigned int size)
244 {
245 	struct microcode_header_intel *p;
246 
247 	p = kmemdup(data, size, GFP_KERNEL);
248 	if (!p)
249 		return;
250 
251 	kfree(intel_ucode_patch);
252 	/* Save for early loading */
253 	intel_ucode_patch = (struct microcode_intel *)p;
254 }
255 
256 /* Scan CPIO for microcode matching the boot CPU's family, model, stepping */
257 static struct microcode_intel *scan_microcode(void *data, size_t size,
258 					      struct ucode_cpu_info *uci, bool save)
259 {
260 	struct microcode_header_intel *mc_header;
261 	struct microcode_intel *patch = NULL;
262 	u32 cur_rev = uci->cpu_sig.rev;
263 	unsigned int mc_size;
264 
265 	for (; size >= sizeof(struct microcode_header_intel); size -= mc_size, data += mc_size) {
266 		mc_header = (struct microcode_header_intel *)data;
267 
268 		mc_size = get_totalsize(mc_header);
269 		if (!mc_size || mc_size > size ||
270 		    intel_microcode_sanity_check(data, false, MC_HEADER_TYPE_MICROCODE) < 0)
271 			break;
272 
273 		if (!intel_find_matching_signature(data, uci->cpu_sig.sig, uci->cpu_sig.pf))
274 			continue;
275 
276 		/* BSP scan: Check whether there is newer microcode */
277 		if (!save && cur_rev >= mc_header->rev)
278 			continue;
279 
280 		/* Save scan: Check whether there is newer or matching microcode */
281 		if (save && cur_rev != mc_header->rev)
282 			continue;
283 
284 		patch = data;
285 		cur_rev = mc_header->rev;
286 	}
287 
288 	if (size)
289 		return NULL;
290 
291 	if (save && patch)
292 		save_microcode_patch(patch, mc_size);
293 
294 	return patch;
295 }
296 
297 static int apply_microcode_early(struct ucode_cpu_info *uci)
298 {
299 	struct microcode_intel *mc;
300 	u32 rev, old_rev, date;
301 
302 	mc = uci->mc;
303 	if (!mc)
304 		return 0;
305 
306 	/*
307 	 * Save us the MSR write below - which is a particular expensive
308 	 * operation - when the other hyperthread has updated the microcode
309 	 * already.
310 	 */
311 	rev = intel_get_microcode_revision();
312 	if (rev >= mc->hdr.rev) {
313 		uci->cpu_sig.rev = rev;
314 		return UCODE_OK;
315 	}
316 
317 	old_rev = rev;
318 
319 	/*
320 	 * Writeback and invalidate caches before updating microcode to avoid
321 	 * internal issues depending on what the microcode is updating.
322 	 */
323 	native_wbinvd();
324 
325 	/* write microcode via MSR 0x79 */
326 	native_wrmsrl(MSR_IA32_UCODE_WRITE, (unsigned long)mc->bits);
327 
328 	rev = intel_get_microcode_revision();
329 	if (rev != mc->hdr.rev)
330 		return -1;
331 
332 	uci->cpu_sig.rev = rev;
333 
334 	date = mc->hdr.date;
335 	pr_info_once("updated early: 0x%x -> 0x%x, date = %04x-%02x-%02x\n",
336 		     old_rev, rev, date & 0xffff, date >> 24, (date >> 16) & 0xff);
337 	return 0;
338 }
339 
340 static bool load_builtin_intel_microcode(struct cpio_data *cp)
341 {
342 	unsigned int eax = 1, ebx, ecx = 0, edx;
343 	struct firmware fw;
344 	char name[30];
345 
346 	if (IS_ENABLED(CONFIG_X86_32))
347 		return false;
348 
349 	native_cpuid(&eax, &ebx, &ecx, &edx);
350 
351 	sprintf(name, "intel-ucode/%02x-%02x-%02x",
352 		x86_family(eax), x86_model(eax), x86_stepping(eax));
353 
354 	if (firmware_request_builtin(&fw, name)) {
355 		cp->size = fw.size;
356 		cp->data = (void *)fw.data;
357 		return true;
358 	}
359 	return false;
360 }
361 
362 int __init save_microcode_in_initrd_intel(void)
363 {
364 	struct ucode_cpu_info uci;
365 	struct cpio_data cp;
366 
367 	/*
368 	 * initrd is going away, clear patch ptr. We will scan the microcode one
369 	 * last time before jettisoning and save a patch, if found. Then we will
370 	 * update that pointer too, with a stable patch address to use when
371 	 * resuming the cores.
372 	 */
373 	intel_ucode_patch = NULL;
374 
375 	if (!load_builtin_intel_microcode(&cp))
376 		cp = find_microcode_in_initrd(ucode_path);
377 
378 	if (!(cp.data && cp.size))
379 		return 0;
380 
381 	intel_cpu_collect_info(&uci);
382 
383 	scan_microcode(cp.data, cp.size, &uci, true);
384 	return 0;
385 }
386 
387 /*
388  * @res_patch, output: a pointer to the patch we found.
389  */
390 static struct microcode_intel *__load_ucode_intel(struct ucode_cpu_info *uci)
391 {
392 	struct cpio_data cp;
393 
394 	/* try built-in microcode first */
395 	if (!load_builtin_intel_microcode(&cp))
396 		cp = find_microcode_in_initrd(ucode_path);
397 
398 	if (!(cp.data && cp.size))
399 		return NULL;
400 
401 	intel_cpu_collect_info(uci);
402 
403 	return scan_microcode(cp.data, cp.size, uci, false);
404 }
405 
406 void __init load_ucode_intel_bsp(void)
407 {
408 	struct microcode_intel *patch;
409 	struct ucode_cpu_info uci;
410 
411 	patch = __load_ucode_intel(&uci);
412 	if (!patch)
413 		return;
414 
415 	uci.mc = patch;
416 
417 	apply_microcode_early(&uci);
418 }
419 
420 void load_ucode_intel_ap(void)
421 {
422 	struct ucode_cpu_info uci;
423 
424 	if (!intel_ucode_patch) {
425 		intel_ucode_patch = __load_ucode_intel(&uci);
426 		if (!intel_ucode_patch)
427 			return;
428 	}
429 
430 	uci.mc = intel_ucode_patch;
431 	apply_microcode_early(&uci);
432 }
433 
434 void reload_ucode_intel(void)
435 {
436 	struct ucode_cpu_info uci;
437 
438 	intel_cpu_collect_info(&uci);
439 
440 	uci.mc = intel_ucode_patch;
441 	if (!uci.mc)
442 		return;
443 
444 	apply_microcode_early(&uci);
445 }
446 
447 static int collect_cpu_info(int cpu_num, struct cpu_signature *csig)
448 {
449 	struct cpuinfo_x86 *c = &cpu_data(cpu_num);
450 	unsigned int val[2];
451 
452 	memset(csig, 0, sizeof(*csig));
453 
454 	csig->sig = cpuid_eax(0x00000001);
455 
456 	if ((c->x86_model >= 5) || (c->x86 > 6)) {
457 		/* get processor flags from MSR 0x17 */
458 		rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]);
459 		csig->pf = 1 << ((val[1] >> 18) & 7);
460 	}
461 
462 	csig->rev = c->microcode;
463 
464 	return 0;
465 }
466 
467 static enum ucode_state apply_microcode_intel(int cpu)
468 {
469 	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
470 	struct cpuinfo_x86 *c = &cpu_data(cpu);
471 	bool bsp = c->cpu_index == boot_cpu_data.cpu_index;
472 	struct microcode_intel *mc;
473 	enum ucode_state ret;
474 	static int prev_rev;
475 	u32 rev;
476 
477 	/* We should bind the task to the CPU */
478 	if (WARN_ON(raw_smp_processor_id() != cpu))
479 		return UCODE_ERROR;
480 
481 	mc = intel_ucode_patch;
482 	if (!mc) {
483 		mc = uci->mc;
484 		if (!mc)
485 			return UCODE_NFOUND;
486 	}
487 
488 	/*
489 	 * Save us the MSR write below - which is a particular expensive
490 	 * operation - when the other hyperthread has updated the microcode
491 	 * already.
492 	 */
493 	rev = intel_get_microcode_revision();
494 	if (rev >= mc->hdr.rev) {
495 		ret = UCODE_OK;
496 		goto out;
497 	}
498 
499 	/*
500 	 * Writeback and invalidate caches before updating microcode to avoid
501 	 * internal issues depending on what the microcode is updating.
502 	 */
503 	native_wbinvd();
504 
505 	/* write microcode via MSR 0x79 */
506 	wrmsrl(MSR_IA32_UCODE_WRITE, (unsigned long)mc->bits);
507 
508 	rev = intel_get_microcode_revision();
509 
510 	if (rev != mc->hdr.rev) {
511 		pr_err("CPU%d update to revision 0x%x failed\n",
512 		       cpu, mc->hdr.rev);
513 		return UCODE_ERROR;
514 	}
515 
516 	if (bsp && rev != prev_rev) {
517 		pr_info("updated to revision 0x%x, date = %04x-%02x-%02x\n",
518 			rev,
519 			mc->hdr.date & 0xffff,
520 			mc->hdr.date >> 24,
521 			(mc->hdr.date >> 16) & 0xff);
522 		prev_rev = rev;
523 	}
524 
525 	ret = UCODE_UPDATED;
526 
527 out:
528 	uci->cpu_sig.rev = rev;
529 	c->microcode	 = rev;
530 
531 	/* Update boot_cpu_data's revision too, if we're on the BSP: */
532 	if (bsp)
533 		boot_cpu_data.microcode = rev;
534 
535 	return ret;
536 }
537 
538 static enum ucode_state parse_microcode_blobs(int cpu, struct iov_iter *iter)
539 {
540 	struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
541 	unsigned int curr_mc_size = 0, new_mc_size = 0;
542 	int cur_rev = uci->cpu_sig.rev;
543 	u8 *new_mc = NULL, *mc = NULL;
544 
545 	while (iov_iter_count(iter)) {
546 		struct microcode_header_intel mc_header;
547 		unsigned int mc_size, data_size;
548 		u8 *data;
549 
550 		if (!copy_from_iter_full(&mc_header, sizeof(mc_header), iter)) {
551 			pr_err("error! Truncated or inaccessible header in microcode data file\n");
552 			break;
553 		}
554 
555 		mc_size = get_totalsize(&mc_header);
556 		if (mc_size < sizeof(mc_header)) {
557 			pr_err("error! Bad data in microcode data file (totalsize too small)\n");
558 			break;
559 		}
560 
561 		data_size = mc_size - sizeof(mc_header);
562 		if (data_size > iov_iter_count(iter)) {
563 			pr_err("error! Bad data in microcode data file (truncated file?)\n");
564 			break;
565 		}
566 
567 		/* For performance reasons, reuse mc area when possible */
568 		if (!mc || mc_size > curr_mc_size) {
569 			vfree(mc);
570 			mc = vmalloc(mc_size);
571 			if (!mc)
572 				break;
573 			curr_mc_size = mc_size;
574 		}
575 
576 		memcpy(mc, &mc_header, sizeof(mc_header));
577 		data = mc + sizeof(mc_header);
578 		if (!copy_from_iter_full(data, data_size, iter) ||
579 		    intel_microcode_sanity_check(mc, true, MC_HEADER_TYPE_MICROCODE) < 0) {
580 			break;
581 		}
582 
583 		if (cur_rev >= mc_header.rev)
584 			continue;
585 
586 		if (!intel_find_matching_signature(mc, uci->cpu_sig.sig, uci->cpu_sig.pf))
587 			continue;
588 
589 		vfree(new_mc);
590 		cur_rev = mc_header.rev;
591 		new_mc  = mc;
592 		new_mc_size = mc_size;
593 		mc = NULL;
594 	}
595 
596 	vfree(mc);
597 
598 	if (iov_iter_count(iter)) {
599 		vfree(new_mc);
600 		return UCODE_ERROR;
601 	}
602 
603 	if (!new_mc)
604 		return UCODE_NFOUND;
605 
606 	vfree(uci->mc);
607 	uci->mc = (struct microcode_intel *)new_mc;
608 
609 	/* Save for CPU hotplug */
610 	save_microcode_patch(new_mc, new_mc_size);
611 
612 	pr_debug("CPU%d found a matching microcode update with version 0x%x (current=0x%x)\n",
613 		 cpu, cur_rev, uci->cpu_sig.rev);
614 
615 	return UCODE_NEW;
616 }
617 
618 static bool is_blacklisted(unsigned int cpu)
619 {
620 	struct cpuinfo_x86 *c = &cpu_data(cpu);
621 
622 	/*
623 	 * Late loading on model 79 with microcode revision less than 0x0b000021
624 	 * and LLC size per core bigger than 2.5MB may result in a system hang.
625 	 * This behavior is documented in item BDF90, #334165 (Intel Xeon
626 	 * Processor E7-8800/4800 v4 Product Family).
627 	 */
628 	if (c->x86 == 6 &&
629 	    c->x86_model == INTEL_FAM6_BROADWELL_X &&
630 	    c->x86_stepping == 0x01 &&
631 	    llc_size_per_core > 2621440 &&
632 	    c->microcode < 0x0b000021) {
633 		pr_err_once("Erratum BDF90: late loading with revision < 0x0b000021 (0x%x) disabled.\n", c->microcode);
634 		pr_err_once("Please consider either early loading through initrd/built-in or a potential BIOS update.\n");
635 		return true;
636 	}
637 
638 	return false;
639 }
640 
641 static enum ucode_state request_microcode_fw(int cpu, struct device *device)
642 {
643 	struct cpuinfo_x86 *c = &cpu_data(cpu);
644 	const struct firmware *firmware;
645 	struct iov_iter iter;
646 	enum ucode_state ret;
647 	struct kvec kvec;
648 	char name[30];
649 
650 	if (is_blacklisted(cpu))
651 		return UCODE_NFOUND;
652 
653 	sprintf(name, "intel-ucode/%02x-%02x-%02x",
654 		c->x86, c->x86_model, c->x86_stepping);
655 
656 	if (request_firmware_direct(&firmware, name, device)) {
657 		pr_debug("data file %s load failed\n", name);
658 		return UCODE_NFOUND;
659 	}
660 
661 	kvec.iov_base = (void *)firmware->data;
662 	kvec.iov_len = firmware->size;
663 	iov_iter_kvec(&iter, ITER_SOURCE, &kvec, 1, firmware->size);
664 	ret = parse_microcode_blobs(cpu, &iter);
665 
666 	release_firmware(firmware);
667 
668 	return ret;
669 }
670 
671 static struct microcode_ops microcode_intel_ops = {
672 	.request_microcode_fw	= request_microcode_fw,
673 	.collect_cpu_info	= collect_cpu_info,
674 	.apply_microcode	= apply_microcode_intel,
675 };
676 
677 static __init void calc_llc_size_per_core(struct cpuinfo_x86 *c)
678 {
679 	u64 llc_size = c->x86_cache_size * 1024ULL;
680 
681 	do_div(llc_size, c->x86_max_cores);
682 	llc_size_per_core = (unsigned int)llc_size;
683 }
684 
685 struct microcode_ops * __init init_intel_microcode(void)
686 {
687 	struct cpuinfo_x86 *c = &boot_cpu_data;
688 
689 	if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 ||
690 	    cpu_has(c, X86_FEATURE_IA64)) {
691 		pr_err("Intel CPU family 0x%x not supported\n", c->x86);
692 		return NULL;
693 	}
694 
695 	calc_llc_size_per_core(c);
696 
697 	return &microcode_intel_ops;
698 }
699