2021-02-16 03:40:38 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 Espressif Systems (Shanghai) Co., Ltd.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DT_DRV_COMPAT espressif_esp32_timer
|
|
|
|
|
|
|
|
/* Include esp-idf headers first to avoid redefining BIT() macro */
|
|
|
|
#include <soc/rtc_cntl_reg.h>
|
|
|
|
#include <soc/timer_group_reg.h>
|
|
|
|
#include <driver/periph_ctrl.h>
|
|
|
|
#include <soc/periph_defs.h>
|
|
|
|
#include <hal/timer_types.h>
|
|
|
|
#include <hal/timer_hal.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <drivers/counter.h>
|
2021-11-02 08:25:57 +08:00
|
|
|
#ifndef CONFIG_SOC_ESP32C3
|
2021-04-17 05:15:11 +08:00
|
|
|
#include <drivers/interrupt_controller/intc_esp32.h>
|
2021-11-02 08:25:57 +08:00
|
|
|
#else
|
|
|
|
#include <drivers/interrupt_controller/intc_esp32c3.h>
|
|
|
|
#endif
|
2021-02-16 03:40:38 +08:00
|
|
|
#include <device.h>
|
|
|
|
#include <logging/log.h>
|
|
|
|
LOG_MODULE_REGISTER(esp32_counter, CONFIG_COUNTER_LOG_LEVEL);
|
|
|
|
|
2021-11-02 08:25:57 +08:00
|
|
|
#ifdef CONFIG_SOC_ESP32C3
|
|
|
|
#define ISR_HANDLER isr_handler_t
|
|
|
|
#else
|
|
|
|
#define ISR_HANDLER intr_handler_t
|
|
|
|
#endif
|
|
|
|
|
2021-02-16 03:40:38 +08:00
|
|
|
#define INITIAL_COUNT (0x00000000ULL)
|
|
|
|
|
2021-11-02 08:25:57 +08:00
|
|
|
#ifndef CONFIG_SOC_ESP32C3
|
2021-02-16 03:40:38 +08:00
|
|
|
#define INST_0_INDEX TIMER_0
|
|
|
|
#define INST_1_INDEX TIMER_1
|
|
|
|
#define INST_2_INDEX TIMER_0
|
|
|
|
#define INST_3_INDEX TIMER_1
|
|
|
|
|
|
|
|
#define INST_0_GROUP TIMER_GROUP_0
|
|
|
|
#define INST_1_GROUP TIMER_GROUP_0
|
|
|
|
#define INST_2_GROUP TIMER_GROUP_1
|
|
|
|
#define INST_3_GROUP TIMER_GROUP_1
|
2021-11-02 08:25:57 +08:00
|
|
|
#else
|
|
|
|
#define INST_0_INDEX TIMER_0
|
|
|
|
#define INST_1_INDEX TIMER_0
|
|
|
|
|
|
|
|
#define INST_0_GROUP TIMER_GROUP_0
|
|
|
|
#define INST_1_GROUP TIMER_GROUP_1
|
|
|
|
#endif
|
2021-02-16 03:40:38 +08:00
|
|
|
|
|
|
|
#define TIMX p_timer_obj[TIMG(dev)][TIDX(dev)]
|
2022-01-18 21:01:39 +08:00
|
|
|
#define TIMG(dev) ((const struct counter_esp32_config *const)(dev->config)->group)
|
|
|
|
#define TIDX(dev) ((const struct counter_esp32_config *const)(dev->config)->idx)
|
2021-02-16 03:40:38 +08:00
|
|
|
|
2021-04-17 05:15:11 +08:00
|
|
|
static void counter_esp32_isr(void *arg);
|
|
|
|
|
|
|
|
typedef bool (*timer_isr_t)(void *);
|
2021-02-16 03:40:38 +08:00
|
|
|
|
|
|
|
struct timer_isr_func_t {
|
|
|
|
timer_isr_t fn;
|
|
|
|
void *args;
|
2021-04-17 05:15:11 +08:00
|
|
|
struct intr_handle_data_t *timer_isr_handle;
|
2021-02-16 03:40:38 +08:00
|
|
|
timer_group_t isr_timer_group;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct counter_obj_t {
|
|
|
|
timer_hal_context_t hal;
|
|
|
|
struct timer_isr_func_t timer_isr_fun;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct counter_esp32_config {
|
|
|
|
struct counter_config_info counter_info;
|
|
|
|
timer_config_t config;
|
|
|
|
timer_group_t group;
|
|
|
|
timer_idx_t idx;
|
2021-04-17 05:15:11 +08:00
|
|
|
int irq_source;
|
2021-02-16 03:40:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct counter_esp32_data {
|
|
|
|
struct counter_alarm_cfg alarm_cfg;
|
|
|
|
uint32_t ticks;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct counter_obj_t *p_timer_obj[TIMER_GROUP_MAX][TIMER_MAX] = { 0 };
|
|
|
|
static struct k_spinlock lock;
|
|
|
|
|
2021-11-02 08:25:57 +08:00
|
|
|
#ifdef CONFIG_SOC_ESP32C3
|
|
|
|
static struct counter_obj_t timer_pool[TIMER_GROUP_MAX] = {0};
|
|
|
|
#endif
|
|
|
|
|
2021-02-16 03:40:38 +08:00
|
|
|
static int counter_esp32_init(const struct device *dev)
|
|
|
|
{
|
2022-01-18 21:01:39 +08:00
|
|
|
const struct counter_esp32_config *cfg = dev->config;
|
|
|
|
struct counter_esp32_data *data = dev->data;
|
2021-02-16 03:40:38 +08:00
|
|
|
|
|
|
|
if (TIMG(dev) == TIMER_GROUP_0) {
|
|
|
|
periph_module_enable(PERIPH_TIMG0_MODULE);
|
|
|
|
} else if (TIMG(dev) == TIMER_GROUP_1) {
|
|
|
|
periph_module_enable(PERIPH_TIMG1_MODULE);
|
|
|
|
} else {
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TIMX == NULL) {
|
2021-11-02 08:25:57 +08:00
|
|
|
#ifndef CONFIG_SOC_ESP32C3
|
2021-02-16 03:40:38 +08:00
|
|
|
TIMX = (struct counter_obj_t *)k_calloc(1, sizeof(struct counter_obj_t));
|
|
|
|
if (TIMX == NULL) {
|
|
|
|
LOG_ERR("TIMER driver malloc error");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2021-11-02 08:25:57 +08:00
|
|
|
#else
|
|
|
|
TIMX = &timer_pool[TIMG(dev)];
|
|
|
|
#endif
|
2021-02-16 03:40:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
|
|
|
|
timer_hal_init(&TIMX->hal, TIMG(dev), TIDX(dev));
|
2022-01-18 21:01:39 +08:00
|
|
|
data->alarm_cfg.callback = NULL;
|
2021-02-16 03:40:38 +08:00
|
|
|
timer_hal_intr_disable(&TIMX->hal);
|
|
|
|
timer_hal_clear_intr_status(&TIMX->hal);
|
|
|
|
timer_hal_set_auto_reload(&TIMX->hal, cfg->config.auto_reload);
|
|
|
|
timer_hal_set_divider(&TIMX->hal, cfg->config.divider);
|
|
|
|
timer_hal_set_counter_increase(&TIMX->hal, cfg->config.counter_dir);
|
|
|
|
timer_hal_set_alarm_enable(&TIMX->hal, cfg->config.alarm_en);
|
|
|
|
if (cfg->config.intr_type == TIMER_INTR_LEVEL) {
|
|
|
|
timer_hal_set_level_int_enable(&TIMX->hal, true);
|
|
|
|
}
|
|
|
|
timer_hal_set_counter_value(&TIMX->hal, INITIAL_COUNT);
|
|
|
|
timer_hal_set_counter_enable(&TIMX->hal, cfg->config.counter_en);
|
2022-01-18 21:01:39 +08:00
|
|
|
esp_intr_alloc(cfg->irq_source,
|
2021-11-02 08:25:57 +08:00
|
|
|
0,
|
|
|
|
(ISR_HANDLER)counter_esp32_isr,
|
|
|
|
(void *)dev,
|
|
|
|
NULL);
|
2021-02-16 03:40:38 +08:00
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int counter_esp32_start(const struct device *dev)
|
|
|
|
{
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
|
|
|
|
timer_hal_set_counter_enable(&TIMX->hal, TIMER_START);
|
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int counter_esp32_stop(const struct device *dev)
|
|
|
|
{
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
|
|
|
|
timer_hal_set_counter_enable(&TIMX->hal, TIMER_PAUSE);
|
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int counter_esp32_get_value(const struct device *dev, uint32_t *ticks)
|
|
|
|
{
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
|
|
|
|
timer_hal_get_counter_value(&TIMX->hal, (uint64_t *)ticks);
|
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
|
|
|
|
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);
|
|
|
|
uint32_t now;
|
|
|
|
|
|
|
|
counter_esp32_get_value(dev, &now);
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
|
|
|
|
timer_hal_set_alarm_value(&TIMX->hal, (now + alarm_cfg->ticks));
|
|
|
|
timer_hal_intr_enable(&TIMX->hal);
|
|
|
|
timer_hal_set_alarm_enable(&TIMX->hal, TIMER_ALARM_EN);
|
2022-01-18 21:01:39 +08:00
|
|
|
data->alarm_cfg.callback = alarm_cfg->callback;
|
|
|
|
data->alarm_cfg.user_data = alarm_cfg->user_data;
|
2021-02-16 03:40:38 +08:00
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int counter_esp32_cancel_alarm(const struct device *dev, uint8_t chan_id)
|
|
|
|
{
|
|
|
|
ARG_UNUSED(chan_id);
|
|
|
|
|
|
|
|
k_spinlock_key_t key = k_spin_lock(&lock);
|
|
|
|
|
|
|
|
timer_hal_intr_disable(&TIMX->hal);
|
|
|
|
timer_hal_set_alarm_enable(&TIMX->hal, TIMER_ALARM_DIS);
|
|
|
|
k_spin_unlock(&lock, key);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int counter_esp32_set_top_value(const struct device *dev,
|
|
|
|
const struct counter_top_cfg *cfg)
|
|
|
|
{
|
2022-01-18 21:01:39 +08:00
|
|
|
const struct counter_esp32_config *config = dev->config;
|
|
|
|
|
|
|
|
if (cfg->ticks != config->counter_info.max_top_value) {
|
2021-02-16 03:40:38 +08:00
|
|
|
return -ENOTSUP;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t counter_esp32_get_pending_int(const struct device *dev)
|
|
|
|
{
|
|
|
|
timer_hal_get_intr_status_reg(&TIMX->hal);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t counter_esp32_get_top_value(const struct device *dev)
|
|
|
|
{
|
2022-01-18 21:01:39 +08:00
|
|
|
const struct counter_esp32_config *config = dev->config;
|
|
|
|
|
|
|
|
return config->counter_info.max_top_value;
|
2021-02-16 03:40:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct counter_driver_api counter_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,
|
|
|
|
};
|
|
|
|
|
2021-04-17 05:15:11 +08:00
|
|
|
static void counter_esp32_isr(void *arg)
|
2021-02-16 03:40:38 +08:00
|
|
|
{
|
2021-04-17 05:15:11 +08:00
|
|
|
struct device *dev = (struct device *)arg;
|
2022-01-18 21:01:39 +08:00
|
|
|
struct counter_esp32_data *data = dev->data;
|
2021-02-16 03:40:38 +08:00
|
|
|
counter_esp32_cancel_alarm(dev, 0);
|
|
|
|
uint32_t now;
|
|
|
|
|
|
|
|
counter_esp32_get_value(dev, &now);
|
|
|
|
|
2022-01-18 21:01:39 +08:00
|
|
|
struct counter_alarm_cfg *alarm_cfg = &data->alarm_cfg;
|
2021-02-16 03:40:38 +08:00
|
|
|
|
|
|
|
if (alarm_cfg->callback) {
|
|
|
|
alarm_cfg->callback(dev, 0, now, alarm_cfg->user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
timer_hal_clear_intr_status(&TIMX->hal);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ESP32_COUNTER_INIT(n) \
|
|
|
|
\
|
|
|
|
static struct counter_esp32_data counter_data_##n; \
|
|
|
|
\
|
|
|
|
static const struct counter_esp32_config counter_config_##n = { \
|
|
|
|
.counter_info = { \
|
|
|
|
.max_top_value = UINT32_MAX, \
|
|
|
|
.freq = (APB_CLK_FREQ / CONFIG_COUNTER_ESP32_PRESCALER), \
|
|
|
|
.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 = CONFIG_COUNTER_ESP32_PRESCALER, \
|
|
|
|
}, \
|
|
|
|
.group = INST_##n##_GROUP, \
|
|
|
|
.idx = INST_##n##_INDEX, \
|
2021-04-17 05:15:11 +08:00
|
|
|
.irq_source = DT_IRQN(DT_NODELABEL(timer##n)) \
|
2021-02-16 03:40:38 +08:00
|
|
|
}; \
|
|
|
|
\
|
|
|
|
\
|
|
|
|
DEVICE_DT_INST_DEFINE(n, \
|
|
|
|
counter_esp32_init, \
|
2021-04-28 16:23:42 +08:00
|
|
|
NULL, &counter_data_##n, \
|
2021-02-16 03:40:38 +08:00
|
|
|
&counter_config_##n, PRE_KERNEL_1, \
|
2021-10-21 04:15:14 +08:00
|
|
|
CONFIG_COUNTER_INIT_PRIORITY, &counter_api);
|
2021-02-16 03:40:38 +08:00
|
|
|
|
2021-11-02 08:25:57 +08:00
|
|
|
DT_INST_FOREACH_STATUS_OKAY(ESP32_COUNTER_INIT);
|