blob: 365b7d4460201ce7b6d303989c6511fe4e02aa63 [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 Chen1720ba5e2023-02-23 22:40:42 +000011 quadspi_init(37500 * KHz);
T Michael Turneycea0d9c2019-11-27 19:28:23 -080012 qupv3_fw_init();
T Michael Turney7783c602019-10-09 07:04:54 -070013}