diff --git a/src/soc/qualcomm/calypso/bootblock.c b/src/soc/qualcomm/calypso/bootblock.c index ce000dbc40..e277dcce76 100644 --- a/src/soc/qualcomm/calypso/bootblock.c +++ b/src/soc/qualcomm/calypso/bootblock.c @@ -2,6 +2,10 @@ #include #include +#include +#include + +#define SPI_BUS_CLOCK_FREQ (75 * MHz) void bootblock_soc_early_init(void) { @@ -11,5 +15,6 @@ void bootblock_soc_early_init(void) void bootblock_soc_init(void) { - /* Placeholder */ + quadspi_init(SPI_BUS_CLOCK_FREQ); + qupv3_fw_init(); }