We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 779106e + 5304897 commit 356e7b6Copy full SHA for 356e7b6
components/esp_system/port/cpu_start.c
@@ -630,6 +630,9 @@ void IRAM_ATTR call_start_cpu0(void)
630
REG_SET_BIT(SYSTEM_CORE_1_CONTROL_0_REG, SYSTEM_CONTROL_CORE_1_RUNSTALL);
631
REG_CLR_BIT(SYSTEM_CORE_1_CONTROL_0_REG, SYSTEM_CONTROL_CORE_1_RESETING);
632
#endif
633
+#elif CONFIG_IDF_TARGET_ESP32P4
634
+ REG_CLR_BIT(HP_SYS_CLKRST_SOC_CLK_CTRL0_REG, HP_SYS_CLKRST_REG_CORE1_CPU_CLK_EN);
635
+ REG_SET_BIT(HP_SYS_CLKRST_HP_RST_EN0_REG, HP_SYS_CLKRST_REG_RST_EN_CORE1_GLOBAL);
636
#endif // CONFIG_IDF_TARGET_ESP32
637
#endif // !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
638
#endif // SOC_CPU_CORES_NUM > 1
0 commit comments