xref: /openbmc/linux/arch/x86/include/asm/microcode.h (revision d02a0efd)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_MICROCODE_H
3 #define _ASM_X86_MICROCODE_H
4 
5 struct cpu_signature {
6 	unsigned int sig;
7 	unsigned int pf;
8 	unsigned int rev;
9 };
10 
11 struct ucode_cpu_info {
12 	struct cpu_signature	cpu_sig;
13 	void			*mc;
14 };
15 
16 #ifdef CONFIG_MICROCODE
17 void load_ucode_bsp(void);
18 void load_ucode_ap(void);
19 void microcode_bsp_resume(void);
20 #else
load_ucode_bsp(void)21 static inline void load_ucode_bsp(void)	{ }
load_ucode_ap(void)22 static inline void load_ucode_ap(void) { }
microcode_bsp_resume(void)23 static inline void microcode_bsp_resume(void) { }
24 #endif
25 
26 #ifdef CONFIG_CPU_SUP_INTEL
27 /* Intel specific microcode defines. Public for IFS */
28 struct microcode_header_intel {
29 	unsigned int	hdrver;
30 	unsigned int	rev;
31 	unsigned int	date;
32 	unsigned int	sig;
33 	unsigned int	cksum;
34 	unsigned int	ldrver;
35 	unsigned int	pf;
36 	unsigned int	datasize;
37 	unsigned int	totalsize;
38 	unsigned int	metasize;
39 	unsigned int	reserved[2];
40 };
41 
42 struct microcode_intel {
43 	struct microcode_header_intel	hdr;
44 	unsigned int			bits[];
45 };
46 
47 #define DEFAULT_UCODE_DATASIZE		(2000)
48 #define MC_HEADER_SIZE			(sizeof(struct microcode_header_intel))
49 #define MC_HEADER_TYPE_MICROCODE	1
50 #define MC_HEADER_TYPE_IFS		2
51 
intel_microcode_get_datasize(struct microcode_header_intel * hdr)52 static inline int intel_microcode_get_datasize(struct microcode_header_intel *hdr)
53 {
54 	return hdr->datasize ? : DEFAULT_UCODE_DATASIZE;
55 }
56 
intel_get_microcode_revision(void)57 static inline u32 intel_get_microcode_revision(void)
58 {
59 	u32 rev, dummy;
60 
61 	native_wrmsrl(MSR_IA32_UCODE_REV, 0);
62 
63 	/* As documented in the SDM: Do a CPUID 1 here */
64 	native_cpuid_eax(1);
65 
66 	/* get the current revision from MSR 0x8B */
67 	native_rdmsr(MSR_IA32_UCODE_REV, dummy, rev);
68 
69 	return rev;
70 }
71 
72 void show_ucode_info_early(void);
73 
74 #else /* CONFIG_CPU_SUP_INTEL */
show_ucode_info_early(void)75 static inline void show_ucode_info_early(void) { }
76 #endif /* !CONFIG_CPU_SUP_INTEL */
77 
78 #endif /* _ASM_X86_MICROCODE_H */
79