diff --git a/src/soc/qualcomm/x1p42100/bootblock.c b/src/soc/qualcomm/x1p42100/bootblock.c index c6d8b9e4c5..d106912de7 100644 --- a/src/soc/qualcomm/x1p42100/bootblock.c +++ b/src/soc/qualcomm/x1p42100/bootblock.c @@ -7,11 +7,15 @@ #define SPI_BUS_CLOCK_FREQ (50 * MHz) +void bootblock_soc_early_init(void) +{ + if (!CONFIG(COMPRESS_BOOTBLOCK)) + soc_mmu_init(); +} + void bootblock_soc_init(void) { clock_init(); - if (!CONFIG(COMPRESS_BOOTBLOCK)) - soc_mmu_init(); quadspi_init(SPI_BUS_CLOCK_FREQ); qupv3_fw_init();