Attention is currently required from: Tim Wawrzynczak, Patrick Rudolph. Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/56152 )
Change subject: soc/intel/alderlake: Call cpu_fill_code_cache() from bootblock ......................................................................
soc/intel/alderlake: Call cpu_fill_code_cache() from bootblock
Make use of cpu_fill_code_cache() helper function to perform cache stress test.
TEST=This function perform cache stress test if SOC_INTEL_CAR_DEBUG is selected.
Change-Id: If0708737ce000eddd8d36876d195712d63c3915e Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/soc/intel/alderlake/bootblock/bootblock.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/56152/1
diff --git a/src/soc/intel/alderlake/bootblock/bootblock.c b/src/soc/intel/alderlake/bootblock/bootblock.c index b8086a4..cc08921 100644 --- a/src/soc/intel/alderlake/bootblock/bootblock.c +++ b/src/soc/intel/alderlake/bootblock/bootblock.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h> +#include <intelblocks/cpulib.h> #include <intelblocks/fast_spi.h> #include <intelblocks/systemagent.h> #include <intelblocks/tco.h> @@ -25,6 +26,7 @@
void bootblock_soc_init(void) { + cpu_fill_code_cache(); report_platform_info(); bootblock_pch_init();