2020-12-10 13:03:40 -05:00
|
|
|
/*
|
2020-09-24 01:29:04 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2020-12-10 13:03:40 -05:00
|
|
|
* Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
|
|
|
|
* Copyright (c) 2020 Dan Halbert for Adafruit Industries
|
2020-09-24 01:29:04 -04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2020-12-22 10:06:43 -05:00
|
|
|
#include "py/gc.h"
|
2020-11-25 15:07:57 -05:00
|
|
|
#include "py/obj.h"
|
2020-11-22 19:10:09 -05:00
|
|
|
#include "py/objtuple.h"
|
2020-11-22 21:52:37 -05:00
|
|
|
#include "py/runtime.h"
|
2020-11-22 19:10:09 -05:00
|
|
|
|
2020-12-22 10:06:43 -05:00
|
|
|
#include "shared-bindings/alarm/__init__.h"
|
2020-12-10 13:03:40 -05:00
|
|
|
#include "shared-bindings/alarm/SleepMemory.h"
|
2020-12-18 02:24:36 -05:00
|
|
|
#include "shared-bindings/alarm/pin/PinAlarm.h"
|
2020-11-25 17:52:06 -05:00
|
|
|
#include "shared-bindings/alarm/time/TimeAlarm.h"
|
2020-12-18 02:24:36 -05:00
|
|
|
#include "shared-bindings/alarm/touch/TouchAlarm.h"
|
|
|
|
|
2020-12-01 20:01:14 -05:00
|
|
|
#include "shared-bindings/wifi/__init__.h"
|
2020-12-18 02:24:36 -05:00
|
|
|
#include "shared-bindings/microcontroller/__init__.h"
|
2020-12-01 20:01:14 -05:00
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
#include "supervisor/port.h"
|
|
|
|
#include "supervisor/shared/workflow.h"
|
|
|
|
|
2020-09-24 01:29:04 -04:00
|
|
|
#include "esp_sleep.h"
|
|
|
|
|
2020-12-08 20:13:00 -05:00
|
|
|
#include "components/soc/soc/esp32s2/include/soc/rtc_cntl_reg.h"
|
|
|
|
#include "components/driver/include/driver/uart.h"
|
|
|
|
|
2020-12-10 13:03:40 -05:00
|
|
|
// Singleton instance of SleepMemory.
|
|
|
|
const alarm_sleep_memory_obj_t alarm_sleep_memory_obj = {
|
|
|
|
.base = {
|
|
|
|
.type = &alarm_sleep_memory_type,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-11-22 19:10:09 -05:00
|
|
|
void alarm_reset(void) {
|
2020-12-10 13:03:40 -05:00
|
|
|
alarm_sleep_memory_reset();
|
2020-12-30 12:14:22 -05:00
|
|
|
alarm_pin_pinalarm_reset();
|
2020-12-18 02:24:36 -05:00
|
|
|
alarm_time_timealarm_reset();
|
|
|
|
alarm_touch_touchalarm_reset();
|
2020-12-02 21:05:29 -05:00
|
|
|
esp_sleep_disable_wakeup_source(ESP_SLEEP_WAKEUP_ALL);
|
2020-11-22 19:10:09 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
STATIC esp_sleep_wakeup_cause_t _get_wakeup_cause(void) {
|
2020-12-30 12:14:22 -05:00
|
|
|
if (alarm_pin_pinalarm_woke_us_up()) {
|
|
|
|
return ESP_SLEEP_WAKEUP_GPIO;
|
|
|
|
}
|
2020-12-02 21:05:29 -05:00
|
|
|
if (alarm_time_timealarm_woke_us_up()) {
|
|
|
|
return ESP_SLEEP_WAKEUP_TIMER;
|
|
|
|
}
|
2020-12-18 02:24:36 -05:00
|
|
|
if (alarm_touch_touchalarm_woke_us_up()) {
|
|
|
|
return ESP_SLEEP_WAKEUP_TOUCHPAD;
|
|
|
|
}
|
2020-12-02 21:05:29 -05:00
|
|
|
return esp_sleep_get_wakeup_cause();
|
2020-09-26 01:45:50 -04:00
|
|
|
}
|
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
bool alarm_woken_from_sleep(void) {
|
|
|
|
return _get_wakeup_cause() != ESP_SLEEP_WAKEUP_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t _get_wake_alarm(size_t n_alarms, const mp_obj_t *alarms) {
|
2020-12-08 20:13:00 -05:00
|
|
|
esp_sleep_wakeup_cause_t cause = _get_wakeup_cause();
|
|
|
|
switch (cause) {
|
2020-11-20 23:33:39 -05:00
|
|
|
case ESP_SLEEP_WAKEUP_TIMER: {
|
2020-12-02 21:05:29 -05:00
|
|
|
return alarm_time_timealarm_get_wakeup_alarm(n_alarms, alarms);
|
2020-11-20 23:33:39 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 20:13:00 -05:00
|
|
|
case ESP_SLEEP_WAKEUP_GPIO:
|
|
|
|
case ESP_SLEEP_WAKEUP_EXT0:
|
|
|
|
case ESP_SLEEP_WAKEUP_EXT1: {
|
2020-12-22 19:13:02 -05:00
|
|
|
return alarm_pin_pinalarm_get_wakeup_alarm(n_alarms, alarms);
|
2020-11-20 23:33:39 -05:00
|
|
|
}
|
|
|
|
|
2021-01-11 05:00:45 -05:00
|
|
|
case ESP_SLEEP_WAKEUP_TOUCHPAD: {
|
2020-12-18 02:24:36 -05:00
|
|
|
return alarm_touch_touchalarm_get_wakeup_alarm(n_alarms, alarms);
|
2021-01-11 05:00:45 -05:00
|
|
|
}
|
2020-11-20 23:33:39 -05:00
|
|
|
|
2020-09-24 01:29:04 -04:00
|
|
|
case ESP_SLEEP_WAKEUP_UNDEFINED:
|
|
|
|
default:
|
2020-11-20 23:33:39 -05:00
|
|
|
// Not a deep sleep reset.
|
2020-09-24 01:29:04 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
2020-11-22 19:10:09 -05:00
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
mp_obj_t common_hal_alarm_get_wake_alarm(void) {
|
|
|
|
return _get_wake_alarm(0, NULL);
|
|
|
|
}
|
|
|
|
|
2020-11-27 16:02:17 -05:00
|
|
|
// Set up light sleep or deep sleep alarms.
|
2020-12-02 21:05:29 -05:00
|
|
|
STATIC void _setup_sleep_alarms(bool deep_sleep, size_t n_alarms, const mp_obj_t *alarms) {
|
2020-12-22 19:13:02 -05:00
|
|
|
alarm_pin_pinalarm_set_alarms(deep_sleep, n_alarms, alarms);
|
2020-12-08 20:13:00 -05:00
|
|
|
alarm_time_timealarm_set_alarms(deep_sleep, n_alarms, alarms);
|
2020-12-30 11:41:22 -05:00
|
|
|
alarm_touch_touchalarm_set_alarm(deep_sleep, n_alarms, alarms);
|
2020-11-22 19:10:09 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
STATIC void _idle_until_alarm(void) {
|
|
|
|
// Poll for alarms.
|
|
|
|
while (!mp_hal_is_interrupted()) {
|
|
|
|
RUN_BACKGROUND_TASKS;
|
|
|
|
// Allow ctrl-C interrupt.
|
|
|
|
if (alarm_woken_from_sleep()) {
|
2020-12-30 16:14:20 -05:00
|
|
|
alarm_save_wake_alarm();
|
2020-12-02 21:05:29 -05:00
|
|
|
return;
|
2020-11-27 16:02:17 -05:00
|
|
|
}
|
2020-12-02 21:05:29 -05:00
|
|
|
port_idle_until_interrupt();
|
2020-11-27 16:02:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-01 20:01:14 -05:00
|
|
|
mp_obj_t common_hal_alarm_light_sleep_until_alarms(size_t n_alarms, const mp_obj_t *alarms) {
|
2020-12-02 21:05:29 -05:00
|
|
|
_setup_sleep_alarms(false, n_alarms, alarms);
|
2020-11-27 16:02:17 -05:00
|
|
|
|
2020-12-22 19:13:02 -05:00
|
|
|
// We cannot esp_light_sleep_start() here because it shuts down all non-RTC peripherals.
|
|
|
|
_idle_until_alarm();
|
|
|
|
|
|
|
|
if (mp_hal_is_interrupted()) {
|
|
|
|
return mp_const_none; // Shouldn't be given to python code because exception handling should kick in.
|
2020-12-01 20:01:14 -05:00
|
|
|
}
|
2020-12-08 20:13:00 -05:00
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
mp_obj_t wake_alarm = _get_wake_alarm(n_alarms, alarms);
|
|
|
|
alarm_reset();
|
|
|
|
return wake_alarm;
|
2020-11-26 22:06:37 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
void common_hal_alarm_set_deep_sleep_alarms(size_t n_alarms, const mp_obj_t *alarms) {
|
|
|
|
_setup_sleep_alarms(true, n_alarms, alarms);
|
2020-12-01 20:01:14 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
void NORETURN alarm_enter_deep_sleep(void) {
|
2020-12-22 19:13:02 -05:00
|
|
|
alarm_pin_pinalarm_prepare_for_deep_sleep();
|
2020-12-19 02:26:34 -05:00
|
|
|
alarm_touch_touchalarm_prepare_for_deep_sleep();
|
2021-02-08 12:40:20 -05:00
|
|
|
|
|
|
|
// Disable brownout detection, which appears to be triggered sometimes when
|
|
|
|
// waking from deep sleep.
|
|
|
|
// See https://www.esp32.com/viewtopic.php?f=13&t=19208#p71084
|
|
|
|
// and https://github.com/adafruit/circuitpython/issues/4025#issuecomment-771027606
|
|
|
|
// TODO: We can remove this workaround when ESP-IDF handles this.
|
|
|
|
CLEAR_PERI_REG_MASK(RTC_CNTL_BROWN_OUT_REG, RTC_CNTL_BROWN_OUT_RST_ENA);
|
|
|
|
|
2020-12-02 21:05:29 -05:00
|
|
|
// The ESP-IDF caches the deep sleep settings and applies them before sleep.
|
|
|
|
// We don't need to worry about resetting them in the interim.
|
2020-11-26 22:06:37 -05:00
|
|
|
esp_deep_sleep_start();
|
2020-11-22 19:10:09 -05:00
|
|
|
}
|
2020-12-22 10:06:43 -05:00
|
|
|
|
|
|
|
void common_hal_alarm_gc_collect(void) {
|
|
|
|
gc_collect_ptr(alarm_get_wake_alarm());
|
|
|
|
}
|