From d2e3d96b8d5305c9e74a762b22abe403dd726ec2 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 7 Mar 2013 13:33:42 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5375 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.c | 6 +-- os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.h | 12 +++-- os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h | 80 +++++++++++++++++++++++++++-- 3 files changed, 86 insertions(+), 12 deletions(-) (limited to 'os/hal') diff --git a/os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.c b/os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.c index 309ba008f..78db56c3b 100644 --- a/os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.c +++ b/os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.c @@ -69,7 +69,8 @@ CH_IRQ_HANDLER(vector10) { /* If the channel is not associated then the error is simply discarded else the error callback is invoked.*/ - if (channels[channel] != NULL) + if ((channels[channel] != NULL) && + (channels[channel]->dma_error_func != NULL)) channels[channel]->dma_error_func(channel, channels[channel]->dma_param, esr); @@ -695,8 +696,7 @@ edma_channel_t edmaChannelAllocate(const edma_channel_config_t *ccfg) { edma_channel_t channel; chDbgCheck((ccfg != NULL) && ((ccfg->dma_prio & 15) < 16) && - (ccfg->dma_irq_prio < 16) && - (ccfg->dma_func != NULL) && (ccfg->dma_error_func != NULL), + (ccfg->dma_irq_prio < 16), "edmaChannelAllocate"); #if SPC5_EDMA_HAS_MUX diff --git a/os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.h b/os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.h index c3e695544..5e78201da 100644 --- a/os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.h +++ b/os/hal/platforms/SPC5xx/EDMA_v1/spc5_edma.h @@ -126,8 +126,10 @@ typedef struct { for this channel. */ uint8_t dma_irq_prio; /**< @brief IRQ priority level for this channel. */ - edma_callback_t dma_func; /**< @brief Channel callback. */ - edma_error_callback_t dma_error_func; /**< @brief Channel error callback. */ + edma_callback_t dma_func; /**< @brief Channel callback, + can be NULL if not required. */ + edma_error_callback_t dma_error_func; /**< @brief Channel error callback, + can be NULL if not required. */ void *dma_param; /**< @brief Channel callback param. */ } edma_channel_config_t; @@ -229,7 +231,7 @@ typedef struct { * @brief Sets the source address adjustment into a TCD. * * @param[in] tcdp pointer to an @p edma_tcd_t structure - * @param[in] iter the adjustment value + * @param[in] slast the adjustment value * * @api */ @@ -240,7 +242,7 @@ typedef struct { * @brief Sets the destination address adjustment into a TCD. * * @param[in] tcdp pointer to an @p edma_tcd_t structure - * @param[in] iter the adjustment value + * @param[in] dlast the adjustment value * * @api */ @@ -251,7 +253,7 @@ typedef struct { * @brief Sets the channel mode bits into a TCD. * * @param[in] tcdp pointer to an @p edma_tcd_t structure - * @param[in] iter the adjustment value + * @param[in] mode the mode value * * @api */ diff --git a/os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h b/os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h index 49b74496e..98bf63c12 100644 --- a/os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h +++ b/os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h @@ -29,6 +29,77 @@ /* Driver constants. */ /*===========================================================================*/ +/** + * @name Analog channel identifiers + * @{ + */ +#define ADC_CHN_AN0 0U +#define ADC_CHN_AN1 1U +#define ADC_CHN_AN2 2U +#define ADC_CHN_AN3 3U +#define ADC_CHN_AN4 4U +#define ADC_CHN_AN5 5U +#define ADC_CHN_AN6 6U +#define ADC_CHN_AN7 7U +#define ADC_CHN_AN8 8U +#define ADC_CHN_AN9 9U +#define ADC_CHN_AN10 10U +#define ADC_CHN_AN11 11U +#define ADC_CHN_AN12 12U +#define ADC_CHN_AN13 13U +#define ADC_CHN_AN14 14U +#define ADC_CHN_AN15 15U +#define ADC_CHN_AN16 16U +#define ADC_CHN_AN17 17U +#define ADC_CHN_AN18 18U +#define ADC_CHN_AN19 19U +#define ADC_CHN_AN20 20U +#define ADC_CHN_AN21 21U +#define ADC_CHN_AN22 22U +#define ADC_CHN_AN23 23U +#define ADC_CHN_AN24 24U +#define ADC_CHN_AN25 25U +#define ADC_CHN_AN26 26U +#define ADC_CHN_AN27 27U +#define ADC_CHN_AN28 28U +#define ADC_CHN_AN29 29U +#define ADC_CHN_AN30 30U +#define ADC_CHN_AN31 31U +#define ADC_CHN_AN32 32U +#define ADC_CHN_AN33 33U +#define ADC_CHN_AN34 34U +#define ADC_CHN_AN35 35U +#define ADC_CHN_AN36 36U +#define ADC_CHN_AN37 37U +#define ADC_CHN_AN38 38U +#define ADC_CHN_AN39 39U +#define ADC_CHN_VRH 40U +#define ADC_CHN_VRL 41U +#define ADC_CHN_VREF50 42U +#define ADC_CHN_VREF75 43U +#define ADC_CHN_VREF25 44U +#define ADC_CHN_BANDGAP 45U +#define ADC_CHN_DAN0 96U +#define ADC_CHN_DAN1 97U +#define ADC_CHN_DAN2 98U +#define ADC_CHN_DAN3 99U +#define ADC_CHN_TEMP_SENSOR 128U +#define ADC_CHN_SPARE 129U + +#define VRH 40UL +#define VRL 41UL +#define VRef_50 42UL +#define VRef_75 43UL +#define VRef_25 44UL +#define Bandgap 45UL +#define DAN_0 96UL +#define DAN_1 97UL +#define DAN_2 98UL +#define DAN_3 99UL +#define Temperature_Sensor 128UL +#define Spare 129UL +/** @} */ + /** * @name Internal registers indexes * @{ @@ -131,6 +202,7 @@ * @name EQADC conversion/configuration commands * @{ */ +#define EQADC_CONV_CONFIG_STD (0U << 0) /**< @brief Alt.config.1. */ #define EQADC_CONV_CONFIG_SEL1 (8U << 0) /**< @brief Alt.config.1. */ #define EQADC_CONV_CONFIG_SEL2 (9U << 0) /**< @brief Alt.config.2. */ #define EQADC_CONV_CONFIG_SEL3 (10U << 0) /**< @brief Alt.config.3. */ @@ -477,6 +549,10 @@ typedef struct { */ adcerrorcallback_t error_cb; /* End of the mandatory fields.*/ + /** + * @brief Initialization value for CFCR register. + */ + uint16_t cfcr; /** * @brief Number of command iterations stored in @p commands. * @note The total number of array elements must be @p num_channels * @@ -486,10 +562,6 @@ typedef struct { * @p adcStartConversion(). */ uint32_t num_iterations; - /** - * @brief Initialization value for CFCR register. - */ - uint16_t cfcr; /** * @brief Pointer to an array of low level EQADC commands to be pushed * into the CFIFO during a conversion. -- cgit v1.2.3