Home
last modified time | relevance | path

Searched refs:MC_HEADER_SIZE (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/arch/x86/include/asm/
Dmicrocode_intel.h40 #define MC_HEADER_SIZE (sizeof(struct microcode_header_intel)) macro
41 #define DEFAULT_UCODE_TOTALSIZE (DEFAULT_UCODE_DATASIZE + MC_HEADER_SIZE)
/linux-6.1.9/arch/x86/kernel/cpu/microcode/
Dintel.c62 if (get_totalsize(mc_hdr) <= get_datasize(mc_hdr) + MC_HEADER_SIZE) in find_matching_signature()
65 ext_hdr = mc + get_datasize(mc_hdr) + MC_HEADER_SIZE; in find_matching_signature()
177 if (data_size + MC_HEADER_SIZE > total_size) { in microcode_sanity_check()
189 ext_table_size = total_size - (MC_HEADER_SIZE + data_size); in microcode_sanity_check()
201 ext_header = mc + MC_HEADER_SIZE + data_size; in microcode_sanity_check()
233 i = (MC_HEADER_SIZE + data_size) / sizeof(u32); in microcode_sanity_check()
374 if (total_size <= data_size + MC_HEADER_SIZE) in show_saved_mc()
377 ext_header = (void *)mc_saved_header + data_size + MC_HEADER_SIZE; in show_saved_mc()
/linux-6.1.9/drivers/platform/x86/intel/ifs/
Dload.c181 if ((data_size + MC_HEADER_SIZE > total_size) || (total_size % sizeof(u32))) { in ifs_sanity_check()