blob: 93845239836047fb5e48dbe4d5c1b30cacb37178 [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Nitheesh Sekar20e75872018-09-14 11:24:10 +05302
3#include <bootblock_common.h>
Nitheesh Sekar6bee0ce2018-09-14 18:50:38 +05304#include <soc/mmu.h>
Pranav Agrawale651e012018-11-20 18:16:26 +05305#include <soc/clock.h>
6
7void bootblock_soc_early_init(void)
8{
9 clock_init();
10}
Nitheesh Sekar20e75872018-09-14 11:24:10 +053011
12void bootblock_soc_init(void)
13{
Nitheesh Sekar6bee0ce2018-09-14 18:50:38 +053014 qcs405_mmu_init();
Nitheesh Sekar20e75872018-09-14 11:24:10 +053015}