Home
last modified time | relevance | path

Searched refs:other_core_id (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.7.0/components/esp_system/port/soc/esp32/
Dsystem_internal.c79 const uint32_t other_core_id = (core_id == 0) ? 1 : 0; in esp_restart_noos() local
80 esp_rom_software_reset_cpu(other_core_id); in esp_restart_noos()
81 esp_cpu_stall(other_core_id); in esp_restart_noos()
/hal_espressif-3.7.0/components/esp_system/port/soc/esp32s3/
Dsystem_internal.c114 const uint32_t other_core_id = (core_id == 0) ? 1 : 0; in esp_restart_noos() local
115 esp_rom_software_reset_cpu(other_core_id); in esp_restart_noos()
116 esp_cpu_stall(other_core_id); in esp_restart_noos()
/hal_espressif-3.7.0/components/esp_hw_support/include/
Dspinlock.h70 uint32_t core_id, other_core_id; in spinlock_acquire() local
79 other_core_id = CORE_ID_REGVAL_XOR_SWAP ^ core_id; in spinlock_acquire()
125 assert(lock->owner == SPINLOCK_FREE || lock->owner == other_core_id); in spinlock_acquire()
/hal_espressif-3.7.0/components/esp_system/port/
Dbrownout.c43 const uint32_t other_core_id = (core_id == 0) ? 1 : 0; in rtc_brownout_isr_handler() local
44 esp_cpu_stall(other_core_id); in rtc_brownout_isr_handler()
/hal_espressif-3.7.0/components/esp_pm/
Dpm_impl.c411 int other_core_id = (core_id == 0) ? 1 : 0; in on_freq_update() local
413 s_need_update_ccompare[other_core_id] = true; in on_freq_update()
414 esp_crosscore_int_send_freq_switch(other_core_id); in on_freq_update()
417 while (s_need_update_ccompare[other_core_id]) { in on_freq_update()