system_api_esp32s2beta.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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_wifi.h"
  19. #include "esp_log.h"
  20. #include "sdkconfig.h"
  21. #include "esp32s2beta/rom/cache.h"
  22. #include "esp32s2beta/rom/uart.h"
  23. #include "soc/dport_reg.h"
  24. #include "soc/gpio_reg.h"
  25. #include "soc/rtc_cntl_reg.h"
  26. #include "soc/timer_group_reg.h"
  27. #include "soc/timer_group_struct.h"
  28. #include "soc/cpu.h"
  29. #include "soc/rtc.h"
  30. #include "soc/rtc_wdt.h"
  31. #include "soc/syscon_reg.h"
  32. #include "freertos/xtensa_api.h"
  33. /* "inner" restart function for after RTOS, interrupts & anything else on this
  34. * core are already stopped. Stalls other core, resets hardware,
  35. * triggers restart.
  36. */
  37. void IRAM_ATTR esp_restart_noos(void)
  38. {
  39. // Disable interrupts
  40. xt_ints_off(0xFFFFFFFF);
  41. // Enable RTC watchdog for 1 second
  42. rtc_wdt_protect_off();
  43. rtc_wdt_disable();
  44. rtc_wdt_set_stage(RTC_WDT_STAGE0, RTC_WDT_STAGE_ACTION_RESET_RTC);
  45. rtc_wdt_set_stage(RTC_WDT_STAGE1, RTC_WDT_STAGE_ACTION_RESET_SYSTEM);
  46. rtc_wdt_set_length_of_reset_signal(RTC_WDT_SYS_RESET_SIG, RTC_WDT_LENGTH_200ns);
  47. rtc_wdt_set_length_of_reset_signal(RTC_WDT_CPU_RESET_SIG, RTC_WDT_LENGTH_200ns);
  48. rtc_wdt_set_time(RTC_WDT_STAGE0, 1000);
  49. rtc_wdt_flashboot_mode_enable();
  50. // Reset and stall the other CPU.
  51. // CPU must be reset before stalling, in case it was running a s32c1i
  52. // instruction. This would cause memory pool to be locked by arbiter
  53. // to the stalled CPU, preventing current CPU from accessing this pool.
  54. const uint32_t core_id = xPortGetCoreID();
  55. #if !CONFIG_FREERTOS_UNICORE
  56. const uint32_t other_core_id = (core_id == 0) ? 1 : 0;
  57. esp_cpu_reset(other_core_id);
  58. esp_cpu_stall(other_core_id);
  59. #endif
  60. // Disable TG0/TG1 watchdogs
  61. TIMERG0.wdt_wprotect=TIMG_WDT_WKEY_VALUE;
  62. TIMERG0.wdt_config0.en = 0;
  63. TIMERG0.wdt_wprotect=0;
  64. TIMERG1.wdt_wprotect=TIMG_WDT_WKEY_VALUE;
  65. TIMERG1.wdt_config0.en = 0;
  66. TIMERG1.wdt_wprotect=0;
  67. // Flush any data left in UART FIFOs
  68. uart_tx_wait_idle(0);
  69. uart_tx_wait_idle(1);
  70. // Disable cache
  71. Cache_Disable_ICache();
  72. Cache_Disable_DCache();
  73. // 2nd stage bootloader reconfigures SPI flash signals.
  74. // Reset them to the defaults expected by ROM.
  75. WRITE_PERI_REG(GPIO_FUNC0_IN_SEL_CFG_REG, 0x30);
  76. WRITE_PERI_REG(GPIO_FUNC1_IN_SEL_CFG_REG, 0x30);
  77. WRITE_PERI_REG(GPIO_FUNC2_IN_SEL_CFG_REG, 0x30);
  78. WRITE_PERI_REG(GPIO_FUNC3_IN_SEL_CFG_REG, 0x30);
  79. WRITE_PERI_REG(GPIO_FUNC4_IN_SEL_CFG_REG, 0x30);
  80. WRITE_PERI_REG(GPIO_FUNC5_IN_SEL_CFG_REG, 0x30);
  81. // Reset wifi/bluetooth/ethernet/sdio (bb/mac)
  82. DPORT_SET_PERI_REG_MASK(DPORT_CORE_RST_EN_REG,
  83. DPORT_BB_RST | DPORT_FE_RST | DPORT_MAC_RST |
  84. DPORT_BT_RST | DPORT_BTMAC_RST | DPORT_SDIO_RST |
  85. DPORT_SDIO_HOST_RST | DPORT_EMAC_RST | DPORT_MACPWR_RST |
  86. DPORT_RW_BTMAC_RST | DPORT_RW_BTLP_RST);
  87. DPORT_REG_WRITE(DPORT_CORE_RST_EN_REG, 0);
  88. // Reset timer/spi/uart
  89. DPORT_SET_PERI_REG_MASK(DPORT_PERIP_RST_EN_REG,
  90. DPORT_TIMERS_RST | DPORT_SPI01_RST | DPORT_UART_RST);
  91. DPORT_REG_WRITE(DPORT_PERIP_RST_EN_REG, 0);
  92. // Set CPU back to XTAL source, no PLL, same as hard reset
  93. rtc_clk_cpu_freq_set(RTC_CPU_FREQ_XTAL);
  94. #if !CONFIG_FREERTOS_UNICORE
  95. // Clear entry point for APP CPU
  96. DPORT_REG_WRITE(DPORT_APPCPU_CTRL_D_REG, 0);
  97. #endif
  98. // Reset CPUs
  99. if (core_id == 0) {
  100. // Running on PRO CPU: APP CPU is stalled. Can reset both CPUs.
  101. #if !CONFIG_FREERTOS_UNICORE
  102. esp_cpu_reset(1);
  103. #endif
  104. esp_cpu_reset(0);
  105. }
  106. #if !CONFIG_FREERTOS_UNICORE
  107. else {
  108. // Running on APP CPU: need to reset PRO CPU and unstall it,
  109. // then reset APP CPU
  110. esp_cpu_reset(0);
  111. esp_cpu_unstall(0);
  112. esp_cpu_reset(1);
  113. }
  114. #endif
  115. while(true) {
  116. ;
  117. }
  118. }
  119. void esp_chip_info(esp_chip_info_t* out_info)
  120. {
  121. memset(out_info, 0, sizeof(*out_info));
  122. out_info->model = CHIP_ESP32S2BETA;
  123. out_info->cores = 1;
  124. out_info->features = CHIP_FEATURE_WIFI_BGN;
  125. // FIXME: other features?
  126. }