blob: 4ab8af797ad9addf7d5b55d55fcffec26f626b13 [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 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700242 [PORT_RM9000] = {
243 .name = "RM9000",
244 .fifo_size = 16,
245 .tx_loadsz = 16,
246 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
247 .flags = UART_CAP_FIFO,
248 },
David Daney6b06f192009-01-02 13:50:00 +0000249 [PORT_OCTEON] = {
250 .name = "OCTEON",
251 .fifo_size = 64,
252 .tx_loadsz = 64,
253 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
254 .flags = UART_CAP_FIFO,
255 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100256 [PORT_AR7] = {
257 .name = "AR7",
258 .fifo_size = 16,
259 .tx_loadsz = 16,
260 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
261 .flags = UART_CAP_FIFO | UART_CAP_AFE,
262 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200263 [PORT_U6_16550A] = {
264 .name = "U6_16550A",
265 .fifo_size = 64,
266 .tx_loadsz = 64,
267 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
268 .flags = UART_CAP_FIFO | UART_CAP_AFE,
269 },
Stephen Warren4539c242011-05-17 16:12:36 -0600270 [PORT_TEGRA] = {
271 .name = "Tegra",
272 .fifo_size = 32,
273 .tx_loadsz = 8,
274 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
275 UART_FCR_T_TRIG_01,
276 .flags = UART_CAP_FIFO | UART_CAP_RTOIE,
277 },
Søren Holm06315342011-09-02 22:55:37 +0200278 [PORT_XR17D15X] = {
279 .name = "XR17D15X",
280 .fifo_size = 64,
281 .tx_loadsz = 64,
282 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Matt Schulte81db0772012-11-21 09:39:07 -0600283 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
284 UART_CAP_SLEEP,
Søren Holm06315342011-09-02 22:55:37 +0200285 },
Matt Schultedc96efb2012-11-19 09:12:04 -0600286 [PORT_XR17V35X] = {
287 .name = "XR17V35X",
288 .fifo_size = 256,
289 .tx_loadsz = 256,
290 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11 |
291 UART_FCR_T_TRIG_11,
292 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
293 UART_CAP_SLEEP,
294 },
Roland Stigge7a514592012-06-11 21:57:13 +0200295 [PORT_LPC3220] = {
296 .name = "LPC3220",
297 .fifo_size = 64,
298 .tx_loadsz = 32,
299 .fcr = UART_FCR_DMA_SELECT | UART_FCR_ENABLE_FIFO |
300 UART_FCR_R_TRIG_00 | UART_FCR_T_TRIG_00,
301 .flags = UART_CAP_FIFO,
302 },
Sean Young65ecc9c2012-09-07 19:06:24 +0100303 [PORT_8250_CIR] = {
304 .name = "CIR port"
305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306};
307
Magnus Dammcc419fa02012-05-02 21:46:51 +0900308/* Uart divisor latch read */
Magnus Damme8155622012-05-02 21:47:18 +0900309static int default_serial_dl_read(struct uart_8250_port *up)
Magnus Dammcc419fa02012-05-02 21:46:51 +0900310{
311 return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8;
312}
313
314/* Uart divisor latch write */
Magnus Damme8155622012-05-02 21:47:18 +0900315static void default_serial_dl_write(struct uart_8250_port *up, int value)
Magnus Dammcc419fa02012-05-02 21:46:51 +0900316{
317 serial_out(up, UART_DLL, value & 0xff);
318 serial_out(up, UART_DLM, value >> 8 & 0xff);
319}
320
Magnus Damm6b416032012-05-02 21:47:00 +0900321#ifdef CONFIG_MIPS_ALCHEMY
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000322
323/* Au1x00 UART hardware has a weird register layout */
324static const u8 au_io_in_map[] = {
325 [UART_RX] = 0,
326 [UART_IER] = 2,
327 [UART_IIR] = 3,
328 [UART_LCR] = 5,
329 [UART_MCR] = 6,
330 [UART_LSR] = 7,
331 [UART_MSR] = 8,
332};
333
334static const u8 au_io_out_map[] = {
335 [UART_TX] = 1,
336 [UART_IER] = 2,
337 [UART_FCR] = 4,
338 [UART_LCR] = 5,
339 [UART_MCR] = 6,
340};
341
Magnus Damm6b416032012-05-02 21:47:00 +0900342static unsigned int au_serial_in(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000343{
Magnus Damm6b416032012-05-02 21:47:00 +0900344 offset = au_io_in_map[offset] << p->regshift;
345 return __raw_readl(p->membase + offset);
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000346}
347
Magnus Damm6b416032012-05-02 21:47:00 +0900348static void au_serial_out(struct uart_port *p, int offset, int value)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000349{
Magnus Damm6b416032012-05-02 21:47:00 +0900350 offset = au_io_out_map[offset] << p->regshift;
351 __raw_writel(value, p->membase + offset);
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000352}
353
Magnus Damm6b416032012-05-02 21:47:00 +0900354/* Au1x00 haven't got a standard divisor latch */
355static int au_serial_dl_read(struct uart_8250_port *up)
356{
357 return __raw_readl(up->port.membase + 0x28);
358}
359
360static void au_serial_dl_write(struct uart_8250_port *up, int value)
361{
362 __raw_writel(value, up->port.membase + 0x28);
363}
364
365#endif
366
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900367#ifdef CONFIG_SERIAL_8250_RM9K
Thomas Koellerbd71c182007-05-06 14:48:47 -0700368
369static const u8
370 regmap_in[8] = {
371 [UART_RX] = 0x00,
372 [UART_IER] = 0x0c,
373 [UART_IIR] = 0x14,
374 [UART_LCR] = 0x1c,
375 [UART_MCR] = 0x20,
376 [UART_LSR] = 0x24,
377 [UART_MSR] = 0x28,
378 [UART_SCR] = 0x2c
379 },
380 regmap_out[8] = {
381 [UART_TX] = 0x04,
382 [UART_IER] = 0x0c,
383 [UART_FCR] = 0x18,
384 [UART_LCR] = 0x1c,
385 [UART_MCR] = 0x20,
386 [UART_LSR] = 0x24,
387 [UART_MSR] = 0x28,
388 [UART_SCR] = 0x2c
389 };
390
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900391static unsigned int rm9k_serial_in(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700392{
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900393 offset = regmap_in[offset] << p->regshift;
394 return readl(p->membase + offset);
Thomas Koellerbd71c182007-05-06 14:48:47 -0700395}
396
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900397static void rm9k_serial_out(struct uart_port *p, int offset, int value)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700398{
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900399 offset = regmap_out[offset] << p->regshift;
400 writel(value, p->membase + offset);
Thomas Koellerbd71c182007-05-06 14:48:47 -0700401}
402
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900403static int rm9k_serial_dl_read(struct uart_8250_port *up)
404{
405 return ((__raw_readl(up->port.membase + 0x10) << 8) |
406 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff;
407}
408
409static void rm9k_serial_dl_write(struct uart_8250_port *up, int value)
410{
411 __raw_writel(value, up->port.membase + 0x08);
412 __raw_writel(value >> 8, up->port.membase + 0x10);
413}
414
415#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000416
David Daney7d6a07d2009-01-02 13:49:47 +0000417static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Magnus Damme8155622012-05-02 21:47:18 +0900419 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000420 outb(p->hub6 - 1 + offset, p->iobase);
421 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
David Daney7d6a07d2009-01-02 13:49:47 +0000424static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Magnus Damme8155622012-05-02 21:47:18 +0900426 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000427 outb(p->hub6 - 1 + offset, p->iobase);
428 outb(value, p->iobase + 1);
429}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
David Daney7d6a07d2009-01-02 13:49:47 +0000431static unsigned int mem_serial_in(struct uart_port *p, int offset)
432{
Magnus Damme8155622012-05-02 21:47:18 +0900433 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000434 return readb(p->membase + offset);
435}
436
437static void mem_serial_out(struct uart_port *p, int offset, int value)
438{
Magnus Damme8155622012-05-02 21:47:18 +0900439 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000440 writeb(value, p->membase + offset);
441}
442
443static void mem32_serial_out(struct uart_port *p, int offset, int value)
444{
Magnus Damme8155622012-05-02 21:47:18 +0900445 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000446 writel(value, p->membase + offset);
447}
448
449static unsigned int mem32_serial_in(struct uart_port *p, int offset)
450{
Magnus Damme8155622012-05-02 21:47:18 +0900451 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000452 return readl(p->membase + offset);
453}
454
David Daney7d6a07d2009-01-02 13:49:47 +0000455static unsigned int io_serial_in(struct uart_port *p, int offset)
456{
Magnus Damme8155622012-05-02 21:47:18 +0900457 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000458 return inb(p->iobase + offset);
459}
460
461static void io_serial_out(struct uart_port *p, int offset, int value)
462{
Magnus Damme8155622012-05-02 21:47:18 +0900463 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000464 outb(value, p->iobase + offset);
465}
466
Jamie Iles583d28e2011-08-15 10:17:52 +0100467static int serial8250_default_handle_irq(struct uart_port *port);
Matt Schultedc96efb2012-11-19 09:12:04 -0600468static int exar_handle_irq(struct uart_port *port);
Jamie Iles583d28e2011-08-15 10:17:52 +0100469
David Daney7d6a07d2009-01-02 13:49:47 +0000470static void set_io_from_upio(struct uart_port *p)
471{
Jamie Iles49d57412010-12-01 23:39:35 +0000472 struct uart_8250_port *up =
473 container_of(p, struct uart_8250_port, port);
Magnus Dammcc419fa02012-05-02 21:46:51 +0900474
Magnus Damme8155622012-05-02 21:47:18 +0900475 up->dl_read = default_serial_dl_read;
476 up->dl_write = default_serial_dl_write;
Magnus Dammcc419fa02012-05-02 21:46:51 +0900477
David Daney7d6a07d2009-01-02 13:49:47 +0000478 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000480 p->serial_in = hub6_serial_in;
481 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
483
484 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000485 p->serial_in = mem_serial_in;
486 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 break;
488
489 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000490 p->serial_in = mem32_serial_in;
491 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900494#ifdef CONFIG_SERIAL_8250_RM9K
495 case UPIO_RM9000:
496 p->serial_in = rm9k_serial_in;
497 p->serial_out = rm9k_serial_out;
498 up->dl_read = rm9k_serial_dl_read;
499 up->dl_write = rm9k_serial_dl_write;
500 break;
501#endif
502
Magnus Damm6b416032012-05-02 21:47:00 +0900503#ifdef CONFIG_MIPS_ALCHEMY
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000504 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000505 p->serial_in = au_serial_in;
506 p->serial_out = au_serial_out;
Magnus Damm6b416032012-05-02 21:47:00 +0900507 up->dl_read = au_serial_dl_read;
508 up->dl_write = au_serial_dl_write;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000509 break;
Magnus Damm6b416032012-05-02 21:47:00 +0900510#endif
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000513 p->serial_in = io_serial_in;
514 p->serial_out = io_serial_out;
515 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100517 /* Remember loaded iotype */
518 up->cur_iotype = p->iotype;
Jamie Iles583d28e2011-08-15 10:17:52 +0100519 p->handle_irq = serial8250_default_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Alex Williamson40b36da2007-02-14 00:33:04 -0800522static void
Paul Gortmaker55e40162012-03-08 19:12:14 -0500523serial_port_out_sync(struct uart_port *p, int offset, int value)
Alex Williamson40b36da2007-02-14 00:33:04 -0800524{
David Daney7d6a07d2009-01-02 13:49:47 +0000525 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800526 case UPIO_MEM:
527 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800528 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000529 p->serial_out(p, offset, value);
530 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800531 break;
532 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000533 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800534 }
535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/*
538 * For the 16C950
539 */
540static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
541{
542 serial_out(up, UART_SCR, offset);
543 serial_out(up, UART_ICR, value);
544}
545
546static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
547{
548 unsigned int value;
549
550 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
551 serial_out(up, UART_SCR, offset);
552 value = serial_in(up, UART_ICR);
553 serial_icr_write(up, UART_ACR, up->acr);
554
555 return value;
556}
557
558/*
559 * FIFO support.
560 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100561static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 if (p->capabilities & UART_CAP_FIFO) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500564 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO);
565 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500567 serial_out(p, UART_FCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569}
570
Sudhakar Mamillapalli0ad372b2012-04-10 14:10:58 -0700571void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p)
572{
573 unsigned char fcr;
574
575 serial8250_clear_fifos(p);
576 fcr = uart_config[p->port.type].fcr;
577 serial_out(p, UART_FCR, fcr);
578}
579EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
582 * IER sleep support. UARTs which have EFRs need the "extended
583 * capability" bit enabled. Note that on XR16C850s, we need to
584 * reset LCR to write to IER.
585 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100586static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Matt Schultedc96efb2012-11-19 09:12:04 -0600588 /*
589 * Exar UARTs have a SLEEP register that enables or disables
590 * each UART to enter sleep mode separately. On the XR17V35x the
591 * register is accessible to each UART at the UART_EXAR_SLEEP
592 * offset but the UART channel may only write to the corresponding
593 * bit.
594 */
Matt Schulte81db0772012-11-21 09:39:07 -0600595 if ((p->port.type == PORT_XR17V35X) ||
596 (p->port.type == PORT_XR17D15X)) {
Matt Schultedc96efb2012-11-19 09:12:04 -0600597 serial_out(p, UART_EXAR_SLEEP, 0xff);
598 return;
599 }
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (p->capabilities & UART_CAP_SLEEP) {
602 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500603 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
604 serial_out(p, UART_EFR, UART_EFR_ECB);
605 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500607 serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500609 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
610 serial_out(p, UART_EFR, 0);
611 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613 }
614}
615
616#ifdef CONFIG_SERIAL_8250_RSA
617/*
618 * Attempts to turn on the RSA FIFO. Returns zero on failure.
619 * We set the port uart clock rate if we succeed.
620 */
621static int __enable_rsa(struct uart_8250_port *up)
622{
623 unsigned char mode;
624 int result;
625
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500626 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 result = mode & UART_RSA_MSR_FIFO;
628
629 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500630 serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
631 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 result = mode & UART_RSA_MSR_FIFO;
633 }
634
635 if (result)
636 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
637
638 return result;
639}
640
641static void enable_rsa(struct uart_8250_port *up)
642{
643 if (up->port.type == PORT_RSA) {
644 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
645 spin_lock_irq(&up->port.lock);
646 __enable_rsa(up);
647 spin_unlock_irq(&up->port.lock);
648 }
649 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500650 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652}
653
654/*
655 * Attempts to turn off the RSA FIFO. Returns zero on failure.
656 * It is unknown why interrupts were disabled in here. However,
657 * the caller is expected to preserve this behaviour by grabbing
658 * the spinlock before calling this function.
659 */
660static void disable_rsa(struct uart_8250_port *up)
661{
662 unsigned char mode;
663 int result;
664
665 if (up->port.type == PORT_RSA &&
666 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
667 spin_lock_irq(&up->port.lock);
668
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500669 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 result = !(mode & UART_RSA_MSR_FIFO);
671
672 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500673 serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
674 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 result = !(mode & UART_RSA_MSR_FIFO);
676 }
677
678 if (result)
679 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
680 spin_unlock_irq(&up->port.lock);
681 }
682}
683#endif /* CONFIG_SERIAL_8250_RSA */
684
685/*
686 * This is a quickie test to see how big the FIFO is.
687 * It doesn't work at all the time, more's the pity.
688 */
689static int size_fifo(struct uart_8250_port *up)
690{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100691 unsigned char old_fcr, old_mcr, old_lcr;
692 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 int count;
694
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500695 old_lcr = serial_in(up, UART_LCR);
696 serial_out(up, UART_LCR, 0);
697 old_fcr = serial_in(up, UART_FCR);
698 old_mcr = serial_in(up, UART_MCR);
699 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500701 serial_out(up, UART_MCR, UART_MCR_LOOP);
702 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100703 old_dl = serial_dl_read(up);
704 serial_dl_write(up, 0x0001);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500705 serial_out(up, UART_LCR, 0x03);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 for (count = 0; count < 256; count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500707 serial_out(up, UART_TX, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 mdelay(20);/* FIXME - schedule_timeout */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500709 for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 (count < 256); count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500711 serial_in(up, UART_RX);
712 serial_out(up, UART_FCR, old_fcr);
713 serial_out(up, UART_MCR, old_mcr);
714 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100715 serial_dl_write(up, old_dl);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500716 serial_out(up, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 return count;
719}
720
721/*
722 * Read UART ID using the divisor method - set DLL and DLM to zero
723 * and the revision will be in DLL and device type in DLM. We
724 * preserve the device state across this.
725 */
726static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
727{
728 unsigned char old_dll, old_dlm, old_lcr;
729 unsigned int id;
730
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500731 old_lcr = serial_in(p, UART_LCR);
732 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500734 old_dll = serial_in(p, UART_DLL);
735 old_dlm = serial_in(p, UART_DLM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500737 serial_out(p, UART_DLL, 0);
738 serial_out(p, UART_DLM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500740 id = serial_in(p, UART_DLL) | serial_in(p, UART_DLM) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500742 serial_out(p, UART_DLL, old_dll);
743 serial_out(p, UART_DLM, old_dlm);
744 serial_out(p, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 return id;
747}
748
749/*
750 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
751 * When this function is called we know it is at least a StarTech
752 * 16650 V2, but it might be one of several StarTech UARTs, or one of
753 * its clones. (We treat the broken original StarTech 16650 V1 as a
754 * 16550, and why not? Startech doesn't seem to even acknowledge its
755 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700756 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 * What evil have men's minds wrought...
758 */
759static void autoconfig_has_efr(struct uart_8250_port *up)
760{
761 unsigned int id1, id2, id3, rev;
762
763 /*
764 * Everything with an EFR has SLEEP
765 */
766 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
767
768 /*
769 * First we check to see if it's an Oxford Semiconductor UART.
770 *
771 * If we have to do this here because some non-National
772 * Semiconductor clone chips lock up if you try writing to the
773 * LSR register (which serial_icr_read does)
774 */
775
776 /*
777 * Check for Oxford Semiconductor 16C950.
778 *
779 * EFR [4] must be set else this test fails.
780 *
781 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
782 * claims that it's needed for 952 dual UART's (which are not
783 * recommended for new designs).
784 */
785 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800786 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 serial_out(up, UART_EFR, UART_EFR_ECB);
788 serial_out(up, UART_LCR, 0x00);
789 id1 = serial_icr_read(up, UART_ID1);
790 id2 = serial_icr_read(up, UART_ID2);
791 id3 = serial_icr_read(up, UART_ID3);
792 rev = serial_icr_read(up, UART_REV);
793
794 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
795
796 if (id1 == 0x16 && id2 == 0xC9 &&
797 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
798 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100799
800 /*
801 * Enable work around for the Oxford Semiconductor 952 rev B
802 * chip which causes it to seriously miscalculate baud rates
803 * when DLL is 0.
804 */
805 if (id3 == 0x52 && rev == 0x01)
806 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return;
808 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /*
811 * We check for a XR16C850 by setting DLL and DLM to 0, and then
812 * reading back DLL and DLM. The chip type depends on the DLM
813 * value read back:
814 * 0x10 - XR16C850 and the DLL contains the chip revision.
815 * 0x12 - XR16C2850.
816 * 0x14 - XR16C854.
817 */
818 id1 = autoconfig_read_divisor_id(up);
819 DEBUG_AUTOCONF("850id=%04x ", id1);
820
821 id2 = id1 >> 8;
822 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 up->port.type = PORT_16850;
824 return;
825 }
826
827 /*
828 * It wasn't an XR16C850.
829 *
830 * We distinguish between the '654 and the '650 by counting
831 * how many bytes are in the FIFO. I'm using this for now,
832 * since that's the technique that was sent to me in the
833 * serial driver update, but I'm not convinced this works.
834 * I've had problems doing this in the past. -TYT
835 */
836 if (size_fifo(up) == 64)
837 up->port.type = PORT_16654;
838 else
839 up->port.type = PORT_16650V2;
840}
841
842/*
843 * We detected a chip without a FIFO. Only two fall into
844 * this category - the original 8250 and the 16450. The
845 * 16450 has a scratch register (accessible with LCR=0)
846 */
847static void autoconfig_8250(struct uart_8250_port *up)
848{
849 unsigned char scratch, status1, status2;
850
851 up->port.type = PORT_8250;
852
853 scratch = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500854 serial_out(up, UART_SCR, 0xa5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 status1 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500856 serial_out(up, UART_SCR, 0x5a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 status2 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500858 serial_out(up, UART_SCR, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 if (status1 == 0xa5 && status2 == 0x5a)
861 up->port.type = PORT_16450;
862}
863
864static int broken_efr(struct uart_8250_port *up)
865{
866 /*
867 * Exar ST16C2550 "A2" devices incorrectly detect as
868 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200869 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
871 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
872 return 1;
873
874 return 0;
875}
876
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800877static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
878{
879 unsigned char status;
880
881 status = serial_in(up, 0x04); /* EXCR2 */
882#define PRESL(x) ((x) & 0x30)
883 if (PRESL(status) == 0x10) {
884 /* already in high speed mode */
885 return 0;
886 } else {
887 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
888 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500889 serial_out(up, 0x04, status);
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800890 }
891 return 1;
892}
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/*
895 * We know that the chip has FIFOs. Does it have an EFR? The
896 * EFR is located in the same register position as the IIR and
897 * we know the top two bits of the IIR are currently set. The
898 * EFR should contain zero. Try to read the EFR.
899 */
900static void autoconfig_16550a(struct uart_8250_port *up)
901{
902 unsigned char status1, status2;
903 unsigned int iersave;
904
905 up->port.type = PORT_16550A;
906 up->capabilities |= UART_CAP_FIFO;
907
908 /*
Matt Schultedc96efb2012-11-19 09:12:04 -0600909 * XR17V35x UARTs have an extra divisor register, DLD
910 * that gets enabled with when DLAB is set which will
911 * cause the device to incorrectly match and assign
912 * port type to PORT_16650. The EFR for this UART is
913 * found at offset 0x09. Instead check the Deice ID (DVID)
914 * register for a 2, 4 or 8 port UART.
915 */
Matt Schulteb7a7e142012-11-20 11:23:56 -0600916 if (up->port.flags & UPF_EXAR_EFR) {
917 status1 = serial_in(up, UART_EXAR_DVID);
918 if (status1 == 0x82 || status1 == 0x84 || status1 == 0x88) {
Matt Schultedc96efb2012-11-19 09:12:04 -0600919 DEBUG_AUTOCONF("Exar XR17V35x ");
920 up->port.type = PORT_XR17V35X;
921 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
922 UART_CAP_SLEEP;
923
924 return;
925 }
926
927 }
928
929 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 * Check for presence of the EFR when DLAB is set.
931 * Only ST16C650V1 UARTs pass this test.
932 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500933 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (serial_in(up, UART_EFR) == 0) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500935 serial_out(up, UART_EFR, 0xA8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (serial_in(up, UART_EFR) != 0) {
937 DEBUG_AUTOCONF("EFRv1 ");
938 up->port.type = PORT_16650;
939 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
940 } else {
941 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
942 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500943 serial_out(up, UART_EFR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return;
945 }
946
947 /*
948 * Maybe it requires 0xbf to be written to the LCR.
949 * (other ST16C650V2 UARTs, TI16C752A, etc)
950 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500951 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
953 DEBUG_AUTOCONF("EFRv2 ");
954 autoconfig_has_efr(up);
955 return;
956 }
957
958 /*
959 * Check for a National Semiconductor SuperIO chip.
960 * Attempt to switch to bank 2, read the value of the LOOP bit
961 * from EXCR1. Switch back to bank 0, change it in MCR. Then
962 * switch back to bank 2, read it from EXCR1 again and check
963 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500965 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 status1 = serial_in(up, UART_MCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500967 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 status2 = serial_in(up, 0x02); /* EXCR1 */
969
970 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500971 serial_out(up, UART_LCR, 0);
972 serial_out(up, UART_MCR, status1 ^ UART_MCR_LOOP);
973 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 status2 = serial_in(up, 0x02); /* EXCR1 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500975 serial_out(up, UART_LCR, 0);
976 serial_out(up, UART_MCR, status1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100979 unsigned short quot;
980
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500981 serial_out(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100982
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100983 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +0100984 quot <<= 3;
985
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800986 if (ns16550a_goto_highspeed(up))
987 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500989 serial_out(up, UART_LCR, 0);
David Woodhouse857dde22005-05-21 15:52:23 +0100990
991 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 up->port.type = PORT_NS16550A;
993 up->capabilities |= UART_NATSEMI;
994 return;
995 }
996 }
997
998 /*
999 * No EFR. Try to detect a TI16750, which only sets bit 5 of
1000 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1001 * Try setting it with and without DLAB set. Cheap clones
1002 * set bit 5 without DLAB set.
1003 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001004 serial_out(up, UART_LCR, 0);
1005 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 status1 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001007 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1008 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
1009 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 status2 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001011 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1012 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1015
1016 if (status1 == 6 && status2 == 7) {
1017 up->port.type = PORT_16750;
1018 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1019 return;
1020 }
1021
1022 /*
1023 * Try writing and reading the UART_IER_UUE bit (b6).
1024 * If it works, this is probably one of the Xscale platform's
1025 * internal UARTs.
1026 * We're going to explicitly set the UUE bit to 0 before
1027 * trying to write and read a 1 just to make sure it's not
1028 * already a 1 and maybe locked there before we even start start.
1029 */
1030 iersave = serial_in(up, UART_IER);
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001031 serial_out(up, UART_IER, iersave & ~UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1033 /*
1034 * OK it's in a known zero state, try writing and reading
1035 * without disturbing the current state of the other bits.
1036 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001037 serial_out(up, UART_IER, iersave | UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1039 /*
1040 * It's an Xscale.
1041 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1042 */
1043 DEBUG_AUTOCONF("Xscale ");
1044 up->port.type = PORT_XSCALE;
Stephen Warren55681812011-06-17 09:45:07 -06001045 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return;
1047 }
1048 } else {
1049 /*
1050 * If we got here we couldn't force the IER_UUE bit to 0.
1051 * Log it and continue.
1052 */
1053 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1054 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001055 serial_out(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001056
1057 /*
Søren Holm06315342011-09-02 22:55:37 +02001058 * Exar uarts have EFR in a weird location
1059 */
1060 if (up->port.flags & UPF_EXAR_EFR) {
Matt Schulte81db0772012-11-21 09:39:07 -06001061 DEBUG_AUTOCONF("Exar XR17D15x ");
Søren Holm06315342011-09-02 22:55:37 +02001062 up->port.type = PORT_XR17D15X;
Matt Schulte81db0772012-11-21 09:39:07 -06001063 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
1064 UART_CAP_SLEEP;
1065
1066 return;
Søren Holm06315342011-09-02 22:55:37 +02001067 }
1068
1069 /*
Philippe Langlais235dae52010-07-29 17:13:57 +02001070 * We distinguish between 16550A and U6 16550A by counting
1071 * how many bytes are in the FIFO.
1072 */
1073 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1074 up->port.type = PORT_U6_16550A;
1075 up->capabilities |= UART_CAP_AFE;
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
1079/*
1080 * This routine is called by rs_init() to initialize a specific serial
1081 * port. It determines what type of UART chip this serial port is
1082 * using: 8250, 16450, 16550, 16550A. The important question is
1083 * whether or not this UART is a 16550A or not, since this will
1084 * determine whether or not we can use its FIFO features or not.
1085 */
1086static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1087{
1088 unsigned char status1, scratch, scratch2, scratch3;
1089 unsigned char save_lcr, save_mcr;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001090 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 unsigned long flags;
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001092 unsigned int old_capabilities;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001094 if (!port->iobase && !port->mapbase && !port->membase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return;
1096
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001097 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001098 serial_index(port), port->iobase, port->membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 /*
1101 * We really do need global IRQs disabled here - we're going to
1102 * be frobbing the chips IRQ enable register to see if it exists.
1103 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001104 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001107 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001109 if (!(port->flags & UPF_BUGGY_UART)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
1111 * Do a simple existence test first; if we fail this,
1112 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001113 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 * 0x80 is used as a nonsense port to prevent against
1115 * false positives due to ISA bus float. The
1116 * assumption is that 0x80 is a non-existent port;
1117 * which should be safe since include/asm/io.h also
1118 * makes this assumption.
1119 *
1120 * Note: this is safe as long as MCR bit 4 is clear
1121 * and the device is in "PC" mode.
1122 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001123 scratch = serial_in(up, UART_IER);
1124 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125#ifdef __i386__
1126 outb(0xff, 0x080);
1127#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001128 /*
1129 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1130 * 16C754B) allow only to modify them if an EFR bit is set.
1131 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001132 scratch2 = serial_in(up, UART_IER) & 0x0f;
1133 serial_out(up, UART_IER, 0x0F);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134#ifdef __i386__
1135 outb(0, 0x080);
1136#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001137 scratch3 = serial_in(up, UART_IER) & 0x0f;
1138 serial_out(up, UART_IER, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (scratch2 != 0 || scratch3 != 0x0F) {
1140 /*
1141 * We failed; there's nothing here
1142 */
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001143 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1145 scratch2, scratch3);
1146 goto out;
1147 }
1148 }
1149
1150 save_mcr = serial_in(up, UART_MCR);
1151 save_lcr = serial_in(up, UART_LCR);
1152
Thomas Koellerbd71c182007-05-06 14:48:47 -07001153 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 * Check to see if a UART is really there. Certain broken
1155 * internal modems based on the Rockwell chipset fail this
1156 * test, because they apparently don't implement the loopback
1157 * test mode. So this test is skipped on the COM 1 through
1158 * COM 4 ports. This *should* be safe, since no board
1159 * manufacturer would be stupid enough to design a board
1160 * that conflicts with COM 1-4 --- we hope!
1161 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001162 if (!(port->flags & UPF_SKIP_TEST)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001163 serial_out(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1164 status1 = serial_in(up, UART_MSR) & 0xF0;
1165 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (status1 != 0x90) {
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001167 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1169 status1);
1170 goto out;
1171 }
1172 }
1173
1174 /*
1175 * We're pretty sure there's a port here. Lets find out what
1176 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001177 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 * determines what we test for next.
1179 *
1180 * We also initialise the EFR (if any) to zero for later. The
1181 * EFR occupies the same register location as the FCR and IIR.
1182 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001183 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1184 serial_out(up, UART_EFR, 0);
1185 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001187 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 scratch = serial_in(up, UART_IIR) >> 6;
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 switch (scratch) {
1191 case 0:
1192 autoconfig_8250(up);
1193 break;
1194 case 1:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001195 port->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 break;
1197 case 2:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001198 port->type = PORT_16550;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 break;
1200 case 3:
1201 autoconfig_16550a(up);
1202 break;
1203 }
1204
1205#ifdef CONFIG_SERIAL_8250_RSA
1206 /*
1207 * Only probe for RSA ports if we got the region.
1208 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001209 if (port->type == PORT_16550A && probeflags & PROBE_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 int i;
1211
1212 for (i = 0 ; i < probe_rsa_count; ++i) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001213 if (probe_rsa[i] == port->iobase && __enable_rsa(up)) {
1214 port->type = PORT_RSA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 break;
1216 }
1217 }
1218 }
1219#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001220
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001221 serial_out(up, UART_LCR, save_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001223 port->fifosize = uart_config[up->port.type].fifo_size;
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001224 old_capabilities = up->capabilities;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001225 up->capabilities = uart_config[port->type].flags;
1226 up->tx_loadsz = uart_config[port->type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001228 if (port->type == PORT_UNKNOWN)
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001229 goto out_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 /*
1232 * Reset the UART.
1233 */
1234#ifdef CONFIG_SERIAL_8250_RSA
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001235 if (port->type == PORT_RSA)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001236 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001238 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001240 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001241 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001242 serial_out(up, UART_IER, UART_IER_UUE);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001243 else
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001244 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001246out_lock:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001247 spin_unlock_irqrestore(&port->lock, flags);
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001248 if (up->capabilities != old_capabilities) {
1249 printk(KERN_WARNING
1250 "ttyS%d: detected caps %08x should be %08x\n",
1251 serial_index(port), old_capabilities,
1252 up->capabilities);
1253 }
1254out:
1255 DEBUG_AUTOCONF("iir=%d ", scratch);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001256 DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259static void autoconfig_irq(struct uart_8250_port *up)
1260{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001261 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 unsigned char save_mcr, save_ier;
1263 unsigned char save_ICP = 0;
1264 unsigned int ICP = 0;
1265 unsigned long irqs;
1266 int irq;
1267
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001268 if (port->flags & UPF_FOURPORT) {
1269 ICP = (port->iobase & 0xfe0) | 0x1f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 save_ICP = inb_p(ICP);
1271 outb_p(0x80, ICP);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001272 inb_p(ICP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274
1275 /* forget possible initially masked and pending IRQ */
1276 probe_irq_off(probe_irq_on());
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001277 save_mcr = serial_in(up, UART_MCR);
1278 save_ier = serial_in(up, UART_IER);
1279 serial_out(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 irqs = probe_irq_on();
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001282 serial_out(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001283 udelay(10);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001284 if (port->flags & UPF_FOURPORT) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001285 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 UART_MCR_DTR | UART_MCR_RTS);
1287 } else {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001288 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1290 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001291 serial_out(up, UART_IER, 0x0f); /* enable all intrs */
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001292 serial_in(up, UART_LSR);
1293 serial_in(up, UART_RX);
1294 serial_in(up, UART_IIR);
1295 serial_in(up, UART_MSR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001296 serial_out(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001297 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 irq = probe_irq_off(irqs);
1299
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001300 serial_out(up, UART_MCR, save_mcr);
1301 serial_out(up, UART_IER, save_ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001303 if (port->flags & UPF_FOURPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 outb_p(save_ICP, ICP);
1305
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001306 port->irq = (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
Russell Kinge763b902005-06-29 18:41:51 +01001309static inline void __stop_tx(struct uart_8250_port *p)
1310{
1311 if (p->ier & UART_IER_THRI) {
1312 p->ier &= ~UART_IER_THRI;
1313 serial_out(p, UART_IER, p->ier);
1314 }
1315}
1316
Russell Kingb129a8c2005-08-31 10:12:14 +01001317static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Jamie Iles49d57412010-12-01 23:39:35 +00001319 struct uart_8250_port *up =
1320 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Russell Kinge763b902005-06-29 18:41:51 +01001322 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 /*
Russell Kinge763b902005-06-29 18:41:51 +01001325 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001327 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 up->acr |= UART_ACR_TXDIS;
1329 serial_icr_write(up, UART_ACR, up->acr);
1330 }
1331}
1332
Russell Kingb129a8c2005-08-31 10:12:14 +01001333static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
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
1338 if (!(up->ier & UART_IER_THRI)) {
1339 up->ier |= UART_IER_THRI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001340 serial_port_out(port, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001341
Russell King67f76542005-06-23 22:26:43 +01001342 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001343 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001344 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001345 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001346 if ((port->type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001347 (lsr & UART_LSR_THRE) :
1348 (lsr & UART_LSR_TEMT))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001349 serial8250_tx_chars(up);
Russell King55d3b282005-06-23 15:05:41 +01001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
Russell Kinge763b902005-06-29 18:41:51 +01001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 /*
Russell Kinge763b902005-06-29 18:41:51 +01001354 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001356 if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 up->acr &= ~UART_ACR_TXDIS;
1358 serial_icr_write(up, UART_ACR, up->acr);
1359 }
1360}
1361
1362static void serial8250_stop_rx(struct uart_port *port)
1363{
Jamie Iles49d57412010-12-01 23:39:35 +00001364 struct uart_8250_port *up =
1365 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 up->ier &= ~UART_IER_RLSI;
1368 up->port.read_status_mask &= ~UART_LSR_DR;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001369 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372static void serial8250_enable_ms(struct uart_port *port)
1373{
Jamie Iles49d57412010-12-01 23:39:35 +00001374 struct uart_8250_port *up =
1375 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001377 /* no MSR capabilities */
1378 if (up->bugs & UART_BUG_NOMSR)
1379 return;
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 up->ier |= UART_IER_MSI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001382 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Stephen Warren5f873ba2011-05-17 16:12:37 -06001385/*
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001386 * serial8250_rx_chars: processes according to the passed in LSR
Paul Gortmaker0690f412011-12-04 18:42:19 -05001387 * value, and returns the remaining LSR bits not handled
1388 * by this Rx routine.
1389 */
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001390unsigned char
1391serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001393 struct uart_port *port = &up->port;
1394 struct tty_struct *tty = port->state->port.tty;
Paul Gortmaker0690f412011-12-04 18:42:19 -05001395 unsigned char ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 int max_count = 256;
1397 char flag;
1398
1399 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001400 if (likely(lsr & UART_LSR_DR))
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001401 ch = serial_in(up, UART_RX);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001402 else
1403 /*
1404 * Intel 82571 has a Serial Over Lan device that will
1405 * set UART_LSR_BI without setting UART_LSR_DR when
1406 * it receives a break. To avoid reading from the
1407 * receive buffer without UART_LSR_DR bit set, we
1408 * just force the read character to be 0
1409 */
1410 ch = 0;
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 flag = TTY_NORMAL;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001413 port->icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001415 lsr |= up->lsr_saved_flags;
1416 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001418 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (lsr & UART_LSR_BI) {
1420 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001421 port->icount.brk++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 /*
1423 * We do the SysRQ and SAK checking
1424 * here because otherwise the break
1425 * may get masked by ignore_status_mask
1426 * or read_status_mask.
1427 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001428 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 goto ignore_char;
1430 } else if (lsr & UART_LSR_PE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001431 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 else if (lsr & UART_LSR_FE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001433 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 if (lsr & UART_LSR_OE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001435 port->icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 /*
Russell King23907eb2005-04-16 15:26:39 -07001438 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001440 lsr &= port->read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 if (lsr & UART_LSR_BI) {
1443 DEBUG_INTR("handling break....");
1444 flag = TTY_BREAK;
1445 } else if (lsr & UART_LSR_PE)
1446 flag = TTY_PARITY;
1447 else if (lsr & UART_LSR_FE)
1448 flag = TTY_FRAME;
1449 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001450 if (uart_handle_sysrq_char(port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001452
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001453 uart_insert_char(port, lsr, UART_LSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +01001454
Alan Cox6f803cd2008-02-08 04:18:52 -08001455ignore_char:
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001456 lsr = serial_in(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001457 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001458 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 tty_flip_buffer_push(tty);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001460 spin_lock(&port->lock);
Paul Gortmaker0690f412011-12-04 18:42:19 -05001461 return lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001463EXPORT_SYMBOL_GPL(serial8250_rx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001465void serial8250_tx_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001467 struct uart_port *port = &up->port;
1468 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 int count;
1470
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001471 if (port->x_char) {
1472 serial_out(up, UART_TX, port->x_char);
1473 port->icount.tx++;
1474 port->x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return;
1476 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001477 if (uart_tx_stopped(port)) {
1478 serial8250_stop_tx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +01001479 return;
1480 }
1481 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001482 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return;
1484 }
1485
1486 count = up->tx_loadsz;
1487 do {
1488 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1489 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001490 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (uart_circ_empty(xmit))
1492 break;
1493 } while (--count > 0);
1494
1495 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001496 uart_write_wakeup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 DEBUG_INTR("THRE...");
1499
1500 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001501 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001503EXPORT_SYMBOL_GPL(serial8250_tx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001505unsigned int serial8250_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001507 struct uart_port *port = &up->port;
Russell King2af7cd62006-01-04 16:55:09 +00001508 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001510 status |= up->msr_saved_flags;
1511 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001512 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001513 port->state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001514 if (status & UART_MSR_TERI)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001515 port->icount.rng++;
Russell King2af7cd62006-01-04 16:55:09 +00001516 if (status & UART_MSR_DDSR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001517 port->icount.dsr++;
Russell King2af7cd62006-01-04 16:55:09 +00001518 if (status & UART_MSR_DDCD)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001519 uart_handle_dcd_change(port, status & UART_MSR_DCD);
Russell King2af7cd62006-01-04 16:55:09 +00001520 if (status & UART_MSR_DCTS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001521 uart_handle_cts_change(port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001523 wake_up_interruptible(&port->state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Russell King2af7cd62006-01-04 16:55:09 +00001526 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001528EXPORT_SYMBOL_GPL(serial8250_modem_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530/*
1531 * This handles the interrupt from one port.
1532 */
Paul Gortmaker86b21192011-12-04 18:42:22 -05001533int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
Paul Gortmaker0690f412011-12-04 18:42:19 -05001535 unsigned char status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001536 unsigned long flags;
Paul Gortmaker86b21192011-12-04 18:42:22 -05001537 struct uart_8250_port *up =
1538 container_of(port, struct uart_8250_port, port);
1539
1540 if (iir & UART_IIR_NO_INT)
1541 return 0;
Russell King45e24602006-01-04 19:19:06 +00001542
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001543 spin_lock_irqsave(&port->lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001544
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001545 status = serial_port_in(port, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 DEBUG_INTR("status = %x...", status);
1548
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001549 if (status & (UART_LSR_DR | UART_LSR_BI))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001550 status = serial8250_rx_chars(up, status);
1551 serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 if (status & UART_LSR_THRE)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001553 serial8250_tx_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001554
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001555 spin_unlock_irqrestore(&port->lock, flags);
Paul Gortmaker86b21192011-12-04 18:42:22 -05001556 return 1;
Jamie Iles583d28e2011-08-15 10:17:52 +01001557}
Jamie Ilesc7a1bdc2011-08-26 19:04:49 +01001558EXPORT_SYMBOL_GPL(serial8250_handle_irq);
Jamie Iles583d28e2011-08-15 10:17:52 +01001559
1560static int serial8250_default_handle_irq(struct uart_port *port)
1561{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001562 unsigned int iir = serial_port_in(port, UART_IIR);
Jamie Iles583d28e2011-08-15 10:17:52 +01001563
1564 return serial8250_handle_irq(port, iir);
1565}
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567/*
Matt Schultedc96efb2012-11-19 09:12:04 -06001568 * These Exar UARTs have an extra interrupt indicator that could
1569 * fire for a few unimplemented interrupts. One of which is a
1570 * wakeup event when coming out of sleep. Put this here just
1571 * to be on the safe side that these interrupts don't go unhandled.
1572 */
1573static int exar_handle_irq(struct uart_port *port)
1574{
1575 unsigned char int0, int1, int2, int3;
1576 unsigned int iir = serial_port_in(port, UART_IIR);
1577 int ret;
1578
1579 ret = serial8250_handle_irq(port, iir);
1580
1581 if (port->type == PORT_XR17V35X) {
1582 int0 = serial_port_in(port, 0x80);
1583 int1 = serial_port_in(port, 0x81);
1584 int2 = serial_port_in(port, 0x82);
1585 int3 = serial_port_in(port, 0x83);
1586 }
1587
1588 return ret;
1589}
1590
1591/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 * This is the serial driver's interrupt routine.
1593 *
1594 * Arjan thinks the old way was overly complex, so it got simplified.
1595 * Alan disagrees, saying that need the complexity to handle the weird
1596 * nature of ISA shared interrupts. (This is a special exception.)
1597 *
1598 * In order to handle ISA shared interrupts properly, we need to check
1599 * that all ports have been serviced, and therefore the ISA interrupt
1600 * line has been de-asserted.
1601 *
1602 * This means we need to loop through all ports. checking that they
1603 * don't have an interrupt pending.
1604 */
David Howells7d12e782006-10-05 14:55:46 +01001605static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
1607 struct irq_info *i = dev_id;
1608 struct list_head *l, *end = NULL;
1609 int pass_counter = 0, handled = 0;
1610
1611 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1612
1613 spin_lock(&i->lock);
1614
1615 l = i->head;
1616 do {
1617 struct uart_8250_port *up;
Jamie Iles583d28e2011-08-15 10:17:52 +01001618 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 up = list_entry(l, struct uart_8250_port, list);
Jamie Iles583d28e2011-08-15 10:17:52 +01001621 port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Dan Williams49b532f2012-04-06 11:49:44 -07001623 if (port->handle_irq(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 handled = 1;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001625 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 } else if (end == NULL)
1627 end = l;
1628
1629 l = l->next;
1630
1631 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1632 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001633 printk_ratelimited(KERN_ERR
1634 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 break;
1636 }
1637 } while (l != end);
1638
1639 spin_unlock(&i->lock);
1640
1641 DEBUG_INTR("end.\n");
1642
1643 return IRQ_RETVAL(handled);
1644}
1645
1646/*
1647 * To support ISA shared interrupts, we need to have one interrupt
1648 * handler that ensures that the IRQ line has been deasserted
1649 * before returning. Failing to do this will result in the IRQ
1650 * line being stuck active, and, since ISA irqs are edge triggered,
1651 * no more IRQs will be seen.
1652 */
1653static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1654{
1655 spin_lock_irq(&i->lock);
1656
1657 if (!list_empty(i->head)) {
1658 if (i->head == &up->list)
1659 i->head = i->head->next;
1660 list_del(&up->list);
1661 } else {
1662 BUG_ON(i->head != &up->list);
1663 i->head = NULL;
1664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001666 /* List empty so throw away the hash node */
1667 if (i->head == NULL) {
1668 hlist_del(&i->node);
1669 kfree(i);
1670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671}
1672
1673static int serial_link_irq_chain(struct uart_8250_port *up)
1674{
Alan Cox25db8ad2008-08-19 20:49:40 -07001675 struct hlist_head *h;
1676 struct hlist_node *n;
1677 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001678 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Alan Cox25db8ad2008-08-19 20:49:40 -07001680 mutex_lock(&hash_mutex);
1681
1682 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1683
1684 hlist_for_each(n, h) {
1685 i = hlist_entry(n, struct irq_info, node);
1686 if (i->irq == up->port.irq)
1687 break;
1688 }
1689
1690 if (n == NULL) {
1691 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1692 if (i == NULL) {
1693 mutex_unlock(&hash_mutex);
1694 return -ENOMEM;
1695 }
1696 spin_lock_init(&i->lock);
1697 i->irq = up->port.irq;
1698 hlist_add_head(&i->node, h);
1699 }
1700 mutex_unlock(&hash_mutex);
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 spin_lock_irq(&i->lock);
1703
1704 if (i->head) {
1705 list_add(&up->list, i->head);
1706 spin_unlock_irq(&i->lock);
1707
1708 ret = 0;
1709 } else {
1710 INIT_LIST_HEAD(&up->list);
1711 i->head = &up->list;
1712 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001713 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 ret = request_irq(up->port.irq, serial8250_interrupt,
1715 irq_flags, "serial", i);
1716 if (ret < 0)
1717 serial_do_unlink(i, up);
1718 }
1719
1720 return ret;
1721}
1722
1723static void serial_unlink_irq_chain(struct uart_8250_port *up)
1724{
Alan Cox25db8ad2008-08-19 20:49:40 -07001725 struct irq_info *i;
1726 struct hlist_node *n;
1727 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Alan Cox25db8ad2008-08-19 20:49:40 -07001729 mutex_lock(&hash_mutex);
1730
1731 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1732
1733 hlist_for_each(n, h) {
1734 i = hlist_entry(n, struct irq_info, node);
1735 if (i->irq == up->port.irq)
1736 break;
1737 }
1738
1739 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 BUG_ON(i->head == NULL);
1741
1742 if (list_empty(i->head))
1743 free_irq(up->port.irq, i);
1744
1745 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001746 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747}
1748
1749/*
1750 * This function is used to handle ports that do not have an
1751 * interrupt. This doesn't work very well for 16450's, but gives
1752 * barely passable results for a 16550A. (Although at the expense
1753 * of much CPU overhead).
1754 */
1755static void serial8250_timeout(unsigned long data)
1756{
1757 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Paul Gortmakera0431472011-12-04 18:42:21 -05001759 up->port.handle_irq(&up->port);
Anton Vorontsov54381062010-10-01 17:21:25 +04001760 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001761}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Alex Williamson40b36da2007-02-14 00:33:04 -08001763static void serial8250_backup_timeout(unsigned long data)
1764{
1765 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001766 unsigned int iir, ier = 0, lsr;
1767 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001768
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001769 spin_lock_irqsave(&up->port.lock, flags);
1770
Alex Williamson40b36da2007-02-14 00:33:04 -08001771 /*
1772 * Must disable interrupts or else we risk racing with the interrupt
1773 * based handler.
1774 */
Alan Coxd4e33fa2012-01-26 17:44:09 +00001775 if (up->port.irq) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001776 ier = serial_in(up, UART_IER);
1777 serial_out(up, UART_IER, 0);
1778 }
1779
1780 iir = serial_in(up, UART_IIR);
1781
1782 /*
1783 * This should be a safe test for anyone who doesn't trust the
1784 * IIR bits on their UART, but it's specifically designed for
1785 * the "Diva" UART used on the management processor on many HP
1786 * ia64 and parisc boxes.
1787 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001788 lsr = serial_in(up, UART_LSR);
1789 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001790 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001791 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001792 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001793 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1794 iir |= UART_IIR_THRI;
1795 }
1796
1797 if (!(iir & UART_IIR_NO_INT))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001798 serial8250_tx_chars(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001799
Alan Coxd4e33fa2012-01-26 17:44:09 +00001800 if (up->port.irq)
Alex Williamson40b36da2007-02-14 00:33:04 -08001801 serial_out(up, UART_IER, ier);
1802
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001803 spin_unlock_irqrestore(&up->port.lock, flags);
1804
Alex Williamson40b36da2007-02-14 00:33:04 -08001805 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001806 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001807 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
1810static unsigned int serial8250_tx_empty(struct uart_port *port)
1811{
Jamie Iles49d57412010-12-01 23:39:35 +00001812 struct uart_8250_port *up =
1813 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001815 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001817 spin_lock_irqsave(&port->lock, flags);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001818 lsr = serial_port_in(port, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001819 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001820 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001822 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823}
1824
1825static unsigned int serial8250_get_mctrl(struct uart_port *port)
1826{
Jamie Iles49d57412010-12-01 23:39:35 +00001827 struct uart_8250_port *up =
1828 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001829 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 unsigned int ret;
1831
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001832 status = serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 ret = 0;
1835 if (status & UART_MSR_DCD)
1836 ret |= TIOCM_CAR;
1837 if (status & UART_MSR_RI)
1838 ret |= TIOCM_RNG;
1839 if (status & UART_MSR_DSR)
1840 ret |= TIOCM_DSR;
1841 if (status & UART_MSR_CTS)
1842 ret |= TIOCM_CTS;
1843 return ret;
1844}
1845
1846static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1847{
Jamie Iles49d57412010-12-01 23:39:35 +00001848 struct uart_8250_port *up =
1849 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 unsigned char mcr = 0;
1851
1852 if (mctrl & TIOCM_RTS)
1853 mcr |= UART_MCR_RTS;
1854 if (mctrl & TIOCM_DTR)
1855 mcr |= UART_MCR_DTR;
1856 if (mctrl & TIOCM_OUT1)
1857 mcr |= UART_MCR_OUT1;
1858 if (mctrl & TIOCM_OUT2)
1859 mcr |= UART_MCR_OUT2;
1860 if (mctrl & TIOCM_LOOP)
1861 mcr |= UART_MCR_LOOP;
1862
1863 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1864
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001865 serial_port_out(port, UART_MCR, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866}
1867
1868static void serial8250_break_ctl(struct uart_port *port, int break_state)
1869{
Jamie Iles49d57412010-12-01 23:39:35 +00001870 struct uart_8250_port *up =
1871 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 unsigned long flags;
1873
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001874 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (break_state == -1)
1876 up->lcr |= UART_LCR_SBC;
1877 else
1878 up->lcr &= ~UART_LCR_SBC;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001879 serial_port_out(port, UART_LCR, up->lcr);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001880 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
Alex Williamson40b36da2007-02-14 00:33:04 -08001883/*
1884 * Wait for transmitter & holding register to empty
1885 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001886static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001887{
1888 unsigned int status, tmout = 10000;
1889
1890 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001891 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001892 status = serial_in(up, UART_LSR);
1893
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001894 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001895
David Daney97d303b2010-10-05 11:40:07 -07001896 if ((status & bits) == bits)
1897 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001898 if (--tmout == 0)
1899 break;
1900 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001901 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001902
1903 /* Wait up to 1s for flow control if necessary */
1904 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001905 unsigned int tmout;
1906 for (tmout = 1000000; tmout; tmout--) {
1907 unsigned int msr = serial_in(up, UART_MSR);
1908 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1909 if (msr & UART_MSR_CTS)
1910 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001911 udelay(1);
1912 touch_nmi_watchdog();
1913 }
1914 }
1915}
1916
Jason Wesself2d937f2008-04-17 20:05:37 +02001917#ifdef CONFIG_CONSOLE_POLL
1918/*
1919 * Console polling routines for writing and reading from the uart while
1920 * in an interrupt or debug context.
1921 */
1922
1923static int serial8250_get_poll_char(struct uart_port *port)
1924{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001925 unsigned char lsr = serial_port_in(port, UART_LSR);
Jason Wesself2d937f2008-04-17 20:05:37 +02001926
Jason Wesself5316b42010-05-20 21:04:22 -05001927 if (!(lsr & UART_LSR_DR))
1928 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001929
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001930 return serial_port_in(port, UART_RX);
Jason Wesself2d937f2008-04-17 20:05:37 +02001931}
1932
1933
1934static void serial8250_put_poll_char(struct uart_port *port,
1935 unsigned char c)
1936{
1937 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001938 struct uart_8250_port *up =
1939 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001940
1941 /*
1942 * First save the IER then disable the interrupts
1943 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001944 ier = serial_port_in(port, UART_IER);
Jason Wesself2d937f2008-04-17 20:05:37 +02001945 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001946 serial_port_out(port, UART_IER, UART_IER_UUE);
Jason Wesself2d937f2008-04-17 20:05:37 +02001947 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001948 serial_port_out(port, UART_IER, 0);
Jason Wesself2d937f2008-04-17 20:05:37 +02001949
1950 wait_for_xmitr(up, BOTH_EMPTY);
1951 /*
1952 * Send the character out.
1953 * If a LF, also do CR...
1954 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001955 serial_port_out(port, UART_TX, c);
Jason Wesself2d937f2008-04-17 20:05:37 +02001956 if (c == 10) {
1957 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001958 serial_port_out(port, UART_TX, 13);
Jason Wesself2d937f2008-04-17 20:05:37 +02001959 }
1960
1961 /*
1962 * Finally, wait for transmitter to become empty
1963 * and restore the IER
1964 */
1965 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001966 serial_port_out(port, UART_IER, ier);
Jason Wesself2d937f2008-04-17 20:05:37 +02001967}
1968
1969#endif /* CONFIG_CONSOLE_POLL */
1970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971static int serial8250_startup(struct uart_port *port)
1972{
Jamie Iles49d57412010-12-01 23:39:35 +00001973 struct uart_8250_port *up =
1974 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001976 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 int retval;
1978
Sean Young65ecc9c2012-09-07 19:06:24 +01001979 if (port->type == PORT_8250_CIR)
1980 return -ENODEV;
1981
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001982 port->fifosize = uart_config[up->port.type].fifo_size;
Ondrej Puzmane4f05af2010-12-04 21:17:38 +01001983 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 up->capabilities = uart_config[up->port.type].flags;
1985 up->mcr = 0;
1986
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001987 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01001988 set_io_from_upio(port);
1989
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001990 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 /* Wake up and initialize UART */
1992 up->acr = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001993 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1994 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1995 serial_port_out(port, UART_IER, 0);
1996 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001998 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1999 serial_port_out(port, UART_EFR, UART_EFR_ECB);
2000 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
2002
2003#ifdef CONFIG_SERIAL_8250_RSA
2004 /*
2005 * If this is an RSA port, see if we can kick it up to the
2006 * higher speed clock.
2007 */
2008 enable_rsa(up);
2009#endif
2010
2011 /*
2012 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08002013 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 */
2015 serial8250_clear_fifos(up);
2016
2017 /*
2018 * Clear the interrupt registers.
2019 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002020 serial_port_in(port, UART_LSR);
2021 serial_port_in(port, UART_RX);
2022 serial_port_in(port, UART_IIR);
2023 serial_port_in(port, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 /*
2026 * At this point, there's no way the LSR could still be 0xff;
2027 * if it is, then bail out, because there's likely no UART
2028 * here.
2029 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002030 if (!(port->flags & UPF_BUGGY_UART) &&
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002031 (serial_port_in(port, UART_LSR) == 0xff)) {
Konrad Rzeszutek Wilk7808a4c2011-09-26 09:14:34 -04002032 printk_ratelimited(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002033 serial_index(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return -ENODEV;
2035 }
2036
2037 /*
2038 * For a XR16C850, we need to set the trigger levels
2039 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002040 if (port->type == PORT_16850) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 unsigned char fctr;
2042
Paul Gortmaker0acf5192012-03-08 19:12:08 -05002043 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Paul Gortmaker0acf5192012-03-08 19:12:08 -05002045 fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002046 serial_port_out(port, UART_FCTR,
2047 fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2048 serial_port_out(port, UART_TRG, UART_TRG_96);
2049 serial_port_out(port, UART_FCTR,
2050 fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2051 serial_port_out(port, UART_TRG, UART_TRG_96);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002053 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
2055
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002056 if (port->irq) {
Alex Williamson01c194d2008-04-28 02:14:09 -07002057 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08002058 /*
2059 * Test for UARTs that do not reassert THRE when the
2060 * transmitter is idle and the interrupt has already
2061 * been cleared. Real 16550s should always reassert
2062 * this interrupt whenever the transmitter is idle and
2063 * the interrupt is enabled. Delays are necessary to
2064 * allow register changes to become visible.
2065 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002066 spin_lock_irqsave(&port->lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002067 if (up->port.irqflags & IRQF_SHARED)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002068 disable_irq_nosync(port->irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002069
2070 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker55e40162012-03-08 19:12:14 -05002071 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002072 udelay(1); /* allow THRE to set */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002073 iir1 = serial_port_in(port, UART_IIR);
2074 serial_port_out(port, UART_IER, 0);
Paul Gortmaker55e40162012-03-08 19:12:14 -05002075 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002076 udelay(1); /* allow a working UART time to re-assert THRE */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002077 iir = serial_port_in(port, UART_IIR);
2078 serial_port_out(port, UART_IER, 0);
Alex Williamson40b36da2007-02-14 00:33:04 -08002079
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002080 if (port->irqflags & IRQF_SHARED)
2081 enable_irq(port->irq);
2082 spin_unlock_irqrestore(&port->lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002083
2084 /*
Dan Williamsbc02d152012-04-06 11:49:50 -07002085 * If the interrupt is not reasserted, or we otherwise
2086 * don't trust the iir, setup a timer to kick the UART
2087 * on a regular basis.
Alex Williamson40b36da2007-02-14 00:33:04 -08002088 */
Dan Williamsbc02d152012-04-06 11:49:50 -07002089 if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) ||
2090 up->port.flags & UPF_BUG_THRE) {
Will Newton363f66f2008-09-02 14:35:44 -07002091 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002092 pr_debug("ttyS%d - using backup timer\n",
2093 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002094 }
2095 }
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 /*
Will Newton363f66f2008-09-02 14:35:44 -07002098 * The above check will only give an accurate result the first time
2099 * the port is opened so this value needs to be preserved.
2100 */
2101 if (up->bugs & UART_BUG_THRE) {
2102 up->timer.function = serial8250_backup_timeout;
2103 up->timer.data = (unsigned long)up;
2104 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002105 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002106 }
2107
2108 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 * If the "interrupt" for this port doesn't correspond with any
2110 * hardware interrupt, we use a timer-based system. The original
2111 * driver used to do this with IRQ0.
2112 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002113 if (!port->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002115 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 } else {
2117 retval = serial_link_irq_chain(up);
2118 if (retval)
2119 return retval;
2120 }
2121
2122 /*
2123 * Now, initialize the UART
2124 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002125 serial_port_out(port, UART_LCR, UART_LCR_WLEN8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002127 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if (up->port.flags & UPF_FOURPORT) {
Alan Coxd4e33fa2012-01-26 17:44:09 +00002129 if (!up->port.irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 up->port.mctrl |= TIOCM_OUT1;
2131 } else
2132 /*
2133 * Most PC uarts need OUT2 raised to enable interrupts.
2134 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002135 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 up->port.mctrl |= TIOCM_OUT2;
2137
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002138 serial8250_set_mctrl(port, port->mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002139
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002140 /* Serial over Lan (SoL) hack:
2141 Intel 8257x Gigabit ethernet chips have a
2142 16550 emulation, to be used for Serial Over Lan.
2143 Those chips take a longer time than a normal
2144 serial device to signalize that a transmission
2145 data was queued. Due to that, the above test generally
2146 fails. One solution would be to delay the reading of
2147 iir. However, this is not reliable, since the timeout
2148 is variable. So, let's just don't test if we receive
2149 TX irq. This way, we'll never enable UART_BUG_TXEN.
2150 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002151 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002152 goto dont_test_tx_en;
2153
Russell King55d3b282005-06-23 15:05:41 +01002154 /*
2155 * Do a quick test to see if we receive an
2156 * interrupt when we enable the TX irq.
2157 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002158 serial_port_out(port, UART_IER, UART_IER_THRI);
2159 lsr = serial_port_in(port, UART_LSR);
2160 iir = serial_port_in(port, UART_IIR);
2161 serial_port_out(port, UART_IER, 0);
Russell King55d3b282005-06-23 15:05:41 +01002162
2163 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002164 if (!(up->bugs & UART_BUG_TXEN)) {
2165 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002166 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002167 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002168 }
2169 } else {
Russell King67f76542005-06-23 22:26:43 +01002170 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002171 }
2172
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002173dont_test_tx_en:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002174 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002177 * Clear the interrupt registers again for luck, and clear the
2178 * saved flags to avoid getting false values from polling
2179 * routines or the previous session.
2180 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002181 serial_port_in(port, UART_LSR);
2182 serial_port_in(port, UART_RX);
2183 serial_port_in(port, UART_IIR);
2184 serial_port_in(port, UART_MSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002185 up->lsr_saved_flags = 0;
2186 up->msr_saved_flags = 0;
2187
2188 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 * Finally, enable interrupts. Note: Modem status interrupts
2190 * are set via set_termios(), which will be occurring imminently
2191 * anyway, so we don't enable them here.
2192 */
2193 up->ier = UART_IER_RLSI | UART_IER_RDI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002194 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002196 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 unsigned int icp;
2198 /*
2199 * Enable interrupts on the AST Fourport board
2200 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002201 icp = (port->iobase & 0xfe0) | 0x01f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 outb_p(0x80, icp);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05002203 inb_p(icp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 return 0;
2207}
2208
2209static void serial8250_shutdown(struct uart_port *port)
2210{
Jamie Iles49d57412010-12-01 23:39:35 +00002211 struct uart_8250_port *up =
2212 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 unsigned long flags;
2214
2215 /*
2216 * Disable interrupts from this port
2217 */
2218 up->ier = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002219 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002221 spin_lock_irqsave(&port->lock, flags);
2222 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 /* reset interrupts on the AST Fourport board */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002224 inb((port->iobase & 0xfe0) | 0x1f);
2225 port->mctrl |= TIOCM_OUT1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002227 port->mctrl &= ~TIOCM_OUT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002229 serial8250_set_mctrl(port, port->mctrl);
2230 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232 /*
2233 * Disable break condition and FIFOs
2234 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002235 serial_port_out(port, UART_LCR,
2236 serial_port_in(port, UART_LCR) & ~UART_LCR_SBC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 serial8250_clear_fifos(up);
2238
2239#ifdef CONFIG_SERIAL_8250_RSA
2240 /*
2241 * Reset the RSA board back to 115kbps compat mode.
2242 */
2243 disable_rsa(up);
2244#endif
2245
2246 /*
2247 * Read data port to reset things, and then unlink from
2248 * the IRQ chain.
2249 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002250 serial_port_in(port, UART_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Alex Williamson40b36da2007-02-14 00:33:04 -08002252 del_timer_sync(&up->timer);
2253 up->timer.function = serial8250_timeout;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002254 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 serial_unlink_irq_chain(up);
2256}
2257
2258static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2259{
2260 unsigned int quot;
2261
2262 /*
2263 * Handle magic divisors for baud rates above baud_base on
2264 * SMSC SuperIO chips.
2265 */
2266 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2267 baud == (port->uartclk/4))
2268 quot = 0x8001;
2269 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2270 baud == (port->uartclk/8))
2271 quot = 0x8002;
2272 else
2273 quot = uart_get_divisor(port, baud);
2274
2275 return quot;
2276}
2277
Philippe Langlais235dae52010-07-29 17:13:57 +02002278void
2279serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2280 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
Jamie Iles49d57412010-12-01 23:39:35 +00002282 struct uart_8250_port *up =
2283 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 unsigned char cval, fcr = 0;
2285 unsigned long flags;
2286 unsigned int baud, quot;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002287 int fifo_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 switch (termios->c_cflag & CSIZE) {
2290 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002291 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 break;
2293 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002294 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 break;
2296 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002297 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 break;
2299 default:
2300 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002301 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 break;
2303 }
2304
2305 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002306 cval |= UART_LCR_STOP;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002307 if (termios->c_cflag & PARENB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 cval |= UART_LCR_PARITY;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002309 if (up->bugs & UART_BUG_PARITY)
2310 fifo_bug = 1;
2311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (!(termios->c_cflag & PARODD))
2313 cval |= UART_LCR_EPAR;
2314#ifdef CMSPAR
2315 if (termios->c_cflag & CMSPAR)
2316 cval |= UART_LCR_SPAR;
2317#endif
2318
2319 /*
2320 * Ask the core to calculate the divisor for us.
2321 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002322 baud = uart_get_baud_rate(port, termios, old,
2323 port->uartclk / 16 / 0xffff,
2324 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 quot = serial8250_get_divisor(port, baud);
2326
2327 /*
Russell King4ba5e352005-06-23 10:43:04 +01002328 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 */
Russell King4ba5e352005-06-23 10:43:04 +01002330 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002331 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002333 if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) {
Christian Melkif9a91112012-04-30 11:21:26 +02002334 fcr = uart_config[port->type].fcr;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002335 if (baud < 2400 || fifo_bug) {
Christian Melkif9a91112012-04-30 11:21:26 +02002336 fcr &= ~UART_FCR_TRIGGER_MASK;
2337 fcr |= UART_FCR_TRIGGER_1;
2338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
2340
2341 /*
2342 * MCR-based auto flow control. When AFE is enabled, RTS will be
2343 * deasserted when the receive FIFO contains more characters than
2344 * the trigger, or the MCR RTS bit is cleared. In the case where
2345 * the remote UART is not using CTS auto flow control, we must
2346 * have sufficient FIFO entries for the latency of the remote
2347 * UART to respond. IOW, at least 32 bytes of FIFO.
2348 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002349 if (up->capabilities & UART_CAP_AFE && port->fifosize >= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 up->mcr &= ~UART_MCR_AFE;
2351 if (termios->c_cflag & CRTSCTS)
2352 up->mcr |= UART_MCR_AFE;
2353 }
2354
2355 /*
2356 * Ok, we're now changing the port state. Do it with
2357 * interrupts disabled.
2358 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002359 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 /*
2362 * Update the per-port timeout.
2363 */
2364 uart_update_timeout(port, termios->c_cflag, baud);
2365
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002366 port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 if (termios->c_iflag & INPCK)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002368 port->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (termios->c_iflag & (BRKINT | PARMRK))
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002370 port->read_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 /*
2373 * Characteres to ignore
2374 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002375 port->ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002377 port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (termios->c_iflag & IGNBRK) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002379 port->ignore_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 /*
2381 * If we're ignoring parity and break indicators,
2382 * ignore overruns too (for real raw support).
2383 */
2384 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002385 port->ignore_status_mask |= UART_LSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 }
2387
2388 /*
2389 * ignore all characters if CREAD is not set
2390 */
2391 if ((termios->c_cflag & CREAD) == 0)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002392 port->ignore_status_mask |= UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 /*
2395 * CTS flow control flag and modem status interrupts
2396 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002397 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002398 if (!(up->bugs & UART_BUG_NOMSR) &&
2399 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 up->ier |= UART_IER_MSI;
2401 if (up->capabilities & UART_CAP_UUE)
Stephen Warren4539c242011-05-17 16:12:36 -06002402 up->ier |= UART_IER_UUE;
2403 if (up->capabilities & UART_CAP_RTOIE)
2404 up->ier |= UART_IER_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002406 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 if (up->capabilities & UART_CAP_EFR) {
2409 unsigned char efr = 0;
2410 /*
2411 * TI16C752/Startech hardware flow control. FIXME:
2412 * - TI16C752 requires control thresholds to be set.
2413 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2414 */
2415 if (termios->c_cflag & CRTSCTS)
2416 efr |= UART_EFR_CTS;
2417
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002418 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002419 if (port->flags & UPF_EXAR_EFR)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002420 serial_port_out(port, UART_XR_EFR, efr);
Søren Holm06315342011-09-02 22:55:37 +02002421 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002422 serial_port_out(port, UART_EFR, efr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 }
2424
Jonathan McDowell255341c2006-08-14 23:05:32 -07002425 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002426 if (is_omap1510_8250(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002427 if (baud == 115200) {
2428 quot = 1;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002429 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002430 } else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002431 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002432 }
Jonathan McDowell255341c2006-08-14 23:05:32 -07002433
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002434 /*
2435 * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2,
2436 * otherwise just set DLAB
2437 */
2438 if (up->capabilities & UART_NATSEMI)
2439 serial_port_out(port, UART_LCR, 0xe0);
2440 else
2441 serial_port_out(port, UART_LCR, cval | UART_LCR_DLAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002443 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 /*
2446 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2447 * is written without DLAB set, this mode will be disabled.
2448 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002449 if (port->type == PORT_16750)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002450 serial_port_out(port, UART_FCR, fcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002452 serial_port_out(port, UART_LCR, cval); /* reset DLAB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 up->lcr = cval; /* Save LCR */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002454 if (port->type != PORT_16750) {
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002455 /* emulated UARTs (Lucent Venus 167x) need two steps */
2456 if (fcr & UART_FCR_ENABLE_FIFO)
2457 serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);
2458 serial_port_out(port, UART_FCR, fcr); /* set fcr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002460 serial8250_set_mctrl(port, port->mctrl);
2461 spin_unlock_irqrestore(&port->lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002462 /* Don't rewrite B0 */
2463 if (tty_termios_baud_rate(termios))
2464 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
Philippe Langlais235dae52010-07-29 17:13:57 +02002466EXPORT_SYMBOL(serial8250_do_set_termios);
2467
2468static void
2469serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2470 struct ktermios *old)
2471{
2472 if (port->set_termios)
2473 port->set_termios(port, termios, old);
2474 else
2475 serial8250_do_set_termios(port, termios, old);
2476}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002479serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002480{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002481 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002482 port->flags |= UPF_HARDPPS_CD;
2483 serial8250_enable_ms(port);
2484 } else
2485 port->flags &= ~UPF_HARDPPS_CD;
2486}
2487
Manuel Laussc161afe2010-09-25 15:13:45 +02002488
2489void serial8250_do_pm(struct uart_port *port, unsigned int state,
2490 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Jamie Iles49d57412010-12-01 23:39:35 +00002492 struct uart_8250_port *p =
2493 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002496}
2497EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Manuel Laussc161afe2010-09-25 15:13:45 +02002499static void
2500serial8250_pm(struct uart_port *port, unsigned int state,
2501 unsigned int oldstate)
2502{
2503 if (port->pm)
2504 port->pm(port, state, oldstate);
2505 else
2506 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
2508
Russell Kingf2eda272008-09-01 21:47:59 +01002509static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2510{
2511 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002512 return 0x1000;
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002513 if (is_omap1_8250(pt))
Russell Kingf2eda272008-09-01 21:47:59 +01002514 return 0x16 << pt->port.regshift;
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002515
Russell Kingf2eda272008-09-01 21:47:59 +01002516 return 8 << pt->port.regshift;
2517}
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519/*
2520 * Resource handling.
2521 */
2522static int serial8250_request_std_resource(struct uart_8250_port *up)
2523{
Russell Kingf2eda272008-09-01 21:47:59 +01002524 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002525 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 int ret = 0;
2527
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002528 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002529 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002530 case UPIO_TSI:
2531 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002533 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 break;
2535
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002536 if (!request_mem_region(port->mapbase, size, "serial")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 ret = -EBUSY;
2538 break;
2539 }
2540
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002541 if (port->flags & UPF_IOREMAP) {
2542 port->membase = ioremap_nocache(port->mapbase, size);
2543 if (!port->membase) {
2544 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 ret = -ENOMEM;
2546 }
2547 }
2548 break;
2549
2550 case UPIO_HUB6:
2551 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002552 if (!request_region(port->iobase, size, "serial"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 ret = -EBUSY;
2554 break;
2555 }
2556 return ret;
2557}
2558
2559static void serial8250_release_std_resource(struct uart_8250_port *up)
2560{
Russell Kingf2eda272008-09-01 21:47:59 +01002561 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002562 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002564 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002565 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002566 case UPIO_TSI:
2567 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002569 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 break;
2571
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002572 if (port->flags & UPF_IOREMAP) {
2573 iounmap(port->membase);
2574 port->membase = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 }
2576
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002577 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 break;
2579
2580 case UPIO_HUB6:
2581 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002582 release_region(port->iobase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 break;
2584 }
2585}
2586
2587static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2588{
2589 unsigned long start = UART_RSA_BASE << up->port.regshift;
2590 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002591 struct uart_port *port = &up->port;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002592 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002594 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 case UPIO_HUB6:
2596 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002597 start += port->iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002598 if (request_region(start, size, "serial-rsa"))
2599 ret = 0;
2600 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 ret = -EBUSY;
2602 break;
2603 }
2604
2605 return ret;
2606}
2607
2608static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2609{
2610 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2611 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002612 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002614 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 case UPIO_HUB6:
2616 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002617 release_region(port->iobase + offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 break;
2619 }
2620}
2621
2622static void serial8250_release_port(struct uart_port *port)
2623{
Jamie Iles49d57412010-12-01 23:39:35 +00002624 struct uart_8250_port *up =
2625 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
2627 serial8250_release_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002628 if (port->type == PORT_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 serial8250_release_rsa_resource(up);
2630}
2631
2632static int serial8250_request_port(struct uart_port *port)
2633{
Jamie Iles49d57412010-12-01 23:39:35 +00002634 struct uart_8250_port *up =
2635 container_of(port, struct uart_8250_port, port);
Sean Young65ecc9c2012-09-07 19:06:24 +01002636 int ret;
2637
2638 if (port->type == PORT_8250_CIR)
2639 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
2641 ret = serial8250_request_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002642 if (ret == 0 && port->type == PORT_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 ret = serial8250_request_rsa_resource(up);
2644 if (ret < 0)
2645 serial8250_release_std_resource(up);
2646 }
2647
2648 return ret;
2649}
2650
2651static void serial8250_config_port(struct uart_port *port, int flags)
2652{
Jamie Iles49d57412010-12-01 23:39:35 +00002653 struct uart_8250_port *up =
2654 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 int probeflags = PROBE_ANY;
2656 int ret;
2657
Sean Young65ecc9c2012-09-07 19:06:24 +01002658 if (port->type == PORT_8250_CIR)
2659 return;
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 * Find the region that we can probe for. This in turn
2663 * tells us whether we can probe for the type of port.
2664 */
2665 ret = serial8250_request_std_resource(up);
2666 if (ret < 0)
2667 return;
2668
2669 ret = serial8250_request_rsa_resource(up);
2670 if (ret < 0)
2671 probeflags &= ~PROBE_RSA;
2672
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002673 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01002674 set_io_from_upio(port);
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 if (flags & UART_CONFIG_TYPE)
2677 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002678
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002679 /* if access method is AU, it is a 16550 with a quirk */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002680 if (port->type == PORT_16550A && port->iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002681 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002682
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002683 if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 autoconfig_irq(up);
2685
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002686 if (port->type != PORT_RSA && probeflags & PROBE_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 serial8250_release_rsa_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002688 if (port->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 serial8250_release_std_resource(up);
Matt Schultedc96efb2012-11-19 09:12:04 -06002690
2691 /* Fixme: probably not the best place for this */
2692 if (port->type == PORT_XR17V35X)
2693 port->handle_irq = exar_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694}
2695
2696static int
2697serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2698{
Yinghai Lua62c4132008-08-19 20:49:55 -07002699 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2701 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2702 ser->type == PORT_STARTECH)
2703 return -EINVAL;
2704 return 0;
2705}
2706
2707static const char *
2708serial8250_type(struct uart_port *port)
2709{
2710 int type = port->type;
2711
2712 if (type >= ARRAY_SIZE(uart_config))
2713 type = 0;
2714 return uart_config[type].name;
2715}
2716
2717static struct uart_ops serial8250_pops = {
2718 .tx_empty = serial8250_tx_empty,
2719 .set_mctrl = serial8250_set_mctrl,
2720 .get_mctrl = serial8250_get_mctrl,
2721 .stop_tx = serial8250_stop_tx,
2722 .start_tx = serial8250_start_tx,
2723 .stop_rx = serial8250_stop_rx,
2724 .enable_ms = serial8250_enable_ms,
2725 .break_ctl = serial8250_break_ctl,
2726 .startup = serial8250_startup,
2727 .shutdown = serial8250_shutdown,
2728 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002729 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 .pm = serial8250_pm,
2731 .type = serial8250_type,
2732 .release_port = serial8250_release_port,
2733 .request_port = serial8250_request_port,
2734 .config_port = serial8250_config_port,
2735 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002736#ifdef CONFIG_CONSOLE_POLL
2737 .poll_get_char = serial8250_get_poll_char,
2738 .poll_put_char = serial8250_put_poll_char,
2739#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740};
2741
2742static struct uart_8250_port serial8250_ports[UART_NR];
2743
Alan Coxaf7f3742010-10-18 11:38:02 -07002744static void (*serial8250_isa_config)(int port, struct uart_port *up,
2745 unsigned short *capabilities);
2746
2747void serial8250_set_isa_configurator(
2748 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2749{
2750 serial8250_isa_config = v;
2751}
2752EXPORT_SYMBOL(serial8250_set_isa_configurator);
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754static void __init serial8250_isa_init_ports(void)
2755{
2756 struct uart_8250_port *up;
2757 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002758 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760 if (!first)
2761 return;
2762 first = 0;
2763
Sean Young835d8442012-09-07 19:06:23 +01002764 if (nr_uarts > UART_NR)
2765 nr_uarts = UART_NR;
2766
Dave Jonesa61c2d72006-01-07 23:18:19 +00002767 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 struct uart_8250_port *up = &serial8250_ports[i];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002769 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002771 port->line = i;
2772 spin_lock_init(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 init_timer(&up->timer);
2775 up->timer.function = serial8250_timeout;
Sean Young835d8442012-09-07 19:06:23 +01002776 up->cur_iotype = 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778 /*
2779 * ALPHA_KLUDGE_MCR needs to be killed.
2780 */
2781 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2782 up->mcr_force = ALPHA_KLUDGE_MCR;
2783
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002784 port->ops = &serial8250_pops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 }
2786
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002787 if (share_irqs)
2788 irqflag = IRQF_SHARED;
2789
Russell King44454bc2005-06-30 22:41:22 +01002790 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002791 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 i++, up++) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002793 struct uart_port *port = &up->port;
2794
2795 port->iobase = old_serial_port[i].port;
2796 port->irq = irq_canonicalize(old_serial_port[i].irq);
2797 port->irqflags = old_serial_port[i].irqflags;
2798 port->uartclk = old_serial_port[i].baud_base * 16;
2799 port->flags = old_serial_port[i].flags;
2800 port->hub6 = old_serial_port[i].hub6;
2801 port->membase = old_serial_port[i].iomem_base;
2802 port->iotype = old_serial_port[i].io_type;
2803 port->regshift = old_serial_port[i].iomem_reg_shift;
2804 set_io_from_upio(port);
2805 port->irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002806 if (serial8250_isa_config != NULL)
2807 serial8250_isa_config(i, &up->port, &up->capabilities);
2808
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 }
2810}
2811
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002812static void
2813serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2814{
2815 up->port.type = type;
2816 up->port.fifosize = uart_config[type].fifo_size;
2817 up->capabilities = uart_config[type].flags;
2818 up->tx_loadsz = uart_config[type].tx_loadsz;
2819}
2820
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821static void __init
2822serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2823{
2824 int i;
2825
Alan Coxb8e7e402009-05-28 14:01:35 +01002826 for (i = 0; i < nr_uarts; i++) {
2827 struct uart_8250_port *up = &serial8250_ports[i];
Alan Coxb8e7e402009-05-28 14:01:35 +01002828
Sean Young835d8442012-09-07 19:06:23 +01002829 if (up->port.dev)
2830 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
2832 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002833
2834 if (up->port.flags & UPF_FIXED_TYPE)
2835 serial8250_init_fixed_type_port(up, up->port.type);
2836
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 uart_add_one_port(drv, &up->port);
2838 }
2839}
2840
2841#ifdef CONFIG_SERIAL_8250_CONSOLE
2842
Russell Kingd3587882006-03-20 20:00:09 +00002843static void serial8250_console_putchar(struct uart_port *port, int ch)
2844{
Jamie Iles49d57412010-12-01 23:39:35 +00002845 struct uart_8250_port *up =
2846 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002847
2848 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002849 serial_port_out(port, UART_TX, ch);
Russell Kingd3587882006-03-20 20:00:09 +00002850}
2851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852/*
2853 * Print a string to the serial port trying not to disturb
2854 * any possible real use of the port...
2855 *
2856 * The console_lock must be held when we get here.
2857 */
2858static void
2859serial8250_console_write(struct console *co, const char *s, unsigned int count)
2860{
2861 struct uart_8250_port *up = &serial8250_ports[co->index];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002862 struct uart_port *port = &up->port;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002863 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002865 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Andrew Morton78512ec2005-11-07 00:59:13 -08002867 touch_nmi_watchdog();
2868
Andrew Morton68aa2c02006-06-30 02:29:59 -07002869 local_irq_save(flags);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002870 if (port->sysrq) {
Paul Gortmaker86b21192011-12-04 18:42:22 -05002871 /* serial8250_handle_irq() already took the lock */
Andrew Morton68aa2c02006-06-30 02:29:59 -07002872 locked = 0;
2873 } else if (oops_in_progress) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002874 locked = spin_trylock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002875 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002876 spin_lock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002879 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002881 ier = serial_port_in(port, UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002884 serial_port_out(port, UART_IER, UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002886 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002888 uart_console_write(port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
2890 /*
2891 * Finally, wait for transmitter to become empty
2892 * and restore the IER
2893 */
Alan Coxf91a3712006-01-21 14:59:12 +00002894 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002895 serial_port_out(port, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002896
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002897 /*
2898 * The receive handling will happen properly because the
2899 * receive ready bit will still be set; it is not cleared
2900 * on read. However, modem control will not, we must
2901 * call it if we have saved something in the saved flags
2902 * while processing with interrupts off.
2903 */
2904 if (up->msr_saved_flags)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05002905 serial8250_modem_status(up);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002906
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002907 if (locked)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002908 spin_unlock(&port->lock);
Andrew Morton68aa2c02006-06-30 02:29:59 -07002909 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910}
2911
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002912static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
2914 struct uart_port *port;
2915 int baud = 9600;
2916 int bits = 8;
2917 int parity = 'n';
2918 int flow = 'n';
2919
2920 /*
2921 * Check whether an invalid uart number has been specified, and
2922 * if so, search for the first available port that does have
2923 * console support.
2924 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002925 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 co->index = 0;
2927 port = &serial8250_ports[co->index].port;
2928 if (!port->iobase && !port->membase)
2929 return -ENODEV;
2930
2931 if (options)
2932 uart_parse_options(options, &baud, &parity, &bits, &flow);
2933
2934 return uart_set_options(port, co, baud, parity, bits, flow);
2935}
2936
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002937static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002938{
2939 return serial8250_find_port_for_earlycon();
2940}
2941
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942static struct console serial8250_console = {
2943 .name = "ttyS",
2944 .write = serial8250_console_write,
2945 .device = uart_console_device,
2946 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002947 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002948 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 .index = -1,
2950 .data = &serial8250_reg,
2951};
2952
2953static int __init serial8250_console_init(void)
2954{
2955 serial8250_isa_init_ports();
2956 register_console(&serial8250_console);
2957 return 0;
2958}
2959console_initcall(serial8250_console_init);
2960
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002961int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962{
2963 int line;
2964 struct uart_port *port;
2965
Dave Jonesa61c2d72006-01-07 23:18:19 +00002966 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002968 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 return line;
2970 }
2971 return -ENODEV;
2972}
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974#define SERIAL8250_CONSOLE &serial8250_console
2975#else
2976#define SERIAL8250_CONSOLE NULL
2977#endif
2978
2979static struct uart_driver serial8250_reg = {
2980 .owner = THIS_MODULE,
2981 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 .dev_name = "ttyS",
2983 .major = TTY_MAJOR,
2984 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 .cons = SERIAL8250_CONSOLE,
2986};
2987
Russell Kingd856c662006-02-23 10:22:13 +00002988/*
2989 * early_serial_setup - early registration for 8250 ports
2990 *
2991 * Setup an 8250 port structure prior to console initialisation. Use
2992 * after console initialisation will cause undefined behaviour.
2993 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994int __init early_serial_setup(struct uart_port *port)
2995{
David Daneyb4304282009-01-02 13:49:41 +00002996 struct uart_port *p;
2997
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 if (port->line >= ARRAY_SIZE(serial8250_ports))
2999 return -ENODEV;
3000
3001 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00003002 p = &serial8250_ports[port->line].port;
3003 p->iobase = port->iobase;
3004 p->membase = port->membase;
3005 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003006 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00003007 p->uartclk = port->uartclk;
3008 p->fifosize = port->fifosize;
3009 p->regshift = port->regshift;
3010 p->iotype = port->iotype;
3011 p->flags = port->flags;
3012 p->mapbase = port->mapbase;
3013 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01003014 p->type = port->type;
3015 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00003016
3017 set_io_from_upio(p);
3018 if (port->serial_in)
3019 p->serial_in = port->serial_in;
3020 if (port->serial_out)
3021 p->serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003022 if (port->handle_irq)
3023 p->handle_irq = port->handle_irq;
3024 else
3025 p->handle_irq = serial8250_default_handle_irq;
David Daney7d6a07d2009-01-02 13:49:47 +00003026
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 return 0;
3028}
3029
3030/**
3031 * serial8250_suspend_port - suspend one serial port
3032 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 *
3034 * Suspend one serial port.
3035 */
3036void serial8250_suspend_port(int line)
3037{
3038 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
3039}
3040
3041/**
3042 * serial8250_resume_port - resume one serial port
3043 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 *
3045 * Resume one serial port.
3046 */
3047void serial8250_resume_port(int line)
3048{
David Woodhouseb5b82df2007-05-17 14:27:39 +08003049 struct uart_8250_port *up = &serial8250_ports[line];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05003050 struct uart_port *port = &up->port;
David Woodhouseb5b82df2007-05-17 14:27:39 +08003051
3052 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08003053 /* Ensure it's still in high speed mode */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05003054 serial_port_out(port, UART_LCR, 0xE0);
David Woodhouseb5b82df2007-05-17 14:27:39 +08003055
Yin Kangkai0d0389e2011-02-09 11:35:18 +08003056 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08003057
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05003058 serial_port_out(port, UART_LCR, 0);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05003059 port->uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08003060 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05003061 uart_resume_port(&serial8250_reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062}
3063
3064/*
3065 * Register a set of serial devices attached to a platform device. The
3066 * list is terminated with a zero flags entry, which means we expect
3067 * all entries to have at least UPF_BOOT_AUTOCONF set.
3068 */
Bill Pemberton9671f092012-11-19 13:21:50 -05003069static int serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070{
Russell King3ae5eae2005-11-09 22:32:44 +00003071 struct plat_serial8250_port *p = dev->dev.platform_data;
Alan Cox2655a2c2012-07-12 12:59:50 +01003072 struct uart_8250_port uart;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003073 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Alan Cox2655a2c2012-07-12 12:59:50 +01003075 memset(&uart, 0, sizeof(uart));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003077 if (share_irqs)
3078 irqflag = IRQF_SHARED;
3079
Russell Kingec9f47c2005-06-27 11:12:54 +01003080 for (i = 0; p && p->flags != 0; p++, i++) {
Alan Cox2655a2c2012-07-12 12:59:50 +01003081 uart.port.iobase = p->iobase;
3082 uart.port.membase = p->membase;
3083 uart.port.irq = p->irq;
3084 uart.port.irqflags = p->irqflags;
3085 uart.port.uartclk = p->uartclk;
3086 uart.port.regshift = p->regshift;
3087 uart.port.iotype = p->iotype;
3088 uart.port.flags = p->flags;
3089 uart.port.mapbase = p->mapbase;
3090 uart.port.hub6 = p->hub6;
3091 uart.port.private_data = p->private_data;
3092 uart.port.type = p->type;
3093 uart.port.serial_in = p->serial_in;
3094 uart.port.serial_out = p->serial_out;
3095 uart.port.handle_irq = p->handle_irq;
3096 uart.port.handle_break = p->handle_break;
3097 uart.port.set_termios = p->set_termios;
3098 uart.port.pm = p->pm;
3099 uart.port.dev = &dev->dev;
3100 uart.port.irqflags |= irqflag;
3101 ret = serial8250_register_8250_port(&uart);
Russell Kingec9f47c2005-06-27 11:12:54 +01003102 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003103 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003104 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3105 p->iobase, (unsigned long long)p->mapbase,
3106 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 }
3109 return 0;
3110}
3111
3112/*
3113 * Remove serial ports registered against a platform device.
3114 */
Bill Pembertonae8d8a12012-11-19 13:26:18 -05003115static int serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
3117 int i;
3118
Dave Jonesa61c2d72006-01-07 23:18:19 +00003119 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 struct uart_8250_port *up = &serial8250_ports[i];
3121
Russell King3ae5eae2005-11-09 22:32:44 +00003122 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 serial8250_unregister_port(i);
3124 }
3125 return 0;
3126}
3127
Russell King3ae5eae2005-11-09 22:32:44 +00003128static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129{
3130 int i;
3131
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 for (i = 0; i < UART_NR; i++) {
3133 struct uart_8250_port *up = &serial8250_ports[i];
3134
Russell King3ae5eae2005-11-09 22:32:44 +00003135 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 uart_suspend_port(&serial8250_reg, &up->port);
3137 }
3138
3139 return 0;
3140}
3141
Russell King3ae5eae2005-11-09 22:32:44 +00003142static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
3144 int i;
3145
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 for (i = 0; i < UART_NR; i++) {
3147 struct uart_8250_port *up = &serial8250_ports[i];
3148
Russell King3ae5eae2005-11-09 22:32:44 +00003149 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003150 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 }
3152
3153 return 0;
3154}
3155
Russell King3ae5eae2005-11-09 22:32:44 +00003156static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 .probe = serial8250_probe,
Bill Pemberton2d47b712012-11-19 13:21:34 -05003158 .remove = serial8250_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 .suspend = serial8250_suspend,
3160 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003161 .driver = {
3162 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003163 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003164 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165};
3166
3167/*
3168 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3169 * in the table in include/asm/serial.h
3170 */
3171static struct platform_device *serial8250_isa_devs;
3172
3173/*
Alan Cox2655a2c2012-07-12 12:59:50 +01003174 * serial8250_register_8250_port and serial8250_unregister_port allows for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3176 * modems and PCI multiport cards.
3177 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003178static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
3180static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3181{
3182 int i;
3183
3184 /*
3185 * First, find a port entry which matches.
3186 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003187 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 if (uart_match_port(&serial8250_ports[i].port, port))
3189 return &serial8250_ports[i];
3190
3191 /*
3192 * We didn't find a matching entry, so look for the first
3193 * free entry. We look for one which hasn't been previously
3194 * used (indicated by zero iobase).
3195 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003196 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3198 serial8250_ports[i].port.iobase == 0)
3199 return &serial8250_ports[i];
3200
3201 /*
3202 * That also failed. Last resort is to find any entry which
3203 * doesn't have a real port associated with it.
3204 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003205 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3207 return &serial8250_ports[i];
3208
3209 return NULL;
3210}
3211
3212/**
Magnus Dammf73fa052012-05-02 21:47:27 +09003213 * serial8250_register_8250_port - register a serial port
Randy Dunlap58bcd332012-06-08 18:51:23 -07003214 * @up: serial port template
Magnus Dammf73fa052012-05-02 21:47:27 +09003215 *
3216 * Configure the serial port specified by the request. If the
3217 * port exists and is in use, it is hung up and unregistered
3218 * first.
3219 *
3220 * The port is then probed and if necessary the IRQ is autodetected
3221 * If this fails an error is returned.
3222 *
3223 * On success the port is ready to use and the line number is returned.
3224 */
3225int serial8250_register_8250_port(struct uart_8250_port *up)
3226{
3227 struct uart_8250_port *uart;
3228 int ret = -ENOSPC;
3229
3230 if (up->port.uartclk == 0)
3231 return -EINVAL;
3232
3233 mutex_lock(&serial_mutex);
3234
3235 uart = serial8250_find_match_or_unused(&up->port);
Sean Young65ecc9c2012-09-07 19:06:24 +01003236 if (uart && uart->port.type != PORT_8250_CIR) {
Sean Young835d8442012-09-07 19:06:23 +01003237 if (uart->port.dev)
3238 uart_remove_one_port(&serial8250_reg, &uart->port);
Magnus Dammf73fa052012-05-02 21:47:27 +09003239
3240 uart->port.iobase = up->port.iobase;
3241 uart->port.membase = up->port.membase;
3242 uart->port.irq = up->port.irq;
3243 uart->port.irqflags = up->port.irqflags;
3244 uart->port.uartclk = up->port.uartclk;
3245 uart->port.fifosize = up->port.fifosize;
3246 uart->port.regshift = up->port.regshift;
3247 uart->port.iotype = up->port.iotype;
3248 uart->port.flags = up->port.flags | UPF_BOOT_AUTOCONF;
Alan Coxa2d33d82012-07-12 13:00:06 +01003249 uart->bugs = up->bugs;
Magnus Dammf73fa052012-05-02 21:47:27 +09003250 uart->port.mapbase = up->port.mapbase;
3251 uart->port.private_data = up->port.private_data;
3252 if (up->port.dev)
3253 uart->port.dev = up->port.dev;
3254
3255 if (up->port.flags & UPF_FIXED_TYPE)
3256 serial8250_init_fixed_type_port(uart, up->port.type);
3257
3258 set_io_from_upio(&uart->port);
3259 /* Possibly override default I/O functions. */
3260 if (up->port.serial_in)
3261 uart->port.serial_in = up->port.serial_in;
3262 if (up->port.serial_out)
3263 uart->port.serial_out = up->port.serial_out;
3264 if (up->port.handle_irq)
3265 uart->port.handle_irq = up->port.handle_irq;
3266 /* Possibly override set_termios call */
3267 if (up->port.set_termios)
3268 uart->port.set_termios = up->port.set_termios;
3269 if (up->port.pm)
3270 uart->port.pm = up->port.pm;
3271 if (up->port.handle_break)
3272 uart->port.handle_break = up->port.handle_break;
3273 if (up->dl_read)
3274 uart->dl_read = up->dl_read;
3275 if (up->dl_write)
3276 uart->dl_write = up->dl_write;
3277
3278 if (serial8250_isa_config != NULL)
3279 serial8250_isa_config(0, &uart->port,
3280 &uart->capabilities);
3281
3282 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3283 if (ret == 0)
3284 ret = uart->port.line;
3285 }
3286 mutex_unlock(&serial_mutex);
3287
3288 return ret;
3289}
3290EXPORT_SYMBOL(serial8250_register_8250_port);
3291
3292/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3294 * @line: serial line number
3295 *
3296 * Remove one serial port. This may not be called from interrupt
3297 * context. We hand the port back to the our control.
3298 */
3299void serial8250_unregister_port(int line)
3300{
3301 struct uart_8250_port *uart = &serial8250_ports[line];
3302
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003303 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 uart_remove_one_port(&serial8250_reg, &uart->port);
3305 if (serial8250_isa_devs) {
3306 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3307 uart->port.type = PORT_UNKNOWN;
3308 uart->port.dev = &serial8250_isa_devs->dev;
leitao@linux.vnet.ibm.comcb01ece2011-05-26 11:18:39 -03003309 uart->capabilities = uart_config[uart->port.type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 uart_add_one_port(&serial8250_reg, &uart->port);
3311 } else {
3312 uart->port.dev = NULL;
3313 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003314 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315}
3316EXPORT_SYMBOL(serial8250_unregister_port);
3317
3318static int __init serial8250_init(void)
3319{
Alan Cox25db8ad2008-08-19 20:49:40 -07003320 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Sean Young835d8442012-09-07 19:06:23 +01003322 serial8250_isa_init_ports();
Dave Jonesa61c2d72006-01-07 23:18:19 +00003323
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003324 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003325 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 share_irqs ? "en" : "dis");
3327
David Millerb70ac772008-10-13 10:36:31 +01003328#ifdef CONFIG_SPARC
3329 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3330#else
3331 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003333#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 if (ret)
3335 goto out;
3336
Sean Young835d8442012-09-07 19:06:23 +01003337 ret = serial8250_pnp_init();
3338 if (ret)
3339 goto unreg_uart_drv;
3340
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003341 serial8250_isa_devs = platform_device_alloc("serial8250",
3342 PLAT8250_DEV_LEGACY);
3343 if (!serial8250_isa_devs) {
3344 ret = -ENOMEM;
Sean Young835d8442012-09-07 19:06:23 +01003345 goto unreg_pnp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 }
3347
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003348 ret = platform_device_add(serial8250_isa_devs);
3349 if (ret)
3350 goto put_dev;
3351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3353
Russell Kingbc965a72006-01-18 09:54:29 +00003354 ret = platform_driver_register(&serial8250_isa_driver);
3355 if (ret == 0)
3356 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
Russell Kingbc965a72006-01-18 09:54:29 +00003358 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003359put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003360 platform_device_put(serial8250_isa_devs);
Sean Young835d8442012-09-07 19:06:23 +01003361unreg_pnp:
3362 serial8250_pnp_exit();
Alan Cox25db8ad2008-08-19 20:49:40 -07003363unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003364#ifdef CONFIG_SPARC
3365 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3366#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003368#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003369out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 return ret;
3371}
3372
3373static void __exit serial8250_exit(void)
3374{
3375 struct platform_device *isa_dev = serial8250_isa_devs;
3376
3377 /*
3378 * This tells serial8250_unregister_port() not to re-register
3379 * the ports (thereby making serial8250_isa_driver permanently
3380 * in use.)
3381 */
3382 serial8250_isa_devs = NULL;
3383
Russell King3ae5eae2005-11-09 22:32:44 +00003384 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 platform_device_unregister(isa_dev);
3386
Sean Young835d8442012-09-07 19:06:23 +01003387 serial8250_pnp_exit();
3388
David Millerb70ac772008-10-13 10:36:31 +01003389#ifdef CONFIG_SPARC
3390 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3391#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003393#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394}
3395
3396module_init(serial8250_init);
3397module_exit(serial8250_exit);
3398
3399EXPORT_SYMBOL(serial8250_suspend_port);
3400EXPORT_SYMBOL(serial8250_resume_port);
3401
3402MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003403MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
3405module_param(share_irqs, uint, 0644);
3406MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3407 " (unsafe)");
3408
Dave Jonesa61c2d72006-01-07 23:18:19 +00003409module_param(nr_uarts, uint, 0644);
3410MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3411
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003412module_param(skip_txen_test, uint, 0644);
3413MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415#ifdef CONFIG_SERIAL_8250_RSA
3416module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3417MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3418#endif
3419MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);