diff options
Diffstat (limited to 'src/include/cpu/intel/microcode.h')
-rw-r--r-- | src/include/cpu/intel/microcode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/cpu/intel/microcode.h b/src/include/cpu/intel/microcode.h index d2fa1b755f..73b1c424ed 100644 --- a/src/include/cpu/intel/microcode.h +++ b/src/include/cpu/intel/microcode.h @@ -29,6 +29,10 @@ const void *intel_microcode_find(void); * well as ensuring the microcode matches the family and revision (i.e. with * intel_microcode_find()). */ void intel_microcode_load_unlocked(const void *microcode_patch); + +/* SoC specific check to determine if microcode update is really + * required, will skip microcode update if true. */ +int soc_skip_ucode_update(u32 currrent_patch_id, u32 new_patch_id); #endif #endif |