/* * Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd. * * SPDX-License-Identifier: Apache-2.0 */ /* Include esp-idf headers first to avoid redefining BIT() macro */ #include #include #include #include #include #include #include "hal/wdt_hal.h" #include "esp_cpu.h" #include "hal/soc_hal.h" #include "hal/cpu_hal.h" #include "esp_timer.h" #include "esp_private/system_internal.h" #include "esp_clk_internal.h" #include #include #include "esp_private/esp_mmu_map_private.h" #include #include #include #include #include #include extern void esp_reset_reason_init(void); /* * This is written in C rather than assembly since, during the port bring up, * Zephyr is being booted by the Espressif bootloader. With it, the C stack * is already set up. */ void __attribute__((section(".iram1"))) __esp_platform_start(void) { __asm__ __volatile__("la t0, _esp32c3_vector_table\n" "csrw mtvec, t0\n"); z_bss_zero(); /* Disable normal interrupts. */ csr_read_clear(mstatus, MSTATUS_MIE); esp_reset_reason_init(); #ifndef CONFIG_MCUBOOT /* ESP-IDF 2nd stage bootloader enables RTC WDT to check on startup sequence * related issues in application. Hence disable that as we are about to start * Zephyr environment. */ wdt_hal_context_t rtc_wdt_ctx = {.inst = WDT_RWDT, .rwdt_dev = &RTCCNTL}; wdt_hal_write_protect_disable(&rtc_wdt_ctx); wdt_hal_disable(&rtc_wdt_ctx); wdt_hal_write_protect_enable(&rtc_wdt_ctx); /* Enable wireless phy subsystem clock, * This needs to be done before the kernel starts */ REG_CLR_BIT(SYSTEM_WIFI_CLK_EN_REG, SYSTEM_WIFI_CLK_SDIOSLAVE_EN); SET_PERI_REG_MASK(SYSTEM_WIFI_CLK_EN_REG, SYSTEM_WIFI_CLK_EN); #ifdef CONFIG_SOC_FLASH_ESP32 esp_mspi_pin_init(); /** * This function initialise the Flash chip to the user-defined settings. * * In bootloader, we only init Flash (and MSPI) to a preliminary * state, for being flexible to different chips. * In this stage, we re-configure the Flash (and MSPI) to required configuration */ spi_flash_init_chip_state(); esp_mmu_map_init(); #endif /*CONFIG_SOC_FLASH_ESP32*/ esp_timer_early_init(); #if CONFIG_SOC_FLASH_ESP32 spi_flash_guard_set(&g_flash_guard_default_ops); #endif #endif /* !CONFIG_MCUBOOT */ /*Initialize the esp32c3 interrupt controller */ esp_intr_initialize(); /* Start Zephyr */ z_cstart(); CODE_UNREACHABLE; } /* Boot-time static default printk handler, possibly to be overridden later. */ int IRAM_ATTR arch_printk_char_out(int c) { if (c == '\n') { esp_rom_uart_tx_one_char('\r'); } esp_rom_uart_tx_one_char(c); return 0; } void sys_arch_reboot(int type) { esp_restart_noos(); }