esp_sleep.h 18 KB

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