blob: dd233108ec07ab6f454400f11740400fbf4f53b5 [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>
Yoshihiro YUNOMAEaef9a7b2014-07-16 01:19:36 +000015#include <linux/serial_reg.h>
Heikki Krogerus9ee4b832013-01-10 11:25:11 +020016#include <linux/dmaengine.h>
17
18struct uart_8250_dma {
Sebastian Andrzej Siewiorf1a297b2014-09-29 20:06:42 +020019 int (*tx_dma)(struct uart_8250_port *p);
20 int (*rx_dma)(struct uart_8250_port *p, unsigned int iir);
21
Andy Shevchenko9a1870c2014-08-19 20:29:22 +030022 /* Filter function */
Heikki Krogerus9ee4b832013-01-10 11:25:11 +020023 dma_filter_fn fn;
Andy Shevchenko9a1870c2014-08-19 20:29:22 +030024 /* Parameter to the filter function */
Heikki Krogerus9ee4b832013-01-10 11:25:11 +020025 void *rx_param;
26 void *tx_param;
27
Heikki Krogerus9ee4b832013-01-10 11:25:11 +020028 struct dma_slave_config rxconf;
29 struct dma_slave_config txconf;
30
31 struct dma_chan *rxchan;
32 struct dma_chan *txchan;
33
34 dma_addr_t rx_addr;
35 dma_addr_t tx_addr;
36
37 dma_cookie_t rx_cookie;
38 dma_cookie_t tx_cookie;
39
40 void *rx_buf;
41
42 size_t rx_size;
43 size_t tx_size;
44
45 unsigned char tx_running:1;
Sebastian Andrzej Siewiorb2202822014-09-29 20:06:40 +020046 unsigned char tx_err: 1;
Sebastian Andrzej Siewior0fcb7902014-09-29 20:06:41 +020047 unsigned char rx_running:1;
Heikki Krogerus9ee4b832013-01-10 11:25:11 +020048};
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50struct old_serial_port {
51 unsigned int uart;
52 unsigned int baud_base;
53 unsigned int port;
54 unsigned int irq;
Andy Shevchenko079119a2015-03-11 13:52:53 +020055 upf_t flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 unsigned char hub6;
57 unsigned char io_type;
Sudip Mukherjee7f1dc2f2014-10-16 14:16:22 +053058 unsigned char __iomem *iomem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned short iomem_reg_shift;
Vikram Pandita1c2f0492009-09-19 13:13:19 -070060 unsigned long irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063struct serial8250_config {
64 const char *name;
65 unsigned short fifo_size;
66 unsigned short tx_loadsz;
67 unsigned char fcr;
Yoshihiro YUNOMAEaef9a7b2014-07-16 01:19:36 +000068 unsigned char rxtrig_bytes[UART_FCR_R_TRIG_MAX_STATE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 unsigned int flags;
70};
71
72#define UART_CAP_FIFO (1 << 8) /* UART has FIFO */
73#define UART_CAP_EFR (1 << 9) /* UART has EFR */
74#define UART_CAP_SLEEP (1 << 10) /* UART has IER sleep */
75#define UART_CAP_AFE (1 << 11) /* MCR-based hw flow control */
76#define UART_CAP_UUE (1 << 12) /* UART needs IER bit 6 set (Xscale) */
Stephen Warren4539c242011-05-17 16:12:36 -060077#define UART_CAP_RTOIE (1 << 13) /* UART needs IER bit 4 set (Xscale, Tegra) */
Stephen Hurdebebd492013-01-17 14:14:53 -080078#define UART_CAP_HFIFO (1 << 14) /* UART has a "hidden" FIFO */
Sebastian Andrzej Siewiord74d5d12014-09-10 21:29:57 +020079#define UART_CAP_RPM (1 << 15) /* Runtime PM is active while idle */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Russell King4ba5e352005-06-23 10:43:04 +010081#define UART_BUG_QUOT (1 << 0) /* UART has buggy quot LSB */
Russell King55d3b282005-06-23 15:05:41 +010082#define UART_BUG_TXEN (1 << 1) /* UART has buggy TX IIR status */
Pantelis Antoniou21c614a2005-11-06 09:07:03 +000083#define UART_BUG_NOMSR (1 << 2) /* UART has buggy MSR status bits (Au1x00) */
Will Newton363f66f2008-09-02 14:35:44 -070084#define UART_BUG_THRE (1 << 3) /* UART has buggy THRE reassertion */
Alan Coxeb26dfe2012-07-12 13:00:31 +010085#define UART_BUG_PARITY (1 << 4) /* UART mishandles parity if FIFO enabled */
Russell King4ba5e352005-06-23 10:43:04 +010086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
88
89#ifdef CONFIG_SERIAL_8250_SHARE_IRQ
90#define SERIAL8250_SHARE_IRQS 1
91#else
92#define SERIAL8250_SHARE_IRQS 0
93#endif
94
Paul Gortmaker3f0ab322012-03-08 19:12:09 -050095static inline int serial_in(struct uart_8250_port *up, int offset)
96{
97 return up->port.serial_in(&up->port, offset);
98}
99
100static inline void serial_out(struct uart_8250_port *up, int offset, int value)
101{
102 up->port.serial_out(&up->port, offset, value);
103}
104
Sudhakar Mamillapalli0ad372b2012-04-10 14:10:58 -0700105void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p);
106
Magnus Dammcc419fa02012-05-02 21:46:51 +0900107static inline int serial_dl_read(struct uart_8250_port *up)
108{
109 return up->dl_read(up);
110}
111
112static inline void serial_dl_write(struct uart_8250_port *up, int value)
113{
114 up->dl_write(up, value);
115}
116
Sebastian Andrzej Siewiorae14a792014-09-05 21:02:36 +0200117struct uart_8250_port *serial8250_get_port(int line);
Sebastian Andrzej Siewior77285242014-09-29 20:06:48 +0200118void serial8250_rpm_get(struct uart_8250_port *p);
119void serial8250_rpm_put(struct uart_8250_port *p);
Sebastian Andrzej Siewiorae14a792014-09-05 21:02:36 +0200120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#if defined(__alpha__) && !defined(CONFIG_PCI)
122/*
123 * Digital did something really horribly wrong with the OUT1 and OUT2
124 * lines on at least some ALPHA's. The failure mode is that if either
125 * is cleared, the machine locks up with endless interrupts.
126 */
127#define ALPHA_KLUDGE_MCR (UART_MCR_OUT2 | UART_MCR_OUT1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#else
129#define ALPHA_KLUDGE_MCR 0
130#endif
Sean Young835d8442012-09-07 19:06:23 +0100131
132#ifdef CONFIG_SERIAL_8250_PNP
133int serial8250_pnp_init(void);
134void serial8250_pnp_exit(void);
135#else
136static inline int serial8250_pnp_init(void) { return 0; }
137static inline void serial8250_pnp_exit(void) { }
138#endif
139
Tony Lindgren54ec52b2012-10-03 15:31:58 -0700140#ifdef CONFIG_ARCH_OMAP1
141static inline int is_omap1_8250(struct uart_8250_port *pt)
142{
143 int res;
144
145 switch (pt->port.mapbase) {
146 case OMAP1_UART1_BASE:
147 case OMAP1_UART2_BASE:
148 case OMAP1_UART3_BASE:
149 res = 1;
150 break;
151 default:
152 res = 0;
153 break;
154 }
155
156 return res;
157}
158
159static inline int is_omap1510_8250(struct uart_8250_port *pt)
160{
161 if (!cpu_is_omap1510())
162 return 0;
163
164 return is_omap1_8250(pt);
165}
166#else
167static inline int is_omap1_8250(struct uart_8250_port *pt)
168{
169 return 0;
170}
171static inline int is_omap1510_8250(struct uart_8250_port *pt)
172{
173 return 0;
174}
175#endif
Heikki Krogerus9ee4b832013-01-10 11:25:11 +0200176
177#ifdef CONFIG_SERIAL_8250_DMA
178extern int serial8250_tx_dma(struct uart_8250_port *);
179extern int serial8250_rx_dma(struct uart_8250_port *, unsigned int iir);
180extern int serial8250_request_dma(struct uart_8250_port *);
181extern void serial8250_release_dma(struct uart_8250_port *);
182#else
183static inline int serial8250_tx_dma(struct uart_8250_port *p)
184{
185 return -1;
186}
187static inline int serial8250_rx_dma(struct uart_8250_port *p, unsigned int iir)
188{
189 return -1;
190}
191static inline int serial8250_request_dma(struct uart_8250_port *p)
192{
193 return -1;
194}
195static inline void serial8250_release_dma(struct uart_8250_port *p) { }
196#endif
Peter Hurleyd81e50f2015-02-24 14:25:04 -0500197
198static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
199{
200 unsigned char status;
201
202 status = serial_in(up, 0x04); /* EXCR2 */
203#define PRESL(x) ((x) & 0x30)
204 if (PRESL(status) == 0x10) {
205 /* already in high speed mode */
206 return 0;
207 } else {
208 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
209 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
210 serial_out(up, 0x04, status);
211 }
212 return 1;
213}
Peter Hurleyb6830f62015-06-27 09:19:00 -0400214
215static inline int serial_index(struct uart_port *port)
216{
217 return port->minor - 64;
218}
219
220#if 0
221#define DEBUG_INTR(fmt...) printk(fmt)
222#else
223#define DEBUG_INTR(fmt...) do { } while (0)
224#endif