/* * Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd. * * SPDX-License-Identifier: Apache-2.0 */ #define DT_DRV_COMPAT espressif_esp32_rtc_timer /* * Include esp-idf headers first to avoid * redefining BIT() macro */ #include "soc/rtc_cntl_reg.h" #include "soc/rtc.h" #include #include #include #include #if defined(CONFIG_SOC_SERIES_ESP32C3) #include #else #include #endif #include LOG_MODULE_REGISTER(esp32_counter_rtc, CONFIG_COUNTER_LOG_LEVEL); #if defined(CONFIG_SOC_SERIES_ESP32C3) #define ESP32_COUNTER_RTC_ISR_HANDLER isr_handler_t #else #define ESP32_COUNTER_RTC_ISR_HANDLER intr_handler_t #endif static void counter_esp32_isr(void *arg); struct counter_esp32_config { struct counter_config_info counter_info; int irq_source; }; struct counter_esp32_data { struct counter_alarm_cfg alarm_cfg; uint32_t ticks; }; static int counter_esp32_init(const struct device *dev) { const struct counter_esp32_config *cfg = dev->config; /* SLOW_CK is the default clk source */ if (cfg->counter_info.freq != rtc_clk_slow_freq_get_hz()) { return -EINVAL; } esp_intr_alloc(cfg->irq_source, 0, (ESP32_COUNTER_RTC_ISR_HANDLER)counter_esp32_isr, (void *)dev, NULL); return 0; } static int counter_esp32_start(const struct device *dev) { ARG_UNUSED(dev); /* RTC main timer runs after power-on reset */ return 0; } static int counter_esp32_stop(const struct device *dev) { ARG_UNUSED(dev); /* * Any reset/sleep mode, except for the power-up * reset, will not stop or reset the RTC timer * ESP32 TRM v4.6 sec. 31.3.11 */ return -ENOTSUP; } static int counter_esp32_get_value(const struct device *dev, uint32_t *ticks) { ARG_UNUSED(dev); SET_PERI_REG_MASK(RTC_CNTL_TIME_UPDATE_REG, RTC_CNTL_TIME_UPDATE); #if defined(CONFIG_SOC_SERIES_ESP32) while (GET_PERI_REG_MASK(RTC_CNTL_TIME_UPDATE_REG, RTC_CNTL_TIME_VALID) == 0) { /* might take 1 RTC slowclk period, don't flood RTC bus */ k_sleep(K_USEC(1)); } SET_PERI_REG_MASK(RTC_CNTL_INT_CLR_REG, RTC_CNTL_TIME_VALID_INT_CLR); #endif *ticks = (uint32_t) READ_PERI_REG(RTC_CNTL_TIME0_REG); return 0; } static int counter_esp32_set_alarm(const struct device *dev, uint8_t chan_id, const struct counter_alarm_cfg *alarm_cfg) { ARG_UNUSED(chan_id); struct counter_esp32_data *data = dev->data; uint32_t now; counter_esp32_get_value(dev, &now); if ((alarm_cfg->flags & COUNTER_ALARM_CFG_ABSOLUTE) == 0) { WRITE_PERI_REG(RTC_CNTL_SLP_TIMER0_REG, (now + alarm_cfg->ticks)); } else { WRITE_PERI_REG(RTC_CNTL_SLP_TIMER0_REG, alarm_cfg->ticks); } /* RTC main timer set alarm value */ CLEAR_PERI_REG_MASK(RTC_CNTL_SLP_TIMER1_REG, 0xffffffff); /* RTC main timer interrupt enable */ SET_PERI_REG_MASK(RTC_CNTL_INT_ENA_REG, RTC_CNTL_MAIN_TIMER_INT_ENA); /* RTC main timer set alarm enable */ SET_PERI_REG_MASK(RTC_CNTL_SLP_TIMER1_REG, RTC_CNTL_MAIN_TIMER_ALARM_EN); data->alarm_cfg.callback = alarm_cfg->callback; data->alarm_cfg.user_data = alarm_cfg->user_data; return 0; } static int counter_esp32_cancel_alarm(const struct device *dev, uint8_t chan_id) { ARG_UNUSED(dev); ARG_UNUSED(chan_id); /* RTC main timer interrupt disable */ SET_PERI_REG_MASK(RTC_CNTL_INT_CLR_REG, RTC_CNTL_MAIN_TIMER_INT_CLR); /* RTC main timer set alarm disable */ CLEAR_PERI_REG_MASK(RTC_CNTL_SLP_TIMER1_REG, RTC_CNTL_MAIN_TIMER_ALARM_EN); return 0; } static int counter_esp32_set_top_value(const struct device *dev, const struct counter_top_cfg *cfg) { const struct counter_esp32_config *config = dev->config; if (cfg->ticks != config->counter_info.max_top_value) { return -ENOTSUP; } return 0; } static uint32_t counter_esp32_get_pending_int(const struct device *dev) { ARG_UNUSED(dev); uint32_t rc = READ_PERI_REG(RTC_CNTL_INT_ST_REG) & RTC_CNTL_MAIN_TIMER_INT_ST; return (rc >> RTC_CNTL_MAIN_TIMER_INT_ST_S); } /* * Espressif's RTC Timer is actually 48-bits in resolution * However, the top value returned is limited to UINT32_MAX * as per the counter API. */ static uint32_t counter_esp32_get_top_value(const struct device *dev) { const struct counter_config_info *info = dev->config; return info->max_top_value; } static struct counter_esp32_data counter_data; static const struct counter_esp32_config counter_config = { .counter_info = { .max_top_value = UINT32_MAX, .freq = DT_INST_PROP(0, slow_clk_freq), .flags = COUNTER_CONFIG_INFO_COUNT_UP, .channels = 1 }, .irq_source = DT_INST_IRQN(0), }; static const struct counter_driver_api rtc_timer_esp32_api = { .start = counter_esp32_start, .stop = counter_esp32_stop, .get_value = counter_esp32_get_value, .set_alarm = counter_esp32_set_alarm, .cancel_alarm = counter_esp32_cancel_alarm, .set_top_value = counter_esp32_set_top_value, .get_pending_int = counter_esp32_get_pending_int, .get_top_value = counter_esp32_get_top_value, }; static void counter_esp32_isr(void *arg) { const struct device *dev = (const struct device *)arg; struct counter_esp32_data *data = dev->data; uint32_t now; counter_esp32_cancel_alarm(dev, 0); counter_esp32_get_value(dev, &now); if (data->alarm_cfg.callback) { data->alarm_cfg.callback(dev, 0, now, data->alarm_cfg.user_data); } /* RTC timer clear interrupt status */ SET_PERI_REG_MASK(RTC_CNTL_INT_CLR_REG, RTC_CNTL_MAIN_TIMER_INT_CLR); } DEVICE_DT_INST_DEFINE(0, &counter_esp32_init, NULL, &counter_data, &counter_config, PRE_KERNEL_1, CONFIG_COUNTER_INIT_PRIORITY, &rtc_timer_esp32_api);