serial_txx9.c
来自「linux 内核源代码」· C语言 代码 · 共 1,269 行 · 第 1/3 页
C
1,269 行
/* * drivers/serial/serial_txx9.c * * Derived from many drivers using generic_serial interface, * especially serial_tx3912.c by Steven J. Hill and r39xx_serial.c * (was in Linux/VR tree) by Jim Pick. * * Copyright (C) 1999 Harald Koerfgen * Copyright (C) 2000 Jim Pick <jim@jimpick.com> * Copyright (C) 2001 Steven J. Hill (sjhill@realitydiluted.com) * Copyright (C) 2000-2002 Toshiba Corporation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Serial driver for TX3927/TX4927/TX4925/TX4938 internal SIO controller */#if defined(CONFIG_SERIAL_TXX9_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)#define SUPPORT_SYSRQ#endif#include <linux/module.h>#include <linux/ioport.h>#include <linux/init.h>#include <linux/console.h>#include <linux/delay.h>#include <linux/platform_device.h>#include <linux/pci.h>#include <linux/serial_core.h>#include <linux/serial.h>#include <asm/io.h>static char *serial_version = "1.11";static char *serial_name = "TX39/49 Serial driver";#define PASS_LIMIT 256#if !defined(CONFIG_SERIAL_TXX9_STDSERIAL)/* "ttyS" is used for standard serial driver */#define TXX9_TTY_NAME "ttyTX"#define TXX9_TTY_MINOR_START 196#define TXX9_TTY_MAJOR 204#else/* acts like standard serial driver */#define TXX9_TTY_NAME "ttyS"#define TXX9_TTY_MINOR_START 64#define TXX9_TTY_MAJOR TTY_MAJOR#endif/* flag aliases */#define UPF_TXX9_HAVE_CTS_LINE UPF_BUGGY_UART#define UPF_TXX9_USE_SCLK UPF_MAGIC_MULTIPLIER#ifdef CONFIG_PCI/* support for Toshiba TC86C001 SIO */#define ENABLE_SERIAL_TXX9_PCI#endif/* * Number of serial ports */#define UART_NR CONFIG_SERIAL_TXX9_NR_UARTSstruct uart_txx9_port { struct uart_port port; /* No additional info for now */};#define TXX9_REGION_SIZE 0x24/* TXX9 Serial Registers */#define TXX9_SILCR 0x00#define TXX9_SIDICR 0x04#define TXX9_SIDISR 0x08#define TXX9_SICISR 0x0c#define TXX9_SIFCR 0x10#define TXX9_SIFLCR 0x14#define TXX9_SIBGR 0x18#define TXX9_SITFIFO 0x1c#define TXX9_SIRFIFO 0x20/* SILCR : Line Control */#define TXX9_SILCR_SCS_MASK 0x00000060#define TXX9_SILCR_SCS_IMCLK 0x00000000#define TXX9_SILCR_SCS_IMCLK_BG 0x00000020#define TXX9_SILCR_SCS_SCLK 0x00000040#define TXX9_SILCR_SCS_SCLK_BG 0x00000060#define TXX9_SILCR_UEPS 0x00000010#define TXX9_SILCR_UPEN 0x00000008#define TXX9_SILCR_USBL_MASK 0x00000004#define TXX9_SILCR_USBL_1BIT 0x00000000#define TXX9_SILCR_USBL_2BIT 0x00000004#define TXX9_SILCR_UMODE_MASK 0x00000003#define TXX9_SILCR_UMODE_8BIT 0x00000000#define TXX9_SILCR_UMODE_7BIT 0x00000001/* SIDICR : DMA/Int. Control */#define TXX9_SIDICR_TDE 0x00008000#define TXX9_SIDICR_RDE 0x00004000#define TXX9_SIDICR_TIE 0x00002000#define TXX9_SIDICR_RIE 0x00001000#define TXX9_SIDICR_SPIE 0x00000800#define TXX9_SIDICR_CTSAC 0x00000600#define TXX9_SIDICR_STIE_MASK 0x0000003f#define TXX9_SIDICR_STIE_OERS 0x00000020#define TXX9_SIDICR_STIE_CTSS 0x00000010#define TXX9_SIDICR_STIE_RBRKD 0x00000008#define TXX9_SIDICR_STIE_TRDY 0x00000004#define TXX9_SIDICR_STIE_TXALS 0x00000002#define TXX9_SIDICR_STIE_UBRKD 0x00000001/* SIDISR : DMA/Int. Status */#define TXX9_SIDISR_UBRK 0x00008000#define TXX9_SIDISR_UVALID 0x00004000#define TXX9_SIDISR_UFER 0x00002000#define TXX9_SIDISR_UPER 0x00001000#define TXX9_SIDISR_UOER 0x00000800#define TXX9_SIDISR_ERI 0x00000400#define TXX9_SIDISR_TOUT 0x00000200#define TXX9_SIDISR_TDIS 0x00000100#define TXX9_SIDISR_RDIS 0x00000080#define TXX9_SIDISR_STIS 0x00000040#define TXX9_SIDISR_RFDN_MASK 0x0000001f/* SICISR : Change Int. Status */#define TXX9_SICISR_OERS 0x00000020#define TXX9_SICISR_CTSS 0x00000010#define TXX9_SICISR_RBRKD 0x00000008#define TXX9_SICISR_TRDY 0x00000004#define TXX9_SICISR_TXALS 0x00000002#define TXX9_SICISR_UBRKD 0x00000001/* SIFCR : FIFO Control */#define TXX9_SIFCR_SWRST 0x00008000#define TXX9_SIFCR_RDIL_MASK 0x00000180#define TXX9_SIFCR_RDIL_1 0x00000000#define TXX9_SIFCR_RDIL_4 0x00000080#define TXX9_SIFCR_RDIL_8 0x00000100#define TXX9_SIFCR_RDIL_12 0x00000180#define TXX9_SIFCR_RDIL_MAX 0x00000180#define TXX9_SIFCR_TDIL_MASK 0x00000018#define TXX9_SIFCR_TDIL_MASK 0x00000018#define TXX9_SIFCR_TDIL_1 0x00000000#define TXX9_SIFCR_TDIL_4 0x00000001#define TXX9_SIFCR_TDIL_8 0x00000010#define TXX9_SIFCR_TDIL_MAX 0x00000010#define TXX9_SIFCR_TFRST 0x00000004#define TXX9_SIFCR_RFRST 0x00000002#define TXX9_SIFCR_FRSTE 0x00000001#define TXX9_SIO_TX_FIFO 8#define TXX9_SIO_RX_FIFO 16/* SIFLCR : Flow Control */#define TXX9_SIFLCR_RCS 0x00001000#define TXX9_SIFLCR_TES 0x00000800#define TXX9_SIFLCR_RTSSC 0x00000200#define TXX9_SIFLCR_RSDE 0x00000100#define TXX9_SIFLCR_TSDE 0x00000080#define TXX9_SIFLCR_RTSTL_MASK 0x0000001e#define TXX9_SIFLCR_RTSTL_MAX 0x0000001e#define TXX9_SIFLCR_TBRK 0x00000001/* SIBGR : Baudrate Control */#define TXX9_SIBGR_BCLK_MASK 0x00000300#define TXX9_SIBGR_BCLK_T0 0x00000000#define TXX9_SIBGR_BCLK_T2 0x00000100#define TXX9_SIBGR_BCLK_T4 0x00000200#define TXX9_SIBGR_BCLK_T6 0x00000300#define TXX9_SIBGR_BRD_MASK 0x000000ffstatic inline unsigned int sio_in(struct uart_txx9_port *up, int offset){ switch (up->port.iotype) { default: return __raw_readl(up->port.membase + offset); case UPIO_PORT: return inl(up->port.iobase + offset); }}static inline voidsio_out(struct uart_txx9_port *up, int offset, int value){ switch (up->port.iotype) { default: __raw_writel(value, up->port.membase + offset); break; case UPIO_PORT: outl(value, up->port.iobase + offset); break; }}static inline voidsio_mask(struct uart_txx9_port *up, int offset, unsigned int value){ sio_out(up, offset, sio_in(up, offset) & ~value);}static inline voidsio_set(struct uart_txx9_port *up, int offset, unsigned int value){ sio_out(up, offset, sio_in(up, offset) | value);}static inline voidsio_quot_set(struct uart_txx9_port *up, int quot){ quot >>= 1; if (quot < 256) sio_out(up, TXX9_SIBGR, quot | TXX9_SIBGR_BCLK_T0); else if (quot < (256 << 2)) sio_out(up, TXX9_SIBGR, (quot >> 2) | TXX9_SIBGR_BCLK_T2); else if (quot < (256 << 4)) sio_out(up, TXX9_SIBGR, (quot >> 4) | TXX9_SIBGR_BCLK_T4); else if (quot < (256 << 6)) sio_out(up, TXX9_SIBGR, (quot >> 6) | TXX9_SIBGR_BCLK_T6); else sio_out(up, TXX9_SIBGR, 0xff | TXX9_SIBGR_BCLK_T6);}static void serial_txx9_stop_tx(struct uart_port *port){ struct uart_txx9_port *up = (struct uart_txx9_port *)port; sio_mask(up, TXX9_SIDICR, TXX9_SIDICR_TIE);}static void serial_txx9_start_tx(struct uart_port *port){ struct uart_txx9_port *up = (struct uart_txx9_port *)port; sio_set(up, TXX9_SIDICR, TXX9_SIDICR_TIE);}static void serial_txx9_stop_rx(struct uart_port *port){ struct uart_txx9_port *up = (struct uart_txx9_port *)port; up->port.read_status_mask &= ~TXX9_SIDISR_RDIS;}static void serial_txx9_enable_ms(struct uart_port *port){ /* TXX9-SIO can not control DTR... */}static void serial_txx9_initialize(struct uart_port *port){ struct uart_txx9_port *up = (struct uart_txx9_port *)port; unsigned int tmout = 10000; sio_out(up, TXX9_SIFCR, TXX9_SIFCR_SWRST); /* TX4925 BUG WORKAROUND. Accessing SIOC register * immediately after soft reset causes bus error. */ mmiowb(); udelay(1); while ((sio_in(up, TXX9_SIFCR) & TXX9_SIFCR_SWRST) && --tmout) udelay(1); /* TX Int by FIFO Empty, RX Int by Receiving 1 char. */ sio_set(up, TXX9_SIFCR, TXX9_SIFCR_TDIL_MAX | TXX9_SIFCR_RDIL_1); /* initial settings */ sio_out(up, TXX9_SILCR, TXX9_SILCR_UMODE_8BIT | TXX9_SILCR_USBL_1BIT | ((up->port.flags & UPF_TXX9_USE_SCLK) ? TXX9_SILCR_SCS_SCLK_BG : TXX9_SILCR_SCS_IMCLK_BG)); sio_quot_set(up, uart_get_divisor(port, 9600)); sio_out(up, TXX9_SIFLCR, TXX9_SIFLCR_RTSTL_MAX /* 15 */); sio_out(up, TXX9_SIDICR, 0);}static inline voidreceive_chars(struct uart_txx9_port *up, unsigned int *status){ struct tty_struct *tty = up->port.info->tty; unsigned char ch; unsigned int disr = *status; int max_count = 256; char flag; unsigned int next_ignore_status_mask; do { ch = sio_in(up, TXX9_SIRFIFO); flag = TTY_NORMAL; up->port.icount.rx++; /* mask out RFDN_MASK bit added by previous overrun */ next_ignore_status_mask = up->port.ignore_status_mask & ~TXX9_SIDISR_RFDN_MASK; if (unlikely(disr & (TXX9_SIDISR_UBRK | TXX9_SIDISR_UPER | TXX9_SIDISR_UFER | TXX9_SIDISR_UOER))) { /* * For statistics only */ if (disr & TXX9_SIDISR_UBRK) { disr &= ~(TXX9_SIDISR_UFER | TXX9_SIDISR_UPER); up->port.icount.brk++; /* * We do the SysRQ and SAK checking * here because otherwise the break * may get masked by ignore_status_mask * or read_status_mask. */ if (uart_handle_break(&up->port)) goto ignore_char; } else if (disr & TXX9_SIDISR_UPER) up->port.icount.parity++; else if (disr & TXX9_SIDISR_UFER) up->port.icount.frame++; if (disr & TXX9_SIDISR_UOER) { up->port.icount.overrun++; /* * The receiver read buffer still hold * a char which caused overrun. * Ignore next char by adding RFDN_MASK * to ignore_status_mask temporarily. */ next_ignore_status_mask |= TXX9_SIDISR_RFDN_MASK; } /* * Mask off conditions which should be ingored. */ disr &= up->port.read_status_mask; if (disr & TXX9_SIDISR_UBRK) { flag = TTY_BREAK; } else if (disr & TXX9_SIDISR_UPER) flag = TTY_PARITY; else if (disr & TXX9_SIDISR_UFER) flag = TTY_FRAME; } if (uart_handle_sysrq_char(&up->port, ch)) goto ignore_char; uart_insert_char(&up->port, disr, TXX9_SIDISR_UOER, ch, flag); ignore_char: up->port.ignore_status_mask = next_ignore_status_mask; disr = sio_in(up, TXX9_SIDISR); } while (!(disr & TXX9_SIDISR_UVALID) && (max_count-- > 0)); spin_unlock(&up->port.lock); tty_flip_buffer_push(tty); spin_lock(&up->port.lock); *status = disr;}static inline void transmit_chars(struct uart_txx9_port *up){ struct circ_buf *xmit = &up->port.info->xmit; int count; if (up->port.x_char) { sio_out(up, TXX9_SITFIFO, up->port.x_char); up->port.icount.tx++; up->port.x_char = 0; return; } if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) { serial_txx9_stop_tx(&up->port); return; } count = TXX9_SIO_TX_FIFO; do { sio_out(up, TXX9_SITFIFO, xmit->buf[xmit->tail]); xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); up->port.icount.tx++; if (uart_circ_empty(xmit)) break; } while (--count > 0); if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) uart_write_wakeup(&up->port); if (uart_circ_empty(xmit)) serial_txx9_stop_tx(&up->port);}static irqreturn_t serial_txx9_interrupt(int irq, void *dev_id){ int pass_counter = 0; struct uart_txx9_port *up = dev_id; unsigned int status; while (1) { spin_lock(&up->port.lock); status = sio_in(up, TXX9_SIDISR); if (!(sio_in(up, TXX9_SIDICR) & TXX9_SIDICR_TIE)) status &= ~TXX9_SIDISR_TDIS; if (!(status & (TXX9_SIDISR_TDIS | TXX9_SIDISR_RDIS | TXX9_SIDISR_TOUT))) { spin_unlock(&up->port.lock); break; } if (status & TXX9_SIDISR_RDIS) receive_chars(up, &status); if (status & TXX9_SIDISR_TDIS) transmit_chars(up); /* Clear TX/RX Int. Status */ sio_mask(up, TXX9_SIDISR, TXX9_SIDISR_TDIS | TXX9_SIDISR_RDIS | TXX9_SIDISR_TOUT); spin_unlock(&up->port.lock); if (pass_counter++ > PASS_LIMIT) break; } return pass_counter ? IRQ_HANDLED : IRQ_NONE;}static unsigned int serial_txx9_tx_empty(struct uart_port *port){ struct uart_txx9_port *up = (struct uart_txx9_port *)port; unsigned long flags; unsigned int ret; spin_lock_irqsave(&up->port.lock, flags); ret = (sio_in(up, TXX9_SICISR) & TXX9_SICISR_TXALS) ? TIOCSER_TEMT : 0; spin_unlock_irqrestore(&up->port.lock, flags);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?