summaryrefslogtreecommitdiffstats
path: root/src/soc/qualcomm/sdm845/bootblock.c
blob: 8065c1d977deececcd9643f9981e93e03b8a984c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-only */

#include <bootblock_common.h>
#include <soc/mmu.h>
#include <soc/clock.h>
#include <soc/qspi.h>

void bootblock_soc_init(void)
{
	clock_init();
	sdm845_mmu_init();
	quadspi_init(25 * MHz);
}