blob: 363d549d2e0dc1763595242ea32601b62d37bb1b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for 8250/16550-type serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright (C) 2001 Russell King.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Russell Kingbc49a662005-09-01 15:56:26 +010014#include <linux/serial_8250.h>
Heikki Krogerus9ee4b832013-01-10 11:25:11 +020015#include <linux/dmaengine.h>
16
17struct uart_8250_dma {
18 dma_filter_fn fn;
19 void *rx_param;
20 void *tx_param;
21
22 int rx_chan_id;
23 int tx_chan_id;
24
25 struct dma_slave_config rxconf;
26 struct dma_slave_config txconf;
27
28 struct dma_chan *rxchan;
29 struct dma_chan *txchan;
30
31 dma_addr_t rx_addr;
32 dma_addr_t tx_addr;
33
34 dma_cookie_t rx_cookie;
35 dma_cookie_t tx_cookie;
36
37 void *rx_buf;
38
39 size_t rx_size;
40 size_t tx_size;
41
42 unsigned char tx_running:1;
43};
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45struct old_serial_port {
46 unsigned int uart;
47 unsigned int baud_base;
48 unsigned int port;
49 unsigned int irq;
50 unsigned int flags;
51 unsigned char hub6;
52 unsigned char io_type;
53 unsigned char *iomem_base;
54 unsigned short iomem_reg_shift;
Vikram Pandita1c2f0492009-09-19 13:13:19 -070055 unsigned long irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058struct serial8250_config {
59 const char *name;
60 unsigned short fifo_size;
61 unsigned short tx_loadsz;
62 unsigned char fcr;
63 unsigned int flags;
64};
65
66#define UART_CAP_FIFO (1 << 8) /* UART has FIFO */
67#define UART_CAP_EFR (1 << 9) /* UART has EFR */
68#define UART_CAP_SLEEP (1 << 10) /* UART has IER sleep */
69#define UART_CAP_AFE (1 << 11) /* MCR-based hw flow control */
70#define UART_CAP_UUE (1 << 12) /* UART needs IER bit 6 set (Xscale) */
Stephen Warren4539c242011-05-17 16:12:36 -060071#define UART_CAP_RTOIE (1 << 13) /* UART needs IER bit 4 set (Xscale, Tegra) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Russell King4ba5e352005-06-23 10:43:04 +010073#define UART_BUG_QUOT (1 << 0) /* UART has buggy quot LSB */
Russell King55d3b282005-06-23 15:05:41 +010074#define UART_BUG_TXEN (1 << 1) /* UART has buggy TX IIR status */
Pantelis Antoniou21c614a2005-11-06 09:07:03 +000075#define UART_BUG_NOMSR (1 << 2) /* UART has buggy MSR status bits (Au1x00) */
Will Newton363f66f2008-09-02 14:35:44 -070076#define UART_BUG_THRE (1 << 3) /* UART has buggy THRE reassertion */
Alan Coxeb26dfe2012-07-12 13:00:31 +010077#define UART_BUG_PARITY (1 << 4) /* UART mishandles parity if FIFO enabled */
Russell King4ba5e352005-06-23 10:43:04 +010078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define PROBE_RSA (1 << 0)
80#define PROBE_ANY (~0)
81
82#define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
83
84#ifdef CONFIG_SERIAL_8250_SHARE_IRQ
85#define SERIAL8250_SHARE_IRQS 1
86#else
87#define SERIAL8250_SHARE_IRQS 0
88#endif
89
Paul Gortmaker3f0ab322012-03-08 19:12:09 -050090static inline int serial_in(struct uart_8250_port *up, int offset)
91{
92 return up->port.serial_in(&up->port, offset);
93}
94
95static inline void serial_out(struct uart_8250_port *up, int offset, int value)
96{
97 up->port.serial_out(&up->port, offset, value);
98}
99
Sudhakar Mamillapalli0ad372b2012-04-10 14:10:58 -0700100void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p);
101
Magnus Dammcc419fa02012-05-02 21:46:51 +0900102static inline int serial_dl_read(struct uart_8250_port *up)
103{
104 return up->dl_read(up);
105}
106
107static inline void serial_dl_write(struct uart_8250_port *up, int value)
108{
109 up->dl_write(up, value);
110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#if defined(__alpha__) && !defined(CONFIG_PCI)
113/*
114 * Digital did something really horribly wrong with the OUT1 and OUT2
115 * lines on at least some ALPHA's. The failure mode is that if either
116 * is cleared, the machine locks up with endless interrupts.
117 */
118#define ALPHA_KLUDGE_MCR (UART_MCR_OUT2 | UART_MCR_OUT1)
119#elif defined(CONFIG_SBC8560)
120/*
121 * WindRiver did something similarly broken on their SBC8560 board. The
122 * UART tristates its IRQ output while OUT2 is clear, but they pulled
123 * the interrupt line _up_ instead of down, so if we register the IRQ
124 * while the UART is in that state, we die in an IRQ storm. */
125#define ALPHA_KLUDGE_MCR (UART_MCR_OUT2)
126#else
127#define ALPHA_KLUDGE_MCR 0
128#endif
Sean Young835d8442012-09-07 19:06:23 +0100129
130#ifdef CONFIG_SERIAL_8250_PNP
131int serial8250_pnp_init(void);
132void serial8250_pnp_exit(void);
133#else
134static inline int serial8250_pnp_init(void) { return 0; }
135static inline void serial8250_pnp_exit(void) { }
136#endif
137
Tony Lindgren54ec52b2012-10-03 15:31:58 -0700138#ifdef CONFIG_ARCH_OMAP1
139static inline int is_omap1_8250(struct uart_8250_port *pt)
140{
141 int res;
142
143 switch (pt->port.mapbase) {
144 case OMAP1_UART1_BASE:
145 case OMAP1_UART2_BASE:
146 case OMAP1_UART3_BASE:
147 res = 1;
148 break;
149 default:
150 res = 0;
151 break;
152 }
153
154 return res;
155}
156
157static inline int is_omap1510_8250(struct uart_8250_port *pt)
158{
159 if (!cpu_is_omap1510())
160 return 0;
161
162 return is_omap1_8250(pt);
163}
164#else
165static inline int is_omap1_8250(struct uart_8250_port *pt)
166{
167 return 0;
168}
169static inline int is_omap1510_8250(struct uart_8250_port *pt)
170{
171 return 0;
172}
173#endif
Heikki Krogerus9ee4b832013-01-10 11:25:11 +0200174
175#ifdef CONFIG_SERIAL_8250_DMA
176extern int serial8250_tx_dma(struct uart_8250_port *);
177extern int serial8250_rx_dma(struct uart_8250_port *, unsigned int iir);
178extern int serial8250_request_dma(struct uart_8250_port *);
179extern void serial8250_release_dma(struct uart_8250_port *);
180#else
181static inline int serial8250_tx_dma(struct uart_8250_port *p)
182{
183 return -1;
184}
185static inline int serial8250_rx_dma(struct uart_8250_port *p, unsigned int iir)
186{
187 return -1;
188}
189static inline int serial8250_request_dma(struct uart_8250_port *p)
190{
191 return -1;
192}
193static inline void serial8250_release_dma(struct uart_8250_port *p) { }
194#endif