esp_sleep.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. // Copyright 2015-2017 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. #pragma once
  15. #include <stdint.h>
  16. #include "esp_err.h"
  17. #include "hal/touch_sensor_types.h"
  18. #include "hal/gpio_types.h"
  19. #include "soc/soc_caps.h"
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * @brief Logic function used for EXT1 wakeup mode.
  25. */
  26. typedef enum {
  27. ESP_EXT1_WAKEUP_ALL_LOW = 0, //!< Wake the chip when all selected GPIOs go low
  28. ESP_EXT1_WAKEUP_ANY_HIGH = 1 //!< Wake the chip when any of the selected GPIOs go high
  29. } esp_sleep_ext1_wakeup_mode_t;
  30. #if SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
  31. typedef enum {
  32. ESP_GPIO_WAKEUP_GPIO_LOW = 0,
  33. ESP_GPIO_WAKEUP_GPIO_HIGH = 1
  34. } esp_deepsleep_gpio_wake_up_mode_t;
  35. #endif
  36. /**
  37. * @brief Power domains which can be powered down in sleep mode
  38. */
  39. typedef enum {
  40. ESP_PD_DOMAIN_RTC_PERIPH, //!< RTC IO, sensors and ULP co-processor
  41. ESP_PD_DOMAIN_RTC_SLOW_MEM, //!< RTC slow memory
  42. ESP_PD_DOMAIN_RTC_FAST_MEM, //!< RTC fast memory
  43. ESP_PD_DOMAIN_XTAL, //!< XTAL oscillator
  44. #if SOC_PM_SUPPORT_CPU_PD
  45. ESP_PD_DOMAIN_CPU, //!< CPU core
  46. #endif
  47. ESP_PD_DOMAIN_RTC8M, //!< Internal 8M oscillator
  48. ESP_PD_DOMAIN_VDDSDIO, //!< VDD_SDIO
  49. ESP_PD_DOMAIN_MAX //!< Number of domains
  50. } esp_sleep_pd_domain_t;
  51. /**
  52. * @brief Power down options
  53. */
  54. typedef enum {
  55. ESP_PD_OPTION_OFF, //!< Power down the power domain in sleep mode
  56. ESP_PD_OPTION_ON, //!< Keep power domain enabled during sleep mode
  57. ESP_PD_OPTION_AUTO //!< Keep power domain enabled in sleep mode, if it is needed by one of the wakeup options. Otherwise power it down.
  58. } esp_sleep_pd_option_t;
  59. /**
  60. * @brief Sleep wakeup cause
  61. */
  62. typedef enum {
  63. ESP_SLEEP_WAKEUP_UNDEFINED, //!< In case of deep sleep, reset was not caused by exit from deep sleep
  64. ESP_SLEEP_WAKEUP_ALL, //!< Not a wakeup cause, used to disable all wakeup sources with esp_sleep_disable_wakeup_source
  65. ESP_SLEEP_WAKEUP_EXT0, //!< Wakeup caused by external signal using RTC_IO
  66. ESP_SLEEP_WAKEUP_EXT1, //!< Wakeup caused by external signal using RTC_CNTL
  67. ESP_SLEEP_WAKEUP_TIMER, //!< Wakeup caused by timer
  68. ESP_SLEEP_WAKEUP_TOUCHPAD, //!< Wakeup caused by touchpad
  69. ESP_SLEEP_WAKEUP_ULP, //!< Wakeup caused by ULP program
  70. ESP_SLEEP_WAKEUP_GPIO, //!< Wakeup caused by GPIO (light sleep only)
  71. ESP_SLEEP_WAKEUP_UART, //!< Wakeup caused by UART (light sleep only)
  72. ESP_SLEEP_WAKEUP_WIFI, //!< Wakeup caused by WIFI (light sleep only)
  73. ESP_SLEEP_WAKEUP_COCPU, //!< Wakeup caused by COCPU int
  74. ESP_SLEEP_WAKEUP_COCPU_TRAP_TRIG, //!< Wakeup caused by COCPU crash
  75. ESP_SLEEP_WAKEUP_BT, //!< Wakeup caused by BT (light sleep only)
  76. } esp_sleep_source_t;
  77. /* Leave this type define for compatibility */
  78. typedef esp_sleep_source_t esp_sleep_wakeup_cause_t;
  79. /**
  80. * @brief Disable wakeup source
  81. *
  82. * This function is used to deactivate wake up trigger for source
  83. * defined as parameter of the function.
  84. *
  85. * @note This function does not modify wake up configuration in RTC.
  86. * It will be performed in esp_sleep_start function.
  87. *
  88. * See docs/sleep-modes.rst for details.
  89. *
  90. * @param source - number of source to disable of type esp_sleep_source_t
  91. * @return
  92. * - ESP_OK on success
  93. * - ESP_ERR_INVALID_STATE if trigger was not active
  94. */
  95. esp_err_t esp_sleep_disable_wakeup_source(esp_sleep_source_t source);
  96. #if SOC_ULP_SUPPORTED
  97. /**
  98. * @brief Enable wakeup by ULP coprocessor
  99. * @note In revisions 0 and 1 of the ESP32, ULP wakeup source
  100. * cannot be used when RTC_PERIPH power domain is forced
  101. * to be powered on (ESP_PD_OPTION_ON) or when
  102. * ext0 wakeup source is used.
  103. * @return
  104. * - ESP_OK on success
  105. * - ESP_ERR_NOT_SUPPORTED if additional current by touch (CONFIG_ESP32_RTC_EXT_CRYST_ADDIT_CURRENT) is enabled.
  106. * - ESP_ERR_INVALID_STATE if ULP co-processor is not enabled or if wakeup triggers conflict
  107. */
  108. esp_err_t esp_sleep_enable_ulp_wakeup(void);
  109. #endif // SOC_ULP_SUPPORTED
  110. /**
  111. * @brief Enable wakeup by timer
  112. * @param time_in_us time before wakeup, in microseconds
  113. * @return
  114. * - ESP_OK on success
  115. * - ESP_ERR_INVALID_ARG if value is out of range (TBD)
  116. */
  117. esp_err_t esp_sleep_enable_timer_wakeup(uint64_t time_in_us);
  118. #if SOC_TOUCH_SENSOR_NUM > 0
  119. /**
  120. * @brief Enable wakeup by touch sensor
  121. *
  122. * @note In revisions 0 and 1 of the ESP32, touch wakeup source
  123. * can not be used when RTC_PERIPH power domain is forced
  124. * to be powered on (ESP_PD_OPTION_ON) or when ext0 wakeup
  125. * source is used.
  126. *
  127. * @note The FSM mode of the touch button should be configured
  128. * as the timer trigger mode.
  129. *
  130. * @return
  131. * - ESP_OK on success
  132. * - ESP_ERR_NOT_SUPPORTED if additional current by touch (CONFIG_ESP32_RTC_EXT_CRYST_ADDIT_CURRENT) is enabled.
  133. * - ESP_ERR_INVALID_STATE if wakeup triggers conflict
  134. */
  135. esp_err_t esp_sleep_enable_touchpad_wakeup(void);
  136. /**
  137. * @brief Get the touch pad which caused wakeup
  138. *
  139. * If wakeup was caused by another source, this function will return TOUCH_PAD_MAX;
  140. *
  141. * @return touch pad which caused wakeup
  142. */
  143. touch_pad_t esp_sleep_get_touchpad_wakeup_status(void);
  144. #endif // SOC_TOUCH_SENSOR_NUM > 0
  145. /**
  146. * @brief Returns true if a GPIO number is valid for use as wakeup source.
  147. *
  148. * @note For SoCs with RTC IO capability, this can be any valid RTC IO input pin.
  149. *
  150. * @param gpio_num Number of the GPIO to test for wakeup source capability
  151. *
  152. * @return True if this GPIO number will be accepted as a sleep wakeup source.
  153. */
  154. bool esp_sleep_is_valid_wakeup_gpio(gpio_num_t gpio_num);
  155. #if SOC_PM_SUPPORT_EXT_WAKEUP
  156. /**
  157. * @brief Enable wakeup using a pin
  158. *
  159. * This function uses external wakeup feature of RTC_IO peripheral.
  160. * It will work only if RTC peripherals are kept on during sleep.
  161. *
  162. * This feature can monitor any pin which is an RTC IO. Once the pin transitions
  163. * into the state given by level argument, the chip will be woken up.
  164. *
  165. * @note This function does not modify pin configuration. The pin is
  166. * configured in esp_sleep_start, immediately before entering sleep mode.
  167. *
  168. * @note In revisions 0 and 1 of the ESP32, ext0 wakeup source
  169. * can not be used together with touch or ULP wakeup sources.
  170. *
  171. * @param gpio_num GPIO number used as wakeup source. Only GPIOs which are have RTC
  172. * functionality can be used: 0,2,4,12-15,25-27,32-39.
  173. * @param level input level which will trigger wakeup (0=low, 1=high)
  174. * @return
  175. * - ESP_OK on success
  176. * - ESP_ERR_INVALID_ARG if the selected GPIO is not an RTC GPIO,
  177. * or the mode is invalid
  178. * - ESP_ERR_INVALID_STATE if wakeup triggers conflict
  179. */
  180. esp_err_t esp_sleep_enable_ext0_wakeup(gpio_num_t gpio_num, int level);
  181. /**
  182. * @brief Enable wakeup using multiple pins
  183. *
  184. * This function uses external wakeup feature of RTC controller.
  185. * It will work even if RTC peripherals are shut down during sleep.
  186. *
  187. * This feature can monitor any number of pins which are in RTC IOs.
  188. * Once any of the selected pins goes into the state given by mode argument,
  189. * the chip will be woken up.
  190. *
  191. * @note This function does not modify pin configuration. The pins are
  192. * configured in esp_sleep_start, immediately before
  193. * entering sleep mode.
  194. *
  195. * @note internal pullups and pulldowns don't work when RTC peripherals are
  196. * shut down. In this case, external resistors need to be added.
  197. * Alternatively, RTC peripherals (and pullups/pulldowns) may be
  198. * kept enabled using esp_sleep_pd_config function.
  199. *
  200. * @param mask bit mask of GPIO numbers which will cause wakeup. Only GPIOs
  201. * which are have RTC functionality can be used in this bit map:
  202. * 0,2,4,12-15,25-27,32-39.
  203. * @param mode select logic function used to determine wakeup condition:
  204. * - ESP_EXT1_WAKEUP_ALL_LOW: wake up when all selected GPIOs are low
  205. * - ESP_EXT1_WAKEUP_ANY_HIGH: wake up when any of the selected GPIOs is high
  206. * @return
  207. * - ESP_OK on success
  208. * - ESP_ERR_INVALID_ARG if any of the selected GPIOs is not an RTC GPIO,
  209. * or mode is invalid
  210. */
  211. esp_err_t esp_sleep_enable_ext1_wakeup(uint64_t mask, esp_sleep_ext1_wakeup_mode_t mode);
  212. #endif // SOC_PM_SUPPORT_EXT_WAKEUP
  213. #if SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
  214. /**
  215. * @brief Enable wakeup using specific gpio pins
  216. *
  217. * This function enables an IO pin to wake the chip from deep sleep
  218. *
  219. * @note This function does not modify pin configuration. The pins are
  220. * configured in esp_sleep_start, immediately before
  221. * entering sleep mode.
  222. *
  223. * @note You don't need to care to pull-up or pull-down before using this
  224. * function, because this will be done in esp_sleep_start based on
  225. * param mask you give. BTW, when you use low level to wake up the
  226. * chip, we strongly recommand you to add external registors(pull-up).
  227. *
  228. * @param gpio_pin_mask Bit mask of GPIO numbers which will cause wakeup. Only GPIOs
  229. * which are have RTC functionality can be used in this bit map.
  230. * @param mode Select logic function used to determine wakeup condition:
  231. * - ESP_GPIO_WAKEUP_GPIO_LOW: wake up when the gpio turn to low.
  232. * - ESP_GPIO_WAKEUP_GPIO_HIGH: wake up when the gpio turn to high.
  233. * @return
  234. * - ESP_OK on success
  235. * - ESP_ERR_INVALID_ARG if gpio num is more than 5 or mode is invalid,
  236. */
  237. esp_err_t esp_deep_sleep_enable_gpio_wakeup(uint64_t gpio_pin_mask, esp_deepsleep_gpio_wake_up_mode_t mode);
  238. #endif
  239. /**
  240. * @brief Enable wakeup from light sleep using GPIOs
  241. *
  242. * Each GPIO supports wakeup function, which can be triggered on either low level
  243. * or high level. Unlike EXT0 and EXT1 wakeup sources, this method can be used
  244. * both for all IOs: RTC IOs and digital IOs. It can only be used to wakeup from
  245. * light sleep though.
  246. *
  247. * To enable wakeup, first call gpio_wakeup_enable, specifying gpio number and
  248. * wakeup level, for each GPIO which is used for wakeup.
  249. * Then call this function to enable wakeup feature.
  250. *
  251. * @note In revisions 0 and 1 of the ESP32, GPIO wakeup source
  252. * can not be used together with touch or ULP wakeup sources.
  253. *
  254. * @return
  255. * - ESP_OK on success
  256. * - ESP_ERR_INVALID_STATE if wakeup triggers conflict
  257. */
  258. esp_err_t esp_sleep_enable_gpio_wakeup(void);
  259. /**
  260. * @brief Enable wakeup from light sleep using UART
  261. *
  262. * Use uart_set_wakeup_threshold function to configure UART wakeup threshold.
  263. *
  264. * Wakeup from light sleep takes some time, so not every character sent
  265. * to the UART can be received by the application.
  266. *
  267. * @note ESP32 does not support wakeup from UART2.
  268. *
  269. * @param uart_num UART port to wake up from
  270. * @return
  271. * - ESP_OK on success
  272. * - ESP_ERR_INVALID_ARG if wakeup from given UART is not supported
  273. */
  274. esp_err_t esp_sleep_enable_uart_wakeup(int uart_num);
  275. /**
  276. * @brief Enable wakeup by WiFi MAC
  277. * @return
  278. * - ESP_OK on success
  279. */
  280. esp_err_t esp_sleep_enable_wifi_wakeup(void);
  281. /**
  282. * @brief Disable wakeup by WiFi MAC
  283. * @return
  284. * - ESP_OK on success
  285. */
  286. esp_err_t esp_sleep_disable_wifi_wakeup(void);
  287. /**
  288. * @brief Get the bit mask of GPIOs which caused wakeup (ext1)
  289. *
  290. * If wakeup was caused by another source, this function will return 0.
  291. *
  292. * @return bit mask, if GPIOn caused wakeup, BIT(n) will be set
  293. */
  294. uint64_t esp_sleep_get_ext1_wakeup_status(void);
  295. #if SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
  296. /**
  297. * @brief Get the bit mask of GPIOs which caused wakeup (gpio)
  298. *
  299. * If wakeup was caused by another source, this function will return 0.
  300. *
  301. * @return bit mask, if GPIOn caused wakeup, BIT(n) will be set
  302. */
  303. uint64_t esp_sleep_get_gpio_wakeup_status(void);
  304. #endif //SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
  305. /**
  306. * @brief Set power down mode for an RTC power domain in sleep mode
  307. *
  308. * If not set set using this API, all power domains default to ESP_PD_OPTION_AUTO.
  309. *
  310. * @param domain power domain to configure
  311. * @param option power down option (ESP_PD_OPTION_OFF, ESP_PD_OPTION_ON, or ESP_PD_OPTION_AUTO)
  312. * @return
  313. * - ESP_OK on success
  314. * - ESP_ERR_INVALID_ARG if either of the arguments is out of range
  315. */
  316. esp_err_t esp_sleep_pd_config(esp_sleep_pd_domain_t domain,
  317. esp_sleep_pd_option_t option);
  318. /**
  319. * @brief Enter deep sleep with the configured wakeup options
  320. *
  321. * This function does not return.
  322. */
  323. void esp_deep_sleep_start(void) __attribute__((noreturn));
  324. /**
  325. * @brief Enter light sleep with the configured wakeup options
  326. *
  327. * @return
  328. * - ESP_OK on success (returned after wakeup)
  329. * - ESP_ERR_INVALID_STATE if WiFi or BT is not stopped
  330. */
  331. esp_err_t esp_light_sleep_start(void);
  332. /**
  333. * @brief Enter deep-sleep mode
  334. *
  335. * The device will automatically wake up after the deep-sleep time
  336. * Upon waking up, the device calls deep sleep wake stub, and then proceeds
  337. * to load application.
  338. *
  339. * Call to this function is equivalent to a call to esp_deep_sleep_enable_timer_wakeup
  340. * followed by a call to esp_deep_sleep_start.
  341. *
  342. * esp_deep_sleep does not shut down WiFi, BT, and higher level protocol
  343. * connections gracefully.
  344. * Make sure relevant WiFi and BT stack functions are called to close any
  345. * connections and deinitialize the peripherals. These include:
  346. * - esp_bluedroid_disable
  347. * - esp_bt_controller_disable
  348. * - esp_wifi_stop
  349. *
  350. * This function does not return.
  351. *
  352. * @note The device will wake up immediately if the deep-sleep time is set to 0
  353. *
  354. * @param time_in_us deep-sleep time, unit: microsecond
  355. */
  356. void esp_deep_sleep(uint64_t time_in_us) __attribute__((noreturn));
  357. /**
  358. * @brief Get the wakeup source which caused wakeup from sleep
  359. *
  360. * @return cause of wake up from last sleep (deep sleep or light sleep)
  361. */
  362. esp_sleep_wakeup_cause_t esp_sleep_get_wakeup_cause(void);
  363. /**
  364. * @brief Default stub to run on wake from deep sleep.
  365. *
  366. * Allows for executing code immediately on wake from sleep, before
  367. * the software bootloader or ESP-IDF app has started up.
  368. *
  369. * This function is weak-linked, so you can implement your own version
  370. * to run code immediately when the chip wakes from
  371. * sleep.
  372. *
  373. * See docs/deep-sleep-stub.rst for details.
  374. */
  375. void esp_wake_deep_sleep(void);
  376. /**
  377. * @brief Function type for stub to run on wake from sleep.
  378. *
  379. */
  380. typedef void (*esp_deep_sleep_wake_stub_fn_t)(void);
  381. /**
  382. * @brief Install a new stub at runtime to run on wake from deep sleep
  383. *
  384. * If implementing esp_wake_deep_sleep() then it is not necessary to
  385. * call this function.
  386. *
  387. * However, it is possible to call this function to substitute a
  388. * different deep sleep stub. Any function used as a deep sleep stub
  389. * must be marked RTC_IRAM_ATTR, and must obey the same rules given
  390. * for esp_wake_deep_sleep().
  391. */
  392. void esp_set_deep_sleep_wake_stub(esp_deep_sleep_wake_stub_fn_t new_stub);
  393. /**
  394. * @brief Get current wake from deep sleep stub
  395. * @return Return current wake from deep sleep stub, or NULL if
  396. * no stub is installed.
  397. */
  398. esp_deep_sleep_wake_stub_fn_t esp_get_deep_sleep_wake_stub(void);
  399. /**
  400. * @brief The default esp-idf-provided esp_wake_deep_sleep() stub.
  401. *
  402. * See docs/deep-sleep-stub.rst for details.
  403. */
  404. void esp_default_wake_deep_sleep(void);
  405. /**
  406. * @brief Disable logging from the ROM code after deep sleep.
  407. *
  408. * Using LSB of RTC_STORE4.
  409. */
  410. void esp_deep_sleep_disable_rom_logging(void);
  411. #if SOC_GPIO_SUPPORT_SLP_SWITCH
  412. /**
  413. * @brief Configure to isolate all GPIO pins in sleep state
  414. */
  415. void esp_sleep_config_gpio_isolate(void);
  416. /**
  417. * @brief Enable or disable GPIO pins status switching between slept status and waked status.
  418. * @param enable decide whether to switch status or not
  419. */
  420. void esp_sleep_enable_gpio_switch(bool enable);
  421. #endif
  422. #if CONFIG_MAC_BB_PD
  423. /**
  424. * @brief Function type for stub to run mac bb power down.
  425. */
  426. typedef void (* mac_bb_power_down_cb_t)(void);
  427. /**
  428. * @brief Function type for stub to run mac bb power up.
  429. */
  430. typedef void (* mac_bb_power_up_cb_t)(void);
  431. /**
  432. * @brief Registet mac bb power down callback.
  433. * @param cb mac bb power down callback.
  434. * @return
  435. * - ESP_OK on success
  436. */
  437. esp_err_t esp_register_mac_bb_pd_callback(mac_bb_power_down_cb_t cb);
  438. /**
  439. * @brief Unregistet mac bb power down callback.
  440. * @param cb mac bb power down callback.
  441. * @return
  442. * - ESP_OK on success
  443. */
  444. esp_err_t esp_unregister_mac_bb_pd_callback(mac_bb_power_down_cb_t cb);
  445. /**
  446. * @brief Registet mac bb power up callback.
  447. * @param cb mac bb power up callback.
  448. * @return
  449. * - ESP_OK on success
  450. */
  451. esp_err_t esp_register_mac_bb_pu_callback(mac_bb_power_up_cb_t cb);
  452. /**
  453. * @brief Unregistet mac bb power up callback.
  454. * @param cb mac bb power up callback.
  455. * @return
  456. * - ESP_OK on success
  457. */
  458. esp_err_t esp_unregister_mac_bb_pu_callback(mac_bb_power_up_cb_t cb);
  459. #endif
  460. #ifdef __cplusplus
  461. }
  462. #endif