From 0bea950a479cc5b3b3bc8f362fc356ad43f9f892 Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Mon, 25 Jan 2021 09:29:38 +0100 Subject: cpu/intel/microcode: Add caching layer in intel_microcode_find Cache the found microcode for faster subsequent accesses. Change-Id: Ic40d57964600f8f20ddb26c7d1691b043fd89f29 Signed-off-by: Patrick Rudolph Reviewed-on: https://review.coreboot.org/c/coreboot/+/49896 Reviewed-by: Angel Pons Reviewed-by: Arthur Heymans Tested-by: build bot (Jenkins) --- src/cpu/intel/microcode/microcode.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/cpu/intel') diff --git a/src/cpu/intel/microcode/microcode.c b/src/cpu/intel/microcode/microcode.c index 0f362d4b35..9d6d28b3e6 100644 --- a/src/cpu/intel/microcode/microcode.c +++ b/src/cpu/intel/microcode/microcode.c @@ -119,13 +119,16 @@ uint32_t get_microcode_checksum(const void *microcode) const void *intel_microcode_find(void) { - const struct microcode *ucode_updates; + static const struct microcode *ucode_updates; size_t microcode_len; u32 eax; u32 pf, rev, sig, update_size; unsigned int x86_model, x86_family; msr_t msr; + if (ucode_updates) + return ucode_updates; + ucode_updates = cbfs_map(MICROCODE_CBFS_FILE, µcode_len); if (ucode_updates == NULL) return NULL; @@ -173,6 +176,8 @@ const void *intel_microcode_find(void) microcode_len -= update_size; } + ucode_updates = NULL; + return NULL; } -- cgit v1.2.3