blob: 833e011a426fe5183e0046fd6284b5c0c8eceacd [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/io.h>
43#include <asm/irq.h>
44
45#include "8250.h"
46
David Millerb70ac772008-10-13 10:36:31 +010047#ifdef CONFIG_SPARC
48#include "suncore.h"
49#endif
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*
52 * Configuration:
Thomas Gleixner40663cc2006-07-01 19:29:43 -070053 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * is unsafe when used on edge-triggered interrupts.
55 */
Adrian Bunk408b6642005-05-01 08:59:29 -070056static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Dave Jonesa61c2d72006-01-07 23:18:19 +000058static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
59
David S. Miller84408382008-10-13 10:45:26 +010060static struct uart_driver serial8250_reg;
61
62static int serial_index(struct uart_port *port)
63{
64 return (serial8250_reg.minor - 64) + port->line;
65}
66
Chuck Ebbertd41a4b52009-10-01 15:44:26 -070067static unsigned int skip_txen_test; /* force skip of txen test at init time */
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * Debugging.
71 */
72#if 0
73#define DEBUG_AUTOCONF(fmt...) printk(fmt)
74#else
75#define DEBUG_AUTOCONF(fmt...) do { } while (0)
76#endif
77
78#if 0
79#define DEBUG_INTR(fmt...) printk(fmt)
80#else
81#define DEBUG_INTR(fmt...) do { } while (0)
82#endif
83
Jiri Slabye7328ae2011-06-05 22:51:49 +020084#define PASS_LIMIT 512
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Dick Hollenbeckbca47612009-12-09 12:31:34 -080086#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
87
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * We default to IRQ0 for the "no irq" hack. Some
91 * machine types want others as well - they're free
92 * to redefine this in their header file.
93 */
94#define is_real_interrupt(irq) ((irq) != 0)
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
97#define CONFIG_SERIAL_DETECT_IRQ 1
98#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#ifdef CONFIG_SERIAL_8250_MANY_PORTS
100#define CONFIG_SERIAL_MANY_PORTS 1
101#endif
102
103/*
104 * HUB6 is always on. This will be removed once the header
105 * files have been cleaned.
106 */
107#define CONFIG_HUB6 1
108
Bryan Wua4ed1e42008-05-31 16:10:04 +0800109#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * SERIAL_PORT_DFNS tells us about built-in ports that have no
112 * standard enumeration mechanism. Platforms that can find all
113 * serial ports via mechanisms like ACPI or PCI need not supply it.
114 */
115#ifndef SERIAL_PORT_DFNS
116#define SERIAL_PORT_DFNS
117#endif
118
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000119static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 SERIAL_PORT_DFNS /* defined in asm/serial.h */
121};
122
Russell King026d02a2005-06-29 18:45:19 +0100123#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125#ifdef CONFIG_SERIAL_8250_RSA
126
127#define PORT_RSA_MAX 4
128static unsigned long probe_rsa[PORT_RSA_MAX];
129static unsigned int probe_rsa_count;
130#endif /* CONFIG_SERIAL_8250_RSA */
131
132struct uart_8250_port {
133 struct uart_port port;
134 struct timer_list timer; /* "no irq" timer */
135 struct list_head list; /* ports on this IRQ */
Russell King4ba5e352005-06-23 10:43:04 +0100136 unsigned short capabilities; /* port capabilities */
137 unsigned short bugs; /* port bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 unsigned int tx_loadsz; /* transmit fifo load size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 unsigned char acr;
140 unsigned char ier;
141 unsigned char lcr;
142 unsigned char mcr;
143 unsigned char mcr_mask; /* mask of user bits */
144 unsigned char mcr_force; /* mask of forced bits */
Alan Coxb8e7e402009-05-28 14:01:35 +0100145 unsigned char cur_iotype; /* Running I/O type */
Corey Minyardad4c2aa2007-08-22 14:01:18 -0700146
147 /*
148 * Some bits in registers are cleared on a read, so they must
149 * be saved whenever the register is read but the bits will not
150 * be immediately processed.
151 */
152#define LSR_SAVE_FLAGS UART_LSR_BRK_ERROR_BITS
153 unsigned char lsr_saved_flags;
154#define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
155 unsigned char msr_saved_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
158struct irq_info {
Alan Cox25db8ad2008-08-19 20:49:40 -0700159 struct hlist_node node;
160 int irq;
161 spinlock_t lock; /* Protects list not the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct list_head *head;
163};
164
Alan Cox25db8ad2008-08-19 20:49:40 -0700165#define NR_IRQ_HASH 32 /* Can be adjusted later */
166static struct hlist_head irq_lists[NR_IRQ_HASH];
167static DEFINE_MUTEX(hash_mutex); /* Used to walk the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/*
170 * Here we define the default xmit fifo size used for each type of UART.
171 */
172static const struct serial8250_config uart_config[] = {
173 [PORT_UNKNOWN] = {
174 .name = "unknown",
175 .fifo_size = 1,
176 .tx_loadsz = 1,
177 },
178 [PORT_8250] = {
179 .name = "8250",
180 .fifo_size = 1,
181 .tx_loadsz = 1,
182 },
183 [PORT_16450] = {
184 .name = "16450",
185 .fifo_size = 1,
186 .tx_loadsz = 1,
187 },
188 [PORT_16550] = {
189 .name = "16550",
190 .fifo_size = 1,
191 .tx_loadsz = 1,
192 },
193 [PORT_16550A] = {
194 .name = "16550A",
195 .fifo_size = 16,
196 .tx_loadsz = 16,
197 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
198 .flags = UART_CAP_FIFO,
199 },
200 [PORT_CIRRUS] = {
201 .name = "Cirrus",
202 .fifo_size = 1,
203 .tx_loadsz = 1,
204 },
205 [PORT_16650] = {
206 .name = "ST16650",
207 .fifo_size = 1,
208 .tx_loadsz = 1,
209 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
210 },
211 [PORT_16650V2] = {
212 .name = "ST16650V2",
213 .fifo_size = 32,
214 .tx_loadsz = 16,
215 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
216 UART_FCR_T_TRIG_00,
217 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
218 },
219 [PORT_16750] = {
220 .name = "TI16750",
221 .fifo_size = 64,
222 .tx_loadsz = 64,
223 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
224 UART_FCR7_64BYTE,
225 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
226 },
227 [PORT_STARTECH] = {
228 .name = "Startech",
229 .fifo_size = 1,
230 .tx_loadsz = 1,
231 },
232 [PORT_16C950] = {
233 .name = "16C950/954",
234 .fifo_size = 128,
235 .tx_loadsz = 128,
236 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Pavel Machekd0694e22011-01-09 08:38:48 +0100237 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
238 .flags = UART_CAP_FIFO | UART_CAP_SLEEP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 },
240 [PORT_16654] = {
241 .name = "ST16654",
242 .fifo_size = 64,
243 .tx_loadsz = 32,
244 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
245 UART_FCR_T_TRIG_10,
246 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
247 },
248 [PORT_16850] = {
249 .name = "XR16850",
250 .fifo_size = 128,
251 .tx_loadsz = 128,
252 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
253 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
254 },
255 [PORT_RSA] = {
256 .name = "RSA",
257 .fifo_size = 2048,
258 .tx_loadsz = 2048,
259 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
260 .flags = UART_CAP_FIFO,
261 },
262 [PORT_NS16550A] = {
263 .name = "NS16550A",
264 .fifo_size = 16,
265 .tx_loadsz = 16,
266 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
267 .flags = UART_CAP_FIFO | UART_NATSEMI,
268 },
269 [PORT_XSCALE] = {
270 .name = "XScale",
271 .fifo_size = 32,
272 .tx_loadsz = 32,
273 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Stephen Warren4539c242011-05-17 16:12:36 -0600274 .flags = UART_CAP_FIFO | UART_CAP_UUE | UART_CAP_RTOIE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700276 [PORT_RM9000] = {
277 .name = "RM9000",
278 .fifo_size = 16,
279 .tx_loadsz = 16,
280 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
281 .flags = UART_CAP_FIFO,
282 },
David Daney6b06f192009-01-02 13:50:00 +0000283 [PORT_OCTEON] = {
284 .name = "OCTEON",
285 .fifo_size = 64,
286 .tx_loadsz = 64,
287 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
288 .flags = UART_CAP_FIFO,
289 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100290 [PORT_AR7] = {
291 .name = "AR7",
292 .fifo_size = 16,
293 .tx_loadsz = 16,
294 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
295 .flags = UART_CAP_FIFO | UART_CAP_AFE,
296 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200297 [PORT_U6_16550A] = {
298 .name = "U6_16550A",
299 .fifo_size = 64,
300 .tx_loadsz = 64,
301 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
302 .flags = UART_CAP_FIFO | UART_CAP_AFE,
303 },
Stephen Warren4539c242011-05-17 16:12:36 -0600304 [PORT_TEGRA] = {
305 .name = "Tegra",
306 .fifo_size = 32,
307 .tx_loadsz = 8,
308 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
309 UART_FCR_T_TRIG_01,
310 .flags = UART_CAP_FIFO | UART_CAP_RTOIE,
311 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312};
313
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200314#if defined(CONFIG_MIPS_ALCHEMY)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000315
316/* Au1x00 UART hardware has a weird register layout */
317static const u8 au_io_in_map[] = {
318 [UART_RX] = 0,
319 [UART_IER] = 2,
320 [UART_IIR] = 3,
321 [UART_LCR] = 5,
322 [UART_MCR] = 6,
323 [UART_LSR] = 7,
324 [UART_MSR] = 8,
325};
326
327static const u8 au_io_out_map[] = {
328 [UART_TX] = 1,
329 [UART_IER] = 2,
330 [UART_FCR] = 4,
331 [UART_LCR] = 5,
332 [UART_MCR] = 6,
333};
334
335/* sane hardware needs no mapping */
David Daney7d6a07d2009-01-02 13:49:47 +0000336static inline int map_8250_in_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000337{
David Daney7d6a07d2009-01-02 13:49:47 +0000338 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000339 return offset;
340 return au_io_in_map[offset];
341}
342
David Daney7d6a07d2009-01-02 13:49:47 +0000343static inline int map_8250_out_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000344{
David Daney7d6a07d2009-01-02 13:49:47 +0000345 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000346 return offset;
347 return au_io_out_map[offset];
348}
349
Alan Cox6f803cd2008-02-08 04:18:52 -0800350#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700351
352static const u8
353 regmap_in[8] = {
354 [UART_RX] = 0x00,
355 [UART_IER] = 0x0c,
356 [UART_IIR] = 0x14,
357 [UART_LCR] = 0x1c,
358 [UART_MCR] = 0x20,
359 [UART_LSR] = 0x24,
360 [UART_MSR] = 0x28,
361 [UART_SCR] = 0x2c
362 },
363 regmap_out[8] = {
364 [UART_TX] = 0x04,
365 [UART_IER] = 0x0c,
366 [UART_FCR] = 0x18,
367 [UART_LCR] = 0x1c,
368 [UART_MCR] = 0x20,
369 [UART_LSR] = 0x24,
370 [UART_MSR] = 0x28,
371 [UART_SCR] = 0x2c
372 };
373
David Daney7d6a07d2009-01-02 13:49:47 +0000374static inline int map_8250_in_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700375{
David Daney7d6a07d2009-01-02 13:49:47 +0000376 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700377 return offset;
378 return regmap_in[offset];
379}
380
David Daney7d6a07d2009-01-02 13:49:47 +0000381static inline int map_8250_out_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700382{
David Daney7d6a07d2009-01-02 13:49:47 +0000383 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700384 return offset;
385 return regmap_out[offset];
386}
387
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000388#else
389
390/* sane hardware needs no mapping */
391#define map_8250_in_reg(up, offset) (offset)
392#define map_8250_out_reg(up, offset) (offset)
393
394#endif
395
David Daney7d6a07d2009-01-02 13:49:47 +0000396static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
David Daney7d6a07d2009-01-02 13:49:47 +0000398 offset = map_8250_in_reg(p, offset) << p->regshift;
399 outb(p->hub6 - 1 + offset, p->iobase);
400 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
David Daney7d6a07d2009-01-02 13:49:47 +0000403static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
David Daney7d6a07d2009-01-02 13:49:47 +0000405 offset = map_8250_out_reg(p, offset) << p->regshift;
406 outb(p->hub6 - 1 + offset, p->iobase);
407 outb(value, p->iobase + 1);
408}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
David Daney7d6a07d2009-01-02 13:49:47 +0000410static unsigned int mem_serial_in(struct uart_port *p, int offset)
411{
412 offset = map_8250_in_reg(p, offset) << p->regshift;
413 return readb(p->membase + offset);
414}
415
416static void mem_serial_out(struct uart_port *p, int offset, int value)
417{
418 offset = map_8250_out_reg(p, offset) << p->regshift;
419 writeb(value, p->membase + offset);
420}
421
422static void mem32_serial_out(struct uart_port *p, int offset, int value)
423{
424 offset = map_8250_out_reg(p, offset) << p->regshift;
425 writel(value, p->membase + offset);
426}
427
428static unsigned int mem32_serial_in(struct uart_port *p, int offset)
429{
430 offset = map_8250_in_reg(p, offset) << p->regshift;
431 return readl(p->membase + offset);
432}
433
David Daney7d6a07d2009-01-02 13:49:47 +0000434static unsigned int au_serial_in(struct uart_port *p, int offset)
435{
436 offset = map_8250_in_reg(p, offset) << p->regshift;
437 return __raw_readl(p->membase + offset);
438}
439
440static void au_serial_out(struct uart_port *p, int offset, int value)
441{
442 offset = map_8250_out_reg(p, offset) << p->regshift;
443 __raw_writel(value, p->membase + offset);
444}
David Daney7d6a07d2009-01-02 13:49:47 +0000445
446static unsigned int tsi_serial_in(struct uart_port *p, int offset)
447{
448 unsigned int tmp;
449 offset = map_8250_in_reg(p, offset) << p->regshift;
450 if (offset == UART_IIR) {
451 tmp = readl(p->membase + (UART_IIR & ~3));
452 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
453 } else
454 return readb(p->membase + offset);
455}
456
457static void tsi_serial_out(struct uart_port *p, int offset, int value)
458{
459 offset = map_8250_out_reg(p, offset) << p->regshift;
460 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
461 writeb(value, p->membase + offset);
462}
463
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000464/* Save the LCR value so it can be re-written when a Busy Detect IRQ occurs. */
465static inline void dwapb_save_out_value(struct uart_port *p, int offset,
466 int value)
467{
468 struct uart_8250_port *up =
469 container_of(p, struct uart_8250_port, port);
470
471 if (offset == UART_LCR)
472 up->lcr = value;
473}
474
475/* Read the IER to ensure any interrupt is cleared before returning from ISR. */
476static inline void dwapb_check_clear_ier(struct uart_port *p, int offset)
477{
478 if (offset == UART_TX || offset == UART_IER)
479 p->serial_in(p, UART_IER);
480}
481
David Daney7d6a07d2009-01-02 13:49:47 +0000482static void dwapb_serial_out(struct uart_port *p, int offset, int value)
483{
484 int save_offset = offset;
485 offset = map_8250_out_reg(p, offset) << p->regshift;
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000486 dwapb_save_out_value(p, save_offset, value);
David Daney7d6a07d2009-01-02 13:49:47 +0000487 writeb(value, p->membase + offset);
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000488 dwapb_check_clear_ier(p, save_offset);
489}
490
491static void dwapb32_serial_out(struct uart_port *p, int offset, int value)
492{
493 int save_offset = offset;
494 offset = map_8250_out_reg(p, offset) << p->regshift;
495 dwapb_save_out_value(p, save_offset, value);
496 writel(value, p->membase + offset);
497 dwapb_check_clear_ier(p, save_offset);
David Daney7d6a07d2009-01-02 13:49:47 +0000498}
499
500static unsigned int io_serial_in(struct uart_port *p, int offset)
501{
502 offset = map_8250_in_reg(p, offset) << p->regshift;
503 return inb(p->iobase + offset);
504}
505
506static void io_serial_out(struct uart_port *p, int offset, int value)
507{
508 offset = map_8250_out_reg(p, offset) << p->regshift;
509 outb(value, p->iobase + offset);
510}
511
Jamie Iles583d28e2011-08-15 10:17:52 +0100512static int serial8250_default_handle_irq(struct uart_port *port);
513
David Daney7d6a07d2009-01-02 13:49:47 +0000514static void set_io_from_upio(struct uart_port *p)
515{
Jamie Iles49d57412010-12-01 23:39:35 +0000516 struct uart_8250_port *up =
517 container_of(p, struct uart_8250_port, port);
David Daney7d6a07d2009-01-02 13:49:47 +0000518 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000520 p->serial_in = hub6_serial_in;
521 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523
524 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000525 p->serial_in = mem_serial_in;
526 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 break;
528
Thomas Koellerbd71c182007-05-06 14:48:47 -0700529 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000531 p->serial_in = mem32_serial_in;
532 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 break;
534
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000535 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000536 p->serial_in = au_serial_in;
537 p->serial_out = au_serial_out;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000538 break;
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200539
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700540 case UPIO_TSI:
David Daney7d6a07d2009-01-02 13:49:47 +0000541 p->serial_in = tsi_serial_in;
542 p->serial_out = tsi_serial_out;
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700543 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000544
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700545 case UPIO_DWAPB:
David Daney7d6a07d2009-01-02 13:49:47 +0000546 p->serial_in = mem_serial_in;
547 p->serial_out = dwapb_serial_out;
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700548 break;
549
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000550 case UPIO_DWAPB32:
551 p->serial_in = mem32_serial_in;
552 p->serial_out = dwapb32_serial_out;
553 break;
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000556 p->serial_in = io_serial_in;
557 p->serial_out = io_serial_out;
558 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100560 /* Remember loaded iotype */
561 up->cur_iotype = p->iotype;
Jamie Iles583d28e2011-08-15 10:17:52 +0100562 p->handle_irq = serial8250_default_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Alex Williamson40b36da2007-02-14 00:33:04 -0800565static void
566serial_out_sync(struct uart_8250_port *up, int offset, int value)
567{
David Daney7d6a07d2009-01-02 13:49:47 +0000568 struct uart_port *p = &up->port;
569 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800570 case UPIO_MEM:
571 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800572 case UPIO_AU:
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700573 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000574 case UPIO_DWAPB32:
David Daney7d6a07d2009-01-02 13:49:47 +0000575 p->serial_out(p, offset, value);
576 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800577 break;
578 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000579 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800580 }
581}
582
David Daney7d6a07d2009-01-02 13:49:47 +0000583#define serial_in(up, offset) \
584 (up->port.serial_in(&(up)->port, (offset)))
585#define serial_out(up, offset, value) \
586 (up->port.serial_out(&(up)->port, (offset), (value)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587/*
588 * We used to support using pause I/O for certain machines. We
589 * haven't supported this for a while, but just in case it's badly
590 * needed for certain old 386 machines, I've left these #define's
591 * in....
592 */
593#define serial_inp(up, offset) serial_in(up, offset)
594#define serial_outp(up, offset, value) serial_out(up, offset, value)
595
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100596/* Uart divisor latch read */
597static inline int _serial_dl_read(struct uart_8250_port *up)
598{
599 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
600}
601
602/* Uart divisor latch write */
603static inline void _serial_dl_write(struct uart_8250_port *up, int value)
604{
605 serial_outp(up, UART_DLL, value & 0xff);
606 serial_outp(up, UART_DLM, value >> 8 & 0xff);
607}
608
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200609#if defined(CONFIG_MIPS_ALCHEMY)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100610/* Au1x00 haven't got a standard divisor latch */
611static int serial_dl_read(struct uart_8250_port *up)
612{
613 if (up->port.iotype == UPIO_AU)
614 return __raw_readl(up->port.membase + 0x28);
615 else
616 return _serial_dl_read(up);
617}
618
619static void serial_dl_write(struct uart_8250_port *up, int value)
620{
621 if (up->port.iotype == UPIO_AU)
622 __raw_writel(value, up->port.membase + 0x28);
623 else
624 _serial_dl_write(up, value);
625}
Alan Cox6f803cd2008-02-08 04:18:52 -0800626#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700627static int serial_dl_read(struct uart_8250_port *up)
628{
629 return (up->port.iotype == UPIO_RM9000) ?
630 (((__raw_readl(up->port.membase + 0x10) << 8) |
631 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
632 _serial_dl_read(up);
633}
634
635static void serial_dl_write(struct uart_8250_port *up, int value)
636{
637 if (up->port.iotype == UPIO_RM9000) {
638 __raw_writel(value, up->port.membase + 0x08);
639 __raw_writel(value >> 8, up->port.membase + 0x10);
640 } else {
641 _serial_dl_write(up, value);
642 }
643}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100644#else
645#define serial_dl_read(up) _serial_dl_read(up)
646#define serial_dl_write(up, value) _serial_dl_write(up, value)
647#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649/*
650 * For the 16C950
651 */
652static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
653{
654 serial_out(up, UART_SCR, offset);
655 serial_out(up, UART_ICR, value);
656}
657
658static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
659{
660 unsigned int value;
661
662 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
663 serial_out(up, UART_SCR, offset);
664 value = serial_in(up, UART_ICR);
665 serial_icr_write(up, UART_ACR, up->acr);
666
667 return value;
668}
669
670/*
671 * FIFO support.
672 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100673static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 if (p->capabilities & UART_CAP_FIFO) {
676 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
677 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
678 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
679 serial_outp(p, UART_FCR, 0);
680 }
681}
682
683/*
684 * IER sleep support. UARTs which have EFRs need the "extended
685 * capability" bit enabled. Note that on XR16C850s, we need to
686 * reset LCR to write to IER.
687 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100688static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 if (p->capabilities & UART_CAP_SLEEP) {
691 if (p->capabilities & UART_CAP_EFR) {
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800692 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 serial_outp(p, UART_EFR, UART_EFR_ECB);
694 serial_outp(p, UART_LCR, 0);
695 }
696 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
697 if (p->capabilities & UART_CAP_EFR) {
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800698 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 serial_outp(p, UART_EFR, 0);
700 serial_outp(p, UART_LCR, 0);
701 }
702 }
703}
704
705#ifdef CONFIG_SERIAL_8250_RSA
706/*
707 * Attempts to turn on the RSA FIFO. Returns zero on failure.
708 * We set the port uart clock rate if we succeed.
709 */
710static int __enable_rsa(struct uart_8250_port *up)
711{
712 unsigned char mode;
713 int result;
714
715 mode = serial_inp(up, UART_RSA_MSR);
716 result = mode & UART_RSA_MSR_FIFO;
717
718 if (!result) {
719 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
720 mode = serial_inp(up, UART_RSA_MSR);
721 result = mode & UART_RSA_MSR_FIFO;
722 }
723
724 if (result)
725 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
726
727 return result;
728}
729
730static void enable_rsa(struct uart_8250_port *up)
731{
732 if (up->port.type == PORT_RSA) {
733 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
734 spin_lock_irq(&up->port.lock);
735 __enable_rsa(up);
736 spin_unlock_irq(&up->port.lock);
737 }
738 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
739 serial_outp(up, UART_RSA_FRR, 0);
740 }
741}
742
743/*
744 * Attempts to turn off the RSA FIFO. Returns zero on failure.
745 * It is unknown why interrupts were disabled in here. However,
746 * the caller is expected to preserve this behaviour by grabbing
747 * the spinlock before calling this function.
748 */
749static void disable_rsa(struct uart_8250_port *up)
750{
751 unsigned char mode;
752 int result;
753
754 if (up->port.type == PORT_RSA &&
755 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
756 spin_lock_irq(&up->port.lock);
757
758 mode = serial_inp(up, UART_RSA_MSR);
759 result = !(mode & UART_RSA_MSR_FIFO);
760
761 if (!result) {
762 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
763 mode = serial_inp(up, UART_RSA_MSR);
764 result = !(mode & UART_RSA_MSR_FIFO);
765 }
766
767 if (result)
768 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
769 spin_unlock_irq(&up->port.lock);
770 }
771}
772#endif /* CONFIG_SERIAL_8250_RSA */
773
774/*
775 * This is a quickie test to see how big the FIFO is.
776 * It doesn't work at all the time, more's the pity.
777 */
778static int size_fifo(struct uart_8250_port *up)
779{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100780 unsigned char old_fcr, old_mcr, old_lcr;
781 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 int count;
783
784 old_lcr = serial_inp(up, UART_LCR);
785 serial_outp(up, UART_LCR, 0);
786 old_fcr = serial_inp(up, UART_FCR);
787 old_mcr = serial_inp(up, UART_MCR);
788 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
789 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
790 serial_outp(up, UART_MCR, UART_MCR_LOOP);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800791 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100792 old_dl = serial_dl_read(up);
793 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 serial_outp(up, UART_LCR, 0x03);
795 for (count = 0; count < 256; count++)
796 serial_outp(up, UART_TX, count);
797 mdelay(20);/* FIXME - schedule_timeout */
798 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
799 (count < 256); count++)
800 serial_inp(up, UART_RX);
801 serial_outp(up, UART_FCR, old_fcr);
802 serial_outp(up, UART_MCR, old_mcr);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800803 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100804 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 serial_outp(up, UART_LCR, old_lcr);
806
807 return count;
808}
809
810/*
811 * Read UART ID using the divisor method - set DLL and DLM to zero
812 * and the revision will be in DLL and device type in DLM. We
813 * preserve the device state across this.
814 */
815static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
816{
817 unsigned char old_dll, old_dlm, old_lcr;
818 unsigned int id;
819
820 old_lcr = serial_inp(p, UART_LCR);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800821 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 old_dll = serial_inp(p, UART_DLL);
824 old_dlm = serial_inp(p, UART_DLM);
825
826 serial_outp(p, UART_DLL, 0);
827 serial_outp(p, UART_DLM, 0);
828
829 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
830
831 serial_outp(p, UART_DLL, old_dll);
832 serial_outp(p, UART_DLM, old_dlm);
833 serial_outp(p, UART_LCR, old_lcr);
834
835 return id;
836}
837
838/*
839 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
840 * When this function is called we know it is at least a StarTech
841 * 16650 V2, but it might be one of several StarTech UARTs, or one of
842 * its clones. (We treat the broken original StarTech 16650 V1 as a
843 * 16550, and why not? Startech doesn't seem to even acknowledge its
844 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700845 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 * What evil have men's minds wrought...
847 */
848static void autoconfig_has_efr(struct uart_8250_port *up)
849{
850 unsigned int id1, id2, id3, rev;
851
852 /*
853 * Everything with an EFR has SLEEP
854 */
855 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
856
857 /*
858 * First we check to see if it's an Oxford Semiconductor UART.
859 *
860 * If we have to do this here because some non-National
861 * Semiconductor clone chips lock up if you try writing to the
862 * LSR register (which serial_icr_read does)
863 */
864
865 /*
866 * Check for Oxford Semiconductor 16C950.
867 *
868 * EFR [4] must be set else this test fails.
869 *
870 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
871 * claims that it's needed for 952 dual UART's (which are not
872 * recommended for new designs).
873 */
874 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800875 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 serial_out(up, UART_EFR, UART_EFR_ECB);
877 serial_out(up, UART_LCR, 0x00);
878 id1 = serial_icr_read(up, UART_ID1);
879 id2 = serial_icr_read(up, UART_ID2);
880 id3 = serial_icr_read(up, UART_ID3);
881 rev = serial_icr_read(up, UART_REV);
882
883 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
884
885 if (id1 == 0x16 && id2 == 0xC9 &&
886 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
887 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100888
889 /*
890 * Enable work around for the Oxford Semiconductor 952 rev B
891 * chip which causes it to seriously miscalculate baud rates
892 * when DLL is 0.
893 */
894 if (id3 == 0x52 && rev == 0x01)
895 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return;
897 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /*
900 * We check for a XR16C850 by setting DLL and DLM to 0, and then
901 * reading back DLL and DLM. The chip type depends on the DLM
902 * value read back:
903 * 0x10 - XR16C850 and the DLL contains the chip revision.
904 * 0x12 - XR16C2850.
905 * 0x14 - XR16C854.
906 */
907 id1 = autoconfig_read_divisor_id(up);
908 DEBUG_AUTOCONF("850id=%04x ", id1);
909
910 id2 = id1 >> 8;
911 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 up->port.type = PORT_16850;
913 return;
914 }
915
916 /*
917 * It wasn't an XR16C850.
918 *
919 * We distinguish between the '654 and the '650 by counting
920 * how many bytes are in the FIFO. I'm using this for now,
921 * since that's the technique that was sent to me in the
922 * serial driver update, but I'm not convinced this works.
923 * I've had problems doing this in the past. -TYT
924 */
925 if (size_fifo(up) == 64)
926 up->port.type = PORT_16654;
927 else
928 up->port.type = PORT_16650V2;
929}
930
931/*
932 * We detected a chip without a FIFO. Only two fall into
933 * this category - the original 8250 and the 16450. The
934 * 16450 has a scratch register (accessible with LCR=0)
935 */
936static void autoconfig_8250(struct uart_8250_port *up)
937{
938 unsigned char scratch, status1, status2;
939
940 up->port.type = PORT_8250;
941
942 scratch = serial_in(up, UART_SCR);
943 serial_outp(up, UART_SCR, 0xa5);
944 status1 = serial_in(up, UART_SCR);
945 serial_outp(up, UART_SCR, 0x5a);
946 status2 = serial_in(up, UART_SCR);
947 serial_outp(up, UART_SCR, scratch);
948
949 if (status1 == 0xa5 && status2 == 0x5a)
950 up->port.type = PORT_16450;
951}
952
953static int broken_efr(struct uart_8250_port *up)
954{
955 /*
956 * Exar ST16C2550 "A2" devices incorrectly detect as
957 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200958 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 */
960 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
961 return 1;
962
963 return 0;
964}
965
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800966static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
967{
968 unsigned char status;
969
970 status = serial_in(up, 0x04); /* EXCR2 */
971#define PRESL(x) ((x) & 0x30)
972 if (PRESL(status) == 0x10) {
973 /* already in high speed mode */
974 return 0;
975 } else {
976 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
977 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
978 serial_outp(up, 0x04, status);
979 }
980 return 1;
981}
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983/*
984 * We know that the chip has FIFOs. Does it have an EFR? The
985 * EFR is located in the same register position as the IIR and
986 * we know the top two bits of the IIR are currently set. The
987 * EFR should contain zero. Try to read the EFR.
988 */
989static void autoconfig_16550a(struct uart_8250_port *up)
990{
991 unsigned char status1, status2;
992 unsigned int iersave;
993
994 up->port.type = PORT_16550A;
995 up->capabilities |= UART_CAP_FIFO;
996
997 /*
998 * Check for presence of the EFR when DLAB is set.
999 * Only ST16C650V1 UARTs pass this test.
1000 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001001 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (serial_in(up, UART_EFR) == 0) {
1003 serial_outp(up, UART_EFR, 0xA8);
1004 if (serial_in(up, UART_EFR) != 0) {
1005 DEBUG_AUTOCONF("EFRv1 ");
1006 up->port.type = PORT_16650;
1007 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
1008 } else {
1009 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
1010 }
1011 serial_outp(up, UART_EFR, 0);
1012 return;
1013 }
1014
1015 /*
1016 * Maybe it requires 0xbf to be written to the LCR.
1017 * (other ST16C650V2 UARTs, TI16C752A, etc)
1018 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001019 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
1021 DEBUG_AUTOCONF("EFRv2 ");
1022 autoconfig_has_efr(up);
1023 return;
1024 }
1025
1026 /*
1027 * Check for a National Semiconductor SuperIO chip.
1028 * Attempt to switch to bank 2, read the value of the LOOP bit
1029 * from EXCR1. Switch back to bank 0, change it in MCR. Then
1030 * switch back to bank 2, read it from EXCR1 again and check
1031 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 */
1033 serial_outp(up, UART_LCR, 0);
1034 status1 = serial_in(up, UART_MCR);
1035 serial_outp(up, UART_LCR, 0xE0);
1036 status2 = serial_in(up, 0x02); /* EXCR1 */
1037
1038 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
1039 serial_outp(up, UART_LCR, 0);
1040 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
1041 serial_outp(up, UART_LCR, 0xE0);
1042 status2 = serial_in(up, 0x02); /* EXCR1 */
1043 serial_outp(up, UART_LCR, 0);
1044 serial_outp(up, UART_MCR, status1);
1045
1046 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +01001047 unsigned short quot;
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +01001050
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01001051 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +01001052 quot <<= 3;
1053
Yin Kangkai0d0389e2011-02-09 11:35:18 +08001054 if (ns16550a_goto_highspeed(up))
1055 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
David Woodhouse857dde22005-05-21 15:52:23 +01001057 serial_outp(up, UART_LCR, 0);
1058
1059 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 up->port.type = PORT_NS16550A;
1061 up->capabilities |= UART_NATSEMI;
1062 return;
1063 }
1064 }
1065
1066 /*
1067 * No EFR. Try to detect a TI16750, which only sets bit 5 of
1068 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1069 * Try setting it with and without DLAB set. Cheap clones
1070 * set bit 5 without DLAB set.
1071 */
1072 serial_outp(up, UART_LCR, 0);
1073 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1074 status1 = serial_in(up, UART_IIR) >> 5;
1075 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001076 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1078 status2 = serial_in(up, UART_IIR) >> 5;
1079 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1080 serial_outp(up, UART_LCR, 0);
1081
1082 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1083
1084 if (status1 == 6 && status2 == 7) {
1085 up->port.type = PORT_16750;
1086 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1087 return;
1088 }
1089
1090 /*
1091 * Try writing and reading the UART_IER_UUE bit (b6).
1092 * If it works, this is probably one of the Xscale platform's
1093 * internal UARTs.
1094 * We're going to explicitly set the UUE bit to 0 before
1095 * trying to write and read a 1 just to make sure it's not
1096 * already a 1 and maybe locked there before we even start start.
1097 */
1098 iersave = serial_in(up, UART_IER);
1099 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
1100 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1101 /*
1102 * OK it's in a known zero state, try writing and reading
1103 * without disturbing the current state of the other bits.
1104 */
1105 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
1106 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1107 /*
1108 * It's an Xscale.
1109 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1110 */
1111 DEBUG_AUTOCONF("Xscale ");
1112 up->port.type = PORT_XSCALE;
Stephen Warren55681812011-06-17 09:45:07 -06001113 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return;
1115 }
1116 } else {
1117 /*
1118 * If we got here we couldn't force the IER_UUE bit to 0.
1119 * Log it and continue.
1120 */
1121 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1122 }
1123 serial_outp(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001124
1125 /*
1126 * We distinguish between 16550A and U6 16550A by counting
1127 * how many bytes are in the FIFO.
1128 */
1129 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1130 up->port.type = PORT_U6_16550A;
1131 up->capabilities |= UART_CAP_AFE;
1132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
1135/*
1136 * This routine is called by rs_init() to initialize a specific serial
1137 * port. It determines what type of UART chip this serial port is
1138 * using: 8250, 16450, 16550, 16550A. The important question is
1139 * whether or not this UART is a 16550A or not, since this will
1140 * determine whether or not we can use its FIFO features or not.
1141 */
1142static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1143{
1144 unsigned char status1, scratch, scratch2, scratch3;
1145 unsigned char save_lcr, save_mcr;
1146 unsigned long flags;
1147
1148 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
1149 return;
1150
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001151 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
David S. Miller84408382008-10-13 10:45:26 +01001152 serial_index(&up->port), up->port.iobase, up->port.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 /*
1155 * We really do need global IRQs disabled here - we're going to
1156 * be frobbing the chips IRQ enable register to see if it exists.
1157 */
1158 spin_lock_irqsave(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001161 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 if (!(up->port.flags & UPF_BUGGY_UART)) {
1164 /*
1165 * Do a simple existence test first; if we fail this,
1166 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001167 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 * 0x80 is used as a nonsense port to prevent against
1169 * false positives due to ISA bus float. The
1170 * assumption is that 0x80 is a non-existent port;
1171 * which should be safe since include/asm/io.h also
1172 * makes this assumption.
1173 *
1174 * Note: this is safe as long as MCR bit 4 is clear
1175 * and the device is in "PC" mode.
1176 */
1177 scratch = serial_inp(up, UART_IER);
1178 serial_outp(up, UART_IER, 0);
1179#ifdef __i386__
1180 outb(0xff, 0x080);
1181#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001182 /*
1183 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1184 * 16C754B) allow only to modify them if an EFR bit is set.
1185 */
1186 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 serial_outp(up, UART_IER, 0x0F);
1188#ifdef __i386__
1189 outb(0, 0x080);
1190#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001191 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 serial_outp(up, UART_IER, scratch);
1193 if (scratch2 != 0 || scratch3 != 0x0F) {
1194 /*
1195 * We failed; there's nothing here
1196 */
1197 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1198 scratch2, scratch3);
1199 goto out;
1200 }
1201 }
1202
1203 save_mcr = serial_in(up, UART_MCR);
1204 save_lcr = serial_in(up, UART_LCR);
1205
Thomas Koellerbd71c182007-05-06 14:48:47 -07001206 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * Check to see if a UART is really there. Certain broken
1208 * internal modems based on the Rockwell chipset fail this
1209 * test, because they apparently don't implement the loopback
1210 * test mode. So this test is skipped on the COM 1 through
1211 * COM 4 ports. This *should* be safe, since no board
1212 * manufacturer would be stupid enough to design a board
1213 * that conflicts with COM 1-4 --- we hope!
1214 */
1215 if (!(up->port.flags & UPF_SKIP_TEST)) {
1216 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1217 status1 = serial_inp(up, UART_MSR) & 0xF0;
1218 serial_outp(up, UART_MCR, save_mcr);
1219 if (status1 != 0x90) {
1220 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1221 status1);
1222 goto out;
1223 }
1224 }
1225
1226 /*
1227 * We're pretty sure there's a port here. Lets find out what
1228 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001229 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 * determines what we test for next.
1231 *
1232 * We also initialise the EFR (if any) to zero for later. The
1233 * EFR occupies the same register location as the FCR and IIR.
1234 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001235 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 serial_outp(up, UART_EFR, 0);
1237 serial_outp(up, UART_LCR, 0);
1238
1239 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1240 scratch = serial_in(up, UART_IIR) >> 6;
1241
1242 DEBUG_AUTOCONF("iir=%d ", scratch);
1243
1244 switch (scratch) {
1245 case 0:
1246 autoconfig_8250(up);
1247 break;
1248 case 1:
1249 up->port.type = PORT_UNKNOWN;
1250 break;
1251 case 2:
1252 up->port.type = PORT_16550;
1253 break;
1254 case 3:
1255 autoconfig_16550a(up);
1256 break;
1257 }
1258
1259#ifdef CONFIG_SERIAL_8250_RSA
1260 /*
1261 * Only probe for RSA ports if we got the region.
1262 */
1263 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1264 int i;
1265
1266 for (i = 0 ; i < probe_rsa_count; ++i) {
1267 if (probe_rsa[i] == up->port.iobase &&
1268 __enable_rsa(up)) {
1269 up->port.type = PORT_RSA;
1270 break;
1271 }
1272 }
1273 }
1274#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 serial_outp(up, UART_LCR, save_lcr);
1277
1278 if (up->capabilities != uart_config[up->port.type].flags) {
1279 printk(KERN_WARNING
1280 "ttyS%d: detected caps %08x should be %08x\n",
David S. Miller84408382008-10-13 10:45:26 +01001281 serial_index(&up->port), up->capabilities,
1282 uart_config[up->port.type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284
1285 up->port.fifosize = uart_config[up->port.type].fifo_size;
1286 up->capabilities = uart_config[up->port.type].flags;
1287 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1288
1289 if (up->port.type == PORT_UNKNOWN)
1290 goto out;
1291
1292 /*
1293 * Reset the UART.
1294 */
1295#ifdef CONFIG_SERIAL_8250_RSA
1296 if (up->port.type == PORT_RSA)
1297 serial_outp(up, UART_RSA_FRR, 0);
1298#endif
1299 serial_outp(up, UART_MCR, save_mcr);
1300 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001301 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001302 if (up->capabilities & UART_CAP_UUE)
1303 serial_outp(up, UART_IER, UART_IER_UUE);
1304 else
1305 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Thomas Koellerbd71c182007-05-06 14:48:47 -07001307 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1310}
1311
1312static void autoconfig_irq(struct uart_8250_port *up)
1313{
1314 unsigned char save_mcr, save_ier;
1315 unsigned char save_ICP = 0;
1316 unsigned int ICP = 0;
1317 unsigned long irqs;
1318 int irq;
1319
1320 if (up->port.flags & UPF_FOURPORT) {
1321 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1322 save_ICP = inb_p(ICP);
1323 outb_p(0x80, ICP);
1324 (void) inb_p(ICP);
1325 }
1326
1327 /* forget possible initially masked and pending IRQ */
1328 probe_irq_off(probe_irq_on());
1329 save_mcr = serial_inp(up, UART_MCR);
1330 save_ier = serial_inp(up, UART_IER);
1331 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 irqs = probe_irq_on();
1334 serial_outp(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001335 udelay(10);
1336 if (up->port.flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 serial_outp(up, UART_MCR,
1338 UART_MCR_DTR | UART_MCR_RTS);
1339 } else {
1340 serial_outp(up, UART_MCR,
1341 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1342 }
1343 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1344 (void)serial_inp(up, UART_LSR);
1345 (void)serial_inp(up, UART_RX);
1346 (void)serial_inp(up, UART_IIR);
1347 (void)serial_inp(up, UART_MSR);
1348 serial_outp(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001349 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 irq = probe_irq_off(irqs);
1351
1352 serial_outp(up, UART_MCR, save_mcr);
1353 serial_outp(up, UART_IER, save_ier);
1354
1355 if (up->port.flags & UPF_FOURPORT)
1356 outb_p(save_ICP, ICP);
1357
1358 up->port.irq = (irq > 0) ? irq : 0;
1359}
1360
Russell Kinge763b902005-06-29 18:41:51 +01001361static inline void __stop_tx(struct uart_8250_port *p)
1362{
1363 if (p->ier & UART_IER_THRI) {
1364 p->ier &= ~UART_IER_THRI;
1365 serial_out(p, UART_IER, p->ier);
1366 }
1367}
1368
Russell Kingb129a8c2005-08-31 10:12:14 +01001369static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Jamie Iles49d57412010-12-01 23:39:35 +00001371 struct uart_8250_port *up =
1372 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Russell Kinge763b902005-06-29 18:41:51 +01001374 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 /*
Russell Kinge763b902005-06-29 18:41:51 +01001377 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 */
Russell Kinge763b902005-06-29 18:41:51 +01001379 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 up->acr |= UART_ACR_TXDIS;
1381 serial_icr_write(up, UART_ACR, up->acr);
1382 }
1383}
1384
Russell King55d3b282005-06-23 15:05:41 +01001385static void transmit_chars(struct uart_8250_port *up);
1386
Russell Kingb129a8c2005-08-31 10:12:14 +01001387static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Jamie Iles49d57412010-12-01 23:39:35 +00001389 struct uart_8250_port *up =
1390 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 if (!(up->ier & UART_IER_THRI)) {
1393 up->ier |= UART_IER_THRI;
1394 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001395
Russell King67f76542005-06-23 22:26:43 +01001396 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001397 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001398 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001399 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Thomas Koellerbd71c182007-05-06 14:48:47 -07001400 if ((up->port.type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001401 (lsr & UART_LSR_THRE) :
1402 (lsr & UART_LSR_TEMT))
Russell King55d3b282005-06-23 15:05:41 +01001403 transmit_chars(up);
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
Russell Kinge763b902005-06-29 18:41:51 +01001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /*
Russell Kinge763b902005-06-29 18:41:51 +01001408 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 */
Russell Kinge763b902005-06-29 18:41:51 +01001410 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 up->acr &= ~UART_ACR_TXDIS;
1412 serial_icr_write(up, UART_ACR, up->acr);
1413 }
1414}
1415
1416static void serial8250_stop_rx(struct uart_port *port)
1417{
Jamie Iles49d57412010-12-01 23:39:35 +00001418 struct uart_8250_port *up =
1419 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 up->ier &= ~UART_IER_RLSI;
1422 up->port.read_status_mask &= ~UART_LSR_DR;
1423 serial_out(up, UART_IER, up->ier);
1424}
1425
1426static void serial8250_enable_ms(struct uart_port *port)
1427{
Jamie Iles49d57412010-12-01 23:39:35 +00001428 struct uart_8250_port *up =
1429 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001431 /* no MSR capabilities */
1432 if (up->bugs & UART_BUG_NOMSR)
1433 return;
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 up->ier |= UART_IER_MSI;
1436 serial_out(up, UART_IER, up->ier);
1437}
1438
Stephen Warren5f873ba2011-05-17 16:12:37 -06001439/*
1440 * Clear the Tegra rx fifo after a break
1441 *
1442 * FIXME: This needs to become a port specific callback once we have a
1443 * framework for this
1444 */
1445static void clear_rx_fifo(struct uart_8250_port *up)
1446{
1447 unsigned int status, tmout = 10000;
1448 do {
1449 status = serial_in(up, UART_LSR);
1450 if (status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS))
1451 status = serial_in(up, UART_RX);
1452 else
1453 break;
1454 if (--tmout == 0)
1455 break;
1456 udelay(1);
1457 } while (1);
1458}
1459
Russell Kingea8874d2006-01-04 19:43:24 +00001460static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001461receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001463 struct tty_struct *tty = up->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 unsigned char ch, lsr = *status;
1465 int max_count = 256;
1466 char flag;
1467
1468 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001469 if (likely(lsr & UART_LSR_DR))
1470 ch = serial_inp(up, UART_RX);
1471 else
1472 /*
1473 * Intel 82571 has a Serial Over Lan device that will
1474 * set UART_LSR_BI without setting UART_LSR_DR when
1475 * it receives a break. To avoid reading from the
1476 * receive buffer without UART_LSR_DR bit set, we
1477 * just force the read character to be 0
1478 */
1479 ch = 0;
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 flag = TTY_NORMAL;
1482 up->port.icount.rx++;
1483
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001484 lsr |= up->lsr_saved_flags;
1485 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001487 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 /*
1489 * For statistics only
1490 */
1491 if (lsr & UART_LSR_BI) {
1492 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1493 up->port.icount.brk++;
1494 /*
Stephen Warren5f873ba2011-05-17 16:12:37 -06001495 * If tegra port then clear the rx fifo to
1496 * accept another break/character.
1497 */
1498 if (up->port.type == PORT_TEGRA)
1499 clear_rx_fifo(up);
1500
1501 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 * We do the SysRQ and SAK checking
1503 * here because otherwise the break
1504 * may get masked by ignore_status_mask
1505 * or read_status_mask.
1506 */
1507 if (uart_handle_break(&up->port))
1508 goto ignore_char;
1509 } else if (lsr & UART_LSR_PE)
1510 up->port.icount.parity++;
1511 else if (lsr & UART_LSR_FE)
1512 up->port.icount.frame++;
1513 if (lsr & UART_LSR_OE)
1514 up->port.icount.overrun++;
1515
1516 /*
Russell King23907eb2005-04-16 15:26:39 -07001517 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 */
1519 lsr &= up->port.read_status_mask;
1520
1521 if (lsr & UART_LSR_BI) {
1522 DEBUG_INTR("handling break....");
1523 flag = TTY_BREAK;
1524 } else if (lsr & UART_LSR_PE)
1525 flag = TTY_PARITY;
1526 else if (lsr & UART_LSR_FE)
1527 flag = TTY_FRAME;
1528 }
David Howells7d12e782006-10-05 14:55:46 +01001529 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001531
1532 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1533
Alan Cox6f803cd2008-02-08 04:18:52 -08001534ignore_char:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 lsr = serial_inp(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001536 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 spin_unlock(&up->port.lock);
1538 tty_flip_buffer_push(tty);
1539 spin_lock(&up->port.lock);
1540 *status = lsr;
1541}
1542
Russell Kingea8874d2006-01-04 19:43:24 +00001543static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001545 struct circ_buf *xmit = &up->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 int count;
1547
1548 if (up->port.x_char) {
1549 serial_outp(up, UART_TX, up->port.x_char);
1550 up->port.icount.tx++;
1551 up->port.x_char = 0;
1552 return;
1553 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001554 if (uart_tx_stopped(&up->port)) {
1555 serial8250_stop_tx(&up->port);
1556 return;
1557 }
1558 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001559 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 return;
1561 }
1562
1563 count = up->tx_loadsz;
1564 do {
1565 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1566 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1567 up->port.icount.tx++;
1568 if (uart_circ_empty(xmit))
1569 break;
1570 } while (--count > 0);
1571
1572 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1573 uart_write_wakeup(&up->port);
1574
1575 DEBUG_INTR("THRE...");
1576
1577 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001578 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
Russell King2af7cd62006-01-04 16:55:09 +00001581static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Russell King2af7cd62006-01-04 16:55:09 +00001583 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001585 status |= up->msr_saved_flags;
1586 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001587 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001588 up->port.state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001589 if (status & UART_MSR_TERI)
1590 up->port.icount.rng++;
1591 if (status & UART_MSR_DDSR)
1592 up->port.icount.dsr++;
1593 if (status & UART_MSR_DDCD)
1594 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1595 if (status & UART_MSR_DCTS)
1596 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Alan Coxbdc04e32009-09-19 13:13:31 -07001598 wake_up_interruptible(&up->port.state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Russell King2af7cd62006-01-04 16:55:09 +00001601 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602}
1603
1604/*
1605 * This handles the interrupt from one port.
1606 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001607static void serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
Russell King45e24602006-01-04 19:19:06 +00001609 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001610 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001611
Jiri Kosina4bf36312007-04-23 14:41:21 -07001612 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001613
1614 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
1616 DEBUG_INTR("status = %x...", status);
1617
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001618 if (status & (UART_LSR_DR | UART_LSR_BI))
David Howells7d12e782006-10-05 14:55:46 +01001619 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 check_modem_status(up);
1621 if (status & UART_LSR_THRE)
1622 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001623
Jiri Kosina4bf36312007-04-23 14:41:21 -07001624 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
Jamie Iles583d28e2011-08-15 10:17:52 +01001627int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
1628{
1629 struct uart_8250_port *up =
1630 container_of(port, struct uart_8250_port, port);
1631
1632 if (!(iir & UART_IIR_NO_INT)) {
1633 serial8250_handle_port(up);
1634 return 1;
1635 }
1636
1637 return 0;
1638}
1639
1640static int serial8250_default_handle_irq(struct uart_port *port)
1641{
1642 struct uart_8250_port *up =
1643 container_of(port, struct uart_8250_port, port);
1644 unsigned int iir = serial_in(up, UART_IIR);
1645
1646 return serial8250_handle_irq(port, iir);
1647}
1648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649/*
1650 * This is the serial driver's interrupt routine.
1651 *
1652 * Arjan thinks the old way was overly complex, so it got simplified.
1653 * Alan disagrees, saying that need the complexity to handle the weird
1654 * nature of ISA shared interrupts. (This is a special exception.)
1655 *
1656 * In order to handle ISA shared interrupts properly, we need to check
1657 * that all ports have been serviced, and therefore the ISA interrupt
1658 * line has been de-asserted.
1659 *
1660 * This means we need to loop through all ports. checking that they
1661 * don't have an interrupt pending.
1662 */
David Howells7d12e782006-10-05 14:55:46 +01001663static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
1665 struct irq_info *i = dev_id;
1666 struct list_head *l, *end = NULL;
1667 int pass_counter = 0, handled = 0;
1668
1669 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1670
1671 spin_lock(&i->lock);
1672
1673 l = i->head;
1674 do {
1675 struct uart_8250_port *up;
Jamie Iles583d28e2011-08-15 10:17:52 +01001676 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 up = list_entry(l, struct uart_8250_port, list);
Jamie Iles583d28e2011-08-15 10:17:52 +01001679 port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Jamie Iles583d28e2011-08-15 10:17:52 +01001681 if (port->handle_irq(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 handled = 1;
1684
1685 end = NULL;
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00001686 } else if ((up->port.iotype == UPIO_DWAPB ||
1687 up->port.iotype == UPIO_DWAPB32) &&
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001688 (iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
1689 /* The DesignWare APB UART has an Busy Detect (0x07)
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001690 * interrupt meaning an LCR write attempt occurred while the
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001691 * UART was busy. The interrupt must be cleared by reading
1692 * the UART status register (USR) and the LCR re-written. */
1693 unsigned int status;
1694 status = *(volatile u32 *)up->port.private_data;
1695 serial_out(up, UART_LCR, up->lcr);
1696
1697 handled = 1;
1698
1699 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 } else if (end == NULL)
1701 end = l;
1702
1703 l = l->next;
1704
1705 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1706 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001707 printk_ratelimited(KERN_ERR
1708 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 break;
1710 }
1711 } while (l != end);
1712
1713 spin_unlock(&i->lock);
1714
1715 DEBUG_INTR("end.\n");
1716
1717 return IRQ_RETVAL(handled);
1718}
1719
1720/*
1721 * To support ISA shared interrupts, we need to have one interrupt
1722 * handler that ensures that the IRQ line has been deasserted
1723 * before returning. Failing to do this will result in the IRQ
1724 * line being stuck active, and, since ISA irqs are edge triggered,
1725 * no more IRQs will be seen.
1726 */
1727static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1728{
1729 spin_lock_irq(&i->lock);
1730
1731 if (!list_empty(i->head)) {
1732 if (i->head == &up->list)
1733 i->head = i->head->next;
1734 list_del(&up->list);
1735 } else {
1736 BUG_ON(i->head != &up->list);
1737 i->head = NULL;
1738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001740 /* List empty so throw away the hash node */
1741 if (i->head == NULL) {
1742 hlist_del(&i->node);
1743 kfree(i);
1744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
1747static int serial_link_irq_chain(struct uart_8250_port *up)
1748{
Alan Cox25db8ad2008-08-19 20:49:40 -07001749 struct hlist_head *h;
1750 struct hlist_node *n;
1751 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001752 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Alan Cox25db8ad2008-08-19 20:49:40 -07001754 mutex_lock(&hash_mutex);
1755
1756 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1757
1758 hlist_for_each(n, h) {
1759 i = hlist_entry(n, struct irq_info, node);
1760 if (i->irq == up->port.irq)
1761 break;
1762 }
1763
1764 if (n == NULL) {
1765 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1766 if (i == NULL) {
1767 mutex_unlock(&hash_mutex);
1768 return -ENOMEM;
1769 }
1770 spin_lock_init(&i->lock);
1771 i->irq = up->port.irq;
1772 hlist_add_head(&i->node, h);
1773 }
1774 mutex_unlock(&hash_mutex);
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 spin_lock_irq(&i->lock);
1777
1778 if (i->head) {
1779 list_add(&up->list, i->head);
1780 spin_unlock_irq(&i->lock);
1781
1782 ret = 0;
1783 } else {
1784 INIT_LIST_HEAD(&up->list);
1785 i->head = &up->list;
1786 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001787 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 ret = request_irq(up->port.irq, serial8250_interrupt,
1789 irq_flags, "serial", i);
1790 if (ret < 0)
1791 serial_do_unlink(i, up);
1792 }
1793
1794 return ret;
1795}
1796
1797static void serial_unlink_irq_chain(struct uart_8250_port *up)
1798{
Alan Cox25db8ad2008-08-19 20:49:40 -07001799 struct irq_info *i;
1800 struct hlist_node *n;
1801 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Alan Cox25db8ad2008-08-19 20:49:40 -07001803 mutex_lock(&hash_mutex);
1804
1805 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1806
1807 hlist_for_each(n, h) {
1808 i = hlist_entry(n, struct irq_info, node);
1809 if (i->irq == up->port.irq)
1810 break;
1811 }
1812
1813 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 BUG_ON(i->head == NULL);
1815
1816 if (list_empty(i->head))
1817 free_irq(up->port.irq, i);
1818
1819 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001820 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
1823/*
1824 * This function is used to handle ports that do not have an
1825 * interrupt. This doesn't work very well for 16450's, but gives
1826 * barely passable results for a 16550A. (Although at the expense
1827 * of much CPU overhead).
1828 */
1829static void serial8250_timeout(unsigned long data)
1830{
1831 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 unsigned int iir;
1833
1834 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001835 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001836 serial8250_handle_port(up);
Anton Vorontsov54381062010-10-01 17:21:25 +04001837 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001838}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Alex Williamson40b36da2007-02-14 00:33:04 -08001840static void serial8250_backup_timeout(unsigned long data)
1841{
1842 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001843 unsigned int iir, ier = 0, lsr;
1844 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001845
1846 /*
1847 * Must disable interrupts or else we risk racing with the interrupt
1848 * based handler.
1849 */
1850 if (is_real_interrupt(up->port.irq)) {
1851 ier = serial_in(up, UART_IER);
1852 serial_out(up, UART_IER, 0);
1853 }
1854
1855 iir = serial_in(up, UART_IIR);
1856
1857 /*
1858 * This should be a safe test for anyone who doesn't trust the
1859 * IIR bits on their UART, but it's specifically designed for
1860 * the "Diva" UART used on the management processor on many HP
1861 * ia64 and parisc boxes.
1862 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001863 spin_lock_irqsave(&up->port.lock, flags);
1864 lsr = serial_in(up, UART_LSR);
1865 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1866 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001867 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001868 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001869 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001870 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1871 iir |= UART_IIR_THRI;
1872 }
1873
1874 if (!(iir & UART_IIR_NO_INT))
1875 serial8250_handle_port(up);
1876
1877 if (is_real_interrupt(up->port.irq))
1878 serial_out(up, UART_IER, ier);
1879
1880 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001881 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001882 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
1885static unsigned int serial8250_tx_empty(struct uart_port *port)
1886{
Jamie Iles49d57412010-12-01 23:39:35 +00001887 struct uart_8250_port *up =
1888 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001890 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
1892 spin_lock_irqsave(&up->port.lock, flags);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001893 lsr = serial_in(up, UART_LSR);
1894 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 spin_unlock_irqrestore(&up->port.lock, flags);
1896
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001897 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
1900static unsigned int serial8250_get_mctrl(struct uart_port *port)
1901{
Jamie Iles49d57412010-12-01 23:39:35 +00001902 struct uart_8250_port *up =
1903 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001904 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 unsigned int ret;
1906
Russell King2af7cd62006-01-04 16:55:09 +00001907 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 ret = 0;
1910 if (status & UART_MSR_DCD)
1911 ret |= TIOCM_CAR;
1912 if (status & UART_MSR_RI)
1913 ret |= TIOCM_RNG;
1914 if (status & UART_MSR_DSR)
1915 ret |= TIOCM_DSR;
1916 if (status & UART_MSR_CTS)
1917 ret |= TIOCM_CTS;
1918 return ret;
1919}
1920
1921static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1922{
Jamie Iles49d57412010-12-01 23:39:35 +00001923 struct uart_8250_port *up =
1924 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 unsigned char mcr = 0;
1926
1927 if (mctrl & TIOCM_RTS)
1928 mcr |= UART_MCR_RTS;
1929 if (mctrl & TIOCM_DTR)
1930 mcr |= UART_MCR_DTR;
1931 if (mctrl & TIOCM_OUT1)
1932 mcr |= UART_MCR_OUT1;
1933 if (mctrl & TIOCM_OUT2)
1934 mcr |= UART_MCR_OUT2;
1935 if (mctrl & TIOCM_LOOP)
1936 mcr |= UART_MCR_LOOP;
1937
1938 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1939
1940 serial_out(up, UART_MCR, mcr);
1941}
1942
1943static void serial8250_break_ctl(struct uart_port *port, int break_state)
1944{
Jamie Iles49d57412010-12-01 23:39:35 +00001945 struct uart_8250_port *up =
1946 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 unsigned long flags;
1948
1949 spin_lock_irqsave(&up->port.lock, flags);
1950 if (break_state == -1)
1951 up->lcr |= UART_LCR_SBC;
1952 else
1953 up->lcr &= ~UART_LCR_SBC;
1954 serial_out(up, UART_LCR, up->lcr);
1955 spin_unlock_irqrestore(&up->port.lock, flags);
1956}
1957
Alex Williamson40b36da2007-02-14 00:33:04 -08001958/*
1959 * Wait for transmitter & holding register to empty
1960 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001961static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001962{
1963 unsigned int status, tmout = 10000;
1964
1965 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001966 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001967 status = serial_in(up, UART_LSR);
1968
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001969 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001970
David Daney97d303b2010-10-05 11:40:07 -07001971 if ((status & bits) == bits)
1972 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001973 if (--tmout == 0)
1974 break;
1975 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001976 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001977
1978 /* Wait up to 1s for flow control if necessary */
1979 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001980 unsigned int tmout;
1981 for (tmout = 1000000; tmout; tmout--) {
1982 unsigned int msr = serial_in(up, UART_MSR);
1983 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1984 if (msr & UART_MSR_CTS)
1985 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001986 udelay(1);
1987 touch_nmi_watchdog();
1988 }
1989 }
1990}
1991
Jason Wesself2d937f2008-04-17 20:05:37 +02001992#ifdef CONFIG_CONSOLE_POLL
1993/*
1994 * Console polling routines for writing and reading from the uart while
1995 * in an interrupt or debug context.
1996 */
1997
1998static int serial8250_get_poll_char(struct uart_port *port)
1999{
Jamie Iles49d57412010-12-01 23:39:35 +00002000 struct uart_8250_port *up =
2001 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02002002 unsigned char lsr = serial_inp(up, UART_LSR);
2003
Jason Wesself5316b42010-05-20 21:04:22 -05002004 if (!(lsr & UART_LSR_DR))
2005 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02002006
2007 return serial_inp(up, UART_RX);
2008}
2009
2010
2011static void serial8250_put_poll_char(struct uart_port *port,
2012 unsigned char c)
2013{
2014 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00002015 struct uart_8250_port *up =
2016 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02002017
2018 /*
2019 * First save the IER then disable the interrupts
2020 */
2021 ier = serial_in(up, UART_IER);
2022 if (up->capabilities & UART_CAP_UUE)
2023 serial_out(up, UART_IER, UART_IER_UUE);
2024 else
2025 serial_out(up, UART_IER, 0);
2026
2027 wait_for_xmitr(up, BOTH_EMPTY);
2028 /*
2029 * Send the character out.
2030 * If a LF, also do CR...
2031 */
2032 serial_out(up, UART_TX, c);
2033 if (c == 10) {
2034 wait_for_xmitr(up, BOTH_EMPTY);
2035 serial_out(up, UART_TX, 13);
2036 }
2037
2038 /*
2039 * Finally, wait for transmitter to become empty
2040 * and restore the IER
2041 */
2042 wait_for_xmitr(up, BOTH_EMPTY);
2043 serial_out(up, UART_IER, ier);
2044}
2045
2046#endif /* CONFIG_CONSOLE_POLL */
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048static int serial8250_startup(struct uart_port *port)
2049{
Jamie Iles49d57412010-12-01 23:39:35 +00002050 struct uart_8250_port *up =
2051 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01002053 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 int retval;
2055
Ondrej Puzmane4f05af2010-12-04 21:17:38 +01002056 up->port.fifosize = uart_config[up->port.type].fifo_size;
2057 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 up->capabilities = uart_config[up->port.type].flags;
2059 up->mcr = 0;
2060
Alan Coxb8e7e402009-05-28 14:01:35 +01002061 if (up->port.iotype != up->cur_iotype)
2062 set_io_from_upio(port);
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 if (up->port.type == PORT_16C950) {
2065 /* Wake up and initialize UART */
2066 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002067 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 serial_outp(up, UART_EFR, UART_EFR_ECB);
2069 serial_outp(up, UART_IER, 0);
2070 serial_outp(up, UART_LCR, 0);
2071 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
2072 serial_outp(up, UART_LCR, 0xBF);
2073 serial_outp(up, UART_EFR, UART_EFR_ECB);
2074 serial_outp(up, UART_LCR, 0);
2075 }
2076
2077#ifdef CONFIG_SERIAL_8250_RSA
2078 /*
2079 * If this is an RSA port, see if we can kick it up to the
2080 * higher speed clock.
2081 */
2082 enable_rsa(up);
2083#endif
2084
2085 /*
2086 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08002087 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 */
2089 serial8250_clear_fifos(up);
2090
2091 /*
2092 * Clear the interrupt registers.
2093 */
2094 (void) serial_inp(up, UART_LSR);
2095 (void) serial_inp(up, UART_RX);
2096 (void) serial_inp(up, UART_IIR);
2097 (void) serial_inp(up, UART_MSR);
2098
2099 /*
2100 * At this point, there's no way the LSR could still be 0xff;
2101 * if it is, then bail out, because there's likely no UART
2102 * here.
2103 */
2104 if (!(up->port.flags & UPF_BUGGY_UART) &&
2105 (serial_inp(up, UART_LSR) == 0xff)) {
David S. Miller84408382008-10-13 10:45:26 +01002106 printk(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
2107 serial_index(&up->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return -ENODEV;
2109 }
2110
2111 /*
2112 * For a XR16C850, we need to set the trigger levels
2113 */
2114 if (up->port.type == PORT_16850) {
2115 unsigned char fctr;
2116
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002117 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
2120 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2121 serial_outp(up, UART_TRG, UART_TRG_96);
2122 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2123 serial_outp(up, UART_TRG, UART_TRG_96);
2124
2125 serial_outp(up, UART_LCR, 0);
2126 }
2127
Alex Williamson40b36da2007-02-14 00:33:04 -08002128 if (is_real_interrupt(up->port.irq)) {
Alex Williamson01c194d2008-04-28 02:14:09 -07002129 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08002130 /*
2131 * Test for UARTs that do not reassert THRE when the
2132 * transmitter is idle and the interrupt has already
2133 * been cleared. Real 16550s should always reassert
2134 * this interrupt whenever the transmitter is idle and
2135 * the interrupt is enabled. Delays are necessary to
2136 * allow register changes to become visible.
2137 */
Borislav Petkovc389d272008-07-29 22:33:32 -07002138 spin_lock_irqsave(&up->port.lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002139 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002140 disable_irq_nosync(up->port.irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002141
2142 wait_for_xmitr(up, UART_LSR_THRE);
2143 serial_out_sync(up, UART_IER, UART_IER_THRI);
2144 udelay(1); /* allow THRE to set */
Alex Williamson01c194d2008-04-28 02:14:09 -07002145 iir1 = serial_in(up, UART_IIR);
Alex Williamson40b36da2007-02-14 00:33:04 -08002146 serial_out(up, UART_IER, 0);
2147 serial_out_sync(up, UART_IER, UART_IER_THRI);
2148 udelay(1); /* allow a working UART time to re-assert THRE */
2149 iir = serial_in(up, UART_IIR);
2150 serial_out(up, UART_IER, 0);
2151
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002152 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002153 enable_irq(up->port.irq);
Borislav Petkovc389d272008-07-29 22:33:32 -07002154 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002155
2156 /*
2157 * If the interrupt is not reasserted, setup a timer to
2158 * kick the UART on a regular basis.
2159 */
Alex Williamson01c194d2008-04-28 02:14:09 -07002160 if (!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) {
Will Newton363f66f2008-09-02 14:35:44 -07002161 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002162 pr_debug("ttyS%d - using backup timer\n",
2163 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002164 }
2165 }
2166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 /*
Will Newton363f66f2008-09-02 14:35:44 -07002168 * The above check will only give an accurate result the first time
2169 * the port is opened so this value needs to be preserved.
2170 */
2171 if (up->bugs & UART_BUG_THRE) {
2172 up->timer.function = serial8250_backup_timeout;
2173 up->timer.data = (unsigned long)up;
2174 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002175 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002176 }
2177
2178 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 * If the "interrupt" for this port doesn't correspond with any
2180 * hardware interrupt, we use a timer-based system. The original
2181 * driver used to do this with IRQ0.
2182 */
2183 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002185 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 } else {
2187 retval = serial_link_irq_chain(up);
2188 if (retval)
2189 return retval;
2190 }
2191
2192 /*
2193 * Now, initialize the UART
2194 */
2195 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
2196
2197 spin_lock_irqsave(&up->port.lock, flags);
2198 if (up->port.flags & UPF_FOURPORT) {
2199 if (!is_real_interrupt(up->port.irq))
2200 up->port.mctrl |= TIOCM_OUT1;
2201 } else
2202 /*
2203 * Most PC uarts need OUT2 raised to enable interrupts.
2204 */
2205 if (is_real_interrupt(up->port.irq))
2206 up->port.mctrl |= TIOCM_OUT2;
2207
2208 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002209
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002210 /* Serial over Lan (SoL) hack:
2211 Intel 8257x Gigabit ethernet chips have a
2212 16550 emulation, to be used for Serial Over Lan.
2213 Those chips take a longer time than a normal
2214 serial device to signalize that a transmission
2215 data was queued. Due to that, the above test generally
2216 fails. One solution would be to delay the reading of
2217 iir. However, this is not reliable, since the timeout
2218 is variable. So, let's just don't test if we receive
2219 TX irq. This way, we'll never enable UART_BUG_TXEN.
2220 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002221 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002222 goto dont_test_tx_en;
2223
Russell King55d3b282005-06-23 15:05:41 +01002224 /*
2225 * Do a quick test to see if we receive an
2226 * interrupt when we enable the TX irq.
2227 */
2228 serial_outp(up, UART_IER, UART_IER_THRI);
2229 lsr = serial_in(up, UART_LSR);
2230 iir = serial_in(up, UART_IIR);
2231 serial_outp(up, UART_IER, 0);
2232
2233 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002234 if (!(up->bugs & UART_BUG_TXEN)) {
2235 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002236 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002237 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002238 }
2239 } else {
Russell King67f76542005-06-23 22:26:43 +01002240 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002241 }
2242
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002243dont_test_tx_en:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 spin_unlock_irqrestore(&up->port.lock, flags);
2245
2246 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002247 * Clear the interrupt registers again for luck, and clear the
2248 * saved flags to avoid getting false values from polling
2249 * routines or the previous session.
2250 */
2251 serial_inp(up, UART_LSR);
2252 serial_inp(up, UART_RX);
2253 serial_inp(up, UART_IIR);
2254 serial_inp(up, UART_MSR);
2255 up->lsr_saved_flags = 0;
2256 up->msr_saved_flags = 0;
2257
2258 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 * Finally, enable interrupts. Note: Modem status interrupts
2260 * are set via set_termios(), which will be occurring imminently
2261 * anyway, so we don't enable them here.
2262 */
2263 up->ier = UART_IER_RLSI | UART_IER_RDI;
2264 serial_outp(up, UART_IER, up->ier);
2265
2266 if (up->port.flags & UPF_FOURPORT) {
2267 unsigned int icp;
2268 /*
2269 * Enable interrupts on the AST Fourport board
2270 */
2271 icp = (up->port.iobase & 0xfe0) | 0x01f;
2272 outb_p(0x80, icp);
2273 (void) inb_p(icp);
2274 }
2275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 return 0;
2277}
2278
2279static void serial8250_shutdown(struct uart_port *port)
2280{
Jamie Iles49d57412010-12-01 23:39:35 +00002281 struct uart_8250_port *up =
2282 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 unsigned long flags;
2284
2285 /*
2286 * Disable interrupts from this port
2287 */
2288 up->ier = 0;
2289 serial_outp(up, UART_IER, 0);
2290
2291 spin_lock_irqsave(&up->port.lock, flags);
2292 if (up->port.flags & UPF_FOURPORT) {
2293 /* reset interrupts on the AST Fourport board */
2294 inb((up->port.iobase & 0xfe0) | 0x1f);
2295 up->port.mctrl |= TIOCM_OUT1;
2296 } else
2297 up->port.mctrl &= ~TIOCM_OUT2;
2298
2299 serial8250_set_mctrl(&up->port, up->port.mctrl);
2300 spin_unlock_irqrestore(&up->port.lock, flags);
2301
2302 /*
2303 * Disable break condition and FIFOs
2304 */
2305 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
2306 serial8250_clear_fifos(up);
2307
2308#ifdef CONFIG_SERIAL_8250_RSA
2309 /*
2310 * Reset the RSA board back to 115kbps compat mode.
2311 */
2312 disable_rsa(up);
2313#endif
2314
2315 /*
2316 * Read data port to reset things, and then unlink from
2317 * the IRQ chain.
2318 */
2319 (void) serial_in(up, UART_RX);
2320
Alex Williamson40b36da2007-02-14 00:33:04 -08002321 del_timer_sync(&up->timer);
2322 up->timer.function = serial8250_timeout;
2323 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 serial_unlink_irq_chain(up);
2325}
2326
2327static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2328{
2329 unsigned int quot;
2330
2331 /*
2332 * Handle magic divisors for baud rates above baud_base on
2333 * SMSC SuperIO chips.
2334 */
2335 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2336 baud == (port->uartclk/4))
2337 quot = 0x8001;
2338 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2339 baud == (port->uartclk/8))
2340 quot = 0x8002;
2341 else
2342 quot = uart_get_divisor(port, baud);
2343
2344 return quot;
2345}
2346
Philippe Langlais235dae52010-07-29 17:13:57 +02002347void
2348serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2349 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
Jamie Iles49d57412010-12-01 23:39:35 +00002351 struct uart_8250_port *up =
2352 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 unsigned char cval, fcr = 0;
2354 unsigned long flags;
2355 unsigned int baud, quot;
2356
2357 switch (termios->c_cflag & CSIZE) {
2358 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002359 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 break;
2361 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002362 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 break;
2364 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002365 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 break;
2367 default:
2368 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002369 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 break;
2371 }
2372
2373 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002374 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 if (termios->c_cflag & PARENB)
2376 cval |= UART_LCR_PARITY;
2377 if (!(termios->c_cflag & PARODD))
2378 cval |= UART_LCR_EPAR;
2379#ifdef CMSPAR
2380 if (termios->c_cflag & CMSPAR)
2381 cval |= UART_LCR_SPAR;
2382#endif
2383
2384 /*
2385 * Ask the core to calculate the divisor for us.
2386 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002387 baud = uart_get_baud_rate(port, termios, old,
2388 port->uartclk / 16 / 0xffff,
2389 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 quot = serial8250_get_divisor(port, baud);
2391
2392 /*
Russell King4ba5e352005-06-23 10:43:04 +01002393 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 */
Russell King4ba5e352005-06-23 10:43:04 +01002395 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002396 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2399 if (baud < 2400)
2400 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2401 else
2402 fcr = uart_config[up->port.type].fcr;
2403 }
2404
2405 /*
2406 * MCR-based auto flow control. When AFE is enabled, RTS will be
2407 * deasserted when the receive FIFO contains more characters than
2408 * the trigger, or the MCR RTS bit is cleared. In the case where
2409 * the remote UART is not using CTS auto flow control, we must
2410 * have sufficient FIFO entries for the latency of the remote
2411 * UART to respond. IOW, at least 32 bytes of FIFO.
2412 */
2413 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2414 up->mcr &= ~UART_MCR_AFE;
2415 if (termios->c_cflag & CRTSCTS)
2416 up->mcr |= UART_MCR_AFE;
2417 }
2418
2419 /*
2420 * Ok, we're now changing the port state. Do it with
2421 * interrupts disabled.
2422 */
2423 spin_lock_irqsave(&up->port.lock, flags);
2424
2425 /*
2426 * Update the per-port timeout.
2427 */
2428 uart_update_timeout(port, termios->c_cflag, baud);
2429
2430 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2431 if (termios->c_iflag & INPCK)
2432 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2433 if (termios->c_iflag & (BRKINT | PARMRK))
2434 up->port.read_status_mask |= UART_LSR_BI;
2435
2436 /*
2437 * Characteres to ignore
2438 */
2439 up->port.ignore_status_mask = 0;
2440 if (termios->c_iflag & IGNPAR)
2441 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2442 if (termios->c_iflag & IGNBRK) {
2443 up->port.ignore_status_mask |= UART_LSR_BI;
2444 /*
2445 * If we're ignoring parity and break indicators,
2446 * ignore overruns too (for real raw support).
2447 */
2448 if (termios->c_iflag & IGNPAR)
2449 up->port.ignore_status_mask |= UART_LSR_OE;
2450 }
2451
2452 /*
2453 * ignore all characters if CREAD is not set
2454 */
2455 if ((termios->c_cflag & CREAD) == 0)
2456 up->port.ignore_status_mask |= UART_LSR_DR;
2457
2458 /*
2459 * CTS flow control flag and modem status interrupts
2460 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002461 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002462 if (!(up->bugs & UART_BUG_NOMSR) &&
2463 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 up->ier |= UART_IER_MSI;
2465 if (up->capabilities & UART_CAP_UUE)
Stephen Warren4539c242011-05-17 16:12:36 -06002466 up->ier |= UART_IER_UUE;
2467 if (up->capabilities & UART_CAP_RTOIE)
2468 up->ier |= UART_IER_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 serial_out(up, UART_IER, up->ier);
2471
2472 if (up->capabilities & UART_CAP_EFR) {
2473 unsigned char efr = 0;
2474 /*
2475 * TI16C752/Startech hardware flow control. FIXME:
2476 * - TI16C752 requires control thresholds to be set.
2477 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2478 */
2479 if (termios->c_cflag & CRTSCTS)
2480 efr |= UART_EFR_CTS;
2481
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002482 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 serial_outp(up, UART_EFR, efr);
2484 }
2485
Russell Kingf2eda272008-09-01 21:47:59 +01002486#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002487 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002488 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002489 if (baud == 115200) {
2490 quot = 1;
2491 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2492 } else
2493 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2494 }
2495#endif
2496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 if (up->capabilities & UART_NATSEMI) {
2498 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2499 serial_outp(up, UART_LCR, 0xe0);
2500 } else {
2501 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2502 }
2503
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002504 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506 /*
2507 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2508 * is written without DLAB set, this mode will be disabled.
2509 */
2510 if (up->port.type == PORT_16750)
2511 serial_outp(up, UART_FCR, fcr);
2512
2513 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2514 up->lcr = cval; /* Save LCR */
2515 if (up->port.type != PORT_16750) {
2516 if (fcr & UART_FCR_ENABLE_FIFO) {
2517 /* emulated UARTs (Lucent Venus 167x) need two steps */
2518 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2519 }
2520 serial_outp(up, UART_FCR, fcr); /* set fcr */
2521 }
2522 serial8250_set_mctrl(&up->port, up->port.mctrl);
2523 spin_unlock_irqrestore(&up->port.lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002524 /* Don't rewrite B0 */
2525 if (tty_termios_baud_rate(termios))
2526 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
Philippe Langlais235dae52010-07-29 17:13:57 +02002528EXPORT_SYMBOL(serial8250_do_set_termios);
2529
2530static void
2531serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2532 struct ktermios *old)
2533{
2534 if (port->set_termios)
2535 port->set_termios(port, termios, old);
2536 else
2537 serial8250_do_set_termios(port, termios, old);
2538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002541serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002542{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002543 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002544 port->flags |= UPF_HARDPPS_CD;
2545 serial8250_enable_ms(port);
2546 } else
2547 port->flags &= ~UPF_HARDPPS_CD;
2548}
2549
Manuel Laussc161afe2010-09-25 15:13:45 +02002550
2551void serial8250_do_pm(struct uart_port *port, unsigned int state,
2552 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
Jamie Iles49d57412010-12-01 23:39:35 +00002554 struct uart_8250_port *p =
2555 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
2557 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002558}
2559EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Manuel Laussc161afe2010-09-25 15:13:45 +02002561static void
2562serial8250_pm(struct uart_port *port, unsigned int state,
2563 unsigned int oldstate)
2564{
2565 if (port->pm)
2566 port->pm(port, state, oldstate);
2567 else
2568 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569}
2570
Russell Kingf2eda272008-09-01 21:47:59 +01002571static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2572{
2573 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002574 return 0x1000;
Russell Kingf2eda272008-09-01 21:47:59 +01002575#ifdef CONFIG_ARCH_OMAP
2576 if (is_omap_port(pt))
2577 return 0x16 << pt->port.regshift;
2578#endif
2579 return 8 << pt->port.regshift;
2580}
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582/*
2583 * Resource handling.
2584 */
2585static int serial8250_request_std_resource(struct uart_8250_port *up)
2586{
Russell Kingf2eda272008-09-01 21:47:59 +01002587 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 int ret = 0;
2589
2590 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002591 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002592 case UPIO_TSI:
2593 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002595 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00002596 case UPIO_DWAPB32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 if (!up->port.mapbase)
2598 break;
2599
2600 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2601 ret = -EBUSY;
2602 break;
2603 }
2604
2605 if (up->port.flags & UPF_IOREMAP) {
Alan Cox6f441fe2008-05-01 04:34:59 -07002606 up->port.membase = ioremap_nocache(up->port.mapbase,
2607 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 if (!up->port.membase) {
2609 release_mem_region(up->port.mapbase, size);
2610 ret = -ENOMEM;
2611 }
2612 }
2613 break;
2614
2615 case UPIO_HUB6:
2616 case UPIO_PORT:
2617 if (!request_region(up->port.iobase, size, "serial"))
2618 ret = -EBUSY;
2619 break;
2620 }
2621 return ret;
2622}
2623
2624static void serial8250_release_std_resource(struct uart_8250_port *up)
2625{
Russell Kingf2eda272008-09-01 21:47:59 +01002626 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
2628 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002629 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002630 case UPIO_TSI:
2631 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002633 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00002634 case UPIO_DWAPB32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 if (!up->port.mapbase)
2636 break;
2637
2638 if (up->port.flags & UPF_IOREMAP) {
2639 iounmap(up->port.membase);
2640 up->port.membase = NULL;
2641 }
2642
2643 release_mem_region(up->port.mapbase, size);
2644 break;
2645
2646 case UPIO_HUB6:
2647 case UPIO_PORT:
2648 release_region(up->port.iobase, size);
2649 break;
2650 }
2651}
2652
2653static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2654{
2655 unsigned long start = UART_RSA_BASE << up->port.regshift;
2656 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002657 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
2659 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 case UPIO_HUB6:
2661 case UPIO_PORT:
2662 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002663 if (request_region(start, size, "serial-rsa"))
2664 ret = 0;
2665 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 ret = -EBUSY;
2667 break;
2668 }
2669
2670 return ret;
2671}
2672
2673static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2674{
2675 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2676 unsigned int size = 8 << up->port.regshift;
2677
2678 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 case UPIO_HUB6:
2680 case UPIO_PORT:
2681 release_region(up->port.iobase + offset, size);
2682 break;
2683 }
2684}
2685
2686static void serial8250_release_port(struct uart_port *port)
2687{
Jamie Iles49d57412010-12-01 23:39:35 +00002688 struct uart_8250_port *up =
2689 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691 serial8250_release_std_resource(up);
2692 if (up->port.type == PORT_RSA)
2693 serial8250_release_rsa_resource(up);
2694}
2695
2696static int serial8250_request_port(struct uart_port *port)
2697{
Jamie Iles49d57412010-12-01 23:39:35 +00002698 struct uart_8250_port *up =
2699 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 int ret = 0;
2701
2702 ret = serial8250_request_std_resource(up);
2703 if (ret == 0 && up->port.type == PORT_RSA) {
2704 ret = serial8250_request_rsa_resource(up);
2705 if (ret < 0)
2706 serial8250_release_std_resource(up);
2707 }
2708
2709 return ret;
2710}
2711
2712static void serial8250_config_port(struct uart_port *port, int flags)
2713{
Jamie Iles49d57412010-12-01 23:39:35 +00002714 struct uart_8250_port *up =
2715 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 int probeflags = PROBE_ANY;
2717 int ret;
2718
2719 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 * Find the region that we can probe for. This in turn
2721 * tells us whether we can probe for the type of port.
2722 */
2723 ret = serial8250_request_std_resource(up);
2724 if (ret < 0)
2725 return;
2726
2727 ret = serial8250_request_rsa_resource(up);
2728 if (ret < 0)
2729 probeflags &= ~PROBE_RSA;
2730
Alan Coxb8e7e402009-05-28 14:01:35 +01002731 if (up->port.iotype != up->cur_iotype)
2732 set_io_from_upio(port);
2733
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 if (flags & UART_CONFIG_TYPE)
2735 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002736
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002737 /* if access method is AU, it is a 16550 with a quirk */
2738 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
2739 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2742 autoconfig_irq(up);
2743
2744 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2745 serial8250_release_rsa_resource(up);
2746 if (up->port.type == PORT_UNKNOWN)
2747 serial8250_release_std_resource(up);
2748}
2749
2750static int
2751serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2752{
Yinghai Lua62c4132008-08-19 20:49:55 -07002753 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2755 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2756 ser->type == PORT_STARTECH)
2757 return -EINVAL;
2758 return 0;
2759}
2760
2761static const char *
2762serial8250_type(struct uart_port *port)
2763{
2764 int type = port->type;
2765
2766 if (type >= ARRAY_SIZE(uart_config))
2767 type = 0;
2768 return uart_config[type].name;
2769}
2770
2771static struct uart_ops serial8250_pops = {
2772 .tx_empty = serial8250_tx_empty,
2773 .set_mctrl = serial8250_set_mctrl,
2774 .get_mctrl = serial8250_get_mctrl,
2775 .stop_tx = serial8250_stop_tx,
2776 .start_tx = serial8250_start_tx,
2777 .stop_rx = serial8250_stop_rx,
2778 .enable_ms = serial8250_enable_ms,
2779 .break_ctl = serial8250_break_ctl,
2780 .startup = serial8250_startup,
2781 .shutdown = serial8250_shutdown,
2782 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002783 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 .pm = serial8250_pm,
2785 .type = serial8250_type,
2786 .release_port = serial8250_release_port,
2787 .request_port = serial8250_request_port,
2788 .config_port = serial8250_config_port,
2789 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002790#ifdef CONFIG_CONSOLE_POLL
2791 .poll_get_char = serial8250_get_poll_char,
2792 .poll_put_char = serial8250_put_poll_char,
2793#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794};
2795
2796static struct uart_8250_port serial8250_ports[UART_NR];
2797
Alan Coxaf7f3742010-10-18 11:38:02 -07002798static void (*serial8250_isa_config)(int port, struct uart_port *up,
2799 unsigned short *capabilities);
2800
2801void serial8250_set_isa_configurator(
2802 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2803{
2804 serial8250_isa_config = v;
2805}
2806EXPORT_SYMBOL(serial8250_set_isa_configurator);
2807
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808static void __init serial8250_isa_init_ports(void)
2809{
2810 struct uart_8250_port *up;
2811 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002812 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
2814 if (!first)
2815 return;
2816 first = 0;
2817
Dave Jonesa61c2d72006-01-07 23:18:19 +00002818 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 struct uart_8250_port *up = &serial8250_ports[i];
2820
2821 up->port.line = i;
2822 spin_lock_init(&up->port.lock);
2823
2824 init_timer(&up->timer);
2825 up->timer.function = serial8250_timeout;
2826
2827 /*
2828 * ALPHA_KLUDGE_MCR needs to be killed.
2829 */
2830 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2831 up->mcr_force = ALPHA_KLUDGE_MCR;
2832
2833 up->port.ops = &serial8250_pops;
2834 }
2835
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002836 if (share_irqs)
2837 irqflag = IRQF_SHARED;
2838
Russell King44454bc2005-06-30 22:41:22 +01002839 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002840 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 i++, up++) {
2842 up->port.iobase = old_serial_port[i].port;
2843 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002844 up->port.irqflags = old_serial_port[i].irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 up->port.uartclk = old_serial_port[i].baud_base * 16;
2846 up->port.flags = old_serial_port[i].flags;
2847 up->port.hub6 = old_serial_port[i].hub6;
2848 up->port.membase = old_serial_port[i].iomem_base;
2849 up->port.iotype = old_serial_port[i].io_type;
2850 up->port.regshift = old_serial_port[i].iomem_reg_shift;
David Daney7d6a07d2009-01-02 13:49:47 +00002851 set_io_from_upio(&up->port);
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002852 up->port.irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002853 if (serial8250_isa_config != NULL)
2854 serial8250_isa_config(i, &up->port, &up->capabilities);
2855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 }
2857}
2858
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002859static void
2860serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2861{
2862 up->port.type = type;
2863 up->port.fifosize = uart_config[type].fifo_size;
2864 up->capabilities = uart_config[type].flags;
2865 up->tx_loadsz = uart_config[type].tx_loadsz;
2866}
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868static void __init
2869serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2870{
2871 int i;
2872
Alan Coxb8e7e402009-05-28 14:01:35 +01002873 for (i = 0; i < nr_uarts; i++) {
2874 struct uart_8250_port *up = &serial8250_ports[i];
2875 up->cur_iotype = 0xFF;
2876 }
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 serial8250_isa_init_ports();
2879
Dave Jonesa61c2d72006-01-07 23:18:19 +00002880 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 struct uart_8250_port *up = &serial8250_ports[i];
2882
2883 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002884
2885 if (up->port.flags & UPF_FIXED_TYPE)
2886 serial8250_init_fixed_type_port(up, up->port.type);
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 uart_add_one_port(drv, &up->port);
2889 }
2890}
2891
2892#ifdef CONFIG_SERIAL_8250_CONSOLE
2893
Russell Kingd3587882006-03-20 20:00:09 +00002894static void serial8250_console_putchar(struct uart_port *port, int ch)
2895{
Jamie Iles49d57412010-12-01 23:39:35 +00002896 struct uart_8250_port *up =
2897 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002898
2899 wait_for_xmitr(up, UART_LSR_THRE);
2900 serial_out(up, UART_TX, ch);
2901}
2902
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903/*
2904 * Print a string to the serial port trying not to disturb
2905 * any possible real use of the port...
2906 *
2907 * The console_lock must be held when we get here.
2908 */
2909static void
2910serial8250_console_write(struct console *co, const char *s, unsigned int count)
2911{
2912 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002913 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002915 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Andrew Morton78512ec2005-11-07 00:59:13 -08002917 touch_nmi_watchdog();
2918
Andrew Morton68aa2c02006-06-30 02:29:59 -07002919 local_irq_save(flags);
2920 if (up->port.sysrq) {
2921 /* serial8250_handle_port() already took the lock */
2922 locked = 0;
2923 } else if (oops_in_progress) {
2924 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002925 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002926 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002929 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 */
2931 ier = serial_in(up, UART_IER);
2932
2933 if (up->capabilities & UART_CAP_UUE)
2934 serial_out(up, UART_IER, UART_IER_UUE);
2935 else
2936 serial_out(up, UART_IER, 0);
2937
Russell Kingd3587882006-03-20 20:00:09 +00002938 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
2940 /*
2941 * Finally, wait for transmitter to become empty
2942 * and restore the IER
2943 */
Alan Coxf91a3712006-01-21 14:59:12 +00002944 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002945 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002946
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002947 /*
2948 * The receive handling will happen properly because the
2949 * receive ready bit will still be set; it is not cleared
2950 * on read. However, modem control will not, we must
2951 * call it if we have saved something in the saved flags
2952 * while processing with interrupts off.
2953 */
2954 if (up->msr_saved_flags)
2955 check_modem_status(up);
2956
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002957 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002958 spin_unlock(&up->port.lock);
2959 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960}
2961
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002962static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
2964 struct uart_port *port;
2965 int baud = 9600;
2966 int bits = 8;
2967 int parity = 'n';
2968 int flow = 'n';
2969
2970 /*
2971 * Check whether an invalid uart number has been specified, and
2972 * if so, search for the first available port that does have
2973 * console support.
2974 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002975 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 co->index = 0;
2977 port = &serial8250_ports[co->index].port;
2978 if (!port->iobase && !port->membase)
2979 return -ENODEV;
2980
2981 if (options)
2982 uart_parse_options(options, &baud, &parity, &bits, &flow);
2983
2984 return uart_set_options(port, co, baud, parity, bits, flow);
2985}
2986
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002987static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002988{
2989 return serial8250_find_port_for_earlycon();
2990}
2991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992static struct console serial8250_console = {
2993 .name = "ttyS",
2994 .write = serial8250_console_write,
2995 .device = uart_console_device,
2996 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002997 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002998 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 .index = -1,
3000 .data = &serial8250_reg,
3001};
3002
3003static int __init serial8250_console_init(void)
3004{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07003005 if (nr_uarts > UART_NR)
3006 nr_uarts = UART_NR;
3007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 serial8250_isa_init_ports();
3009 register_console(&serial8250_console);
3010 return 0;
3011}
3012console_initcall(serial8250_console_init);
3013
Yinghai Lu18a8bd92007-07-15 23:37:59 -07003014int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015{
3016 int line;
3017 struct uart_port *port;
3018
Dave Jonesa61c2d72006-01-07 23:18:19 +00003019 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00003021 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 return line;
3023 }
3024 return -ENODEV;
3025}
3026
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027#define SERIAL8250_CONSOLE &serial8250_console
3028#else
3029#define SERIAL8250_CONSOLE NULL
3030#endif
3031
3032static struct uart_driver serial8250_reg = {
3033 .owner = THIS_MODULE,
3034 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 .dev_name = "ttyS",
3036 .major = TTY_MAJOR,
3037 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 .cons = SERIAL8250_CONSOLE,
3039};
3040
Russell Kingd856c662006-02-23 10:22:13 +00003041/*
3042 * early_serial_setup - early registration for 8250 ports
3043 *
3044 * Setup an 8250 port structure prior to console initialisation. Use
3045 * after console initialisation will cause undefined behaviour.
3046 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047int __init early_serial_setup(struct uart_port *port)
3048{
David Daneyb4304282009-01-02 13:49:41 +00003049 struct uart_port *p;
3050
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 if (port->line >= ARRAY_SIZE(serial8250_ports))
3052 return -ENODEV;
3053
3054 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00003055 p = &serial8250_ports[port->line].port;
3056 p->iobase = port->iobase;
3057 p->membase = port->membase;
3058 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003059 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00003060 p->uartclk = port->uartclk;
3061 p->fifosize = port->fifosize;
3062 p->regshift = port->regshift;
3063 p->iotype = port->iotype;
3064 p->flags = port->flags;
3065 p->mapbase = port->mapbase;
3066 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01003067 p->type = port->type;
3068 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00003069
3070 set_io_from_upio(p);
3071 if (port->serial_in)
3072 p->serial_in = port->serial_in;
3073 if (port->serial_out)
3074 p->serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003075 if (port->handle_irq)
3076 p->handle_irq = port->handle_irq;
3077 else
3078 p->handle_irq = serial8250_default_handle_irq;
David Daney7d6a07d2009-01-02 13:49:47 +00003079
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return 0;
3081}
3082
3083/**
3084 * serial8250_suspend_port - suspend one serial port
3085 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 *
3087 * Suspend one serial port.
3088 */
3089void serial8250_suspend_port(int line)
3090{
3091 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
3092}
3093
3094/**
3095 * serial8250_resume_port - resume one serial port
3096 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 *
3098 * Resume one serial port.
3099 */
3100void serial8250_resume_port(int line)
3101{
David Woodhouseb5b82df2007-05-17 14:27:39 +08003102 struct uart_8250_port *up = &serial8250_ports[line];
3103
3104 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08003105 /* Ensure it's still in high speed mode */
3106 serial_outp(up, UART_LCR, 0xE0);
3107
Yin Kangkai0d0389e2011-02-09 11:35:18 +08003108 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08003109
3110 serial_outp(up, UART_LCR, 0);
Yin Kangkai95926d22011-02-09 11:34:20 +08003111 up->port.uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08003112 }
3113 uart_resume_port(&serial8250_reg, &up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114}
3115
3116/*
3117 * Register a set of serial devices attached to a platform device. The
3118 * list is terminated with a zero flags entry, which means we expect
3119 * all entries to have at least UPF_BOOT_AUTOCONF set.
3120 */
Russell King3ae5eae2005-11-09 22:32:44 +00003121static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122{
Russell King3ae5eae2005-11-09 22:32:44 +00003123 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 struct uart_port port;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003125 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
3127 memset(&port, 0, sizeof(struct uart_port));
3128
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003129 if (share_irqs)
3130 irqflag = IRQF_SHARED;
3131
Russell Kingec9f47c2005-06-27 11:12:54 +01003132 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08003133 port.iobase = p->iobase;
3134 port.membase = p->membase;
3135 port.irq = p->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003136 port.irqflags = p->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003137 port.uartclk = p->uartclk;
3138 port.regshift = p->regshift;
3139 port.iotype = p->iotype;
3140 port.flags = p->flags;
3141 port.mapbase = p->mapbase;
3142 port.hub6 = p->hub6;
3143 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00003144 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00003145 port.serial_in = p->serial_in;
3146 port.serial_out = p->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003147 port.handle_irq = p->handle_irq;
Philippe Langlais235dae52010-07-29 17:13:57 +02003148 port.set_termios = p->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003149 port.pm = p->pm;
Will Newton74a197412008-02-04 22:27:50 -08003150 port.dev = &dev->dev;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003151 port.irqflags |= irqflag;
Russell Kingec9f47c2005-06-27 11:12:54 +01003152 ret = serial8250_register_port(&port);
3153 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003154 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003155 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3156 p->iobase, (unsigned long long)p->mapbase,
3157 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 }
3160 return 0;
3161}
3162
3163/*
3164 * Remove serial ports registered against a platform device.
3165 */
Russell King3ae5eae2005-11-09 22:32:44 +00003166static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167{
3168 int i;
3169
Dave Jonesa61c2d72006-01-07 23:18:19 +00003170 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 struct uart_8250_port *up = &serial8250_ports[i];
3172
Russell King3ae5eae2005-11-09 22:32:44 +00003173 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 serial8250_unregister_port(i);
3175 }
3176 return 0;
3177}
3178
Russell King3ae5eae2005-11-09 22:32:44 +00003179static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180{
3181 int i;
3182
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 for (i = 0; i < UART_NR; i++) {
3184 struct uart_8250_port *up = &serial8250_ports[i];
3185
Russell King3ae5eae2005-11-09 22:32:44 +00003186 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 uart_suspend_port(&serial8250_reg, &up->port);
3188 }
3189
3190 return 0;
3191}
3192
Russell King3ae5eae2005-11-09 22:32:44 +00003193static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194{
3195 int i;
3196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 for (i = 0; i < UART_NR; i++) {
3198 struct uart_8250_port *up = &serial8250_ports[i];
3199
Russell King3ae5eae2005-11-09 22:32:44 +00003200 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003201 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 }
3203
3204 return 0;
3205}
3206
Russell King3ae5eae2005-11-09 22:32:44 +00003207static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 .probe = serial8250_probe,
3209 .remove = __devexit_p(serial8250_remove),
3210 .suspend = serial8250_suspend,
3211 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003212 .driver = {
3213 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003214 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003215 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216};
3217
3218/*
3219 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3220 * in the table in include/asm/serial.h
3221 */
3222static struct platform_device *serial8250_isa_devs;
3223
3224/*
3225 * serial8250_register_port and serial8250_unregister_port allows for
3226 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3227 * modems and PCI multiport cards.
3228 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003229static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
3231static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3232{
3233 int i;
3234
3235 /*
3236 * First, find a port entry which matches.
3237 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003238 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 if (uart_match_port(&serial8250_ports[i].port, port))
3240 return &serial8250_ports[i];
3241
3242 /*
3243 * We didn't find a matching entry, so look for the first
3244 * free entry. We look for one which hasn't been previously
3245 * used (indicated by zero iobase).
3246 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003247 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3249 serial8250_ports[i].port.iobase == 0)
3250 return &serial8250_ports[i];
3251
3252 /*
3253 * That also failed. Last resort is to find any entry which
3254 * doesn't have a real port associated with it.
3255 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003256 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3258 return &serial8250_ports[i];
3259
3260 return NULL;
3261}
3262
3263/**
3264 * serial8250_register_port - register a serial port
3265 * @port: serial port template
3266 *
3267 * Configure the serial port specified by the request. If the
3268 * port exists and is in use, it is hung up and unregistered
3269 * first.
3270 *
3271 * The port is then probed and if necessary the IRQ is autodetected
3272 * If this fails an error is returned.
3273 *
3274 * On success the port is ready to use and the line number is returned.
3275 */
3276int serial8250_register_port(struct uart_port *port)
3277{
3278 struct uart_8250_port *uart;
3279 int ret = -ENOSPC;
3280
3281 if (port->uartclk == 0)
3282 return -EINVAL;
3283
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003284 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
3286 uart = serial8250_find_match_or_unused(port);
3287 if (uart) {
3288 uart_remove_one_port(&serial8250_reg, &uart->port);
3289
Will Newton74a197412008-02-04 22:27:50 -08003290 uart->port.iobase = port->iobase;
3291 uart->port.membase = port->membase;
3292 uart->port.irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003293 uart->port.irqflags = port->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003294 uart->port.uartclk = port->uartclk;
3295 uart->port.fifosize = port->fifosize;
3296 uart->port.regshift = port->regshift;
3297 uart->port.iotype = port->iotype;
3298 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3299 uart->port.mapbase = port->mapbase;
3300 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 if (port->dev)
3302 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003303
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08003304 if (port->flags & UPF_FIXED_TYPE)
3305 serial8250_init_fixed_type_port(uart, port->type);
David Daney8e23fcc2009-01-02 13:49:54 +00003306
David Daney7d6a07d2009-01-02 13:49:47 +00003307 set_io_from_upio(&uart->port);
3308 /* Possibly override default I/O functions. */
3309 if (port->serial_in)
3310 uart->port.serial_in = port->serial_in;
3311 if (port->serial_out)
3312 uart->port.serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003313 if (port->handle_irq)
3314 uart->port.handle_irq = port->handle_irq;
Philippe Langlais235dae52010-07-29 17:13:57 +02003315 /* Possibly override set_termios call */
3316 if (port->set_termios)
3317 uart->port.set_termios = port->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003318 if (port->pm)
3319 uart->port.pm = port->pm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
Alan Coxaf7f3742010-10-18 11:38:02 -07003321 if (serial8250_isa_config != NULL)
3322 serial8250_isa_config(0, &uart->port,
3323 &uart->capabilities);
3324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3326 if (ret == 0)
3327 ret = uart->port.line;
3328 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003329 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
3331 return ret;
3332}
3333EXPORT_SYMBOL(serial8250_register_port);
3334
3335/**
3336 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3337 * @line: serial line number
3338 *
3339 * Remove one serial port. This may not be called from interrupt
3340 * context. We hand the port back to the our control.
3341 */
3342void serial8250_unregister_port(int line)
3343{
3344 struct uart_8250_port *uart = &serial8250_ports[line];
3345
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003346 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 uart_remove_one_port(&serial8250_reg, &uart->port);
3348 if (serial8250_isa_devs) {
3349 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3350 uart->port.type = PORT_UNKNOWN;
3351 uart->port.dev = &serial8250_isa_devs->dev;
leitao@linux.vnet.ibm.comcb01ece2011-05-26 11:18:39 -03003352 uart->capabilities = uart_config[uart->port.type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 uart_add_one_port(&serial8250_reg, &uart->port);
3354 } else {
3355 uart->port.dev = NULL;
3356 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003357 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358}
3359EXPORT_SYMBOL(serial8250_unregister_port);
3360
3361static int __init serial8250_init(void)
3362{
Alan Cox25db8ad2008-08-19 20:49:40 -07003363 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Dave Jonesa61c2d72006-01-07 23:18:19 +00003365 if (nr_uarts > UART_NR)
3366 nr_uarts = UART_NR;
3367
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003368 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003369 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 share_irqs ? "en" : "dis");
3371
David Millerb70ac772008-10-13 10:36:31 +01003372#ifdef CONFIG_SPARC
3373 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3374#else
3375 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003377#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 if (ret)
3379 goto out;
3380
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003381 serial8250_isa_devs = platform_device_alloc("serial8250",
3382 PLAT8250_DEV_LEGACY);
3383 if (!serial8250_isa_devs) {
3384 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003385 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 }
3387
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003388 ret = platform_device_add(serial8250_isa_devs);
3389 if (ret)
3390 goto put_dev;
3391
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3393
Russell Kingbc965a72006-01-18 09:54:29 +00003394 ret = platform_driver_register(&serial8250_isa_driver);
3395 if (ret == 0)
3396 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
Russell Kingbc965a72006-01-18 09:54:29 +00003398 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003399put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003400 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003401unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003402#ifdef CONFIG_SPARC
3403 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3404#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003406#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003407out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 return ret;
3409}
3410
3411static void __exit serial8250_exit(void)
3412{
3413 struct platform_device *isa_dev = serial8250_isa_devs;
3414
3415 /*
3416 * This tells serial8250_unregister_port() not to re-register
3417 * the ports (thereby making serial8250_isa_driver permanently
3418 * in use.)
3419 */
3420 serial8250_isa_devs = NULL;
3421
Russell King3ae5eae2005-11-09 22:32:44 +00003422 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 platform_device_unregister(isa_dev);
3424
David Millerb70ac772008-10-13 10:36:31 +01003425#ifdef CONFIG_SPARC
3426 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3427#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003429#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430}
3431
3432module_init(serial8250_init);
3433module_exit(serial8250_exit);
3434
3435EXPORT_SYMBOL(serial8250_suspend_port);
3436EXPORT_SYMBOL(serial8250_resume_port);
3437
3438MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003439MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441module_param(share_irqs, uint, 0644);
3442MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3443 " (unsafe)");
3444
Dave Jonesa61c2d72006-01-07 23:18:19 +00003445module_param(nr_uarts, uint, 0644);
3446MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3447
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003448module_param(skip_txen_test, uint, 0644);
3449MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451#ifdef CONFIG_SERIAL_8250_RSA
3452module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3453MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3454#endif
3455MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);