system_api_esp32.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. // Copyright 2013-2016 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 "esp_system.h"
  16. #include "esp_private/system_internal.h"
  17. #include "esp_attr.h"
  18. #include "esp_efuse.h"
  19. #include "esp_wifi.h"
  20. #include "esp_log.h"
  21. #include "sdkconfig.h"
  22. #include "esp32/rom/efuse.h"
  23. #include "esp32/rom/cache.h"
  24. #include "esp32/rom/uart.h"
  25. #include "soc/dport_reg.h"
  26. #include "soc/gpio_periph.h"
  27. #include "soc/efuse_periph.h"
  28. #include "soc/rtc_periph.h"
  29. #include "soc/timer_periph.h"
  30. #include "soc/cpu.h"
  31. #include "soc/rtc.h"
  32. #include "soc/rtc_wdt.h"
  33. #include "hal/timer_ll.h"
  34. #include "freertos/xtensa_api.h"
  35. /* "inner" restart function for after RTOS, interrupts & anything else on this
  36. * core are already stopped. Stalls other core, resets hardware,
  37. * triggers restart.
  38. */
  39. void IRAM_ATTR esp_restart_noos(void)
  40. {
  41. // Disable interrupts
  42. xt_ints_off(0xFFFFFFFF);
  43. // Enable RTC watchdog for 1 second
  44. rtc_wdt_protect_off();
  45. rtc_wdt_disable();
  46. rtc_wdt_set_stage(RTC_WDT_STAGE0, RTC_WDT_STAGE_ACTION_RESET_RTC);
  47. rtc_wdt_set_stage(RTC_WDT_STAGE1, RTC_WDT_STAGE_ACTION_RESET_SYSTEM);
  48. rtc_wdt_set_length_of_reset_signal(RTC_WDT_SYS_RESET_SIG, RTC_WDT_LENGTH_200ns);
  49. rtc_wdt_set_length_of_reset_signal(RTC_WDT_CPU_RESET_SIG, RTC_WDT_LENGTH_200ns);
  50. rtc_wdt_set_time(RTC_WDT_STAGE0, 1000);
  51. rtc_wdt_flashboot_mode_enable();
  52. // Reset and stall the other CPU.
  53. // CPU must be reset before stalling, in case it was running a s32c1i
  54. // instruction. This would cause memory pool to be locked by arbiter
  55. // to the stalled CPU, preventing current CPU from accessing this pool.
  56. const uint32_t core_id = xPortGetCoreID();
  57. const uint32_t other_core_id = (core_id == 0) ? 1 : 0;
  58. esp_cpu_reset(other_core_id);
  59. esp_cpu_stall(other_core_id);
  60. // Other core is now stalled, can access DPORT registers directly
  61. esp_dport_access_int_abort();
  62. // Disable TG0/TG1 watchdogs
  63. timer_ll_wdt_set_protect(&TIMERG0, false);
  64. timer_ll_wdt_set_enable(&TIMERG0, false);
  65. timer_ll_wdt_set_protect(&TIMERG0, true);
  66. timer_ll_wdt_set_protect(&TIMERG1, false);
  67. timer_ll_wdt_set_enable(&TIMERG1, false);
  68. timer_ll_wdt_set_protect(&TIMERG1, true);
  69. // Flush any data left in UART FIFOs
  70. uart_tx_wait_idle(0);
  71. uart_tx_wait_idle(1);
  72. uart_tx_wait_idle(2);
  73. // Disable cache
  74. Cache_Read_Disable(0);
  75. Cache_Read_Disable(1);
  76. // 2nd stage bootloader reconfigures SPI flash signals.
  77. // Reset them to the defaults expected by ROM.
  78. WRITE_PERI_REG(GPIO_FUNC0_IN_SEL_CFG_REG, 0x30);
  79. WRITE_PERI_REG(GPIO_FUNC1_IN_SEL_CFG_REG, 0x30);
  80. WRITE_PERI_REG(GPIO_FUNC2_IN_SEL_CFG_REG, 0x30);
  81. WRITE_PERI_REG(GPIO_FUNC3_IN_SEL_CFG_REG, 0x30);
  82. WRITE_PERI_REG(GPIO_FUNC4_IN_SEL_CFG_REG, 0x30);
  83. WRITE_PERI_REG(GPIO_FUNC5_IN_SEL_CFG_REG, 0x30);
  84. // Reset wifi/bluetooth/ethernet/sdio (bb/mac)
  85. DPORT_SET_PERI_REG_MASK(DPORT_CORE_RST_EN_REG,
  86. DPORT_BB_RST | DPORT_FE_RST | DPORT_MAC_RST |
  87. DPORT_BT_RST | DPORT_BTMAC_RST | DPORT_SDIO_RST |
  88. DPORT_SDIO_HOST_RST | DPORT_EMAC_RST | DPORT_MACPWR_RST |
  89. DPORT_RW_BTMAC_RST | DPORT_RW_BTLP_RST);
  90. DPORT_REG_WRITE(DPORT_CORE_RST_EN_REG, 0);
  91. // Reset timer/spi/uart
  92. DPORT_SET_PERI_REG_MASK(DPORT_PERIP_RST_EN_REG,
  93. DPORT_TIMERS_RST | DPORT_SPI01_RST | DPORT_UART_RST | DPORT_UART1_RST | DPORT_UART2_RST);
  94. DPORT_REG_WRITE(DPORT_PERIP_RST_EN_REG, 0);
  95. // Set CPU back to XTAL source, no PLL, same as hard reset
  96. rtc_clk_cpu_freq_set_xtal();
  97. // Clear entry point for APP CPU
  98. DPORT_REG_WRITE(DPORT_APPCPU_CTRL_D_REG, 0);
  99. // Reset CPUs
  100. if (core_id == 0) {
  101. // Running on PRO CPU: APP CPU is stalled. Can reset both CPUs.
  102. esp_cpu_reset(1);
  103. esp_cpu_reset(0);
  104. } else {
  105. // Running on APP CPU: need to reset PRO CPU and unstall it,
  106. // then reset APP CPU
  107. esp_cpu_reset(0);
  108. esp_cpu_unstall(0);
  109. esp_cpu_reset(1);
  110. }
  111. while(true) {
  112. ;
  113. }
  114. }
  115. void esp_chip_info(esp_chip_info_t* out_info)
  116. {
  117. uint32_t efuse_rd3 = REG_READ(EFUSE_BLK0_RDATA3_REG);
  118. memset(out_info, 0, sizeof(*out_info));
  119. out_info->model = CHIP_ESP32;
  120. out_info->revision = esp_efuse_get_chip_ver();
  121. if ((efuse_rd3 & EFUSE_RD_CHIP_VER_DIS_APP_CPU_M) == 0) {
  122. out_info->cores = 2;
  123. } else {
  124. out_info->cores = 1;
  125. }
  126. out_info->features = CHIP_FEATURE_WIFI_BGN;
  127. if ((efuse_rd3 & EFUSE_RD_CHIP_VER_DIS_BT_M) == 0) {
  128. out_info->features |= CHIP_FEATURE_BT | CHIP_FEATURE_BLE;
  129. }
  130. int package = (efuse_rd3 & EFUSE_RD_CHIP_VER_PKG_M) >> EFUSE_RD_CHIP_VER_PKG_S;
  131. if (package == EFUSE_RD_CHIP_VER_PKG_ESP32D2WDQ5 ||
  132. package == EFUSE_RD_CHIP_VER_PKG_ESP32PICOD2 ||
  133. package == EFUSE_RD_CHIP_VER_PKG_ESP32PICOD4) {
  134. out_info->features |= CHIP_FEATURE_EMB_FLASH;
  135. }
  136. }