system_internal.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. * SPDX-FileCopyrightText: 2018-2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <string.h>
  7. #include "esp_system.h"
  8. #include "esp_private/system_internal.h"
  9. #include "esp_attr.h"
  10. #include "esp_efuse.h"
  11. #include "esp_log.h"
  12. #include "esp_ipc_isr.h"
  13. #include "sdkconfig.h"
  14. #include "esp_rom_uart.h"
  15. #include "soc/dport_reg.h"
  16. #include "soc/gpio_periph.h"
  17. #include "soc/efuse_periph.h"
  18. #include "soc/rtc_periph.h"
  19. #include "soc/timer_periph.h"
  20. #include "esp_cpu.h"
  21. #include "soc/rtc.h"
  22. #include "esp_private/rtc_clk.h"
  23. #include "hal/wdt_hal.h"
  24. #include "freertos/xtensa_api.h"
  25. #include "soc/soc_memory_layout.h"
  26. #include "esp_private/cache_err_int.h"
  27. #include "esp32/rom/cache.h"
  28. #include "esp32/rom/rtc.h"
  29. void IRAM_ATTR esp_system_reset_modules_on_exit(void)
  30. {
  31. // Flush any data left in UART FIFOs before reset the UART peripheral
  32. esp_rom_uart_tx_wait_idle(0);
  33. esp_rom_uart_tx_wait_idle(1);
  34. esp_rom_uart_tx_wait_idle(2);
  35. // Reset wifi/bluetooth/ethernet/sdio (bb/mac)
  36. DPORT_SET_PERI_REG_MASK(DPORT_CORE_RST_EN_REG,
  37. DPORT_WIFIBB_RST | DPORT_FE_RST | DPORT_WIFIMAC_RST | DPORT_BTBB_RST |
  38. DPORT_BTMAC_RST | DPORT_SDIO_RST | DPORT_SDIO_HOST_RST | DPORT_EMAC_RST |
  39. DPORT_MACPWR_RST | DPORT_RW_BTMAC_RST | DPORT_RW_BTLP_RST);
  40. DPORT_REG_WRITE(DPORT_CORE_RST_EN_REG, 0);
  41. // Reset timer, spi, uart, mcpwm
  42. DPORT_SET_PERI_REG_MASK(DPORT_PERIP_RST_EN_REG,
  43. //UART TX FIFO cannot be reset correctly on ESP32, so reset the UART memory by DPORT here.
  44. DPORT_TIMERS_RST | DPORT_SPI01_RST | DPORT_SPI2_RST | DPORT_SPI3_RST |
  45. DPORT_SPI_DMA_RST | DPORT_UART_RST | DPORT_UART1_RST | DPORT_UART2_RST |
  46. DPORT_UART_MEM_RST | DPORT_PWM0_RST | DPORT_PWM1_RST);
  47. DPORT_REG_WRITE(DPORT_PERIP_RST_EN_REG, 0);
  48. }
  49. /* "inner" restart function for after RTOS, interrupts & anything else on this
  50. * core are already stopped. Stalls other core, resets hardware,
  51. * triggers restart.
  52. */
  53. void IRAM_ATTR esp_restart_noos(void)
  54. {
  55. // Disable interrupts
  56. xt_ints_off(0xFFFFFFFF);
  57. // Enable RTC watchdog for 1 second
  58. wdt_hal_context_t rtc_wdt_ctx;
  59. wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false);
  60. uint32_t stage_timeout_ticks = (uint32_t)(1000ULL * rtc_clk_slow_freq_get_hz() / 1000ULL);
  61. wdt_hal_write_protect_disable(&rtc_wdt_ctx);
  62. wdt_hal_config_stage(&rtc_wdt_ctx, WDT_STAGE0, stage_timeout_ticks, WDT_STAGE_ACTION_RESET_SYSTEM);
  63. wdt_hal_config_stage(&rtc_wdt_ctx, WDT_STAGE1, stage_timeout_ticks, WDT_STAGE_ACTION_RESET_RTC);
  64. //Enable flash boot mode so that flash booting after restart is protected by the RTC WDT.
  65. wdt_hal_set_flashboot_en(&rtc_wdt_ctx, true);
  66. // Reset and stall the other CPU.
  67. // CPU must be reset before stalling, in case it was running a s32c1i
  68. // instruction. This would cause memory pool to be locked by arbiter
  69. // to the stalled CPU, preventing current CPU from accessing this pool.
  70. const uint32_t core_id = esp_cpu_get_core_id();
  71. const uint32_t other_core_id = (core_id == 0) ? 1 : 0;
  72. esp_rom_software_reset_cpu(other_core_id);
  73. esp_cpu_stall(other_core_id);
  74. // Other core is now stalled, can access DPORT registers directly
  75. esp_ipc_isr_stall_abort();
  76. //Todo: Refactor to use Interrupt or Task Watchdog API, and a system level WDT context
  77. // Disable TG0/TG1 watchdogs
  78. wdt_hal_context_t wdt0_context = {.inst = WDT_MWDT0, .mwdt_dev = &TIMERG0};
  79. wdt_hal_write_protect_disable(&wdt0_context);
  80. wdt_hal_disable(&wdt0_context);
  81. wdt_hal_write_protect_enable(&wdt0_context);
  82. wdt_hal_context_t wdt1_context = {.inst = WDT_MWDT1, .mwdt_dev = &TIMERG1};
  83. wdt_hal_write_protect_disable(&wdt1_context);
  84. wdt_hal_disable(&wdt1_context);
  85. wdt_hal_write_protect_enable(&wdt1_context);
  86. #ifdef CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY
  87. if (esp_ptr_external_ram(esp_cpu_get_sp())) {
  88. // If stack_addr is from External Memory (CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY is used)
  89. // then need to switch SP to Internal Memory otherwise
  90. // we will get the "Cache disabled but cached memory region accessed" error after Cache_Read_Disable.
  91. uint32_t new_sp = SOC_DRAM_LOW + (SOC_DRAM_HIGH - SOC_DRAM_LOW) / 2;
  92. SET_STACK(new_sp);
  93. }
  94. #endif
  95. // Disable cache
  96. Cache_Read_Disable(0);
  97. Cache_Read_Disable(1);
  98. // 2nd stage bootloader reconfigures SPI flash signals.
  99. // Reset them to the defaults expected by ROM.
  100. WRITE_PERI_REG(GPIO_FUNC0_IN_SEL_CFG_REG, 0x30);
  101. WRITE_PERI_REG(GPIO_FUNC1_IN_SEL_CFG_REG, 0x30);
  102. WRITE_PERI_REG(GPIO_FUNC2_IN_SEL_CFG_REG, 0x30);
  103. WRITE_PERI_REG(GPIO_FUNC3_IN_SEL_CFG_REG, 0x30);
  104. WRITE_PERI_REG(GPIO_FUNC4_IN_SEL_CFG_REG, 0x30);
  105. WRITE_PERI_REG(GPIO_FUNC5_IN_SEL_CFG_REG, 0x30);
  106. // reset necessary peripheral modules
  107. esp_system_reset_modules_on_exit();
  108. // Set CPU back to XTAL source, same as hard reset. PLL keeps on to match the behavior with chips.
  109. rtc_clk_cpu_set_to_default_config();
  110. // Clear entry point for APP CPU
  111. DPORT_REG_WRITE(DPORT_APPCPU_CTRL_D_REG, 0);
  112. // Reset CPUs
  113. if (core_id == 0) {
  114. // Running on PRO CPU: APP CPU is stalled. Can reset both CPUs.
  115. esp_rom_software_reset_cpu(1);
  116. esp_rom_software_reset_cpu(0);
  117. } else {
  118. // Running on APP CPU: need to reset PRO CPU and unstall it,
  119. // then reset APP CPU
  120. esp_rom_software_reset_cpu(0);
  121. esp_cpu_unstall(0);
  122. esp_rom_software_reset_cpu(1);
  123. }
  124. while (true) {
  125. ;
  126. }
  127. }