972a260391
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
338 lines
10 KiB
C
338 lines
10 KiB
C
/****************************************************************************
|
|
* arch/arm/src/stm32f0l0g0/stm32_adc.h
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __ARCH_ARM_SRC_STM32F0L0G0_STM32_ADC_H
|
|
#define __ARCH_ARM_SRC_STM32F0L0G0_STM32_ADC_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include "chip.h"
|
|
|
|
#include <nuttx/analog/adc.h>
|
|
#include <arch/chip/chip.h>
|
|
|
|
#include "hardware/stm32_adc.h"
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/* Configuration ************************************************************/
|
|
|
|
/* Timer ADC trigger not supported yet */
|
|
|
|
#undef ADC1_HAVE_TIMER
|
|
|
|
/* Up to 1 ADC interfaces are supported */
|
|
|
|
#if STM32_NADC < 1
|
|
# undef CONFIG_STM32F0L0G0_ADC1
|
|
#endif
|
|
|
|
#if defined(CONFIG_STM32F0L0G0_ADC1)
|
|
|
|
/* DMA support */
|
|
|
|
#undef ADC_HAVE_DMA
|
|
#if defined(CONFIG_STM32F0L0G0_ADC1_DMA)
|
|
# define ADC_HAVE_DMA 1
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC1_DMA
|
|
# define ADC1_HAVE_DMA 1
|
|
#else
|
|
# undef ADC1_HAVE_DMA
|
|
#endif
|
|
|
|
/* EXTSEL */
|
|
|
|
#if defined(CONFIG_STM32F0L0G0_STM32F0)
|
|
# define ADC1_EXTSEL_T1TRGO ADC12_CFGR1_EXTSEL_TRG0
|
|
# define ADC1_EXTSEL_T1CC4 ADC12_CFGR1_EXTSEL_TRG1
|
|
# define ADC1_EXTSEL_T2TRGO ADC12_CFGR1_EXTSEL_TRG2
|
|
# define ADC1_EXTSEL_T3TRGO ADC12_CFGR1_EXTSEL_TRG3
|
|
# define ADC1_EXTSEL_T15TRGO ADC12_CFGR1_EXTSEL_TRG4
|
|
/* TRG5 reserved
|
|
* TRG6 reserved
|
|
* TRG7 reserved
|
|
*/
|
|
#elif defined(CONFIG_STM32F0L0G0_STM32L0)
|
|
/* TRG0 reserved */
|
|
# define ADC1_EXTSEL_T21CC2 ADC12_CFGR1_EXTSEL_TRG1
|
|
# define ADC1_EXTSEL_T2TRGO ADC12_CFGR1_EXTSEL_TRG2
|
|
# define ADC1_EXTSEL_T2CC4 ADC12_CFGR1_EXTSEL_TRG3
|
|
# define ADC1_EXTSEL_T21TRGO ADC12_CFGR1_EXTSEL_TRG4
|
|
# define ADC1_EXTSEL_T2CC3 ADC12_CFGR1_EXTSEL_TRG5
|
|
/* TRG6 reserved */
|
|
# define ADC1_EXTSEL_EXTI11 ADC12_CFGR1_EXTSEL_TRG7
|
|
#elif defined(CONFIG_STM32F0L0G0_STM32G0)
|
|
# define ADC1_EXTSEL_T1TRGO2 ADC12_CFGR1_EXTSEL_TRG0
|
|
# define ADC1_EXTSEL_T1CC4 ADC12_CFGR1_EXTSEL_TRG1
|
|
# define ADC1_EXTSEL_T2TRGO ADC12_CFGR1_EXTSEL_TRG2
|
|
# define ADC1_EXTSEL_T3TRGO ADC12_CFGR1_EXTSEL_TRG3
|
|
# define ADC1_EXTSEL_T15TRGO ADC12_CFGR1_EXTSEL_TRG4
|
|
# define ADC1_EXTSEL_T6TRGO ADC12_CFGR1_EXTSEL_TRG5
|
|
/* TRG6 reserved */
|
|
# define ADC1_EXTSEL_EXTI11 ADC12_CFGR1_EXTSEL_TRG7
|
|
#else
|
|
# error
|
|
#endif
|
|
|
|
/* EXTSEL configuration *****************************************************/
|
|
|
|
/* TODO */
|
|
|
|
/* ADC interrupts ***********************************************************/
|
|
|
|
#define ADC_ISR_EOC ADC_INT_EOC
|
|
#define ADC_IER_EOC ADC_INT_EOC
|
|
#define ADC_ISR_AWD ADC_INT_AWD
|
|
#define ADC_IER_AWD ADC_INT_AWD
|
|
#define ADC_ISR_OVR ADC_INT_OVR
|
|
#define ADC_IER_OVR ADC_INT_OVR
|
|
|
|
#define ADC_ISR_ALLINTS (ADC_ISR_EOC | ADC_ISR_AWD | ADC_ISR_OVR)
|
|
#define ADC_IER_ALLINTS (ADC_IER_EOC | ADC_IER_AWD | ADC_IER_OVR)
|
|
|
|
/* ADC registers ************************************************************/
|
|
|
|
#define STM32_ADC_DMAREG_OFFSET STM32_ADC_CFGR1_OFFSET
|
|
#define ADC_DMAREG_DMA ADC_CFGR1_DMAEN
|
|
#define STM32_ADC_EXTREG_OFFSET STM32_ADC_CFGR1_OFFSET
|
|
#define ADC_EXTREG_EXTSEL_MASK ADC_CFGR1_EXTSEL_MASK
|
|
#define ADC_EXTREG_EXTEN_MASK ADC_CFGR1_EXTEN_MASK
|
|
#define ADC_EXTREG_EXTEN_DEFAULT ADC_CFGR1_EXTEN_RISING
|
|
|
|
/* Low-level ops helpers ****************************************************/
|
|
|
|
#define ADC_INT_ACK(adc, source) \
|
|
(adc)->llops->int_ack(adc, source)
|
|
#define ADC_INT_GET(adc) \
|
|
(adc)->llops->int_get(adc)
|
|
#define ADC_INT_ENABLE(adc, source) \
|
|
(adc)->llops->int_en(adc, source)
|
|
#define ADC_INT_DISABLE(adc, source) \
|
|
(adc)->llops->int_dis(adc, source)
|
|
#define ADC_REGDATA_GET(adc) \
|
|
(adc)->llops->val_get(adc)
|
|
#define ADC_REGBUF_REGISTER(adc, buffer, len) \
|
|
(adc)->llops->regbuf_reg(adc, buffer, len)
|
|
#define ADC_REG_STARTCONV(adc, state) \
|
|
(adc)->llops->reg_startconv(adc, state)
|
|
#define ADC_SAMPLETIME_SET(adc, time_samples) \
|
|
(adc)->llops->stime_set(adc, time_samples)
|
|
#define ADC_SAMPLETIME_WRITE(adc) \
|
|
(adc)->llops->stime_write(adc)
|
|
#define ADC_DUMP_REGS(adc) \
|
|
(adc)->llops->dump_regs(adc)
|
|
|
|
/****************************************************************************
|
|
* Public Types
|
|
****************************************************************************/
|
|
|
|
/* On STM32F42xx and STM32F43xx devices,VBAT and temperature sensor are
|
|
* connected to the same ADC internal channel (ADC1_IN18). Only one
|
|
* conversion, either temperature sensor or VBAT, must be selected at a time.
|
|
* When both conversion are enabled simultaneously, only the VBAT conversion
|
|
* is performed.
|
|
*/
|
|
|
|
enum adc_io_cmds_e
|
|
{
|
|
#ifdef HAVE_ADC_VBAT
|
|
IO_ENABLE_DISABLE_VBAT_CH,
|
|
#endif
|
|
IO_ENABLE_DISABLE_AWDIE,
|
|
IO_ENABLE_DISABLE_EOCIE,
|
|
IO_ENABLE_DISABLE_JEOCIE,
|
|
IO_ENABLE_DISABLE_OVRIE,
|
|
IO_ENABLE_DISABLE_ALL_INTS,
|
|
IO_STOP_ADC,
|
|
IO_START_ADC,
|
|
IO_START_CONV,
|
|
IO_TRIGGER_REG,
|
|
#ifdef ADC_HAVE_INJECTED
|
|
IO_TRIGGER_INJ,
|
|
#endif
|
|
#ifdef HAVE_ADC_POWERDOWN
|
|
IO_ENABLE_DISABLE_PDI,
|
|
IO_ENABLE_DISABLE_PDD,
|
|
IO_ENABLE_DISABLE_PDD_PDI
|
|
#endif
|
|
};
|
|
|
|
/* ADC resolution can be reduced in order to perform faster conversion */
|
|
|
|
enum stm32_adc_resoluton_e
|
|
{
|
|
ADC_RESOLUTION_12BIT = 0, /* 12 bit */
|
|
ADC_RESOLUTION_10BIT = 1, /* 10 bit */
|
|
ADC_RESOLUTION_8BIT = 2, /* 8 bit */
|
|
ADC_RESOLUTION_6BIT = 3 /* 6 bit */
|
|
};
|
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_LL_OPS
|
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME
|
|
|
|
/* Channel and sample time pair */
|
|
|
|
typedef struct adc_channel_s
|
|
{
|
|
uint8_t channel:5;
|
|
|
|
/* Sampling time individually for each channel.
|
|
* It differs between families
|
|
*/
|
|
|
|
uint8_t sample_time:3;
|
|
} adc_channel_t;
|
|
|
|
/* This structure will be used while setting channels to specified by the
|
|
* "channel-sample time" pairs' values
|
|
*/
|
|
|
|
struct adc_sample_time_s
|
|
{
|
|
adc_channel_t *channel; /* Array of channels */
|
|
uint8_t channels_nbr:5; /* Number of channels in array */
|
|
bool all_same:1; /* All channels will get the
|
|
* same value of the sample time */
|
|
uint8_t all_ch_sample_time:3; /* Sample time for all channels */
|
|
};
|
|
#endif /* CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME */
|
|
|
|
/* This structure provides the publicly visible representation of the
|
|
* "lower-half" ADC driver structure.
|
|
*/
|
|
|
|
struct stm32_adc_dev_s
|
|
{
|
|
/* Publicly visible portion of the "lower-half" ADC driver structure */
|
|
|
|
const struct stm32_adc_ops_s *llops;
|
|
|
|
/* Require cast-compatibility with private "lower-half" ADC structure */
|
|
};
|
|
|
|
/* Low-level operations for ADC */
|
|
|
|
struct stm32_adc_ops_s
|
|
{
|
|
/* Acknowledge interrupts */
|
|
|
|
void (*int_ack)(struct stm32_adc_dev_s *dev, uint32_t source);
|
|
|
|
/* Get pending interrupts */
|
|
|
|
uint32_t (*int_get)(struct stm32_adc_dev_s *dev);
|
|
|
|
/* Enable interrupts */
|
|
|
|
void (*int_en)(struct stm32_adc_dev_s *dev, uint32_t source);
|
|
|
|
/* Disable interrupts */
|
|
|
|
void (*int_dis)(struct stm32_adc_dev_s *dev, uint32_t source);
|
|
|
|
/* Get current ADC data register */
|
|
|
|
uint32_t (*val_get)(struct stm32_adc_dev_s *dev);
|
|
|
|
/* Register buffer for ADC DMA transfer */
|
|
|
|
int (*regbuf_reg)(struct stm32_adc_dev_s *dev, uint16_t *buffer,
|
|
uint8_t len);
|
|
|
|
/* Start/stop regular conversion */
|
|
|
|
void (*reg_startconv)(struct stm32_adc_dev_s *dev, bool state);
|
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME
|
|
/* Set ADC sample time */
|
|
|
|
void (*stime_set)(struct stm32_adc_dev_s *dev,
|
|
struct adc_sample_time_s *time_samples);
|
|
|
|
/* Write ADC sample time */
|
|
|
|
void (*stime_write)(struct stm32_adc_dev_s *dev);
|
|
#endif
|
|
|
|
void (*dump_regs)(struct stm32_adc_dev_s *dev);
|
|
};
|
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC_LL_OPS */
|
|
|
|
/****************************************************************************
|
|
* Public Function Prototypes
|
|
****************************************************************************/
|
|
|
|
#ifndef __ASSEMBLY__
|
|
#ifdef __cplusplus
|
|
#define EXTERN extern "C"
|
|
extern "C"
|
|
{
|
|
#else
|
|
#define EXTERN extern
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_adcinitialize
|
|
*
|
|
* Description:
|
|
* Initialize the ADC. See stm32_adc.c for more details.
|
|
*
|
|
* Input Parameters:
|
|
* intf - Could be {1,2,3,4} for ADC1, ADC2, ADC3 or ADC4
|
|
* chanlist - The list of channels (regular + injected)
|
|
* nchannels - Number of channels (regular + injected)
|
|
*
|
|
* Returned Value:
|
|
* Valid ADC device structure reference on success; a NULL on failure
|
|
*
|
|
****************************************************************************/
|
|
|
|
struct adc_dev_s;
|
|
struct adc_dev_s *stm32_adcinitialize(int intf, const uint8_t *chanlist,
|
|
int channels);
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_adc_llops_get
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_LL_OPS
|
|
const struct stm32_adc_ops_s
|
|
*stm32_adc_llops_get(struct adc_dev_s *dev);
|
|
#endif
|
|
|
|
#undef EXTERN
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC1 */
|
|
#endif /* __ARCH_ARM_SRC_STM32F0L0G0_STM32_ADC_H */
|