Merge tag 'pinctrl-v4.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6-block.git] / drivers / tty / serial / 8250 / 8250.h
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * 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.
1da177e4
LT
12 */
13
bc49a661 14#include <linux/serial_8250.h>
aef9a7bd 15#include <linux/serial_reg.h>
9ee4b83e
HK
16#include <linux/dmaengine.h>
17
18struct uart_8250_dma {
f1a297bb 19 int (*tx_dma)(struct uart_8250_port *p);
33d9b8b2 20 int (*rx_dma)(struct uart_8250_port *p);
f1a297bb 21
9a1870ce 22 /* Filter function */
9ee4b83e 23 dma_filter_fn fn;
9a1870ce 24 /* Parameter to the filter function */
9ee4b83e
HK
25 void *rx_param;
26 void *tx_param;
27
9ee4b83e
HK
28 struct dma_slave_config rxconf;
29 struct dma_slave_config txconf;
30
31 struct dma_chan *rxchan;
32 struct dma_chan *txchan;
33
d1834bab
AS
34 /* Device address base for DMA operations */
35 phys_addr_t rx_dma_addr;
36 phys_addr_t tx_dma_addr;
37
38 /* DMA address of the buffer in memory */
9ee4b83e
HK
39 dma_addr_t rx_addr;
40 dma_addr_t tx_addr;
41
42 dma_cookie_t rx_cookie;
43 dma_cookie_t tx_cookie;
44
45 void *rx_buf;
46
47 size_t rx_size;
48 size_t tx_size;
49
eafb9eea
JO
50 unsigned char tx_running;
51 unsigned char tx_err;
52 unsigned char rx_running;
9ee4b83e 53};
1da177e4
LT
54
55struct old_serial_port {
56 unsigned int uart;
57 unsigned int baud_base;
58 unsigned int port;
59 unsigned int irq;
079119a2 60 upf_t flags;
1da177e4 61 unsigned char io_type;
7f1dc2f3 62 unsigned char __iomem *iomem_base;
1da177e4
LT
63 unsigned short iomem_reg_shift;
64};
65
1da177e4
LT
66struct serial8250_config {
67 const char *name;
68 unsigned short fifo_size;
69 unsigned short tx_loadsz;
70 unsigned char fcr;
aef9a7bd 71 unsigned char rxtrig_bytes[UART_FCR_R_TRIG_MAX_STATE];
1da177e4
LT
72 unsigned int flags;
73};
74
75#define UART_CAP_FIFO (1 << 8) /* UART has FIFO */
76#define UART_CAP_EFR (1 << 9) /* UART has EFR */
77#define UART_CAP_SLEEP (1 << 10) /* UART has IER sleep */
78#define UART_CAP_AFE (1 << 11) /* MCR-based hw flow control */
79#define UART_CAP_UUE (1 << 12) /* UART needs IER bit 6 set (Xscale) */
4539c24f 80#define UART_CAP_RTOIE (1 << 13) /* UART needs IER bit 4 set (Xscale, Tegra) */
ebebd49a 81#define UART_CAP_HFIFO (1 << 14) /* UART has a "hidden" FIFO */
d74d5d1b 82#define UART_CAP_RPM (1 << 15) /* Runtime PM is active while idle */
1da177e4 83
4ba5e35d 84#define UART_BUG_QUOT (1 << 0) /* UART has buggy quot LSB */
55d3b282 85#define UART_BUG_TXEN (1 << 1) /* UART has buggy TX IIR status */
21c614a7 86#define UART_BUG_NOMSR (1 << 2) /* UART has buggy MSR status bits (Au1x00) */
363f66fe 87#define UART_BUG_THRE (1 << 3) /* UART has buggy THRE reassertion */
eb26dfe8 88#define UART_BUG_PARITY (1 << 4) /* UART mishandles parity if FIFO enabled */
4ba5e35d 89
1da177e4
LT
90
91#ifdef CONFIG_SERIAL_8250_SHARE_IRQ
92#define SERIAL8250_SHARE_IRQS 1
93#else
94#define SERIAL8250_SHARE_IRQS 0
95#endif
96
b3bd6668
AW
97#define SERIAL8250_PORT_FLAGS(_base, _irq, _flags) \
98 { \
99 .iobase = _base, \
100 .irq = _irq, \
101 .uartclk = 1843200, \
102 .iotype = UPIO_PORT, \
103 .flags = UPF_BOOT_AUTOCONF | (_flags), \
104 }
105
106#define SERIAL8250_PORT(_base, _irq) SERIAL8250_PORT_FLAGS(_base, _irq, 0)
107
108
3f0ab327
PG
109static inline int serial_in(struct uart_8250_port *up, int offset)
110{
111 return up->port.serial_in(&up->port, offset);
112}
113
114static inline void serial_out(struct uart_8250_port *up, int offset, int value)
115{
116 up->port.serial_out(&up->port, offset, value);
117}
118
0ad372b9
SM
119void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p);
120
cc419fa0
MD
121static inline int serial_dl_read(struct uart_8250_port *up)
122{
123 return up->dl_read(up);
124}
125
126static inline void serial_dl_write(struct uart_8250_port *up, int value)
127{
128 up->dl_write(up, value);
129}
130
ae14a795 131struct uart_8250_port *serial8250_get_port(int line);
77285243
SAS
132void serial8250_rpm_get(struct uart_8250_port *p);
133void serial8250_rpm_put(struct uart_8250_port *p);
e490c914
MK
134int serial8250_em485_init(struct uart_8250_port *p);
135void serial8250_em485_destroy(struct uart_8250_port *p);
ae14a795 136
36fd95b1
YY
137static inline void serial8250_out_MCR(struct uart_8250_port *up, int value)
138{
139 serial_out(up, UART_MCR, value);
140}
141
142static inline int serial8250_in_MCR(struct uart_8250_port *up)
143{
5db4f7f8 144 return serial_in(up, UART_MCR);
36fd95b1
YY
145}
146
1da177e4
LT
147#if defined(__alpha__) && !defined(CONFIG_PCI)
148/*
149 * Digital did something really horribly wrong with the OUT1 and OUT2
150 * lines on at least some ALPHA's. The failure mode is that if either
151 * is cleared, the machine locks up with endless interrupts.
152 */
153#define ALPHA_KLUDGE_MCR (UART_MCR_OUT2 | UART_MCR_OUT1)
1da177e4
LT
154#else
155#define ALPHA_KLUDGE_MCR 0
156#endif
835d844d
SY
157
158#ifdef CONFIG_SERIAL_8250_PNP
159int serial8250_pnp_init(void);
160void serial8250_pnp_exit(void);
161#else
162static inline int serial8250_pnp_init(void) { return 0; }
163static inline void serial8250_pnp_exit(void) { }
164#endif
165
fa01e2ca
RRD
166#ifdef CONFIG_SERIAL_8250_FINTEK
167int fintek_8250_probe(struct uart_8250_port *uart);
168#else
169static inline int fintek_8250_probe(struct uart_8250_port *uart) { return 0; }
170#endif
171
54ec52b6
TL
172#ifdef CONFIG_ARCH_OMAP1
173static inline int is_omap1_8250(struct uart_8250_port *pt)
174{
175 int res;
176
177 switch (pt->port.mapbase) {
178 case OMAP1_UART1_BASE:
179 case OMAP1_UART2_BASE:
180 case OMAP1_UART3_BASE:
181 res = 1;
182 break;
183 default:
184 res = 0;
185 break;
186 }
187
188 return res;
189}
190
191static inline int is_omap1510_8250(struct uart_8250_port *pt)
192{
193 if (!cpu_is_omap1510())
194 return 0;
195
196 return is_omap1_8250(pt);
197}
198#else
199static inline int is_omap1_8250(struct uart_8250_port *pt)
200{
201 return 0;
202}
203static inline int is_omap1510_8250(struct uart_8250_port *pt)
204{
205 return 0;
206}
207#endif
9ee4b83e
HK
208
209#ifdef CONFIG_SERIAL_8250_DMA
210extern int serial8250_tx_dma(struct uart_8250_port *);
33d9b8b2
PH
211extern int serial8250_rx_dma(struct uart_8250_port *);
212extern void serial8250_rx_dma_flush(struct uart_8250_port *);
9ee4b83e
HK
213extern int serial8250_request_dma(struct uart_8250_port *);
214extern void serial8250_release_dma(struct uart_8250_port *);
215#else
216static inline int serial8250_tx_dma(struct uart_8250_port *p)
217{
218 return -1;
219}
33d9b8b2 220static inline int serial8250_rx_dma(struct uart_8250_port *p)
9ee4b83e
HK
221{
222 return -1;
223}
33d9b8b2 224static inline void serial8250_rx_dma_flush(struct uart_8250_port *p) { }
9ee4b83e
HK
225static inline int serial8250_request_dma(struct uart_8250_port *p)
226{
227 return -1;
228}
229static inline void serial8250_release_dma(struct uart_8250_port *p) { }
230#endif
d81e50f6
PH
231
232static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
233{
234 unsigned char status;
235
236 status = serial_in(up, 0x04); /* EXCR2 */
237#define PRESL(x) ((x) & 0x30)
238 if (PRESL(status) == 0x10) {
239 /* already in high speed mode */
240 return 0;
241 } else {
242 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
243 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
244 serial_out(up, 0x04, status);
245 }
246 return 1;
247}
b6830f6d
PH
248
249static inline int serial_index(struct uart_port *port)
250{
251 return port->minor - 64;
252}