• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootblock_common.h>
4 #include <soc/clock.h>
5 #include <soc/qspi_common.h>
6 #include <soc/qupv3_config_common.h>
7 
bootblock_soc_init(void)8 void bootblock_soc_init(void)
9 {
10 	clock_init();
11 	quadspi_init(37500 * KHz);
12 	qupv3_fw_init();
13 }
14