1 #ifndef _ASM_X86_MICROCODE_AMD_H
2 #define _ASM_X86_MICROCODE_AMD_H
4 #include <asm/microcode.h>
6 #define UCODE_MAGIC 0x00414d44
7 #define UCODE_EQUIV_CPU_TABLE_TYPE 0x00000000
8 #define UCODE_UCODE_TYPE 0x00000001
10 #define SECTION_HDR_SIZE 8
11 #define CONTAINER_HDR_SZ 12
13 struct equiv_cpu_entry
{
15 u32 fixed_errata_mask
;
16 u32 fixed_errata_compare
;
19 } __attribute__((packed
));
21 struct microcode_header_amd
{
27 u32 mc_patch_data_checksum
;
36 } __attribute__((packed
));
38 struct microcode_amd
{
39 struct microcode_header_amd hdr
;
43 #define PATCH_MAX_SIZE PAGE_SIZE
45 #ifdef CONFIG_MICROCODE_AMD
46 extern void __init
load_ucode_amd_bsp(unsigned int family
);
47 extern void load_ucode_amd_ap(unsigned int family
);
48 extern int __init
save_microcode_in_initrd_amd(unsigned int family
);
49 void reload_ucode_amd(void);
51 static inline void __init
load_ucode_amd_bsp(unsigned int family
) {}
52 static inline void load_ucode_amd_ap(unsigned int family
) {}
53 static inline int __init
54 save_microcode_in_initrd_amd(unsigned int family
) { return -EINVAL
; }
55 void reload_ucode_amd(void) {}
57 #endif /* _ASM_X86_MICROCODE_AMD_H */