summaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/sc7180/bootblock.c
blob: f7d56041069886d03650828adf9ab9282717c169 (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/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();
}