summaryrefslogtreecommitdiff
path: root/src/soc/intel/cannonlake/bootblock/cpu.c
blob: 30c1a412ea30ba4339b464146386ebe8c8d1c0c0 (plain)
1
2
3
4
5
6
7
8
9
10
/* SPDX-License-Identifier: GPL-2.0-only */

#include <intelblocks/fast_spi.h>
#include <soc/bootblock.h>

void bootblock_cpu_init(void)
{
	/* Temporarily cache the memory-mapped boot media. */
	fast_spi_cache_bios_region();
}