/** @addtogroup adc_defines @author @htmlonly © @endhtmlonly 2015 Karl Palsson */ /* * This file is part of the libopencm3 project. * * Copyright (C) 2015 Karl Palsson * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . */ /**@{*/ /* THIS FILE SHOULD NOT BE INCLUDED DIRECTLY, BUT ONLY VIA ADC.H The order of header inclusion is important. adc.h includes the device specific memorymap.h header before including this header file.*/ /** @cond */ #ifdef LIBOPENCM3_ADC_H /** @endcond */ #ifndef LIBOPENCM3_ADC_COMMON_V2_H #define LIBOPENCM3_ADC_COMMON_V2_H /* ----- ADC registers -----------------------------------------------------*/ /* ADC interrupt and status register */ #define ADC_ISR(adc) MMIO32((adc) + 0x00) /* Interrupt Enable Register */ #define ADC_IER(adc) MMIO32((adc) + 0x04) /* Control Register */ #define ADC_CR(adc) MMIO32((adc) + 0x08) /* Configuration Register 1 */ #define ADC_CFGR1(adc) MMIO32((adc) + 0x0C) /* Configuration Register 2 */ #define ADC_CFGR2(adc) MMIO32((adc) + 0x10) /* Sample Time Register 1 */ #define ADC_SMPR1(adc) MMIO32((adc) + 0x14) /* Watchdog Threshold Register 1*/ #define ADC_TR1(adc) MMIO32((adc) + 0x20) /* Regular Data Register */ #define ADC_DR(adc) MMIO32((adc) + 0x40) /* CALFACT for all but f0 :(*/ /* ADC common (shared) registers */ #define ADC_CCR(adc) MMIO32((adc) + 0x300 + 0x8) /* --- Register values -------------------------------------------------------*/ /* ADC_ISR Values -----------------------------------------------------------*/ /* AWD1: Analog watchdog 1 flag */ #define ADC_ISR_AWD1 (1 << 7) #define ADC_ISR_OVR (1 << 4) #define ADC_ISR_EOS (1 << 3) // FIXME - move to single/multi here. #define ADC_ISR_EOSEQ ADC_ISR_EOS /* TODO - keep only one? */ #define ADC_ISR_EOC (1 << 2) #define ADC_ISR_EOSMP (1 << 1) #define ADC_ISR_ADRDY (1 << 0) /* ADC_IER Values -----------------------------------------------------------*/ /* AWD1IE: Analog watchdog 1 interrupt enable */ #define ADC_IER_AWD1IE (1 << 7) /* OVRIE: Overrun interrupt enable */ #define ADC_IER_OVRIE (1 << 4) /* EOSIE: End of regular sequence of conversions interrupt enable */ #define ADC_IER_EOSIE (1 << 3) #define ADC_IER_EOSEQIE ADC_IER_EOSIE /* TODO - keep only one? */ /* EOCIE: End of regular conversion interrupt enable */ #define ADC_IER_EOCIE (1 << 2) /* EOSMPIE: End of sampling flag interrupt enable for regular conversions */ #define ADC_IER_EOSMPIE (1 << 1) /* ADRDYIE : ADC ready interrupt enable */ #define ADC_IER_ADRDYIE (1 << 0) /* ADC_CR Values -----------------------------------------------------------*/ /* ADCAL: ADC calibration */ #define ADC_CR_ADCAL (1 << 31) /* ADSTP: ADC stop of regular conversion command */ #define ADC_CR_ADSTP (1 << 4) /* ADSTART: ADC start of regular conversion */ #define ADC_CR_ADSTART (1 << 2) /* ADDIS: ADC disable command */ #define ADC_CR_ADDIS (1 << 1) /* ADEN: ADC enable control */ #define ADC_CR_ADEN (1 << 0) /* ADC_CFGR1 Values -----------------------------------------------------------*/ /* AWD1CH[4:0]: Analog watchdog 1 channel selection */ #define ADC_CFGR1_AWD1CH_SHIFT 26 #define ADC_CFGR1_AWD1CH (0x1F << ADC_CFGR1_AWD1CH_SHIFT) #define ADC_CFGR1_AWD1CH_VAL(x) ((x) << ADC_CFGR1_AWD1CH_SHIFT) /* AWD1EN: Analog watchdog 1 enable on regular channels */ #define ADC_CFGR1_AWD1EN (1 << 23) /* AWD1SGL: Enable the watchdog 1 on a single channel or on all channels */ #define ADC_CFGR1_AWD1SGL (1 << 22) /* DISCEN: Discontinuous mode for regular channels */ #define ADC_CFGR1_DISCEN (1 << 16) /* AUTDLY: Delayed conversion mode */ #define ADC_CFGR1_AUTDLY (1 << 14) /* CONT: Single / continuous conversion mode for regular conversions */ #define ADC_CFGR1_CONT (1 << 13) /* OVRMOD: Overrun Mode */ #define ADC_CFGR1_OVRMOD (1 << 12) /* * EXTEN[1:0]: External trigger enable and polarity selection for regular * channels */ #define ADC_CFGR1_EXTEN_DISABLED (0x0 << 10) #define ADC_CFGR1_EXTEN_RISING_EDGE (0x1 << 10) #define ADC_CFGR1_EXTEN_FALLING_EDGE (0x2 << 10) #define ADC_CFGR1_EXTEN_BOTH_EDGES (0x3 << 10) #define ADC_CFGR1_EXTEN_MASK (0x3 << 10) /* ALIGN: Data alignment */ #define ADC_CFGR1_ALIGN (1 << 5) /* RES[1:0]: Data resolution */ #define ADC_CFGR1_RES_12_BIT (0x0 << 3) #define ADC_CFGR1_RES_10_BIT (0x1 << 3) #define ADC_CFGR1_RES_8_BIT (0x2 << 3) #define ADC_CFGR1_RES_6_BIT (0x3 << 3) #define ADC_CFGR1_RES_MASK (0x3 << 3) /* DMACFG: Direct memory access configuration */ #define ADC_CFGR1_DMACFG (1 << 1) /* DMAEN: Direct memory access enable */ #define ADC_CFGR1_DMAEN (1 << 0) /* ADC_TR1 Values ------------------------------------------------------------*/ #define ADC_TR1_LT_SHIFT 0 #define ADC_TR1_LT (0xFFF << ADC_TR1_LT_SHIFT) #define ADC_TR1_LT_VAL(x) ((x) << ADC_TR1_LT_SHIFT) #define ADC_TR1_HT_SHIFT 16 #define ADC_TR1_HT (0xFFF << ADC_TR1_HT_SHIFT) #define ADC_TR1_HT_VAL(x) ((x) << ADC_TR1_HT_SHIFT) /* ADC_CCR Values -----------------------------------------------------------*/ #define ADC_CCR_VBATEN (1 << 24) #define ADC_CCR_TSEN (1 << 23) #define ADC_CCR_VREFEN (1 << 22) /* --- Function prototypes ------------------------------------------------- */ BEGIN_DECLS void adc_power_on_async(uint32_t adc); void adc_power_on(uint32_t adc); bool adc_is_power_on(uint32_t adc); void adc_power_off_async(uint32_t adc); void adc_power_off(uint32_t adc); bool adc_is_power_off(uint32_t adc); void adc_calibrate_async(uint32_t adc); bool adc_is_calibrating(uint32_t adc); void adc_calibrate(uint32_t adc); void adc_set_continuous_conversion_mode(uint32_t adc); void adc_set_single_conversion_mode(uint32_t adc); void adc_set_regular_sequence(uint32_t adc, uint8_t length, uint8_t channel[]); void adc_set_sample_time_on_all_channels(uint32_t adc, uint8_t time); void adc_enable_temperature_sensor(void); void adc_disable_temperature_sensor(void); void adc_enable_vrefint(void); void adc_disable_vrefint(void); void adc_set_resolution(uint32_t adc, uint16_t resolution); void adc_set_left_aligned(uint32_t adc); void adc_set_right_aligned(uint32_t adc); void adc_enable_dma(uint32_t adc); void adc_disable_dma(uint32_t adc); bool adc_eoc(uint32_t adc); bool adc_eos(uint32_t adc); void adc_enable_eoc_interrupt(uint32_t adc); void adc_disable_eoc_interrupt(uint32_t adc); void adc_enable_overrun_interrupt(uint32_t adc); void adc_disable_overrun_interrupt(uint32_t adc); bool adc_get_overrun_flag(uint32_t adc); void adc_clear_overrun_flag(uint32_t adc); uint32_t adc_read_regular(uint32_t adc); void adc_start_conversion_regular(uint32_t adc); void adc_enable_dma_circular_mode(uint32_t adc); void adc_disable_dma_circular_mode(uint32_t adc); END_DECLS #endif /** @cond */ #endif /** @endcond */ /**@}*/