2013-02-28 16:23:19 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011,2012,2013 Giovanni Di Sirio.
|
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT 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.
|
|
|
|
|
|
|
|
ChibiOS/RT 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file SPC5xx/edma.c
|
|
|
|
* @brief EDMA helper driver code.
|
|
|
|
*
|
|
|
|
* @addtogroup SPC5xx_EDMA
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local definitions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local variables and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2013-03-04 08:57:20 +00:00
|
|
|
/**
|
|
|
|
* @brief Configurations for the various EDMA channels.
|
|
|
|
*/
|
|
|
|
static const edma_channel_config_t *channels[SPC5_EDMA_NCHANNELS];
|
2013-03-04 08:17:33 +00:00
|
|
|
|
2013-02-28 16:23:19 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver interrupt handlers. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief EDMA driver initialization.
|
|
|
|
*
|
|
|
|
* @special
|
|
|
|
*/
|
|
|
|
void edmaInit(void) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-03-01 14:37:07 +00:00
|
|
|
/**
|
|
|
|
* @brief EDMA channel allocation.
|
|
|
|
*
|
|
|
|
* @param[in] ccfg channel configuration
|
|
|
|
* @return The channel TCD pointer.
|
2013-03-04 08:17:33 +00:00
|
|
|
* @retval EDMA_ERROR if the channel cannot be allocated.
|
2013-03-01 14:37:07 +00:00
|
|
|
*
|
|
|
|
* @special
|
|
|
|
*/
|
2013-03-04 08:57:20 +00:00
|
|
|
edma_channel_t edmaChannelAllocate(const edma_channel_config_t *ccfg) {
|
|
|
|
edma_channel_t channel;
|
|
|
|
|
|
|
|
chDbgCheck((ccfg != NULL) && (ccfg->dma_func != NULL),
|
|
|
|
"edmaChannelAllocate");
|
|
|
|
|
|
|
|
#if SPC5_EDMA_HAS_MUX
|
|
|
|
/* TODO: MUX handling.*/
|
|
|
|
channel = EDMA_ERROR;
|
|
|
|
return channel;
|
|
|
|
#else /* !SPC5_EDMA_HAS_MUX */
|
|
|
|
channel = (edma_channel_t)ccfg->dma_periph;
|
|
|
|
if (channels[channel] != NULL)
|
|
|
|
return EDMA_ERROR; /* Already taken.*/
|
|
|
|
channels[channel] = ccfg;
|
|
|
|
return channel;
|
|
|
|
#endif /* !SPC5_EDMA_HAS_MUX */
|
2013-03-01 14:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief EDMA channel allocation.
|
|
|
|
*
|
2013-03-04 08:17:33 +00:00
|
|
|
* @param[in] channel the channel number
|
2013-03-01 14:37:07 +00:00
|
|
|
*
|
|
|
|
* @special
|
|
|
|
*/
|
2013-03-04 08:57:20 +00:00
|
|
|
void edmaChannelRelease(edma_channel_t channel) {
|
|
|
|
|
|
|
|
chDbgCheck((channel < 0) && (channel >= SPC5_EDMA_NCHANNELS),
|
|
|
|
"edmaChannelAllocate");
|
|
|
|
chDbgAssert(channels[channel] != NULL,
|
|
|
|
"edmaChannelRelease(), #1",
|
|
|
|
"not allocated");
|
2013-03-01 14:37:07 +00:00
|
|
|
|
2013-03-04 08:57:20 +00:00
|
|
|
channels[channel] = NULL;
|
2013-03-01 14:37:07 +00:00
|
|
|
}
|
|
|
|
|
2013-02-28 16:23:19 +00:00
|
|
|
/** @} */
|