mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			89 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: Apache-2.0
 | 
						|
 */
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include "esp_macros.h"
 | 
						|
#include "esp_cpu.h"
 | 
						|
#include "soc/soc.h"
 | 
						|
#include "soc/soc_caps.h"
 | 
						|
#include "hal/clk_tree_ll.h"
 | 
						|
#include "esp_private/esp_clk_utils.h"
 | 
						|
#include "esp_private/rtc_clk.h"
 | 
						|
#include "esp_private/panic_internal.h"
 | 
						|
#include "esp_private/system_internal.h"
 | 
						|
#include "esp_heap_caps.h"
 | 
						|
#include "esp_rom_serial_output.h"
 | 
						|
#include "esp_rom_sys.h"
 | 
						|
#include "sdkconfig.h"
 | 
						|
 | 
						|
// used only by ESP32 panic handler
 | 
						|
#ifdef CONFIG_IDF_TARGET_ESP32
 | 
						|
void esp_restart_noos_dig(void)
 | 
						|
{
 | 
						|
    // In case any of the calls below results in re-enabling of interrupts
 | 
						|
    // (for example, by entering a critical section), disable all the
 | 
						|
    // interrupts (e.g. from watchdogs) here.
 | 
						|
#ifdef CONFIG_IDF_TARGET_ARCH_RISCV
 | 
						|
    rv_utils_intr_global_disable();
 | 
						|
#else
 | 
						|
    xt_ints_off(0xFFFFFFFF);
 | 
						|
#endif
 | 
						|
 | 
						|
    if (CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM != -1) {
 | 
						|
        esp_rom_output_tx_wait_idle(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM);
 | 
						|
    }
 | 
						|
 | 
						|
#if !CONFIG_APP_BUILD_TYPE_PURE_RAM_APP
 | 
						|
    uint32_t xtal_freq = clk_ll_xtal_load_freq_mhz();
 | 
						|
    esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching(xtal_freq, xtal_freq);
 | 
						|
#endif
 | 
						|
    // switch to XTAL (otherwise we will keep running from the PLL)
 | 
						|
    rtc_clk_cpu_set_to_default_config();
 | 
						|
 | 
						|
    // esp_restart_noos_dig() will generates a core reset, which does not reset the
 | 
						|
    // registers of the RTC domain, so the CPU's stall state remains after the reset,
 | 
						|
    // we need to release them here
 | 
						|
#if !CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE
 | 
						|
    // unstall all other cores
 | 
						|
    int core_id = esp_cpu_get_core_id();
 | 
						|
    for (uint32_t i = 0; i < SOC_CPU_CORES_NUM; i++) {
 | 
						|
        if (i != core_id) {
 | 
						|
            esp_cpu_unstall(i);
 | 
						|
        }
 | 
						|
    }
 | 
						|
#endif
 | 
						|
    // generate core reset
 | 
						|
    esp_rom_software_reset_system();
 | 
						|
 | 
						|
    ESP_INFINITE_LOOP();
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
uint32_t esp_get_free_heap_size(void)
 | 
						|
{
 | 
						|
    return heap_caps_get_free_size(MALLOC_CAP_DEFAULT);
 | 
						|
}
 | 
						|
 | 
						|
uint32_t esp_get_free_internal_heap_size(void)
 | 
						|
{
 | 
						|
    return heap_caps_get_free_size(MALLOC_CAP_8BIT | MALLOC_CAP_DMA | MALLOC_CAP_INTERNAL);
 | 
						|
}
 | 
						|
 | 
						|
uint32_t esp_get_minimum_free_heap_size(void)
 | 
						|
{
 | 
						|
    return heap_caps_get_minimum_free_size(MALLOC_CAP_DEFAULT);
 | 
						|
}
 | 
						|
 | 
						|
const char *esp_get_idf_version(void)
 | 
						|
{
 | 
						|
    return IDF_VER;
 | 
						|
}
 | 
						|
 | 
						|
void __attribute__((noreturn)) esp_system_abort(const char *details)
 | 
						|
{
 | 
						|
    panic_abort(details);
 | 
						|
}
 |