2013-02-18 07:33:35 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
2013-02-18 07:33:35 +00:00
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-02-18 07:33:35 +00:00
|
|
|
*/
|
|
|
|
|
2013-05-06 04:44:47 +00:00
|
|
|
/**
|
|
|
|
* @file drivers/gadc/AT91SAM7/gadc_lld.c
|
|
|
|
* @brief GADC - Periodic ADC driver source file for the AT91SAM7 cpu.
|
|
|
|
*/
|
|
|
|
|
2013-02-18 07:33:35 +00:00
|
|
|
#include "gfx.h"
|
|
|
|
|
|
|
|
#if GFX_USE_GADC
|
|
|
|
|
2014-02-18 14:36:52 +00:00
|
|
|
#include "src/gadc/driver.h"
|
2013-02-18 07:33:35 +00:00
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
static GDataBuffer *pData;
|
|
|
|
static size_t bytesperconversion;
|
|
|
|
|
|
|
|
static void ISR_CompleteI(ADCDriver *adcp, adcsample_t *buffer, size_t n);
|
|
|
|
static void ISR_ErrorI(ADCDriver *adcp, adcerror_t err);
|
|
|
|
|
|
|
|
|
2013-02-18 07:33:35 +00:00
|
|
|
static ADCConversionGroup acg = {
|
|
|
|
FALSE, // circular
|
|
|
|
1, // num_channels
|
2014-03-20 13:41:27 +00:00
|
|
|
ISR_CompleteI, // end_cb
|
|
|
|
ISR_ErrorI, // error_cb
|
2013-02-18 07:33:35 +00:00
|
|
|
0, // channelselects
|
|
|
|
0, // trigger
|
|
|
|
0, // frequency
|
|
|
|
};
|
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
static void ISR_CompleteI(ADCDriver *adcp, adcsample_t *buffer, size_t n) {
|
|
|
|
(void) adcp;
|
|
|
|
(void) buffer;
|
|
|
|
|
|
|
|
if (pData) {
|
|
|
|
// A set of timer base conversions is complete
|
|
|
|
pData->len += n * bytesperconversion;
|
|
|
|
|
|
|
|
// Are we finished yet?
|
|
|
|
// In ChibiOS we (may) get a half-buffer complete. In this situation the conversions
|
|
|
|
// are really not complete and so we just wait for the next lot of data.
|
|
|
|
if (pData->len + bytesperconversion > pData->size)
|
|
|
|
gadcDataReadyI();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// A single non-timer conversion is complete
|
|
|
|
gadcDataReadyI();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ISR_ErrorI(ADCDriver *adcp, adcerror_t err) {
|
|
|
|
(void) adcp;
|
|
|
|
(void) err;
|
|
|
|
|
|
|
|
gadcDataFailI();
|
|
|
|
}
|
|
|
|
|
2013-02-18 07:33:35 +00:00
|
|
|
void gadc_lld_init(void) {
|
2013-12-21 03:21:59 +00:00
|
|
|
adcStart(&ADCD1, 0);
|
2013-02-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
void gadc_lld_start_timer(GadcLldTimerData *pgtd) {
|
|
|
|
int phys;
|
2013-02-18 07:33:35 +00:00
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
/* Calculate the bytes per conversion from physdev */
|
2013-02-18 07:33:35 +00:00
|
|
|
/* The AT91SAM7 has AD0..7 - physdev is a bitmap of those channels */
|
2014-03-20 13:41:27 +00:00
|
|
|
phys = pgtd->physdev;
|
|
|
|
for(bytesperconversion = 0; phys; phys >>= 1)
|
|
|
|
if (phys & 0x01)
|
|
|
|
bytesperconversion++;
|
|
|
|
bytesperconversion *= (gfxSampleFormatBits(GADC_SAMPLE_FORMAT)+7)/8;
|
2013-02-18 07:33:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The AT91SAM7 ADC driver supports triggering the ADC using a timer without having to implement
|
|
|
|
* an interrupt handler for the timer. The driver also initialises the timer correctly for us.
|
|
|
|
* Because we aren't trapping the interrupt ourselves we can't increment GADC_Timer_Missed if an
|
|
|
|
* interrupt is missed.
|
|
|
|
*/
|
2014-03-20 13:41:27 +00:00
|
|
|
acg.frequency = pgtd->frequency;
|
2013-02-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
void gadc_lld_stop_timer(GadcLldTimerData *pgtd) {
|
|
|
|
(void) pgtd;
|
2013-02-18 07:33:35 +00:00
|
|
|
if ((acg.trigger & ~ADC_TRIGGER_SOFTWARE) == ADC_TRIGGER_TIMER)
|
|
|
|
adcStop(&ADCD1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gadc_lld_adc_timerI(GadcLldTimerData *pgtd) {
|
|
|
|
/**
|
|
|
|
* We don't need to calculate num_channels because the AT91SAM7 ADC does this for us.
|
|
|
|
*/
|
|
|
|
acg.channelselects = pgtd->physdev;
|
|
|
|
acg.trigger = pgtd->now ? (ADC_TRIGGER_TIMER|ADC_TRIGGER_SOFTWARE) : ADC_TRIGGER_TIMER;
|
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
pData = pgtd->pdata;
|
|
|
|
adcStartConversionI(&ADCD1, &acg, (adcsample_t *)(pgtd->pdata+1), pData->size/bytesperconversion);
|
2013-02-18 07:33:35 +00:00
|
|
|
|
|
|
|
/* Next time assume the same (still running) timer */
|
|
|
|
acg.frequency = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gadc_lld_adc_nontimerI(GadcLldNonTimerData *pgntd) {
|
|
|
|
/**
|
|
|
|
* We don't need to calculate num_channels because the AT91SAM7 ADC does this for us.
|
|
|
|
*/
|
|
|
|
acg.channelselects = pgntd->physdev;
|
|
|
|
acg.trigger = ADC_TRIGGER_SOFTWARE;
|
2014-03-20 13:41:27 +00:00
|
|
|
|
|
|
|
pData = 0;
|
2013-02-18 07:33:35 +00:00
|
|
|
adcStartConversionI(&ADCD1, &acg, pgntd->buffer, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GADC */
|