2009-11-29 08:50:13 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2009-11-29 08:50:13 +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-04-21 17:42:35 +00:00
|
|
|
* @file LPC214x/serial_lld.c
|
|
|
|
* @brief LPC214x low level serial driver code.
|
|
|
|
*
|
2010-10-26 17:39:29 +00:00
|
|
|
* @addtogroup SERIAL
|
2009-11-29 08:50:13 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2009-12-08 08:28:49 +00:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#if HAL_USE_SERIAL || defined(__DOXYGEN__)
|
2009-12-08 10:36:29 +00:00
|
|
|
|
2009-12-29 12:05:35 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
#if USE_LPC214x_UART0 || defined(__DOXYGEN__)
|
|
|
|
/** @brief UART0 serial driver identifier.*/
|
|
|
|
SerialDriver SD1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if USE_LPC214x_UART1 || defined(__DOXYGEN__)
|
|
|
|
/** @brief UART1 serial driver identifier.*/
|
|
|
|
SerialDriver SD2;
|
|
|
|
#endif
|
|
|
|
|
2009-12-29 12:05:35 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-04-21 17:42:35 +00:00
|
|
|
/** @brief Driver default configuration.*/
|
2010-01-01 15:29:17 +00:00
|
|
|
static const SerialConfig default_config = {
|
2010-01-02 13:02:43 +00:00
|
|
|
SERIAL_DEFAULT_BITRATE,
|
2009-11-29 08:50:13 +00:00
|
|
|
LCR_WL8 | LCR_STOP1 | LCR_NOPARITY,
|
|
|
|
FCR_TRIGGER0
|
|
|
|
};
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2009-12-29 12:05:35 +00:00
|
|
|
/* Driver local functions. */
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief UART initialization.
|
2010-01-01 15:29:17 +00:00
|
|
|
*
|
2010-04-21 17:42:35 +00:00
|
|
|
* @param[in] sdp communication channel associated to the UART
|
|
|
|
* @param[in] config the architecture-dependent serial driver configuration
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-04-21 17:42:35 +00:00
|
|
|
static void uart_init(SerialDriver *sdp, const SerialConfig *config) {
|
2010-01-22 14:51:54 +00:00
|
|
|
UART *u = sdp->uart;
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2010-04-21 17:42:35 +00:00
|
|
|
uint32_t div = PCLK / (config->sc_speed << 4);
|
|
|
|
u->UART_LCR = config->sc_lcr | LCR_DLAB;
|
2009-11-29 08:50:13 +00:00
|
|
|
u->UART_DLL = div;
|
|
|
|
u->UART_DLM = div >> 8;
|
2010-04-21 17:42:35 +00:00
|
|
|
u->UART_LCR = config->sc_lcr;
|
|
|
|
u->UART_FCR = FCR_ENABLE | FCR_RXRESET | FCR_TXRESET | config->sc_fcr;
|
2009-11-29 08:50:13 +00:00
|
|
|
u->UART_ACR = 0;
|
|
|
|
u->UART_FDR = 0x10;
|
|
|
|
u->UART_TER = TER_ENABLE;
|
|
|
|
u->UART_IER = IER_RBR | IER_STATUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief UART de-initialization.
|
2010-01-01 15:29:17 +00:00
|
|
|
*
|
2010-04-21 17:42:35 +00:00
|
|
|
* @param[in] u pointer to an UART I/O block
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
static void uart_deinit(UART *u) {
|
|
|
|
|
2010-02-18 20:02:09 +00:00
|
|
|
u->UART_LCR = LCR_DLAB;
|
2009-11-29 08:50:13 +00:00
|
|
|
u->UART_DLL = 1;
|
|
|
|
u->UART_DLM = 0;
|
2010-02-18 20:02:09 +00:00
|
|
|
u->UART_LCR = 0;
|
2009-11-29 08:50:13 +00:00
|
|
|
u->UART_FDR = 0x10;
|
|
|
|
u->UART_IER = 0;
|
|
|
|
u->UART_FCR = FCR_RXRESET | FCR_TXRESET;
|
|
|
|
u->UART_ACR = 0;
|
|
|
|
u->UART_TER = TER_ENABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief Error handling routine.
|
2010-01-01 15:29:17 +00:00
|
|
|
*
|
2010-04-21 17:42:35 +00:00
|
|
|
* @param[in] sdp communication channel associated to the UART
|
|
|
|
* @param[in] err UART LSR register value
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-01-01 15:29:17 +00:00
|
|
|
static void set_error(SerialDriver *sdp, IOREG32 err) {
|
2011-01-09 10:10:39 +00:00
|
|
|
ioflags_t sts = 0;
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
if (err & LSR_OVERRUN)
|
|
|
|
sts |= SD_OVERRUN_ERROR;
|
|
|
|
if (err & LSR_PARITY)
|
|
|
|
sts |= SD_PARITY_ERROR;
|
|
|
|
if (err & LSR_FRAMING)
|
|
|
|
sts |= SD_FRAMING_ERROR;
|
|
|
|
if (err & LSR_BREAK)
|
|
|
|
sts |= SD_BREAK_DETECTED;
|
|
|
|
chSysLockFromIsr();
|
2011-01-09 10:10:39 +00:00
|
|
|
chIOAddFlagsI(sdp, sts);
|
2009-11-29 08:50:13 +00:00
|
|
|
chSysUnlockFromIsr();
|
|
|
|
}
|
|
|
|
|
2010-10-16 17:23:07 +00:00
|
|
|
#if defined(__GNUC__)
|
2009-11-29 08:50:13 +00:00
|
|
|
__attribute__((noinline))
|
|
|
|
#endif
|
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief Common IRQ handler.
|
|
|
|
* @note Tries hard to clear all the pending interrupt sources, we dont want
|
|
|
|
* to go through the whole ISR and have another interrupt soon after.
|
|
|
|
*
|
|
|
|
* @param[in] sdp communication channel associated to the UART
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-01-01 15:29:17 +00:00
|
|
|
static void serve_interrupt(SerialDriver *sdp) {
|
2010-01-22 14:51:54 +00:00
|
|
|
UART *u = sdp->uart;
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
while (TRUE) {
|
|
|
|
switch (u->UART_IIR & IIR_SRC_MASK) {
|
|
|
|
case IIR_SRC_NONE:
|
|
|
|
return;
|
|
|
|
case IIR_SRC_ERROR:
|
2010-01-01 15:29:17 +00:00
|
|
|
set_error(sdp, u->UART_LSR);
|
2009-11-29 08:50:13 +00:00
|
|
|
break;
|
|
|
|
case IIR_SRC_TIMEOUT:
|
|
|
|
case IIR_SRC_RX:
|
2010-01-01 15:29:17 +00:00
|
|
|
chSysLockFromIsr();
|
2010-09-21 10:22:06 +00:00
|
|
|
if (chIQIsEmptyI(&sdp->iqueue))
|
2011-01-09 10:10:39 +00:00
|
|
|
chIOAddFlagsI(sdp, IO_INPUT_AVAILABLE);
|
2010-01-01 15:29:17 +00:00
|
|
|
chSysUnlockFromIsr();
|
2009-11-29 08:50:13 +00:00
|
|
|
while (u->UART_LSR & LSR_RBR_FULL) {
|
|
|
|
chSysLockFromIsr();
|
2010-01-22 14:51:54 +00:00
|
|
|
if (chIQPutI(&sdp->iqueue, u->UART_RBR) < Q_OK)
|
2011-01-09 10:10:39 +00:00
|
|
|
chIOAddFlagsI(sdp, SD_OVERRUN_ERROR);
|
2009-11-29 08:50:13 +00:00
|
|
|
chSysUnlockFromIsr();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case IIR_SRC_TX:
|
2010-01-02 12:41:56 +00:00
|
|
|
{
|
|
|
|
int i = LPC214x_UART_FIFO_PRELOAD;
|
|
|
|
do {
|
|
|
|
msg_t b;
|
2010-01-01 15:29:17 +00:00
|
|
|
|
|
|
|
chSysLockFromIsr();
|
2010-01-22 14:51:54 +00:00
|
|
|
b = chOQGetI(&sdp->oqueue);
|
2010-01-01 15:29:17 +00:00
|
|
|
chSysUnlockFromIsr();
|
2010-01-02 12:41:56 +00:00
|
|
|
if (b < Q_OK) {
|
|
|
|
u->UART_IER &= ~IER_THRE;
|
|
|
|
chSysLockFromIsr();
|
2011-01-09 10:10:39 +00:00
|
|
|
chIOAddFlagsI(sdp, IO_OUTPUT_EMPTY);
|
2010-01-02 12:41:56 +00:00
|
|
|
chSysUnlockFromIsr();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
u->UART_THR = b;
|
|
|
|
} while (--i);
|
|
|
|
}
|
2010-01-01 15:29:17 +00:00
|
|
|
break;
|
2009-11-29 08:50:13 +00:00
|
|
|
default:
|
|
|
|
(void) u->UART_THR;
|
|
|
|
(void) u->UART_RBR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-06 12:55:12 +00:00
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief Attempts a TX FIFO preload.
|
2010-01-06 12:55:12 +00:00
|
|
|
*/
|
2010-01-01 15:29:17 +00:00
|
|
|
static void preload(SerialDriver *sdp) {
|
2010-01-22 14:51:54 +00:00
|
|
|
UART *u = sdp->uart;
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
if (u->UART_LSR & LSR_THRE) {
|
2010-01-02 12:41:56 +00:00
|
|
|
int i = LPC214x_UART_FIFO_PRELOAD;
|
2009-11-29 08:50:13 +00:00
|
|
|
do {
|
2010-01-22 14:51:54 +00:00
|
|
|
msg_t b = chOQGetI(&sdp->oqueue);
|
2009-11-29 08:50:13 +00:00
|
|
|
if (b < Q_OK) {
|
2011-01-09 10:10:39 +00:00
|
|
|
chIOAddFlagsI(sdp, IO_OUTPUT_EMPTY);
|
2009-11-29 08:50:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
u->UART_THR = b;
|
|
|
|
} while (--i);
|
|
|
|
}
|
|
|
|
u->UART_IER |= IER_THRE;
|
|
|
|
}
|
|
|
|
|
2010-01-06 12:55:12 +00:00
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief Driver SD1 output notification.
|
2010-01-06 12:55:12 +00:00
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
#if USE_LPC214x_UART0 || defined(__DOXYGEN__)
|
2011-01-02 14:58:51 +00:00
|
|
|
static void notify1(GenericQueue *qp) {
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2011-01-02 14:58:51 +00:00
|
|
|
(void)qp;
|
2010-01-01 15:29:17 +00:00
|
|
|
preload(&SD1);
|
2009-11-29 08:50:13 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-01-06 12:55:12 +00:00
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief Driver SD2 output notification.
|
2010-01-06 12:55:12 +00:00
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
#if USE_LPC214x_UART1 || defined(__DOXYGEN__)
|
2011-01-02 14:58:51 +00:00
|
|
|
static void notify2(GenericQueue *qp) {
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2011-01-02 14:58:51 +00:00
|
|
|
(void)qp;
|
2010-01-01 15:29:17 +00:00
|
|
|
preload(&SD2);
|
2009-11-29 08:50:13 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2009-12-29 12:05:35 +00:00
|
|
|
/* Driver interrupt handlers. */
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-01-06 12:55:12 +00:00
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief UART0 IRQ handler.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @isr
|
2010-01-06 12:55:12 +00:00
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
#if USE_LPC214x_UART0 || defined(__DOXYGEN__)
|
|
|
|
CH_IRQ_HANDLER(UART0IrqHandler) {
|
|
|
|
|
|
|
|
CH_IRQ_PROLOGUE();
|
|
|
|
|
2010-01-01 15:29:17 +00:00
|
|
|
serve_interrupt(&SD1);
|
2009-11-29 08:50:13 +00:00
|
|
|
VICVectAddr = 0;
|
|
|
|
|
|
|
|
CH_IRQ_EPILOGUE();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-01-06 12:55:12 +00:00
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief UART1 IRQ handler.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @isr
|
2010-01-06 12:55:12 +00:00
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
#if USE_LPC214x_UART1 || defined(__DOXYGEN__)
|
|
|
|
CH_IRQ_HANDLER(UART1IrqHandler) {
|
|
|
|
|
|
|
|
CH_IRQ_PROLOGUE();
|
|
|
|
|
2010-01-01 15:29:17 +00:00
|
|
|
serve_interrupt(&SD2);
|
2009-11-29 08:50:13 +00:00
|
|
|
VICVectAddr = 0;
|
|
|
|
|
|
|
|
CH_IRQ_EPILOGUE();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2009-12-29 12:05:35 +00:00
|
|
|
/* Driver exported functions. */
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief Low level serial driver initialization.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
void sd_lld_init(void) {
|
|
|
|
|
|
|
|
#if USE_LPC214x_UART0
|
|
|
|
sdObjectInit(&SD1, NULL, notify1);
|
2010-01-22 14:51:54 +00:00
|
|
|
SD1.uart = U0Base;
|
2010-02-17 18:30:29 +00:00
|
|
|
SetVICVector(UART0IrqHandler, LPC214x_UART0_PRIORITY, SOURCE_UART0);
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
#if USE_LPC214x_UART1
|
|
|
|
sdObjectInit(&SD2, NULL, notify2);
|
2010-01-22 14:51:54 +00:00
|
|
|
SD2.uart = U1Base;
|
2010-02-17 18:30:29 +00:00
|
|
|
SetVICVector(UART1IrqHandler, LPC214x_UART1_PRIORITY, SOURCE_UART1);
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief Low level serial driver configuration and (re)start.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-04-21 17:42:35 +00:00
|
|
|
* @param[in] sdp pointer to a @p SerialDriver object
|
|
|
|
* @param[in] config the architecture-dependent serial driver configuration.
|
|
|
|
* If this parameter is set to @p NULL then a default
|
|
|
|
* configuration is used.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-04-21 17:42:35 +00:00
|
|
|
void sd_lld_start(SerialDriver *sdp, const SerialConfig *config) {
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2010-04-21 17:42:35 +00:00
|
|
|
if (config == NULL)
|
|
|
|
config = &default_config;
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2010-01-22 14:51:54 +00:00
|
|
|
if (sdp->state == SD_STOP) {
|
2010-02-17 18:30:29 +00:00
|
|
|
#if USE_LPC214x_UART0
|
2010-01-01 15:29:17 +00:00
|
|
|
if (&SD1 == sdp) {
|
|
|
|
PCONP = (PCONP & PCALL) | PCUART0;
|
|
|
|
VICIntEnable = INTMASK(SOURCE_UART0);
|
|
|
|
}
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
2010-02-17 18:30:29 +00:00
|
|
|
#if USE_LPC214x_UART1
|
2010-01-01 15:29:17 +00:00
|
|
|
if (&SD2 == sdp) {
|
|
|
|
PCONP = (PCONP & PCALL) | PCUART1;
|
|
|
|
VICIntEnable = INTMASK(SOURCE_UART1);
|
|
|
|
}
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
2010-01-01 15:29:17 +00:00
|
|
|
}
|
2010-04-21 17:42:35 +00:00
|
|
|
uart_init(sdp, config);
|
2009-11-29 08:50:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-04-21 17:42:35 +00:00
|
|
|
* @brief Low level serial driver stop.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details De-initializes the UART, stops the associated clock, resets the
|
|
|
|
* interrupt vector.
|
|
|
|
*
|
2010-04-21 17:42:35 +00:00
|
|
|
* @param[in] sdp pointer to a @p SerialDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
void sd_lld_stop(SerialDriver *sdp) {
|
|
|
|
|
2010-01-22 14:51:54 +00:00
|
|
|
if (sdp->state == SD_READY) {
|
|
|
|
uart_deinit(sdp->uart);
|
2010-02-17 18:30:29 +00:00
|
|
|
#if USE_LPC214x_UART0
|
2010-01-01 15:29:17 +00:00
|
|
|
if (&SD1 == sdp) {
|
|
|
|
PCONP = (PCONP & PCALL) & ~PCUART0;
|
|
|
|
VICIntEnClear = INTMASK(SOURCE_UART0);
|
|
|
|
return;
|
|
|
|
}
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
2010-02-17 18:30:29 +00:00
|
|
|
#if USE_LPC214x_UART1
|
2010-01-01 15:29:17 +00:00
|
|
|
if (&SD2 == sdp) {
|
|
|
|
PCONP = (PCONP & PCALL) & ~PCUART1;
|
|
|
|
VICIntEnClear = INTMASK(SOURCE_UART1);
|
|
|
|
return;
|
|
|
|
}
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
2010-01-01 15:29:17 +00:00
|
|
|
}
|
2009-11-29 08:50:13 +00:00
|
|
|
}
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#endif /* HAL_USE_SERIAL */
|
2009-12-08 10:36:29 +00:00
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/** @} */
|