2022-10-11 22:03:47 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
|
|
|
#include "esp_attr.h"
|
|
|
|
#include "esp_sleep.h"
|
2023-02-28 07:04:30 -05:00
|
|
|
#include "esp_cpu.h"
|
2022-10-11 22:03:47 -04:00
|
|
|
|
|
|
|
#include "soc/soc.h"
|
|
|
|
#include "soc/rtc.h"
|
|
|
|
#include "soc/soc_caps.h"
|
|
|
|
#include "hal/uart_ll.h"
|
|
|
|
|
2023-01-12 05:04:51 -05:00
|
|
|
#if SOC_LP_TIMER_SUPPORTED
|
|
|
|
#include "hal/lp_timer_ll.h"
|
|
|
|
#include "hal/lp_timer_hal.h"
|
|
|
|
#else
|
|
|
|
#include "hal/rtc_cntl_ll.h"
|
|
|
|
#endif
|
2023-01-28 04:36:45 -05:00
|
|
|
|
|
|
|
#if SOC_PMU_SUPPORTED
|
|
|
|
#include "hal/pmu_ll.h"
|
|
|
|
#endif
|
|
|
|
|
2022-10-11 22:03:47 -04:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include "esp_rom_uart.h"
|
|
|
|
#include "esp_rom_sys.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_IDF_TARGET_ESP32
|
|
|
|
#include "esp32/rom/rtc.h"
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2
|
|
|
|
#include "esp32s2/rom/rtc.h"
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S3
|
|
|
|
#include "esp32s3/rom/rtc.h"
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3
|
|
|
|
#include "esp32c3/rom/rtc.h"
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C6
|
|
|
|
#include "esp32c6/rom/rtc.h"
|
|
|
|
#elif CONFIG_IDF_TARGET_ESP32H2
|
|
|
|
#include "esp32h2/rom/rtc.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void RTC_IRAM_ATTR esp_wake_stub_sleep(esp_deep_sleep_wake_stub_fn_t new_stub)
|
|
|
|
{
|
2023-02-24 00:53:38 -05:00
|
|
|
|
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
|
|
// Since the app core of esp32 does not support access to RTC_FAST_MEMORY,
|
|
|
|
// `esp_set_deep_sleep_wake_stub` is not declared in RTC_FAST_MEMORY,
|
|
|
|
// so we cannot call it here
|
|
|
|
REG_WRITE(RTC_ENTRY_ADDR_REG, (uint32_t)new_stub);
|
|
|
|
#else
|
|
|
|
esp_set_deep_sleep_wake_stub(new_stub);
|
|
|
|
#endif
|
|
|
|
|
2022-10-11 22:03:47 -04:00
|
|
|
#if SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY
|
2023-02-24 00:53:38 -05:00
|
|
|
esp_set_deep_sleep_wake_stub_default_entry();
|
2022-10-11 22:03:47 -04:00
|
|
|
#else
|
|
|
|
set_rtc_memory_crc();
|
|
|
|
#endif // SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_MEM
|
|
|
|
|
|
|
|
// Go to sleep.
|
2023-01-28 04:36:45 -05:00
|
|
|
#if SOC_PMU_SUPPORTED
|
2023-02-18 01:13:52 -05:00
|
|
|
pmu_ll_hp_clear_wakeup_intr_status(&PMU);
|
|
|
|
pmu_ll_hp_clear_reject_intr_status(&PMU);
|
|
|
|
pmu_ll_hp_clear_reject_cause(&PMU);
|
2023-01-28 04:36:45 -05:00
|
|
|
pmu_ll_hp_set_sleep_enable(&PMU);
|
|
|
|
#else
|
2022-10-11 22:03:47 -04:00
|
|
|
rtc_cntl_ll_sleep_enable();
|
2023-01-28 04:36:45 -05:00
|
|
|
#endif
|
|
|
|
|
2022-10-11 22:03:47 -04:00
|
|
|
// A few CPU cycles may be necessary for the sleep to start...
|
2023-02-28 07:04:30 -05:00
|
|
|
#if __XTENSA__
|
|
|
|
xt_utils_wait_for_intr();
|
|
|
|
#else
|
|
|
|
rv_utils_wait_for_intr();
|
|
|
|
#endif // __XTENSA__
|
2022-10-11 22:03:47 -04:00
|
|
|
// never reaches here.
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTC_IRAM_ATTR esp_wake_stub_uart_tx_wait_idle(uint8_t uart_no)
|
|
|
|
{
|
|
|
|
while (!uart_ll_is_tx_idle(UART_LL_GET_HW(uart_no))) {};
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTC_IRAM_ATTR esp_wake_stub_set_wakeup_time(uint64_t time_in_us)
|
|
|
|
{
|
2023-01-12 05:04:51 -05:00
|
|
|
#if SOC_LP_TIMER_SUPPORTED
|
|
|
|
uint64_t rtc_count_delta = lp_timer_ll_time_to_count(time_in_us);
|
2023-02-18 01:13:52 -05:00
|
|
|
|
|
|
|
lp_timer_ll_counter_snapshot(&LP_TIMER);
|
|
|
|
uint32_t lo = lp_timer_ll_get_counter_value_low(&LP_TIMER, 0);
|
|
|
|
uint32_t hi = lp_timer_ll_get_counter_value_high(&LP_TIMER, 0);
|
|
|
|
uint64_t rtc_curr_count = (uint64_t)hi << 32 | lo;
|
|
|
|
|
|
|
|
lp_timer_ll_clear_alarm_intr_status(&LP_TIMER);
|
|
|
|
lp_timer_ll_set_alarm_target(&LP_TIMER, 0, rtc_curr_count + rtc_count_delta);
|
|
|
|
lp_timer_ll_set_target_enable(&LP_TIMER, 0, true);
|
2023-01-12 05:04:51 -05:00
|
|
|
#else
|
2022-10-11 22:03:47 -04:00
|
|
|
uint64_t rtc_count_delta = rtc_cntl_ll_time_to_count(time_in_us);
|
|
|
|
uint64_t rtc_curr_count = rtc_cntl_ll_get_rtc_time();
|
|
|
|
rtc_cntl_ll_set_wakeup_timer(rtc_curr_count + rtc_count_delta);
|
2023-01-12 05:04:51 -05:00
|
|
|
#endif
|
|
|
|
|
2022-10-11 22:03:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t RTC_IRAM_ATTR esp_wake_stub_get_wakeup_cause(void)
|
|
|
|
{
|
2023-01-28 04:36:45 -05:00
|
|
|
#if SOC_PMU_SUPPORTED
|
|
|
|
return pmu_ll_hp_get_wakeup_cause(&PMU);
|
|
|
|
#else
|
2022-10-11 22:03:47 -04:00
|
|
|
return rtc_cntl_ll_get_wakeup_cause();
|
2023-01-28 04:36:45 -05:00
|
|
|
#endif
|
2022-10-11 22:03:47 -04:00
|
|
|
}
|