blob: 3ae497422db577e0d09c167dad39172146319df8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/8250.c
3 *
4 * Driver for 8250/16550-type serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * Copyright (C) 2001 Russell King.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * A note about mapbase / membase
16 *
17 * mapbase is the physical address of the IO port.
18 * membase is an 'ioremapped' cookie.
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
22#define SUPPORT_SYSRQ
23#endif
24
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/ioport.h>
28#include <linux/init.h>
29#include <linux/console.h>
30#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010032#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/tty.h>
34#include <linux/tty_flip.h>
35#include <linux/serial_reg.h>
36#include <linux/serial_core.h>
37#include <linux/serial.h>
38#include <linux/serial_8250.h>
Andrew Morton78512ec2005-11-07 00:59:13 -080039#include <linux/nmi.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000040#include <linux/mutex.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
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * Debugging.
69 */
70#if 0
71#define DEBUG_AUTOCONF(fmt...) printk(fmt)
72#else
73#define DEBUG_AUTOCONF(fmt...) do { } while (0)
74#endif
75
76#if 0
77#define DEBUG_INTR(fmt...) printk(fmt)
78#else
79#define DEBUG_INTR(fmt...) do { } while (0)
80#endif
81
82#define PASS_LIMIT 256
83
84/*
85 * We default to IRQ0 for the "no irq" hack. Some
86 * machine types want others as well - they're free
87 * to redefine this in their header file.
88 */
89#define is_real_interrupt(irq) ((irq) != 0)
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
92#define CONFIG_SERIAL_DETECT_IRQ 1
93#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#ifdef CONFIG_SERIAL_8250_MANY_PORTS
95#define CONFIG_SERIAL_MANY_PORTS 1
96#endif
97
98/*
99 * HUB6 is always on. This will be removed once the header
100 * files have been cleaned.
101 */
102#define CONFIG_HUB6 1
103
Bryan Wua4ed1e42008-05-31 16:10:04 +0800104#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * SERIAL_PORT_DFNS tells us about built-in ports that have no
107 * standard enumeration mechanism. Platforms that can find all
108 * serial ports via mechanisms like ACPI or PCI need not supply it.
109 */
110#ifndef SERIAL_PORT_DFNS
111#define SERIAL_PORT_DFNS
112#endif
113
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000114static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 SERIAL_PORT_DFNS /* defined in asm/serial.h */
116};
117
Russell King026d02a2005-06-29 18:45:19 +0100118#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120#ifdef CONFIG_SERIAL_8250_RSA
121
122#define PORT_RSA_MAX 4
123static unsigned long probe_rsa[PORT_RSA_MAX];
124static unsigned int probe_rsa_count;
125#endif /* CONFIG_SERIAL_8250_RSA */
126
127struct uart_8250_port {
128 struct uart_port port;
129 struct timer_list timer; /* "no irq" timer */
130 struct list_head list; /* ports on this IRQ */
Russell King4ba5e352005-06-23 10:43:04 +0100131 unsigned short capabilities; /* port capabilities */
132 unsigned short bugs; /* port bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 unsigned int tx_loadsz; /* transmit fifo load size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 unsigned char acr;
135 unsigned char ier;
136 unsigned char lcr;
137 unsigned char mcr;
138 unsigned char mcr_mask; /* mask of user bits */
139 unsigned char mcr_force; /* mask of forced bits */
Corey Minyardad4c2aa2007-08-22 14:01:18 -0700140
141 /*
142 * Some bits in registers are cleared on a read, so they must
143 * be saved whenever the register is read but the bits will not
144 * be immediately processed.
145 */
146#define LSR_SAVE_FLAGS UART_LSR_BRK_ERROR_BITS
147 unsigned char lsr_saved_flags;
148#define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
149 unsigned char msr_saved_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 /*
152 * We provide a per-port pm hook.
153 */
154 void (*pm)(struct uart_port *port,
155 unsigned int state, unsigned int old);
156};
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,
237 .flags = UART_CAP_FIFO,
238 },
239 [PORT_16654] = {
240 .name = "ST16654",
241 .fifo_size = 64,
242 .tx_loadsz = 32,
243 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
244 UART_FCR_T_TRIG_10,
245 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
246 },
247 [PORT_16850] = {
248 .name = "XR16850",
249 .fifo_size = 128,
250 .tx_loadsz = 128,
251 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
252 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
253 },
254 [PORT_RSA] = {
255 .name = "RSA",
256 .fifo_size = 2048,
257 .tx_loadsz = 2048,
258 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
259 .flags = UART_CAP_FIFO,
260 },
261 [PORT_NS16550A] = {
262 .name = "NS16550A",
263 .fifo_size = 16,
264 .tx_loadsz = 16,
265 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
266 .flags = UART_CAP_FIFO | UART_NATSEMI,
267 },
268 [PORT_XSCALE] = {
269 .name = "XScale",
270 .fifo_size = 32,
271 .tx_loadsz = 32,
272 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
273 .flags = UART_CAP_FIFO | UART_CAP_UUE,
274 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700275 [PORT_RM9000] = {
276 .name = "RM9000",
277 .fifo_size = 16,
278 .tx_loadsz = 16,
279 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
280 .flags = UART_CAP_FIFO,
281 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282};
283
Thomas Koellerbd71c182007-05-06 14:48:47 -0700284#if defined (CONFIG_SERIAL_8250_AU1X00)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000285
286/* Au1x00 UART hardware has a weird register layout */
287static const u8 au_io_in_map[] = {
288 [UART_RX] = 0,
289 [UART_IER] = 2,
290 [UART_IIR] = 3,
291 [UART_LCR] = 5,
292 [UART_MCR] = 6,
293 [UART_LSR] = 7,
294 [UART_MSR] = 8,
295};
296
297static const u8 au_io_out_map[] = {
298 [UART_TX] = 1,
299 [UART_IER] = 2,
300 [UART_FCR] = 4,
301 [UART_LCR] = 5,
302 [UART_MCR] = 6,
303};
304
305/* sane hardware needs no mapping */
David Daney7d6a07d2009-01-02 13:49:47 +0000306static inline int map_8250_in_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000307{
David Daney7d6a07d2009-01-02 13:49:47 +0000308 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000309 return offset;
310 return au_io_in_map[offset];
311}
312
David Daney7d6a07d2009-01-02 13:49:47 +0000313static inline int map_8250_out_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000314{
David Daney7d6a07d2009-01-02 13:49:47 +0000315 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000316 return offset;
317 return au_io_out_map[offset];
318}
319
Alan Cox6f803cd2008-02-08 04:18:52 -0800320#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700321
322static const u8
323 regmap_in[8] = {
324 [UART_RX] = 0x00,
325 [UART_IER] = 0x0c,
326 [UART_IIR] = 0x14,
327 [UART_LCR] = 0x1c,
328 [UART_MCR] = 0x20,
329 [UART_LSR] = 0x24,
330 [UART_MSR] = 0x28,
331 [UART_SCR] = 0x2c
332 },
333 regmap_out[8] = {
334 [UART_TX] = 0x04,
335 [UART_IER] = 0x0c,
336 [UART_FCR] = 0x18,
337 [UART_LCR] = 0x1c,
338 [UART_MCR] = 0x20,
339 [UART_LSR] = 0x24,
340 [UART_MSR] = 0x28,
341 [UART_SCR] = 0x2c
342 };
343
David Daney7d6a07d2009-01-02 13:49:47 +0000344static inline int map_8250_in_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700345{
David Daney7d6a07d2009-01-02 13:49:47 +0000346 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700347 return offset;
348 return regmap_in[offset];
349}
350
David Daney7d6a07d2009-01-02 13:49:47 +0000351static inline int map_8250_out_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700352{
David Daney7d6a07d2009-01-02 13:49:47 +0000353 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700354 return offset;
355 return regmap_out[offset];
356}
357
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000358#else
359
360/* sane hardware needs no mapping */
361#define map_8250_in_reg(up, offset) (offset)
362#define map_8250_out_reg(up, offset) (offset)
363
364#endif
365
David Daney7d6a07d2009-01-02 13:49:47 +0000366static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
David Daney7d6a07d2009-01-02 13:49:47 +0000368 offset = map_8250_in_reg(p, offset) << p->regshift;
369 outb(p->hub6 - 1 + offset, p->iobase);
370 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
David Daney7d6a07d2009-01-02 13:49:47 +0000373static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
David Daney7d6a07d2009-01-02 13:49:47 +0000375 offset = map_8250_out_reg(p, offset) << p->regshift;
376 outb(p->hub6 - 1 + offset, p->iobase);
377 outb(value, p->iobase + 1);
378}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
David Daney7d6a07d2009-01-02 13:49:47 +0000380static unsigned int mem_serial_in(struct uart_port *p, int offset)
381{
382 offset = map_8250_in_reg(p, offset) << p->regshift;
383 return readb(p->membase + offset);
384}
385
386static void mem_serial_out(struct uart_port *p, int offset, int value)
387{
388 offset = map_8250_out_reg(p, offset) << p->regshift;
389 writeb(value, p->membase + offset);
390}
391
392static void mem32_serial_out(struct uart_port *p, int offset, int value)
393{
394 offset = map_8250_out_reg(p, offset) << p->regshift;
395 writel(value, p->membase + offset);
396}
397
398static unsigned int mem32_serial_in(struct uart_port *p, int offset)
399{
400 offset = map_8250_in_reg(p, offset) << p->regshift;
401 return readl(p->membase + offset);
402}
403
404#ifdef CONFIG_SERIAL_8250_AU1X00
405static unsigned int au_serial_in(struct uart_port *p, int offset)
406{
407 offset = map_8250_in_reg(p, offset) << p->regshift;
408 return __raw_readl(p->membase + offset);
409}
410
411static void au_serial_out(struct uart_port *p, int offset, int value)
412{
413 offset = map_8250_out_reg(p, offset) << p->regshift;
414 __raw_writel(value, p->membase + offset);
415}
416#endif
417
418static unsigned int tsi_serial_in(struct uart_port *p, int offset)
419{
420 unsigned int tmp;
421 offset = map_8250_in_reg(p, offset) << p->regshift;
422 if (offset == UART_IIR) {
423 tmp = readl(p->membase + (UART_IIR & ~3));
424 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
425 } else
426 return readb(p->membase + offset);
427}
428
429static void tsi_serial_out(struct uart_port *p, int offset, int value)
430{
431 offset = map_8250_out_reg(p, offset) << p->regshift;
432 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
433 writeb(value, p->membase + offset);
434}
435
436static void dwapb_serial_out(struct uart_port *p, int offset, int value)
437{
438 int save_offset = offset;
439 offset = map_8250_out_reg(p, offset) << p->regshift;
440 /* Save the LCR value so it can be re-written when a
441 * Busy Detect interrupt occurs. */
442 if (save_offset == UART_LCR) {
443 struct uart_8250_port *up = (struct uart_8250_port *)p;
444 up->lcr = value;
445 }
446 writeb(value, p->membase + offset);
447 /* Read the IER to ensure any interrupt is cleared before
448 * returning from ISR. */
449 if (save_offset == UART_TX || save_offset == UART_IER)
450 value = p->serial_in(p, UART_IER);
451}
452
453static unsigned int io_serial_in(struct uart_port *p, int offset)
454{
455 offset = map_8250_in_reg(p, offset) << p->regshift;
456 return inb(p->iobase + offset);
457}
458
459static void io_serial_out(struct uart_port *p, int offset, int value)
460{
461 offset = map_8250_out_reg(p, offset) << p->regshift;
462 outb(value, p->iobase + offset);
463}
464
465static void set_io_from_upio(struct uart_port *p)
466{
467 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000469 p->serial_in = hub6_serial_in;
470 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 break;
472
473 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000474 p->serial_in = mem_serial_in;
475 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 break;
477
Thomas Koellerbd71c182007-05-06 14:48:47 -0700478 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000480 p->serial_in = mem32_serial_in;
481 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
483
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000484#ifdef CONFIG_SERIAL_8250_AU1X00
485 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000486 p->serial_in = au_serial_in;
487 p->serial_out = au_serial_out;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000488 break;
489#endif
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700490 case UPIO_TSI:
David Daney7d6a07d2009-01-02 13:49:47 +0000491 p->serial_in = tsi_serial_in;
492 p->serial_out = tsi_serial_out;
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700493 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000494
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700495 case UPIO_DWAPB:
David Daney7d6a07d2009-01-02 13:49:47 +0000496 p->serial_in = mem_serial_in;
497 p->serial_out = dwapb_serial_out;
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700498 break;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000501 p->serial_in = io_serial_in;
502 p->serial_out = io_serial_out;
503 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505}
506
Alex Williamson40b36da2007-02-14 00:33:04 -0800507static void
508serial_out_sync(struct uart_8250_port *up, int offset, int value)
509{
David Daney7d6a07d2009-01-02 13:49:47 +0000510 struct uart_port *p = &up->port;
511 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800512 case UPIO_MEM:
513 case UPIO_MEM32:
514#ifdef CONFIG_SERIAL_8250_AU1X00
515 case UPIO_AU:
516#endif
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700517 case UPIO_DWAPB:
David Daney7d6a07d2009-01-02 13:49:47 +0000518 p->serial_out(p, offset, value);
519 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800520 break;
521 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000522 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800523 }
524}
525
David Daney7d6a07d2009-01-02 13:49:47 +0000526#define serial_in(up, offset) \
527 (up->port.serial_in(&(up)->port, (offset)))
528#define serial_out(up, offset, value) \
529 (up->port.serial_out(&(up)->port, (offset), (value)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/*
531 * We used to support using pause I/O for certain machines. We
532 * haven't supported this for a while, but just in case it's badly
533 * needed for certain old 386 machines, I've left these #define's
534 * in....
535 */
536#define serial_inp(up, offset) serial_in(up, offset)
537#define serial_outp(up, offset, value) serial_out(up, offset, value)
538
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100539/* Uart divisor latch read */
540static inline int _serial_dl_read(struct uart_8250_port *up)
541{
542 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
543}
544
545/* Uart divisor latch write */
546static inline void _serial_dl_write(struct uart_8250_port *up, int value)
547{
548 serial_outp(up, UART_DLL, value & 0xff);
549 serial_outp(up, UART_DLM, value >> 8 & 0xff);
550}
551
Alan Cox6f803cd2008-02-08 04:18:52 -0800552#if defined(CONFIG_SERIAL_8250_AU1X00)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100553/* Au1x00 haven't got a standard divisor latch */
554static int serial_dl_read(struct uart_8250_port *up)
555{
556 if (up->port.iotype == UPIO_AU)
557 return __raw_readl(up->port.membase + 0x28);
558 else
559 return _serial_dl_read(up);
560}
561
562static void serial_dl_write(struct uart_8250_port *up, int value)
563{
564 if (up->port.iotype == UPIO_AU)
565 __raw_writel(value, up->port.membase + 0x28);
566 else
567 _serial_dl_write(up, value);
568}
Alan Cox6f803cd2008-02-08 04:18:52 -0800569#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700570static int serial_dl_read(struct uart_8250_port *up)
571{
572 return (up->port.iotype == UPIO_RM9000) ?
573 (((__raw_readl(up->port.membase + 0x10) << 8) |
574 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
575 _serial_dl_read(up);
576}
577
578static void serial_dl_write(struct uart_8250_port *up, int value)
579{
580 if (up->port.iotype == UPIO_RM9000) {
581 __raw_writel(value, up->port.membase + 0x08);
582 __raw_writel(value >> 8, up->port.membase + 0x10);
583 } else {
584 _serial_dl_write(up, value);
585 }
586}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100587#else
588#define serial_dl_read(up) _serial_dl_read(up)
589#define serial_dl_write(up, value) _serial_dl_write(up, value)
590#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592/*
593 * For the 16C950
594 */
595static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
596{
597 serial_out(up, UART_SCR, offset);
598 serial_out(up, UART_ICR, value);
599}
600
601static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
602{
603 unsigned int value;
604
605 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
606 serial_out(up, UART_SCR, offset);
607 value = serial_in(up, UART_ICR);
608 serial_icr_write(up, UART_ACR, up->acr);
609
610 return value;
611}
612
613/*
614 * FIFO support.
615 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100616static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 if (p->capabilities & UART_CAP_FIFO) {
619 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
620 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
621 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
622 serial_outp(p, UART_FCR, 0);
623 }
624}
625
626/*
627 * IER sleep support. UARTs which have EFRs need the "extended
628 * capability" bit enabled. Note that on XR16C850s, we need to
629 * reset LCR to write to IER.
630 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100631static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 if (p->capabilities & UART_CAP_SLEEP) {
634 if (p->capabilities & UART_CAP_EFR) {
635 serial_outp(p, UART_LCR, 0xBF);
636 serial_outp(p, UART_EFR, UART_EFR_ECB);
637 serial_outp(p, UART_LCR, 0);
638 }
639 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
640 if (p->capabilities & UART_CAP_EFR) {
641 serial_outp(p, UART_LCR, 0xBF);
642 serial_outp(p, UART_EFR, 0);
643 serial_outp(p, UART_LCR, 0);
644 }
645 }
646}
647
648#ifdef CONFIG_SERIAL_8250_RSA
649/*
650 * Attempts to turn on the RSA FIFO. Returns zero on failure.
651 * We set the port uart clock rate if we succeed.
652 */
653static int __enable_rsa(struct uart_8250_port *up)
654{
655 unsigned char mode;
656 int result;
657
658 mode = serial_inp(up, UART_RSA_MSR);
659 result = mode & UART_RSA_MSR_FIFO;
660
661 if (!result) {
662 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
663 mode = serial_inp(up, UART_RSA_MSR);
664 result = mode & UART_RSA_MSR_FIFO;
665 }
666
667 if (result)
668 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
669
670 return result;
671}
672
673static void enable_rsa(struct uart_8250_port *up)
674{
675 if (up->port.type == PORT_RSA) {
676 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
677 spin_lock_irq(&up->port.lock);
678 __enable_rsa(up);
679 spin_unlock_irq(&up->port.lock);
680 }
681 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
682 serial_outp(up, UART_RSA_FRR, 0);
683 }
684}
685
686/*
687 * Attempts to turn off the RSA FIFO. Returns zero on failure.
688 * It is unknown why interrupts were disabled in here. However,
689 * the caller is expected to preserve this behaviour by grabbing
690 * the spinlock before calling this function.
691 */
692static void disable_rsa(struct uart_8250_port *up)
693{
694 unsigned char mode;
695 int result;
696
697 if (up->port.type == PORT_RSA &&
698 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
699 spin_lock_irq(&up->port.lock);
700
701 mode = serial_inp(up, UART_RSA_MSR);
702 result = !(mode & UART_RSA_MSR_FIFO);
703
704 if (!result) {
705 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
706 mode = serial_inp(up, UART_RSA_MSR);
707 result = !(mode & UART_RSA_MSR_FIFO);
708 }
709
710 if (result)
711 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
712 spin_unlock_irq(&up->port.lock);
713 }
714}
715#endif /* CONFIG_SERIAL_8250_RSA */
716
717/*
718 * This is a quickie test to see how big the FIFO is.
719 * It doesn't work at all the time, more's the pity.
720 */
721static int size_fifo(struct uart_8250_port *up)
722{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100723 unsigned char old_fcr, old_mcr, old_lcr;
724 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 int count;
726
727 old_lcr = serial_inp(up, UART_LCR);
728 serial_outp(up, UART_LCR, 0);
729 old_fcr = serial_inp(up, UART_FCR);
730 old_mcr = serial_inp(up, UART_MCR);
731 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
732 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
733 serial_outp(up, UART_MCR, UART_MCR_LOOP);
734 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100735 old_dl = serial_dl_read(up);
736 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 serial_outp(up, UART_LCR, 0x03);
738 for (count = 0; count < 256; count++)
739 serial_outp(up, UART_TX, count);
740 mdelay(20);/* FIXME - schedule_timeout */
741 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
742 (count < 256); count++)
743 serial_inp(up, UART_RX);
744 serial_outp(up, UART_FCR, old_fcr);
745 serial_outp(up, UART_MCR, old_mcr);
746 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100747 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 serial_outp(up, UART_LCR, old_lcr);
749
750 return count;
751}
752
753/*
754 * Read UART ID using the divisor method - set DLL and DLM to zero
755 * and the revision will be in DLL and device type in DLM. We
756 * preserve the device state across this.
757 */
758static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
759{
760 unsigned char old_dll, old_dlm, old_lcr;
761 unsigned int id;
762
763 old_lcr = serial_inp(p, UART_LCR);
764 serial_outp(p, UART_LCR, UART_LCR_DLAB);
765
766 old_dll = serial_inp(p, UART_DLL);
767 old_dlm = serial_inp(p, UART_DLM);
768
769 serial_outp(p, UART_DLL, 0);
770 serial_outp(p, UART_DLM, 0);
771
772 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
773
774 serial_outp(p, UART_DLL, old_dll);
775 serial_outp(p, UART_DLM, old_dlm);
776 serial_outp(p, UART_LCR, old_lcr);
777
778 return id;
779}
780
781/*
782 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
783 * When this function is called we know it is at least a StarTech
784 * 16650 V2, but it might be one of several StarTech UARTs, or one of
785 * its clones. (We treat the broken original StarTech 16650 V1 as a
786 * 16550, and why not? Startech doesn't seem to even acknowledge its
787 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700788 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * What evil have men's minds wrought...
790 */
791static void autoconfig_has_efr(struct uart_8250_port *up)
792{
793 unsigned int id1, id2, id3, rev;
794
795 /*
796 * Everything with an EFR has SLEEP
797 */
798 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
799
800 /*
801 * First we check to see if it's an Oxford Semiconductor UART.
802 *
803 * If we have to do this here because some non-National
804 * Semiconductor clone chips lock up if you try writing to the
805 * LSR register (which serial_icr_read does)
806 */
807
808 /*
809 * Check for Oxford Semiconductor 16C950.
810 *
811 * EFR [4] must be set else this test fails.
812 *
813 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
814 * claims that it's needed for 952 dual UART's (which are not
815 * recommended for new designs).
816 */
817 up->acr = 0;
818 serial_out(up, UART_LCR, 0xBF);
819 serial_out(up, UART_EFR, UART_EFR_ECB);
820 serial_out(up, UART_LCR, 0x00);
821 id1 = serial_icr_read(up, UART_ID1);
822 id2 = serial_icr_read(up, UART_ID2);
823 id3 = serial_icr_read(up, UART_ID3);
824 rev = serial_icr_read(up, UART_REV);
825
826 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
827
828 if (id1 == 0x16 && id2 == 0xC9 &&
829 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
830 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100831
832 /*
833 * Enable work around for the Oxford Semiconductor 952 rev B
834 * chip which causes it to seriously miscalculate baud rates
835 * when DLL is 0.
836 */
837 if (id3 == 0x52 && rev == 0x01)
838 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return;
840 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 /*
843 * We check for a XR16C850 by setting DLL and DLM to 0, and then
844 * reading back DLL and DLM. The chip type depends on the DLM
845 * value read back:
846 * 0x10 - XR16C850 and the DLL contains the chip revision.
847 * 0x12 - XR16C2850.
848 * 0x14 - XR16C854.
849 */
850 id1 = autoconfig_read_divisor_id(up);
851 DEBUG_AUTOCONF("850id=%04x ", id1);
852
853 id2 = id1 >> 8;
854 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 up->port.type = PORT_16850;
856 return;
857 }
858
859 /*
860 * It wasn't an XR16C850.
861 *
862 * We distinguish between the '654 and the '650 by counting
863 * how many bytes are in the FIFO. I'm using this for now,
864 * since that's the technique that was sent to me in the
865 * serial driver update, but I'm not convinced this works.
866 * I've had problems doing this in the past. -TYT
867 */
868 if (size_fifo(up) == 64)
869 up->port.type = PORT_16654;
870 else
871 up->port.type = PORT_16650V2;
872}
873
874/*
875 * We detected a chip without a FIFO. Only two fall into
876 * this category - the original 8250 and the 16450. The
877 * 16450 has a scratch register (accessible with LCR=0)
878 */
879static void autoconfig_8250(struct uart_8250_port *up)
880{
881 unsigned char scratch, status1, status2;
882
883 up->port.type = PORT_8250;
884
885 scratch = serial_in(up, UART_SCR);
886 serial_outp(up, UART_SCR, 0xa5);
887 status1 = serial_in(up, UART_SCR);
888 serial_outp(up, UART_SCR, 0x5a);
889 status2 = serial_in(up, UART_SCR);
890 serial_outp(up, UART_SCR, scratch);
891
892 if (status1 == 0xa5 && status2 == 0x5a)
893 up->port.type = PORT_16450;
894}
895
896static int broken_efr(struct uart_8250_port *up)
897{
898 /*
899 * Exar ST16C2550 "A2" devices incorrectly detect as
900 * having an EFR, and report an ID of 0x0201. See
901 * http://www.exar.com/info.php?pdf=dan180_oct2004.pdf
902 */
903 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
904 return 1;
905
906 return 0;
907}
908
909/*
910 * We know that the chip has FIFOs. Does it have an EFR? The
911 * EFR is located in the same register position as the IIR and
912 * we know the top two bits of the IIR are currently set. The
913 * EFR should contain zero. Try to read the EFR.
914 */
915static void autoconfig_16550a(struct uart_8250_port *up)
916{
917 unsigned char status1, status2;
918 unsigned int iersave;
919
920 up->port.type = PORT_16550A;
921 up->capabilities |= UART_CAP_FIFO;
922
923 /*
924 * Check for presence of the EFR when DLAB is set.
925 * Only ST16C650V1 UARTs pass this test.
926 */
927 serial_outp(up, UART_LCR, UART_LCR_DLAB);
928 if (serial_in(up, UART_EFR) == 0) {
929 serial_outp(up, UART_EFR, 0xA8);
930 if (serial_in(up, UART_EFR) != 0) {
931 DEBUG_AUTOCONF("EFRv1 ");
932 up->port.type = PORT_16650;
933 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
934 } else {
935 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
936 }
937 serial_outp(up, UART_EFR, 0);
938 return;
939 }
940
941 /*
942 * Maybe it requires 0xbf to be written to the LCR.
943 * (other ST16C650V2 UARTs, TI16C752A, etc)
944 */
945 serial_outp(up, UART_LCR, 0xBF);
946 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
947 DEBUG_AUTOCONF("EFRv2 ");
948 autoconfig_has_efr(up);
949 return;
950 }
951
952 /*
953 * Check for a National Semiconductor SuperIO chip.
954 * Attempt to switch to bank 2, read the value of the LOOP bit
955 * from EXCR1. Switch back to bank 0, change it in MCR. Then
956 * switch back to bank 2, read it from EXCR1 again and check
957 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 */
959 serial_outp(up, UART_LCR, 0);
960 status1 = serial_in(up, UART_MCR);
961 serial_outp(up, UART_LCR, 0xE0);
962 status2 = serial_in(up, 0x02); /* EXCR1 */
963
964 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
965 serial_outp(up, UART_LCR, 0);
966 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
967 serial_outp(up, UART_LCR, 0xE0);
968 status2 = serial_in(up, 0x02); /* EXCR1 */
969 serial_outp(up, UART_LCR, 0);
970 serial_outp(up, UART_MCR, status1);
971
972 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100973 unsigned short quot;
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100976
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100977 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +0100978 quot <<= 3;
979
David Woodhouseb5b82df2007-05-17 14:27:39 +0800980 status1 = serial_in(up, 0x04); /* EXCR2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 status1 &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
982 status1 |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
983 serial_outp(up, 0x04, status1);
Thomas Koellerbd71c182007-05-06 14:48:47 -0700984
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100985 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
David Woodhouse857dde22005-05-21 15:52:23 +0100987 serial_outp(up, UART_LCR, 0);
988
989 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 up->port.type = PORT_NS16550A;
991 up->capabilities |= UART_NATSEMI;
992 return;
993 }
994 }
995
996 /*
997 * No EFR. Try to detect a TI16750, which only sets bit 5 of
998 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
999 * Try setting it with and without DLAB set. Cheap clones
1000 * set bit 5 without DLAB set.
1001 */
1002 serial_outp(up, UART_LCR, 0);
1003 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1004 status1 = serial_in(up, UART_IIR) >> 5;
1005 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1006 serial_outp(up, UART_LCR, UART_LCR_DLAB);
1007 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1008 status2 = serial_in(up, UART_IIR) >> 5;
1009 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1010 serial_outp(up, UART_LCR, 0);
1011
1012 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1013
1014 if (status1 == 6 && status2 == 7) {
1015 up->port.type = PORT_16750;
1016 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1017 return;
1018 }
1019
1020 /*
1021 * Try writing and reading the UART_IER_UUE bit (b6).
1022 * If it works, this is probably one of the Xscale platform's
1023 * internal UARTs.
1024 * We're going to explicitly set the UUE bit to 0 before
1025 * trying to write and read a 1 just to make sure it's not
1026 * already a 1 and maybe locked there before we even start start.
1027 */
1028 iersave = serial_in(up, UART_IER);
1029 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
1030 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1031 /*
1032 * OK it's in a known zero state, try writing and reading
1033 * without disturbing the current state of the other bits.
1034 */
1035 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
1036 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1037 /*
1038 * It's an Xscale.
1039 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1040 */
1041 DEBUG_AUTOCONF("Xscale ");
1042 up->port.type = PORT_XSCALE;
1043 up->capabilities |= UART_CAP_UUE;
1044 return;
1045 }
1046 } else {
1047 /*
1048 * If we got here we couldn't force the IER_UUE bit to 0.
1049 * Log it and continue.
1050 */
1051 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1052 }
1053 serial_outp(up, UART_IER, iersave);
1054}
1055
1056/*
1057 * This routine is called by rs_init() to initialize a specific serial
1058 * port. It determines what type of UART chip this serial port is
1059 * using: 8250, 16450, 16550, 16550A. The important question is
1060 * whether or not this UART is a 16550A or not, since this will
1061 * determine whether or not we can use its FIFO features or not.
1062 */
1063static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1064{
1065 unsigned char status1, scratch, scratch2, scratch3;
1066 unsigned char save_lcr, save_mcr;
1067 unsigned long flags;
1068
1069 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
1070 return;
1071
1072 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04x, 0x%p): ",
David S. Miller84408382008-10-13 10:45:26 +01001073 serial_index(&up->port), up->port.iobase, up->port.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 /*
1076 * We really do need global IRQs disabled here - we're going to
1077 * be frobbing the chips IRQ enable register to see if it exists.
1078 */
1079 spin_lock_irqsave(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001082 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 if (!(up->port.flags & UPF_BUGGY_UART)) {
1085 /*
1086 * Do a simple existence test first; if we fail this,
1087 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001088 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 * 0x80 is used as a nonsense port to prevent against
1090 * false positives due to ISA bus float. The
1091 * assumption is that 0x80 is a non-existent port;
1092 * which should be safe since include/asm/io.h also
1093 * makes this assumption.
1094 *
1095 * Note: this is safe as long as MCR bit 4 is clear
1096 * and the device is in "PC" mode.
1097 */
1098 scratch = serial_inp(up, UART_IER);
1099 serial_outp(up, UART_IER, 0);
1100#ifdef __i386__
1101 outb(0xff, 0x080);
1102#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001103 /*
1104 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1105 * 16C754B) allow only to modify them if an EFR bit is set.
1106 */
1107 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 serial_outp(up, UART_IER, 0x0F);
1109#ifdef __i386__
1110 outb(0, 0x080);
1111#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001112 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 serial_outp(up, UART_IER, scratch);
1114 if (scratch2 != 0 || scratch3 != 0x0F) {
1115 /*
1116 * We failed; there's nothing here
1117 */
1118 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1119 scratch2, scratch3);
1120 goto out;
1121 }
1122 }
1123
1124 save_mcr = serial_in(up, UART_MCR);
1125 save_lcr = serial_in(up, UART_LCR);
1126
Thomas Koellerbd71c182007-05-06 14:48:47 -07001127 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 * Check to see if a UART is really there. Certain broken
1129 * internal modems based on the Rockwell chipset fail this
1130 * test, because they apparently don't implement the loopback
1131 * test mode. So this test is skipped on the COM 1 through
1132 * COM 4 ports. This *should* be safe, since no board
1133 * manufacturer would be stupid enough to design a board
1134 * that conflicts with COM 1-4 --- we hope!
1135 */
1136 if (!(up->port.flags & UPF_SKIP_TEST)) {
1137 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1138 status1 = serial_inp(up, UART_MSR) & 0xF0;
1139 serial_outp(up, UART_MCR, save_mcr);
1140 if (status1 != 0x90) {
1141 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1142 status1);
1143 goto out;
1144 }
1145 }
1146
1147 /*
1148 * We're pretty sure there's a port here. Lets find out what
1149 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001150 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 * determines what we test for next.
1152 *
1153 * We also initialise the EFR (if any) to zero for later. The
1154 * EFR occupies the same register location as the FCR and IIR.
1155 */
1156 serial_outp(up, UART_LCR, 0xBF);
1157 serial_outp(up, UART_EFR, 0);
1158 serial_outp(up, UART_LCR, 0);
1159
1160 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1161 scratch = serial_in(up, UART_IIR) >> 6;
1162
1163 DEBUG_AUTOCONF("iir=%d ", scratch);
1164
1165 switch (scratch) {
1166 case 0:
1167 autoconfig_8250(up);
1168 break;
1169 case 1:
1170 up->port.type = PORT_UNKNOWN;
1171 break;
1172 case 2:
1173 up->port.type = PORT_16550;
1174 break;
1175 case 3:
1176 autoconfig_16550a(up);
1177 break;
1178 }
1179
1180#ifdef CONFIG_SERIAL_8250_RSA
1181 /*
1182 * Only probe for RSA ports if we got the region.
1183 */
1184 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1185 int i;
1186
1187 for (i = 0 ; i < probe_rsa_count; ++i) {
1188 if (probe_rsa[i] == up->port.iobase &&
1189 __enable_rsa(up)) {
1190 up->port.type = PORT_RSA;
1191 break;
1192 }
1193 }
1194 }
1195#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001196
1197#ifdef CONFIG_SERIAL_8250_AU1X00
1198 /* if access method is AU, it is a 16550 with a quirk */
1199 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
1200 up->bugs |= UART_BUG_NOMSR;
1201#endif
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 serial_outp(up, UART_LCR, save_lcr);
1204
1205 if (up->capabilities != uart_config[up->port.type].flags) {
1206 printk(KERN_WARNING
1207 "ttyS%d: detected caps %08x should be %08x\n",
David S. Miller84408382008-10-13 10:45:26 +01001208 serial_index(&up->port), up->capabilities,
1209 uart_config[up->port.type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211
1212 up->port.fifosize = uart_config[up->port.type].fifo_size;
1213 up->capabilities = uart_config[up->port.type].flags;
1214 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1215
1216 if (up->port.type == PORT_UNKNOWN)
1217 goto out;
1218
1219 /*
1220 * Reset the UART.
1221 */
1222#ifdef CONFIG_SERIAL_8250_RSA
1223 if (up->port.type == PORT_RSA)
1224 serial_outp(up, UART_RSA_FRR, 0);
1225#endif
1226 serial_outp(up, UART_MCR, save_mcr);
1227 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001228 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001229 if (up->capabilities & UART_CAP_UUE)
1230 serial_outp(up, UART_IER, UART_IER_UUE);
1231 else
1232 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Thomas Koellerbd71c182007-05-06 14:48:47 -07001234 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1237}
1238
1239static void autoconfig_irq(struct uart_8250_port *up)
1240{
1241 unsigned char save_mcr, save_ier;
1242 unsigned char save_ICP = 0;
1243 unsigned int ICP = 0;
1244 unsigned long irqs;
1245 int irq;
1246
1247 if (up->port.flags & UPF_FOURPORT) {
1248 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1249 save_ICP = inb_p(ICP);
1250 outb_p(0x80, ICP);
1251 (void) inb_p(ICP);
1252 }
1253
1254 /* forget possible initially masked and pending IRQ */
1255 probe_irq_off(probe_irq_on());
1256 save_mcr = serial_inp(up, UART_MCR);
1257 save_ier = serial_inp(up, UART_IER);
1258 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 irqs = probe_irq_on();
1261 serial_outp(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001262 udelay(10);
1263 if (up->port.flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 serial_outp(up, UART_MCR,
1265 UART_MCR_DTR | UART_MCR_RTS);
1266 } else {
1267 serial_outp(up, UART_MCR,
1268 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1269 }
1270 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1271 (void)serial_inp(up, UART_LSR);
1272 (void)serial_inp(up, UART_RX);
1273 (void)serial_inp(up, UART_IIR);
1274 (void)serial_inp(up, UART_MSR);
1275 serial_outp(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001276 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 irq = probe_irq_off(irqs);
1278
1279 serial_outp(up, UART_MCR, save_mcr);
1280 serial_outp(up, UART_IER, save_ier);
1281
1282 if (up->port.flags & UPF_FOURPORT)
1283 outb_p(save_ICP, ICP);
1284
1285 up->port.irq = (irq > 0) ? irq : 0;
1286}
1287
Russell Kinge763b902005-06-29 18:41:51 +01001288static inline void __stop_tx(struct uart_8250_port *p)
1289{
1290 if (p->ier & UART_IER_THRI) {
1291 p->ier &= ~UART_IER_THRI;
1292 serial_out(p, UART_IER, p->ier);
1293 }
1294}
1295
Russell Kingb129a8c2005-08-31 10:12:14 +01001296static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
1298 struct uart_8250_port *up = (struct uart_8250_port *)port;
1299
Russell Kinge763b902005-06-29 18:41:51 +01001300 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 /*
Russell Kinge763b902005-06-29 18:41:51 +01001303 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 */
Russell Kinge763b902005-06-29 18:41:51 +01001305 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 up->acr |= UART_ACR_TXDIS;
1307 serial_icr_write(up, UART_ACR, up->acr);
1308 }
1309}
1310
Russell King55d3b282005-06-23 15:05:41 +01001311static void transmit_chars(struct uart_8250_port *up);
1312
Russell Kingb129a8c2005-08-31 10:12:14 +01001313static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
1315 struct uart_8250_port *up = (struct uart_8250_port *)port;
1316
1317 if (!(up->ier & UART_IER_THRI)) {
1318 up->ier |= UART_IER_THRI;
1319 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001320
Russell King67f76542005-06-23 22:26:43 +01001321 if (up->bugs & UART_BUG_TXEN) {
Russell King55d3b282005-06-23 15:05:41 +01001322 unsigned char lsr, iir;
1323 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001324 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Thomas Koellerbd71c182007-05-06 14:48:47 -07001325 iir = serial_in(up, UART_IIR) & 0x0f;
1326 if ((up->port.type == PORT_RM9000) ?
1327 (lsr & UART_LSR_THRE &&
1328 (iir == UART_IIR_NO_INT || iir == UART_IIR_THRI)) :
1329 (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT))
Russell King55d3b282005-06-23 15:05:41 +01001330 transmit_chars(up);
1331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
Russell Kinge763b902005-06-29 18:41:51 +01001333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 /*
Russell Kinge763b902005-06-29 18:41:51 +01001335 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 */
Russell Kinge763b902005-06-29 18:41:51 +01001337 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 up->acr &= ~UART_ACR_TXDIS;
1339 serial_icr_write(up, UART_ACR, up->acr);
1340 }
1341}
1342
1343static void serial8250_stop_rx(struct uart_port *port)
1344{
1345 struct uart_8250_port *up = (struct uart_8250_port *)port;
1346
1347 up->ier &= ~UART_IER_RLSI;
1348 up->port.read_status_mask &= ~UART_LSR_DR;
1349 serial_out(up, UART_IER, up->ier);
1350}
1351
1352static void serial8250_enable_ms(struct uart_port *port)
1353{
1354 struct uart_8250_port *up = (struct uart_8250_port *)port;
1355
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001356 /* no MSR capabilities */
1357 if (up->bugs & UART_BUG_NOMSR)
1358 return;
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 up->ier |= UART_IER_MSI;
1361 serial_out(up, UART_IER, up->ier);
1362}
1363
Russell Kingea8874d2006-01-04 19:43:24 +00001364static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001365receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Alan Coxdf4f4dd2008-07-16 21:53:50 +01001367 struct tty_struct *tty = up->port.info->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 unsigned char ch, lsr = *status;
1369 int max_count = 256;
1370 char flag;
1371
1372 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001373 if (likely(lsr & UART_LSR_DR))
1374 ch = serial_inp(up, UART_RX);
1375 else
1376 /*
1377 * Intel 82571 has a Serial Over Lan device that will
1378 * set UART_LSR_BI without setting UART_LSR_DR when
1379 * it receives a break. To avoid reading from the
1380 * receive buffer without UART_LSR_DR bit set, we
1381 * just force the read character to be 0
1382 */
1383 ch = 0;
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 flag = TTY_NORMAL;
1386 up->port.icount.rx++;
1387
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001388 lsr |= up->lsr_saved_flags;
1389 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001391 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /*
1393 * For statistics only
1394 */
1395 if (lsr & UART_LSR_BI) {
1396 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1397 up->port.icount.brk++;
1398 /*
1399 * We do the SysRQ and SAK checking
1400 * here because otherwise the break
1401 * may get masked by ignore_status_mask
1402 * or read_status_mask.
1403 */
1404 if (uart_handle_break(&up->port))
1405 goto ignore_char;
1406 } else if (lsr & UART_LSR_PE)
1407 up->port.icount.parity++;
1408 else if (lsr & UART_LSR_FE)
1409 up->port.icount.frame++;
1410 if (lsr & UART_LSR_OE)
1411 up->port.icount.overrun++;
1412
1413 /*
Russell King23907eb2005-04-16 15:26:39 -07001414 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 */
1416 lsr &= up->port.read_status_mask;
1417
1418 if (lsr & UART_LSR_BI) {
1419 DEBUG_INTR("handling break....");
1420 flag = TTY_BREAK;
1421 } else if (lsr & UART_LSR_PE)
1422 flag = TTY_PARITY;
1423 else if (lsr & UART_LSR_FE)
1424 flag = TTY_FRAME;
1425 }
David Howells7d12e782006-10-05 14:55:46 +01001426 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001428
1429 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1430
Alan Cox6f803cd2008-02-08 04:18:52 -08001431ignore_char:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 lsr = serial_inp(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001433 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 spin_unlock(&up->port.lock);
1435 tty_flip_buffer_push(tty);
1436 spin_lock(&up->port.lock);
1437 *status = lsr;
1438}
1439
Russell Kingea8874d2006-01-04 19:43:24 +00001440static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
1442 struct circ_buf *xmit = &up->port.info->xmit;
1443 int count;
1444
1445 if (up->port.x_char) {
1446 serial_outp(up, UART_TX, up->port.x_char);
1447 up->port.icount.tx++;
1448 up->port.x_char = 0;
1449 return;
1450 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001451 if (uart_tx_stopped(&up->port)) {
1452 serial8250_stop_tx(&up->port);
1453 return;
1454 }
1455 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001456 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return;
1458 }
1459
1460 count = up->tx_loadsz;
1461 do {
1462 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1463 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1464 up->port.icount.tx++;
1465 if (uart_circ_empty(xmit))
1466 break;
1467 } while (--count > 0);
1468
1469 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1470 uart_write_wakeup(&up->port);
1471
1472 DEBUG_INTR("THRE...");
1473
1474 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001475 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
Russell King2af7cd62006-01-04 16:55:09 +00001478static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Russell King2af7cd62006-01-04 16:55:09 +00001480 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001482 status |= up->msr_saved_flags;
1483 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001484 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
1485 up->port.info != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001486 if (status & UART_MSR_TERI)
1487 up->port.icount.rng++;
1488 if (status & UART_MSR_DDSR)
1489 up->port.icount.dsr++;
1490 if (status & UART_MSR_DDCD)
1491 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1492 if (status & UART_MSR_DCTS)
1493 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Russell King2af7cd62006-01-04 16:55:09 +00001495 wake_up_interruptible(&up->port.info->delta_msr_wait);
1496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Russell King2af7cd62006-01-04 16:55:09 +00001498 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
1501/*
1502 * This handles the interrupt from one port.
1503 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001504static void serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Russell King45e24602006-01-04 19:19:06 +00001506 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001507 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001508
Jiri Kosina4bf36312007-04-23 14:41:21 -07001509 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001510
1511 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 DEBUG_INTR("status = %x...", status);
1514
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001515 if (status & (UART_LSR_DR | UART_LSR_BI))
David Howells7d12e782006-10-05 14:55:46 +01001516 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 check_modem_status(up);
1518 if (status & UART_LSR_THRE)
1519 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001520
Jiri Kosina4bf36312007-04-23 14:41:21 -07001521 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
1523
1524/*
1525 * This is the serial driver's interrupt routine.
1526 *
1527 * Arjan thinks the old way was overly complex, so it got simplified.
1528 * Alan disagrees, saying that need the complexity to handle the weird
1529 * nature of ISA shared interrupts. (This is a special exception.)
1530 *
1531 * In order to handle ISA shared interrupts properly, we need to check
1532 * that all ports have been serviced, and therefore the ISA interrupt
1533 * line has been de-asserted.
1534 *
1535 * This means we need to loop through all ports. checking that they
1536 * don't have an interrupt pending.
1537 */
David Howells7d12e782006-10-05 14:55:46 +01001538static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 struct irq_info *i = dev_id;
1541 struct list_head *l, *end = NULL;
1542 int pass_counter = 0, handled = 0;
1543
1544 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1545
1546 spin_lock(&i->lock);
1547
1548 l = i->head;
1549 do {
1550 struct uart_8250_port *up;
1551 unsigned int iir;
1552
1553 up = list_entry(l, struct uart_8250_port, list);
1554
1555 iir = serial_in(up, UART_IIR);
1556 if (!(iir & UART_IIR_NO_INT)) {
David Howells7d12e782006-10-05 14:55:46 +01001557 serial8250_handle_port(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 handled = 1;
1560
1561 end = NULL;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001562 } else if (up->port.iotype == UPIO_DWAPB &&
1563 (iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
1564 /* The DesignWare APB UART has an Busy Detect (0x07)
1565 * interrupt meaning an LCR write attempt occured while the
1566 * UART was busy. The interrupt must be cleared by reading
1567 * the UART status register (USR) and the LCR re-written. */
1568 unsigned int status;
1569 status = *(volatile u32 *)up->port.private_data;
1570 serial_out(up, UART_LCR, up->lcr);
1571
1572 handled = 1;
1573
1574 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 } else if (end == NULL)
1576 end = l;
1577
1578 l = l->next;
1579
1580 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1581 /* If we hit this, we're dead. */
1582 printk(KERN_ERR "serial8250: too much work for "
1583 "irq%d\n", irq);
1584 break;
1585 }
1586 } while (l != end);
1587
1588 spin_unlock(&i->lock);
1589
1590 DEBUG_INTR("end.\n");
1591
1592 return IRQ_RETVAL(handled);
1593}
1594
1595/*
1596 * To support ISA shared interrupts, we need to have one interrupt
1597 * handler that ensures that the IRQ line has been deasserted
1598 * before returning. Failing to do this will result in the IRQ
1599 * line being stuck active, and, since ISA irqs are edge triggered,
1600 * no more IRQs will be seen.
1601 */
1602static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1603{
1604 spin_lock_irq(&i->lock);
1605
1606 if (!list_empty(i->head)) {
1607 if (i->head == &up->list)
1608 i->head = i->head->next;
1609 list_del(&up->list);
1610 } else {
1611 BUG_ON(i->head != &up->list);
1612 i->head = NULL;
1613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001615 /* List empty so throw away the hash node */
1616 if (i->head == NULL) {
1617 hlist_del(&i->node);
1618 kfree(i);
1619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
1622static int serial_link_irq_chain(struct uart_8250_port *up)
1623{
Alan Cox25db8ad2008-08-19 20:49:40 -07001624 struct hlist_head *h;
1625 struct hlist_node *n;
1626 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001627 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Alan Cox25db8ad2008-08-19 20:49:40 -07001629 mutex_lock(&hash_mutex);
1630
1631 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1632
1633 hlist_for_each(n, h) {
1634 i = hlist_entry(n, struct irq_info, node);
1635 if (i->irq == up->port.irq)
1636 break;
1637 }
1638
1639 if (n == NULL) {
1640 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1641 if (i == NULL) {
1642 mutex_unlock(&hash_mutex);
1643 return -ENOMEM;
1644 }
1645 spin_lock_init(&i->lock);
1646 i->irq = up->port.irq;
1647 hlist_add_head(&i->node, h);
1648 }
1649 mutex_unlock(&hash_mutex);
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 spin_lock_irq(&i->lock);
1652
1653 if (i->head) {
1654 list_add(&up->list, i->head);
1655 spin_unlock_irq(&i->lock);
1656
1657 ret = 0;
1658 } else {
1659 INIT_LIST_HEAD(&up->list);
1660 i->head = &up->list;
1661 spin_unlock_irq(&i->lock);
1662
1663 ret = request_irq(up->port.irq, serial8250_interrupt,
1664 irq_flags, "serial", i);
1665 if (ret < 0)
1666 serial_do_unlink(i, up);
1667 }
1668
1669 return ret;
1670}
1671
1672static void serial_unlink_irq_chain(struct uart_8250_port *up)
1673{
Alan Cox25db8ad2008-08-19 20:49:40 -07001674 struct irq_info *i;
1675 struct hlist_node *n;
1676 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Alan Cox25db8ad2008-08-19 20:49:40 -07001678 mutex_lock(&hash_mutex);
1679
1680 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1681
1682 hlist_for_each(n, h) {
1683 i = hlist_entry(n, struct irq_info, node);
1684 if (i->irq == up->port.irq)
1685 break;
1686 }
1687
1688 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 BUG_ON(i->head == NULL);
1690
1691 if (list_empty(i->head))
1692 free_irq(up->port.irq, i);
1693
1694 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001695 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696}
1697
Alex Williamson40b36da2007-02-14 00:33:04 -08001698/* Base timer interval for polling */
1699static inline int poll_timeout(int timeout)
1700{
1701 return timeout > 6 ? (timeout / 2 - 2) : 1;
1702}
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704/*
1705 * This function is used to handle ports that do not have an
1706 * interrupt. This doesn't work very well for 16450's, but gives
1707 * barely passable results for a 16550A. (Although at the expense
1708 * of much CPU overhead).
1709 */
1710static void serial8250_timeout(unsigned long data)
1711{
1712 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 unsigned int iir;
1714
1715 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001716 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001717 serial8250_handle_port(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001718 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout));
1719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Alex Williamson40b36da2007-02-14 00:33:04 -08001721static void serial8250_backup_timeout(unsigned long data)
1722{
1723 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001724 unsigned int iir, ier = 0, lsr;
1725 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001726
1727 /*
1728 * Must disable interrupts or else we risk racing with the interrupt
1729 * based handler.
1730 */
1731 if (is_real_interrupt(up->port.irq)) {
1732 ier = serial_in(up, UART_IER);
1733 serial_out(up, UART_IER, 0);
1734 }
1735
1736 iir = serial_in(up, UART_IIR);
1737
1738 /*
1739 * This should be a safe test for anyone who doesn't trust the
1740 * IIR bits on their UART, but it's specifically designed for
1741 * the "Diva" UART used on the management processor on many HP
1742 * ia64 and parisc boxes.
1743 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001744 spin_lock_irqsave(&up->port.lock, flags);
1745 lsr = serial_in(up, UART_LSR);
1746 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1747 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001748 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
1749 (!uart_circ_empty(&up->port.info->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001750 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001751 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1752 iir |= UART_IIR_THRI;
1753 }
1754
1755 if (!(iir & UART_IIR_NO_INT))
1756 serial8250_handle_port(up);
1757
1758 if (is_real_interrupt(up->port.irq))
1759 serial_out(up, UART_IER, ier);
1760
1761 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001762 mod_timer(&up->timer,
1763 jiffies + poll_timeout(up->port.timeout) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
1766static unsigned int serial8250_tx_empty(struct uart_port *port)
1767{
1768 struct uart_8250_port *up = (struct uart_8250_port *)port;
1769 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001770 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 spin_lock_irqsave(&up->port.lock, flags);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001773 lsr = serial_in(up, UART_LSR);
1774 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 spin_unlock_irqrestore(&up->port.lock, flags);
1776
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001777 return lsr & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
1779
1780static unsigned int serial8250_get_mctrl(struct uart_port *port)
1781{
1782 struct uart_8250_port *up = (struct uart_8250_port *)port;
Russell King2af7cd62006-01-04 16:55:09 +00001783 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 unsigned int ret;
1785
Russell King2af7cd62006-01-04 16:55:09 +00001786 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 ret = 0;
1789 if (status & UART_MSR_DCD)
1790 ret |= TIOCM_CAR;
1791 if (status & UART_MSR_RI)
1792 ret |= TIOCM_RNG;
1793 if (status & UART_MSR_DSR)
1794 ret |= TIOCM_DSR;
1795 if (status & UART_MSR_CTS)
1796 ret |= TIOCM_CTS;
1797 return ret;
1798}
1799
1800static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1801{
1802 struct uart_8250_port *up = (struct uart_8250_port *)port;
1803 unsigned char mcr = 0;
1804
1805 if (mctrl & TIOCM_RTS)
1806 mcr |= UART_MCR_RTS;
1807 if (mctrl & TIOCM_DTR)
1808 mcr |= UART_MCR_DTR;
1809 if (mctrl & TIOCM_OUT1)
1810 mcr |= UART_MCR_OUT1;
1811 if (mctrl & TIOCM_OUT2)
1812 mcr |= UART_MCR_OUT2;
1813 if (mctrl & TIOCM_LOOP)
1814 mcr |= UART_MCR_LOOP;
1815
1816 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1817
1818 serial_out(up, UART_MCR, mcr);
1819}
1820
1821static void serial8250_break_ctl(struct uart_port *port, int break_state)
1822{
1823 struct uart_8250_port *up = (struct uart_8250_port *)port;
1824 unsigned long flags;
1825
1826 spin_lock_irqsave(&up->port.lock, flags);
1827 if (break_state == -1)
1828 up->lcr |= UART_LCR_SBC;
1829 else
1830 up->lcr &= ~UART_LCR_SBC;
1831 serial_out(up, UART_LCR, up->lcr);
1832 spin_unlock_irqrestore(&up->port.lock, flags);
1833}
1834
Alex Williamson40b36da2007-02-14 00:33:04 -08001835#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
1836
1837/*
1838 * Wait for transmitter & holding register to empty
1839 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001840static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001841{
1842 unsigned int status, tmout = 10000;
1843
1844 /* Wait up to 10ms for the character(s) to be sent. */
1845 do {
1846 status = serial_in(up, UART_LSR);
1847
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001848 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001849
1850 if (--tmout == 0)
1851 break;
1852 udelay(1);
1853 } while ((status & bits) != bits);
1854
1855 /* Wait up to 1s for flow control if necessary */
1856 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001857 unsigned int tmout;
1858 for (tmout = 1000000; tmout; tmout--) {
1859 unsigned int msr = serial_in(up, UART_MSR);
1860 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1861 if (msr & UART_MSR_CTS)
1862 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001863 udelay(1);
1864 touch_nmi_watchdog();
1865 }
1866 }
1867}
1868
Jason Wesself2d937f2008-04-17 20:05:37 +02001869#ifdef CONFIG_CONSOLE_POLL
1870/*
1871 * Console polling routines for writing and reading from the uart while
1872 * in an interrupt or debug context.
1873 */
1874
1875static int serial8250_get_poll_char(struct uart_port *port)
1876{
1877 struct uart_8250_port *up = (struct uart_8250_port *)port;
1878 unsigned char lsr = serial_inp(up, UART_LSR);
1879
1880 while (!(lsr & UART_LSR_DR))
1881 lsr = serial_inp(up, UART_LSR);
1882
1883 return serial_inp(up, UART_RX);
1884}
1885
1886
1887static void serial8250_put_poll_char(struct uart_port *port,
1888 unsigned char c)
1889{
1890 unsigned int ier;
1891 struct uart_8250_port *up = (struct uart_8250_port *)port;
1892
1893 /*
1894 * First save the IER then disable the interrupts
1895 */
1896 ier = serial_in(up, UART_IER);
1897 if (up->capabilities & UART_CAP_UUE)
1898 serial_out(up, UART_IER, UART_IER_UUE);
1899 else
1900 serial_out(up, UART_IER, 0);
1901
1902 wait_for_xmitr(up, BOTH_EMPTY);
1903 /*
1904 * Send the character out.
1905 * If a LF, also do CR...
1906 */
1907 serial_out(up, UART_TX, c);
1908 if (c == 10) {
1909 wait_for_xmitr(up, BOTH_EMPTY);
1910 serial_out(up, UART_TX, 13);
1911 }
1912
1913 /*
1914 * Finally, wait for transmitter to become empty
1915 * and restore the IER
1916 */
1917 wait_for_xmitr(up, BOTH_EMPTY);
1918 serial_out(up, UART_IER, ier);
1919}
1920
1921#endif /* CONFIG_CONSOLE_POLL */
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923static int serial8250_startup(struct uart_port *port)
1924{
1925 struct uart_8250_port *up = (struct uart_8250_port *)port;
1926 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001927 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 int retval;
1929
1930 up->capabilities = uart_config[up->port.type].flags;
1931 up->mcr = 0;
1932
1933 if (up->port.type == PORT_16C950) {
1934 /* Wake up and initialize UART */
1935 up->acr = 0;
1936 serial_outp(up, UART_LCR, 0xBF);
1937 serial_outp(up, UART_EFR, UART_EFR_ECB);
1938 serial_outp(up, UART_IER, 0);
1939 serial_outp(up, UART_LCR, 0);
1940 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
1941 serial_outp(up, UART_LCR, 0xBF);
1942 serial_outp(up, UART_EFR, UART_EFR_ECB);
1943 serial_outp(up, UART_LCR, 0);
1944 }
1945
1946#ifdef CONFIG_SERIAL_8250_RSA
1947 /*
1948 * If this is an RSA port, see if we can kick it up to the
1949 * higher speed clock.
1950 */
1951 enable_rsa(up);
1952#endif
1953
1954 /*
1955 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001956 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 */
1958 serial8250_clear_fifos(up);
1959
1960 /*
1961 * Clear the interrupt registers.
1962 */
1963 (void) serial_inp(up, UART_LSR);
1964 (void) serial_inp(up, UART_RX);
1965 (void) serial_inp(up, UART_IIR);
1966 (void) serial_inp(up, UART_MSR);
1967
1968 /*
1969 * At this point, there's no way the LSR could still be 0xff;
1970 * if it is, then bail out, because there's likely no UART
1971 * here.
1972 */
1973 if (!(up->port.flags & UPF_BUGGY_UART) &&
1974 (serial_inp(up, UART_LSR) == 0xff)) {
David S. Miller84408382008-10-13 10:45:26 +01001975 printk(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
1976 serial_index(&up->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return -ENODEV;
1978 }
1979
1980 /*
1981 * For a XR16C850, we need to set the trigger levels
1982 */
1983 if (up->port.type == PORT_16850) {
1984 unsigned char fctr;
1985
1986 serial_outp(up, UART_LCR, 0xbf);
1987
1988 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
1989 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
1990 serial_outp(up, UART_TRG, UART_TRG_96);
1991 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
1992 serial_outp(up, UART_TRG, UART_TRG_96);
1993
1994 serial_outp(up, UART_LCR, 0);
1995 }
1996
Alex Williamson40b36da2007-02-14 00:33:04 -08001997 if (is_real_interrupt(up->port.irq)) {
Alex Williamson01c194d2008-04-28 02:14:09 -07001998 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08001999 /*
2000 * Test for UARTs that do not reassert THRE when the
2001 * transmitter is idle and the interrupt has already
2002 * been cleared. Real 16550s should always reassert
2003 * this interrupt whenever the transmitter is idle and
2004 * the interrupt is enabled. Delays are necessary to
2005 * allow register changes to become visible.
2006 */
Borislav Petkovc389d272008-07-29 22:33:32 -07002007 spin_lock_irqsave(&up->port.lock, flags);
Anton Vorontsov768aec02008-07-22 11:21:07 +01002008 if (up->port.flags & UPF_SHARE_IRQ)
2009 disable_irq_nosync(up->port.irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002010
2011 wait_for_xmitr(up, UART_LSR_THRE);
2012 serial_out_sync(up, UART_IER, UART_IER_THRI);
2013 udelay(1); /* allow THRE to set */
Alex Williamson01c194d2008-04-28 02:14:09 -07002014 iir1 = serial_in(up, UART_IIR);
Alex Williamson40b36da2007-02-14 00:33:04 -08002015 serial_out(up, UART_IER, 0);
2016 serial_out_sync(up, UART_IER, UART_IER_THRI);
2017 udelay(1); /* allow a working UART time to re-assert THRE */
2018 iir = serial_in(up, UART_IIR);
2019 serial_out(up, UART_IER, 0);
2020
Anton Vorontsov768aec02008-07-22 11:21:07 +01002021 if (up->port.flags & UPF_SHARE_IRQ)
2022 enable_irq(up->port.irq);
Borislav Petkovc389d272008-07-29 22:33:32 -07002023 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002024
2025 /*
2026 * If the interrupt is not reasserted, setup a timer to
2027 * kick the UART on a regular basis.
2028 */
Alex Williamson01c194d2008-04-28 02:14:09 -07002029 if (!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) {
Will Newton363f66f2008-09-02 14:35:44 -07002030 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002031 pr_debug("ttyS%d - using backup timer\n",
2032 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002033 }
2034 }
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 /*
Will Newton363f66f2008-09-02 14:35:44 -07002037 * The above check will only give an accurate result the first time
2038 * the port is opened so this value needs to be preserved.
2039 */
2040 if (up->bugs & UART_BUG_THRE) {
2041 up->timer.function = serial8250_backup_timeout;
2042 up->timer.data = (unsigned long)up;
2043 mod_timer(&up->timer, jiffies +
2044 poll_timeout(up->port.timeout) + HZ / 5);
2045 }
2046
2047 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 * If the "interrupt" for this port doesn't correspond with any
2049 * hardware interrupt, we use a timer-based system. The original
2050 * driver used to do this with IRQ0.
2051 */
2052 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 up->timer.data = (unsigned long)up;
Alex Williamson40b36da2007-02-14 00:33:04 -08002054 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 } else {
2056 retval = serial_link_irq_chain(up);
2057 if (retval)
2058 return retval;
2059 }
2060
2061 /*
2062 * Now, initialize the UART
2063 */
2064 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
2065
2066 spin_lock_irqsave(&up->port.lock, flags);
2067 if (up->port.flags & UPF_FOURPORT) {
2068 if (!is_real_interrupt(up->port.irq))
2069 up->port.mctrl |= TIOCM_OUT1;
2070 } else
2071 /*
2072 * Most PC uarts need OUT2 raised to enable interrupts.
2073 */
2074 if (is_real_interrupt(up->port.irq))
2075 up->port.mctrl |= TIOCM_OUT2;
2076
2077 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002078
2079 /*
2080 * Do a quick test to see if we receive an
2081 * interrupt when we enable the TX irq.
2082 */
2083 serial_outp(up, UART_IER, UART_IER_THRI);
2084 lsr = serial_in(up, UART_LSR);
2085 iir = serial_in(up, UART_IIR);
2086 serial_outp(up, UART_IER, 0);
2087
2088 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002089 if (!(up->bugs & UART_BUG_TXEN)) {
2090 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002091 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002092 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002093 }
2094 } else {
Russell King67f76542005-06-23 22:26:43 +01002095 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002096 }
2097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 spin_unlock_irqrestore(&up->port.lock, flags);
2099
2100 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002101 * Clear the interrupt registers again for luck, and clear the
2102 * saved flags to avoid getting false values from polling
2103 * routines or the previous session.
2104 */
2105 serial_inp(up, UART_LSR);
2106 serial_inp(up, UART_RX);
2107 serial_inp(up, UART_IIR);
2108 serial_inp(up, UART_MSR);
2109 up->lsr_saved_flags = 0;
2110 up->msr_saved_flags = 0;
2111
2112 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 * Finally, enable interrupts. Note: Modem status interrupts
2114 * are set via set_termios(), which will be occurring imminently
2115 * anyway, so we don't enable them here.
2116 */
2117 up->ier = UART_IER_RLSI | UART_IER_RDI;
2118 serial_outp(up, UART_IER, up->ier);
2119
2120 if (up->port.flags & UPF_FOURPORT) {
2121 unsigned int icp;
2122 /*
2123 * Enable interrupts on the AST Fourport board
2124 */
2125 icp = (up->port.iobase & 0xfe0) | 0x01f;
2126 outb_p(0x80, icp);
2127 (void) inb_p(icp);
2128 }
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return 0;
2131}
2132
2133static void serial8250_shutdown(struct uart_port *port)
2134{
2135 struct uart_8250_port *up = (struct uart_8250_port *)port;
2136 unsigned long flags;
2137
2138 /*
2139 * Disable interrupts from this port
2140 */
2141 up->ier = 0;
2142 serial_outp(up, UART_IER, 0);
2143
2144 spin_lock_irqsave(&up->port.lock, flags);
2145 if (up->port.flags & UPF_FOURPORT) {
2146 /* reset interrupts on the AST Fourport board */
2147 inb((up->port.iobase & 0xfe0) | 0x1f);
2148 up->port.mctrl |= TIOCM_OUT1;
2149 } else
2150 up->port.mctrl &= ~TIOCM_OUT2;
2151
2152 serial8250_set_mctrl(&up->port, up->port.mctrl);
2153 spin_unlock_irqrestore(&up->port.lock, flags);
2154
2155 /*
2156 * Disable break condition and FIFOs
2157 */
2158 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
2159 serial8250_clear_fifos(up);
2160
2161#ifdef CONFIG_SERIAL_8250_RSA
2162 /*
2163 * Reset the RSA board back to 115kbps compat mode.
2164 */
2165 disable_rsa(up);
2166#endif
2167
2168 /*
2169 * Read data port to reset things, and then unlink from
2170 * the IRQ chain.
2171 */
2172 (void) serial_in(up, UART_RX);
2173
Alex Williamson40b36da2007-02-14 00:33:04 -08002174 del_timer_sync(&up->timer);
2175 up->timer.function = serial8250_timeout;
2176 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 serial_unlink_irq_chain(up);
2178}
2179
2180static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2181{
2182 unsigned int quot;
2183
2184 /*
2185 * Handle magic divisors for baud rates above baud_base on
2186 * SMSC SuperIO chips.
2187 */
2188 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2189 baud == (port->uartclk/4))
2190 quot = 0x8001;
2191 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2192 baud == (port->uartclk/8))
2193 quot = 0x8002;
2194 else
2195 quot = uart_get_divisor(port, baud);
2196
2197 return quot;
2198}
2199
2200static void
Alan Cox606d0992006-12-08 02:38:45 -08002201serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2202 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
2204 struct uart_8250_port *up = (struct uart_8250_port *)port;
2205 unsigned char cval, fcr = 0;
2206 unsigned long flags;
2207 unsigned int baud, quot;
2208
2209 switch (termios->c_cflag & CSIZE) {
2210 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002211 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 break;
2213 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002214 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 break;
2216 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002217 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 break;
2219 default:
2220 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002221 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 break;
2223 }
2224
2225 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002226 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (termios->c_cflag & PARENB)
2228 cval |= UART_LCR_PARITY;
2229 if (!(termios->c_cflag & PARODD))
2230 cval |= UART_LCR_EPAR;
2231#ifdef CMSPAR
2232 if (termios->c_cflag & CMSPAR)
2233 cval |= UART_LCR_SPAR;
2234#endif
2235
2236 /*
2237 * Ask the core to calculate the divisor for us.
2238 */
Thomas Koellerbd71c182007-05-06 14:48:47 -07002239 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 quot = serial8250_get_divisor(port, baud);
2241
2242 /*
Russell King4ba5e352005-06-23 10:43:04 +01002243 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 */
Russell King4ba5e352005-06-23 10:43:04 +01002245 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002246 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2249 if (baud < 2400)
2250 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2251 else
2252 fcr = uart_config[up->port.type].fcr;
2253 }
2254
2255 /*
2256 * MCR-based auto flow control. When AFE is enabled, RTS will be
2257 * deasserted when the receive FIFO contains more characters than
2258 * the trigger, or the MCR RTS bit is cleared. In the case where
2259 * the remote UART is not using CTS auto flow control, we must
2260 * have sufficient FIFO entries for the latency of the remote
2261 * UART to respond. IOW, at least 32 bytes of FIFO.
2262 */
2263 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2264 up->mcr &= ~UART_MCR_AFE;
2265 if (termios->c_cflag & CRTSCTS)
2266 up->mcr |= UART_MCR_AFE;
2267 }
2268
2269 /*
2270 * Ok, we're now changing the port state. Do it with
2271 * interrupts disabled.
2272 */
2273 spin_lock_irqsave(&up->port.lock, flags);
2274
2275 /*
2276 * Update the per-port timeout.
2277 */
2278 uart_update_timeout(port, termios->c_cflag, baud);
2279
2280 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2281 if (termios->c_iflag & INPCK)
2282 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2283 if (termios->c_iflag & (BRKINT | PARMRK))
2284 up->port.read_status_mask |= UART_LSR_BI;
2285
2286 /*
2287 * Characteres to ignore
2288 */
2289 up->port.ignore_status_mask = 0;
2290 if (termios->c_iflag & IGNPAR)
2291 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2292 if (termios->c_iflag & IGNBRK) {
2293 up->port.ignore_status_mask |= UART_LSR_BI;
2294 /*
2295 * If we're ignoring parity and break indicators,
2296 * ignore overruns too (for real raw support).
2297 */
2298 if (termios->c_iflag & IGNPAR)
2299 up->port.ignore_status_mask |= UART_LSR_OE;
2300 }
2301
2302 /*
2303 * ignore all characters if CREAD is not set
2304 */
2305 if ((termios->c_cflag & CREAD) == 0)
2306 up->port.ignore_status_mask |= UART_LSR_DR;
2307
2308 /*
2309 * CTS flow control flag and modem status interrupts
2310 */
2311 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002312 if (!(up->bugs & UART_BUG_NOMSR) &&
2313 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 up->ier |= UART_IER_MSI;
2315 if (up->capabilities & UART_CAP_UUE)
2316 up->ier |= UART_IER_UUE | UART_IER_RTOIE;
2317
2318 serial_out(up, UART_IER, up->ier);
2319
2320 if (up->capabilities & UART_CAP_EFR) {
2321 unsigned char efr = 0;
2322 /*
2323 * TI16C752/Startech hardware flow control. FIXME:
2324 * - TI16C752 requires control thresholds to be set.
2325 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2326 */
2327 if (termios->c_cflag & CRTSCTS)
2328 efr |= UART_EFR_CTS;
2329
2330 serial_outp(up, UART_LCR, 0xBF);
2331 serial_outp(up, UART_EFR, efr);
2332 }
2333
Russell Kingf2eda272008-09-01 21:47:59 +01002334#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002335 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002336 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002337 if (baud == 115200) {
2338 quot = 1;
2339 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2340 } else
2341 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2342 }
2343#endif
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 if (up->capabilities & UART_NATSEMI) {
2346 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2347 serial_outp(up, UART_LCR, 0xe0);
2348 } else {
2349 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2350 }
2351
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002352 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354 /*
2355 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2356 * is written without DLAB set, this mode will be disabled.
2357 */
2358 if (up->port.type == PORT_16750)
2359 serial_outp(up, UART_FCR, fcr);
2360
2361 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2362 up->lcr = cval; /* Save LCR */
2363 if (up->port.type != PORT_16750) {
2364 if (fcr & UART_FCR_ENABLE_FIFO) {
2365 /* emulated UARTs (Lucent Venus 167x) need two steps */
2366 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2367 }
2368 serial_outp(up, UART_FCR, fcr); /* set fcr */
2369 }
2370 serial8250_set_mctrl(&up->port, up->port.mctrl);
2371 spin_unlock_irqrestore(&up->port.lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002372 /* Don't rewrite B0 */
2373 if (tty_termios_baud_rate(termios))
2374 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375}
2376
2377static void
2378serial8250_pm(struct uart_port *port, unsigned int state,
2379 unsigned int oldstate)
2380{
2381 struct uart_8250_port *p = (struct uart_8250_port *)port;
2382
2383 serial8250_set_sleep(p, state != 0);
2384
2385 if (p->pm)
2386 p->pm(port, state, oldstate);
2387}
2388
Russell Kingf2eda272008-09-01 21:47:59 +01002389static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2390{
2391 if (pt->port.iotype == UPIO_AU)
2392 return 0x100000;
2393#ifdef CONFIG_ARCH_OMAP
2394 if (is_omap_port(pt))
2395 return 0x16 << pt->port.regshift;
2396#endif
2397 return 8 << pt->port.regshift;
2398}
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400/*
2401 * Resource handling.
2402 */
2403static int serial8250_request_std_resource(struct uart_8250_port *up)
2404{
Russell Kingf2eda272008-09-01 21:47:59 +01002405 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 int ret = 0;
2407
2408 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002409 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002410 case UPIO_TSI:
2411 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002413 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (!up->port.mapbase)
2415 break;
2416
2417 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2418 ret = -EBUSY;
2419 break;
2420 }
2421
2422 if (up->port.flags & UPF_IOREMAP) {
Alan Cox6f441fe2008-05-01 04:34:59 -07002423 up->port.membase = ioremap_nocache(up->port.mapbase,
2424 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (!up->port.membase) {
2426 release_mem_region(up->port.mapbase, size);
2427 ret = -ENOMEM;
2428 }
2429 }
2430 break;
2431
2432 case UPIO_HUB6:
2433 case UPIO_PORT:
2434 if (!request_region(up->port.iobase, size, "serial"))
2435 ret = -EBUSY;
2436 break;
2437 }
2438 return ret;
2439}
2440
2441static void serial8250_release_std_resource(struct uart_8250_port *up)
2442{
Russell Kingf2eda272008-09-01 21:47:59 +01002443 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002446 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002447 case UPIO_TSI:
2448 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002450 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 if (!up->port.mapbase)
2452 break;
2453
2454 if (up->port.flags & UPF_IOREMAP) {
2455 iounmap(up->port.membase);
2456 up->port.membase = NULL;
2457 }
2458
2459 release_mem_region(up->port.mapbase, size);
2460 break;
2461
2462 case UPIO_HUB6:
2463 case UPIO_PORT:
2464 release_region(up->port.iobase, size);
2465 break;
2466 }
2467}
2468
2469static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2470{
2471 unsigned long start = UART_RSA_BASE << up->port.regshift;
2472 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002473 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 case UPIO_HUB6:
2477 case UPIO_PORT:
2478 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002479 if (request_region(start, size, "serial-rsa"))
2480 ret = 0;
2481 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 ret = -EBUSY;
2483 break;
2484 }
2485
2486 return ret;
2487}
2488
2489static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2490{
2491 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2492 unsigned int size = 8 << up->port.regshift;
2493
2494 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 case UPIO_HUB6:
2496 case UPIO_PORT:
2497 release_region(up->port.iobase + offset, size);
2498 break;
2499 }
2500}
2501
2502static void serial8250_release_port(struct uart_port *port)
2503{
2504 struct uart_8250_port *up = (struct uart_8250_port *)port;
2505
2506 serial8250_release_std_resource(up);
2507 if (up->port.type == PORT_RSA)
2508 serial8250_release_rsa_resource(up);
2509}
2510
2511static int serial8250_request_port(struct uart_port *port)
2512{
2513 struct uart_8250_port *up = (struct uart_8250_port *)port;
2514 int ret = 0;
2515
2516 ret = serial8250_request_std_resource(up);
2517 if (ret == 0 && up->port.type == PORT_RSA) {
2518 ret = serial8250_request_rsa_resource(up);
2519 if (ret < 0)
2520 serial8250_release_std_resource(up);
2521 }
2522
2523 return ret;
2524}
2525
2526static void serial8250_config_port(struct uart_port *port, int flags)
2527{
2528 struct uart_8250_port *up = (struct uart_8250_port *)port;
2529 int probeflags = PROBE_ANY;
2530 int ret;
2531
2532 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 * Find the region that we can probe for. This in turn
2534 * tells us whether we can probe for the type of port.
2535 */
2536 ret = serial8250_request_std_resource(up);
2537 if (ret < 0)
2538 return;
2539
2540 ret = serial8250_request_rsa_resource(up);
2541 if (ret < 0)
2542 probeflags &= ~PROBE_RSA;
2543
2544 if (flags & UART_CONFIG_TYPE)
2545 autoconfig(up, probeflags);
2546 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2547 autoconfig_irq(up);
2548
2549 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2550 serial8250_release_rsa_resource(up);
2551 if (up->port.type == PORT_UNKNOWN)
2552 serial8250_release_std_resource(up);
2553}
2554
2555static int
2556serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2557{
Yinghai Lua62c4132008-08-19 20:49:55 -07002558 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2560 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2561 ser->type == PORT_STARTECH)
2562 return -EINVAL;
2563 return 0;
2564}
2565
2566static const char *
2567serial8250_type(struct uart_port *port)
2568{
2569 int type = port->type;
2570
2571 if (type >= ARRAY_SIZE(uart_config))
2572 type = 0;
2573 return uart_config[type].name;
2574}
2575
2576static struct uart_ops serial8250_pops = {
2577 .tx_empty = serial8250_tx_empty,
2578 .set_mctrl = serial8250_set_mctrl,
2579 .get_mctrl = serial8250_get_mctrl,
2580 .stop_tx = serial8250_stop_tx,
2581 .start_tx = serial8250_start_tx,
2582 .stop_rx = serial8250_stop_rx,
2583 .enable_ms = serial8250_enable_ms,
2584 .break_ctl = serial8250_break_ctl,
2585 .startup = serial8250_startup,
2586 .shutdown = serial8250_shutdown,
2587 .set_termios = serial8250_set_termios,
2588 .pm = serial8250_pm,
2589 .type = serial8250_type,
2590 .release_port = serial8250_release_port,
2591 .request_port = serial8250_request_port,
2592 .config_port = serial8250_config_port,
2593 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002594#ifdef CONFIG_CONSOLE_POLL
2595 .poll_get_char = serial8250_get_poll_char,
2596 .poll_put_char = serial8250_put_poll_char,
2597#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598};
2599
2600static struct uart_8250_port serial8250_ports[UART_NR];
2601
2602static void __init serial8250_isa_init_ports(void)
2603{
2604 struct uart_8250_port *up;
2605 static int first = 1;
2606 int i;
2607
2608 if (!first)
2609 return;
2610 first = 0;
2611
Dave Jonesa61c2d72006-01-07 23:18:19 +00002612 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 struct uart_8250_port *up = &serial8250_ports[i];
2614
2615 up->port.line = i;
2616 spin_lock_init(&up->port.lock);
2617
2618 init_timer(&up->timer);
2619 up->timer.function = serial8250_timeout;
2620
2621 /*
2622 * ALPHA_KLUDGE_MCR needs to be killed.
2623 */
2624 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2625 up->mcr_force = ALPHA_KLUDGE_MCR;
2626
2627 up->port.ops = &serial8250_pops;
2628 }
2629
Russell King44454bc2005-06-30 22:41:22 +01002630 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002631 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 i++, up++) {
2633 up->port.iobase = old_serial_port[i].port;
2634 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
2635 up->port.uartclk = old_serial_port[i].baud_base * 16;
2636 up->port.flags = old_serial_port[i].flags;
2637 up->port.hub6 = old_serial_port[i].hub6;
2638 up->port.membase = old_serial_port[i].iomem_base;
2639 up->port.iotype = old_serial_port[i].io_type;
2640 up->port.regshift = old_serial_port[i].iomem_reg_shift;
David Daney7d6a07d2009-01-02 13:49:47 +00002641 set_io_from_upio(&up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 if (share_irqs)
2643 up->port.flags |= UPF_SHARE_IRQ;
2644 }
2645}
2646
2647static void __init
2648serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2649{
2650 int i;
2651
2652 serial8250_isa_init_ports();
2653
Dave Jonesa61c2d72006-01-07 23:18:19 +00002654 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 struct uart_8250_port *up = &serial8250_ports[i];
2656
2657 up->port.dev = dev;
2658 uart_add_one_port(drv, &up->port);
2659 }
2660}
2661
2662#ifdef CONFIG_SERIAL_8250_CONSOLE
2663
Russell Kingd3587882006-03-20 20:00:09 +00002664static void serial8250_console_putchar(struct uart_port *port, int ch)
2665{
2666 struct uart_8250_port *up = (struct uart_8250_port *)port;
2667
2668 wait_for_xmitr(up, UART_LSR_THRE);
2669 serial_out(up, UART_TX, ch);
2670}
2671
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672/*
2673 * Print a string to the serial port trying not to disturb
2674 * any possible real use of the port...
2675 *
2676 * The console_lock must be held when we get here.
2677 */
2678static void
2679serial8250_console_write(struct console *co, const char *s, unsigned int count)
2680{
2681 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002682 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002684 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Andrew Morton78512ec2005-11-07 00:59:13 -08002686 touch_nmi_watchdog();
2687
Andrew Morton68aa2c02006-06-30 02:29:59 -07002688 local_irq_save(flags);
2689 if (up->port.sysrq) {
2690 /* serial8250_handle_port() already took the lock */
2691 locked = 0;
2692 } else if (oops_in_progress) {
2693 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002694 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002695 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002698 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 */
2700 ier = serial_in(up, UART_IER);
2701
2702 if (up->capabilities & UART_CAP_UUE)
2703 serial_out(up, UART_IER, UART_IER_UUE);
2704 else
2705 serial_out(up, UART_IER, 0);
2706
Russell Kingd3587882006-03-20 20:00:09 +00002707 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709 /*
2710 * Finally, wait for transmitter to become empty
2711 * and restore the IER
2712 */
Alan Coxf91a3712006-01-21 14:59:12 +00002713 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002714 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002715
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002716 /*
2717 * The receive handling will happen properly because the
2718 * receive ready bit will still be set; it is not cleared
2719 * on read. However, modem control will not, we must
2720 * call it if we have saved something in the saved flags
2721 * while processing with interrupts off.
2722 */
2723 if (up->msr_saved_flags)
2724 check_modem_status(up);
2725
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002726 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002727 spin_unlock(&up->port.lock);
2728 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729}
2730
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002731static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
2733 struct uart_port *port;
2734 int baud = 9600;
2735 int bits = 8;
2736 int parity = 'n';
2737 int flow = 'n';
2738
2739 /*
2740 * Check whether an invalid uart number has been specified, and
2741 * if so, search for the first available port that does have
2742 * console support.
2743 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002744 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 co->index = 0;
2746 port = &serial8250_ports[co->index].port;
2747 if (!port->iobase && !port->membase)
2748 return -ENODEV;
2749
2750 if (options)
2751 uart_parse_options(options, &baud, &parity, &bits, &flow);
2752
2753 return uart_set_options(port, co, baud, parity, bits, flow);
2754}
2755
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002756static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002757{
2758 return serial8250_find_port_for_earlycon();
2759}
2760
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761static struct console serial8250_console = {
2762 .name = "ttyS",
2763 .write = serial8250_console_write,
2764 .device = uart_console_device,
2765 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002766 .early_setup = serial8250_console_early_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 .flags = CON_PRINTBUFFER,
2768 .index = -1,
2769 .data = &serial8250_reg,
2770};
2771
2772static int __init serial8250_console_init(void)
2773{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002774 if (nr_uarts > UART_NR)
2775 nr_uarts = UART_NR;
2776
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 serial8250_isa_init_ports();
2778 register_console(&serial8250_console);
2779 return 0;
2780}
2781console_initcall(serial8250_console_init);
2782
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002783int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784{
2785 int line;
2786 struct uart_port *port;
2787
Dave Jonesa61c2d72006-01-07 23:18:19 +00002788 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002790 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return line;
2792 }
2793 return -ENODEV;
2794}
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796#define SERIAL8250_CONSOLE &serial8250_console
2797#else
2798#define SERIAL8250_CONSOLE NULL
2799#endif
2800
2801static struct uart_driver serial8250_reg = {
2802 .owner = THIS_MODULE,
2803 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 .dev_name = "ttyS",
2805 .major = TTY_MAJOR,
2806 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 .cons = SERIAL8250_CONSOLE,
2808};
2809
Russell Kingd856c662006-02-23 10:22:13 +00002810/*
2811 * early_serial_setup - early registration for 8250 ports
2812 *
2813 * Setup an 8250 port structure prior to console initialisation. Use
2814 * after console initialisation will cause undefined behaviour.
2815 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816int __init early_serial_setup(struct uart_port *port)
2817{
David Daneyb4304282009-01-02 13:49:41 +00002818 struct uart_port *p;
2819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 if (port->line >= ARRAY_SIZE(serial8250_ports))
2821 return -ENODEV;
2822
2823 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00002824 p = &serial8250_ports[port->line].port;
2825 p->iobase = port->iobase;
2826 p->membase = port->membase;
2827 p->irq = port->irq;
2828 p->uartclk = port->uartclk;
2829 p->fifosize = port->fifosize;
2830 p->regshift = port->regshift;
2831 p->iotype = port->iotype;
2832 p->flags = port->flags;
2833 p->mapbase = port->mapbase;
2834 p->private_data = port->private_data;
David Daney7d6a07d2009-01-02 13:49:47 +00002835
2836 set_io_from_upio(p);
2837 if (port->serial_in)
2838 p->serial_in = port->serial_in;
2839 if (port->serial_out)
2840 p->serial_out = port->serial_out;
2841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 return 0;
2843}
2844
2845/**
2846 * serial8250_suspend_port - suspend one serial port
2847 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 *
2849 * Suspend one serial port.
2850 */
2851void serial8250_suspend_port(int line)
2852{
2853 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
2854}
2855
2856/**
2857 * serial8250_resume_port - resume one serial port
2858 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 *
2860 * Resume one serial port.
2861 */
2862void serial8250_resume_port(int line)
2863{
David Woodhouseb5b82df2007-05-17 14:27:39 +08002864 struct uart_8250_port *up = &serial8250_ports[line];
2865
2866 if (up->capabilities & UART_NATSEMI) {
2867 unsigned char tmp;
2868
2869 /* Ensure it's still in high speed mode */
2870 serial_outp(up, UART_LCR, 0xE0);
2871
2872 tmp = serial_in(up, 0x04); /* EXCR2 */
2873 tmp &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
2874 tmp |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
2875 serial_outp(up, 0x04, tmp);
2876
2877 serial_outp(up, UART_LCR, 0);
2878 }
2879 uart_resume_port(&serial8250_reg, &up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880}
2881
2882/*
2883 * Register a set of serial devices attached to a platform device. The
2884 * list is terminated with a zero flags entry, which means we expect
2885 * all entries to have at least UPF_BOOT_AUTOCONF set.
2886 */
Russell King3ae5eae2005-11-09 22:32:44 +00002887static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888{
Russell King3ae5eae2005-11-09 22:32:44 +00002889 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 struct uart_port port;
Russell Kingec9f47c2005-06-27 11:12:54 +01002891 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893 memset(&port, 0, sizeof(struct uart_port));
2894
Russell Kingec9f47c2005-06-27 11:12:54 +01002895 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08002896 port.iobase = p->iobase;
2897 port.membase = p->membase;
2898 port.irq = p->irq;
2899 port.uartclk = p->uartclk;
2900 port.regshift = p->regshift;
2901 port.iotype = p->iotype;
2902 port.flags = p->flags;
2903 port.mapbase = p->mapbase;
2904 port.hub6 = p->hub6;
2905 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00002906 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00002907 port.serial_in = p->serial_in;
2908 port.serial_out = p->serial_out;
Will Newton74a197412008-02-04 22:27:50 -08002909 port.dev = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 if (share_irqs)
2911 port.flags |= UPF_SHARE_IRQ;
Russell Kingec9f47c2005-06-27 11:12:54 +01002912 ret = serial8250_register_port(&port);
2913 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00002914 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07002915 "(IO%lx MEM%llx IRQ%d): %d\n", i,
2916 p->iobase, (unsigned long long)p->mapbase,
2917 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01002918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 }
2920 return 0;
2921}
2922
2923/*
2924 * Remove serial ports registered against a platform device.
2925 */
Russell King3ae5eae2005-11-09 22:32:44 +00002926static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
2928 int i;
2929
Dave Jonesa61c2d72006-01-07 23:18:19 +00002930 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 struct uart_8250_port *up = &serial8250_ports[i];
2932
Russell King3ae5eae2005-11-09 22:32:44 +00002933 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 serial8250_unregister_port(i);
2935 }
2936 return 0;
2937}
2938
Russell King3ae5eae2005-11-09 22:32:44 +00002939static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
2941 int i;
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 for (i = 0; i < UART_NR; i++) {
2944 struct uart_8250_port *up = &serial8250_ports[i];
2945
Russell King3ae5eae2005-11-09 22:32:44 +00002946 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 uart_suspend_port(&serial8250_reg, &up->port);
2948 }
2949
2950 return 0;
2951}
2952
Russell King3ae5eae2005-11-09 22:32:44 +00002953static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954{
2955 int i;
2956
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 for (i = 0; i < UART_NR; i++) {
2958 struct uart_8250_port *up = &serial8250_ports[i];
2959
Russell King3ae5eae2005-11-09 22:32:44 +00002960 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08002961 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 }
2963
2964 return 0;
2965}
2966
Russell King3ae5eae2005-11-09 22:32:44 +00002967static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 .probe = serial8250_probe,
2969 .remove = __devexit_p(serial8250_remove),
2970 .suspend = serial8250_suspend,
2971 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00002972 .driver = {
2973 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002974 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002975 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976};
2977
2978/*
2979 * This "device" covers _all_ ISA 8250-compatible serial devices listed
2980 * in the table in include/asm/serial.h
2981 */
2982static struct platform_device *serial8250_isa_devs;
2983
2984/*
2985 * serial8250_register_port and serial8250_unregister_port allows for
2986 * 16x50 serial ports to be configured at run-time, to support PCMCIA
2987 * modems and PCI multiport cards.
2988 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002989static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
2992{
2993 int i;
2994
2995 /*
2996 * First, find a port entry which matches.
2997 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002998 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 if (uart_match_port(&serial8250_ports[i].port, port))
3000 return &serial8250_ports[i];
3001
3002 /*
3003 * We didn't find a matching entry, so look for the first
3004 * free entry. We look for one which hasn't been previously
3005 * used (indicated by zero iobase).
3006 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003007 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3009 serial8250_ports[i].port.iobase == 0)
3010 return &serial8250_ports[i];
3011
3012 /*
3013 * That also failed. Last resort is to find any entry which
3014 * doesn't have a real port associated with it.
3015 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003016 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3018 return &serial8250_ports[i];
3019
3020 return NULL;
3021}
3022
3023/**
3024 * serial8250_register_port - register a serial port
3025 * @port: serial port template
3026 *
3027 * Configure the serial port specified by the request. If the
3028 * port exists and is in use, it is hung up and unregistered
3029 * first.
3030 *
3031 * The port is then probed and if necessary the IRQ is autodetected
3032 * If this fails an error is returned.
3033 *
3034 * On success the port is ready to use and the line number is returned.
3035 */
3036int serial8250_register_port(struct uart_port *port)
3037{
3038 struct uart_8250_port *uart;
3039 int ret = -ENOSPC;
3040
3041 if (port->uartclk == 0)
3042 return -EINVAL;
3043
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003044 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
3046 uart = serial8250_find_match_or_unused(port);
3047 if (uart) {
3048 uart_remove_one_port(&serial8250_reg, &uart->port);
3049
Will Newton74a197412008-02-04 22:27:50 -08003050 uart->port.iobase = port->iobase;
3051 uart->port.membase = port->membase;
3052 uart->port.irq = port->irq;
3053 uart->port.uartclk = port->uartclk;
3054 uart->port.fifosize = port->fifosize;
3055 uart->port.regshift = port->regshift;
3056 uart->port.iotype = port->iotype;
3057 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3058 uart->port.mapbase = port->mapbase;
3059 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 if (port->dev)
3061 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003062
3063 if (port->flags & UPF_FIXED_TYPE) {
3064 uart->port.type = port->type;
3065 uart->port.fifosize = uart_config[port->type].fifo_size;
3066 uart->capabilities = uart_config[port->type].flags;
3067 uart->tx_loadsz = uart_config[port->type].tx_loadsz;
3068 }
3069
David Daney7d6a07d2009-01-02 13:49:47 +00003070 set_io_from_upio(&uart->port);
3071 /* Possibly override default I/O functions. */
3072 if (port->serial_in)
3073 uart->port.serial_in = port->serial_in;
3074 if (port->serial_out)
3075 uart->port.serial_out = port->serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3078 if (ret == 0)
3079 ret = uart->port.line;
3080 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003081 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
3083 return ret;
3084}
3085EXPORT_SYMBOL(serial8250_register_port);
3086
3087/**
3088 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3089 * @line: serial line number
3090 *
3091 * Remove one serial port. This may not be called from interrupt
3092 * context. We hand the port back to the our control.
3093 */
3094void serial8250_unregister_port(int line)
3095{
3096 struct uart_8250_port *uart = &serial8250_ports[line];
3097
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003098 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 uart_remove_one_port(&serial8250_reg, &uart->port);
3100 if (serial8250_isa_devs) {
3101 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3102 uart->port.type = PORT_UNKNOWN;
3103 uart->port.dev = &serial8250_isa_devs->dev;
3104 uart_add_one_port(&serial8250_reg, &uart->port);
3105 } else {
3106 uart->port.dev = NULL;
3107 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003108 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109}
3110EXPORT_SYMBOL(serial8250_unregister_port);
3111
3112static int __init serial8250_init(void)
3113{
Alan Cox25db8ad2008-08-19 20:49:40 -07003114 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Dave Jonesa61c2d72006-01-07 23:18:19 +00003116 if (nr_uarts > UART_NR)
3117 nr_uarts = UART_NR;
3118
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003119 printk(KERN_INFO "Serial: 8250/16550 driver"
Dave Jonesa61c2d72006-01-07 23:18:19 +00003120 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 share_irqs ? "en" : "dis");
3122
David Millerb70ac772008-10-13 10:36:31 +01003123#ifdef CONFIG_SPARC
3124 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3125#else
3126 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003128#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 if (ret)
3130 goto out;
3131
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003132 serial8250_isa_devs = platform_device_alloc("serial8250",
3133 PLAT8250_DEV_LEGACY);
3134 if (!serial8250_isa_devs) {
3135 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003136 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 }
3138
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003139 ret = platform_device_add(serial8250_isa_devs);
3140 if (ret)
3141 goto put_dev;
3142
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3144
Russell Kingbc965a72006-01-18 09:54:29 +00003145 ret = platform_driver_register(&serial8250_isa_driver);
3146 if (ret == 0)
3147 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Russell Kingbc965a72006-01-18 09:54:29 +00003149 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003150put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003151 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003152unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003153#ifdef CONFIG_SPARC
3154 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3155#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003157#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003158out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 return ret;
3160}
3161
3162static void __exit serial8250_exit(void)
3163{
3164 struct platform_device *isa_dev = serial8250_isa_devs;
3165
3166 /*
3167 * This tells serial8250_unregister_port() not to re-register
3168 * the ports (thereby making serial8250_isa_driver permanently
3169 * in use.)
3170 */
3171 serial8250_isa_devs = NULL;
3172
Russell King3ae5eae2005-11-09 22:32:44 +00003173 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 platform_device_unregister(isa_dev);
3175
David Millerb70ac772008-10-13 10:36:31 +01003176#ifdef CONFIG_SPARC
3177 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3178#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181}
3182
3183module_init(serial8250_init);
3184module_exit(serial8250_exit);
3185
3186EXPORT_SYMBOL(serial8250_suspend_port);
3187EXPORT_SYMBOL(serial8250_resume_port);
3188
3189MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003190MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
3192module_param(share_irqs, uint, 0644);
3193MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3194 " (unsafe)");
3195
Dave Jonesa61c2d72006-01-07 23:18:19 +00003196module_param(nr_uarts, uint, 0644);
3197MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199#ifdef CONFIG_SERIAL_8250_RSA
3200module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3201MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3202#endif
3203MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);