Files
luban-lite-t3e-pro/bsp/artinchip/drv/psadc/drv_psadc.c

303 lines
6.8 KiB
C
Raw Normal View History

2023-08-30 16:21:18 +08:00
/*
2024-10-30 16:50:31 +08:00
* Copyright (c) 2022-2024, ArtInChip Technology Co., Ltd
2023-08-30 16:21:18 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
2024-10-30 16:50:31 +08:00
* Authors: Siyao Li <siyao.li@artinchip.com>
2023-08-30 16:21:18 +08:00
*/
#include <stdbool.h>
#include <getopt.h>
#include <string.h>
#include <drivers/adc.h>
#define LOG_TAG "PSADC"
#include "aic_core.h"
#include "aic_hal_clk.h"
#include "hal_psadc.h"
#define AIC_PSADC_NAME "psadc"
struct aic_psadc_dev {
struct rt_adc_device *dev;
struct aic_psadc_ch *chan;
2024-04-03 16:40:57 +08:00
struct aic_psadc_queue *queue;
2023-08-30 16:21:18 +08:00
};
static u32 g_psadc_pclk_rate = 0;
#ifdef AIC_PSADC_DRV_V11
#define AIC_PSADC_CLK_RATE 40000000 /* 40MHz */
#endif
struct aic_psadc_ch aic_psadc_chs[] = {
#ifdef AIC_USING_PSADC0
{
.id = 0,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC1
{
.id = 1,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC2
{
.id = 2,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC3
{
.id = 3,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC4
{
.id = 4,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC5
{
.id = 5,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC6
{
.id = 6,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC7
{
.id = 7,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC8
{
.id = 8,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC9
{
.id = 9,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC10
{
.id = 10,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC11
{
.id = 11,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC12
{
.id = 12,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC13
{
.id = 13,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC14
{
.id = 14,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
#ifdef AIC_USING_PSADC15
{
.id = 15,
.available = 1,
.mode = AIC_PSADC_MODE_SINGLE,
.fifo_depth = 12,
},
#endif
};
2024-04-03 16:40:57 +08:00
struct aic_psadc_queue aic_psadc_queues[] = {
{
.id = 0,
.type = AIC_PSADC_QC,
},
};
static rt_err_t drv_psadc_enabled(struct rt_adc_device *dev,
rt_uint32_t queue_type, rt_bool_t enabled)
2023-08-30 16:21:18 +08:00
{
2024-04-03 16:40:57 +08:00
struct aic_psadc_queue *queue = &aic_psadc_queues[queue_type];
2023-08-30 16:21:18 +08:00
if (enabled) {
2024-04-03 16:40:57 +08:00
int cnt = 0;
for (int i = 0; i < AIC_PSADC_CH_NUM; i++) {
struct aic_psadc_ch *chan = hal_psadc_ch_is_valid(i);
if (!chan)
continue;
if (chan->available && cnt < AIC_PSADC_QUEUE_LENGTH) {
hal_psadc_set_queue_node(AIC_PSADC_Q1, chan->id, cnt);
cnt++;
continue;
}
if (chan->available && cnt >= AIC_PSADC_QUEUE_LENGTH) {
hal_psadc_set_queue_node(AIC_PSADC_Q2, chan->id,
cnt - AIC_PSADC_QUEUE_LENGTH);
cnt++;
continue;
}
}
queue->nodes_num = cnt;
queue->complete = aicos_sem_create(0);
hal_psadc_ch_init();
2023-08-30 16:21:18 +08:00
} else {
2024-01-27 08:47:24 +08:00
hal_psadc_qc_irq_enable(0);
2024-04-03 16:40:57 +08:00
aicos_sem_delete(queue->complete);
queue->complete = NULL;
2023-08-30 16:21:18 +08:00
}
return RT_EOK;
}
2024-04-03 16:40:57 +08:00
static rt_err_t drv_psadc_get_adc_values_poll(struct rt_adc_device *dev,
void *values)
2023-08-30 16:21:18 +08:00
{
2024-04-03 16:40:57 +08:00
return hal_psadc_read_poll(values, AIC_PSADC_POLL_READ_TIMEOUT);
}
2023-08-30 16:21:18 +08:00
2024-04-03 16:40:57 +08:00
static rt_err_t drv_psadc_get_adc_values(struct rt_adc_device *dev,
void *values)
{
return hal_psadc_read(values, AIC_PSADC_TIMEOUT);
}
static rt_uint32_t drv_psadc_get_chan_count(struct rt_adc_device *dev)
{
struct aic_psadc_queue *queue = &aic_psadc_queues[AIC_PSADC_QC];
2023-08-30 16:21:18 +08:00
2024-04-03 16:40:57 +08:00
return queue->nodes_num;
2023-08-30 16:21:18 +08:00
}
2024-04-03 16:40:57 +08:00
static rt_uint8_t drv_psadc_resolution(struct rt_adc_device *dev)
2023-08-30 16:21:18 +08:00
{
return 12;
}
2024-10-30 16:50:31 +08:00
static rt_err_t drv_psadc_convert(struct rt_adc_device *dev, rt_uint32_t ch,
rt_uint32_t *value)
{
return RT_EOK;
}
2023-08-30 16:21:18 +08:00
static const struct rt_adc_ops aic_adc_ops =
{
.enabled = drv_psadc_enabled,
2024-10-30 16:50:31 +08:00
.convert = drv_psadc_convert,
2024-04-03 16:40:57 +08:00
.get_resolution = drv_psadc_resolution,
.get_adc_values_poll = drv_psadc_get_adc_values_poll,
.get_adc_values = drv_psadc_get_adc_values,
.get_chan_count = drv_psadc_get_chan_count,
2023-08-30 16:21:18 +08:00
};
static int drv_psadc_init(void)
{
struct rt_adc_device *dev = NULL;
s32 ret = 0;
2024-01-27 08:47:24 +08:00
#ifdef AIC_PSADC_DRV_V11
2023-08-30 16:21:18 +08:00
ret = hal_clk_set_freq(CLK_PSADC, AIC_PSADC_CLK_RATE);
if (ret < 0) {
LOG_E("PSADC clk freq set failed!");
return -RT_ERROR;
}
2024-01-27 08:47:24 +08:00
#endif
2023-08-30 16:21:18 +08:00
ret = hal_clk_enable(CLK_PSADC);
if (ret < 0) {
LOG_E("PSADC clk enable failed!");
return -RT_ERROR;
}
ret = hal_clk_enable_deassertrst(CLK_PSADC);
if (ret < 0) {
LOG_E("PSADC reset deassert failed!");
return -RT_ERROR;
}
2024-01-27 08:47:24 +08:00
hal_psadc_single_queue_mode(1);
2023-08-30 16:21:18 +08:00
2024-04-03 16:40:57 +08:00
#ifdef AIC_PSADC_OBTAIN_DATA_BY_CPU
2024-01-27 08:47:24 +08:00
ret = aicos_request_irq(PSADC_IRQn, hal_psadc_isr, 0, NULL, NULL);
2023-08-30 16:21:18 +08:00
if (ret < 0) {
LOG_E("PSADC irq enable failed!");
return -RT_ERROR;
}
2024-04-03 16:40:57 +08:00
#endif
2023-08-30 16:21:18 +08:00
2024-01-27 08:47:24 +08:00
hal_psadc_enable(1);
2023-08-30 16:21:18 +08:00
hal_psadc_set_ch_num(ARRAY_SIZE(aic_psadc_chs));
g_psadc_pclk_rate = hal_clk_get_freq(hal_clk_get_parent(CLK_PSADC));
dev = aicos_malloc(0, sizeof(struct rt_adc_device));
if (!dev) {
LOG_E("Failed to malloc(%d)", sizeof(struct rt_adc_device));
return -RT_ERROR;
}
memset(dev, 0, sizeof(struct rt_adc_device));
ret = rt_hw_adc_register(dev, AIC_PSADC_NAME, &aic_adc_ops, NULL);
if (ret) {
LOG_E("Failed to register ADC. ret %d", ret);
return ret;
}
LOG_I("ArtInChip PSADC loaded");
return 0;
}
INIT_DEVICE_EXPORT(drv_psadc_init);