summaryrefslogtreecommitdiffstats
path: root/src/soc/qualcomm/qcs405/bootblock.c
blob: b7f912a7c41ca2e97b07b4871d4e123c64c1525e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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>

void bootblock_soc_early_init(void)
{
	clock_init();
}

void bootblock_soc_init(void)
{
	qcs405_mmu_init();
}