2021-01-04 14:12:40 +08:00
|
|
|
/*
|
2022-01-25 16:37:19 +08:00
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
2021-01-04 14:12:40 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2022-01-25 16:37:19 +08:00
|
|
|
* 2021-02-25 iysheng first version
|
2022-04-13 08:52:03 +08:00
|
|
|
* 2022-04-13 wangh adc init and convert bug fix
|
2021-01-04 14:12:40 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <board.h>
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
#ifdef RT_USING_ADC
|
2021-01-04 14:12:40 +08:00
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
#define DBG_TAG "drv.adc"
|
|
|
|
#define DBG_LVL DBG_INFO
|
2021-02-05 11:48:47 +08:00
|
|
|
#include <rtdbg.h>
|
2021-01-04 14:12:40 +08:00
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
#define MAX_EXTERN_ADC_CHANNEL 16
|
2021-01-04 14:12:40 +08:00
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
2021-01-04 14:12:40 +08:00
|
|
|
struct rt_adc_device adc_dev;
|
|
|
|
char name[8];
|
|
|
|
rt_base_t adc_pins[16];
|
|
|
|
void *private_data;
|
|
|
|
} gd32_adc_device;
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
static gd32_adc_device adc_devs[] = {
|
2021-01-04 14:12:40 +08:00
|
|
|
#ifdef BSP_USING_ADC0
|
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
.name = "adc0",
|
|
|
|
.adc_pins = {
|
2021-01-04 14:12:40 +08:00
|
|
|
GET_PIN(A, 0), GET_PIN(A, 1), GET_PIN(A, 2), GET_PIN(A, 3),
|
|
|
|
GET_PIN(A, 4), GET_PIN(A, 5), GET_PIN(A, 6), GET_PIN(A, 7),
|
|
|
|
GET_PIN(B, 0), GET_PIN(B, 1), GET_PIN(C, 0), GET_PIN(C, 1),
|
|
|
|
GET_PIN(C, 2), GET_PIN(C, 3), GET_PIN(C, 4), GET_PIN(C, 5),
|
|
|
|
},
|
2022-04-13 08:52:03 +08:00
|
|
|
.private_data = (void *)ADC0,
|
2021-01-04 14:12:40 +08:00
|
|
|
},
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef BSP_USING_ADC1
|
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
.name = "adc1",
|
|
|
|
.adc_pins = {
|
2021-01-04 14:12:40 +08:00
|
|
|
GET_PIN(A, 0), GET_PIN(A, 1), GET_PIN(A, 2), GET_PIN(A, 3),
|
|
|
|
GET_PIN(A, 4), GET_PIN(A, 5), GET_PIN(A, 6), GET_PIN(A, 7),
|
|
|
|
GET_PIN(B, 0), GET_PIN(B, 1), GET_PIN(C, 0), GET_PIN(C, 1),
|
|
|
|
GET_PIN(C, 2), GET_PIN(C, 3), GET_PIN(C, 4), GET_PIN(C, 5),
|
|
|
|
},
|
2022-04-13 08:52:03 +08:00
|
|
|
.private_data = (void *)ADC1,
|
2021-01-04 14:12:40 +08:00
|
|
|
},
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
static void gd32_adc_gpio_init(rt_base_t pin)
|
2021-01-04 14:12:40 +08:00
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
rcu_periph_clock_enable((rcu_periph_enum)PIN_GDRCU(pin));
|
2022-01-25 16:37:19 +08:00
|
|
|
gpio_init(PIN_GDPORT(pin), GPIO_MODE_AIN, GPIO_OSPEED_50MHZ, PIN_GDPIN(pin));
|
2021-01-04 14:12:40 +08:00
|
|
|
}
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
static rt_err_t drv_adc_enabled(struct rt_adc_device *device, rt_uint32_t channel, rt_bool_t enabled)
|
2021-01-04 14:12:40 +08:00
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
if ((device == NULL) || (channel >= MAX_EXTERN_ADC_CHANNEL))
|
2021-01-04 14:12:40 +08:00
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
LOG_E("invalid channel\r\n");
|
2022-01-25 16:37:19 +08:00
|
|
|
return -RT_EINVAL;
|
2021-01-04 14:12:40 +08:00
|
|
|
}
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
gd32_adc_device *gd32_adc = (gd32_adc_device *)device;
|
|
|
|
uint32_t adc_periph = (uint32_t )(device->parent.user_data);
|
2021-01-04 14:12:40 +08:00
|
|
|
|
|
|
|
if (enabled == ENABLE)
|
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
gd32_adc_gpio_init(gd32_adc->adc_pins[channel]);
|
2022-01-25 16:37:19 +08:00
|
|
|
adc_deinit(adc_periph);
|
|
|
|
adc_channel_length_config(adc_periph, ADC_REGULAR_CHANNEL, 1);
|
2022-04-13 08:52:03 +08:00
|
|
|
adc_data_alignment_config(adc_periph, ADC_DATAALIGN_RIGHT); /* 数据右对齐 */
|
|
|
|
adc_external_trigger_config(adc_periph, ADC_REGULAR_CHANNEL, ENABLE); /* 规则组外部触发使能 */
|
|
|
|
adc_external_trigger_source_config(adc_periph, ADC_REGULAR_CHANNEL, ADC0_1_2_EXTTRIG_REGULAR_NONE);
|
|
|
|
adc_special_function_config(adc_periph, ADC_SCAN_MODE, DISABLE); /* 扫描模式禁止,单通道模式 */
|
|
|
|
adc_special_function_config(adc_periph, ADC_CONTINUOUS_MODE, DISABLE); /* 连续转换禁止,单次转换模式 */
|
|
|
|
adc_discontinuous_mode_config(adc_periph, ADC_REGULAR_CHANNEL, 1); /* 规则组间断使能及转换通道数目 */
|
2022-01-25 16:37:19 +08:00
|
|
|
adc_enable(adc_periph);
|
2022-04-13 08:52:03 +08:00
|
|
|
rt_hw_us_delay(500);
|
|
|
|
adc_calibration_enable(adc_periph); /* ADC自校准 */
|
2021-01-04 14:12:40 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-01-25 16:37:19 +08:00
|
|
|
adc_disable(adc_periph);
|
2021-01-04 14:12:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
static rt_err_t drv_adc_convert(struct rt_adc_device *device, rt_uint32_t channel, rt_uint32_t *value)
|
2021-01-04 14:12:40 +08:00
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
if ((device == NULL) || (channel >= MAX_EXTERN_ADC_CHANNEL) || (value == NULL))
|
2021-01-04 14:12:40 +08:00
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
LOG_E("invalid param\r\n");
|
2022-01-25 16:37:19 +08:00
|
|
|
return -RT_EINVAL;
|
2021-01-04 14:12:40 +08:00
|
|
|
}
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
uint32_t adc_periph = (uint32_t )(device->parent.user_data);
|
|
|
|
|
|
|
|
adc_regular_channel_config(adc_periph, 0, channel, ADC_SAMPLETIME_239POINT5);
|
2022-01-25 16:37:19 +08:00
|
|
|
adc_software_trigger_enable(adc_periph, ADC_REGULAR_CHANNEL);
|
2022-04-13 08:52:03 +08:00
|
|
|
|
|
|
|
while(!adc_flag_get(adc_periph, ADC_FLAG_EOC)); /* 等待ADC转换完成 */
|
|
|
|
adc_flag_clear(adc_periph, ADC_FLAG_EOC); /* 清除转换完成标志位 */
|
|
|
|
adc_flag_clear(adc_periph, ADC_FLAG_STRC);
|
2022-01-25 16:37:19 +08:00
|
|
|
*value = adc_regular_data_read(adc_periph);
|
2021-01-04 14:12:40 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
static struct rt_adc_ops drv_adc_ops = {
|
|
|
|
.enabled = drv_adc_enabled,
|
|
|
|
.convert = drv_adc_convert,
|
2021-01-04 14:12:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int rt_hw_adc_init(void)
|
|
|
|
{
|
|
|
|
int ret, i = 0;
|
|
|
|
|
|
|
|
#ifdef BSP_USING_ADC0
|
|
|
|
rcu_periph_clock_enable(RCU_ADC0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef BSP_USING_ADC1
|
|
|
|
rcu_periph_clock_enable(RCU_ADC1);
|
|
|
|
#endif
|
|
|
|
|
2022-04-13 08:52:03 +08:00
|
|
|
rcu_adc_clock_config(RCU_CKADC_CKAPB2_DIV6); /* 72/6 = 12MHz need < 14MHZ */
|
|
|
|
adc_mode_config(ADC_MODE_FREE);
|
|
|
|
|
|
|
|
for (; i < sizeof(adc_devs) / sizeof(gd32_adc_device); i++)
|
2021-01-04 14:12:40 +08:00
|
|
|
{
|
2022-04-13 08:52:03 +08:00
|
|
|
ret = rt_hw_adc_register(&adc_devs[i].adc_dev,
|
|
|
|
(const char *)adc_devs[i].name,
|
|
|
|
&drv_adc_ops, (void *)adc_devs[i].private_data);
|
2021-01-04 14:12:40 +08:00
|
|
|
if (ret != RT_EOK)
|
|
|
|
{
|
|
|
|
/* TODO err handler */
|
2022-04-13 08:52:03 +08:00
|
|
|
LOG_E("failed register %s, err=%d\r\n", adc_devs[i].name, ret);
|
2021-01-04 14:12:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
INIT_BOARD_EXPORT(rt_hw_adc_init);
|
|
|
|
#endif
|