From 8a536eeda03959bf871e8fd837eb22b8ebff9def Mon Sep 17 00:00:00 2001 From: Erhan Kurubas Date: Thu, 19 Mar 2026 15:24:27 +0100 Subject: [PATCH] fix(mspi): enable PSRAM core clock in module clock init psram_ctrlr_ll_enable_module_clock() was missing reg_psram_core_clk_en, causing SPIMEM2 access faults after system reset. --- components/esp_hal_mspi/esp32p4/include/hal/psram_ctrlr_ll.h | 1 + 1 file changed, 1 insertion(+) diff --git a/components/esp_hal_mspi/esp32p4/include/hal/psram_ctrlr_ll.h b/components/esp_hal_mspi/esp32p4/include/hal/psram_ctrlr_ll.h index 6538d54e32..af138f4a06 100644 --- a/components/esp_hal_mspi/esp32p4/include/hal/psram_ctrlr_ll.h +++ b/components/esp_hal_mspi/esp32p4/include/hal/psram_ctrlr_ll.h @@ -375,6 +375,7 @@ static inline void _psram_ctrlr_ll_enable_module_clock(uint32_t mspi_id, bool en (void)mspi_id; HP_SYS_CLKRST.soc_clk_ctrl0.reg_psram_sys_clk_en = en; HP_SYS_CLKRST.peri_clk_ctrl00.reg_psram_pll_clk_en = en; + HP_SYS_CLKRST.peri_clk_ctrl00.reg_psram_core_clk_en = en; } /// use a macro to wrap the function, force the caller to use it in a critical section