blob: 7dbaeecdf753da670b6c8933be869ce1b0cc457a (
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/clock.h>
#include <soc/mmu.h>
#include <soc/qspi.h>
#include <soc/qupv3_config.h>
void bootblock_soc_init(void)
{
sc7180_mmu_init();
clock_init();
quadspi_init(37500 * KHz);
qupv3_fw_init();
}
|