2018-01-17 15:29:06 -04:00
|
|
|
/*
|
|
|
|
* This file is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This file 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-10-20 10:31:12 -03:00
|
|
|
*
|
2018-01-17 15:29:06 -04:00
|
|
|
* Code by Andrew Tridgell and Siddharth Bharat Purohit
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SoftSigReader.h"
|
2018-04-25 20:10:27 -03:00
|
|
|
#include "hwdef/common/stm32_util.h"
|
2018-01-17 15:29:06 -04:00
|
|
|
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_CHIBIOS
|
|
|
|
|
|
|
|
using namespace ChibiOS;
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2018-01-17 19:54:37 -04:00
|
|
|
#if HAL_USE_ICU == TRUE
|
|
|
|
|
2018-01-17 15:29:06 -04:00
|
|
|
bool SoftSigReader::attach_capture_timer(ICUDriver* icu_drv, icuchannel_t chan, uint8_t dma_stream, uint32_t dma_channel)
|
|
|
|
{
|
|
|
|
if (chan > ICU_CHANNEL_2) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-03 02:46:02 -03:00
|
|
|
signal = (uint32_t*)hal.util->malloc_type(sizeof(uint32_t)*SOFTSIG_BOUNCE_BUF_SIZE, AP_HAL::Util::MEM_DMA_SAFE);
|
2018-01-17 15:29:06 -04:00
|
|
|
if (signal == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-18 15:13:52 -04:00
|
|
|
_icu_drv = icu_drv;
|
2018-01-17 15:29:06 -04:00
|
|
|
//Setup Burst transfer of period and width measurement
|
2019-02-01 21:47:46 -04:00
|
|
|
osalDbgAssert(dma == nullptr, "double DMA allocation");
|
2018-02-05 17:14:02 -04:00
|
|
|
chSysLock();
|
2019-02-01 21:47:46 -04:00
|
|
|
dma = dmaStreamAllocI(dma_stream,
|
|
|
|
12, //IRQ Priority
|
|
|
|
(stm32_dmaisr_t)_irq_handler,
|
|
|
|
(void *)this);
|
|
|
|
osalDbgAssert(dma, "stream allocation failed");
|
2018-02-05 17:14:02 -04:00
|
|
|
chSysUnlock();
|
2019-02-13 16:10:55 -04:00
|
|
|
#if STM32_DMA_SUPPORTS_DMAMUX
|
|
|
|
dmaSetRequestSource(dma, dma_channel);
|
|
|
|
#endif
|
2018-01-17 15:29:06 -04:00
|
|
|
//setup address for full word transfer from Timer
|
|
|
|
dmaStreamSetPeripheral(dma, &icu_drv->tim->DMAR);
|
|
|
|
|
2018-10-05 21:32:54 -03:00
|
|
|
dmamode = STM32_DMA_CR_DMEIE | STM32_DMA_CR_TEIE;
|
2018-01-17 15:29:06 -04:00
|
|
|
dmamode |= STM32_DMA_CR_CHSEL(dma_channel);
|
|
|
|
dmamode |= STM32_DMA_CR_PL(0);
|
2018-10-05 21:32:54 -03:00
|
|
|
dmamode |= STM32_DMA_CR_DIR_P2M | STM32_DMA_CR_PSIZE_WORD |
|
|
|
|
STM32_DMA_CR_MSIZE_WORD | STM32_DMA_CR_MINC | STM32_DMA_CR_TCIE;
|
2018-01-17 15:29:06 -04:00
|
|
|
dmaStreamSetMemory0(dma, signal);
|
2018-11-03 02:46:02 -03:00
|
|
|
dmaStreamSetTransactionSize(dma, SOFTSIG_BOUNCE_BUF_SIZE);
|
2018-10-05 21:32:54 -03:00
|
|
|
dmaStreamSetMode(dma, dmamode);
|
|
|
|
|
2018-01-17 15:29:06 -04:00
|
|
|
icucfg.frequency = INPUT_CAPTURE_FREQUENCY;
|
|
|
|
icucfg.channel = chan;
|
|
|
|
icucfg.width_cb = NULL;
|
|
|
|
icucfg.period_cb = NULL;
|
|
|
|
icucfg.overflow_cb = NULL;
|
|
|
|
|
|
|
|
if (chan == ICU_CHANNEL_1) {
|
|
|
|
icucfg.dier = STM32_TIM_DIER_CC1DE;
|
2018-01-18 15:13:52 -04:00
|
|
|
icucfg.mode = ICU_INPUT_ACTIVE_HIGH;
|
|
|
|
need_swap = true;
|
2018-01-17 15:29:06 -04:00
|
|
|
} else {
|
2018-01-18 15:13:52 -04:00
|
|
|
icucfg.mode = ICU_INPUT_ACTIVE_LOW;
|
2018-01-17 15:29:06 -04:00
|
|
|
icucfg.dier = STM32_TIM_DIER_CC2DE;
|
|
|
|
}
|
2018-02-11 21:12:00 -04:00
|
|
|
#ifdef HAL_RCIN_IS_INVERTED
|
|
|
|
icucfg.mode = (icucfg.mode==ICU_INPUT_ACTIVE_LOW)?ICU_INPUT_ACTIVE_HIGH:ICU_INPUT_ACTIVE_LOW;
|
|
|
|
#endif
|
2018-01-18 15:13:52 -04:00
|
|
|
icuStart(_icu_drv, &icucfg);
|
2018-01-17 15:29:06 -04:00
|
|
|
//Extended Timer Setup to enable DMA transfer
|
|
|
|
//selected offset for TIM_CCR1 and for two words
|
2018-01-18 15:13:52 -04:00
|
|
|
_icu_drv->tim->DCR = STM32_TIM_DCR_DBA(0x0D) | STM32_TIM_DCR_DBL(1);
|
2018-01-17 15:29:06 -04:00
|
|
|
//Enable DMA
|
|
|
|
dmaStreamEnable(dma);
|
2018-04-25 20:10:27 -03:00
|
|
|
|
|
|
|
//sets input filtering to 4 timer clock
|
|
|
|
stm32_timer_set_input_filter(_icu_drv->tim, chan, 2);
|
|
|
|
|
2018-01-17 15:29:06 -04:00
|
|
|
//Start Timer
|
2018-01-18 15:13:52 -04:00
|
|
|
icuStartCapture(_icu_drv);
|
2018-01-17 15:29:06 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-28 22:21:54 -04:00
|
|
|
void SoftSigReader::disable(void)
|
|
|
|
{
|
|
|
|
icuStopCapture(_icu_drv);
|
|
|
|
dmaStreamDisable(dma);
|
|
|
|
}
|
|
|
|
|
2018-01-17 15:29:06 -04:00
|
|
|
void SoftSigReader::_irq_handler(void* self, uint32_t flags)
|
|
|
|
{
|
|
|
|
SoftSigReader* sig_reader = (SoftSigReader*)self;
|
2018-11-03 02:46:02 -03:00
|
|
|
// we need to restart the DMA as quickly as possible to prevent losing pulses, so we
|
|
|
|
// make a fixed length copy to a 2nd buffer. On the F100 this reduces the time with DMA
|
|
|
|
// disabled from 20us to under 1us
|
2019-08-02 07:57:01 -03:00
|
|
|
stm32_cacheBufferInvalidate(sig_reader->signal, SOFTSIG_BOUNCE_BUF_SIZE*4);
|
2018-11-03 02:46:02 -03:00
|
|
|
memcpy(sig_reader->signal2, sig_reader->signal, SOFTSIG_BOUNCE_BUF_SIZE*4);
|
2018-01-17 15:29:06 -04:00
|
|
|
//restart the DMA transfers
|
2018-10-05 21:32:54 -03:00
|
|
|
dmaStreamDisable(sig_reader->dma);
|
|
|
|
dmaStreamSetPeripheral(sig_reader->dma, &sig_reader->_icu_drv->tim->DMAR);
|
2018-01-17 15:29:06 -04:00
|
|
|
dmaStreamSetMemory0(sig_reader->dma, sig_reader->signal);
|
2018-11-03 02:46:02 -03:00
|
|
|
dmaStreamSetTransactionSize(sig_reader->dma, SOFTSIG_BOUNCE_BUF_SIZE);
|
2018-10-05 21:32:54 -03:00
|
|
|
dmaStreamSetMode(sig_reader->dma, sig_reader->dmamode);
|
2018-01-17 15:29:06 -04:00
|
|
|
dmaStreamEnable(sig_reader->dma);
|
2018-11-05 07:02:06 -04:00
|
|
|
sig_reader->sigbuf.push((const pulse_t *)sig_reader->signal2, SOFTSIG_BOUNCE_BUF_SIZE/2);
|
2018-01-17 15:29:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-17 19:54:37 -04:00
|
|
|
#endif // HAL_USE_ICU
|
2018-01-17 15:29:06 -04:00
|
|
|
|
2018-01-17 18:04:42 -04:00
|
|
|
#endif //CONFIG_HAL_BOARD == HAL_BOARD_CHIBIOS
|