2019-05-09 15:02:53 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/arm/src/stm32/stm32_adc.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Mateusz Szafoni <raiden00@railab.me>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <arch/board/board.h>
|
|
|
|
#include <nuttx/irq.h>
|
|
|
|
#include <nuttx/arch.h>
|
|
|
|
#include <nuttx/analog/adc.h>
|
|
|
|
#include <nuttx/analog/ioctl.h>
|
|
|
|
|
|
|
|
#include "up_internal.h"
|
|
|
|
#include "up_arch.h"
|
|
|
|
|
|
|
|
#include "chip.h"
|
|
|
|
#include "stm32.h"
|
|
|
|
#include "stm32_dma.h"
|
|
|
|
#include "stm32_adc.h"
|
|
|
|
|
|
|
|
/* STM32 ADC "lower-half" support must be enabled */
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC
|
2019-05-09 15:02:53 +02:00
|
|
|
|
|
|
|
/* Some ADC peripheral must be enabled */
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#if defined(CONFIG_STM32F0L0G0_ADC1)
|
2019-05-09 15:02:53 +02:00
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#if !defined(CONFIG_STM32F0L0G0_STM32L0)
|
2019-05-09 15:02:53 +02:00
|
|
|
# error Only L0 supported for now
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* At the moment there is no proper implementation for timers external
|
|
|
|
* trigger.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(ADC_HAVE_TIMER)
|
|
|
|
# error not supported yet
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
/* RCC reset ****************************************************************/
|
|
|
|
|
|
|
|
#define STM32_RCC_RSTR STM32_RCC_APB2RSTR
|
|
|
|
#define RCC_RSTR_ADC1RST RCC_APB2RSTR_ADC1RST
|
|
|
|
|
|
|
|
/* ADC Channels/DMA ********************************************************/
|
|
|
|
/* The maximum number of channels that can be sampled. If DMA support is
|
|
|
|
* not enabled, then only a single channel can be sampled. Otherwise,
|
|
|
|
* data overruns would occur.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ADC_MAX_CHANNELS_DMA 16
|
|
|
|
#define ADC_MAX_CHANNELS_NODMA 1
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_DMA
|
|
|
|
# define ADC_MAX_SAMPLES ADC_MAX_CHANNELS_DMA
|
|
|
|
#else
|
|
|
|
# define ADC_MAX_SAMPLES ADC_MAX_CHANNELS_NODMA
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* DMA channels and interface values differs according to STM32 DMA IP core version */
|
|
|
|
|
|
|
|
#if defined(HAVE_IP_DMA_V1)
|
|
|
|
# define ADC_DMA_CONTROL_WORD (DMA_CCR_MSIZE_16BITS | \
|
|
|
|
DMA_CCR_PSIZE_16BITS | \
|
|
|
|
DMA_CCR_MINC | \
|
|
|
|
DMA_CCR_CIRC)
|
|
|
|
#else
|
|
|
|
# error Not supported
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Sample time default configuration */
|
|
|
|
|
|
|
|
/* G0 support additional sample time selection 2 */
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#if defined(CONFIG_STM32F0L0G0_STM32G0)
|
2019-05-09 15:02:53 +02:00
|
|
|
# define ADC_HAVE_SMPR_SMP2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(ADC_HAVE_DMA) || (ADC_MAX_SAMPLES == 1)
|
|
|
|
# define ADC_SMP1_DEFAULT ADC_SMPR_13p5
|
|
|
|
# define ADC_SMP2_DEFAULT ADC_SMPR_13p5
|
|
|
|
#else /* Slow down sampling frequency */
|
|
|
|
# define ADC_SMP1_DEFAULT ADC_SMPR_239p5
|
|
|
|
# define ADC_SMP2_DEFAULT ADC_SMPR_239p5
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_SMPR_SMP2
|
|
|
|
# define ADC_SMPSEL_DEFAULT 0 /* For now we use only SMP1 */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Number of channels per ADC:
|
|
|
|
* - F0, L0, G0 - 19, but singe SMP for all channels
|
|
|
|
*
|
|
|
|
* NOTE: this value can be obtained from SMPRx register description (ST manual)
|
|
|
|
*/
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#if defined(CONFIG_STM32F0L0G0_STM32F0) || defined(CONFIG_STM32F0L0G0_STM32L0)
|
2019-05-09 15:02:53 +02:00
|
|
|
# define ADC_CHANNELS_NUMBER 19
|
|
|
|
#else
|
|
|
|
# error "Not supported"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ADC resolution */
|
|
|
|
|
|
|
|
#define HAVE_ADC_RESOLUTION
|
|
|
|
|
|
|
|
/* ADC have common registers but only single ADC */
|
|
|
|
|
|
|
|
#define HAVE_ADC_CMN_REGS 1
|
|
|
|
|
|
|
|
/* ADCx_EXTSEL_VALUE */
|
|
|
|
|
|
|
|
#ifdef ADC1_EXTSEL_VALUE
|
|
|
|
# define ADC1_HAVE_EXTCFG 1
|
|
|
|
# define ADC1_EXTCFG_VALUE (ADC1_EXTSEL_VALUE | ADC_EXTREG_EXTEN_DEFAULT)
|
|
|
|
#else
|
|
|
|
# undef ADC1_HAVE_EXTCFG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(ADC1_HAVE_EXTCFG)
|
|
|
|
# define ADC_HAVE_EXTCFG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ADC DMA configuration bit support */
|
|
|
|
|
|
|
|
#define ADC_HAVE_DMACFG 1
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Data common to all ADC instances */
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
struct adccmn_data_s
|
|
|
|
{
|
|
|
|
uint8_t initialized; /* How many ADC instances are currently in use */
|
|
|
|
sem_t lock; /* Exclusive access to common ADC data */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This structure describes the state of one ADC block
|
|
|
|
* REVISIT: save some space with bit fields.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct stm32_dev_s
|
|
|
|
{
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_LL_OPS
|
2019-05-09 15:02:53 +02:00
|
|
|
FAR const struct stm32_adc_ops_s *llops; /* Low-level ADC ops */
|
|
|
|
#endif
|
2019-05-27 16:16:24 +02:00
|
|
|
#if !defined(CONFIG_STM32F0L0G0_ADC_NOIRQ) | defined(ADC_HAVE_DMA)
|
2019-05-09 15:02:53 +02:00
|
|
|
FAR const struct adc_callback_s *cb;
|
|
|
|
uint8_t irq; /* Interrupt generated by this ADC block */
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
struct adccmn_data_s *cmn; /* Common ADC data */
|
|
|
|
#endif
|
|
|
|
uint8_t rnchannels; /* Number of regular channels */
|
|
|
|
uint8_t cr_channels; /* Number of configured regular channels */
|
|
|
|
uint8_t intf; /* ADC interface number */
|
|
|
|
uint8_t current; /* Current ADC channel being converted */
|
|
|
|
#ifdef HAVE_ADC_RESOLUTION
|
|
|
|
uint8_t resolution; /* ADC resolution (0-3) */
|
|
|
|
#endif
|
|
|
|
#ifdef ADC_HAVE_DMA
|
|
|
|
uint8_t dmachan; /* DMA channel needed by this ADC */
|
|
|
|
# ifdef ADC_HAVE_DMACFG
|
|
|
|
uint8_t dmacfg; /* DMA channel configuration, only for ADC IPv2 */
|
|
|
|
# endif
|
|
|
|
bool hasdma; /* True: This channel supports DMA */
|
|
|
|
#endif
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME
|
2019-05-09 15:02:53 +02:00
|
|
|
/* Sample time selection. These bits must be written only when ADON=0.
|
|
|
|
* REVISIT: this takes too much space. We need only 3 bits per channel.
|
|
|
|
*/
|
|
|
|
|
|
|
|
uint8_t sample_rate[ADC_CHANNELS_NUMBER];
|
|
|
|
uint8_t adc_channels; /* ADC channels number */
|
|
|
|
#endif
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
uint8_t trigger; /* Timer trigger channel: 0=CC1, 1=CC2, 2=CC3,
|
|
|
|
* 3=CC4, 4=TRGO */
|
|
|
|
#endif
|
|
|
|
xcpt_t isr; /* Interrupt handler for this ADC block */
|
|
|
|
uint32_t base; /* Base address of registers unique to this ADC
|
|
|
|
* block */
|
|
|
|
#ifdef ADC_HAVE_EXTCFG
|
|
|
|
uint32_t extcfg; /* External event configuration for regular group */
|
|
|
|
#endif
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
uint32_t tbase; /* Base address of timer used by this ADC block */
|
|
|
|
uint32_t pclck; /* The PCLK frequency that drives this timer */
|
|
|
|
uint32_t freq; /* The desired frequency of conversions */
|
|
|
|
#endif
|
|
|
|
#ifdef ADC_HAVE_DMA
|
|
|
|
DMA_HANDLE dma; /* Allocated DMA channel */
|
|
|
|
|
|
|
|
/* DMA transfer buffer */
|
|
|
|
|
|
|
|
uint16_t r_dmabuffer[ADC_MAX_SAMPLES];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* List of selected ADC channels to sample */
|
|
|
|
|
|
|
|
uint8_t r_chanlist[ADC_MAX_SAMPLES];
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* ADC Register access */
|
|
|
|
|
|
|
|
static void stm32_modifyreg32(unsigned int addr, uint32_t clrbits,
|
|
|
|
uint32_t setbits);
|
|
|
|
static uint32_t adc_getreg(FAR struct stm32_dev_s *priv, int offset);
|
|
|
|
static void adc_putreg(FAR struct stm32_dev_s *priv, int offset,
|
|
|
|
uint32_t value);
|
|
|
|
static void adc_modifyreg(FAR struct stm32_dev_s *priv, int offset,
|
|
|
|
uint32_t clrbits, uint32_t setbits);
|
|
|
|
#ifdef HAVE_ADC_CMN_REGS
|
|
|
|
static uint32_t adccmn_base_get(FAR struct stm32_dev_s *priv);
|
|
|
|
static void adccmn_modifyreg(FAR struct stm32_dev_s *priv, uint32_t offset,
|
|
|
|
uint32_t clrbits, uint32_t setbits);
|
|
|
|
# ifdef CONFIG_DEBUG_ANALOG_INFO
|
|
|
|
static uint32_t adccmn_getreg(FAR struct stm32_dev_s *priv, uint32_t offset);
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
static uint16_t tim_getreg(FAR struct stm32_dev_s *priv, int offset);
|
|
|
|
static void tim_putreg(FAR struct stm32_dev_s *priv, int offset,
|
|
|
|
uint16_t value);
|
|
|
|
static void tim_modifyreg(FAR struct stm32_dev_s *priv, int offset,
|
|
|
|
uint16_t clrbits, uint16_t setbits);
|
|
|
|
static void tim_dumpregs(FAR struct stm32_dev_s *priv,
|
|
|
|
FAR const char *msg);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
static int adccmn_lock(FAR struct stm32_dev_s *priv, bool lock);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void adc_rccreset(FAR struct stm32_dev_s *priv, bool reset);
|
|
|
|
|
|
|
|
/* ADC Interrupt Handler */
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifndef CONFIG_STM32F0L0G0_ADC_NOIRQ
|
2019-05-09 15:02:53 +02:00
|
|
|
static int adc_interrupt(FAR struct adc_dev_s *dev);
|
|
|
|
static int adc1_interrupt(int irq, FAR void *context, FAR void *arg);
|
2019-05-27 16:16:24 +02:00
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC_NOIRQ */
|
2019-05-09 15:02:53 +02:00
|
|
|
|
|
|
|
/* ADC Driver Methods */
|
|
|
|
|
|
|
|
static int adc_bind(FAR struct adc_dev_s *dev,
|
|
|
|
FAR const struct adc_callback_s *callback);
|
|
|
|
static void adc_reset(FAR struct adc_dev_s *dev);
|
|
|
|
static int adc_setup(FAR struct adc_dev_s *dev);
|
|
|
|
static void adc_shutdown(FAR struct adc_dev_s *dev);
|
|
|
|
static void adc_rxint(FAR struct adc_dev_s *dev, bool enable);
|
|
|
|
static int adc_ioctl(FAR struct adc_dev_s *dev, int cmd, unsigned long arg);
|
|
|
|
static void adc_enable(FAR struct stm32_dev_s *priv, bool enable);
|
|
|
|
|
|
|
|
static int adc_set_ch(FAR struct adc_dev_s *dev, uint8_t ch);
|
|
|
|
|
|
|
|
static int adc_ioc_change_ints(FAR struct adc_dev_s *dev, int cmd,
|
|
|
|
bool arg);
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_RESOLUTION
|
|
|
|
static int adc_resolution_set(FAR struct adc_dev_s *dev, uint8_t res);
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ADC_VBAT
|
|
|
|
static void adc_enable_vbat_channel(FAR struct adc_dev_s *dev, bool enable);
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ADC_POWERDOWN
|
|
|
|
static int adc_ioc_change_sleep_between_opers(FAR struct adc_dev_s *dev,
|
|
|
|
int cmd, bool arg);
|
|
|
|
static void adc_power_down_idle(FAR struct stm32_dev_s *priv,
|
|
|
|
bool pdi_high);
|
|
|
|
static void adc_power_down_delay(FAR struct stm32_dev_s *priv,
|
|
|
|
bool pdd_high);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
static void adc_timstart(FAR struct stm32_dev_s *priv, bool enable);
|
|
|
|
static int adc_timinit(FAR struct stm32_dev_s *priv);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(ADC_HAVE_DMA)
|
|
|
|
static void adc_dmaconvcallback(DMA_HANDLE handle, uint8_t isr,
|
|
|
|
FAR void *arg);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void adc_reg_startconv(FAR struct stm32_dev_s *priv, bool enable);
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_EXTCFG
|
|
|
|
static int adc_extcfg_set(FAR struct adc_dev_s *dev, uint32_t extcfg);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void adc_dumpregs(FAR struct stm32_dev_s *priv);
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_LL_OPS
|
2019-05-09 15:02:53 +02:00
|
|
|
static void adc_llops_intack(FAR struct stm32_adc_dev_s *dev, uint32_t source);
|
|
|
|
static void adc_llops_inten(FAR struct stm32_adc_dev_s *dev, uint32_t source);
|
|
|
|
static void adc_llops_intdis(FAR struct stm32_adc_dev_s *dev, uint32_t source);
|
|
|
|
static uint32_t adc_llops_intget(FAR struct stm32_adc_dev_s *dev);
|
|
|
|
static uint32_t adc_llops_regget(FAR struct stm32_adc_dev_s *dev);
|
|
|
|
static void adc_llops_reg_startconv(FAR struct stm32_adc_dev_s *dev, bool enable);
|
|
|
|
# ifdef ADC_HAVE_DMA
|
|
|
|
static int adc_llops_regbufregister(FAR struct stm32_adc_dev_s *dev,
|
|
|
|
uint16_t *buffer, uint8_t len);
|
|
|
|
# endif
|
2019-05-27 16:16:24 +02:00
|
|
|
# ifdef CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME
|
2019-05-09 15:02:53 +02:00
|
|
|
static void adc_sampletime_set(FAR struct stm32_adc_dev_s *dev,
|
|
|
|
FAR struct adc_sample_time_s *time_samples);
|
|
|
|
static void adc_sampletime_write(FAR struct stm32_adc_dev_s *dev);
|
|
|
|
# endif
|
|
|
|
static void adc_llops_dumpregs(FAR struct stm32_adc_dev_s *dev);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* ADC interface operations */
|
|
|
|
|
|
|
|
static const struct adc_ops_s g_adcops =
|
|
|
|
{
|
|
|
|
.ao_bind = adc_bind,
|
|
|
|
.ao_reset = adc_reset,
|
|
|
|
.ao_setup = adc_setup,
|
|
|
|
.ao_shutdown = adc_shutdown,
|
|
|
|
.ao_rxint = adc_rxint,
|
|
|
|
.ao_ioctl = adc_ioctl,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Publicly visible ADC lower-half operations */
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_LL_OPS
|
2019-05-09 15:02:53 +02:00
|
|
|
static const struct stm32_adc_ops_s g_adc_llops =
|
|
|
|
{
|
|
|
|
.int_ack = adc_llops_intack,
|
|
|
|
.int_get = adc_llops_intget,
|
|
|
|
.int_en = adc_llops_inten,
|
|
|
|
.int_dis = adc_llops_intdis,
|
|
|
|
.val_get = adc_llops_regget,
|
|
|
|
.reg_startconv = adc_llops_reg_startconv,
|
|
|
|
# ifdef ADC_HAVE_DMA
|
|
|
|
.regbuf_reg = adc_llops_regbufregister,
|
|
|
|
# endif
|
2019-05-27 16:16:24 +02:00
|
|
|
# ifdef CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME
|
2019-05-09 15:02:53 +02:00
|
|
|
.stime_set = adc_sampletime_set,
|
|
|
|
.stime_write = adc_sampletime_write,
|
|
|
|
# endif
|
|
|
|
.dump_regs = adc_llops_dumpregs
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ADC1 state */
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC1
|
2019-05-09 15:02:53 +02:00
|
|
|
static struct stm32_dev_s g_adcpriv1 =
|
|
|
|
{
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_LL_OPS
|
2019-05-09 15:02:53 +02:00
|
|
|
.llops = &g_adc_llops,
|
|
|
|
#endif
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifndef CONFIG_STM32F0L0G0_ADC_NOIRQ
|
2019-05-09 15:02:53 +02:00
|
|
|
.irq = STM32_IRQ_ADC,
|
|
|
|
.isr = adc1_interrupt,
|
2019-05-27 16:16:24 +02:00
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC_NOIRQ */
|
2019-05-09 15:02:53 +02:00
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
.cmn = &ADC1CMN_DATA,
|
|
|
|
#endif
|
|
|
|
.intf = 1,
|
|
|
|
#ifdef HAVE_ADC_RESOLUTION
|
2019-05-27 16:16:24 +02:00
|
|
|
.resolution = CONFIG_STM32F0L0G0_ADC1_RESOLUTION,
|
2019-05-09 15:02:53 +02:00
|
|
|
#endif
|
|
|
|
.base = STM32_ADC1_BASE,
|
|
|
|
#ifdef ADC1_HAVE_EXTCFG
|
|
|
|
.extcfg = ADC1_EXTCFG_VALUE,
|
|
|
|
#endif
|
|
|
|
#ifdef ADC1_HAVE_TIMER
|
2019-05-27 16:16:24 +02:00
|
|
|
.trigger = CONFIG_STM32F0L0G0_ADC1_TIMTRIG,
|
2019-05-09 15:02:53 +02:00
|
|
|
.tbase = ADC1_TIMER_BASE,
|
|
|
|
.pclck = ADC1_TIMER_PCLK_FREQUENCY,
|
2019-05-27 16:16:24 +02:00
|
|
|
.freq = CONFIG_STM32F0L0G0_ADC1_SAMPLE_FREQUENCY,
|
2019-05-09 15:02:53 +02:00
|
|
|
#endif
|
|
|
|
#ifdef ADC1_HAVE_DMA
|
|
|
|
.dmachan = ADC1_DMA_CHAN,
|
|
|
|
# ifdef ADC_HAVE_DMACFG
|
2019-05-27 16:16:24 +02:00
|
|
|
.dmacfg = CONFIG_STM32F0L0G0_ADC1_DMA_CFG,
|
2019-05-09 15:02:53 +02:00
|
|
|
# endif
|
|
|
|
.hasdma = true,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct adc_dev_s g_adcdev1 =
|
|
|
|
{
|
|
|
|
.ad_ops = &g_adcops,
|
|
|
|
.ad_priv = &g_adcpriv1,
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: stm32_modifyreg32
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Modify the value of a 32-bit register (not atomic).
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* addr - The address of the register
|
|
|
|
* clrbits - The bits to clear
|
|
|
|
* setbits - The bits to set
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void stm32_modifyreg32(unsigned int addr, uint32_t clrbits,
|
|
|
|
uint32_t setbits)
|
|
|
|
{
|
|
|
|
putreg32((getreg32(addr) & ~clrbits) | setbits, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_getreg
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Read the value of an ADC register.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
* offset - The offset to the register to read
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The current contents of the specified register
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static uint32_t adc_getreg(FAR struct stm32_dev_s *priv, int offset)
|
|
|
|
{
|
|
|
|
return getreg32(priv->base + offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_putreg
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Write a value to an ADC register.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
* offset - The offset to the register to write to
|
|
|
|
* value - The value to write to the register
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_putreg(FAR struct stm32_dev_s *priv, int offset,
|
|
|
|
uint32_t value)
|
|
|
|
{
|
|
|
|
putreg32(value, priv->base + offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_modifyreg
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Modify the value of an ADC register (not atomic).
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
* offset - The offset to the register to modify
|
|
|
|
* clrbits - The bits to clear
|
|
|
|
* setbits - The bits to set
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_modifyreg(FAR struct stm32_dev_s *priv, int offset,
|
|
|
|
uint32_t clrbits, uint32_t setbits)
|
|
|
|
{
|
|
|
|
adc_putreg(priv, offset, (adc_getreg(priv, offset) & ~clrbits) | setbits);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_REGS
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adccmn_base_get
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static uint32_t adccmn_base_get(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
uint32_t base = 0;
|
|
|
|
|
|
|
|
if (priv->base == STM32_ADC1_BASE)
|
|
|
|
{
|
|
|
|
base = STM32_ADC12CMN_BASE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adccmn_modifyreg
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adccmn_modifyreg(FAR struct stm32_dev_s *priv, uint32_t offset,
|
|
|
|
uint32_t clrbits, uint32_t setbits)
|
|
|
|
{
|
|
|
|
uint32_t base = 0;
|
|
|
|
|
|
|
|
/* Get base address for ADC common register */
|
|
|
|
|
|
|
|
base = adccmn_base_get(priv);
|
|
|
|
|
|
|
|
/* Modify register */
|
|
|
|
|
|
|
|
stm32_modifyreg32(offset + base, clrbits, setbits);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adccmn_getreg
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
# ifdef CONFIG_DEBUG_ANALOG_INFO
|
|
|
|
static uint32_t adccmn_getreg(FAR struct stm32_dev_s *priv, uint32_t offset)
|
|
|
|
{
|
|
|
|
uint32_t base = 0;
|
|
|
|
|
|
|
|
/* Get base address for ADC common register */
|
|
|
|
|
|
|
|
base = adccmn_base_get(priv);
|
|
|
|
|
|
|
|
/* Return register value */
|
|
|
|
|
|
|
|
return getreg32(base+offset);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif /* HAVE_ADC_CMN_REGS */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: tim_getreg
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Read the value of an ADC timer register.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
* offset - The offset to the register to read
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The current contents of the specified register
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
static uint16_t tim_getreg(FAR struct stm32_dev_s *priv, int offset)
|
|
|
|
{
|
|
|
|
return getreg16(priv->tbase + offset);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: tim_putreg
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Write a value to an ADC timer register.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
* offset - The offset to the register to write to
|
|
|
|
* value - The value to write to the register
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
static void tim_putreg(FAR struct stm32_dev_s *priv, int offset,
|
|
|
|
uint16_t value)
|
|
|
|
{
|
|
|
|
putreg16(value, priv->tbase + offset);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: tim_modifyreg
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Modify the value of an ADC timer register (not atomic).
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
* offset - The offset to the register to modify
|
|
|
|
* clrbits - The bits to clear
|
|
|
|
* setbits - The bits to set
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
static void tim_modifyreg(FAR struct stm32_dev_s *priv, int offset,
|
|
|
|
uint16_t clrbits, uint16_t setbits)
|
|
|
|
{
|
|
|
|
tim_putreg(priv, offset, (tim_getreg(priv, offset) & ~clrbits) | setbits);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: tim_dumpregs
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Dump all timer registers.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
static void tim_dumpregs(FAR struct stm32_dev_s *priv, FAR const char *msg)
|
|
|
|
{
|
|
|
|
ainfo("%s:\n", msg);
|
|
|
|
ainfo(" CR1: %04x CR2: %04x SMCR: %04x DIER: %04x\n",
|
|
|
|
tim_getreg(priv, STM32_GTIM_CR1_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_CR2_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_SMCR_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_DIER_OFFSET));
|
|
|
|
ainfo(" SR: %04x EGR: 0000 CCMR1: %04x CCMR2: %04x\n",
|
|
|
|
tim_getreg(priv, STM32_GTIM_SR_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_CCMR1_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_CCMR2_OFFSET));
|
|
|
|
ainfo(" CCER: %04x CNT: %04x PSC: %04x ARR: %04x\n",
|
|
|
|
tim_getreg(priv, STM32_GTIM_CCER_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_CNT_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_PSC_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_ARR_OFFSET));
|
|
|
|
ainfo(" CCR1: %04x CCR2: %04x CCR3: %04x CCR4: %04x\n",
|
|
|
|
tim_getreg(priv, STM32_GTIM_CCR1_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_CCR2_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_CCR3_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_CCR4_OFFSET));
|
|
|
|
#if STM32_NATIM > 0
|
|
|
|
if (priv->tbase == STM32_TIM1_BASE)
|
|
|
|
{
|
|
|
|
ainfo(" RCR: %04x BDTR: %04x DCR: %04x DMAR: %04x\n",
|
|
|
|
tim_getreg(priv, STM32_ATIM_RCR_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_ATIM_BDTR_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_ATIM_DCR_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_ATIM_DMAR_OFFSET));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
ainfo(" DCR: %04x DMAR: %04x\n",
|
|
|
|
tim_getreg(priv, STM32_GTIM_DCR_OFFSET),
|
|
|
|
tim_getreg(priv, STM32_GTIM_DMAR_OFFSET));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_timstart
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Start (or stop) the timer counter
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
* enable - True: Start conversion
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
static void adc_timstart(FAR struct stm32_dev_s *priv, bool enable)
|
|
|
|
{
|
|
|
|
ainfo("enable: %d\n", enable ? 1 : 0);
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
/* Start the counter */
|
|
|
|
|
|
|
|
tim_modifyreg(priv, STM32_GTIM_CR1_OFFSET, 0, GTIM_CR1_CEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Disable the counter */
|
|
|
|
|
|
|
|
tim_modifyreg(priv, STM32_GTIM_CR1_OFFSET, GTIM_CR1_CEN, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_timinit
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize the timer that drivers the ADC sampling for this channel
|
|
|
|
* using the pre-calculated timer divider definitions.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero on success; a negated errno value on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
static int adc_timinit(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
#warning TODO: adc_timinit
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_reg_startconv
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Start (or stop) the ADC regular conversion process
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - A reference to the ADC block status
|
|
|
|
* enable - True: Start conversion
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_reg_startconv(FAR struct stm32_dev_s *priv, bool enable)
|
|
|
|
{
|
|
|
|
uint32_t regval;
|
|
|
|
|
|
|
|
ainfo("reg enable: %d\n", enable ? 1 : 0);
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
/* Start the conversion of regular channels */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_CR_OFFSET, 0, ADC_CR_ADSTART);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
regval = adc_getreg(priv, STM32_ADC_CR_OFFSET);
|
|
|
|
|
|
|
|
/* Is a conversion ongoing? */
|
|
|
|
|
|
|
|
if ((regval & ADC_CR_ADSTART) != 0)
|
|
|
|
{
|
|
|
|
/* Stop the conversion */
|
|
|
|
|
|
|
|
adc_putreg(priv, STM32_ADC_CR_OFFSET, regval | ADC_CR_ADSTP);
|
|
|
|
|
|
|
|
/* Wait for the conversion to stop */
|
|
|
|
|
|
|
|
while ((adc_getreg(priv, STM32_ADC_CR_OFFSET) & ADC_CR_ADSTP) != 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adccmn_lock
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
static int adccmn_lock(FAR struct stm32_dev_s *priv, bool lock)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (lock)
|
|
|
|
{
|
|
|
|
/* Take the semaphore (perhaps waiting) */
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ret = nxsem_wait(&priv->cmn->lock);
|
|
|
|
|
|
|
|
/* The only case that an error should occur here is if the wait
|
|
|
|
* was awakened by a signal.
|
|
|
|
*/
|
|
|
|
|
|
|
|
DEBUGASSERT(ret == OK || ret == -EINTR);
|
|
|
|
}
|
|
|
|
while (ret == -EINTR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
(void)nxsem_post(&priv->cmn->lock);
|
|
|
|
ret = OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_rccreset
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Deinitializes the ADCx peripheral registers to their default
|
|
|
|
* reset values. It could set all the ADCs configured.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* regaddr - The register to read
|
|
|
|
* reset - Condition, set or reset
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_rccreset(FAR struct stm32_dev_s *priv, bool reset)
|
|
|
|
{
|
|
|
|
uint32_t adcbit;
|
|
|
|
|
|
|
|
/* Pick the appropriate bit in the RCC reset register.
|
|
|
|
* For the STM32 ADC IPv2, there is an individual bit to reset each ADC block.
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch (priv->intf)
|
|
|
|
{
|
2019-05-27 16:16:24 +02:00
|
|
|
#if defined(CONFIG_STM32F0L0G0_ADC1)
|
2019-05-09 15:02:53 +02:00
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
adcbit = RCC_RSTR_ADC1RST;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set or clear the selected bit in the RCC reset register */
|
|
|
|
|
|
|
|
if (reset)
|
|
|
|
{
|
|
|
|
/* Enable ADC reset state */
|
|
|
|
|
|
|
|
modifyreg32(STM32_RCC_RSTR, 0, adcbit);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Release ADC from reset state */
|
|
|
|
|
|
|
|
modifyreg32(STM32_RCC_RSTR, adcbit, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_enable
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Enables or disables the specified ADC peripheral. Also, starts a
|
|
|
|
* conversion when the ADC is not triggered by timers
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* enable - true: enable ADC conversion
|
|
|
|
* false: disable ADC conversion
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_enable(FAR struct stm32_dev_s *priv, bool enable)
|
|
|
|
{
|
|
|
|
uint32_t regval;
|
|
|
|
|
|
|
|
ainfo("enable: %d\n", enable ? 1 : 0);
|
|
|
|
|
|
|
|
regval = adc_getreg(priv, STM32_ADC_CR_OFFSET);
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
/* Enable the ADC */
|
|
|
|
|
|
|
|
adc_putreg(priv, STM32_ADC_CR_OFFSET, regval | ADC_CR_ADEN);
|
|
|
|
|
|
|
|
/* Wait for the ADC to be ready */
|
|
|
|
|
|
|
|
while ((adc_getreg(priv, STM32_ADC_ISR_OFFSET) & ADC_INT_ARDY) == 0);
|
|
|
|
}
|
|
|
|
else if ((regval & ADC_CR_ADEN) != 0 && (regval & ADC_CR_ADDIS) == 0)
|
|
|
|
{
|
|
|
|
/* Stop ongoing regular conversions */
|
|
|
|
|
|
|
|
adc_reg_startconv(priv, false);
|
|
|
|
|
|
|
|
/* Disable the ADC */
|
|
|
|
|
|
|
|
adc_putreg(priv, STM32_ADC_CR_OFFSET, regval | ADC_CR_ADDIS);
|
|
|
|
|
|
|
|
/* Wait for the ADC to be disabled */
|
|
|
|
|
|
|
|
while ((adc_getreg(priv, STM32_ADC_CR_OFFSET) & ADC_CR_ADEN) != 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_dmaconvcallback
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Callback for DMA. Called from the DMA transfer complete interrupt after
|
|
|
|
* all channels have been converted and transferred with DMA.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* handle - handle to DMA
|
|
|
|
* isr -
|
|
|
|
* arg - adc device
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if defined(ADC_HAVE_DMA)
|
|
|
|
static void adc_dmaconvcallback(DMA_HANDLE handle, uint8_t isr, FAR void *arg)
|
|
|
|
{
|
|
|
|
FAR struct adc_dev_s *dev = (FAR struct adc_dev_s *)arg;
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Verify that the upper-half driver has bound its callback functions */
|
|
|
|
|
|
|
|
if (priv->cb != NULL)
|
|
|
|
{
|
|
|
|
DEBUGASSERT(priv->cb->au_receive != NULL);
|
|
|
|
|
|
|
|
for (i = 0; i < priv->rnchannels; i++)
|
|
|
|
{
|
|
|
|
priv->cb->au_receive(dev, priv->r_chanlist[priv->current],
|
|
|
|
priv->r_dmabuffer[priv->current]);
|
|
|
|
priv->current++;
|
|
|
|
if (priv->current >= priv->rnchannels)
|
|
|
|
{
|
|
|
|
/* Restart the conversion sequence from the beginning */
|
|
|
|
|
|
|
|
priv->current = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Restart DMA for the next conversion series */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_DMAREG_OFFSET, ADC_DMAREG_DMA, 0);
|
|
|
|
adc_modifyreg(priv, STM32_ADC_DMAREG_OFFSET, 0, ADC_DMAREG_DMA);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_bind
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Bind the upper-half driver callbacks to the lower-half implementation.
|
|
|
|
* This must be called early in order to receive ADC event notifications.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int adc_bind(FAR struct adc_dev_s *dev,
|
|
|
|
FAR const struct adc_callback_s *callback)
|
|
|
|
{
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifndef CONFIG_STM32F0L0G0_ADC_NOIRQ
|
2019-05-09 15:02:53 +02:00
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
|
|
|
|
DEBUGASSERT(priv != NULL);
|
|
|
|
priv->cb = callback;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_watchdog_cfg
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_watchdog_cfg(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
uint32_t clrbits = 0;
|
|
|
|
uint32_t setbits = 0;
|
|
|
|
|
|
|
|
uint32_t th = 0;
|
|
|
|
|
|
|
|
/* Initialize the watchdog high threshold register */
|
|
|
|
|
|
|
|
th |= 0x0fff << ADC_TR_HT_SHIFT;
|
|
|
|
|
|
|
|
/* Initialize the watchdog low threshold register */
|
|
|
|
|
|
|
|
th |= 0x0000 << ADC_TR_LT_SHIFT;
|
|
|
|
|
|
|
|
/* Write threshold register */
|
|
|
|
|
|
|
|
adc_putreg(priv, STM32_ADC_TR_OFFSET, th);
|
|
|
|
|
|
|
|
clrbits = ADC_CFGR1_AWDCH_MASK;
|
|
|
|
setbits = ADC_CFGR1_AWDEN | (priv->r_chanlist[0] << ADC_CFGR1_AWDCH_SHIFT);
|
|
|
|
|
|
|
|
/* Modify CFGR1 configuration */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_CFGR1_OFFSET, clrbits, setbits);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_calibrate
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_calibrate(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
#if 0 /* Doesn't work */
|
|
|
|
/* Calibrate the ADC */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_CR_OFFSET, ADC_CR_ADCALDIF, AD_CR_ADCAL);
|
|
|
|
|
|
|
|
/* Wait for the calibration to complete */
|
|
|
|
|
|
|
|
while ((adc_getreg(priv, STM32_ADC_CR_OFFSET) & ADC_CR_ADCAL) != 0);
|
|
|
|
|
|
|
|
#else
|
|
|
|
UNUSED(priv);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_mode_cfg
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_mode_cfg(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
uint32_t clrbits = 0;
|
|
|
|
uint32_t setbits = 0;
|
|
|
|
|
|
|
|
/* Disable continuous mode and set align to right */
|
|
|
|
|
|
|
|
clrbits = ADC_CFGR1_CONT | ADC_CFGR1_ALIGN;
|
|
|
|
|
|
|
|
/* Disable external trigger for regular channels */
|
|
|
|
|
|
|
|
clrbits |= ADC_CFGR1_EXTEN_MASK;
|
|
|
|
setbits |= ADC_CFGR1_EXTEN_NONE;
|
|
|
|
|
|
|
|
/* Set CFGR configuration */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_CFGR1_OFFSET, clrbits, setbits);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_voltreg_cfg
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_voltreg_cfg(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
UNUSED(priv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_sampletime_cfg
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_sampletime_cfg(FAR struct adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
/* Initialize the same sample time for each ADC.
|
|
|
|
* During sample cycles channel selection bits must remain unchanged.
|
|
|
|
*/
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME
|
2019-05-09 15:02:53 +02:00
|
|
|
adc_sampletime_write((FAR struct stm32_adc_dev_s *)dev);
|
|
|
|
#else
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
uint32_t setbits = 0;
|
|
|
|
|
|
|
|
/* Configure sample time 1 */
|
|
|
|
|
|
|
|
setbits |= ADC_SMP1_DEFAULT << ADC_SMPR_SMP1_SHIFT;
|
|
|
|
|
|
|
|
# ifdef ADC_HAVE_SMPR_SMP2
|
|
|
|
/* Configure sample time 2 */
|
|
|
|
|
|
|
|
setbits |= ADC_SMP2_DEFAULT << ADC_SMPR_SMP2_SHIFT;
|
|
|
|
|
|
|
|
/* Configure sample time selection */
|
|
|
|
|
|
|
|
setbits |= ADC_SMPSEL_DEFAULT << ADC_SMPR_SMPSEL_SHIFT;
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* Write SMPR register */
|
|
|
|
|
|
|
|
adc_putreg(priv, STM32_ADC_SMPR_OFFSET, setbits);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_common_cfg
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_common_cfg(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
uint32_t clrbits = 0;
|
|
|
|
uint32_t setbits = 0;
|
|
|
|
|
|
|
|
/* REVISIT: for now we reset all CCR bits */
|
|
|
|
|
|
|
|
clrbits |= ADC_CCR_VREFEN;
|
|
|
|
clrbits |= ADC_CCR_TSEN;
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_VLCD
|
|
|
|
clrbits |= ADC_CCR_PRESC_MASK;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_VLCD
|
|
|
|
clrbits |= ADC_CCR_VLCDEN;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_LFM
|
|
|
|
clrbits |= ADC_CCR_LFMEN;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
setbits = 0;
|
|
|
|
|
|
|
|
adccmn_modifyreg(priv, STM32_ADC_CCR_OFFSET, clrbits, setbits);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_DMA
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_dma_cfg
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_dma_cfg(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
uint32_t clrbits = 0;
|
|
|
|
uint32_t setbits = 0;
|
|
|
|
|
|
|
|
/* Set DMA mode */
|
|
|
|
|
|
|
|
if (priv->dmacfg == 0)
|
|
|
|
{
|
|
|
|
/* One Shot Mode */
|
|
|
|
|
|
|
|
clrbits |= ADC_CFGR1_DMACFG;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Circular Mode */
|
|
|
|
|
|
|
|
setbits |= ADC_CFGR1_DMACFG;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable DMA */
|
|
|
|
|
|
|
|
setbits |= ADC_CFGR1_DMAEN;
|
|
|
|
|
|
|
|
/* Modify CFGR configuration */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_CFGR1_OFFSET, clrbits, setbits);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_dma_start
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_dma_start(FAR struct adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
|
|
|
|
/* Stop and free DMA if it was started before */
|
|
|
|
|
|
|
|
if (priv->dma != NULL)
|
|
|
|
{
|
|
|
|
stm32_dmastop(priv->dma);
|
|
|
|
stm32_dmafree(priv->dma);
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->dma = stm32_dmachannel(priv->dmachan);
|
|
|
|
|
|
|
|
stm32_dmasetup(priv->dma,
|
|
|
|
priv->base + STM32_ADC_DR_OFFSET,
|
|
|
|
(uint32_t)priv->r_dmabuffer,
|
|
|
|
priv->rnchannels,
|
|
|
|
ADC_DMA_CONTROL_WORD);
|
|
|
|
|
|
|
|
stm32_dmastart(priv->dma, adc_dmaconvcallback, dev, false);
|
|
|
|
}
|
|
|
|
#endif /* ADC_HAVE_DMA */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_configure
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_configure(FAR struct adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
|
|
|
|
/* Turn off the ADC before configuration */
|
|
|
|
|
|
|
|
adc_enable(priv, false);
|
|
|
|
|
|
|
|
/* Configure voltage regulator if present */
|
|
|
|
|
|
|
|
adc_voltreg_cfg(priv);
|
|
|
|
|
|
|
|
/* Calibrate ADC - doesnt work for now */
|
|
|
|
|
|
|
|
adc_calibrate(priv);
|
|
|
|
|
|
|
|
/* Initialize the ADC watchdog */
|
|
|
|
|
|
|
|
adc_watchdog_cfg(priv);
|
|
|
|
|
|
|
|
/* Initialize the ADC sample time */
|
|
|
|
|
|
|
|
adc_sampletime_cfg(dev);
|
|
|
|
|
|
|
|
/* Set ADC working mode */
|
|
|
|
|
|
|
|
adc_mode_cfg(priv);
|
|
|
|
|
|
|
|
/* Configuration of the channel conversions */
|
|
|
|
|
|
|
|
if (priv->cr_channels > 0)
|
|
|
|
{
|
|
|
|
adc_set_ch(dev, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ADC common register configuration */
|
|
|
|
|
|
|
|
adc_common_cfg(priv);
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_DMA
|
|
|
|
/* Configure ADC DMA if enabled */
|
|
|
|
|
|
|
|
if (priv->hasdma)
|
|
|
|
{
|
|
|
|
/* Configure ADC DMA */
|
|
|
|
|
|
|
|
adc_dma_cfg(priv);
|
|
|
|
|
|
|
|
/* Start ADC DMA */
|
|
|
|
|
|
|
|
adc_dma_start(dev);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_RESOLUTION
|
|
|
|
/* Configure ADC resolution */
|
|
|
|
|
|
|
|
(void)adc_resolution_set(dev, priv->resolution);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_EXTCFG
|
|
|
|
/* Configure external event for regular group */
|
|
|
|
|
|
|
|
adc_extcfg_set(dev, priv->extcfg);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Enable ADC */
|
|
|
|
|
|
|
|
adc_enable(priv, true);
|
|
|
|
|
|
|
|
/* Dump regs */
|
|
|
|
|
|
|
|
adc_dumpregs(priv);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_reset
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Reset the ADC device. Called early to initialize the hardware.
|
|
|
|
* This is called, before adc_setup() and on error conditions.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_reset(FAR struct adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
irqstate_t flags;
|
|
|
|
|
|
|
|
ainfo("intf: %d\n", priv->intf);
|
|
|
|
flags = enter_critical_section();
|
|
|
|
|
|
|
|
#if defined(HAVE_IP_ADC_V2)
|
|
|
|
/* Turn off the ADC so we can write the RCC bits */
|
|
|
|
|
|
|
|
adc_enable(priv, false);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Only if this is the first initialzied ADC instance in the ADC block */
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
adccmn_lock(priv, true);
|
|
|
|
|
|
|
|
if (priv->cmn->initialized == 0)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* Enable ADC reset state */
|
|
|
|
|
|
|
|
adc_rccreset(priv, true);
|
|
|
|
|
|
|
|
/* Release ADC from reset state */
|
|
|
|
|
|
|
|
adc_rccreset(priv, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
adccmn_lock(priv, false);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
leave_critical_section(flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_setup
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Configure the ADC. This method is called the first time that the ADC
|
|
|
|
* device is opened. This will occur when the port is first opened.
|
|
|
|
* This setup includes configuring and attaching ADC interrupts.
|
|
|
|
* Interrupts are all disabled upon return.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int adc_setup(FAR struct adc_dev_s *dev)
|
|
|
|
{
|
2019-05-27 16:16:24 +02:00
|
|
|
#if !defined(CONFIG_STM32F0L0G0_ADC_NOIRQ) || defined(HAVE_ADC_CMN_DATA) || \
|
|
|
|
defined(ADC_HAVE_TIMER) || !defined(CONFIG_STM32F0L0G0_ADC_NO_STARTUP_CONV)
|
2019-05-09 15:02:53 +02:00
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
#endif
|
|
|
|
int ret = OK;
|
|
|
|
|
|
|
|
/* Attach the ADC interrupt */
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifndef CONFIG_STM32F0L0G0_ADC_NOIRQ
|
2019-05-09 15:02:53 +02:00
|
|
|
ret = irq_attach(priv->irq, priv->isr, NULL);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
ainfo("irq_attach failed: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Make sure that the ADC device is in the powered up, reset state */
|
|
|
|
|
|
|
|
adc_reset(dev);
|
|
|
|
|
|
|
|
/* Configure ADC device */
|
|
|
|
|
|
|
|
adc_configure(dev);
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
/* Configure timer */
|
|
|
|
|
|
|
|
if (priv->tbase != 0)
|
|
|
|
{
|
|
|
|
ret = adc_timinit(priv);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
aerr("ERROR: adc_timinit failed: %d\n", ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* As default conversion is started here.
|
|
|
|
*
|
|
|
|
* NOTE: for ADC IPv2 (J)ADSTART bit must be set to start ADC conversion
|
|
|
|
* even if hardware trigger is selected.
|
|
|
|
* This can be done here during the opening of the ADC device
|
|
|
|
* or later with ANIOC_TRIGGER ioctl call.
|
|
|
|
*/
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifndef CONFIG_STM32F0L0G0_ADC_NO_STARTUP_CONV
|
2019-05-09 15:02:53 +02:00
|
|
|
/* Start regular conversion */
|
|
|
|
|
|
|
|
adc_reg_startconv(priv, true);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Enable the ADC interrupt */
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifndef CONFIG_STM32F0L0G0_ADC_NOIRQ
|
2019-05-09 15:02:53 +02:00
|
|
|
ainfo("Enable the ADC interrupt: irq=%d\n", priv->irq);
|
|
|
|
up_enable_irq(priv->irq);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
/* Increase instances counter */
|
|
|
|
|
|
|
|
adccmn_lock(priv, true);
|
|
|
|
priv->cmn->initialized += 1;
|
|
|
|
adccmn_lock(priv, false);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_shutdown
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Disable the ADC. This method is called when the ADC device is closed.
|
|
|
|
* This method reverses the operation the setup method.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_shutdown(FAR struct adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
|
|
|
|
/* Disable ADC */
|
|
|
|
|
|
|
|
adc_enable(priv, false);
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifndef CONFIG_STM32F0L0G0_ADC_NOIRQ
|
2019-05-09 15:02:53 +02:00
|
|
|
/* Disable ADC interrupts and detach the ADC interrupt handler */
|
|
|
|
|
|
|
|
up_disable_irq(priv->irq);
|
|
|
|
irq_detach(priv->irq);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
adccmn_lock(priv, true);
|
|
|
|
|
|
|
|
if (priv->cmn->initialized <= 1)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* Disable and reset the ADC module.
|
|
|
|
*
|
|
|
|
* NOTE: The ADC block will be reset to its reset state only if all
|
|
|
|
* ADC block instances are closed. This means that the closed ADC
|
|
|
|
* may not be reset which in turn may affect low-power applications.
|
|
|
|
* (But ADC is turned off here, is not that enough?)
|
|
|
|
*/
|
|
|
|
|
|
|
|
adc_rccreset(priv, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_TIMER
|
|
|
|
/* Disable timer */
|
|
|
|
|
|
|
|
if (priv->tbase != 0)
|
|
|
|
{
|
|
|
|
adc_timstart(priv, false);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_CMN_DATA
|
|
|
|
/* Decrease instances counter */
|
|
|
|
|
|
|
|
priv->cmn->initialized -= 1;
|
|
|
|
|
|
|
|
adccmn_lock(priv, false);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_rxint
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Call to enable or disable RX interrupts.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_rxint(FAR struct adc_dev_s *dev, bool enable)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
uint32_t regval;
|
|
|
|
|
|
|
|
ainfo("intf: %d enable: %d\n", priv->intf, enable ? 1 : 0);
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
/* Enable the analog watchdog / overrun interrupts, and if no DMA,
|
|
|
|
* end-of-conversion ADC.
|
|
|
|
*/
|
|
|
|
|
|
|
|
regval = ADC_IER_ALLINTS;
|
|
|
|
#ifdef ADC_HAVE_DMA
|
|
|
|
if (priv->hasdma)
|
|
|
|
{
|
|
|
|
regval &= ~(ADC_IER_EOC);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, 0, regval);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Disable all ADC interrupts */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, ADC_IER_ALLINTS, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_resolution_set
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_RESOLUTION
|
|
|
|
static int adc_resolution_set(FAR struct adc_dev_s *dev, uint8_t res)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
int ret = OK;
|
|
|
|
|
|
|
|
/* Check input */
|
|
|
|
|
|
|
|
if (res > 3)
|
|
|
|
{
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Modify appropriate register */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_CFGR1_OFFSET, ADC_CFGR1_RES_MASK,
|
|
|
|
res << ADC_CFGR1_RES_SHIFT);
|
|
|
|
|
|
|
|
errout:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_extsel_set
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_EXTCFG
|
|
|
|
static int adc_extcfg_set(FAR struct adc_dev_s *dev, uint32_t extcfg)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
uint32_t exten = 0;
|
|
|
|
uint32_t extsel = 0;
|
|
|
|
uint32_t setbits = 0;
|
|
|
|
uint32_t clrbits = 0;
|
|
|
|
|
|
|
|
/* Get EXTEN and EXTSEL from input */
|
|
|
|
|
|
|
|
exten = (extcfg & ADC_EXTREG_EXTEN_MASK);
|
|
|
|
extsel = (extcfg & ADC_EXTREG_EXTSEL_MASK);
|
|
|
|
|
|
|
|
/* EXTSEL selection: These bits select the external event used
|
|
|
|
* to trigger the start of conversion of a regular group. NOTE:
|
|
|
|
*
|
|
|
|
* - The position with of the EXTSEL field varies from one STM32 MCU
|
|
|
|
* to another.
|
|
|
|
* - The width of the EXTSEL field varies from one STM32 MCU to another.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (exten > 0)
|
|
|
|
{
|
|
|
|
setbits = (extsel | exten);
|
|
|
|
clrbits = (ADC_EXTREG_EXTEN_MASK | ADC_EXTREG_EXTSEL_MASK);
|
|
|
|
|
|
|
|
ainfo("Initializing extsel = 0x%08x\n", extsel);
|
|
|
|
|
|
|
|
/* Write register */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_EXTREG_OFFSET, clrbits, setbits);
|
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_dumpregs
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_dumpregs(FAR struct stm32_dev_s *priv)
|
|
|
|
{
|
|
|
|
UNUSED(priv);
|
|
|
|
|
|
|
|
ainfo("ISR: 0x%08x IER: 0x%08x CR: 0x%08x CFGR1: 0x%08x\n",
|
|
|
|
adc_getreg(priv, STM32_ADC_ISR_OFFSET),
|
|
|
|
adc_getreg(priv, STM32_ADC_IER_OFFSET),
|
|
|
|
adc_getreg(priv, STM32_ADC_CR_OFFSET),
|
|
|
|
adc_getreg(priv, STM32_ADC_CFGR1_OFFSET));
|
|
|
|
|
|
|
|
ainfo("SMPR: 0x%08x CHSELR: 0x%08x\n",
|
|
|
|
adc_getreg(priv, STM32_ADC_SMPR_OFFSET),
|
|
|
|
adc_getreg(priv, STM32_ADC_CHSELR_OFFSET));
|
|
|
|
|
|
|
|
ainfo("CCR: 0x%08x\n", adccmn_getreg(priv, STM32_ADC_CCR_OFFSET));
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_enable_vbat_channel
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Enable/disable the Vbat voltage measurement channel.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - pointer to device structure used by the driver
|
|
|
|
* enable - true: Vbat input channel enabled (ch 18)
|
|
|
|
* false: Vbat input channel disabled (ch 18)
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_VBAT
|
|
|
|
static void adc_enable_vbat_channel(FAR struct adc_dev_s *dev, bool enable)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
adccmn_modifyreg(priv, STM32_ADC_CCR_OFFSET, 0, ADC_CCR_VBATEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
adccmn_modifyreg(priv, STM32_ADC_CCR_OFFSET, ADC_CCR_VBATEN, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
ainfo("STM32_ADC_CCR value: 0x%08x\n", adccmn_getreg(priv, STM32_ADC_CCR_OFFSET));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_ioc_change_sleep_between_opers
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Changes PDI and PDD bits to save battery.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - pointer to device structure used by the driver
|
|
|
|
* cmd - command
|
|
|
|
* arg - arguments passed with command
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_POWERDOWN
|
|
|
|
static int adc_ioc_change_sleep_between_opers(FAR struct adc_dev_s *dev,
|
|
|
|
int cmd, bool arg)
|
|
|
|
{
|
|
|
|
int ret = OK;
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
|
|
|
|
adc_enable(priv, false);
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case IO_ENABLE_DISABLE_PDI:
|
|
|
|
adc_power_down_idle(priv, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IO_ENABLE_DISABLE_PDD:
|
|
|
|
adc_power_down_delay(priv, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IO_ENABLE_DISABLE_PDD_PDI:
|
|
|
|
adc_power_down_idle(priv, arg);
|
|
|
|
adc_power_down_delay(priv, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ainfo("unknown cmd: %d\n", cmd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
adc_enable(priv, true);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_ioc_enable_awd_int
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Turns ON/OFF ADC analog watchdog interrupt.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - pointer to device structure used by the driver
|
|
|
|
* arg - true: Turn ON interrupt
|
|
|
|
* false: Turn OFF interrupt
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_ioc_enable_awd_int(FAR struct stm32_dev_s *priv, bool enable)
|
|
|
|
{
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, 0, ADC_IER_AWD);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, ADC_IER_AWD, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_ioc_enable_eoc_int
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Turns ON/OFF ADC EOC interrupt.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - pointer to device structure used by the driver
|
|
|
|
* arg - true: Turn ON interrupt
|
|
|
|
* false: Turn OFF interrupt
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_ioc_enable_eoc_int(FAR struct stm32_dev_s *priv, bool enable)
|
|
|
|
{
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, 0, ADC_IER_EOC);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, ADC_IER_EOC, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_ioc_enable_ovr_int
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Turns ON/OFF ADC overrun interrupt.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - pointer to device structure used by the driver
|
|
|
|
* arg - true: Turn ON interrupt
|
|
|
|
* false: Turn OFF interrupt
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_ioc_enable_ovr_int(FAR struct stm32_dev_s *priv, bool enable)
|
|
|
|
{
|
|
|
|
if (enable)
|
|
|
|
{
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, 0, ADC_IER_OVR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, ADC_IER_OVR, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_ioc_change_ints
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Turns ON/OFF ADC interrupts.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - pointer to device structure used by the driver
|
|
|
|
* cmd - command
|
|
|
|
* arg - arguments passed with command
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int adc_ioc_change_ints(FAR struct adc_dev_s *dev, int cmd, bool arg)
|
|
|
|
{
|
|
|
|
int ret = OK;
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case IO_ENABLE_DISABLE_AWDIE:
|
|
|
|
adc_ioc_enable_awd_int(priv, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IO_ENABLE_DISABLE_EOCIE:
|
|
|
|
adc_ioc_enable_eoc_int(priv, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IO_ENABLE_DISABLE_OVRIE:
|
|
|
|
adc_ioc_enable_ovr_int(priv, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IO_ENABLE_DISABLE_ALL_INTS:
|
|
|
|
adc_ioc_enable_awd_int(priv, arg);
|
|
|
|
adc_ioc_enable_eoc_int(priv, arg);
|
|
|
|
adc_ioc_enable_ovr_int(priv, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ainfo("unknown cmd: %d\n", cmd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_set_ch
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Sets the ADC channel.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - pointer to device structure used by the driver
|
|
|
|
* ch - ADC channel number + 1. 0 reserved for all configured channels
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* int - errno
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int adc_set_ch(FAR struct adc_dev_s *dev, uint8_t ch)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
uint32_t bits = 0;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
if (ch == 0)
|
|
|
|
{
|
|
|
|
priv->current = 0;
|
|
|
|
priv->rnchannels = priv->cr_channels;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < priv->cr_channels && priv->r_chanlist[i] != ch - 1; i++);
|
|
|
|
|
|
|
|
if (i >= priv->cr_channels)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->current = i;
|
|
|
|
priv->rnchannels = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < priv->rnchannels; i+=1)
|
|
|
|
{
|
|
|
|
bits |= ADC_CHSELR_CHSEL(priv->r_chanlist[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write register */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_CHSELR_OFFSET, 0, bits);
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_ioctl
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* All ioctl calls will be routed through this method.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - pointer to device structure used by the driver
|
|
|
|
* cmd - command
|
|
|
|
* arg - arguments passed with command
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int adc_ioctl(FAR struct adc_dev_s *dev, int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
int ret = OK;
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case ANIOC_TRIGGER:
|
|
|
|
{
|
|
|
|
/* Start regular conversion if regular channels configured */
|
|
|
|
|
|
|
|
if (priv->cr_channels > 0)
|
|
|
|
{
|
|
|
|
adc_reg_startconv(priv, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IO_TRIGGER_REG:
|
|
|
|
{
|
|
|
|
/* Start regular conversion if regular channels configured */
|
|
|
|
|
|
|
|
if (priv->cr_channels > 0)
|
|
|
|
{
|
|
|
|
adc_reg_startconv(priv, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IO_ENABLE_DISABLE_AWDIE:
|
|
|
|
case IO_ENABLE_DISABLE_EOCIE:
|
|
|
|
case IO_ENABLE_DISABLE_OVRIE:
|
|
|
|
case IO_ENABLE_DISABLE_ALL_INTS:
|
|
|
|
{
|
|
|
|
adc_ioc_change_ints(dev, cmd, *(bool *)arg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_VBAT
|
|
|
|
case IO_ENABLE_DISABLE_VBAT_CH:
|
|
|
|
{
|
|
|
|
adc_enable_vbat_channel(dev, *(bool *)arg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ADC_POWERDOWN
|
|
|
|
case IO_ENABLE_DISABLE_PDI:
|
|
|
|
case IO_ENABLE_DISABLE_PDD:
|
|
|
|
case IO_ENABLE_DISABLE_PDD_PDI:
|
|
|
|
{
|
|
|
|
adc_ioc_change_sleep_between_opers(dev, cmd, *(bool *)arg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case IO_STOP_ADC:
|
|
|
|
{
|
|
|
|
adc_enable(priv, false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IO_START_ADC:
|
|
|
|
{
|
|
|
|
adc_enable(priv, true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case IO_START_CONV:
|
|
|
|
{
|
|
|
|
uint8_t ch = ((uint8_t)arg);
|
|
|
|
|
|
|
|
ret = adc_set_ch(dev, ch);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_ADC
|
|
|
|
if (ch)
|
|
|
|
{
|
|
|
|
/* Clear fifo if upper-half driver enabled */
|
|
|
|
|
|
|
|
dev->ad_recv.af_head = 0;
|
|
|
|
dev->ad_recv.af_tail = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
adc_reg_startconv(priv, true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
aerr("ERROR: Unknown cmd: %d\n", cmd);
|
|
|
|
ret = -ENOTTY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifndef CONFIG_STM32F0L0G0_ADC_NOIRQ
|
2019-05-09 15:02:53 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_interrupt
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Common ADC interrupt handler.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int adc_interrupt(FAR struct adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
uint32_t regval;
|
|
|
|
uint32_t pending;
|
|
|
|
int32_t data;
|
|
|
|
|
|
|
|
regval = adc_getreg(priv, STM32_ADC_ISR_OFFSET);
|
|
|
|
pending = regval & ADC_ISR_ALLINTS;
|
|
|
|
if (pending == 0)
|
|
|
|
{
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Identifies the interruption AWD, OVR or EOC */
|
|
|
|
|
|
|
|
if ((regval & ADC_ISR_AWD) != 0)
|
|
|
|
{
|
|
|
|
awarn("WARNING: Analog Watchdog, Value converted out of range!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((regval & ADC_ISR_OVR) != 0)
|
|
|
|
{
|
|
|
|
awarn("WARNING: Overrun has occurred!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* EOC: End of conversion */
|
|
|
|
|
|
|
|
if ((regval & ADC_ISR_EOC) != 0)
|
|
|
|
{
|
|
|
|
/* Read the converted value and clear EOC bit
|
|
|
|
* (It is cleared by reading the ADC_DR)
|
|
|
|
*/
|
|
|
|
|
|
|
|
data = adc_getreg(priv, STM32_ADC_DR_OFFSET) & ADC_DR_RDATA_MASK;
|
|
|
|
|
|
|
|
/* Verify that the upper-half driver has bound its callback functions */
|
|
|
|
|
|
|
|
if (priv->cb != NULL)
|
|
|
|
{
|
|
|
|
/* Give the ADC data to the ADC driver. The ADC receive() method
|
|
|
|
* accepts 3 parameters:
|
|
|
|
*
|
|
|
|
* 1) The first is the ADC device instance for this ADC block.
|
|
|
|
* 2) The second is the channel number for the data, and
|
|
|
|
* 3) The third is the converted data for the channel.
|
|
|
|
*/
|
|
|
|
|
|
|
|
DEBUGASSERT(priv->cb->au_receive != NULL);
|
|
|
|
priv->cb->au_receive(dev, priv->r_chanlist[priv->current], data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the channel number of the next channel that will complete
|
|
|
|
* conversion.
|
|
|
|
*/
|
|
|
|
|
|
|
|
priv->current++;
|
|
|
|
|
|
|
|
if (priv->current >= priv->rnchannels)
|
|
|
|
{
|
|
|
|
/* Restart the conversion sequence from the beginning */
|
|
|
|
|
|
|
|
priv->current = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear pending interrupts */
|
|
|
|
|
|
|
|
adc_putreg(priv, STM32_ADC_ISR_OFFSET, pending);
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc1_interrupt
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* ADC interrupt handler for the STM32 L15XX family.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* irq - The IRQ number that generated the interrupt.
|
|
|
|
* context - Architecture specific register save information.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int adc1_interrupt(int irq, FAR void *context, FAR void *arg)
|
|
|
|
{
|
|
|
|
adc_interrupt(&g_adcdev1);
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
2019-05-27 16:16:24 +02:00
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC_NOIRQ */
|
2019-05-09 15:02:53 +02:00
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_LL_OPS
|
2019-05-09 15:02:53 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_llops_intack
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_llops_intack(FAR struct stm32_adc_dev_s *dev, uint32_t source)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev;
|
|
|
|
|
|
|
|
/* Clear pending interrupts */
|
|
|
|
|
|
|
|
#ifdef HAVE_IP_ADC_V2
|
|
|
|
/* Cleared by writing 1 to it */
|
|
|
|
|
|
|
|
adc_putreg(priv, STM32_ADC_ISR_OFFSET, (source & ADC_ISR_ALLINTS));
|
|
|
|
#else
|
|
|
|
/* Cleared by writing 0 to it */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_ISR_OFFSET, (source & ADC_ISR_ALLINTS), 0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_llops_inten
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_llops_inten(FAR struct stm32_adc_dev_s *dev, uint32_t source)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev;
|
|
|
|
|
|
|
|
/* Enable interrupts */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, 0, (source & ADC_IER_ALLINTS));
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_llops_intdis
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_llops_intdis(FAR struct stm32_adc_dev_s *dev, uint32_t source)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev;
|
|
|
|
|
|
|
|
/* Disable interrupts */
|
|
|
|
|
|
|
|
adc_modifyreg(priv, STM32_ADC_IER_OFFSET, (source & ADC_IER_ALLINTS), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_ackget
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static uint32_t adc_llops_intget(FAR struct stm32_adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev;
|
|
|
|
uint32_t regval;
|
|
|
|
uint32_t pending;
|
|
|
|
|
|
|
|
regval = adc_getreg(priv, STM32_ADC_ISR_OFFSET);
|
|
|
|
pending = regval & ADC_ISR_ALLINTS;
|
|
|
|
|
|
|
|
return pending;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_llops_regget
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static uint32_t adc_llops_regget(FAR struct stm32_adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev;
|
|
|
|
|
|
|
|
return adc_getreg(priv, STM32_ADC_DR_OFFSET) & ADC_DR_RDATA_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_llops_reg_startconv
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_llops_reg_startconv(FAR struct stm32_adc_dev_s *dev, bool enable)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev;
|
|
|
|
|
|
|
|
adc_reg_startconv(priv, enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_llops_regbufregister
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef ADC_HAVE_DMA
|
|
|
|
static int adc_llops_regbufregister(FAR struct stm32_adc_dev_s *dev,
|
|
|
|
uint16_t *buffer, uint8_t len)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev;
|
|
|
|
|
|
|
|
stm32_dmasetup(priv->dma,
|
|
|
|
priv->base + STM32_ADC_DR_OFFSET,
|
|
|
|
(uint32_t)buffer,
|
|
|
|
len,
|
|
|
|
ADC_DMA_CONTROL_WORD);
|
|
|
|
|
|
|
|
/* No DMA callback */
|
|
|
|
|
|
|
|
stm32_dmastart(priv->dma, NULL, dev, false);
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif /* ADC_HAVE_DMA */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_sampletime_write
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Writes previously defined values into ADC_SMPRx registers.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME
|
2019-05-09 15:02:53 +02:00
|
|
|
static void adc_sampletime_write(FAR struct stm32_adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
#error TODO adc_sampletime_write
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_change_sample_time
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Changes sample times for specified channels. This method
|
|
|
|
* doesn't make any register writing. So, it's only stores the information.
|
|
|
|
* Values provided by user will be written in registers only on the next
|
|
|
|
* ADC peripheral start, as it was told to do in manual. However, before
|
|
|
|
* very first start, user can call this method and override default values
|
|
|
|
* either for every channels or for only some predefined by user channel(s)
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* priv - pointer to the adc device structure
|
|
|
|
* pdi_high - true: The ADC is powered down when waiting for a start event
|
|
|
|
* false: The ADC is powered up when waiting for a start event
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void adc_sampletime_set(FAR struct stm32_adc_dev_s *dev,
|
|
|
|
FAR struct adc_sample_time_s *time_samples)
|
|
|
|
{
|
|
|
|
#error TODO adc_sampletime_write
|
|
|
|
}
|
2019-05-27 16:16:24 +02:00
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC_CHANGE_SAMPLETIME */
|
2019-05-09 15:02:53 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: adc_llops_dumpregs
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void adc_llops_dumpregs(FAR struct stm32_adc_dev_s *dev)
|
|
|
|
{
|
|
|
|
FAR struct stm32_dev_s *priv = (FAR struct stm32_dev_s *)dev;
|
|
|
|
|
|
|
|
adc_dumpregs(priv);
|
|
|
|
}
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC_LL_OPS */
|
2019-05-09 15:02:53 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: stm32_adc_initialize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize the ADC.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* intf - Could be {1} for ADC1
|
|
|
|
* chanlist - The list of channels
|
|
|
|
* channels - Number of channels
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Valid ADC device structure reference on success; a NULL on failure
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
struct adc_dev_s *stm32_adcinitialize(int intf, FAR const uint8_t *chanlist,
|
|
|
|
int channels)
|
|
|
|
{
|
|
|
|
FAR struct adc_dev_s *dev;
|
|
|
|
FAR struct stm32_dev_s *priv;
|
|
|
|
|
|
|
|
ainfo("intf: %d cchannels: %d\n", intf, channels);
|
|
|
|
|
|
|
|
switch (intf)
|
|
|
|
{
|
2019-05-27 16:16:24 +02:00
|
|
|
#ifdef CONFIG_STM32F0L0G0_ADC1
|
2019-05-09 15:02:53 +02:00
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
ainfo("ADC1 selected\n");
|
|
|
|
dev = &g_adcdev1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
aerr("ERROR: No ADC interface defined\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Configure the selected ADC */
|
|
|
|
|
|
|
|
priv = (FAR struct stm32_dev_s *)dev->ad_priv;
|
|
|
|
priv->cb = NULL;
|
|
|
|
|
|
|
|
DEBUGASSERT(channels <= ADC_MAX_SAMPLES);
|
|
|
|
|
|
|
|
priv->cr_channels = channels;
|
|
|
|
memcpy(priv->r_chanlist, chanlist, channels);
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM
|
|
|
|
if (pm_register(&priv->pm_callback) != OK)
|
|
|
|
{
|
|
|
|
aerr("Power management registration failed\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
2019-05-27 16:16:24 +02:00
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC1 */
|
|
|
|
#endif /* CONFIG_STM32F0L0G0_ADC */
|