/* * Copyright (c) 2024-2025 Espressif Systems (Shanghai) Co., Ltd. * * SPDX-License-Identifier: Apache-2.0 */ #define DT_DRV_COMPAT espressif_esp32_counter #include #include #include #include #include #include #include #include #include #include LOG_MODULE_REGISTER(esp32_counter, CONFIG_COUNTER_LOG_LEVEL); static void counter_esp32_isr(void *arg); typedef bool (*timer_isr_t)(void *); struct counter_esp32_top_data { counter_top_callback_t callback; uint32_t ticks; void *user_data; bool auto_reload; uint32_t guard_period; }; struct counter_esp32_config { struct counter_config_info counter_info; timer_config_t config; const struct device *clock_dev; const clock_control_subsys_t clock_subsys; timer_group_t group; timer_idx_t index; int irq_source; int irq_priority; int irq_flags; }; struct counter_esp32_data { struct counter_alarm_cfg alarm_cfg; struct counter_esp32_top_data top_data; uint32_t ticks; uint32_t clock_src_hz; timer_hal_context_t hal_ctx; }; static int counter_esp32_init(const struct device *dev) { const struct counter_esp32_config *cfg = dev->config; struct counter_esp32_data *data = dev->data; if (!device_is_ready(cfg->clock_dev)) { return -ENODEV; } /* Return value is not checked below, as clock might have been already enabled * by another timer of the same group. */ clock_control_on(cfg->clock_dev, cfg->clock_subsys); data->alarm_cfg.callback = NULL; data->top_data.callback = NULL; data->top_data.user_data = NULL; data->top_data.auto_reload = false; data->top_data.ticks = cfg->counter_info.max_top_value; timer_hal_init(&data->hal_ctx, cfg->group, cfg->index); timer_ll_enable_intr(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id), false); timer_ll_clear_intr_status(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id)); timer_ll_enable_auto_reload(data->hal_ctx.dev, data->hal_ctx.timer_id, cfg->config.auto_reload); timer_ll_set_clock_source(data->hal_ctx.dev, data->hal_ctx.timer_id, GPTIMER_CLK_SRC_DEFAULT); timer_ll_set_clock_prescale(data->hal_ctx.dev, data->hal_ctx.timer_id, cfg->config.divider); timer_ll_set_count_direction(data->hal_ctx.dev, data->hal_ctx.timer_id, cfg->config.counter_dir); timer_ll_enable_alarm(data->hal_ctx.dev, data->hal_ctx.timer_id, cfg->config.alarm_en); timer_ll_set_reload_value(data->hal_ctx.dev, data->hal_ctx.timer_id, 0); timer_ll_enable_counter(data->hal_ctx.dev, data->hal_ctx.timer_id, cfg->config.counter_en); esp_clk_tree_src_get_freq_hz(GPTIMER_CLK_SRC_DEFAULT, ESP_CLK_TREE_SRC_FREQ_PRECISION_CACHED, &data->clock_src_hz); int ret = esp_intr_alloc(cfg->irq_source, ESP_PRIO_TO_FLAGS(cfg->irq_priority) | ESP_INT_FLAGS_CHECK(cfg->irq_flags), (intr_handler_t)counter_esp32_isr, (void *)dev, NULL); if (ret != 0) { LOG_ERR("could not allocate interrupt (err %d)", ret); } return ret; } static int counter_esp32_start(const struct device *dev) { struct counter_esp32_data *data = dev->data; timer_ll_enable_counter(data->hal_ctx.dev, data->hal_ctx.timer_id, TIMER_START); return 0; } static int counter_esp32_stop(const struct device *dev) { struct counter_esp32_data *data = dev->data; timer_ll_enable_counter(data->hal_ctx.dev, data->hal_ctx.timer_id, TIMER_PAUSE); return 0; } static int counter_esp32_get_value(const struct device *dev, uint32_t *ticks) { struct counter_esp32_data *data = dev->data; timer_ll_trigger_soft_capture(data->hal_ctx.dev, data->hal_ctx.timer_id); *ticks = (uint32_t)timer_ll_get_counter_value(data->hal_ctx.dev, data->hal_ctx.timer_id); return 0; } static int counter_esp32_get_value_64(const struct device *dev, uint64_t *ticks) { struct counter_esp32_data *data = dev->data; timer_ll_trigger_soft_capture(data->hal_ctx.dev, data->hal_ctx.timer_id); *ticks = timer_ll_get_counter_value(data->hal_ctx.dev, data->hal_ctx.timer_id); 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; bool absolute = alarm_cfg->flags & COUNTER_ALARM_CFG_ABSOLUTE; uint32_t ticks = alarm_cfg->ticks; uint32_t top = data->top_data.ticks; uint32_t max_rel_val = data->top_data.ticks; uint32_t now; uint32_t diff; int err = 0; bool irq_on_late = 0; if (ticks > data->top_data.ticks) { return -EINVAL; } data->alarm_cfg.callback = alarm_cfg->callback; data->alarm_cfg.user_data = alarm_cfg->user_data; counter_esp32_get_value(dev, &now); if (absolute == 0) { ticks += now; if (ticks > data->top_data.ticks) { ticks -= (data->top_data.ticks + 1); } timer_ll_set_alarm_value(data->hal_ctx.dev, data->hal_ctx.timer_id, (now + alarm_cfg->ticks)); } else { irq_on_late = alarm_cfg->flags & COUNTER_ALARM_CFG_EXPIRE_WHEN_LATE; max_rel_val = top - data->top_data.guard_period; timer_ll_set_alarm_value(data->hal_ctx.dev, data->hal_ctx.timer_id, alarm_cfg->ticks); } diff = (alarm_cfg->ticks - now); if (diff > max_rel_val) { if (absolute) { err = -ETIME; } if (irq_on_late) { timer_ll_enable_intr(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id), true); timer_ll_enable_alarm(data->hal_ctx.dev, data->hal_ctx.timer_id, TIMER_ALARM_EN); timer_ll_set_alarm_value(data->hal_ctx.dev, data->hal_ctx.timer_id, 0); } else { data->alarm_cfg.callback = NULL; } } else { timer_ll_enable_intr(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id), true); timer_ll_enable_alarm(data->hal_ctx.dev, data->hal_ctx.timer_id, TIMER_ALARM_EN); } return err; } static int counter_esp32_cancel_alarm(const struct device *dev, uint8_t chan_id) { ARG_UNUSED(chan_id); struct counter_esp32_data *data = dev->data; timer_ll_enable_intr(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id), false); timer_ll_enable_alarm(data->hal_ctx.dev, data->hal_ctx.timer_id, TIMER_ALARM_DIS); timer_ll_clear_intr_status(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id)); data->alarm_cfg.callback = NULL; data->alarm_cfg.user_data = NULL; 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; struct counter_esp32_data *data = dev->data; uint32_t now; if (data->alarm_cfg.callback) { return -EBUSY; } if (cfg->ticks > config->counter_info.max_top_value) { return -ENOTSUP; } counter_esp32_get_value(dev, &now); if (!(cfg->flags & COUNTER_TOP_CFG_DONT_RESET)) { timer_hal_set_counter_value(&data->hal_ctx, 0); } else { if (now > cfg->ticks) { if (cfg->flags & COUNTER_TOP_CFG_RESET_WHEN_LATE) { timer_hal_set_counter_value(&data->hal_ctx, 0); } else { return -ETIME; } } } data->top_data.ticks = cfg->ticks; data->top_data.callback = cfg->callback; data->top_data.user_data = cfg->user_data; data->top_data.auto_reload = (cfg->callback != NULL); timer_ll_clear_intr_status(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id)); timer_ll_set_alarm_value(data->hal_ctx.dev, data->hal_ctx.timer_id, cfg->ticks); timer_ll_enable_intr(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id), true); timer_ll_enable_alarm(data->hal_ctx.dev, data->hal_ctx.timer_id, TIMER_ALARM_EN); timer_ll_enable_auto_reload(data->hal_ctx.dev, data->hal_ctx.timer_id, cfg->callback ? TIMER_AUTORELOAD_EN : TIMER_AUTORELOAD_DIS); return 0; } static uint32_t counter_esp32_get_pending_int(const struct device *dev) { struct counter_esp32_data *data = dev->data; return timer_ll_get_intr_status(data->hal_ctx.dev); } static uint32_t counter_esp32_get_top_value(const struct device *dev) { struct counter_esp32_data *data = dev->data; return data->top_data.ticks; } uint32_t counter_esp32_get_freq(const struct device *dev) { const struct counter_esp32_config *config = dev->config; struct counter_esp32_data *data = dev->data; return data->clock_src_hz / config->config.divider; } static int counter_esp32_reset(const struct device *dev) { struct counter_esp32_data *data = dev->data; timer_hal_set_counter_value(&data->hal_ctx, 0); return 0; } static uint32_t counter_esp32_get_guard_period(const struct device *dev, uint32_t flags) { struct counter_esp32_data *data = dev->data; ARG_UNUSED(flags); return data->top_data.guard_period; } static int counter_esp32_set_guard_period(const struct device *dev, uint32_t ticks, uint32_t flags) { struct counter_esp32_data *data = dev->data; ARG_UNUSED(flags); if (ticks > data->top_data.ticks) { return -EINVAL; } data->top_data.guard_period = ticks; return 0; } static DEVICE_API(counter, counter_api) = { .start = counter_esp32_start, .stop = counter_esp32_stop, .get_value = counter_esp32_get_value, .reset = counter_esp32_reset, .get_value_64 = counter_esp32_get_value_64, .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, .get_freq = counter_esp32_get_freq, .get_guard_period = counter_esp32_get_guard_period, .set_guard_period = counter_esp32_set_guard_period, }; 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_get_value(dev, &now); if (data->alarm_cfg.callback) { data->alarm_cfg.callback(dev, 0, now, data->alarm_cfg.user_data); timer_ll_enable_intr(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id), false); timer_ll_enable_alarm(data->hal_ctx.dev, data->hal_ctx.timer_id, TIMER_ALARM_DIS); data->alarm_cfg.callback = NULL; data->alarm_cfg.user_data = NULL; } if (data->top_data.callback) { data->top_data.callback(dev, data->top_data.user_data); if (data->top_data.auto_reload) { timer_ll_enable_intr(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id), true); timer_ll_enable_alarm(data->hal_ctx.dev, data->hal_ctx.timer_id, TIMER_ALARM_EN); } } timer_ll_clear_intr_status(data->hal_ctx.dev, TIMER_LL_EVENT_ALARM(data->hal_ctx.timer_id)); } #define TIMER(idx) DT_INST_PARENT(idx) #define ESP32_COUNTER_GET_CLK_DIV(idx) \ (((DT_PROP(TIMER(idx), prescaler) & UINT16_MAX) < 2) \ ? 2 \ : (DT_PROP(TIMER(idx), prescaler) & UINT16_MAX)) #define ESP32_COUNTER_INIT(idx) \ \ static struct counter_esp32_data counter_data_##idx; \ \ static const struct counter_esp32_config counter_config_##idx = { \ .counter_info = {.max_top_value = UINT32_MAX, \ .flags = COUNTER_CONFIG_INFO_COUNT_UP, \ .channels = 1}, \ .config = \ { \ .alarm_en = TIMER_ALARM_DIS, \ .counter_en = TIMER_START, \ .intr_type = TIMER_INTR_LEVEL, \ .counter_dir = TIMER_COUNT_UP, \ .auto_reload = TIMER_AUTORELOAD_DIS, \ .divider = ESP32_COUNTER_GET_CLK_DIV(idx), \ }, \ .clock_dev = DEVICE_DT_GET(DT_CLOCKS_CTLR(TIMER(idx))), \ .clock_subsys = (clock_control_subsys_t)DT_CLOCKS_CELL(TIMER(idx), offset), \ .group = DT_PROP(TIMER(idx), group), \ .index = DT_PROP(TIMER(idx), index), \ .irq_source = DT_IRQ_BY_IDX(TIMER(idx), 0, irq), \ .irq_priority = DT_IRQ_BY_IDX(TIMER(idx), 0, priority), \ .irq_flags = DT_IRQ_BY_IDX(TIMER(idx), 0, flags)}; \ \ DEVICE_DT_INST_DEFINE(idx, counter_esp32_init, NULL, &counter_data_##idx, \ &counter_config_##idx, PRE_KERNEL_1, CONFIG_COUNTER_INIT_PRIORITY, \ &counter_api); DT_INST_FOREACH_STATUS_OKAY(ESP32_COUNTER_INIT);