blob: 69932b7556cf822194413f2da0278d9bd3f4cb13 [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.
12 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * A note about mapbase / membase
14 *
15 * mapbase is the physical address of the IO port.
16 * membase is an 'ioremapped' cookie.
17 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
20#define SUPPORT_SYSRQ
21#endif
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/ioport.h>
26#include <linux/init.h>
27#include <linux/console.h>
28#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010030#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/tty.h>
Daniel Drakecd3ecad2010-10-20 16:00:48 -070032#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/tty_flip.h>
34#include <linux/serial_reg.h>
35#include <linux/serial_core.h>
36#include <linux/serial.h>
37#include <linux/serial_8250.h>
Andrew Morton78512ec2005-11-07 00:59:13 -080038#include <linux/nmi.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000039#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Paul Gortmaker68163832012-02-09 18:48:19 -050041#ifdef CONFIG_SPARC
42#include <linux/sunserialcore.h>
43#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/io.h>
46#include <asm/irq.h>
47
48#include "8250.h"
49
50/*
51 * Configuration:
Thomas Gleixner40663cc2006-07-01 19:29:43 -070052 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * is unsafe when used on edge-triggered interrupts.
54 */
Adrian Bunk408b6642005-05-01 08:59:29 -070055static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Dave Jonesa61c2d72006-01-07 23:18:19 +000057static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
58
David S. Miller84408382008-10-13 10:45:26 +010059static struct uart_driver serial8250_reg;
60
61static int serial_index(struct uart_port *port)
62{
63 return (serial8250_reg.minor - 64) + port->line;
64}
65
Chuck Ebbertd41a4b52009-10-01 15:44:26 -070066static unsigned int skip_txen_test; /* force skip of txen test at init time */
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
69 * Debugging.
70 */
71#if 0
72#define DEBUG_AUTOCONF(fmt...) printk(fmt)
73#else
74#define DEBUG_AUTOCONF(fmt...) do { } while (0)
75#endif
76
77#if 0
78#define DEBUG_INTR(fmt...) printk(fmt)
79#else
80#define DEBUG_INTR(fmt...) do { } while (0)
81#endif
82
Jiri Slabye7328ae2011-06-05 22:51:49 +020083#define PASS_LIMIT 512
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Dick Hollenbeckbca47612009-12-09 12:31:34 -080085#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
86
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
89#define CONFIG_SERIAL_DETECT_IRQ 1
90#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#ifdef CONFIG_SERIAL_8250_MANY_PORTS
92#define CONFIG_SERIAL_MANY_PORTS 1
93#endif
94
95/*
96 * HUB6 is always on. This will be removed once the header
97 * files have been cleaned.
98 */
99#define CONFIG_HUB6 1
100
Bryan Wua4ed1e42008-05-31 16:10:04 +0800101#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*
103 * SERIAL_PORT_DFNS tells us about built-in ports that have no
104 * standard enumeration mechanism. Platforms that can find all
105 * serial ports via mechanisms like ACPI or PCI need not supply it.
106 */
107#ifndef SERIAL_PORT_DFNS
108#define SERIAL_PORT_DFNS
109#endif
110
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000111static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 SERIAL_PORT_DFNS /* defined in asm/serial.h */
113};
114
Russell King026d02a2005-06-29 18:45:19 +0100115#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117#ifdef CONFIG_SERIAL_8250_RSA
118
119#define PORT_RSA_MAX 4
120static unsigned long probe_rsa[PORT_RSA_MAX];
121static unsigned int probe_rsa_count;
122#endif /* CONFIG_SERIAL_8250_RSA */
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124struct irq_info {
Alan Cox25db8ad2008-08-19 20:49:40 -0700125 struct hlist_node node;
126 int irq;
127 spinlock_t lock; /* Protects list not the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct list_head *head;
129};
130
Alan Cox25db8ad2008-08-19 20:49:40 -0700131#define NR_IRQ_HASH 32 /* Can be adjusted later */
132static struct hlist_head irq_lists[NR_IRQ_HASH];
133static DEFINE_MUTEX(hash_mutex); /* Used to walk the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135/*
136 * Here we define the default xmit fifo size used for each type of UART.
137 */
138static const struct serial8250_config uart_config[] = {
139 [PORT_UNKNOWN] = {
140 .name = "unknown",
141 .fifo_size = 1,
142 .tx_loadsz = 1,
143 },
144 [PORT_8250] = {
145 .name = "8250",
146 .fifo_size = 1,
147 .tx_loadsz = 1,
148 },
149 [PORT_16450] = {
150 .name = "16450",
151 .fifo_size = 1,
152 .tx_loadsz = 1,
153 },
154 [PORT_16550] = {
155 .name = "16550",
156 .fifo_size = 1,
157 .tx_loadsz = 1,
158 },
159 [PORT_16550A] = {
160 .name = "16550A",
161 .fifo_size = 16,
162 .tx_loadsz = 16,
163 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
164 .flags = UART_CAP_FIFO,
165 },
166 [PORT_CIRRUS] = {
167 .name = "Cirrus",
168 .fifo_size = 1,
169 .tx_loadsz = 1,
170 },
171 [PORT_16650] = {
172 .name = "ST16650",
173 .fifo_size = 1,
174 .tx_loadsz = 1,
175 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
176 },
177 [PORT_16650V2] = {
178 .name = "ST16650V2",
179 .fifo_size = 32,
180 .tx_loadsz = 16,
181 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
182 UART_FCR_T_TRIG_00,
183 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
184 },
185 [PORT_16750] = {
186 .name = "TI16750",
187 .fifo_size = 64,
188 .tx_loadsz = 64,
189 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
190 UART_FCR7_64BYTE,
191 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
192 },
193 [PORT_STARTECH] = {
194 .name = "Startech",
195 .fifo_size = 1,
196 .tx_loadsz = 1,
197 },
198 [PORT_16C950] = {
199 .name = "16C950/954",
200 .fifo_size = 128,
201 .tx_loadsz = 128,
202 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Pavel Machekd0694e22011-01-09 08:38:48 +0100203 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
204 .flags = UART_CAP_FIFO | UART_CAP_SLEEP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 },
206 [PORT_16654] = {
207 .name = "ST16654",
208 .fifo_size = 64,
209 .tx_loadsz = 32,
210 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
211 UART_FCR_T_TRIG_10,
212 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
213 },
214 [PORT_16850] = {
215 .name = "XR16850",
216 .fifo_size = 128,
217 .tx_loadsz = 128,
218 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
219 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
220 },
221 [PORT_RSA] = {
222 .name = "RSA",
223 .fifo_size = 2048,
224 .tx_loadsz = 2048,
225 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
226 .flags = UART_CAP_FIFO,
227 },
228 [PORT_NS16550A] = {
229 .name = "NS16550A",
230 .fifo_size = 16,
231 .tx_loadsz = 16,
232 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
233 .flags = UART_CAP_FIFO | UART_NATSEMI,
234 },
235 [PORT_XSCALE] = {
236 .name = "XScale",
237 .fifo_size = 32,
238 .tx_loadsz = 32,
239 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Stephen Warren4539c242011-05-17 16:12:36 -0600240 .flags = UART_CAP_FIFO | UART_CAP_UUE | UART_CAP_RTOIE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 },
David Daney6b06f192009-01-02 13:50:00 +0000242 [PORT_OCTEON] = {
243 .name = "OCTEON",
244 .fifo_size = 64,
245 .tx_loadsz = 64,
246 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
247 .flags = UART_CAP_FIFO,
248 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100249 [PORT_AR7] = {
250 .name = "AR7",
251 .fifo_size = 16,
252 .tx_loadsz = 16,
253 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
254 .flags = UART_CAP_FIFO | UART_CAP_AFE,
255 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200256 [PORT_U6_16550A] = {
257 .name = "U6_16550A",
258 .fifo_size = 64,
259 .tx_loadsz = 64,
260 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
261 .flags = UART_CAP_FIFO | UART_CAP_AFE,
262 },
Stephen Warren4539c242011-05-17 16:12:36 -0600263 [PORT_TEGRA] = {
264 .name = "Tegra",
265 .fifo_size = 32,
266 .tx_loadsz = 8,
267 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
268 UART_FCR_T_TRIG_01,
269 .flags = UART_CAP_FIFO | UART_CAP_RTOIE,
270 },
Søren Holm06315342011-09-02 22:55:37 +0200271 [PORT_XR17D15X] = {
272 .name = "XR17D15X",
273 .fifo_size = 64,
274 .tx_loadsz = 64,
275 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Matt Schulte81db0772012-11-21 09:39:07 -0600276 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
277 UART_CAP_SLEEP,
Søren Holm06315342011-09-02 22:55:37 +0200278 },
Matt Schultedc96efb2012-11-19 09:12:04 -0600279 [PORT_XR17V35X] = {
280 .name = "XR17V35X",
281 .fifo_size = 256,
282 .tx_loadsz = 256,
283 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11 |
284 UART_FCR_T_TRIG_11,
285 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
286 UART_CAP_SLEEP,
287 },
Roland Stigge7a514592012-06-11 21:57:13 +0200288 [PORT_LPC3220] = {
289 .name = "LPC3220",
290 .fifo_size = 64,
291 .tx_loadsz = 32,
292 .fcr = UART_FCR_DMA_SELECT | UART_FCR_ENABLE_FIFO |
293 UART_FCR_R_TRIG_00 | UART_FCR_T_TRIG_00,
294 .flags = UART_CAP_FIFO,
295 },
Stephen Hurdebebd492013-01-17 14:14:53 -0800296 [PORT_BRCM_TRUMANAGE] = {
297 .name = "TruManage",
298 .fifo_size = 1,
299 .tx_loadsz = 1024,
300 .flags = UART_CAP_HFIFO,
301 },
Sean Young65ecc9c2012-09-07 19:06:24 +0100302 [PORT_8250_CIR] = {
303 .name = "CIR port"
Ley Foon Tane06c93c2013-03-07 10:28:37 +0800304 },
305 [PORT_ALTR_16550_F32] = {
306 .name = "Altera 16550 FIFO32",
307 .fifo_size = 32,
308 .tx_loadsz = 32,
309 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
310 .flags = UART_CAP_FIFO | UART_CAP_AFE,
311 },
312 [PORT_ALTR_16550_F64] = {
313 .name = "Altera 16550 FIFO64",
314 .fifo_size = 64,
315 .tx_loadsz = 64,
316 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
317 .flags = UART_CAP_FIFO | UART_CAP_AFE,
318 },
319 [PORT_ALTR_16550_F128] = {
320 .name = "Altera 16550 FIFO128",
321 .fifo_size = 128,
322 .tx_loadsz = 128,
323 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
324 .flags = UART_CAP_FIFO | UART_CAP_AFE,
325 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326};
327
Magnus Dammcc419fa02012-05-02 21:46:51 +0900328/* Uart divisor latch read */
Magnus Damme8155622012-05-02 21:47:18 +0900329static int default_serial_dl_read(struct uart_8250_port *up)
Magnus Dammcc419fa02012-05-02 21:46:51 +0900330{
331 return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8;
332}
333
334/* Uart divisor latch write */
Magnus Damme8155622012-05-02 21:47:18 +0900335static void default_serial_dl_write(struct uart_8250_port *up, int value)
Magnus Dammcc419fa02012-05-02 21:46:51 +0900336{
337 serial_out(up, UART_DLL, value & 0xff);
338 serial_out(up, UART_DLM, value >> 8 & 0xff);
339}
340
John Crispinc4208112013-01-25 19:39:51 +0100341#if defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_SERIAL_8250_RT288X)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000342
John Crispinc4208112013-01-25 19:39:51 +0100343/* Au1x00/RT288x UART hardware has a weird register layout */
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000344static const u8 au_io_in_map[] = {
345 [UART_RX] = 0,
346 [UART_IER] = 2,
347 [UART_IIR] = 3,
348 [UART_LCR] = 5,
349 [UART_MCR] = 6,
350 [UART_LSR] = 7,
351 [UART_MSR] = 8,
352};
353
354static const u8 au_io_out_map[] = {
355 [UART_TX] = 1,
356 [UART_IER] = 2,
357 [UART_FCR] = 4,
358 [UART_LCR] = 5,
359 [UART_MCR] = 6,
360};
361
Magnus Damm6b416032012-05-02 21:47:00 +0900362static unsigned int au_serial_in(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000363{
Magnus Damm6b416032012-05-02 21:47:00 +0900364 offset = au_io_in_map[offset] << p->regshift;
365 return __raw_readl(p->membase + offset);
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000366}
367
Magnus Damm6b416032012-05-02 21:47:00 +0900368static void au_serial_out(struct uart_port *p, int offset, int value)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000369{
Magnus Damm6b416032012-05-02 21:47:00 +0900370 offset = au_io_out_map[offset] << p->regshift;
371 __raw_writel(value, p->membase + offset);
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000372}
373
Magnus Damm6b416032012-05-02 21:47:00 +0900374/* Au1x00 haven't got a standard divisor latch */
375static int au_serial_dl_read(struct uart_8250_port *up)
376{
377 return __raw_readl(up->port.membase + 0x28);
378}
379
380static void au_serial_dl_write(struct uart_8250_port *up, int value)
381{
382 __raw_writel(value, up->port.membase + 0x28);
383}
384
385#endif
386
David Daney7d6a07d2009-01-02 13:49:47 +0000387static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Magnus Damme8155622012-05-02 21:47:18 +0900389 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000390 outb(p->hub6 - 1 + offset, p->iobase);
391 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
David Daney7d6a07d2009-01-02 13:49:47 +0000394static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Magnus Damme8155622012-05-02 21:47:18 +0900396 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000397 outb(p->hub6 - 1 + offset, p->iobase);
398 outb(value, p->iobase + 1);
399}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
David Daney7d6a07d2009-01-02 13:49:47 +0000401static unsigned int mem_serial_in(struct uart_port *p, int offset)
402{
Magnus Damme8155622012-05-02 21:47:18 +0900403 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000404 return readb(p->membase + offset);
405}
406
407static void mem_serial_out(struct uart_port *p, int offset, int value)
408{
Magnus Damme8155622012-05-02 21:47:18 +0900409 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000410 writeb(value, p->membase + offset);
411}
412
413static void mem32_serial_out(struct uart_port *p, int offset, int value)
414{
Magnus Damme8155622012-05-02 21:47:18 +0900415 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000416 writel(value, p->membase + offset);
417}
418
419static unsigned int mem32_serial_in(struct uart_port *p, int offset)
420{
Magnus Damme8155622012-05-02 21:47:18 +0900421 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000422 return readl(p->membase + offset);
423}
424
David Daney7d6a07d2009-01-02 13:49:47 +0000425static unsigned int io_serial_in(struct uart_port *p, int offset)
426{
Magnus Damme8155622012-05-02 21:47:18 +0900427 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000428 return inb(p->iobase + offset);
429}
430
431static void io_serial_out(struct uart_port *p, int offset, int value)
432{
Magnus Damme8155622012-05-02 21:47:18 +0900433 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000434 outb(value, p->iobase + offset);
435}
436
Jamie Iles583d28e2011-08-15 10:17:52 +0100437static int serial8250_default_handle_irq(struct uart_port *port);
Matt Schultedc96efb2012-11-19 09:12:04 -0600438static int exar_handle_irq(struct uart_port *port);
Jamie Iles583d28e2011-08-15 10:17:52 +0100439
David Daney7d6a07d2009-01-02 13:49:47 +0000440static void set_io_from_upio(struct uart_port *p)
441{
Jamie Iles49d57412010-12-01 23:39:35 +0000442 struct uart_8250_port *up =
443 container_of(p, struct uart_8250_port, port);
Magnus Dammcc419fa02012-05-02 21:46:51 +0900444
Magnus Damme8155622012-05-02 21:47:18 +0900445 up->dl_read = default_serial_dl_read;
446 up->dl_write = default_serial_dl_write;
Magnus Dammcc419fa02012-05-02 21:46:51 +0900447
David Daney7d6a07d2009-01-02 13:49:47 +0000448 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000450 p->serial_in = hub6_serial_in;
451 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 break;
453
454 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000455 p->serial_in = mem_serial_in;
456 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 break;
458
459 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000460 p->serial_in = mem32_serial_in;
461 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 break;
463
John Crispinc4208112013-01-25 19:39:51 +0100464#if defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_SERIAL_8250_RT288X)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000465 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000466 p->serial_in = au_serial_in;
467 p->serial_out = au_serial_out;
Magnus Damm6b416032012-05-02 21:47:00 +0900468 up->dl_read = au_serial_dl_read;
469 up->dl_write = au_serial_dl_write;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000470 break;
Magnus Damm6b416032012-05-02 21:47:00 +0900471#endif
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000474 p->serial_in = io_serial_in;
475 p->serial_out = io_serial_out;
476 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100478 /* Remember loaded iotype */
479 up->cur_iotype = p->iotype;
Jamie Iles583d28e2011-08-15 10:17:52 +0100480 p->handle_irq = serial8250_default_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Alex Williamson40b36da2007-02-14 00:33:04 -0800483static void
Paul Gortmaker55e40162012-03-08 19:12:14 -0500484serial_port_out_sync(struct uart_port *p, int offset, int value)
Alex Williamson40b36da2007-02-14 00:33:04 -0800485{
David Daney7d6a07d2009-01-02 13:49:47 +0000486 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800487 case UPIO_MEM:
488 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800489 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000490 p->serial_out(p, offset, value);
491 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800492 break;
493 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000494 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800495 }
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*
499 * For the 16C950
500 */
501static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
502{
503 serial_out(up, UART_SCR, offset);
504 serial_out(up, UART_ICR, value);
505}
506
507static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
508{
509 unsigned int value;
510
511 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
512 serial_out(up, UART_SCR, offset);
513 value = serial_in(up, UART_ICR);
514 serial_icr_write(up, UART_ACR, up->acr);
515
516 return value;
517}
518
519/*
520 * FIFO support.
521 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100522static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 if (p->capabilities & UART_CAP_FIFO) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500525 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO);
526 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500528 serial_out(p, UART_FCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530}
531
Sudhakar Mamillapalli0ad372b2012-04-10 14:10:58 -0700532void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p)
533{
534 unsigned char fcr;
535
536 serial8250_clear_fifos(p);
537 fcr = uart_config[p->port.type].fcr;
538 serial_out(p, UART_FCR, fcr);
539}
540EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos);
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/*
543 * IER sleep support. UARTs which have EFRs need the "extended
544 * capability" bit enabled. Note that on XR16C850s, we need to
545 * reset LCR to write to IER.
546 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100547static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Matt Schultedc96efb2012-11-19 09:12:04 -0600549 /*
550 * Exar UARTs have a SLEEP register that enables or disables
551 * each UART to enter sleep mode separately. On the XR17V35x the
552 * register is accessible to each UART at the UART_EXAR_SLEEP
553 * offset but the UART channel may only write to the corresponding
554 * bit.
555 */
Matt Schulte81db0772012-11-21 09:39:07 -0600556 if ((p->port.type == PORT_XR17V35X) ||
557 (p->port.type == PORT_XR17D15X)) {
Matt Schultedc96efb2012-11-19 09:12:04 -0600558 serial_out(p, UART_EXAR_SLEEP, 0xff);
559 return;
560 }
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (p->capabilities & UART_CAP_SLEEP) {
563 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500564 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
565 serial_out(p, UART_EFR, UART_EFR_ECB);
566 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500568 serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500570 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
571 serial_out(p, UART_EFR, 0);
572 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574 }
575}
576
577#ifdef CONFIG_SERIAL_8250_RSA
578/*
579 * Attempts to turn on the RSA FIFO. Returns zero on failure.
580 * We set the port uart clock rate if we succeed.
581 */
582static int __enable_rsa(struct uart_8250_port *up)
583{
584 unsigned char mode;
585 int result;
586
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500587 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 result = mode & UART_RSA_MSR_FIFO;
589
590 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500591 serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
592 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 result = mode & UART_RSA_MSR_FIFO;
594 }
595
596 if (result)
597 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
598
599 return result;
600}
601
602static void enable_rsa(struct uart_8250_port *up)
603{
604 if (up->port.type == PORT_RSA) {
605 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
606 spin_lock_irq(&up->port.lock);
607 __enable_rsa(up);
608 spin_unlock_irq(&up->port.lock);
609 }
610 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500611 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613}
614
615/*
616 * Attempts to turn off the RSA FIFO. Returns zero on failure.
617 * It is unknown why interrupts were disabled in here. However,
618 * the caller is expected to preserve this behaviour by grabbing
619 * the spinlock before calling this function.
620 */
621static void disable_rsa(struct uart_8250_port *up)
622{
623 unsigned char mode;
624 int result;
625
626 if (up->port.type == PORT_RSA &&
627 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
628 spin_lock_irq(&up->port.lock);
629
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500630 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 result = !(mode & UART_RSA_MSR_FIFO);
632
633 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500634 serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
635 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 result = !(mode & UART_RSA_MSR_FIFO);
637 }
638
639 if (result)
640 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
641 spin_unlock_irq(&up->port.lock);
642 }
643}
644#endif /* CONFIG_SERIAL_8250_RSA */
645
646/*
647 * This is a quickie test to see how big the FIFO is.
648 * It doesn't work at all the time, more's the pity.
649 */
650static int size_fifo(struct uart_8250_port *up)
651{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100652 unsigned char old_fcr, old_mcr, old_lcr;
653 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 int count;
655
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500656 old_lcr = serial_in(up, UART_LCR);
657 serial_out(up, UART_LCR, 0);
658 old_fcr = serial_in(up, UART_FCR);
659 old_mcr = serial_in(up, UART_MCR);
660 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500662 serial_out(up, UART_MCR, UART_MCR_LOOP);
663 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100664 old_dl = serial_dl_read(up);
665 serial_dl_write(up, 0x0001);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500666 serial_out(up, UART_LCR, 0x03);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 for (count = 0; count < 256; count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500668 serial_out(up, UART_TX, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 mdelay(20);/* FIXME - schedule_timeout */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500670 for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 (count < 256); count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500672 serial_in(up, UART_RX);
673 serial_out(up, UART_FCR, old_fcr);
674 serial_out(up, UART_MCR, old_mcr);
675 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100676 serial_dl_write(up, old_dl);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500677 serial_out(up, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 return count;
680}
681
682/*
683 * Read UART ID using the divisor method - set DLL and DLM to zero
684 * and the revision will be in DLL and device type in DLM. We
685 * preserve the device state across this.
686 */
687static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
688{
689 unsigned char old_dll, old_dlm, old_lcr;
690 unsigned int id;
691
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500692 old_lcr = serial_in(p, UART_LCR);
693 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500695 old_dll = serial_in(p, UART_DLL);
696 old_dlm = serial_in(p, UART_DLM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500698 serial_out(p, UART_DLL, 0);
699 serial_out(p, UART_DLM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500701 id = serial_in(p, UART_DLL) | serial_in(p, UART_DLM) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500703 serial_out(p, UART_DLL, old_dll);
704 serial_out(p, UART_DLM, old_dlm);
705 serial_out(p, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 return id;
708}
709
710/*
711 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
712 * When this function is called we know it is at least a StarTech
713 * 16650 V2, but it might be one of several StarTech UARTs, or one of
714 * its clones. (We treat the broken original StarTech 16650 V1 as a
715 * 16550, and why not? Startech doesn't seem to even acknowledge its
716 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700717 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 * What evil have men's minds wrought...
719 */
720static void autoconfig_has_efr(struct uart_8250_port *up)
721{
722 unsigned int id1, id2, id3, rev;
723
724 /*
725 * Everything with an EFR has SLEEP
726 */
727 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
728
729 /*
730 * First we check to see if it's an Oxford Semiconductor UART.
731 *
732 * If we have to do this here because some non-National
733 * Semiconductor clone chips lock up if you try writing to the
734 * LSR register (which serial_icr_read does)
735 */
736
737 /*
738 * Check for Oxford Semiconductor 16C950.
739 *
740 * EFR [4] must be set else this test fails.
741 *
742 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
743 * claims that it's needed for 952 dual UART's (which are not
744 * recommended for new designs).
745 */
746 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800747 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 serial_out(up, UART_EFR, UART_EFR_ECB);
749 serial_out(up, UART_LCR, 0x00);
750 id1 = serial_icr_read(up, UART_ID1);
751 id2 = serial_icr_read(up, UART_ID2);
752 id3 = serial_icr_read(up, UART_ID3);
753 rev = serial_icr_read(up, UART_REV);
754
755 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
756
757 if (id1 == 0x16 && id2 == 0xC9 &&
758 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
759 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100760
761 /*
762 * Enable work around for the Oxford Semiconductor 952 rev B
763 * chip which causes it to seriously miscalculate baud rates
764 * when DLL is 0.
765 */
766 if (id3 == 0x52 && rev == 0x01)
767 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return;
769 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /*
772 * We check for a XR16C850 by setting DLL and DLM to 0, and then
773 * reading back DLL and DLM. The chip type depends on the DLM
774 * value read back:
775 * 0x10 - XR16C850 and the DLL contains the chip revision.
776 * 0x12 - XR16C2850.
777 * 0x14 - XR16C854.
778 */
779 id1 = autoconfig_read_divisor_id(up);
780 DEBUG_AUTOCONF("850id=%04x ", id1);
781
782 id2 = id1 >> 8;
783 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 up->port.type = PORT_16850;
785 return;
786 }
787
788 /*
789 * It wasn't an XR16C850.
790 *
791 * We distinguish between the '654 and the '650 by counting
792 * how many bytes are in the FIFO. I'm using this for now,
793 * since that's the technique that was sent to me in the
794 * serial driver update, but I'm not convinced this works.
795 * I've had problems doing this in the past. -TYT
796 */
797 if (size_fifo(up) == 64)
798 up->port.type = PORT_16654;
799 else
800 up->port.type = PORT_16650V2;
801}
802
803/*
804 * We detected a chip without a FIFO. Only two fall into
805 * this category - the original 8250 and the 16450. The
806 * 16450 has a scratch register (accessible with LCR=0)
807 */
808static void autoconfig_8250(struct uart_8250_port *up)
809{
810 unsigned char scratch, status1, status2;
811
812 up->port.type = PORT_8250;
813
814 scratch = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500815 serial_out(up, UART_SCR, 0xa5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 status1 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500817 serial_out(up, UART_SCR, 0x5a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 status2 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500819 serial_out(up, UART_SCR, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 if (status1 == 0xa5 && status2 == 0x5a)
822 up->port.type = PORT_16450;
823}
824
825static int broken_efr(struct uart_8250_port *up)
826{
827 /*
828 * Exar ST16C2550 "A2" devices incorrectly detect as
829 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200830 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 */
832 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
833 return 1;
834
835 return 0;
836}
837
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800838static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
839{
840 unsigned char status;
841
842 status = serial_in(up, 0x04); /* EXCR2 */
843#define PRESL(x) ((x) & 0x30)
844 if (PRESL(status) == 0x10) {
845 /* already in high speed mode */
846 return 0;
847 } else {
848 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
849 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500850 serial_out(up, 0x04, status);
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800851 }
852 return 1;
853}
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855/*
856 * We know that the chip has FIFOs. Does it have an EFR? The
857 * EFR is located in the same register position as the IIR and
858 * we know the top two bits of the IIR are currently set. The
859 * EFR should contain zero. Try to read the EFR.
860 */
861static void autoconfig_16550a(struct uart_8250_port *up)
862{
863 unsigned char status1, status2;
864 unsigned int iersave;
865
866 up->port.type = PORT_16550A;
867 up->capabilities |= UART_CAP_FIFO;
868
869 /*
Matt Schultedc96efb2012-11-19 09:12:04 -0600870 * XR17V35x UARTs have an extra divisor register, DLD
871 * that gets enabled with when DLAB is set which will
872 * cause the device to incorrectly match and assign
873 * port type to PORT_16650. The EFR for this UART is
874 * found at offset 0x09. Instead check the Deice ID (DVID)
875 * register for a 2, 4 or 8 port UART.
876 */
Matt Schulteb7a7e142012-11-20 11:23:56 -0600877 if (up->port.flags & UPF_EXAR_EFR) {
878 status1 = serial_in(up, UART_EXAR_DVID);
879 if (status1 == 0x82 || status1 == 0x84 || status1 == 0x88) {
Matt Schultedc96efb2012-11-19 09:12:04 -0600880 DEBUG_AUTOCONF("Exar XR17V35x ");
881 up->port.type = PORT_XR17V35X;
882 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
883 UART_CAP_SLEEP;
884
885 return;
886 }
887
888 }
889
890 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 * Check for presence of the EFR when DLAB is set.
892 * Only ST16C650V1 UARTs pass this test.
893 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500894 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (serial_in(up, UART_EFR) == 0) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500896 serial_out(up, UART_EFR, 0xA8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (serial_in(up, UART_EFR) != 0) {
898 DEBUG_AUTOCONF("EFRv1 ");
899 up->port.type = PORT_16650;
900 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
901 } else {
902 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
903 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500904 serial_out(up, UART_EFR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return;
906 }
907
908 /*
909 * Maybe it requires 0xbf to be written to the LCR.
910 * (other ST16C650V2 UARTs, TI16C752A, etc)
911 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500912 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
914 DEBUG_AUTOCONF("EFRv2 ");
915 autoconfig_has_efr(up);
916 return;
917 }
918
919 /*
920 * Check for a National Semiconductor SuperIO chip.
921 * Attempt to switch to bank 2, read the value of the LOOP bit
922 * from EXCR1. Switch back to bank 0, change it in MCR. Then
923 * switch back to bank 2, read it from EXCR1 again and check
924 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500926 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 status1 = serial_in(up, UART_MCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500928 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 status2 = serial_in(up, 0x02); /* EXCR1 */
930
931 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500932 serial_out(up, UART_LCR, 0);
933 serial_out(up, UART_MCR, status1 ^ UART_MCR_LOOP);
934 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 status2 = serial_in(up, 0x02); /* EXCR1 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500936 serial_out(up, UART_LCR, 0);
937 serial_out(up, UART_MCR, status1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100940 unsigned short quot;
941
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500942 serial_out(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100943
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100944 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +0100945 quot <<= 3;
946
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800947 if (ns16550a_goto_highspeed(up))
948 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500950 serial_out(up, UART_LCR, 0);
David Woodhouse857dde22005-05-21 15:52:23 +0100951
952 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 up->port.type = PORT_NS16550A;
954 up->capabilities |= UART_NATSEMI;
955 return;
956 }
957 }
958
959 /*
960 * No EFR. Try to detect a TI16750, which only sets bit 5 of
961 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
962 * Try setting it with and without DLAB set. Cheap clones
963 * set bit 5 without DLAB set.
964 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500965 serial_out(up, UART_LCR, 0);
966 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 status1 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500968 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
969 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
970 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 status2 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500972 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
973 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
976
977 if (status1 == 6 && status2 == 7) {
978 up->port.type = PORT_16750;
979 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
980 return;
981 }
982
983 /*
984 * Try writing and reading the UART_IER_UUE bit (b6).
985 * If it works, this is probably one of the Xscale platform's
986 * internal UARTs.
987 * We're going to explicitly set the UUE bit to 0 before
988 * trying to write and read a 1 just to make sure it's not
989 * already a 1 and maybe locked there before we even start start.
990 */
991 iersave = serial_in(up, UART_IER);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500992 serial_out(up, UART_IER, iersave & ~UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
994 /*
995 * OK it's in a known zero state, try writing and reading
996 * without disturbing the current state of the other bits.
997 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500998 serial_out(up, UART_IER, iersave | UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1000 /*
1001 * It's an Xscale.
1002 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1003 */
1004 DEBUG_AUTOCONF("Xscale ");
1005 up->port.type = PORT_XSCALE;
Stephen Warren55681812011-06-17 09:45:07 -06001006 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return;
1008 }
1009 } else {
1010 /*
1011 * If we got here we couldn't force the IER_UUE bit to 0.
1012 * Log it and continue.
1013 */
1014 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1015 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001016 serial_out(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001017
1018 /*
Søren Holm06315342011-09-02 22:55:37 +02001019 * Exar uarts have EFR in a weird location
1020 */
1021 if (up->port.flags & UPF_EXAR_EFR) {
Matt Schulte81db0772012-11-21 09:39:07 -06001022 DEBUG_AUTOCONF("Exar XR17D15x ");
Søren Holm06315342011-09-02 22:55:37 +02001023 up->port.type = PORT_XR17D15X;
Matt Schulte81db0772012-11-21 09:39:07 -06001024 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
1025 UART_CAP_SLEEP;
1026
1027 return;
Søren Holm06315342011-09-02 22:55:37 +02001028 }
1029
1030 /*
Philippe Langlais235dae52010-07-29 17:13:57 +02001031 * We distinguish between 16550A and U6 16550A by counting
1032 * how many bytes are in the FIFO.
1033 */
1034 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1035 up->port.type = PORT_U6_16550A;
1036 up->capabilities |= UART_CAP_AFE;
1037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040/*
1041 * This routine is called by rs_init() to initialize a specific serial
1042 * port. It determines what type of UART chip this serial port is
1043 * using: 8250, 16450, 16550, 16550A. The important question is
1044 * whether or not this UART is a 16550A or not, since this will
1045 * determine whether or not we can use its FIFO features or not.
1046 */
1047static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1048{
1049 unsigned char status1, scratch, scratch2, scratch3;
1050 unsigned char save_lcr, save_mcr;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001051 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 unsigned long flags;
Flavio Leitnerbd21f5512012-09-18 16:21:32 -03001053 unsigned int old_capabilities;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001055 if (!port->iobase && !port->mapbase && !port->membase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return;
1057
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001058 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001059 serial_index(port), port->iobase, port->membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 /*
1062 * We really do need global IRQs disabled here - we're going to
1063 * be frobbing the chips IRQ enable register to see if it exists.
1064 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001065 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001068 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001070 if (!(port->flags & UPF_BUGGY_UART)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /*
1072 * Do a simple existence test first; if we fail this,
1073 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001074 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 * 0x80 is used as a nonsense port to prevent against
1076 * false positives due to ISA bus float. The
1077 * assumption is that 0x80 is a non-existent port;
1078 * which should be safe since include/asm/io.h also
1079 * makes this assumption.
1080 *
1081 * Note: this is safe as long as MCR bit 4 is clear
1082 * and the device is in "PC" mode.
1083 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001084 scratch = serial_in(up, UART_IER);
1085 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086#ifdef __i386__
1087 outb(0xff, 0x080);
1088#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001089 /*
1090 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1091 * 16C754B) allow only to modify them if an EFR bit is set.
1092 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001093 scratch2 = serial_in(up, UART_IER) & 0x0f;
1094 serial_out(up, UART_IER, 0x0F);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095#ifdef __i386__
1096 outb(0, 0x080);
1097#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001098 scratch3 = serial_in(up, UART_IER) & 0x0f;
1099 serial_out(up, UART_IER, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (scratch2 != 0 || scratch3 != 0x0F) {
1101 /*
1102 * We failed; there's nothing here
1103 */
Flavio Leitnerbd21f5512012-09-18 16:21:32 -03001104 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1106 scratch2, scratch3);
1107 goto out;
1108 }
1109 }
1110
1111 save_mcr = serial_in(up, UART_MCR);
1112 save_lcr = serial_in(up, UART_LCR);
1113
Thomas Koellerbd71c182007-05-06 14:48:47 -07001114 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 * Check to see if a UART is really there. Certain broken
1116 * internal modems based on the Rockwell chipset fail this
1117 * test, because they apparently don't implement the loopback
1118 * test mode. So this test is skipped on the COM 1 through
1119 * COM 4 ports. This *should* be safe, since no board
1120 * manufacturer would be stupid enough to design a board
1121 * that conflicts with COM 1-4 --- we hope!
1122 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001123 if (!(port->flags & UPF_SKIP_TEST)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001124 serial_out(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1125 status1 = serial_in(up, UART_MSR) & 0xF0;
1126 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (status1 != 0x90) {
Flavio Leitnerbd21f5512012-09-18 16:21:32 -03001128 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1130 status1);
1131 goto out;
1132 }
1133 }
1134
1135 /*
1136 * We're pretty sure there's a port here. Lets find out what
1137 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001138 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 * determines what we test for next.
1140 *
1141 * We also initialise the EFR (if any) to zero for later. The
1142 * EFR occupies the same register location as the FCR and IIR.
1143 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001144 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1145 serial_out(up, UART_EFR, 0);
1146 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001148 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 scratch = serial_in(up, UART_IIR) >> 6;
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 switch (scratch) {
1152 case 0:
1153 autoconfig_8250(up);
1154 break;
1155 case 1:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001156 port->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 break;
1158 case 2:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001159 port->type = PORT_16550;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 break;
1161 case 3:
1162 autoconfig_16550a(up);
1163 break;
1164 }
1165
1166#ifdef CONFIG_SERIAL_8250_RSA
1167 /*
1168 * Only probe for RSA ports if we got the region.
1169 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001170 if (port->type == PORT_16550A && probeflags & PROBE_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 int i;
1172
1173 for (i = 0 ; i < probe_rsa_count; ++i) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001174 if (probe_rsa[i] == port->iobase && __enable_rsa(up)) {
1175 port->type = PORT_RSA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 break;
1177 }
1178 }
1179 }
1180#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001181
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001182 serial_out(up, UART_LCR, save_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001184 port->fifosize = uart_config[up->port.type].fifo_size;
Flavio Leitnerbd21f5512012-09-18 16:21:32 -03001185 old_capabilities = up->capabilities;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001186 up->capabilities = uart_config[port->type].flags;
1187 up->tx_loadsz = uart_config[port->type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001189 if (port->type == PORT_UNKNOWN)
Flavio Leitnerbd21f5512012-09-18 16:21:32 -03001190 goto out_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 /*
1193 * Reset the UART.
1194 */
1195#ifdef CONFIG_SERIAL_8250_RSA
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001196 if (port->type == PORT_RSA)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001197 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001199 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001201 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001202 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001203 serial_out(up, UART_IER, UART_IER_UUE);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001204 else
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001205 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Flavio Leitnerbd21f5512012-09-18 16:21:32 -03001207out_lock:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001208 spin_unlock_irqrestore(&port->lock, flags);
Flavio Leitnerbd21f5512012-09-18 16:21:32 -03001209 if (up->capabilities != old_capabilities) {
1210 printk(KERN_WARNING
1211 "ttyS%d: detected caps %08x should be %08x\n",
1212 serial_index(port), old_capabilities,
1213 up->capabilities);
1214 }
1215out:
1216 DEBUG_AUTOCONF("iir=%d ", scratch);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001217 DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220static void autoconfig_irq(struct uart_8250_port *up)
1221{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001222 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 unsigned char save_mcr, save_ier;
1224 unsigned char save_ICP = 0;
1225 unsigned int ICP = 0;
1226 unsigned long irqs;
1227 int irq;
1228
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001229 if (port->flags & UPF_FOURPORT) {
1230 ICP = (port->iobase & 0xfe0) | 0x1f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 save_ICP = inb_p(ICP);
1232 outb_p(0x80, ICP);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001233 inb_p(ICP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235
1236 /* forget possible initially masked and pending IRQ */
1237 probe_irq_off(probe_irq_on());
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001238 save_mcr = serial_in(up, UART_MCR);
1239 save_ier = serial_in(up, UART_IER);
1240 serial_out(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 irqs = probe_irq_on();
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001243 serial_out(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001244 udelay(10);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001245 if (port->flags & UPF_FOURPORT) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001246 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 UART_MCR_DTR | UART_MCR_RTS);
1248 } else {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001249 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1251 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001252 serial_out(up, UART_IER, 0x0f); /* enable all intrs */
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001253 serial_in(up, UART_LSR);
1254 serial_in(up, UART_RX);
1255 serial_in(up, UART_IIR);
1256 serial_in(up, UART_MSR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001257 serial_out(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001258 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 irq = probe_irq_off(irqs);
1260
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001261 serial_out(up, UART_MCR, save_mcr);
1262 serial_out(up, UART_IER, save_ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001264 if (port->flags & UPF_FOURPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 outb_p(save_ICP, ICP);
1266
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001267 port->irq = (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
Russell Kinge763b902005-06-29 18:41:51 +01001270static inline void __stop_tx(struct uart_8250_port *p)
1271{
1272 if (p->ier & UART_IER_THRI) {
1273 p->ier &= ~UART_IER_THRI;
1274 serial_out(p, UART_IER, p->ier);
1275 }
1276}
1277
Russell Kingb129a8c2005-08-31 10:12:14 +01001278static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Jamie Iles49d57412010-12-01 23:39:35 +00001280 struct uart_8250_port *up =
1281 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Russell Kinge763b902005-06-29 18:41:51 +01001283 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 /*
Russell Kinge763b902005-06-29 18:41:51 +01001286 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001288 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 up->acr |= UART_ACR_TXDIS;
1290 serial_icr_write(up, UART_ACR, up->acr);
1291 }
1292}
1293
Russell Kingb129a8c2005-08-31 10:12:14 +01001294static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Jamie Iles49d57412010-12-01 23:39:35 +00001296 struct uart_8250_port *up =
1297 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Heikki Krogerus9ee4b832013-01-10 11:25:11 +02001299 if (up->dma && !serial8250_tx_dma(up)) {
1300 return;
1301 } else if (!(up->ier & UART_IER_THRI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 up->ier |= UART_IER_THRI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001303 serial_port_out(port, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001304
Russell King67f76542005-06-23 22:26:43 +01001305 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001306 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001307 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001308 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Ralf Baechlea205a562012-12-18 11:41:14 +01001309 if (lsr & UART_LSR_TEMT)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001310 serial8250_tx_chars(up);
Russell King55d3b282005-06-23 15:05:41 +01001311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 }
Russell Kinge763b902005-06-29 18:41:51 +01001313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 /*
Russell Kinge763b902005-06-29 18:41:51 +01001315 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001317 if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 up->acr &= ~UART_ACR_TXDIS;
1319 serial_icr_write(up, UART_ACR, up->acr);
1320 }
1321}
1322
1323static void serial8250_stop_rx(struct uart_port *port)
1324{
Jamie Iles49d57412010-12-01 23:39:35 +00001325 struct uart_8250_port *up =
1326 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 up->ier &= ~UART_IER_RLSI;
1329 up->port.read_status_mask &= ~UART_LSR_DR;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001330 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
1333static void serial8250_enable_ms(struct uart_port *port)
1334{
Jamie Iles49d57412010-12-01 23:39:35 +00001335 struct uart_8250_port *up =
1336 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001338 /* no MSR capabilities */
1339 if (up->bugs & UART_BUG_NOMSR)
1340 return;
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 up->ier |= UART_IER_MSI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001343 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
Stephen Warren5f873ba2011-05-17 16:12:37 -06001346/*
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001347 * serial8250_rx_chars: processes according to the passed in LSR
Paul Gortmaker0690f412011-12-04 18:42:19 -05001348 * value, and returns the remaining LSR bits not handled
1349 * by this Rx routine.
1350 */
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001351unsigned char
1352serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001354 struct uart_port *port = &up->port;
Paul Gortmaker0690f412011-12-04 18:42:19 -05001355 unsigned char ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 int max_count = 256;
1357 char flag;
1358
1359 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001360 if (likely(lsr & UART_LSR_DR))
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001361 ch = serial_in(up, UART_RX);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001362 else
1363 /*
1364 * Intel 82571 has a Serial Over Lan device that will
1365 * set UART_LSR_BI without setting UART_LSR_DR when
1366 * it receives a break. To avoid reading from the
1367 * receive buffer without UART_LSR_DR bit set, we
1368 * just force the read character to be 0
1369 */
1370 ch = 0;
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 flag = TTY_NORMAL;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001373 port->icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001375 lsr |= up->lsr_saved_flags;
1376 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001378 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (lsr & UART_LSR_BI) {
1380 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001381 port->icount.brk++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 /*
1383 * We do the SysRQ and SAK checking
1384 * here because otherwise the break
1385 * may get masked by ignore_status_mask
1386 * or read_status_mask.
1387 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001388 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 goto ignore_char;
1390 } else if (lsr & UART_LSR_PE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001391 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 else if (lsr & UART_LSR_FE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001393 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (lsr & UART_LSR_OE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001395 port->icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 /*
Russell King23907eb2005-04-16 15:26:39 -07001398 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001400 lsr &= port->read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 if (lsr & UART_LSR_BI) {
1403 DEBUG_INTR("handling break....");
1404 flag = TTY_BREAK;
1405 } else if (lsr & UART_LSR_PE)
1406 flag = TTY_PARITY;
1407 else if (lsr & UART_LSR_FE)
1408 flag = TTY_FRAME;
1409 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001410 if (uart_handle_sysrq_char(port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001412
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001413 uart_insert_char(port, lsr, UART_LSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +01001414
Alan Cox6f803cd2008-02-08 04:18:52 -08001415ignore_char:
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001416 lsr = serial_in(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001417 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001418 spin_unlock(&port->lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001419 tty_flip_buffer_push(&port->state->port);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001420 spin_lock(&port->lock);
Paul Gortmaker0690f412011-12-04 18:42:19 -05001421 return lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001423EXPORT_SYMBOL_GPL(serial8250_rx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001425void serial8250_tx_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001427 struct uart_port *port = &up->port;
1428 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 int count;
1430
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001431 if (port->x_char) {
1432 serial_out(up, UART_TX, port->x_char);
1433 port->icount.tx++;
1434 port->x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return;
1436 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001437 if (uart_tx_stopped(port)) {
1438 serial8250_stop_tx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +01001439 return;
1440 }
1441 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001442 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return;
1444 }
1445
1446 count = up->tx_loadsz;
1447 do {
1448 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1449 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001450 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (uart_circ_empty(xmit))
1452 break;
Stephen Hurdebebd492013-01-17 14:14:53 -08001453 if (up->capabilities & UART_CAP_HFIFO) {
1454 if ((serial_port_in(port, UART_LSR) & BOTH_EMPTY) !=
1455 BOTH_EMPTY)
1456 break;
1457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 } while (--count > 0);
1459
1460 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001461 uart_write_wakeup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 DEBUG_INTR("THRE...");
1464
1465 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001466 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001468EXPORT_SYMBOL_GPL(serial8250_tx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001470unsigned int serial8250_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001472 struct uart_port *port = &up->port;
Russell King2af7cd62006-01-04 16:55:09 +00001473 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001475 status |= up->msr_saved_flags;
1476 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001477 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001478 port->state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001479 if (status & UART_MSR_TERI)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001480 port->icount.rng++;
Russell King2af7cd62006-01-04 16:55:09 +00001481 if (status & UART_MSR_DDSR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001482 port->icount.dsr++;
Russell King2af7cd62006-01-04 16:55:09 +00001483 if (status & UART_MSR_DDCD)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001484 uart_handle_dcd_change(port, status & UART_MSR_DCD);
Russell King2af7cd62006-01-04 16:55:09 +00001485 if (status & UART_MSR_DCTS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001486 uart_handle_cts_change(port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001488 wake_up_interruptible(&port->state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Russell King2af7cd62006-01-04 16:55:09 +00001491 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001493EXPORT_SYMBOL_GPL(serial8250_modem_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495/*
1496 * This handles the interrupt from one port.
1497 */
Paul Gortmaker86b21192011-12-04 18:42:22 -05001498int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Paul Gortmaker0690f412011-12-04 18:42:19 -05001500 unsigned char status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001501 unsigned long flags;
Paul Gortmaker86b21192011-12-04 18:42:22 -05001502 struct uart_8250_port *up =
1503 container_of(port, struct uart_8250_port, port);
Heikki Krogerus9ee4b832013-01-10 11:25:11 +02001504 int dma_err = 0;
Paul Gortmaker86b21192011-12-04 18:42:22 -05001505
1506 if (iir & UART_IIR_NO_INT)
1507 return 0;
Russell King45e24602006-01-04 19:19:06 +00001508
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001509 spin_lock_irqsave(&port->lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001510
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001511 status = serial_port_in(port, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 DEBUG_INTR("status = %x...", status);
1514
Heikki Krogerus9ee4b832013-01-10 11:25:11 +02001515 if (status & (UART_LSR_DR | UART_LSR_BI)) {
1516 if (up->dma)
1517 dma_err = serial8250_rx_dma(up, iir);
1518
1519 if (!up->dma || dma_err)
1520 status = serial8250_rx_chars(up, status);
1521 }
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001522 serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (status & UART_LSR_THRE)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001524 serial8250_tx_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001525
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001526 spin_unlock_irqrestore(&port->lock, flags);
Paul Gortmaker86b21192011-12-04 18:42:22 -05001527 return 1;
Jamie Iles583d28e2011-08-15 10:17:52 +01001528}
Jamie Ilesc7a1bdc2011-08-26 19:04:49 +01001529EXPORT_SYMBOL_GPL(serial8250_handle_irq);
Jamie Iles583d28e2011-08-15 10:17:52 +01001530
1531static int serial8250_default_handle_irq(struct uart_port *port)
1532{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001533 unsigned int iir = serial_port_in(port, UART_IIR);
Jamie Iles583d28e2011-08-15 10:17:52 +01001534
1535 return serial8250_handle_irq(port, iir);
1536}
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538/*
Matt Schultedc96efb2012-11-19 09:12:04 -06001539 * These Exar UARTs have an extra interrupt indicator that could
1540 * fire for a few unimplemented interrupts. One of which is a
1541 * wakeup event when coming out of sleep. Put this here just
1542 * to be on the safe side that these interrupts don't go unhandled.
1543 */
1544static int exar_handle_irq(struct uart_port *port)
1545{
1546 unsigned char int0, int1, int2, int3;
1547 unsigned int iir = serial_port_in(port, UART_IIR);
1548 int ret;
1549
1550 ret = serial8250_handle_irq(port, iir);
1551
Matt Schulte30fa96a2012-11-21 09:40:49 -06001552 if ((port->type == PORT_XR17V35X) ||
1553 (port->type == PORT_XR17D15X)) {
Matt Schultedc96efb2012-11-19 09:12:04 -06001554 int0 = serial_port_in(port, 0x80);
1555 int1 = serial_port_in(port, 0x81);
1556 int2 = serial_port_in(port, 0x82);
1557 int3 = serial_port_in(port, 0x83);
1558 }
1559
1560 return ret;
1561}
1562
1563/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 * This is the serial driver's interrupt routine.
1565 *
1566 * Arjan thinks the old way was overly complex, so it got simplified.
1567 * Alan disagrees, saying that need the complexity to handle the weird
1568 * nature of ISA shared interrupts. (This is a special exception.)
1569 *
1570 * In order to handle ISA shared interrupts properly, we need to check
1571 * that all ports have been serviced, and therefore the ISA interrupt
1572 * line has been de-asserted.
1573 *
1574 * This means we need to loop through all ports. checking that they
1575 * don't have an interrupt pending.
1576 */
David Howells7d12e782006-10-05 14:55:46 +01001577static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
1579 struct irq_info *i = dev_id;
1580 struct list_head *l, *end = NULL;
1581 int pass_counter = 0, handled = 0;
1582
1583 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1584
1585 spin_lock(&i->lock);
1586
1587 l = i->head;
1588 do {
1589 struct uart_8250_port *up;
Jamie Iles583d28e2011-08-15 10:17:52 +01001590 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 up = list_entry(l, struct uart_8250_port, list);
Jamie Iles583d28e2011-08-15 10:17:52 +01001593 port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Dan Williams49b532f2012-04-06 11:49:44 -07001595 if (port->handle_irq(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 handled = 1;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001597 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 } else if (end == NULL)
1599 end = l;
1600
1601 l = l->next;
1602
1603 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1604 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001605 printk_ratelimited(KERN_ERR
1606 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 break;
1608 }
1609 } while (l != end);
1610
1611 spin_unlock(&i->lock);
1612
1613 DEBUG_INTR("end.\n");
1614
1615 return IRQ_RETVAL(handled);
1616}
1617
1618/*
1619 * To support ISA shared interrupts, we need to have one interrupt
1620 * handler that ensures that the IRQ line has been deasserted
1621 * before returning. Failing to do this will result in the IRQ
1622 * line being stuck active, and, since ISA irqs are edge triggered,
1623 * no more IRQs will be seen.
1624 */
1625static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1626{
1627 spin_lock_irq(&i->lock);
1628
1629 if (!list_empty(i->head)) {
1630 if (i->head == &up->list)
1631 i->head = i->head->next;
1632 list_del(&up->list);
1633 } else {
1634 BUG_ON(i->head != &up->list);
1635 i->head = NULL;
1636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001638 /* List empty so throw away the hash node */
1639 if (i->head == NULL) {
1640 hlist_del(&i->node);
1641 kfree(i);
1642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
1645static int serial_link_irq_chain(struct uart_8250_port *up)
1646{
Alan Cox25db8ad2008-08-19 20:49:40 -07001647 struct hlist_head *h;
1648 struct hlist_node *n;
1649 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001650 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Alan Cox25db8ad2008-08-19 20:49:40 -07001652 mutex_lock(&hash_mutex);
1653
1654 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1655
1656 hlist_for_each(n, h) {
1657 i = hlist_entry(n, struct irq_info, node);
1658 if (i->irq == up->port.irq)
1659 break;
1660 }
1661
1662 if (n == NULL) {
1663 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1664 if (i == NULL) {
1665 mutex_unlock(&hash_mutex);
1666 return -ENOMEM;
1667 }
1668 spin_lock_init(&i->lock);
1669 i->irq = up->port.irq;
1670 hlist_add_head(&i->node, h);
1671 }
1672 mutex_unlock(&hash_mutex);
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 spin_lock_irq(&i->lock);
1675
1676 if (i->head) {
1677 list_add(&up->list, i->head);
1678 spin_unlock_irq(&i->lock);
1679
1680 ret = 0;
1681 } else {
1682 INIT_LIST_HEAD(&up->list);
1683 i->head = &up->list;
1684 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001685 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 ret = request_irq(up->port.irq, serial8250_interrupt,
1687 irq_flags, "serial", i);
1688 if (ret < 0)
1689 serial_do_unlink(i, up);
1690 }
1691
1692 return ret;
1693}
1694
1695static void serial_unlink_irq_chain(struct uart_8250_port *up)
1696{
Alan Cox25db8ad2008-08-19 20:49:40 -07001697 struct irq_info *i;
1698 struct hlist_node *n;
1699 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Alan Cox25db8ad2008-08-19 20:49:40 -07001701 mutex_lock(&hash_mutex);
1702
1703 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1704
1705 hlist_for_each(n, h) {
1706 i = hlist_entry(n, struct irq_info, node);
1707 if (i->irq == up->port.irq)
1708 break;
1709 }
1710
1711 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 BUG_ON(i->head == NULL);
1713
1714 if (list_empty(i->head))
1715 free_irq(up->port.irq, i);
1716
1717 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001718 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
1721/*
1722 * This function is used to handle ports that do not have an
1723 * interrupt. This doesn't work very well for 16450's, but gives
1724 * barely passable results for a 16550A. (Although at the expense
1725 * of much CPU overhead).
1726 */
1727static void serial8250_timeout(unsigned long data)
1728{
1729 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Paul Gortmakera0431472011-12-04 18:42:21 -05001731 up->port.handle_irq(&up->port);
Anton Vorontsov54381062010-10-01 17:21:25 +04001732 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001733}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Alex Williamson40b36da2007-02-14 00:33:04 -08001735static void serial8250_backup_timeout(unsigned long data)
1736{
1737 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001738 unsigned int iir, ier = 0, lsr;
1739 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001740
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001741 spin_lock_irqsave(&up->port.lock, flags);
1742
Alex Williamson40b36da2007-02-14 00:33:04 -08001743 /*
1744 * Must disable interrupts or else we risk racing with the interrupt
1745 * based handler.
1746 */
Alan Coxd4e33fa2012-01-26 17:44:09 +00001747 if (up->port.irq) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001748 ier = serial_in(up, UART_IER);
1749 serial_out(up, UART_IER, 0);
1750 }
1751
1752 iir = serial_in(up, UART_IIR);
1753
1754 /*
1755 * This should be a safe test for anyone who doesn't trust the
1756 * IIR bits on their UART, but it's specifically designed for
1757 * the "Diva" UART used on the management processor on many HP
1758 * ia64 and parisc boxes.
1759 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001760 lsr = serial_in(up, UART_LSR);
1761 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001762 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001763 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001764 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001765 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1766 iir |= UART_IIR_THRI;
1767 }
1768
1769 if (!(iir & UART_IIR_NO_INT))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001770 serial8250_tx_chars(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001771
Alan Coxd4e33fa2012-01-26 17:44:09 +00001772 if (up->port.irq)
Alex Williamson40b36da2007-02-14 00:33:04 -08001773 serial_out(up, UART_IER, ier);
1774
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001775 spin_unlock_irqrestore(&up->port.lock, flags);
1776
Alex Williamson40b36da2007-02-14 00:33:04 -08001777 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001778 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001779 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
1781
1782static unsigned int serial8250_tx_empty(struct uart_port *port)
1783{
Jamie Iles49d57412010-12-01 23:39:35 +00001784 struct uart_8250_port *up =
1785 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001787 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001789 spin_lock_irqsave(&port->lock, flags);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001790 lsr = serial_port_in(port, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001791 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001792 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001794 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
1796
1797static unsigned int serial8250_get_mctrl(struct uart_port *port)
1798{
Jamie Iles49d57412010-12-01 23:39:35 +00001799 struct uart_8250_port *up =
1800 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001801 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 unsigned int ret;
1803
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001804 status = serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806 ret = 0;
1807 if (status & UART_MSR_DCD)
1808 ret |= TIOCM_CAR;
1809 if (status & UART_MSR_RI)
1810 ret |= TIOCM_RNG;
1811 if (status & UART_MSR_DSR)
1812 ret |= TIOCM_DSR;
1813 if (status & UART_MSR_CTS)
1814 ret |= TIOCM_CTS;
1815 return ret;
1816}
1817
1818static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1819{
Jamie Iles49d57412010-12-01 23:39:35 +00001820 struct uart_8250_port *up =
1821 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 unsigned char mcr = 0;
1823
1824 if (mctrl & TIOCM_RTS)
1825 mcr |= UART_MCR_RTS;
1826 if (mctrl & TIOCM_DTR)
1827 mcr |= UART_MCR_DTR;
1828 if (mctrl & TIOCM_OUT1)
1829 mcr |= UART_MCR_OUT1;
1830 if (mctrl & TIOCM_OUT2)
1831 mcr |= UART_MCR_OUT2;
1832 if (mctrl & TIOCM_LOOP)
1833 mcr |= UART_MCR_LOOP;
1834
1835 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1836
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001837 serial_port_out(port, UART_MCR, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}
1839
1840static void serial8250_break_ctl(struct uart_port *port, int break_state)
1841{
Jamie Iles49d57412010-12-01 23:39:35 +00001842 struct uart_8250_port *up =
1843 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 unsigned long flags;
1845
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001846 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if (break_state == -1)
1848 up->lcr |= UART_LCR_SBC;
1849 else
1850 up->lcr &= ~UART_LCR_SBC;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001851 serial_port_out(port, UART_LCR, up->lcr);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001852 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
Alex Williamson40b36da2007-02-14 00:33:04 -08001855/*
1856 * Wait for transmitter & holding register to empty
1857 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001858static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001859{
1860 unsigned int status, tmout = 10000;
1861
1862 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001863 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001864 status = serial_in(up, UART_LSR);
1865
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001866 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001867
David Daney97d303b2010-10-05 11:40:07 -07001868 if ((status & bits) == bits)
1869 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001870 if (--tmout == 0)
1871 break;
1872 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001873 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001874
1875 /* Wait up to 1s for flow control if necessary */
1876 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001877 unsigned int tmout;
1878 for (tmout = 1000000; tmout; tmout--) {
1879 unsigned int msr = serial_in(up, UART_MSR);
1880 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1881 if (msr & UART_MSR_CTS)
1882 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001883 udelay(1);
1884 touch_nmi_watchdog();
1885 }
1886 }
1887}
1888
Jason Wesself2d937f2008-04-17 20:05:37 +02001889#ifdef CONFIG_CONSOLE_POLL
1890/*
1891 * Console polling routines for writing and reading from the uart while
1892 * in an interrupt or debug context.
1893 */
1894
1895static int serial8250_get_poll_char(struct uart_port *port)
1896{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001897 unsigned char lsr = serial_port_in(port, UART_LSR);
Jason Wesself2d937f2008-04-17 20:05:37 +02001898
Jason Wesself5316b42010-05-20 21:04:22 -05001899 if (!(lsr & UART_LSR_DR))
1900 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001901
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001902 return serial_port_in(port, UART_RX);
Jason Wesself2d937f2008-04-17 20:05:37 +02001903}
1904
1905
1906static void serial8250_put_poll_char(struct uart_port *port,
1907 unsigned char c)
1908{
1909 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001910 struct uart_8250_port *up =
1911 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001912
1913 /*
1914 * First save the IER then disable the interrupts
1915 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001916 ier = serial_port_in(port, UART_IER);
Jason Wesself2d937f2008-04-17 20:05:37 +02001917 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001918 serial_port_out(port, UART_IER, UART_IER_UUE);
Jason Wesself2d937f2008-04-17 20:05:37 +02001919 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001920 serial_port_out(port, UART_IER, 0);
Jason Wesself2d937f2008-04-17 20:05:37 +02001921
1922 wait_for_xmitr(up, BOTH_EMPTY);
1923 /*
1924 * Send the character out.
1925 * If a LF, also do CR...
1926 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001927 serial_port_out(port, UART_TX, c);
Jason Wesself2d937f2008-04-17 20:05:37 +02001928 if (c == 10) {
1929 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001930 serial_port_out(port, UART_TX, 13);
Jason Wesself2d937f2008-04-17 20:05:37 +02001931 }
1932
1933 /*
1934 * Finally, wait for transmitter to become empty
1935 * and restore the IER
1936 */
1937 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001938 serial_port_out(port, UART_IER, ier);
Jason Wesself2d937f2008-04-17 20:05:37 +02001939}
1940
1941#endif /* CONFIG_CONSOLE_POLL */
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943static int serial8250_startup(struct uart_port *port)
1944{
Jamie Iles49d57412010-12-01 23:39:35 +00001945 struct uart_8250_port *up =
1946 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001948 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 int retval;
1950
Sean Young65ecc9c2012-09-07 19:06:24 +01001951 if (port->type == PORT_8250_CIR)
1952 return -ENODEV;
1953
Heikki Krogerus96604972013-01-10 11:25:05 +02001954 if (!port->fifosize)
1955 port->fifosize = uart_config[port->type].fifo_size;
1956 if (!up->tx_loadsz)
1957 up->tx_loadsz = uart_config[port->type].tx_loadsz;
1958 if (!up->capabilities)
1959 up->capabilities = uart_config[port->type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 up->mcr = 0;
1961
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001962 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01001963 set_io_from_upio(port);
1964
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001965 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 /* Wake up and initialize UART */
1967 up->acr = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001968 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1969 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1970 serial_port_out(port, UART_IER, 0);
1971 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001973 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1974 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1975 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
1977
1978#ifdef CONFIG_SERIAL_8250_RSA
1979 /*
1980 * If this is an RSA port, see if we can kick it up to the
1981 * higher speed clock.
1982 */
1983 enable_rsa(up);
1984#endif
1985
1986 /*
1987 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001988 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 */
1990 serial8250_clear_fifos(up);
1991
1992 /*
1993 * Clear the interrupt registers.
1994 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001995 serial_port_in(port, UART_LSR);
1996 serial_port_in(port, UART_RX);
1997 serial_port_in(port, UART_IIR);
1998 serial_port_in(port, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 /*
2001 * At this point, there's no way the LSR could still be 0xff;
2002 * if it is, then bail out, because there's likely no UART
2003 * here.
2004 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002005 if (!(port->flags & UPF_BUGGY_UART) &&
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002006 (serial_port_in(port, UART_LSR) == 0xff)) {
Konrad Rzeszutek Wilk7808a4c2011-09-26 09:14:34 -04002007 printk_ratelimited(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002008 serial_index(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return -ENODEV;
2010 }
2011
2012 /*
2013 * For a XR16C850, we need to set the trigger levels
2014 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002015 if (port->type == PORT_16850) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 unsigned char fctr;
2017
Paul Gortmaker0acf5192012-03-08 19:12:08 -05002018 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Paul Gortmaker0acf5192012-03-08 19:12:08 -05002020 fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002021 serial_port_out(port, UART_FCTR,
2022 fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2023 serial_port_out(port, UART_TRG, UART_TRG_96);
2024 serial_port_out(port, UART_FCTR,
2025 fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2026 serial_port_out(port, UART_TRG, UART_TRG_96);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002028 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
2030
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002031 if (port->irq) {
Alex Williamson01c194d2008-04-28 02:14:09 -07002032 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08002033 /*
2034 * Test for UARTs that do not reassert THRE when the
2035 * transmitter is idle and the interrupt has already
2036 * been cleared. Real 16550s should always reassert
2037 * this interrupt whenever the transmitter is idle and
2038 * the interrupt is enabled. Delays are necessary to
2039 * allow register changes to become visible.
2040 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002041 spin_lock_irqsave(&port->lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002042 if (up->port.irqflags & IRQF_SHARED)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002043 disable_irq_nosync(port->irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002044
2045 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker55e40162012-03-08 19:12:14 -05002046 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002047 udelay(1); /* allow THRE to set */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002048 iir1 = serial_port_in(port, UART_IIR);
2049 serial_port_out(port, UART_IER, 0);
Paul Gortmaker55e40162012-03-08 19:12:14 -05002050 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002051 udelay(1); /* allow a working UART time to re-assert THRE */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002052 iir = serial_port_in(port, UART_IIR);
2053 serial_port_out(port, UART_IER, 0);
Alex Williamson40b36da2007-02-14 00:33:04 -08002054
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002055 if (port->irqflags & IRQF_SHARED)
2056 enable_irq(port->irq);
2057 spin_unlock_irqrestore(&port->lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002058
2059 /*
Dan Williamsbc02d152012-04-06 11:49:50 -07002060 * If the interrupt is not reasserted, or we otherwise
2061 * don't trust the iir, setup a timer to kick the UART
2062 * on a regular basis.
Alex Williamson40b36da2007-02-14 00:33:04 -08002063 */
Dan Williamsbc02d152012-04-06 11:49:50 -07002064 if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) ||
2065 up->port.flags & UPF_BUG_THRE) {
Will Newton363f66f2008-09-02 14:35:44 -07002066 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002067 pr_debug("ttyS%d - using backup timer\n",
2068 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002069 }
2070 }
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 /*
Will Newton363f66f2008-09-02 14:35:44 -07002073 * The above check will only give an accurate result the first time
2074 * the port is opened so this value needs to be preserved.
2075 */
2076 if (up->bugs & UART_BUG_THRE) {
2077 up->timer.function = serial8250_backup_timeout;
2078 up->timer.data = (unsigned long)up;
2079 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002080 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002081 }
2082
2083 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * If the "interrupt" for this port doesn't correspond with any
2085 * hardware interrupt, we use a timer-based system. The original
2086 * driver used to do this with IRQ0.
2087 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002088 if (!port->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002090 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 } else {
2092 retval = serial_link_irq_chain(up);
2093 if (retval)
2094 return retval;
2095 }
2096
2097 /*
2098 * Now, initialize the UART
2099 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002100 serial_port_out(port, UART_LCR, UART_LCR_WLEN8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002102 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 if (up->port.flags & UPF_FOURPORT) {
Alan Coxd4e33fa2012-01-26 17:44:09 +00002104 if (!up->port.irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 up->port.mctrl |= TIOCM_OUT1;
2106 } else
2107 /*
2108 * Most PC uarts need OUT2 raised to enable interrupts.
2109 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002110 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 up->port.mctrl |= TIOCM_OUT2;
2112
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002113 serial8250_set_mctrl(port, port->mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002114
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002115 /* Serial over Lan (SoL) hack:
2116 Intel 8257x Gigabit ethernet chips have a
2117 16550 emulation, to be used for Serial Over Lan.
2118 Those chips take a longer time than a normal
2119 serial device to signalize that a transmission
2120 data was queued. Due to that, the above test generally
2121 fails. One solution would be to delay the reading of
2122 iir. However, this is not reliable, since the timeout
2123 is variable. So, let's just don't test if we receive
2124 TX irq. This way, we'll never enable UART_BUG_TXEN.
2125 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002126 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002127 goto dont_test_tx_en;
2128
Russell King55d3b282005-06-23 15:05:41 +01002129 /*
2130 * Do a quick test to see if we receive an
2131 * interrupt when we enable the TX irq.
2132 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002133 serial_port_out(port, UART_IER, UART_IER_THRI);
2134 lsr = serial_port_in(port, UART_LSR);
2135 iir = serial_port_in(port, UART_IIR);
2136 serial_port_out(port, UART_IER, 0);
Russell King55d3b282005-06-23 15:05:41 +01002137
2138 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002139 if (!(up->bugs & UART_BUG_TXEN)) {
2140 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002141 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002142 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002143 }
2144 } else {
Russell King67f76542005-06-23 22:26:43 +01002145 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002146 }
2147
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002148dont_test_tx_en:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002149 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002152 * Clear the interrupt registers again for luck, and clear the
2153 * saved flags to avoid getting false values from polling
2154 * routines or the previous session.
2155 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002156 serial_port_in(port, UART_LSR);
2157 serial_port_in(port, UART_RX);
2158 serial_port_in(port, UART_IIR);
2159 serial_port_in(port, UART_MSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002160 up->lsr_saved_flags = 0;
2161 up->msr_saved_flags = 0;
2162
2163 /*
Heikki Krogerus9ee4b832013-01-10 11:25:11 +02002164 * Request DMA channels for both RX and TX.
2165 */
2166 if (up->dma) {
2167 retval = serial8250_request_dma(up);
2168 if (retval) {
2169 pr_warn_ratelimited("ttyS%d - failed to request DMA\n",
2170 serial_index(port));
2171 up->dma = NULL;
2172 }
2173 }
2174
2175 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 * Finally, enable interrupts. Note: Modem status interrupts
2177 * are set via set_termios(), which will be occurring imminently
2178 * anyway, so we don't enable them here.
2179 */
2180 up->ier = UART_IER_RLSI | UART_IER_RDI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002181 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002183 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 unsigned int icp;
2185 /*
2186 * Enable interrupts on the AST Fourport board
2187 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002188 icp = (port->iobase & 0xfe0) | 0x01f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 outb_p(0x80, icp);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05002190 inb_p(icp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 }
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 return 0;
2194}
2195
2196static void serial8250_shutdown(struct uart_port *port)
2197{
Jamie Iles49d57412010-12-01 23:39:35 +00002198 struct uart_8250_port *up =
2199 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 unsigned long flags;
2201
2202 /*
2203 * Disable interrupts from this port
2204 */
2205 up->ier = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002206 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Heikki Krogerus9ee4b832013-01-10 11:25:11 +02002208 if (up->dma)
2209 serial8250_release_dma(up);
2210
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002211 spin_lock_irqsave(&port->lock, flags);
2212 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 /* reset interrupts on the AST Fourport board */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002214 inb((port->iobase & 0xfe0) | 0x1f);
2215 port->mctrl |= TIOCM_OUT1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002217 port->mctrl &= ~TIOCM_OUT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002219 serial8250_set_mctrl(port, port->mctrl);
2220 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 /*
2223 * Disable break condition and FIFOs
2224 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002225 serial_port_out(port, UART_LCR,
2226 serial_port_in(port, UART_LCR) & ~UART_LCR_SBC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 serial8250_clear_fifos(up);
2228
2229#ifdef CONFIG_SERIAL_8250_RSA
2230 /*
2231 * Reset the RSA board back to 115kbps compat mode.
2232 */
2233 disable_rsa(up);
2234#endif
2235
2236 /*
2237 * Read data port to reset things, and then unlink from
2238 * the IRQ chain.
2239 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002240 serial_port_in(port, UART_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Alex Williamson40b36da2007-02-14 00:33:04 -08002242 del_timer_sync(&up->timer);
2243 up->timer.function = serial8250_timeout;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002244 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 serial_unlink_irq_chain(up);
2246}
2247
2248static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2249{
2250 unsigned int quot;
2251
2252 /*
2253 * Handle magic divisors for baud rates above baud_base on
2254 * SMSC SuperIO chips.
2255 */
2256 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2257 baud == (port->uartclk/4))
2258 quot = 0x8001;
2259 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2260 baud == (port->uartclk/8))
2261 quot = 0x8002;
2262 else
2263 quot = uart_get_divisor(port, baud);
2264
2265 return quot;
2266}
2267
Philippe Langlais235dae52010-07-29 17:13:57 +02002268void
2269serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2270 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
Jamie Iles49d57412010-12-01 23:39:35 +00002272 struct uart_8250_port *up =
2273 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 unsigned char cval, fcr = 0;
2275 unsigned long flags;
2276 unsigned int baud, quot;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002277 int fifo_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 switch (termios->c_cflag & CSIZE) {
2280 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002281 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 break;
2283 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002284 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 break;
2286 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002287 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 break;
2289 default:
2290 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002291 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 break;
2293 }
2294
2295 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002296 cval |= UART_LCR_STOP;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002297 if (termios->c_cflag & PARENB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 cval |= UART_LCR_PARITY;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002299 if (up->bugs & UART_BUG_PARITY)
2300 fifo_bug = 1;
2301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 if (!(termios->c_cflag & PARODD))
2303 cval |= UART_LCR_EPAR;
2304#ifdef CMSPAR
2305 if (termios->c_cflag & CMSPAR)
2306 cval |= UART_LCR_SPAR;
2307#endif
2308
2309 /*
2310 * Ask the core to calculate the divisor for us.
2311 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002312 baud = uart_get_baud_rate(port, termios, old,
2313 port->uartclk / 16 / 0xffff,
2314 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 quot = serial8250_get_divisor(port, baud);
2316
2317 /*
Russell King4ba5e352005-06-23 10:43:04 +01002318 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 */
Russell King4ba5e352005-06-23 10:43:04 +01002320 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002321 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002323 if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) {
Christian Melkif9a91112012-04-30 11:21:26 +02002324 fcr = uart_config[port->type].fcr;
Heikki Krogerus2797f6f2013-09-05 17:34:52 +03002325 if ((baud < 2400 && !up->dma) || fifo_bug) {
Christian Melkif9a91112012-04-30 11:21:26 +02002326 fcr &= ~UART_FCR_TRIGGER_MASK;
2327 fcr |= UART_FCR_TRIGGER_1;
2328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
2330
2331 /*
2332 * MCR-based auto flow control. When AFE is enabled, RTS will be
2333 * deasserted when the receive FIFO contains more characters than
2334 * the trigger, or the MCR RTS bit is cleared. In the case where
2335 * the remote UART is not using CTS auto flow control, we must
2336 * have sufficient FIFO entries for the latency of the remote
2337 * UART to respond. IOW, at least 32 bytes of FIFO.
2338 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002339 if (up->capabilities & UART_CAP_AFE && port->fifosize >= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 up->mcr &= ~UART_MCR_AFE;
2341 if (termios->c_cflag & CRTSCTS)
2342 up->mcr |= UART_MCR_AFE;
2343 }
2344
2345 /*
2346 * Ok, we're now changing the port state. Do it with
2347 * interrupts disabled.
2348 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002349 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351 /*
2352 * Update the per-port timeout.
2353 */
2354 uart_update_timeout(port, termios->c_cflag, baud);
2355
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002356 port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 if (termios->c_iflag & INPCK)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002358 port->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 if (termios->c_iflag & (BRKINT | PARMRK))
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002360 port->read_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
2362 /*
2363 * Characteres to ignore
2364 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002365 port->ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002367 port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 if (termios->c_iflag & IGNBRK) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002369 port->ignore_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 /*
2371 * If we're ignoring parity and break indicators,
2372 * ignore overruns too (for real raw support).
2373 */
2374 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002375 port->ignore_status_mask |= UART_LSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377
2378 /*
2379 * ignore all characters if CREAD is not set
2380 */
2381 if ((termios->c_cflag & CREAD) == 0)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002382 port->ignore_status_mask |= UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 /*
2385 * CTS flow control flag and modem status interrupts
2386 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002387 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002388 if (!(up->bugs & UART_BUG_NOMSR) &&
2389 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 up->ier |= UART_IER_MSI;
2391 if (up->capabilities & UART_CAP_UUE)
Stephen Warren4539c242011-05-17 16:12:36 -06002392 up->ier |= UART_IER_UUE;
2393 if (up->capabilities & UART_CAP_RTOIE)
2394 up->ier |= UART_IER_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002396 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398 if (up->capabilities & UART_CAP_EFR) {
2399 unsigned char efr = 0;
2400 /*
2401 * TI16C752/Startech hardware flow control. FIXME:
2402 * - TI16C752 requires control thresholds to be set.
2403 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2404 */
2405 if (termios->c_cflag & CRTSCTS)
2406 efr |= UART_EFR_CTS;
2407
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002408 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002409 if (port->flags & UPF_EXAR_EFR)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002410 serial_port_out(port, UART_XR_EFR, efr);
Søren Holm06315342011-09-02 22:55:37 +02002411 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002412 serial_port_out(port, UART_EFR, efr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 }
2414
Jonathan McDowell255341c2006-08-14 23:05:32 -07002415 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002416 if (is_omap1510_8250(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002417 if (baud == 115200) {
2418 quot = 1;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002419 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002420 } else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002421 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002422 }
Jonathan McDowell255341c2006-08-14 23:05:32 -07002423
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002424 /*
2425 * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2,
2426 * otherwise just set DLAB
2427 */
2428 if (up->capabilities & UART_NATSEMI)
2429 serial_port_out(port, UART_LCR, 0xe0);
2430 else
2431 serial_port_out(port, UART_LCR, cval | UART_LCR_DLAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002433 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435 /*
Joe Schultz45a7bd62014-02-11 18:30:01 -06002436 * XR17V35x UARTs have an extra fractional divisor register (DLD)
2437 *
2438 * We need to recalculate all of the registers, because DLM and DLL
2439 * are already rounded to a whole integer.
2440 *
2441 * When recalculating we use a 32x clock instead of a 16x clock to
2442 * allow 1-bit for rounding in the fractional part.
2443 */
2444 if (up->port.type == PORT_XR17V35X) {
2445 unsigned int baud_x32 = (port->uartclk * 2) / baud;
2446 u16 quot = baud_x32 / 32;
2447 u8 quot_frac = DIV_ROUND_CLOSEST(baud_x32 % 32, 2);
2448
2449 serial_dl_write(up, quot);
2450 serial_port_out(port, 0x2, quot_frac & 0xf);
2451 }
2452
2453 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2455 * is written without DLAB set, this mode will be disabled.
2456 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002457 if (port->type == PORT_16750)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002458 serial_port_out(port, UART_FCR, fcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002460 serial_port_out(port, UART_LCR, cval); /* reset DLAB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 up->lcr = cval; /* Save LCR */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002462 if (port->type != PORT_16750) {
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002463 /* emulated UARTs (Lucent Venus 167x) need two steps */
2464 if (fcr & UART_FCR_ENABLE_FIFO)
2465 serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);
2466 serial_port_out(port, UART_FCR, fcr); /* set fcr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002468 serial8250_set_mctrl(port, port->mctrl);
2469 spin_unlock_irqrestore(&port->lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002470 /* Don't rewrite B0 */
2471 if (tty_termios_baud_rate(termios))
2472 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473}
Philippe Langlais235dae52010-07-29 17:13:57 +02002474EXPORT_SYMBOL(serial8250_do_set_termios);
2475
2476static void
2477serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2478 struct ktermios *old)
2479{
2480 if (port->set_termios)
2481 port->set_termios(port, termios, old);
2482 else
2483 serial8250_do_set_termios(port, termios, old);
2484}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002487serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002488{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002489 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002490 port->flags |= UPF_HARDPPS_CD;
2491 serial8250_enable_ms(port);
2492 } else
2493 port->flags &= ~UPF_HARDPPS_CD;
2494}
2495
Manuel Laussc161afe2010-09-25 15:13:45 +02002496
2497void serial8250_do_pm(struct uart_port *port, unsigned int state,
2498 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
Jamie Iles49d57412010-12-01 23:39:35 +00002500 struct uart_8250_port *p =
2501 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
2503 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002504}
2505EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Manuel Laussc161afe2010-09-25 15:13:45 +02002507static void
2508serial8250_pm(struct uart_port *port, unsigned int state,
2509 unsigned int oldstate)
2510{
2511 if (port->pm)
2512 port->pm(port, state, oldstate);
2513 else
2514 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515}
2516
Russell Kingf2eda272008-09-01 21:47:59 +01002517static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2518{
2519 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002520 return 0x1000;
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002521 if (is_omap1_8250(pt))
Russell Kingf2eda272008-09-01 21:47:59 +01002522 return 0x16 << pt->port.regshift;
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002523
Russell Kingf2eda272008-09-01 21:47:59 +01002524 return 8 << pt->port.regshift;
2525}
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527/*
2528 * Resource handling.
2529 */
2530static int serial8250_request_std_resource(struct uart_8250_port *up)
2531{
Russell Kingf2eda272008-09-01 21:47:59 +01002532 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002533 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 int ret = 0;
2535
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002536 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002537 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002538 case UPIO_TSI:
2539 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002541 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 break;
2543
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002544 if (!request_mem_region(port->mapbase, size, "serial")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 ret = -EBUSY;
2546 break;
2547 }
2548
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002549 if (port->flags & UPF_IOREMAP) {
2550 port->membase = ioremap_nocache(port->mapbase, size);
2551 if (!port->membase) {
2552 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 ret = -ENOMEM;
2554 }
2555 }
2556 break;
2557
2558 case UPIO_HUB6:
2559 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002560 if (!request_region(port->iobase, size, "serial"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 ret = -EBUSY;
2562 break;
2563 }
2564 return ret;
2565}
2566
2567static void serial8250_release_std_resource(struct uart_8250_port *up)
2568{
Russell Kingf2eda272008-09-01 21:47:59 +01002569 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002570 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002572 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002573 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002574 case UPIO_TSI:
2575 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002577 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 break;
2579
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002580 if (port->flags & UPF_IOREMAP) {
2581 iounmap(port->membase);
2582 port->membase = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 }
2584
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002585 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 break;
2587
2588 case UPIO_HUB6:
2589 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002590 release_region(port->iobase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 break;
2592 }
2593}
2594
2595static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2596{
2597 unsigned long start = UART_RSA_BASE << up->port.regshift;
2598 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002599 struct uart_port *port = &up->port;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002600 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002602 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 case UPIO_HUB6:
2604 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002605 start += port->iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002606 if (request_region(start, size, "serial-rsa"))
2607 ret = 0;
2608 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 ret = -EBUSY;
2610 break;
2611 }
2612
2613 return ret;
2614}
2615
2616static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2617{
2618 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2619 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002620 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002622 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 case UPIO_HUB6:
2624 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002625 release_region(port->iobase + offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 break;
2627 }
2628}
2629
2630static void serial8250_release_port(struct uart_port *port)
2631{
Jamie Iles49d57412010-12-01 23:39:35 +00002632 struct uart_8250_port *up =
2633 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 serial8250_release_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002636 if (port->type == PORT_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 serial8250_release_rsa_resource(up);
2638}
2639
2640static int serial8250_request_port(struct uart_port *port)
2641{
Jamie Iles49d57412010-12-01 23:39:35 +00002642 struct uart_8250_port *up =
2643 container_of(port, struct uart_8250_port, port);
Sean Young65ecc9c2012-09-07 19:06:24 +01002644 int ret;
2645
2646 if (port->type == PORT_8250_CIR)
2647 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649 ret = serial8250_request_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002650 if (ret == 0 && port->type == PORT_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 ret = serial8250_request_rsa_resource(up);
2652 if (ret < 0)
2653 serial8250_release_std_resource(up);
2654 }
2655
2656 return ret;
2657}
2658
2659static void serial8250_config_port(struct uart_port *port, int flags)
2660{
Jamie Iles49d57412010-12-01 23:39:35 +00002661 struct uart_8250_port *up =
2662 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 int probeflags = PROBE_ANY;
2664 int ret;
2665
Sean Young65ecc9c2012-09-07 19:06:24 +01002666 if (port->type == PORT_8250_CIR)
2667 return;
2668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 * Find the region that we can probe for. This in turn
2671 * tells us whether we can probe for the type of port.
2672 */
2673 ret = serial8250_request_std_resource(up);
2674 if (ret < 0)
2675 return;
2676
2677 ret = serial8250_request_rsa_resource(up);
2678 if (ret < 0)
2679 probeflags &= ~PROBE_RSA;
2680
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002681 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01002682 set_io_from_upio(port);
2683
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 if (flags & UART_CONFIG_TYPE)
2685 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002686
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002687 /* if access method is AU, it is a 16550 with a quirk */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002688 if (port->type == PORT_16550A && port->iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002689 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002690
Stephen Warren3685f192014-01-07 15:00:12 -07002691 /* HW bugs may trigger IRQ while IIR == NO_INT */
2692 if (port->type == PORT_TEGRA)
2693 up->bugs |= UART_BUG_NOMSR;
2694
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002695 if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 autoconfig_irq(up);
2697
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002698 if (port->type != PORT_RSA && probeflags & PROBE_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 serial8250_release_rsa_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002700 if (port->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 serial8250_release_std_resource(up);
Matt Schultedc96efb2012-11-19 09:12:04 -06002702
2703 /* Fixme: probably not the best place for this */
Matt Schulte30fa96a2012-11-21 09:40:49 -06002704 if ((port->type == PORT_XR17V35X) ||
2705 (port->type == PORT_XR17D15X))
Matt Schultedc96efb2012-11-19 09:12:04 -06002706 port->handle_irq = exar_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707}
2708
2709static int
2710serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2711{
Yinghai Lua62c4132008-08-19 20:49:55 -07002712 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2714 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2715 ser->type == PORT_STARTECH)
2716 return -EINVAL;
2717 return 0;
2718}
2719
2720static const char *
2721serial8250_type(struct uart_port *port)
2722{
2723 int type = port->type;
2724
2725 if (type >= ARRAY_SIZE(uart_config))
2726 type = 0;
2727 return uart_config[type].name;
2728}
2729
2730static struct uart_ops serial8250_pops = {
2731 .tx_empty = serial8250_tx_empty,
2732 .set_mctrl = serial8250_set_mctrl,
2733 .get_mctrl = serial8250_get_mctrl,
2734 .stop_tx = serial8250_stop_tx,
2735 .start_tx = serial8250_start_tx,
2736 .stop_rx = serial8250_stop_rx,
2737 .enable_ms = serial8250_enable_ms,
2738 .break_ctl = serial8250_break_ctl,
2739 .startup = serial8250_startup,
2740 .shutdown = serial8250_shutdown,
2741 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002742 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 .pm = serial8250_pm,
2744 .type = serial8250_type,
2745 .release_port = serial8250_release_port,
2746 .request_port = serial8250_request_port,
2747 .config_port = serial8250_config_port,
2748 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002749#ifdef CONFIG_CONSOLE_POLL
2750 .poll_get_char = serial8250_get_poll_char,
2751 .poll_put_char = serial8250_put_poll_char,
2752#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753};
2754
2755static struct uart_8250_port serial8250_ports[UART_NR];
2756
Alan Coxaf7f3742010-10-18 11:38:02 -07002757static void (*serial8250_isa_config)(int port, struct uart_port *up,
2758 unsigned short *capabilities);
2759
2760void serial8250_set_isa_configurator(
2761 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2762{
2763 serial8250_isa_config = v;
2764}
2765EXPORT_SYMBOL(serial8250_set_isa_configurator);
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767static void __init serial8250_isa_init_ports(void)
2768{
2769 struct uart_8250_port *up;
2770 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002771 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
2773 if (!first)
2774 return;
2775 first = 0;
2776
Sean Young835d8442012-09-07 19:06:23 +01002777 if (nr_uarts > UART_NR)
2778 nr_uarts = UART_NR;
2779
Kyle McMartin317a6842013-06-03 09:38:26 -04002780 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 struct uart_8250_port *up = &serial8250_ports[i];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002782 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002784 port->line = i;
2785 spin_lock_init(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
2787 init_timer(&up->timer);
2788 up->timer.function = serial8250_timeout;
Sean Young835d8442012-09-07 19:06:23 +01002789 up->cur_iotype = 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
2791 /*
2792 * ALPHA_KLUDGE_MCR needs to be killed.
2793 */
2794 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2795 up->mcr_force = ALPHA_KLUDGE_MCR;
2796
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002797 port->ops = &serial8250_pops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
2799
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002800 if (share_irqs)
2801 irqflag = IRQF_SHARED;
2802
Russell King44454bc2005-06-30 22:41:22 +01002803 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002804 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 i++, up++) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002806 struct uart_port *port = &up->port;
2807
2808 port->iobase = old_serial_port[i].port;
2809 port->irq = irq_canonicalize(old_serial_port[i].irq);
2810 port->irqflags = old_serial_port[i].irqflags;
2811 port->uartclk = old_serial_port[i].baud_base * 16;
2812 port->flags = old_serial_port[i].flags;
2813 port->hub6 = old_serial_port[i].hub6;
2814 port->membase = old_serial_port[i].iomem_base;
2815 port->iotype = old_serial_port[i].io_type;
2816 port->regshift = old_serial_port[i].iomem_reg_shift;
2817 set_io_from_upio(port);
2818 port->irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002819 if (serial8250_isa_config != NULL)
2820 serial8250_isa_config(i, &up->port, &up->capabilities);
2821
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823}
2824
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002825static void
2826serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2827{
2828 up->port.type = type;
Heikki Krogerus96604972013-01-10 11:25:05 +02002829 if (!up->port.fifosize)
2830 up->port.fifosize = uart_config[type].fifo_size;
2831 if (!up->tx_loadsz)
2832 up->tx_loadsz = uart_config[type].tx_loadsz;
2833 if (!up->capabilities)
2834 up->capabilities = uart_config[type].flags;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002835}
2836
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837static void __init
2838serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2839{
2840 int i;
2841
Alan Coxb8e7e402009-05-28 14:01:35 +01002842 for (i = 0; i < nr_uarts; i++) {
2843 struct uart_8250_port *up = &serial8250_ports[i];
Alan Coxb8e7e402009-05-28 14:01:35 +01002844
Sean Young835d8442012-09-07 19:06:23 +01002845 if (up->port.dev)
2846 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002849
2850 if (up->port.flags & UPF_FIXED_TYPE)
2851 serial8250_init_fixed_type_port(up, up->port.type);
2852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 uart_add_one_port(drv, &up->port);
2854 }
2855}
2856
2857#ifdef CONFIG_SERIAL_8250_CONSOLE
2858
Russell Kingd3587882006-03-20 20:00:09 +00002859static void serial8250_console_putchar(struct uart_port *port, int ch)
2860{
Jamie Iles49d57412010-12-01 23:39:35 +00002861 struct uart_8250_port *up =
2862 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002863
2864 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002865 serial_port_out(port, UART_TX, ch);
Russell Kingd3587882006-03-20 20:00:09 +00002866}
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868/*
2869 * Print a string to the serial port trying not to disturb
2870 * any possible real use of the port...
2871 *
2872 * The console_lock must be held when we get here.
2873 */
2874static void
2875serial8250_console_write(struct console *co, const char *s, unsigned int count)
2876{
2877 struct uart_8250_port *up = &serial8250_ports[co->index];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002878 struct uart_port *port = &up->port;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002879 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002881 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
Andrew Morton78512ec2005-11-07 00:59:13 -08002883 touch_nmi_watchdog();
2884
Andrew Morton68aa2c02006-06-30 02:29:59 -07002885 local_irq_save(flags);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002886 if (port->sysrq) {
Paul Gortmaker86b21192011-12-04 18:42:22 -05002887 /* serial8250_handle_irq() already took the lock */
Andrew Morton68aa2c02006-06-30 02:29:59 -07002888 locked = 0;
2889 } else if (oops_in_progress) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002890 locked = spin_trylock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002891 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002892 spin_lock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002895 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002897 ier = serial_port_in(port, UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002900 serial_port_out(port, UART_IER, UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002902 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002904 uart_console_write(port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906 /*
2907 * Finally, wait for transmitter to become empty
2908 * and restore the IER
2909 */
Alan Coxf91a3712006-01-21 14:59:12 +00002910 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002911 serial_port_out(port, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002912
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002913 /*
2914 * The receive handling will happen properly because the
2915 * receive ready bit will still be set; it is not cleared
2916 * on read. However, modem control will not, we must
2917 * call it if we have saved something in the saved flags
2918 * while processing with interrupts off.
2919 */
2920 if (up->msr_saved_flags)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05002921 serial8250_modem_status(up);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002922
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002923 if (locked)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002924 spin_unlock(&port->lock);
Andrew Morton68aa2c02006-06-30 02:29:59 -07002925 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002928static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929{
2930 struct uart_port *port;
2931 int baud = 9600;
2932 int bits = 8;
2933 int parity = 'n';
2934 int flow = 'n';
2935
2936 /*
2937 * Check whether an invalid uart number has been specified, and
2938 * if so, search for the first available port that does have
2939 * console support.
2940 */
Kyle McMartin317a6842013-06-03 09:38:26 -04002941 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 co->index = 0;
2943 port = &serial8250_ports[co->index].port;
2944 if (!port->iobase && !port->membase)
2945 return -ENODEV;
2946
2947 if (options)
2948 uart_parse_options(options, &baud, &parity, &bits, &flow);
2949
2950 return uart_set_options(port, co, baud, parity, bits, flow);
2951}
2952
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002953static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002954{
2955 return serial8250_find_port_for_earlycon();
2956}
2957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958static struct console serial8250_console = {
2959 .name = "ttyS",
2960 .write = serial8250_console_write,
2961 .device = uart_console_device,
2962 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002963 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002964 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 .index = -1,
2966 .data = &serial8250_reg,
2967};
2968
2969static int __init serial8250_console_init(void)
2970{
2971 serial8250_isa_init_ports();
2972 register_console(&serial8250_console);
2973 return 0;
2974}
2975console_initcall(serial8250_console_init);
2976
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002977int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978{
2979 int line;
2980 struct uart_port *port;
2981
Kyle McMartin317a6842013-06-03 09:38:26 -04002982 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002984 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 return line;
2986 }
2987 return -ENODEV;
2988}
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990#define SERIAL8250_CONSOLE &serial8250_console
2991#else
2992#define SERIAL8250_CONSOLE NULL
2993#endif
2994
2995static struct uart_driver serial8250_reg = {
2996 .owner = THIS_MODULE,
2997 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 .dev_name = "ttyS",
2999 .major = TTY_MAJOR,
3000 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 .cons = SERIAL8250_CONSOLE,
3002};
3003
Russell Kingd856c662006-02-23 10:22:13 +00003004/*
3005 * early_serial_setup - early registration for 8250 ports
3006 *
3007 * Setup an 8250 port structure prior to console initialisation. Use
3008 * after console initialisation will cause undefined behaviour.
3009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010int __init early_serial_setup(struct uart_port *port)
3011{
David Daneyb4304282009-01-02 13:49:41 +00003012 struct uart_port *p;
3013
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 if (port->line >= ARRAY_SIZE(serial8250_ports))
3015 return -ENODEV;
3016
3017 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00003018 p = &serial8250_ports[port->line].port;
3019 p->iobase = port->iobase;
3020 p->membase = port->membase;
3021 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003022 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00003023 p->uartclk = port->uartclk;
3024 p->fifosize = port->fifosize;
3025 p->regshift = port->regshift;
3026 p->iotype = port->iotype;
3027 p->flags = port->flags;
3028 p->mapbase = port->mapbase;
3029 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01003030 p->type = port->type;
3031 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00003032
3033 set_io_from_upio(p);
3034 if (port->serial_in)
3035 p->serial_in = port->serial_in;
3036 if (port->serial_out)
3037 p->serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003038 if (port->handle_irq)
3039 p->handle_irq = port->handle_irq;
3040 else
3041 p->handle_irq = serial8250_default_handle_irq;
David Daney7d6a07d2009-01-02 13:49:47 +00003042
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 return 0;
3044}
3045
3046/**
3047 * serial8250_suspend_port - suspend one serial port
3048 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 *
3050 * Suspend one serial port.
3051 */
3052void serial8250_suspend_port(int line)
3053{
3054 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
3055}
3056
3057/**
3058 * serial8250_resume_port - resume one serial port
3059 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 *
3061 * Resume one serial port.
3062 */
3063void serial8250_resume_port(int line)
3064{
David Woodhouseb5b82df2007-05-17 14:27:39 +08003065 struct uart_8250_port *up = &serial8250_ports[line];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05003066 struct uart_port *port = &up->port;
David Woodhouseb5b82df2007-05-17 14:27:39 +08003067
3068 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08003069 /* Ensure it's still in high speed mode */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05003070 serial_port_out(port, UART_LCR, 0xE0);
David Woodhouseb5b82df2007-05-17 14:27:39 +08003071
Yin Kangkai0d0389e2011-02-09 11:35:18 +08003072 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08003073
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05003074 serial_port_out(port, UART_LCR, 0);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05003075 port->uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08003076 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05003077 uart_resume_port(&serial8250_reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078}
3079
3080/*
3081 * Register a set of serial devices attached to a platform device. The
3082 * list is terminated with a zero flags entry, which means we expect
3083 * all entries to have at least UPF_BOOT_AUTOCONF set.
3084 */
Bill Pemberton9671f092012-11-19 13:21:50 -05003085static int serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
Jingoo Han574de552013-07-30 17:06:57 +09003087 struct plat_serial8250_port *p = dev_get_platdata(&dev->dev);
Alan Cox2655a2c2012-07-12 12:59:50 +01003088 struct uart_8250_port uart;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003089 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Alan Cox2655a2c2012-07-12 12:59:50 +01003091 memset(&uart, 0, sizeof(uart));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003093 if (share_irqs)
3094 irqflag = IRQF_SHARED;
3095
Russell Kingec9f47c2005-06-27 11:12:54 +01003096 for (i = 0; p && p->flags != 0; p++, i++) {
Alan Cox2655a2c2012-07-12 12:59:50 +01003097 uart.port.iobase = p->iobase;
3098 uart.port.membase = p->membase;
3099 uart.port.irq = p->irq;
3100 uart.port.irqflags = p->irqflags;
3101 uart.port.uartclk = p->uartclk;
3102 uart.port.regshift = p->regshift;
3103 uart.port.iotype = p->iotype;
3104 uart.port.flags = p->flags;
3105 uart.port.mapbase = p->mapbase;
3106 uart.port.hub6 = p->hub6;
3107 uart.port.private_data = p->private_data;
3108 uart.port.type = p->type;
3109 uart.port.serial_in = p->serial_in;
3110 uart.port.serial_out = p->serial_out;
3111 uart.port.handle_irq = p->handle_irq;
3112 uart.port.handle_break = p->handle_break;
3113 uart.port.set_termios = p->set_termios;
3114 uart.port.pm = p->pm;
3115 uart.port.dev = &dev->dev;
3116 uart.port.irqflags |= irqflag;
3117 ret = serial8250_register_8250_port(&uart);
Russell Kingec9f47c2005-06-27 11:12:54 +01003118 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003119 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003120 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3121 p->iobase, (unsigned long long)p->mapbase,
3122 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 }
3125 return 0;
3126}
3127
3128/*
3129 * Remove serial ports registered against a platform device.
3130 */
Bill Pembertonae8d8a12012-11-19 13:26:18 -05003131static int serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132{
3133 int i;
3134
Kyle McMartin317a6842013-06-03 09:38:26 -04003135 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 struct uart_8250_port *up = &serial8250_ports[i];
3137
Russell King3ae5eae2005-11-09 22:32:44 +00003138 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 serial8250_unregister_port(i);
3140 }
3141 return 0;
3142}
3143
Russell King3ae5eae2005-11-09 22:32:44 +00003144static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
3146 int i;
3147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 for (i = 0; i < UART_NR; i++) {
3149 struct uart_8250_port *up = &serial8250_ports[i];
3150
Russell King3ae5eae2005-11-09 22:32:44 +00003151 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 uart_suspend_port(&serial8250_reg, &up->port);
3153 }
3154
3155 return 0;
3156}
3157
Russell King3ae5eae2005-11-09 22:32:44 +00003158static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159{
3160 int i;
3161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 for (i = 0; i < UART_NR; i++) {
3163 struct uart_8250_port *up = &serial8250_ports[i];
3164
Russell King3ae5eae2005-11-09 22:32:44 +00003165 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003166 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 }
3168
3169 return 0;
3170}
3171
Russell King3ae5eae2005-11-09 22:32:44 +00003172static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 .probe = serial8250_probe,
Bill Pemberton2d47b712012-11-19 13:21:34 -05003174 .remove = serial8250_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 .suspend = serial8250_suspend,
3176 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003177 .driver = {
3178 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003179 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003180 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181};
3182
3183/*
3184 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3185 * in the table in include/asm/serial.h
3186 */
3187static struct platform_device *serial8250_isa_devs;
3188
3189/*
Alan Cox2655a2c2012-07-12 12:59:50 +01003190 * serial8250_register_8250_port and serial8250_unregister_port allows for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3192 * modems and PCI multiport cards.
3193 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003194static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
3196static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3197{
3198 int i;
3199
3200 /*
3201 * First, find a port entry which matches.
3202 */
Kyle McMartin317a6842013-06-03 09:38:26 -04003203 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 if (uart_match_port(&serial8250_ports[i].port, port))
3205 return &serial8250_ports[i];
3206
3207 /*
3208 * We didn't find a matching entry, so look for the first
3209 * free entry. We look for one which hasn't been previously
3210 * used (indicated by zero iobase).
3211 */
Kyle McMartin317a6842013-06-03 09:38:26 -04003212 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3214 serial8250_ports[i].port.iobase == 0)
3215 return &serial8250_ports[i];
3216
3217 /*
3218 * That also failed. Last resort is to find any entry which
3219 * doesn't have a real port associated with it.
3220 */
Kyle McMartin317a6842013-06-03 09:38:26 -04003221 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3223 return &serial8250_ports[i];
3224
3225 return NULL;
3226}
3227
3228/**
Magnus Dammf73fa052012-05-02 21:47:27 +09003229 * serial8250_register_8250_port - register a serial port
Randy Dunlap58bcd332012-06-08 18:51:23 -07003230 * @up: serial port template
Magnus Dammf73fa052012-05-02 21:47:27 +09003231 *
3232 * Configure the serial port specified by the request. If the
3233 * port exists and is in use, it is hung up and unregistered
3234 * first.
3235 *
3236 * The port is then probed and if necessary the IRQ is autodetected
3237 * If this fails an error is returned.
3238 *
3239 * On success the port is ready to use and the line number is returned.
3240 */
3241int serial8250_register_8250_port(struct uart_8250_port *up)
3242{
3243 struct uart_8250_port *uart;
3244 int ret = -ENOSPC;
3245
3246 if (up->port.uartclk == 0)
3247 return -EINVAL;
3248
3249 mutex_lock(&serial_mutex);
3250
3251 uart = serial8250_find_match_or_unused(&up->port);
Sean Young65ecc9c2012-09-07 19:06:24 +01003252 if (uart && uart->port.type != PORT_8250_CIR) {
Sean Young835d8442012-09-07 19:06:23 +01003253 if (uart->port.dev)
3254 uart_remove_one_port(&serial8250_reg, &uart->port);
Magnus Dammf73fa052012-05-02 21:47:27 +09003255
3256 uart->port.iobase = up->port.iobase;
3257 uart->port.membase = up->port.membase;
3258 uart->port.irq = up->port.irq;
3259 uart->port.irqflags = up->port.irqflags;
3260 uart->port.uartclk = up->port.uartclk;
3261 uart->port.fifosize = up->port.fifosize;
3262 uart->port.regshift = up->port.regshift;
3263 uart->port.iotype = up->port.iotype;
3264 uart->port.flags = up->port.flags | UPF_BOOT_AUTOCONF;
Alan Coxa2d33d82012-07-12 13:00:06 +01003265 uart->bugs = up->bugs;
Magnus Dammf73fa052012-05-02 21:47:27 +09003266 uart->port.mapbase = up->port.mapbase;
3267 uart->port.private_data = up->port.private_data;
Heikki Krogerus96604972013-01-10 11:25:05 +02003268 uart->port.fifosize = up->port.fifosize;
3269 uart->tx_loadsz = up->tx_loadsz;
3270 uart->capabilities = up->capabilities;
3271
Heikki Krogerus6a3f45d2013-03-25 13:34:44 +02003272 /* Take tx_loadsz from fifosize if it wasn't set separately */
3273 if (uart->port.fifosize && !uart->tx_loadsz)
3274 uart->tx_loadsz = uart->port.fifosize;
3275
Magnus Dammf73fa052012-05-02 21:47:27 +09003276 if (up->port.dev)
3277 uart->port.dev = up->port.dev;
3278
3279 if (up->port.flags & UPF_FIXED_TYPE)
3280 serial8250_init_fixed_type_port(uart, up->port.type);
3281
3282 set_io_from_upio(&uart->port);
3283 /* Possibly override default I/O functions. */
3284 if (up->port.serial_in)
3285 uart->port.serial_in = up->port.serial_in;
3286 if (up->port.serial_out)
3287 uart->port.serial_out = up->port.serial_out;
3288 if (up->port.handle_irq)
3289 uart->port.handle_irq = up->port.handle_irq;
3290 /* Possibly override set_termios call */
3291 if (up->port.set_termios)
3292 uart->port.set_termios = up->port.set_termios;
3293 if (up->port.pm)
3294 uart->port.pm = up->port.pm;
3295 if (up->port.handle_break)
3296 uart->port.handle_break = up->port.handle_break;
3297 if (up->dl_read)
3298 uart->dl_read = up->dl_read;
3299 if (up->dl_write)
3300 uart->dl_write = up->dl_write;
Heikki Krogerus9ee4b832013-01-10 11:25:11 +02003301 if (up->dma)
3302 uart->dma = up->dma;
Magnus Dammf73fa052012-05-02 21:47:27 +09003303
3304 if (serial8250_isa_config != NULL)
3305 serial8250_isa_config(0, &uart->port,
3306 &uart->capabilities);
3307
3308 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3309 if (ret == 0)
3310 ret = uart->port.line;
3311 }
3312 mutex_unlock(&serial_mutex);
3313
3314 return ret;
3315}
3316EXPORT_SYMBOL(serial8250_register_8250_port);
3317
3318/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3320 * @line: serial line number
3321 *
3322 * Remove one serial port. This may not be called from interrupt
3323 * context. We hand the port back to the our control.
3324 */
3325void serial8250_unregister_port(int line)
3326{
3327 struct uart_8250_port *uart = &serial8250_ports[line];
3328
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003329 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 uart_remove_one_port(&serial8250_reg, &uart->port);
3331 if (serial8250_isa_devs) {
3332 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3333 uart->port.type = PORT_UNKNOWN;
3334 uart->port.dev = &serial8250_isa_devs->dev;
leitao@linux.vnet.ibm.comcb01ece2011-05-26 11:18:39 -03003335 uart->capabilities = uart_config[uart->port.type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 uart_add_one_port(&serial8250_reg, &uart->port);
3337 } else {
3338 uart->port.dev = NULL;
3339 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003340 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341}
3342EXPORT_SYMBOL(serial8250_unregister_port);
3343
3344static int __init serial8250_init(void)
3345{
Alan Cox25db8ad2008-08-19 20:49:40 -07003346 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Sean Young835d8442012-09-07 19:06:23 +01003348 serial8250_isa_init_ports();
Dave Jonesa61c2d72006-01-07 23:18:19 +00003349
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003350 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003351 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 share_irqs ? "en" : "dis");
3353
David Millerb70ac772008-10-13 10:36:31 +01003354#ifdef CONFIG_SPARC
3355 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3356#else
3357 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 if (ret)
3361 goto out;
3362
Sean Young835d8442012-09-07 19:06:23 +01003363 ret = serial8250_pnp_init();
3364 if (ret)
3365 goto unreg_uart_drv;
3366
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003367 serial8250_isa_devs = platform_device_alloc("serial8250",
3368 PLAT8250_DEV_LEGACY);
3369 if (!serial8250_isa_devs) {
3370 ret = -ENOMEM;
Sean Young835d8442012-09-07 19:06:23 +01003371 goto unreg_pnp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 }
3373
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003374 ret = platform_device_add(serial8250_isa_devs);
3375 if (ret)
3376 goto put_dev;
3377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3379
Russell Kingbc965a72006-01-18 09:54:29 +00003380 ret = platform_driver_register(&serial8250_isa_driver);
3381 if (ret == 0)
3382 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
Russell Kingbc965a72006-01-18 09:54:29 +00003384 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003385put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003386 platform_device_put(serial8250_isa_devs);
Sean Young835d8442012-09-07 19:06:23 +01003387unreg_pnp:
3388 serial8250_pnp_exit();
Alan Cox25db8ad2008-08-19 20:49:40 -07003389unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003390#ifdef CONFIG_SPARC
3391 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3392#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003394#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003395out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 return ret;
3397}
3398
3399static void __exit serial8250_exit(void)
3400{
3401 struct platform_device *isa_dev = serial8250_isa_devs;
3402
3403 /*
3404 * This tells serial8250_unregister_port() not to re-register
3405 * the ports (thereby making serial8250_isa_driver permanently
3406 * in use.)
3407 */
3408 serial8250_isa_devs = NULL;
3409
Russell King3ae5eae2005-11-09 22:32:44 +00003410 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 platform_device_unregister(isa_dev);
3412
Sean Young835d8442012-09-07 19:06:23 +01003413 serial8250_pnp_exit();
3414
David Millerb70ac772008-10-13 10:36:31 +01003415#ifdef CONFIG_SPARC
3416 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3417#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003419#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420}
3421
3422module_init(serial8250_init);
3423module_exit(serial8250_exit);
3424
3425EXPORT_SYMBOL(serial8250_suspend_port);
3426EXPORT_SYMBOL(serial8250_resume_port);
3427
3428MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003429MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
3431module_param(share_irqs, uint, 0644);
3432MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3433 " (unsafe)");
3434
Dave Jonesa61c2d72006-01-07 23:18:19 +00003435module_param(nr_uarts, uint, 0644);
3436MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3437
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003438module_param(skip_txen_test, uint, 0644);
3439MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441#ifdef CONFIG_SERIAL_8250_RSA
3442module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3443MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3444#endif
3445MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);
Josh Boyerf2b8dfd2013-03-10 10:33:40 -04003446
Jiri Slaby9326b042013-03-19 11:34:57 +01003447#ifdef CONFIG_SERIAL_8250_DEPRECATED_OPTIONS
Josh Boyerf2b8dfd2013-03-10 10:33:40 -04003448#ifndef MODULE
3449/* This module was renamed to 8250_core in 3.7. Keep the old "8250" name
3450 * working as well for the module options so we don't break people. We
3451 * need to keep the names identical and the convenient macros will happily
3452 * refuse to let us do that by failing the build with redefinition errors
3453 * of global variables. So we stick them inside a dummy function to avoid
3454 * those conflicts. The options still get parsed, and the redefined
3455 * MODULE_PARAM_PREFIX lets us keep the "8250." syntax alive.
3456 *
3457 * This is hacky. I'm sorry.
3458 */
3459static void __used s8250_options(void)
3460{
3461#undef MODULE_PARAM_PREFIX
Jiri Slaby9196d8a2013-03-19 11:34:56 +01003462#define MODULE_PARAM_PREFIX "8250_core."
Josh Boyerf2b8dfd2013-03-10 10:33:40 -04003463
3464 module_param_cb(share_irqs, &param_ops_uint, &share_irqs, 0644);
3465 module_param_cb(nr_uarts, &param_ops_uint, &nr_uarts, 0644);
3466 module_param_cb(skip_txen_test, &param_ops_uint, &skip_txen_test, 0644);
3467#ifdef CONFIG_SERIAL_8250_RSA
3468 __module_param_call(MODULE_PARAM_PREFIX, probe_rsa,
3469 &param_array_ops, .arr = &__param_arr_probe_rsa,
3470 0444, -1);
3471#endif
3472}
3473#else
Jiri Slaby9196d8a2013-03-19 11:34:56 +01003474MODULE_ALIAS("8250_core");
Josh Boyerf2b8dfd2013-03-10 10:33:40 -04003475#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476#endif