blob: c108157573093aea46efbbbfe0ab6dd452e9ae3f [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-only */
T Michael Turney7783c602019-10-09 07:04:54 -07002
3#include <bootblock_common.h>
Taniya Das0e03aa22019-08-07 11:28:28 +05304#include <soc/clock.h>
Ravi Kumar Bokka42394582021-07-16 16:59:25 +05305#include <soc/qspi_common.h>
Ravi Kumar Bokka34960d42021-07-27 21:02:54 +05306#include <soc/qupv3_config_common.h>
T Michael Turney7783c602019-10-09 07:04:54 -07007
8void bootblock_soc_init(void)
9{
Taniya Das0e03aa22019-08-07 11:28:28 +053010 clock_init();
Shelley Chen363202b2022-05-11 18:29:19 -070011 quadspi_init(37500 * KHz, 0);
T Michael Turneycea0d9c2019-11-27 19:28:23 -080012 qupv3_fw_init();
T Michael Turney7783c602019-10-09 07:04:54 -070013}