system_api_esp32s3.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. // Copyright 2013-2020 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include <string.h>
  15. #include "sdkconfig.h"
  16. #include "esp_system.h"
  17. #include "esp_private/system_internal.h"
  18. #include "esp_attr.h"
  19. #include "esp_log.h"
  20. #include "esp32s3/rom/cache.h"
  21. #include "esp_rom_uart.h"
  22. #include "soc/dport_reg.h"
  23. #include "soc/gpio_reg.h"
  24. #include "soc/rtc_cntl_reg.h"
  25. #include "soc/timer_group_reg.h"
  26. #include "soc/cpu.h"
  27. #include "soc/rtc.h"
  28. #include "soc/syscon_reg.h"
  29. #include "hal/wdt_hal.h"
  30. #include "freertos/xtensa_api.h"
  31. /* "inner" restart function for after RTOS, interrupts & anything else on this
  32. * core are already stopped. Stalls other core, resets hardware,
  33. * triggers restart.
  34. */
  35. void IRAM_ATTR esp_restart_noos(void)
  36. {
  37. // Disable interrupts
  38. xt_ints_off(0xFFFFFFFF);
  39. // Enable RTC watchdog for 1 second
  40. wdt_hal_context_t rtc_wdt_ctx;
  41. wdt_hal_init(&rtc_wdt_ctx, WDT_RWDT, 0, false);
  42. uint32_t stage_timeout_ticks = (uint32_t)(1000ULL * rtc_clk_slow_freq_get_hz() / 1000ULL);
  43. wdt_hal_write_protect_disable(&rtc_wdt_ctx);
  44. wdt_hal_config_stage(&rtc_wdt_ctx, WDT_STAGE0, stage_timeout_ticks, WDT_STAGE_ACTION_RESET_SYSTEM);
  45. wdt_hal_config_stage(&rtc_wdt_ctx, WDT_STAGE1, stage_timeout_ticks, WDT_STAGE_ACTION_RESET_RTC);
  46. //Enable flash boot mode so that flash booting after restart is protected by the RTC WDT.
  47. wdt_hal_set_flashboot_en(&rtc_wdt_ctx, true);
  48. wdt_hal_write_protect_enable(&rtc_wdt_ctx);
  49. // Reset and stall the other CPU.
  50. // CPU must be reset before stalling, in case it was running a s32c1i
  51. // instruction. This would cause memory pool to be locked by arbiter
  52. // to the stalled CPU, preventing current CPU from accessing this pool.
  53. const uint32_t core_id = cpu_hal_get_core_id();
  54. #if !CONFIG_FREERTOS_UNICORE
  55. const uint32_t other_core_id = (core_id == 0) ? 1 : 0;
  56. esp_cpu_reset(other_core_id);
  57. esp_cpu_stall(other_core_id);
  58. #endif
  59. // Disable TG0/TG1 watchdogs
  60. wdt_hal_context_t wdt0_context = {.inst = WDT_MWDT0, .mwdt_dev = &TIMERG0};
  61. wdt_hal_write_protect_disable(&wdt0_context);
  62. wdt_hal_disable(&wdt0_context);
  63. wdt_hal_write_protect_enable(&wdt0_context);
  64. wdt_hal_context_t wdt1_context = {.inst = WDT_MWDT1, .mwdt_dev = &TIMERG1};
  65. wdt_hal_write_protect_disable(&wdt1_context);
  66. wdt_hal_disable(&wdt1_context);
  67. wdt_hal_write_protect_enable(&wdt1_context);
  68. // Flush any data left in UART FIFOs
  69. esp_rom_uart_tx_wait_idle(0);
  70. esp_rom_uart_tx_wait_idle(1);
  71. // Disable cache
  72. Cache_Disable_ICache();
  73. Cache_Disable_DCache();
  74. // 2nd stage bootloader reconfigures SPI flash signals.
  75. // Reset them to the defaults expected by ROM.
  76. WRITE_PERI_REG(GPIO_FUNC0_IN_SEL_CFG_REG, 0x30);
  77. WRITE_PERI_REG(GPIO_FUNC1_IN_SEL_CFG_REG, 0x30);
  78. WRITE_PERI_REG(GPIO_FUNC2_IN_SEL_CFG_REG, 0x30);
  79. WRITE_PERI_REG(GPIO_FUNC3_IN_SEL_CFG_REG, 0x30);
  80. WRITE_PERI_REG(GPIO_FUNC4_IN_SEL_CFG_REG, 0x30);
  81. WRITE_PERI_REG(GPIO_FUNC5_IN_SEL_CFG_REG, 0x30);
  82. // Reset wifi/bluetooth/ethernet/sdio (bb/mac)
  83. SET_PERI_REG_MASK(SYSTEM_CORE_RST_EN_REG,
  84. SYSTEM_BB_RST | SYSTEM_FE_RST | SYSTEM_MAC_RST |
  85. SYSTEM_BT_RST | SYSTEM_BTMAC_RST | SYSTEM_SDIO_RST |
  86. SYSTEM_SDIO_HOST_RST | SYSTEM_EMAC_RST | SYSTEM_MACPWR_RST |
  87. SYSTEM_RW_BTMAC_RST | SYSTEM_RW_BTLP_RST);
  88. REG_WRITE(SYSTEM_CORE_RST_EN_REG, 0);
  89. // Reset timer/spi/uart
  90. SET_PERI_REG_MASK(SYSTEM_PERIP_RST_EN0_REG,
  91. SYSTEM_TIMERS_RST | SYSTEM_SPI01_RST | SYSTEM_UART_RST);
  92. REG_WRITE(SYSTEM_PERIP_RST_EN0_REG, 0);
  93. // Set CPU back to XTAL source, no PLL, same as hard reset
  94. #if !CONFIG_IDF_ENV_FPGA
  95. rtc_clk_cpu_freq_set_xtal();
  96. #endif
  97. #if !CONFIG_FREERTOS_UNICORE
  98. // Clear entry point for APP CPU
  99. REG_WRITE(SYSTEM_CORE_1_CONTROL_1_REG, 0);
  100. #endif
  101. // Reset CPUs
  102. if (core_id == 0) {
  103. // Running on PRO CPU: APP CPU is stalled. Can reset both CPUs.
  104. #if !CONFIG_FREERTOS_UNICORE
  105. esp_cpu_reset(1);
  106. #endif
  107. esp_cpu_reset(0);
  108. }
  109. #if !CONFIG_FREERTOS_UNICORE
  110. else {
  111. // Running on APP CPU: need to reset PRO CPU and unstall it,
  112. // then reset APP CPU
  113. esp_cpu_reset(0);
  114. esp_cpu_unstall(0);
  115. esp_cpu_reset(1);
  116. }
  117. #endif
  118. while (true) {
  119. ;
  120. }
  121. }
  122. void esp_chip_info(esp_chip_info_t *out_info)
  123. {
  124. memset(out_info, 0, sizeof(*out_info));
  125. out_info->model = CHIP_ESP32S3;
  126. out_info->cores = 2;
  127. out_info->features = CHIP_FEATURE_WIFI_BGN;
  128. }