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