* arch/arm/src/sama5/sam_serial.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <sys/types.h>
#include <stdint.h>
#include <stdbool.h>
#include <unistd.h>
#include <string.h>
#include <assert.h>
#include <errno.h>
#include <debug.h>
#ifdef CONFIG_SERIAL_TERMIOS
# include <termios.h>
#endif
#include <nuttx/arch.h>
#include <nuttx/fs/ioctl.h>
#include <nuttx/spinlock.h>
#include <nuttx/semaphore.h>
#include <nuttx/serial/serial.h>
#include <arch/board/board.h>
#include "arm_internal.h"
#include "chip.h"
#include "hardware/sam_uart.h"
#include "sam_config.h"
#include "sam_dbgu.h"
#include "sam_serial.h"
* Pre-processor Definitions
****************************************************************************/
* provide some minimal implementation of up_putc.
*/
#ifdef USE_SERIALDRIVER
#undef TTYS0_DEV
#undef TTYS1_DEV
#undef TTYS2_DEV
#undef TTYS3_DEV
#undef TTYS4_DEV
#undef TTYS5_DEV
#undef TTYS6_DEV
#undef TTYS7_DEV
#undef TTYS8_DEV
#undef TTYS9_DEV
#undef UART0_ASSIGNED
#undef UART1_ASSIGNED
#undef UART2_ASSIGNED
#undef UART3_ASSIGNED
#undef UART4_ASSIGNED
#undef USART0_ASSIGNED
#undef USART1_ASSIGNED
#undef USART2_ASSIGNED
#undef USART3_ASSIGNED
#undef USART4_ASSIGNED
#if defined(SAMA5_HAVE_UART) || defined(SAMA5_HAVE_USART)
* ttyS9?
*/
* USART0-4.
*/
#if defined(CONFIG_UART0_SERIAL_CONSOLE)
# define CONSOLE_DEV g_uart0port
# define TTYS0_DEV g_uart0port
# define UART0_ASSIGNED 1
#elif defined(CONFIG_UART1_SERIAL_CONSOLE)
# define CONSOLE_DEV g_uart1port
# define TTYS0_DEV g_uart1port
# define UART1_ASSIGNED 1
#elif defined(CONFIG_UART2_SERIAL_CONSOLE)
# define CONSOLE_DEV g_uart2port
# define TTYS0_DEV g_uart2port
# define UART2_ASSIGNED 1
#elif defined(CONFIG_UART3_SERIAL_CONSOLE)
# define CONSOLE_DEV g_uart3port
# define TTYS0_DEV g_uart3port
# define UART3_ASSIGNED 1
#elif defined(CONFIG_UART4_SERIAL_CONSOLE)
# define CONSOLE_DEV g_uart4port
# define TTYS0_DEV g_uart4port
# define UART4_ASSIGNED 1
#elif defined(CONFIG_USART0_SERIAL_CONSOLE)
# define CONSOLE_DEV g_usart0port
# define TTYS0_DEV g_usart0port
# define USART0_ASSIGNED 1
#elif defined(CONFIG_USART1_SERIAL_CONSOLE)
# define CONSOLE_DEV g_usart1port
# define TTYS0_DEV g_usart1port
# define USART1_ASSIGNED 1
#elif defined(CONFIG_USART2_SERIAL_CONSOLE)
# define CONSOLE_DEV g_usart2port
# define TTYS0_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_USART3_SERIAL_CONSOLE)
# define CONSOLE_DEV g_usart3port
# define TTYS0_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_USART4_SERIAL_CONSOLE)
# define CONSOLE_DEV g_usart4port
# define TTYS0_DEV g_usart4port
# define USART4_ASSIGNED 1
#else
# undef CONSOLE_DEV
# if defined(CONFIG_SAMA5_UART0)
# define TTYS0_DEV g_uart0port
# define UART0_ASSIGNED 1
# elif defined(CONFIG_SAMA5_UART1)
# define TTYS0_DEV g_uart1port
# define UART1_ASSIGNED 1
# elif defined(CONFIG_SAMA5_UART2)
# define TTYS0_DEV g_uart2port
# define UART2_ASSIGNED 1
# elif defined(CONFIG_SAMA5_UART3)
# define TTYS0_DEV g_uart3port
# define UART3_ASSIGNED 1
# elif defined(CONFIG_SAMA5_UART4)
# define TTYS0_DEV g_uart4port
# define UART4_ASSIGNED 1
# elif defined(CONFIG_SAMA5_USART0)
# define TTYS0_DEV g_usart0port
# define USART0_ASSIGNED 1
# elif defined(CONFIG_SAMA5_USART1)
# define TTYS0_DEV g_usart1port
# define USART1_ASSIGNED 1
# elif defined(CONFIG_SAMA5_USART2)
# define TTYS0_DEV g_usart2port
# define USART2_ASSIGNED 1
# elif defined(CONFIG_SAMA5_USART3)
# define TTYS0_DEV g_usart3port
# define USART3_ASSIGNED 1
# elif defined(CONFIG_SAMA5_USART4)
# define TTYS0_DEV g_usart4port
# define USART4_ASSIGNED 4
# endif
#endif
* console UART.
*/
#if defined(CONFIG_SAMA5_UART0) && !defined(UART0_ASSIGNED)
# define TTYS1_DEV g_uart0port
# define UART0_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART1) && !defined(UART1_ASSIGNED)
# define TTYS1_DEV g_uart1port
# define UART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART2) && !defined(UART2_ASSIGNED)
# define TTYS1_DEV g_uart2port
# define UART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART3) && !defined(UART3_ASSIGNED)
# define TTYS1_DEV g_uart3port
# define UART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART4) && !defined(UART4_ASSIGNED)
# define TTYS1_DEV g_uart4port
# define UART4_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART0) && !defined(USART0_ASSIGNED)
# define TTYS1_DEV g_usart0port
# define USART0_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART1) && !defined(USART1_ASSIGNED)
# define TTYS1_DEV g_usart1port
# define USART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART2) && !defined(USART2_ASSIGNED)
# define TTYS1_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS1_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS1_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
* because that was either assigned as ttyS0 or ttyS1. One of these
* could also be the console.
*/
#if defined(CONFIG_SAMA5_UART1) && !defined(UART1_ASSIGNED)
# define TTYS2_DEV g_uart1port
# define UART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART2) && !defined(UART2_ASSIGNED)
# define TTYS2_DEV g_uart2port
# define UART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART3) && !defined(UART3_ASSIGNED)
# define TTYS2_DEV g_uart2port
# define UART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART4) && !defined(UART4_ASSIGNED)
# define TTYS2_DEV g_uart4port
# define UART4_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART0) && !defined(USART0_ASSIGNED)
# define TTYS2_DEV g_usart0port
# define USART0_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART1) && !defined(USART1_ASSIGNED)
# define TTYS2_DEV g_usart1port
# define USART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART2) && !defined(USART2_ASSIGNED)
# define TTYS2_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS2_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS2_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
* UART0-1; those have already been assigned to ttyS0, 1, or 2. One of
* UART2-4 or USART0-4 could also be the console.
*/
#if defined(CONFIG_SAMA5_UART2) && !defined(UART2_ASSIGNED)
# define TTYS3_DEV g_uart2port
# define UART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART3) && !defined(UART3_ASSIGNED)
# define TTYS3_DEV g_uart3port
# define UART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART4) && !defined(UART4_ASSIGNED)
# define TTYS3_DEV g_uart1port
# define UART4_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART0) && !defined(USART0_ASSIGNED)
# define TTYS3_DEV g_usart0port
# define USART0_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART1) && !defined(USART1_ASSIGNED)
# define TTYS3_DEV g_usart1port
# define USART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART2) && !defined(USART2_ASSIGNED)
# define TTYS3_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS3_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS3_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
* UART0-2; those have already been assigned to ttyS0-3. One of
* UART3-4 or USART0-4 could also be the console.
*/
#if defined(CONFIG_SAMA5_UART3) && !defined(UART3_ASSIGNED)
# define TTYS4_DEV g_uart3port
# define UART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_UART4) && !defined(UART4_ASSIGNED)
# define TTYS4_DEV g_uart4port
# define UART4_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART0) && !defined(USART0_ASSIGNED)
# define TTYS4_DEV g_usart0port
# define USART0_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART1) && !defined(USART1_ASSIGNED)
# define TTYS4_DEV g_usart1port
# define USART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART2) && !defined(USART2_ASSIGNED)
# define TTYS4_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS4_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS4_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
* UART0-3; those have already been assigned to ttyS0-4. One of
* UART4 or USART0-4 could also be the console.
*/
#if defined(CONFIG_SAMA5_UART4) && !defined(UART4_ASSIGNED)
# define TTYS5_DEV g_uart4port
# define UART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART0) && !defined(USART0_ASSIGNED)
# define TTYS5_DEV g_usart0port
# define USART0_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART1) && !defined(USART1_ASSIGNED)
# define TTYS5_DEV g_usart1port
# define USART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART2) && !defined(USART2_ASSIGNED)
# define TTYS5_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS5_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS5_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
* those have already been assigned to ttyS0-5. One of USART0-4
* could also be the console.
*/
#if defined(CONFIG_SAMA5_USART0) && !defined(USART0_ASSIGNED)
# define TTYS6_DEV g_usart0port
# define USART0_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART1) && !defined(USART1_ASSIGNED)
# define TTYS6_DEV g_usart1port
# define USART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART2) && !defined(USART2_ASSIGNED)
# define TTYS6_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS6_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS6_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
* or USART0; those have already been assigned to ttyS0-5. One of
* USART1-4 could also be the console.
*/
#if defined(CONFIG_SAMA5_USART1) && !defined(USART1_ASSIGNED)
# define TTYS7_DEV g_usart1port
# define USART1_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART2) && !defined(USART2_ASSIGNED)
# define TTYS7_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS7_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS7_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
* or USART0-1; those have already been assigned to ttyS0-5. One of
* USART2-4 could also be the console.
*/
#if defined(CONFIG_SAMA5_USART2) && !defined(USART2_ASSIGNED)
# define TTYS8_DEV g_usart2port
# define USART2_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS8_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS8_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
* or USART0-2; those have already been assigned to ttyS0-8. One of
* USART3-4 could also be the console.
*/
#if defined(CONFIG_SAMA5_USART3) && !defined(USART3_ASSIGNED)
# define TTYS9_DEV g_usart3port
# define USART3_ASSIGNED 1
#elif defined(CONFIG_SAMA5_USART4) && !defined(USART4_ASSIGNED)
# define TTYS9_DEV g_usart4port
# define USART4_ASSIGNED 1
#endif
#define SAM_USART_CLOCK BOARD_USART_FREQUENCY
#define SAM_MR_USCLKS UART_MR_USCLKS_MCK
* Private Types
****************************************************************************/
struct up_dev_s
{
uint32_t usartbase;
uint32_t baud;
uint32_t sr;
uint8_t irq;
uint8_t parity;
uint8_t bits;
bool stopbits2;
#if defined(CONFIG_SERIAL_IFLOWCONTROL) || defined(CONFIG_SERIAL_OFLOWCONTROL)
bool flowc;
#endif
};
* Private Function Prototypes
****************************************************************************/
static int up_interrupt(int irq, void *context, void *arg);
static int up_setup(struct uart_dev_s *dev);
static void up_shutdown(struct uart_dev_s *dev);
static int up_attach(struct uart_dev_s *dev);
static void up_detach(struct uart_dev_s *dev);
static int up_ioctl(struct file *filep, int cmd, unsigned long arg);
static int up_receive(struct uart_dev_s *dev, unsigned int *status);
static void up_rxint(struct uart_dev_s *dev, bool enable);
static bool up_rxavailable(struct uart_dev_s *dev);
static void up_send(struct uart_dev_s *dev, int ch);
static void up_txint(struct uart_dev_s *dev, bool enable);
static bool up_txready(struct uart_dev_s *dev);
static bool up_txempty(struct uart_dev_s *dev);
* Private Data
****************************************************************************/
static const struct uart_ops_s g_uart_ops =
{
.setup = up_setup,
.shutdown = up_shutdown,
.attach = up_attach,
.detach = up_detach,
.ioctl = up_ioctl,
.receive = up_receive,
.rxint = up_rxint,
.rxavailable = up_rxavailable,
#ifdef CONFIG_SERIAL_IFLOWCONTROL
.rxflowcontrol = NULL,
#endif
.send = up_send,
.txint = up_txint,
.txready = up_txready,
.txempty = up_txempty,
};
#ifdef CONFIG_SAMA5_UART0
static char g_uart0rxbuffer[CONFIG_UART0_RXBUFSIZE];
static char g_uart0txbuffer[CONFIG_UART0_TXBUFSIZE];
#endif
#ifdef CONFIG_SAMA5_UART1
static char g_uart1rxbuffer[CONFIG_UART1_RXBUFSIZE];
static char g_uart1txbuffer[CONFIG_UART1_TXBUFSIZE];
#endif
#ifdef CONFIG_SAMA5_UART2
static char g_uart2rxbuffer[CONFIG_UART2_RXBUFSIZE];
static char g_uart2txbuffer[CONFIG_UART2_TXBUFSIZE];
#endif
#ifdef CONFIG_SAMA5_UART3
static char g_uart3rxbuffer[CONFIG_UART3_RXBUFSIZE];
static char g_uart3txbuffer[CONFIG_UART3_TXBUFSIZE];
#endif
#ifdef CONFIG_SAMA5_UART4
static char g_uart4rxbuffer[CONFIG_UART4_RXBUFSIZE];
static char g_uart4txbuffer[CONFIG_UART4_TXBUFSIZE];
#endif
#if defined(CONFIG_USART0_SERIALDRIVER) && defined(CONFIG_SAMA5_USART0)
static char g_usart0rxbuffer[CONFIG_USART0_RXBUFSIZE];
static char g_usart0txbuffer[CONFIG_USART0_TXBUFSIZE];
#endif
#if defined(CONFIG_USART1_SERIALDRIVER) && defined(CONFIG_SAMA5_USART1)
static char g_usart1rxbuffer[CONFIG_USART1_RXBUFSIZE];
static char g_usart1txbuffer[CONFIG_USART1_TXBUFSIZE];
#endif
#if defined(CONFIG_USART2_SERIALDRIVER) && defined(CONFIG_SAMA5_USART2)
static char g_usart2rxbuffer[CONFIG_USART2_RXBUFSIZE];
static char g_usart2txbuffer[CONFIG_USART2_TXBUFSIZE];
#endif
#if defined(CONFIG_USART3_SERIALDRIVER) && defined(CONFIG_SAMA5_USART3)
static char g_usart3rxbuffer[CONFIG_USART3_RXBUFSIZE];
static char g_usart3txbuffer[CONFIG_USART3_TXBUFSIZE];
#endif
#if defined(CONFIG_USART4_SERIALDRIVER) && defined(CONFIG_SAMA5_USART4)
static char g_usart4rxbuffer[CONFIG_USART4_RXBUFSIZE];
static char g_usart4txbuffer[CONFIG_USART4_TXBUFSIZE];
#endif
#ifdef CONFIG_SAMA5_UART0
# if CONFIG_UART0_BITS == 8 && CONFIG_UART0_PARITY == 0
# elif CONFIG_UART0_BITS == 7 && CONFIG_UART0_PARITY != 0
# else
# error "Unsupported combination of bits and parity for UART0"
# endif
# if CONFIG_UART0_2STOP != 0
# error "Unsupported number of stop bits and parity for UART0"
# endif
static struct up_dev_s g_uart0priv =
{
.usartbase = SAM_UART0_VBASE,
.baud = CONFIG_UART0_BAUD,
.irq = SAM_IRQ_UART0,
.parity = CONFIG_UART0_PARITY,
.bits = CONFIG_UART0_BITS,
.stopbits2 = CONFIG_UART0_2STOP,
};
static uart_dev_t g_uart0port =
{
.recv =
{
.size = CONFIG_UART0_RXBUFSIZE,
.buffer = g_uart0rxbuffer,
},
.xmit =
{
.size = CONFIG_UART0_TXBUFSIZE,
.buffer = g_uart0txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_uart0priv,
};
#endif
#ifdef CONFIG_SAMA5_UART1
# if CONFIG_UART1_BITS == 8 && CONFIG_UART1_PARITY == 0
# elif CONFIG_UART1_BITS == 7 && CONFIG_UART1_PARITY != 0
# else
# error "Unsupported combination of bits and parity for UART1"
# endif
# if CONFIG_UART1_2STOP != 0
# error "Unsupported number of stop bits and parity for UART1"
# endif
static struct up_dev_s g_uart1priv =
{
.usartbase = SAM_UART1_VBASE,
.baud = CONFIG_UART1_BAUD,
.irq = SAM_IRQ_UART1,
.parity = CONFIG_UART1_PARITY,
.bits = CONFIG_UART1_BITS,
.stopbits2 = CONFIG_UART1_2STOP,
};
static uart_dev_t g_uart1port =
{
.recv =
{
.size = CONFIG_UART1_RXBUFSIZE,
.buffer = g_uart1rxbuffer,
},
.xmit =
{
.size = CONFIG_UART1_TXBUFSIZE,
.buffer = g_uart1txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_uart1priv,
};
#endif
#ifdef CONFIG_SAMA5_UART2
# if CONFIG_UART2_BITS == 8 && CONFIG_UART2_PARITY == 0
# elif CONFIG_UART2_BITS == 7 && CONFIG_UART2_PARITY != 0
# else
# error "Unsupported combination of bits and parity for UART2"
# endif
# if CONFIG_UART2_2STOP != 0
# error "Unsupported number of stop bits and parity for UART2"
# endif
static struct up_dev_s g_uart2priv =
{
.usartbase = SAM_UART2_VBASE,
.baud = CONFIG_UART2_BAUD,
.irq = SAM_IRQ_UART2,
.parity = CONFIG_UART2_PARITY,
.bits = CONFIG_UART2_BITS,
.stopbits2 = CONFIG_UART2_2STOP,
};
static uart_dev_t g_uart2port =
{
.recv =
{
.size = CONFIG_UART2_RXBUFSIZE,
.buffer = g_uart2rxbuffer,
},
.xmit =
{
.size = CONFIG_UART2_TXBUFSIZE,
.buffer = g_uart2txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_uart2priv,
};
#endif
#ifdef CONFIG_SAMA5_UART3
# if CONFIG_UART3_BITS == 8 && CONFIG_UART3_PARITY == 0
# elif CONFIG_UART3_BITS == 7 && CONFIG_UART3_PARITY != 0
# else
# error "Unsupported combination of bits and parity for UART3"
# endif
# if CONFIG_UART3_2STOP != 0
# error "Unsupported number of stop bits and parity for UART3"
# endif
static struct up_dev_s g_uart3priv =
{
.usartbase = SAM_UART3_VBASE,
.baud = CONFIG_UART3_BAUD,
.irq = SAM_IRQ_UART3,
.parity = CONFIG_UART3_PARITY,
.bits = CONFIG_UART3_BITS,
.stopbits2 = CONFIG_UART3_2STOP,
};
static uart_dev_t g_uart3port =
{
.recv =
{
.size = CONFIG_UART3_RXBUFSIZE,
.buffer = g_uart3rxbuffer,
},
.xmit =
{
.size = CONFIG_UART3_TXBUFSIZE,
.buffer = g_uart3txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_uart3priv,
};
#endif
#ifdef CONFIG_SAMA5_UART4
# if CONFIG_UART4_BITS == 8 && CONFIG_UART4_PARITY == 0
# elif CONFIG_UART4_BITS == 7 && CONFIG_UART4_PARITY != 0
# else
# error "Unsupported combination of bits and parity for UART4"
# endif
# if CONFIG_UART4_2STOP != 0
# error "Unsupported number of stop bits and parity for UART4"
# endif
static struct up_dev_s g_uart4priv =
{
.usartbase = SAM_UART4_VBASE,
.baud = CONFIG_UART4_BAUD,
.irq = SAM_IRQ_UART4,
.parity = CONFIG_UART4_PARITY,
.bits = CONFIG_UART4_BITS,
.stopbits2 = CONFIG_UART4_2STOP,
};
static uart_dev_t g_uart4port =
{
.recv =
{
.size = CONFIG_UART4_RXBUFSIZE,
.buffer = g_uart4rxbuffer,
},
.xmit =
{
.size = CONFIG_UART4_TXBUFSIZE,
.buffer = g_uart4txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_uart4priv,
};
#endif
#ifdef CONFIG_SAMA5_USART0
static struct up_dev_s g_usart0priv =
{
.usartbase = SAM_USART0_VBASE,
.baud = CONFIG_USART0_BAUD,
.irq = SAM_IRQ_USART0,
.parity = CONFIG_USART0_PARITY,
.bits = CONFIG_USART0_BITS,
.stopbits2 = CONFIG_USART0_2STOP,
#if defined(CONFIG_USART0_OFLOWCONTROL) || defined(CONFIG_USART0_IFLOWCONTROL)
.flowc = true,
#endif
};
static uart_dev_t g_usart0port =
{
.recv =
{
.size = CONFIG_USART0_RXBUFSIZE,
.buffer = g_usart0rxbuffer,
},
.xmit =
{
.size = CONFIG_USART0_TXBUFSIZE,
.buffer = g_usart0txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_usart0priv,
};
#endif
#ifdef CONFIG_SAMA5_USART1
static struct up_dev_s g_usart1priv =
{
.usartbase = SAM_USART1_VBASE,
.baud = CONFIG_USART1_BAUD,
.irq = SAM_IRQ_USART1,
.parity = CONFIG_USART1_PARITY,
.bits = CONFIG_USART1_BITS,
.stopbits2 = CONFIG_USART1_2STOP,
#if defined(CONFIG_USART1_OFLOWCONTROL) || defined(CONFIG_USART1_IFLOWCONTROL)
.flowc = true,
#endif
};
static uart_dev_t g_usart1port =
{
.recv =
{
.size = CONFIG_USART1_RXBUFSIZE,
.buffer = g_usart1rxbuffer,
},
.xmit =
{
.size = CONFIG_USART1_TXBUFSIZE,
.buffer = g_usart1txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_usart1priv,
};
#endif
#ifdef CONFIG_SAMA5_USART2
static struct up_dev_s g_usart2priv =
{
.usartbase = SAM_USART2_VBASE,
.baud = CONFIG_USART2_BAUD,
.irq = SAM_IRQ_USART2,
.parity = CONFIG_USART2_PARITY,
.bits = CONFIG_USART2_BITS,
.stopbits2 = CONFIG_USART2_2STOP,
#if defined(CONFIG_USART2_OFLOWCONTROL) || defined(CONFIG_USART2_IFLOWCONTROL)
.flowc = true,
#endif
};
static uart_dev_t g_usart2port =
{
.recv =
{
.size = CONFIG_USART2_RXBUFSIZE,
.buffer = g_usart2rxbuffer,
},
.xmit =
{
.size = CONFIG_USART2_TXBUFSIZE,
.buffer = g_usart2txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_usart2priv,
};
#endif
#ifdef CONFIG_SAMA5_USART3
static struct up_dev_s g_usart3priv =
{
.usartbase = SAM_USART3_VBASE,
.baud = CONFIG_USART3_BAUD,
.irq = SAM_IRQ_USART3,
.parity = CONFIG_USART3_PARITY,
.bits = CONFIG_USART3_BITS,
.stopbits2 = CONFIG_USART3_2STOP,
#if defined(CONFIG_USART3_OFLOWCONTROL) || defined(CONFIG_USART3_IFLOWCONTROL)
.flowc = true,
#endif
};
static uart_dev_t g_usart3port =
{
.recv =
{
.size = CONFIG_USART3_RXBUFSIZE,
.buffer = g_usart3rxbuffer,
},
.xmit =
{
.size = CONFIG_USART3_TXBUFSIZE,
.buffer = g_usart3txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_usart3priv,
};
#endif
#ifdef CONFIG_SAMA5_USART4
static struct up_dev_s g_usart4priv =
{
.usartbase = SAM_USART4_VBASE,
.baud = CONFIG_USART4_BAUD,
.irq = SAM_IRQ_USART4,
.parity = CONFIG_USART4_PARITY,
.bits = CONFIG_USART4_BITS,
.stopbits2 = CONFIG_USART4_2STOP,
#if defined(CONFIG_USART4_OFLOWCONTROL) || defined(CONFIG_USART4_IFLOWCONTROL)
.flowc = true,
#endif
};
static uart_dev_t g_usart4port =
{
.recv =
{
.size = CONFIG_USART4_RXBUFSIZE,
.buffer = g_usart4rxbuffer,
},
.xmit =
{
.size = CONFIG_USART4_TXBUFSIZE,
.buffer = g_usart4txbuffer,
},
.ops = &g_uart_ops,
.priv = &g_usart4priv,
};
#endif
* Private Functions
****************************************************************************/
* Name: up_serialin
****************************************************************************/
static inline uint32_t up_serialin(struct up_dev_s *priv, int offset)
{
return getreg32(priv->usartbase + offset);
}
* Name: up_serialout
****************************************************************************/
static inline void up_serialout(struct up_dev_s *priv, int offset,
uint32_t value)
{
putreg32(value, priv->usartbase + offset);
}
* Name: up_restoreusartint
****************************************************************************/
static inline void up_restoreusartint(struct up_dev_s *priv, uint32_t imr)
{
* disabled)
*/
up_serialout(priv, SAM_UART_IER_OFFSET, imr);
}
* Name: up_disableallints
****************************************************************************/
static void up_disableallints(struct up_dev_s *priv, uint32_t *imr)
{
irqstate_t flags;
flags = enter_critical_section();
if (imr)
{
*imr = up_serialin(priv, SAM_UART_IMR_OFFSET);
}
up_serialout(priv, SAM_UART_IDR_OFFSET, UART_INT_ALLINTS);
leave_critical_section(flags);
}
* Name: up_interrupt
*
* Description:
* This is the common USART interrupt handler. It will be invoked when an
* interrupt is received on the 'irq'. It should call uart_xmitchars or
* uart_recvchars to perform the appropriate data transfers. The
* interrupt handling logic must be able to map the 'arg' to the
* appropriate uart_dev_s structure in order to call these functions.
*
****************************************************************************/
static int up_interrupt(int irq, void *context, void *arg)
{
struct uart_dev_s *dev = (struct uart_dev_s *)arg;
struct up_dev_s *priv;
uint32_t pending;
uint32_t imr;
int passes;
bool handled;
DEBUGASSERT(dev != NULL && dev->priv != NULL);
priv = (struct up_dev_s *)dev->priv;
* been looping for a long time.
*/
handled = true;
for (passes = 0; passes < 256 && handled; passes++)
{
handled = false;
* interrupts).
*/
priv->sr = up_serialin(priv, SAM_UART_SR_OFFSET);
imr = up_serialin(priv, SAM_UART_IMR_OFFSET);
pending = priv->sr & imr;
* character has been received and US_RHR has not yet been read.
*/
if ((pending & UART_INT_RXRDY) != 0)
{
uart_recvchars(dev);
handled = true;
}
* US_THR.
*/
if ((pending & UART_INT_TXRDY) != 0)
{
uart_xmitchars(dev);
handled = true;
}
}
return OK;
}
* Name: up_setup
*
* Description:
* Configure the USART baud, bits, parity, etc. This method is called the
* first time that the serial port is opened.
*
****************************************************************************/
static int up_setup(struct uart_dev_s *dev)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
#ifndef CONFIG_SUPPRESS_UART_CONFIG
uint32_t regval;
* was enabled and the pins were configured in sam_lowsetup().
*/
up_shutdown(dev);
#if defined(CONFIG_SERIAL_IFLOWCONTROL) || defined(CONFIG_SERIAL_OFLOWCONTROL)
#if defined(ATSAMA5D3) || defined(ATSAMA5D4)
* writing the USART_MODE field in the Mode Register (US_MR) to the value
* 0x2. ... Using this mode requires using the PDC or DMAC channel for
* reception. The transmitter can handle hardware handshaking in any case.
*/
if (priv->flowc)
{
regval = (UART_MR_MODE_HWHS | SAM_MR_USCLKS | UART_MR_CHMODE_NORMAL);
}
else
#endif
#endif
{
#if defined(ATSAMA5D2)
* peripheral clock as the timing source
*/
regval = (UART_MR_PERIPHCLK | UART_MR_CHMODE_NORMAL);
#elif defined(ATSAMA5D3) || defined(ATSAMA5D4)
* as the timing source
*/
regval = (UART_MR_MODE_NORMAL | SAM_MR_USCLKS | UART_MR_CHMODE_NORMAL);
#endif
}
#if defined(ATSAMA5D3) || defined(ATSAMA5D4)
if (priv->bits == 5)
{
regval |= UART_MR_CHRL_5BITS;
}
else if (priv->bits == 6)
{
regval |= UART_MR_CHRL_6BITS;
}
else if (priv->bits == 7)
{
regval |= UART_MR_CHRL_7BITS;
}
#ifdef SAMA5_HAVE_USART
else if (priv->bits == 9
#if defined(CONFIG_SAMA5_UART0)
&& priv->usartbase != SAM_UART0_VBASE
#endif
#if defined(CONFIG_SAMA5_UART1)
&& priv->usartbase != SAM_UART1_VBASE
#endif
#if defined(CONFIG_SAMA5_UART2)
# warning REVISIT
#endif
#if defined(CONFIG_SAMA5_UART3)
# warning REVISIT
#endif
#if defined(CONFIG_SAMA5_UART4)
# warning REVISIT
#endif
)
{
regval |= UART_MR_MODE9;
}
#endif
else
{
regval |= UART_MR_CHRL_8BITS;
}
#endif
if (priv->parity == 1)
{
regval |= UART_MR_PAR_ODD;
}
else if (priv->parity == 2)
{
regval |= UART_MR_PAR_EVEN;
}
else
{
regval |= UART_MR_PAR_NONE;
}
#if defined(ATSAMA5D3) || defined(ATSAMA5D4)
if (priv->stopbits2)
{
regval |= UART_MR_NBSTOP_2;
}
else
{
regval |= UART_MR_NBSTOP_1;
}
#endif
up_serialout(priv, SAM_UART_MR_OFFSET, regval);
* This may limit BAUD rates for lower USART clocks.
*/
regval = (SAM_USART_CLOCK + (priv->baud << 3)) / (priv->baud << 4);
up_serialout(priv, SAM_UART_BRGR_OFFSET, regval);
up_serialout(priv, SAM_UART_CR_OFFSET, (UART_CR_RXEN | UART_CR_TXEN));
#endif
return OK;
}
* Name: up_shutdown
*
* Description:
* Disable the USART. This method is called when the serial
* port is closed
*
****************************************************************************/
static void up_shutdown(struct uart_dev_s *dev)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
up_serialout(priv, SAM_UART_CR_OFFSET,
(UART_CR_RSTRX | UART_CR_RSTTX | UART_CR_RXDIS |
UART_CR_TXDIS));
up_disableallints(priv, NULL);
}
* Name: up_attach
*
* Description:
* Configure the USART to operation in interrupt driven mode. This method
* is called when the serial port is opened. Normally, this is just after
* the setup() method is called, however, the serial console may operate in
* a non-interrupt driven mode during the boot phase.
*
* RX and TX interrupts are not enabled when by the attach method (unless
* the hardware supports multiple levels of interrupt enabling). The RX
* and TX interrupts are not enabled until the txint() and rxint() methods
* are called.
*
****************************************************************************/
static int up_attach(struct uart_dev_s *dev)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
int ret;
ret = irq_attach(priv->irq, up_interrupt, dev);
if (ret == OK)
{
* in the USART
*/
up_enable_irq(priv->irq);
}
return ret;
}
* Name: up_detach
*
* Description:
* Detach USART interrupts. This method is called when the serial port is
* closed normally just before the shutdown method is called. The exception
* is the serial console which is never shutdown.
*
****************************************************************************/
static void up_detach(struct uart_dev_s *dev)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
up_disable_irq(priv->irq);
irq_detach(priv->irq);
}
* Name: up_ioctl
*
* Description:
* All ioctl calls will be routed through this method
*
****************************************************************************/
static int up_ioctl(struct file *filep, int cmd, unsigned long arg)
{
#if defined(CONFIG_SERIAL_TERMIOS) || defined(CONFIG_SERIAL_TIOCSERGSTRUCT)
struct inode *inode = filep->f_inode;
struct uart_dev_s *dev = inode->i_private;
#endif
int ret = OK;
switch (cmd)
{
#ifdef CONFIG_SERIAL_TIOCSERGSTRUCT
case TIOCSERGSTRUCT:
{
struct up_dev_s *user = (struct up_dev_s *)arg;
if (!user)
{
ret = -EINVAL;
}
else
{
memcpy(user, dev, sizeof(struct up_dev_s));
}
}
break;
#endif
#ifdef CONFIG_SERIAL_TERMIOS
case TCGETS:
{
struct termios *termiosp = (struct termios *)arg;
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
if (!termiosp)
{
ret = -EINVAL;
break;
}
termiosp->c_cflag = ((priv->parity != 0) ? PARENB : 0) |
((priv->parity == 1) ? PARODD : 0);
termiosp->c_cflag |= (priv->stopbits2) ? CSTOPB : 0;
#if defined(CONFIG_SERIAL_IFLOWCONTROL) || defined(CONFIG_SERIAL_OFLOWCONTROL)
termiosp->c_cflag |= (priv->flowc) ? (CCTS_OFLOW | CRTS_IFLOW): 0;
#endif
cfsetispeed(termiosp, priv->baud);
switch (priv->bits)
{
case 5:
termiosp->c_cflag |= CS5;
break;
case 6:
termiosp->c_cflag |= CS6;
break;
case 7:
termiosp->c_cflag |= CS7;
break;
default:
case 8:
termiosp->c_cflag |= CS8;
break;
case 9:
termiosp->c_cflag |= CS8;
break;
}
}
break;
case TCSETS:
{
struct termios *termiosp = (struct termios *)arg;
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
uint32_t baud;
uint32_t imr;
uint8_t parity;
uint8_t nbits;
bool stop2;
#if defined(CONFIG_SERIAL_IFLOWCONTROL) || defined(CONFIG_SERIAL_OFLOWCONTROL)
bool flowc;
#endif
if (!termiosp)
{
ret = -EINVAL;
break;
}
ret = OK;
baud = cfgetispeed(termiosp);
switch (termiosp->c_cflag & CSIZE)
{
case CS5:
nbits = 5;
break;
case CS6:
nbits = 6;
break;
case CS7:
nbits = 7;
break;
case CS8:
nbits = 8;
break;
#if 0
case CS9:
nbits = 9;
break;
#endif
default:
ret = -EINVAL;
break;
}
if ((termiosp->c_cflag & PARENB) != 0)
{
parity = (termiosp->c_cflag & PARODD) ? 1 : 2;
}
else
{
parity = 0;
}
stop2 = (termiosp->c_cflag & CSTOPB) != 0;
#if defined(CONFIG_SERIAL_IFLOWCONTROL) || defined(CONFIG_SERIAL_OFLOWCONTROL)
flowc = (termiosp->c_cflag & (CCTS_OFLOW | CRTS_IFLOW)) != 0;
#endif
if (ret == OK)
{
priv->baud = baud;
priv->parity = parity;
priv->bits = nbits;
priv->stopbits2 = stop2;
#if defined(CONFIG_SERIAL_IFLOWCONTROL) || defined(CONFIG_SERIAL_OFLOWCONTROL)
priv->flowc = flowc;
#endif
* implement TCSADRAIN / TCSAFLUSH
*/
up_disableallints(priv, &imr);
ret = up_setup(dev);
up_restoreusartint(priv, imr);
}
}
break;
#endif
default:
ret = -ENOTTY;
break;
}
return ret;
}
* Name: up_receive
*
* Description:
* Called (usually) from the interrupt level to receive one
* character from the USART. Error bits associated with the
* receipt are provided in the return 'status'.
*
****************************************************************************/
static int up_receive(struct uart_dev_s *dev, unsigned int *status)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
*status = priv->sr;
priv->sr = 0;
return (int)(up_serialin(priv, SAM_UART_RHR_OFFSET) & 0xff);
}
* Name: up_rxint
*
* Description:
* Call to enable or disable RXRDY interrupts
*
****************************************************************************/
static void up_rxint(struct uart_dev_s *dev, bool enable)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
if (enable)
{
* (or an Rx timeout occurs).
*/
#ifndef CONFIG_SUPPRESS_SERIAL_INTS
up_serialout(priv, SAM_UART_IER_OFFSET, UART_INT_RXRDY);
#endif
}
else
{
up_serialout(priv, SAM_UART_IDR_OFFSET, UART_INT_RXRDY);
}
}
* Name: up_rxavailable
*
* Description:
* Return true if the receive holding register is not empty
*
****************************************************************************/
static bool up_rxavailable(struct uart_dev_s *dev)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
return ((up_serialin(priv, SAM_UART_SR_OFFSET) & UART_INT_RXRDY) != 0);
}
* Name: up_send
*
* Description:
* This method will send one byte on the UART/USART
*
****************************************************************************/
static void up_send(struct uart_dev_s *dev, int ch)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
up_serialout(priv, SAM_UART_THR_OFFSET, (uint32_t)ch);
}
* Name: up_txint
*
* Description:
* Call to enable or disable TX interrupts
*
****************************************************************************/
static void up_txint(struct uart_dev_s *dev, bool enable)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
irqstate_t flags;
flags = enter_critical_section();
if (enable)
{
* is empty
*/
#ifndef CONFIG_SUPPRESS_SERIAL_INTS
up_serialout(priv, SAM_UART_IER_OFFSET, UART_INT_TXRDY);
* interrupts disabled (note this may recurse).
*/
uart_xmitchars(dev);
#endif
}
else
{
up_serialout(priv, SAM_UART_IDR_OFFSET, UART_INT_TXRDY);
}
leave_critical_section(flags);
}
* Name: up_txready
*
* Description:
* Return true if the transmit holding register is empty (TXRDY)
*
****************************************************************************/
static bool up_txready(struct uart_dev_s *dev)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
return ((up_serialin(priv, SAM_UART_SR_OFFSET) & UART_INT_TXRDY) != 0);
}
* Name: up_txempty
*
* Description:
* Return true if the transmit holding and shift registers are empty
*
****************************************************************************/
static bool up_txempty(struct uart_dev_s *dev)
{
struct up_dev_s *priv = (struct up_dev_s *)dev->priv;
return ((up_serialin(priv, SAM_UART_SR_OFFSET) & UART_INT_TXEMPTY) != 0);
}
* Public Functions
****************************************************************************/
#ifdef USE_EARLYSERIALINIT
* Name: uart_earlyserialinit
*
* Description:
* Performs the low level USART initialization early in debug so that the
* serial console will be available during bootup. This must be called
* before arm_serialinit.
*
****************************************************************************/
void uart_earlyserialinit(void)
{
* sam_lowsetup
*/
#ifdef TTYS0_DEV
up_disableallints(TTYS0_DEV.priv, NULL);
#endif
#ifdef TTYS1_DEV
up_disableallints(TTYS1_DEV.priv, NULL);
#endif
#ifdef TTYS2_DEV
up_disableallints(TTYS2_DEV.priv, NULL);
#endif
#ifdef TTYS3_DEV
up_disableallints(TTYS3_DEV.priv, NULL);
#endif
#ifdef TTYS4_DEV
up_disableallints(TTYS4_DEV.priv, NULL);
#endif
#ifdef TTYS5_DEV
up_disableallints(TTYS5_DEV.priv, NULL);
#endif
#ifdef TTYS6_DEV
up_disableallints(TTYS6_DEV.priv, NULL);
#endif
#ifdef TTYS7_DEV
up_disableallints(TTYS7_DEV.priv, NULL);
#endif
#ifdef TTYS8_DEV
up_disableallints(TTYS8_DEV.priv, NULL);
#endif
#ifdef TTYS9_DEV
up_disableallints(TTYS9_DEV.priv, NULL);
#endif
#if defined(SAMA5_HAVE_UART_CONSOLE) || defined(SAMA5_HAVE_USART_CONSOLE)
CONSOLE_DEV.isconsole = true;
up_setup(&CONSOLE_DEV);
#endif
}
#endif
* Name: uart_serialinit
*
* Description:
* Register UART/USART serial console and serial ports. This assumes that
* uart_earlyserialinit was called previously.
*
****************************************************************************/
void uart_serialinit(void)
{
#if defined(SAMA5_HAVE_UART_CONSOLE) || defined(SAMA5_HAVE_USART_CONSOLE)
uart_register("/dev/console", &CONSOLE_DEV);
#endif
#ifdef TTYS0_DEV
uart_register("/dev/ttyS0", &TTYS0_DEV);
#endif
#ifdef TTYS1_DEV
uart_register("/dev/ttyS1", &TTYS1_DEV);
#endif
#ifdef TTYS2_DEV
uart_register("/dev/ttyS2", &TTYS2_DEV);
#endif
#ifdef TTYS3_DEV
uart_register("/dev/ttyS3", &TTYS3_DEV);
#endif
#ifdef TTYS4_DEV
uart_register("/dev/ttyS4", &TTYS4_DEV);
#endif
#ifdef TTYS5_DEV
uart_register("/dev/ttyS5", &TTYS5_DEV);
#endif
#ifdef TTYS6_DEV
uart_register("/dev/ttyS6", &TTYS6_DEV);
#endif
#ifdef TTYS7_DEV
uart_register("/dev/ttyS7", &TTYS7_DEV);
#endif
#ifdef TTYS8_DEV
uart_register("/dev/ttyS8", &TTYS8_DEV);
#endif
#ifdef TTYS9_DEV
uart_register("/dev/ttyS9", &TTYS9_DEV);
#endif
}
#endif
#endif