2009-12-19 11:10:08 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
2013-02-02 10:58:09 +00:00
|
|
|
2011,2012,2013 Giovanni Di Sirio.
|
2009-12-19 11:10:08 +00:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @file LPC214x/spi_lld.c
|
|
|
|
* @brief LPC214x low level SPI driver code.
|
|
|
|
*
|
2010-10-26 17:39:29 +00:00
|
|
|
* @addtogroup SPI
|
2009-12-19 11:10:08 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#if HAL_USE_SPI || defined(__DOXYGEN__)
|
2009-12-19 11:10:08 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
2009-12-29 12:05:35 +00:00
|
|
|
/* Driver exported variables. */
|
2009-12-19 11:10:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-10-17 09:13:43 +00:00
|
|
|
#if LPC214x_SPI_USE_SSP || defined(__DOXYGEN__)
|
2009-12-19 11:10:08 +00:00
|
|
|
/** @brief SPI1 driver identifier.*/
|
|
|
|
SPIDriver SPID1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2013-02-28 16:23:19 +00:00
|
|
|
/* Driver local variables and types. */
|
2009-12-19 11:10:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2009-12-29 12:05:35 +00:00
|
|
|
/* Driver local functions. */
|
2009-12-19 11:10:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-10-17 09:13:43 +00:00
|
|
|
* @brief Preloads the transmit FIFO.
|
2009-12-19 11:10:08 +00:00
|
|
|
*
|
2010-10-17 09:13:43 +00:00
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
2010-10-17 09:13:43 +00:00
|
|
|
static void ssp_fifo_preload(SPIDriver *spip) {
|
2011-03-08 10:09:57 +00:00
|
|
|
SSP *ssp = spip->ssp;
|
|
|
|
uint32_t n = spip->txcnt > LPC214x_SSP_FIFO_DEPTH ?
|
|
|
|
LPC214x_SSP_FIFO_DEPTH : spip->txcnt;
|
2010-10-17 09:13:43 +00:00
|
|
|
|
|
|
|
while(((ssp->SSP_SR & SR_TNF) != 0) && (n > 0)) {
|
2011-03-08 10:09:57 +00:00
|
|
|
if (spip->txptr != NULL) {
|
2010-10-17 09:13:43 +00:00
|
|
|
if ((ssp->SSP_CR0 & CR0_DSSMASK) > CR0_DSS8BIT)
|
2011-03-08 10:09:57 +00:00
|
|
|
ssp->SSP_DR = *(uint16_t *)spip->txptr++;
|
2010-10-17 09:13:43 +00:00
|
|
|
else
|
2011-03-08 10:09:57 +00:00
|
|
|
ssp->SSP_DR = *(uint8_t *)spip->txptr++;
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
2010-10-17 09:13:43 +00:00
|
|
|
else
|
|
|
|
ssp->SSP_DR = 0xFFFFFFFF;
|
|
|
|
n--;
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->txcnt--;
|
2010-10-17 09:13:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
__attribute__((noinline))
|
|
|
|
#endif
|
|
|
|
/**
|
|
|
|
* @brief Common IRQ handler.
|
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
|
|
|
*/
|
|
|
|
static void serve_interrupt(SPIDriver *spip) {
|
2011-03-08 10:09:57 +00:00
|
|
|
SSP *ssp = spip->ssp;
|
2010-10-17 09:13:43 +00:00
|
|
|
|
|
|
|
if ((ssp->SSP_MIS & MIS_ROR) != 0) {
|
|
|
|
/* The overflow condition should never happen because priority is given
|
|
|
|
to receive but a hook macro is provided anyway...*/
|
|
|
|
LPC214x_SPI_SSP_ERROR_HOOK();
|
|
|
|
}
|
|
|
|
ssp->SSP_ICR = ICR_RT | ICR_ROR;
|
|
|
|
while ((ssp->SSP_SR & SR_RNE) != 0) {
|
2011-03-08 10:09:57 +00:00
|
|
|
if (spip->rxptr != NULL) {
|
2010-10-17 09:13:43 +00:00
|
|
|
if ((ssp->SSP_CR0 & CR0_DSSMASK) > CR0_DSS8BIT)
|
2011-03-08 10:09:57 +00:00
|
|
|
*(uint16_t *)spip->rxptr++ = ssp->SSP_DR;
|
2009-12-19 11:10:08 +00:00
|
|
|
else
|
2011-03-08 10:09:57 +00:00
|
|
|
*(uint8_t *)spip->rxptr++ = ssp->SSP_DR;
|
2010-10-17 09:13:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
(void)ssp->SSP_DR;
|
2011-03-08 10:09:57 +00:00
|
|
|
if (--spip->rxcnt == 0) {
|
|
|
|
chDbgAssert(spip->txcnt == 0,
|
2010-10-30 11:18:28 +00:00
|
|
|
"spi_serve_interrupt(), #1", "counter out of synch");
|
2010-10-17 09:13:43 +00:00
|
|
|
/* Stops the IRQ sources.*/
|
|
|
|
ssp->SSP_IMSC = 0;
|
|
|
|
/* Portable SPI ISR code defined in the high level driver, note, it is
|
|
|
|
a macro.*/
|
|
|
|
_spi_isr_code(spip);
|
|
|
|
return;
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
}
|
2010-10-17 09:13:43 +00:00
|
|
|
ssp_fifo_preload(spip);
|
2011-03-08 10:09:57 +00:00
|
|
|
if (spip->txcnt == 0)
|
2010-10-17 09:13:43 +00:00
|
|
|
ssp->SSP_IMSC = IMSC_ROR | IMSC_RT | IMSC_RX;
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2009-12-29 12:05:35 +00:00
|
|
|
/* Driver interrupt handlers. */
|
2009-12-19 11:10:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-10-17 09:13:43 +00:00
|
|
|
#if LPC214x_SPI_USE_SSP || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief SPI1 interrupt handler.
|
|
|
|
*
|
|
|
|
* @isr
|
|
|
|
*/
|
|
|
|
CH_IRQ_HANDLER(SPI1IrqHandler) {
|
|
|
|
|
|
|
|
CH_IRQ_PROLOGUE();
|
|
|
|
|
|
|
|
serve_interrupt(&SPID1);
|
|
|
|
VICVectAddr = 0;
|
|
|
|
|
|
|
|
CH_IRQ_EPILOGUE();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-12-19 11:10:08 +00:00
|
|
|
/*===========================================================================*/
|
2009-12-29 12:05:35 +00:00
|
|
|
/* Driver exported functions. */
|
2009-12-19 11:10:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @brief Low level SPI driver initialization.
|
|
|
|
*
|
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_init(void) {
|
|
|
|
|
2010-10-17 09:13:43 +00:00
|
|
|
#if LPC214x_SPI_USE_SSP
|
2009-12-19 11:10:08 +00:00
|
|
|
spiObjectInit(&SPID1);
|
2011-03-08 10:09:57 +00:00
|
|
|
SPID1.ssp = SSPBase;
|
2010-10-17 09:13:43 +00:00
|
|
|
SetVICVector(SPI1IrqHandler, LPC214x_SPI_SSP_IRQ_PRIORITY, SOURCE_SPI1);
|
2009-12-19 11:10:08 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @brief Configures and activates the SPI peripheral.
|
2009-12-19 11:10:08 +00:00
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_start(SPIDriver *spip) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
if (spip->state == SPI_STOP) {
|
2009-12-19 11:10:08 +00:00
|
|
|
/* Clock activation.*/
|
2010-10-17 09:13:43 +00:00
|
|
|
#if LPC214x_SPI_USE_SSP
|
|
|
|
if (&SPID1 == spip) {
|
|
|
|
PCONP = (PCONP & PCALL) | PCSPI1;
|
|
|
|
VICIntEnable = INTMASK(SOURCE_SPI1);
|
|
|
|
}
|
|
|
|
#endif
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
/* Configuration.*/
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->ssp->SSP_CR1 = 0;
|
2009-12-20 11:38:02 +00:00
|
|
|
/* Emptying the receive FIFO, it happens to not be empty while debugging.*/
|
2011-03-08 10:09:57 +00:00
|
|
|
while (spip->ssp->SSP_SR & SR_RNE)
|
|
|
|
(void) spip->ssp->SSP_DR;
|
|
|
|
spip->ssp->SSP_ICR = ICR_RT | ICR_ROR;
|
|
|
|
spip->ssp->SSP_CR0 = spip->config->cr0;
|
|
|
|
spip->ssp->SSP_CPSR = spip->config->cpsr;
|
|
|
|
spip->ssp->SSP_CR1 = CR1_SSE;
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @brief Deactivates the SPI peripheral.
|
2009-12-19 11:10:08 +00:00
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_stop(SPIDriver *spip) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
if (spip->state != SPI_STOP) {
|
|
|
|
spip->ssp->SSP_CR1 = 0;
|
|
|
|
spip->ssp->SSP_CR0 = 0;
|
|
|
|
spip->ssp->SSP_CPSR = 0;
|
2010-10-17 09:13:43 +00:00
|
|
|
#if LPC214x_SPI_USE_SSP
|
|
|
|
if (&SPID1 == spip) {
|
|
|
|
PCONP = (PCONP & PCALL) & ~PCSPI1;
|
|
|
|
VICIntEnClear = INTMASK(SOURCE_SPI1);
|
|
|
|
}
|
|
|
|
#endif
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @brief Asserts the slave select signal and prepares for transfers.
|
2009-12-19 11:10:08 +00:00
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_select(SPIDriver *spip) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
palClearPad(spip->config->ssport, spip->config->sspad);
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @brief Deasserts the slave select signal.
|
2009-12-19 11:10:08 +00:00
|
|
|
* @details The previously selected peripheral is unselected.
|
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_unselect(SPIDriver *spip) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
palSetPad(spip->config->ssport, spip->config->sspad);
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @brief Ignores data on the SPI bus.
|
2009-12-19 11:10:08 +00:00
|
|
|
* @details This function transmits a series of idle words on the SPI bus and
|
|
|
|
* ignores the received data. This function can be invoked even
|
|
|
|
* when a slave select signal has not been yet asserted.
|
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
|
|
|
* @param[in] n number of words to be ignored
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_ignore(SPIDriver *spip, size_t n) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->rxptr = NULL;
|
|
|
|
spip->txptr = NULL;
|
|
|
|
spip->rxcnt = spip->txcnt = n;
|
2010-10-17 09:13:43 +00:00
|
|
|
ssp_fifo_preload(spip);
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->ssp->SSP_IMSC = IMSC_ROR | IMSC_RT | IMSC_TX | IMSC_RX;
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @brief Exchanges data on the SPI bus.
|
2010-10-17 09:13:43 +00:00
|
|
|
* @details This asynchronous function starts a simultaneous transmit/receive
|
|
|
|
* operation.
|
|
|
|
* @post At the end of the operation the configured callback is invoked.
|
|
|
|
* @note The buffers are organized as uint8_t arrays for data sizes below or
|
|
|
|
* equal to 8 bits else it is organized as uint16_t arrays.
|
2009-12-19 11:10:08 +00:00
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
|
|
|
* @param[in] n number of words to be exchanged
|
|
|
|
* @param[in] txbuf the pointer to the transmit buffer
|
|
|
|
* @param[out] rxbuf the pointer to the receive buffer
|
|
|
|
*
|
2010-10-04 17:16:18 +00:00
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_exchange(SPIDriver *spip, size_t n,
|
|
|
|
const void *txbuf, void *rxbuf) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->rxptr = rxbuf;
|
|
|
|
spip->txptr = txbuf;
|
|
|
|
spip->rxcnt = spip->txcnt = n;
|
2010-10-17 09:13:43 +00:00
|
|
|
ssp_fifo_preload(spip);
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->ssp->SSP_IMSC = IMSC_ROR | IMSC_RT | IMSC_TX | IMSC_RX;
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-17 09:13:43 +00:00
|
|
|
* @brief Sends data over the SPI bus.
|
|
|
|
* @details This asynchronous function starts a transmit operation.
|
|
|
|
* @post At the end of the operation the configured callback is invoked.
|
|
|
|
* @note The buffers are organized as uint8_t arrays for data sizes below or
|
|
|
|
* equal to 8 bits else it is organized as uint16_t arrays.
|
2009-12-19 11:10:08 +00:00
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
|
|
|
* @param[in] n number of words to send
|
|
|
|
* @param[in] txbuf the pointer to the transmit buffer
|
|
|
|
*
|
2010-10-04 17:16:18 +00:00
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_send(SPIDriver *spip, size_t n, const void *txbuf) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->rxptr = NULL;
|
|
|
|
spip->txptr = txbuf;
|
|
|
|
spip->rxcnt = spip->txcnt = n;
|
2010-10-17 09:13:43 +00:00
|
|
|
ssp_fifo_preload(spip);
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->ssp->SSP_IMSC = IMSC_ROR | IMSC_RT | IMSC_TX | IMSC_RX;
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-04 17:16:18 +00:00
|
|
|
* @brief Receives data from the SPI bus.
|
2010-10-17 09:13:43 +00:00
|
|
|
* @details This asynchronous function starts a receive operation.
|
|
|
|
* @post At the end of the operation the configured callback is invoked.
|
|
|
|
* @note The buffers are organized as uint8_t arrays for data sizes below or
|
|
|
|
* equal to 8 bits else it is organized as uint16_t arrays.
|
2009-12-19 11:10:08 +00:00
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
|
|
|
* @param[in] n number of words to receive
|
|
|
|
* @param[out] rxbuf the pointer to the receive buffer
|
|
|
|
*
|
2010-10-04 17:16:18 +00:00
|
|
|
* @notapi
|
2009-12-19 11:10:08 +00:00
|
|
|
*/
|
|
|
|
void spi_lld_receive(SPIDriver *spip, size_t n, void *rxbuf) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->rxptr = rxbuf;
|
|
|
|
spip->txptr = NULL;
|
|
|
|
spip->rxcnt = spip->txcnt = n;
|
2010-10-17 09:13:43 +00:00
|
|
|
ssp_fifo_preload(spip);
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->ssp->SSP_IMSC = IMSC_ROR | IMSC_RT | IMSC_TX | IMSC_RX;
|
2009-12-19 11:10:08 +00:00
|
|
|
}
|
|
|
|
|
2010-10-30 11:18:28 +00:00
|
|
|
/**
|
|
|
|
* @brief Exchanges one frame using a polled wait.
|
|
|
|
* @details This synchronous function exchanges one frame using a polled
|
|
|
|
* synchronization method. This function is useful when exchanging
|
|
|
|
* small amount of data on high speed channels, usually in this
|
|
|
|
* situation is much more efficient just wait for completion using
|
|
|
|
* polling than suspending the thread waiting for an interrupt.
|
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object
|
|
|
|
* @param[in] frame the data frame to send over the SPI bus
|
|
|
|
* @return The received data frame from the SPI bus.
|
|
|
|
*/
|
|
|
|
uint16_t spi_lld_polled_exchange(SPIDriver *spip, uint16_t frame) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
spip->ssp->SSP_DR = (uint32_t)frame;
|
|
|
|
while ((spip->ssp->SSP_SR & SR_RNE) == 0)
|
2010-10-30 11:18:28 +00:00
|
|
|
;
|
2011-03-08 10:09:57 +00:00
|
|
|
return (uint16_t)spip->ssp->SSP_DR;
|
2010-10-30 11:18:28 +00:00
|
|
|
}
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#endif /* HAL_USE_SPI */
|
2009-12-19 11:10:08 +00:00
|
|
|
|
|
|
|
/** @} */
|