2007-03-15 21:37:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006, Swedish Institute of Computer Science
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Machine dependent MSP430 UART1 code.
|
|
|
|
*/
|
|
|
|
|
2011-09-11 15:18:02 +00:00
|
|
|
#include "contiki.h"
|
2007-03-15 21:37:19 +00:00
|
|
|
#include "dev/uart1.h"
|
2008-02-03 20:59:35 +00:00
|
|
|
#include "dev/watchdog.h"
|
2011-01-05 12:02:01 +00:00
|
|
|
#include "sys/ctimer.h"
|
2009-03-01 20:40:30 +00:00
|
|
|
#include "lib/ringbuf.h"
|
2012-03-07 00:14:54 +00:00
|
|
|
#include "isr_compat.h"
|
2009-03-01 20:40:30 +00:00
|
|
|
|
2011-01-09 20:44:14 +00:00
|
|
|
static int (*uart1_input_handler)(unsigned char c);
|
|
|
|
static volatile uint8_t rx_in_progress;
|
2009-03-01 20:40:30 +00:00
|
|
|
|
|
|
|
static volatile uint8_t transmitting;
|
|
|
|
|
2009-11-18 15:45:32 +00:00
|
|
|
#ifdef UART1_CONF_TX_WITH_INTERRUPT
|
|
|
|
#define TX_WITH_INTERRUPT UART1_CONF_TX_WITH_INTERRUPT
|
|
|
|
#else /* UART1_CONF_TX_WITH_INTERRUPT */
|
2011-01-09 20:44:14 +00:00
|
|
|
#define TX_WITH_INTERRUPT 0
|
2009-11-18 15:45:32 +00:00
|
|
|
#endif /* UART1_CONF_TX_WITH_INTERRUPT */
|
2009-03-01 20:40:30 +00:00
|
|
|
|
2011-01-05 12:02:01 +00:00
|
|
|
#ifdef UART1_CONF_RX_WITH_DMA
|
2011-01-05 13:36:38 +00:00
|
|
|
#define RX_WITH_DMA UART1_CONF_RX_WITH_DMA
|
2011-01-05 12:02:01 +00:00
|
|
|
#else /* UART1_CONF_RX_WITH_DMA */
|
2011-12-21 09:53:18 +00:00
|
|
|
#define RX_WITH_DMA 1
|
2011-01-05 12:02:01 +00:00
|
|
|
#endif /* UART1_CONF_RX_WITH_DMA */
|
|
|
|
|
2009-03-01 20:40:30 +00:00
|
|
|
#if TX_WITH_INTERRUPT
|
2011-01-09 20:44:14 +00:00
|
|
|
#define TXBUFSIZE 128
|
2009-03-01 20:40:30 +00:00
|
|
|
|
|
|
|
static struct ringbuf txbuf;
|
|
|
|
static uint8_t txbuf_data[TXBUFSIZE];
|
|
|
|
#endif /* TX_WITH_INTERRUPT */
|
|
|
|
|
2011-01-05 12:02:01 +00:00
|
|
|
#if RX_WITH_DMA
|
2011-01-18 16:07:16 +00:00
|
|
|
#define RXBUFSIZE 128
|
2011-01-05 12:02:01 +00:00
|
|
|
|
|
|
|
static uint8_t rxbuf[RXBUFSIZE];
|
2011-01-19 20:44:20 +00:00
|
|
|
static uint16_t last_size;
|
2011-01-05 12:02:01 +00:00
|
|
|
static struct ctimer rxdma_timer;
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_rxdma_timer(void *ptr)
|
|
|
|
{
|
2011-01-19 20:44:20 +00:00
|
|
|
uint16_t size;
|
2011-01-05 12:02:01 +00:00
|
|
|
size = DMA0SZ; /* Note: loop requires that size is less or eq to RXBUFSIZE */
|
2011-01-19 20:44:20 +00:00
|
|
|
while(last_size != size) {
|
|
|
|
/* printf("read: %c [%d,%d]\n", (unsigned char)rxbuf[RXBUFSIZE - last_size], */
|
|
|
|
/* last_size, size); */
|
2011-01-05 12:02:01 +00:00
|
|
|
uart1_input_handler((unsigned char)rxbuf[RXBUFSIZE - last_size]);
|
2011-01-19 20:44:20 +00:00
|
|
|
last_size--;
|
|
|
|
if(last_size == 0) last_size = RXBUFSIZE;
|
2011-01-05 12:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ctimer_reset(&rxdma_timer);
|
|
|
|
}
|
|
|
|
#endif /* RX_WITH_DMA */
|
|
|
|
|
2009-01-31 12:46:57 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint8_t
|
2009-02-24 21:30:20 +00:00
|
|
|
uart1_active(void)
|
|
|
|
{
|
2009-03-01 20:40:30 +00:00
|
|
|
return ((~ UTCTL1) & TXEPT) | rx_in_progress | transmitting;
|
2009-01-31 12:46:57 +00:00
|
|
|
}
|
2007-09-06 11:45:08 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
2008-01-08 08:04:09 +00:00
|
|
|
uart1_set_input(int (*input)(unsigned char c))
|
2007-09-06 11:45:08 +00:00
|
|
|
{
|
2011-01-05 12:02:01 +00:00
|
|
|
#if RX_WITH_DMA /* This needs to be called after ctimer process is started */
|
2011-01-19 20:44:20 +00:00
|
|
|
ctimer_set(&rxdma_timer, CLOCK_SECOND/64, handle_rxdma_timer, NULL);
|
2011-01-05 12:02:01 +00:00
|
|
|
#endif
|
2007-09-06 11:45:08 +00:00
|
|
|
uart1_input_handler = input;
|
|
|
|
}
|
2007-03-15 21:37:19 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
uart1_writeb(unsigned char c)
|
|
|
|
{
|
2009-03-02 22:01:26 +00:00
|
|
|
watchdog_periodic();
|
2009-03-01 20:40:30 +00:00
|
|
|
#if TX_WITH_INTERRUPT
|
|
|
|
|
|
|
|
/* Put the outgoing byte on the transmission buffer. If the buffer
|
|
|
|
is full, we just keep on trying to put the byte into the buffer
|
|
|
|
until it is possible to put it there. */
|
2009-03-02 22:01:26 +00:00
|
|
|
while(ringbuf_put(&txbuf, c) == 0);
|
2009-03-01 20:40:30 +00:00
|
|
|
|
|
|
|
/* If there is no transmission going, we need to start it by putting
|
|
|
|
the first byte into the UART. */
|
|
|
|
if(transmitting == 0) {
|
|
|
|
transmitting = 1;
|
2010-03-03 23:18:58 +00:00
|
|
|
|
|
|
|
/* Loop until the transmission buffer is available. */
|
2010-03-05 12:06:03 +00:00
|
|
|
/*while((IFG2 & UTXIFG1) == 0);*/
|
2011-10-06 12:05:57 +00:00
|
|
|
TXBUF1 = ringbuf_get(&txbuf);
|
2009-03-01 20:40:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else /* TX_WITH_INTERRUPT */
|
2009-03-02 22:01:26 +00:00
|
|
|
|
2007-03-15 21:37:19 +00:00
|
|
|
/* Loop until the transmission buffer is available. */
|
2008-01-08 08:04:09 +00:00
|
|
|
while((IFG2 & UTXIFG1) == 0);
|
2007-03-15 21:37:19 +00:00
|
|
|
|
|
|
|
/* Transmit the data. */
|
|
|
|
TXBUF1 = c;
|
2009-03-01 20:40:30 +00:00
|
|
|
#endif /* TX_WITH_INTERRUPT */
|
2007-03-15 21:37:19 +00:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* Initalize the RS232 port.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
uart1_init(unsigned long ubr)
|
|
|
|
{
|
|
|
|
/* RS232 */
|
|
|
|
P3DIR &= ~0x80; /* Select P37 for input (UART1RX) */
|
|
|
|
P3DIR |= 0x40; /* Select P36 for output (UART1TX) */
|
|
|
|
P3SEL |= 0xC0; /* Select P36,P37 for UART1{TX,RX} */
|
|
|
|
|
|
|
|
UCTL1 = SWRST | CHAR; /* 8-bit character, UART mode */
|
|
|
|
|
|
|
|
#if 0
|
2011-09-21 18:02:04 +00:00
|
|
|
U1RCTL &= ~URXEIE; /* even erroneous characters trigger interrupts */
|
2007-03-15 21:37:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
UTCTL1 = SSEL1; /* UCLK = MCLK */
|
|
|
|
|
|
|
|
UBR01 = ubr;
|
2009-01-31 12:46:57 +00:00
|
|
|
UBR11 = ubr >> 8;
|
2007-03-15 21:37:19 +00:00
|
|
|
/*
|
|
|
|
* UMCTL1 values calculated using
|
2009-01-31 12:46:57 +00:00
|
|
|
* http://mspgcc.sourceforge.net/baudrate.html
|
2007-03-15 21:37:19 +00:00
|
|
|
*/
|
|
|
|
switch(ubr) {
|
2009-11-18 15:45:32 +00:00
|
|
|
|
|
|
|
#if F_CPU == 3900000ul
|
|
|
|
|
2009-01-31 12:46:57 +00:00
|
|
|
case UART1_BAUD2UBR(115200ul):
|
2009-10-27 16:25:28 +00:00
|
|
|
UMCTL1 = 0xF7;
|
2007-03-15 21:37:19 +00:00
|
|
|
break;
|
2009-01-31 12:46:57 +00:00
|
|
|
case UART1_BAUD2UBR(57600ul):
|
2009-10-27 16:25:28 +00:00
|
|
|
UMCTL1 = 0xED;
|
2007-03-15 21:37:19 +00:00
|
|
|
break;
|
2009-11-18 15:45:32 +00:00
|
|
|
case UART1_BAUD2UBR(38400ul):
|
|
|
|
UMCTL1 = 0xD6;
|
|
|
|
break;
|
|
|
|
case UART1_BAUD2UBR(19200ul):
|
|
|
|
UMCTL1 = 0x08;
|
|
|
|
break;
|
|
|
|
case UART1_BAUD2UBR(9600ul):
|
|
|
|
UMCTL1 = 0x22;
|
|
|
|
break;
|
|
|
|
|
|
|
|
#elif F_CPU == 2457600ul
|
|
|
|
|
|
|
|
case UART1_BAUD2UBR(115200ul):
|
|
|
|
UMCTL1 = 0x4A;
|
|
|
|
break;
|
|
|
|
case UART1_BAUD2UBR(57600ul):
|
|
|
|
UMCTL1 = 0x5B;
|
|
|
|
break;
|
2007-03-15 21:37:19 +00:00
|
|
|
default:
|
2009-01-31 12:46:57 +00:00
|
|
|
/* 9600, 19200, 38400 don't require any correction */
|
2007-03-15 21:37:19 +00:00
|
|
|
UMCTL1 = 0x00;
|
2009-11-18 15:45:32 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#error Unsupported CPU speed in uart1.c
|
|
|
|
|
|
|
|
#endif
|
2007-03-15 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ME2 &= ~USPIE1; /* USART1 SPI module disable */
|
|
|
|
ME2 |= (UTXE1 | URXE1); /* Enable USART1 TXD/RXD */
|
|
|
|
|
|
|
|
UCTL1 &= ~SWRST;
|
|
|
|
|
|
|
|
/* XXX Clear pending interrupts before enable!!! */
|
2009-01-31 12:46:57 +00:00
|
|
|
IFG2 &= ~URXIFG1;
|
2008-09-18 17:59:27 +00:00
|
|
|
U1TCTL |= URXSE;
|
2007-03-15 21:37:19 +00:00
|
|
|
|
2009-01-31 12:46:57 +00:00
|
|
|
rx_in_progress = 0;
|
|
|
|
|
2009-03-01 20:40:30 +00:00
|
|
|
transmitting = 0;
|
2010-03-05 12:06:03 +00:00
|
|
|
|
2007-03-15 21:37:19 +00:00
|
|
|
IE2 |= URXIE1; /* Enable USART1 RX interrupt */
|
2009-03-01 20:40:30 +00:00
|
|
|
#if TX_WITH_INTERRUPT
|
|
|
|
ringbuf_init(&txbuf, txbuf_data, sizeof(txbuf_data));
|
2009-09-08 10:39:49 +00:00
|
|
|
IE2 |= UTXIE1; /* Enable USART1 TX interrupt */
|
2009-03-01 20:40:30 +00:00
|
|
|
#endif /* TX_WITH_INTERRUPT */
|
2011-01-05 12:02:01 +00:00
|
|
|
|
|
|
|
#if RX_WITH_DMA
|
|
|
|
IE2 &= ~URXIE1; /* disable USART1 RX interrupt */
|
|
|
|
/* UART1_RX trigger */
|
|
|
|
DMACTL0 = DMA0TSEL_9;
|
|
|
|
|
|
|
|
/* source address = RXBUF1 */
|
|
|
|
DMA0SA = (unsigned int) &RXBUF1;
|
|
|
|
DMA0DA = (unsigned int) &rxbuf;
|
|
|
|
DMA0SZ = RXBUFSIZE;
|
|
|
|
last_size = RXBUFSIZE;
|
|
|
|
DMA0CTL = DMADT_4 + DMASBDB + DMADSTINCR_3 + DMAEN + DMAREQ;// DMAIE;
|
|
|
|
|
|
|
|
msp430_add_lpm_req(MSP430_REQUIRE_LPM1);
|
|
|
|
#endif /* RX_WITH_DMA */
|
2007-03-15 21:37:19 +00:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2011-01-19 20:44:20 +00:00
|
|
|
#if !RX_WITH_DMA
|
2012-03-07 00:14:54 +00:00
|
|
|
ISR(UART1RX, uart1_rx_interrupt)
|
2007-03-15 21:37:19 +00:00
|
|
|
{
|
2009-10-30 15:06:26 +00:00
|
|
|
uint8_t c;
|
2008-09-18 17:59:27 +00:00
|
|
|
|
2009-02-24 21:30:20 +00:00
|
|
|
if(!(URXIFG1 & IFG2)) {
|
2008-09-18 17:59:27 +00:00
|
|
|
/* Edge detect if IFG not set? */
|
|
|
|
U1TCTL &= ~URXSE; /* Clear the URXS signal */
|
|
|
|
U1TCTL |= URXSE; /* Re-enable URXS - needed here?*/
|
2009-01-31 12:46:57 +00:00
|
|
|
rx_in_progress = 1;
|
2008-09-18 17:59:27 +00:00
|
|
|
LPM4_EXIT;
|
2007-03-15 21:37:19 +00:00
|
|
|
} else {
|
2009-01-31 12:46:57 +00:00
|
|
|
rx_in_progress = 0;
|
2008-09-18 17:59:27 +00:00
|
|
|
/* Check status register for receive errors. */
|
|
|
|
if(URCTL1 & RXERR) {
|
2009-11-18 13:24:12 +00:00
|
|
|
c = RXBUF1; /* Clear error flags by forcing a dummy read. */
|
2008-09-18 17:59:27 +00:00
|
|
|
} else {
|
2009-11-18 13:24:12 +00:00
|
|
|
c = RXBUF1;
|
2008-01-08 08:04:09 +00:00
|
|
|
if(uart1_input_handler != NULL) {
|
2009-10-30 15:06:26 +00:00
|
|
|
if(uart1_input_handler(c)) {
|
2008-01-08 08:04:09 +00:00
|
|
|
LPM4_EXIT;
|
|
|
|
}
|
2007-09-06 11:45:08 +00:00
|
|
|
}
|
2008-09-18 17:59:27 +00:00
|
|
|
}
|
2007-03-15 21:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
2011-01-19 20:44:20 +00:00
|
|
|
#endif /* !RX_WITH_DMA */
|
2007-03-15 21:37:19 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2009-03-01 20:40:30 +00:00
|
|
|
#if TX_WITH_INTERRUPT
|
2012-03-07 00:14:54 +00:00
|
|
|
ISR(UART1TX, uart1_tx_interrupt)
|
2009-03-01 20:40:30 +00:00
|
|
|
{
|
|
|
|
if(ringbuf_elements(&txbuf) == 0) {
|
|
|
|
transmitting = 0;
|
|
|
|
} else {
|
|
|
|
TXBUF1 = ringbuf_get(&txbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* TX_WITH_INTERRUPT */
|
|
|
|
/*---------------------------------------------------------------------------*/
|