blob: a81ff7bc5fa109d7e9385016ed58d465fabce51d [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
Chuck Ebbertd41a4b52009-10-01 15:44:26 -070067static unsigned int skip_txen_test; /* force skip of txen test at init time */
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * Debugging.
71 */
72#if 0
73#define DEBUG_AUTOCONF(fmt...) printk(fmt)
74#else
75#define DEBUG_AUTOCONF(fmt...) do { } while (0)
76#endif
77
78#if 0
79#define DEBUG_INTR(fmt...) printk(fmt)
80#else
81#define DEBUG_INTR(fmt...) do { } while (0)
82#endif
83
84#define PASS_LIMIT 256
85
Dick Hollenbeckbca47612009-12-09 12:31:34 -080086#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
87
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * We default to IRQ0 for the "no irq" hack. Some
91 * machine types want others as well - they're free
92 * to redefine this in their header file.
93 */
94#define is_real_interrupt(irq) ((irq) != 0)
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
97#define CONFIG_SERIAL_DETECT_IRQ 1
98#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#ifdef CONFIG_SERIAL_8250_MANY_PORTS
100#define CONFIG_SERIAL_MANY_PORTS 1
101#endif
102
103/*
104 * HUB6 is always on. This will be removed once the header
105 * files have been cleaned.
106 */
107#define CONFIG_HUB6 1
108
Bryan Wua4ed1e42008-05-31 16:10:04 +0800109#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * SERIAL_PORT_DFNS tells us about built-in ports that have no
112 * standard enumeration mechanism. Platforms that can find all
113 * serial ports via mechanisms like ACPI or PCI need not supply it.
114 */
115#ifndef SERIAL_PORT_DFNS
116#define SERIAL_PORT_DFNS
117#endif
118
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000119static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 SERIAL_PORT_DFNS /* defined in asm/serial.h */
121};
122
Russell King026d02a2005-06-29 18:45:19 +0100123#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125#ifdef CONFIG_SERIAL_8250_RSA
126
127#define PORT_RSA_MAX 4
128static unsigned long probe_rsa[PORT_RSA_MAX];
129static unsigned int probe_rsa_count;
130#endif /* CONFIG_SERIAL_8250_RSA */
131
132struct uart_8250_port {
133 struct uart_port port;
134 struct timer_list timer; /* "no irq" timer */
135 struct list_head list; /* ports on this IRQ */
Russell King4ba5e352005-06-23 10:43:04 +0100136 unsigned short capabilities; /* port capabilities */
137 unsigned short bugs; /* port bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 unsigned int tx_loadsz; /* transmit fifo load size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 unsigned char acr;
140 unsigned char ier;
141 unsigned char lcr;
142 unsigned char mcr;
143 unsigned char mcr_mask; /* mask of user bits */
144 unsigned char mcr_force; /* mask of forced bits */
Alan Coxb8e7e402009-05-28 14:01:35 +0100145 unsigned char cur_iotype; /* Running I/O type */
Corey Minyardad4c2aa2007-08-22 14:01:18 -0700146
147 /*
148 * Some bits in registers are cleared on a read, so they must
149 * be saved whenever the register is read but the bits will not
150 * be immediately processed.
151 */
152#define LSR_SAVE_FLAGS UART_LSR_BRK_ERROR_BITS
153 unsigned char lsr_saved_flags;
154#define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
155 unsigned char msr_saved_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /*
158 * We provide a per-port pm hook.
159 */
160 void (*pm)(struct uart_port *port,
161 unsigned int state, unsigned int old);
162};
163
164struct irq_info {
Alan Cox25db8ad2008-08-19 20:49:40 -0700165 struct hlist_node node;
166 int irq;
167 spinlock_t lock; /* Protects list not the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct list_head *head;
169};
170
Alan Cox25db8ad2008-08-19 20:49:40 -0700171#define NR_IRQ_HASH 32 /* Can be adjusted later */
172static struct hlist_head irq_lists[NR_IRQ_HASH];
173static DEFINE_MUTEX(hash_mutex); /* Used to walk the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/*
176 * Here we define the default xmit fifo size used for each type of UART.
177 */
178static const struct serial8250_config uart_config[] = {
179 [PORT_UNKNOWN] = {
180 .name = "unknown",
181 .fifo_size = 1,
182 .tx_loadsz = 1,
183 },
184 [PORT_8250] = {
185 .name = "8250",
186 .fifo_size = 1,
187 .tx_loadsz = 1,
188 },
189 [PORT_16450] = {
190 .name = "16450",
191 .fifo_size = 1,
192 .tx_loadsz = 1,
193 },
194 [PORT_16550] = {
195 .name = "16550",
196 .fifo_size = 1,
197 .tx_loadsz = 1,
198 },
199 [PORT_16550A] = {
200 .name = "16550A",
201 .fifo_size = 16,
202 .tx_loadsz = 16,
203 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
204 .flags = UART_CAP_FIFO,
205 },
206 [PORT_CIRRUS] = {
207 .name = "Cirrus",
208 .fifo_size = 1,
209 .tx_loadsz = 1,
210 },
211 [PORT_16650] = {
212 .name = "ST16650",
213 .fifo_size = 1,
214 .tx_loadsz = 1,
215 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
216 },
217 [PORT_16650V2] = {
218 .name = "ST16650V2",
219 .fifo_size = 32,
220 .tx_loadsz = 16,
221 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
222 UART_FCR_T_TRIG_00,
223 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
224 },
225 [PORT_16750] = {
226 .name = "TI16750",
227 .fifo_size = 64,
228 .tx_loadsz = 64,
229 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
230 UART_FCR7_64BYTE,
231 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
232 },
233 [PORT_STARTECH] = {
234 .name = "Startech",
235 .fifo_size = 1,
236 .tx_loadsz = 1,
237 },
238 [PORT_16C950] = {
239 .name = "16C950/954",
240 .fifo_size = 128,
241 .tx_loadsz = 128,
242 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
243 .flags = UART_CAP_FIFO,
244 },
245 [PORT_16654] = {
246 .name = "ST16654",
247 .fifo_size = 64,
248 .tx_loadsz = 32,
249 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
250 UART_FCR_T_TRIG_10,
251 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
252 },
253 [PORT_16850] = {
254 .name = "XR16850",
255 .fifo_size = 128,
256 .tx_loadsz = 128,
257 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
258 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
259 },
260 [PORT_RSA] = {
261 .name = "RSA",
262 .fifo_size = 2048,
263 .tx_loadsz = 2048,
264 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
265 .flags = UART_CAP_FIFO,
266 },
267 [PORT_NS16550A] = {
268 .name = "NS16550A",
269 .fifo_size = 16,
270 .tx_loadsz = 16,
271 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
272 .flags = UART_CAP_FIFO | UART_NATSEMI,
273 },
274 [PORT_XSCALE] = {
275 .name = "XScale",
276 .fifo_size = 32,
277 .tx_loadsz = 32,
278 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
279 .flags = UART_CAP_FIFO | UART_CAP_UUE,
280 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700281 [PORT_RM9000] = {
282 .name = "RM9000",
283 .fifo_size = 16,
284 .tx_loadsz = 16,
285 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
286 .flags = UART_CAP_FIFO,
287 },
David Daney6b06f192009-01-02 13:50:00 +0000288 [PORT_OCTEON] = {
289 .name = "OCTEON",
290 .fifo_size = 64,
291 .tx_loadsz = 64,
292 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
293 .flags = UART_CAP_FIFO,
294 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100295 [PORT_AR7] = {
296 .name = "AR7",
297 .fifo_size = 16,
298 .tx_loadsz = 16,
299 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
300 .flags = UART_CAP_FIFO | UART_CAP_AFE,
301 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Thomas Koellerbd71c182007-05-06 14:48:47 -0700304#if defined (CONFIG_SERIAL_8250_AU1X00)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000305
306/* Au1x00 UART hardware has a weird register layout */
307static const u8 au_io_in_map[] = {
308 [UART_RX] = 0,
309 [UART_IER] = 2,
310 [UART_IIR] = 3,
311 [UART_LCR] = 5,
312 [UART_MCR] = 6,
313 [UART_LSR] = 7,
314 [UART_MSR] = 8,
315};
316
317static const u8 au_io_out_map[] = {
318 [UART_TX] = 1,
319 [UART_IER] = 2,
320 [UART_FCR] = 4,
321 [UART_LCR] = 5,
322 [UART_MCR] = 6,
323};
324
325/* sane hardware needs no mapping */
David Daney7d6a07d2009-01-02 13:49:47 +0000326static inline int map_8250_in_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000327{
David Daney7d6a07d2009-01-02 13:49:47 +0000328 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000329 return offset;
330 return au_io_in_map[offset];
331}
332
David Daney7d6a07d2009-01-02 13:49:47 +0000333static inline int map_8250_out_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000334{
David Daney7d6a07d2009-01-02 13:49:47 +0000335 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000336 return offset;
337 return au_io_out_map[offset];
338}
339
Alan Cox6f803cd2008-02-08 04:18:52 -0800340#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700341
342static const u8
343 regmap_in[8] = {
344 [UART_RX] = 0x00,
345 [UART_IER] = 0x0c,
346 [UART_IIR] = 0x14,
347 [UART_LCR] = 0x1c,
348 [UART_MCR] = 0x20,
349 [UART_LSR] = 0x24,
350 [UART_MSR] = 0x28,
351 [UART_SCR] = 0x2c
352 },
353 regmap_out[8] = {
354 [UART_TX] = 0x04,
355 [UART_IER] = 0x0c,
356 [UART_FCR] = 0x18,
357 [UART_LCR] = 0x1c,
358 [UART_MCR] = 0x20,
359 [UART_LSR] = 0x24,
360 [UART_MSR] = 0x28,
361 [UART_SCR] = 0x2c
362 };
363
David Daney7d6a07d2009-01-02 13:49:47 +0000364static inline int map_8250_in_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700365{
David Daney7d6a07d2009-01-02 13:49:47 +0000366 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700367 return offset;
368 return regmap_in[offset];
369}
370
David Daney7d6a07d2009-01-02 13:49:47 +0000371static inline int map_8250_out_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700372{
David Daney7d6a07d2009-01-02 13:49:47 +0000373 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700374 return offset;
375 return regmap_out[offset];
376}
377
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000378#else
379
380/* sane hardware needs no mapping */
381#define map_8250_in_reg(up, offset) (offset)
382#define map_8250_out_reg(up, offset) (offset)
383
384#endif
385
David Daney7d6a07d2009-01-02 13:49:47 +0000386static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
David Daney7d6a07d2009-01-02 13:49:47 +0000388 offset = map_8250_in_reg(p, offset) << p->regshift;
389 outb(p->hub6 - 1 + offset, p->iobase);
390 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
David Daney7d6a07d2009-01-02 13:49:47 +0000393static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
David Daney7d6a07d2009-01-02 13:49:47 +0000395 offset = map_8250_out_reg(p, offset) << p->regshift;
396 outb(p->hub6 - 1 + offset, p->iobase);
397 outb(value, p->iobase + 1);
398}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
David Daney7d6a07d2009-01-02 13:49:47 +0000400static unsigned int mem_serial_in(struct uart_port *p, int offset)
401{
402 offset = map_8250_in_reg(p, offset) << p->regshift;
403 return readb(p->membase + offset);
404}
405
406static void mem_serial_out(struct uart_port *p, int offset, int value)
407{
408 offset = map_8250_out_reg(p, offset) << p->regshift;
409 writeb(value, p->membase + offset);
410}
411
412static void mem32_serial_out(struct uart_port *p, int offset, int value)
413{
414 offset = map_8250_out_reg(p, offset) << p->regshift;
415 writel(value, p->membase + offset);
416}
417
418static unsigned int mem32_serial_in(struct uart_port *p, int offset)
419{
420 offset = map_8250_in_reg(p, offset) << p->regshift;
421 return readl(p->membase + offset);
422}
423
424#ifdef CONFIG_SERIAL_8250_AU1X00
425static unsigned int au_serial_in(struct uart_port *p, int offset)
426{
427 offset = map_8250_in_reg(p, offset) << p->regshift;
428 return __raw_readl(p->membase + offset);
429}
430
431static void au_serial_out(struct uart_port *p, int offset, int value)
432{
433 offset = map_8250_out_reg(p, offset) << p->regshift;
434 __raw_writel(value, p->membase + offset);
435}
436#endif
437
438static unsigned int tsi_serial_in(struct uart_port *p, int offset)
439{
440 unsigned int tmp;
441 offset = map_8250_in_reg(p, offset) << p->regshift;
442 if (offset == UART_IIR) {
443 tmp = readl(p->membase + (UART_IIR & ~3));
444 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
445 } else
446 return readb(p->membase + offset);
447}
448
449static void tsi_serial_out(struct uart_port *p, int offset, int value)
450{
451 offset = map_8250_out_reg(p, offset) << p->regshift;
452 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
453 writeb(value, p->membase + offset);
454}
455
456static void dwapb_serial_out(struct uart_port *p, int offset, int value)
457{
458 int save_offset = offset;
459 offset = map_8250_out_reg(p, offset) << p->regshift;
460 /* Save the LCR value so it can be re-written when a
461 * Busy Detect interrupt occurs. */
462 if (save_offset == UART_LCR) {
463 struct uart_8250_port *up = (struct uart_8250_port *)p;
464 up->lcr = value;
465 }
466 writeb(value, p->membase + offset);
467 /* Read the IER to ensure any interrupt is cleared before
468 * returning from ISR. */
469 if (save_offset == UART_TX || save_offset == UART_IER)
470 value = p->serial_in(p, UART_IER);
471}
472
473static unsigned int io_serial_in(struct uart_port *p, int offset)
474{
475 offset = map_8250_in_reg(p, offset) << p->regshift;
476 return inb(p->iobase + offset);
477}
478
479static void io_serial_out(struct uart_port *p, int offset, int value)
480{
481 offset = map_8250_out_reg(p, offset) << p->regshift;
482 outb(value, p->iobase + offset);
483}
484
485static void set_io_from_upio(struct uart_port *p)
486{
Alan Coxb8e7e402009-05-28 14:01:35 +0100487 struct uart_8250_port *up = (struct uart_8250_port *)p;
David Daney7d6a07d2009-01-02 13:49:47 +0000488 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000490 p->serial_in = hub6_serial_in;
491 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493
494 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000495 p->serial_in = mem_serial_in;
496 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 break;
498
Thomas Koellerbd71c182007-05-06 14:48:47 -0700499 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000501 p->serial_in = mem32_serial_in;
502 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
504
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000505#ifdef CONFIG_SERIAL_8250_AU1X00
506 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000507 p->serial_in = au_serial_in;
508 p->serial_out = au_serial_out;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000509 break;
510#endif
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700511 case UPIO_TSI:
David Daney7d6a07d2009-01-02 13:49:47 +0000512 p->serial_in = tsi_serial_in;
513 p->serial_out = tsi_serial_out;
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700514 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000515
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700516 case UPIO_DWAPB:
David Daney7d6a07d2009-01-02 13:49:47 +0000517 p->serial_in = mem_serial_in;
518 p->serial_out = dwapb_serial_out;
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700519 break;
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000522 p->serial_in = io_serial_in;
523 p->serial_out = io_serial_out;
524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100526 /* Remember loaded iotype */
527 up->cur_iotype = p->iotype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Alex Williamson40b36da2007-02-14 00:33:04 -0800530static void
531serial_out_sync(struct uart_8250_port *up, int offset, int value)
532{
David Daney7d6a07d2009-01-02 13:49:47 +0000533 struct uart_port *p = &up->port;
534 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800535 case UPIO_MEM:
536 case UPIO_MEM32:
537#ifdef CONFIG_SERIAL_8250_AU1X00
538 case UPIO_AU:
539#endif
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700540 case UPIO_DWAPB:
David Daney7d6a07d2009-01-02 13:49:47 +0000541 p->serial_out(p, offset, value);
542 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800543 break;
544 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000545 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800546 }
547}
548
David Daney7d6a07d2009-01-02 13:49:47 +0000549#define serial_in(up, offset) \
550 (up->port.serial_in(&(up)->port, (offset)))
551#define serial_out(up, offset, value) \
552 (up->port.serial_out(&(up)->port, (offset), (value)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553/*
554 * We used to support using pause I/O for certain machines. We
555 * haven't supported this for a while, but just in case it's badly
556 * needed for certain old 386 machines, I've left these #define's
557 * in....
558 */
559#define serial_inp(up, offset) serial_in(up, offset)
560#define serial_outp(up, offset, value) serial_out(up, offset, value)
561
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100562/* Uart divisor latch read */
563static inline int _serial_dl_read(struct uart_8250_port *up)
564{
565 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
566}
567
568/* Uart divisor latch write */
569static inline void _serial_dl_write(struct uart_8250_port *up, int value)
570{
571 serial_outp(up, UART_DLL, value & 0xff);
572 serial_outp(up, UART_DLM, value >> 8 & 0xff);
573}
574
Alan Cox6f803cd2008-02-08 04:18:52 -0800575#if defined(CONFIG_SERIAL_8250_AU1X00)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100576/* Au1x00 haven't got a standard divisor latch */
577static int serial_dl_read(struct uart_8250_port *up)
578{
579 if (up->port.iotype == UPIO_AU)
580 return __raw_readl(up->port.membase + 0x28);
581 else
582 return _serial_dl_read(up);
583}
584
585static void serial_dl_write(struct uart_8250_port *up, int value)
586{
587 if (up->port.iotype == UPIO_AU)
588 __raw_writel(value, up->port.membase + 0x28);
589 else
590 _serial_dl_write(up, value);
591}
Alan Cox6f803cd2008-02-08 04:18:52 -0800592#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700593static int serial_dl_read(struct uart_8250_port *up)
594{
595 return (up->port.iotype == UPIO_RM9000) ?
596 (((__raw_readl(up->port.membase + 0x10) << 8) |
597 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
598 _serial_dl_read(up);
599}
600
601static void serial_dl_write(struct uart_8250_port *up, int value)
602{
603 if (up->port.iotype == UPIO_RM9000) {
604 __raw_writel(value, up->port.membase + 0x08);
605 __raw_writel(value >> 8, up->port.membase + 0x10);
606 } else {
607 _serial_dl_write(up, value);
608 }
609}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100610#else
611#define serial_dl_read(up) _serial_dl_read(up)
612#define serial_dl_write(up, value) _serial_dl_write(up, value)
613#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615/*
616 * For the 16C950
617 */
618static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
619{
620 serial_out(up, UART_SCR, offset);
621 serial_out(up, UART_ICR, value);
622}
623
624static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
625{
626 unsigned int value;
627
628 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
629 serial_out(up, UART_SCR, offset);
630 value = serial_in(up, UART_ICR);
631 serial_icr_write(up, UART_ACR, up->acr);
632
633 return value;
634}
635
636/*
637 * FIFO support.
638 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100639static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 if (p->capabilities & UART_CAP_FIFO) {
642 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
643 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
644 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
645 serial_outp(p, UART_FCR, 0);
646 }
647}
648
649/*
650 * IER sleep support. UARTs which have EFRs need the "extended
651 * capability" bit enabled. Note that on XR16C850s, we need to
652 * reset LCR to write to IER.
653 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100654static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 if (p->capabilities & UART_CAP_SLEEP) {
657 if (p->capabilities & UART_CAP_EFR) {
658 serial_outp(p, UART_LCR, 0xBF);
659 serial_outp(p, UART_EFR, UART_EFR_ECB);
660 serial_outp(p, UART_LCR, 0);
661 }
662 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
663 if (p->capabilities & UART_CAP_EFR) {
664 serial_outp(p, UART_LCR, 0xBF);
665 serial_outp(p, UART_EFR, 0);
666 serial_outp(p, UART_LCR, 0);
667 }
668 }
669}
670
671#ifdef CONFIG_SERIAL_8250_RSA
672/*
673 * Attempts to turn on the RSA FIFO. Returns zero on failure.
674 * We set the port uart clock rate if we succeed.
675 */
676static int __enable_rsa(struct uart_8250_port *up)
677{
678 unsigned char mode;
679 int result;
680
681 mode = serial_inp(up, UART_RSA_MSR);
682 result = mode & UART_RSA_MSR_FIFO;
683
684 if (!result) {
685 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
686 mode = serial_inp(up, UART_RSA_MSR);
687 result = mode & UART_RSA_MSR_FIFO;
688 }
689
690 if (result)
691 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
692
693 return result;
694}
695
696static void enable_rsa(struct uart_8250_port *up)
697{
698 if (up->port.type == PORT_RSA) {
699 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
700 spin_lock_irq(&up->port.lock);
701 __enable_rsa(up);
702 spin_unlock_irq(&up->port.lock);
703 }
704 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
705 serial_outp(up, UART_RSA_FRR, 0);
706 }
707}
708
709/*
710 * Attempts to turn off the RSA FIFO. Returns zero on failure.
711 * It is unknown why interrupts were disabled in here. However,
712 * the caller is expected to preserve this behaviour by grabbing
713 * the spinlock before calling this function.
714 */
715static void disable_rsa(struct uart_8250_port *up)
716{
717 unsigned char mode;
718 int result;
719
720 if (up->port.type == PORT_RSA &&
721 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
722 spin_lock_irq(&up->port.lock);
723
724 mode = serial_inp(up, UART_RSA_MSR);
725 result = !(mode & UART_RSA_MSR_FIFO);
726
727 if (!result) {
728 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
729 mode = serial_inp(up, UART_RSA_MSR);
730 result = !(mode & UART_RSA_MSR_FIFO);
731 }
732
733 if (result)
734 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
735 spin_unlock_irq(&up->port.lock);
736 }
737}
738#endif /* CONFIG_SERIAL_8250_RSA */
739
740/*
741 * This is a quickie test to see how big the FIFO is.
742 * It doesn't work at all the time, more's the pity.
743 */
744static int size_fifo(struct uart_8250_port *up)
745{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100746 unsigned char old_fcr, old_mcr, old_lcr;
747 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int count;
749
750 old_lcr = serial_inp(up, UART_LCR);
751 serial_outp(up, UART_LCR, 0);
752 old_fcr = serial_inp(up, UART_FCR);
753 old_mcr = serial_inp(up, UART_MCR);
754 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
755 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
756 serial_outp(up, UART_MCR, UART_MCR_LOOP);
757 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100758 old_dl = serial_dl_read(up);
759 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 serial_outp(up, UART_LCR, 0x03);
761 for (count = 0; count < 256; count++)
762 serial_outp(up, UART_TX, count);
763 mdelay(20);/* FIXME - schedule_timeout */
764 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
765 (count < 256); count++)
766 serial_inp(up, UART_RX);
767 serial_outp(up, UART_FCR, old_fcr);
768 serial_outp(up, UART_MCR, old_mcr);
769 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100770 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 serial_outp(up, UART_LCR, old_lcr);
772
773 return count;
774}
775
776/*
777 * Read UART ID using the divisor method - set DLL and DLM to zero
778 * and the revision will be in DLL and device type in DLM. We
779 * preserve the device state across this.
780 */
781static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
782{
783 unsigned char old_dll, old_dlm, old_lcr;
784 unsigned int id;
785
786 old_lcr = serial_inp(p, UART_LCR);
787 serial_outp(p, UART_LCR, UART_LCR_DLAB);
788
789 old_dll = serial_inp(p, UART_DLL);
790 old_dlm = serial_inp(p, UART_DLM);
791
792 serial_outp(p, UART_DLL, 0);
793 serial_outp(p, UART_DLM, 0);
794
795 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
796
797 serial_outp(p, UART_DLL, old_dll);
798 serial_outp(p, UART_DLM, old_dlm);
799 serial_outp(p, UART_LCR, old_lcr);
800
801 return id;
802}
803
804/*
805 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
806 * When this function is called we know it is at least a StarTech
807 * 16650 V2, but it might be one of several StarTech UARTs, or one of
808 * its clones. (We treat the broken original StarTech 16650 V1 as a
809 * 16550, and why not? Startech doesn't seem to even acknowledge its
810 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700811 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * What evil have men's minds wrought...
813 */
814static void autoconfig_has_efr(struct uart_8250_port *up)
815{
816 unsigned int id1, id2, id3, rev;
817
818 /*
819 * Everything with an EFR has SLEEP
820 */
821 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
822
823 /*
824 * First we check to see if it's an Oxford Semiconductor UART.
825 *
826 * If we have to do this here because some non-National
827 * Semiconductor clone chips lock up if you try writing to the
828 * LSR register (which serial_icr_read does)
829 */
830
831 /*
832 * Check for Oxford Semiconductor 16C950.
833 *
834 * EFR [4] must be set else this test fails.
835 *
836 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
837 * claims that it's needed for 952 dual UART's (which are not
838 * recommended for new designs).
839 */
840 up->acr = 0;
841 serial_out(up, UART_LCR, 0xBF);
842 serial_out(up, UART_EFR, UART_EFR_ECB);
843 serial_out(up, UART_LCR, 0x00);
844 id1 = serial_icr_read(up, UART_ID1);
845 id2 = serial_icr_read(up, UART_ID2);
846 id3 = serial_icr_read(up, UART_ID3);
847 rev = serial_icr_read(up, UART_REV);
848
849 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
850
851 if (id1 == 0x16 && id2 == 0xC9 &&
852 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
853 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100854
855 /*
856 * Enable work around for the Oxford Semiconductor 952 rev B
857 * chip which causes it to seriously miscalculate baud rates
858 * when DLL is 0.
859 */
860 if (id3 == 0x52 && rev == 0x01)
861 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return;
863 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /*
866 * We check for a XR16C850 by setting DLL and DLM to 0, and then
867 * reading back DLL and DLM. The chip type depends on the DLM
868 * value read back:
869 * 0x10 - XR16C850 and the DLL contains the chip revision.
870 * 0x12 - XR16C2850.
871 * 0x14 - XR16C854.
872 */
873 id1 = autoconfig_read_divisor_id(up);
874 DEBUG_AUTOCONF("850id=%04x ", id1);
875
876 id2 = id1 >> 8;
877 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 up->port.type = PORT_16850;
879 return;
880 }
881
882 /*
883 * It wasn't an XR16C850.
884 *
885 * We distinguish between the '654 and the '650 by counting
886 * how many bytes are in the FIFO. I'm using this for now,
887 * since that's the technique that was sent to me in the
888 * serial driver update, but I'm not convinced this works.
889 * I've had problems doing this in the past. -TYT
890 */
891 if (size_fifo(up) == 64)
892 up->port.type = PORT_16654;
893 else
894 up->port.type = PORT_16650V2;
895}
896
897/*
898 * We detected a chip without a FIFO. Only two fall into
899 * this category - the original 8250 and the 16450. The
900 * 16450 has a scratch register (accessible with LCR=0)
901 */
902static void autoconfig_8250(struct uart_8250_port *up)
903{
904 unsigned char scratch, status1, status2;
905
906 up->port.type = PORT_8250;
907
908 scratch = serial_in(up, UART_SCR);
909 serial_outp(up, UART_SCR, 0xa5);
910 status1 = serial_in(up, UART_SCR);
911 serial_outp(up, UART_SCR, 0x5a);
912 status2 = serial_in(up, UART_SCR);
913 serial_outp(up, UART_SCR, scratch);
914
915 if (status1 == 0xa5 && status2 == 0x5a)
916 up->port.type = PORT_16450;
917}
918
919static int broken_efr(struct uart_8250_port *up)
920{
921 /*
922 * Exar ST16C2550 "A2" devices incorrectly detect as
923 * having an EFR, and report an ID of 0x0201. See
924 * http://www.exar.com/info.php?pdf=dan180_oct2004.pdf
925 */
926 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
927 return 1;
928
929 return 0;
930}
931
932/*
933 * We know that the chip has FIFOs. Does it have an EFR? The
934 * EFR is located in the same register position as the IIR and
935 * we know the top two bits of the IIR are currently set. The
936 * EFR should contain zero. Try to read the EFR.
937 */
938static void autoconfig_16550a(struct uart_8250_port *up)
939{
940 unsigned char status1, status2;
941 unsigned int iersave;
942
943 up->port.type = PORT_16550A;
944 up->capabilities |= UART_CAP_FIFO;
945
946 /*
947 * Check for presence of the EFR when DLAB is set.
948 * Only ST16C650V1 UARTs pass this test.
949 */
950 serial_outp(up, UART_LCR, UART_LCR_DLAB);
951 if (serial_in(up, UART_EFR) == 0) {
952 serial_outp(up, UART_EFR, 0xA8);
953 if (serial_in(up, UART_EFR) != 0) {
954 DEBUG_AUTOCONF("EFRv1 ");
955 up->port.type = PORT_16650;
956 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
957 } else {
958 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
959 }
960 serial_outp(up, UART_EFR, 0);
961 return;
962 }
963
964 /*
965 * Maybe it requires 0xbf to be written to the LCR.
966 * (other ST16C650V2 UARTs, TI16C752A, etc)
967 */
968 serial_outp(up, UART_LCR, 0xBF);
969 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
970 DEBUG_AUTOCONF("EFRv2 ");
971 autoconfig_has_efr(up);
972 return;
973 }
974
975 /*
976 * Check for a National Semiconductor SuperIO chip.
977 * Attempt to switch to bank 2, read the value of the LOOP bit
978 * from EXCR1. Switch back to bank 0, change it in MCR. Then
979 * switch back to bank 2, read it from EXCR1 again and check
980 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 */
982 serial_outp(up, UART_LCR, 0);
983 status1 = serial_in(up, UART_MCR);
984 serial_outp(up, UART_LCR, 0xE0);
985 status2 = serial_in(up, 0x02); /* EXCR1 */
986
987 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
988 serial_outp(up, UART_LCR, 0);
989 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
990 serial_outp(up, UART_LCR, 0xE0);
991 status2 = serial_in(up, 0x02); /* EXCR1 */
992 serial_outp(up, UART_LCR, 0);
993 serial_outp(up, UART_MCR, status1);
994
995 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100996 unsigned short quot;
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100999
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01001000 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +01001001 quot <<= 3;
1002
David Woodhouseb5b82df2007-05-17 14:27:39 +08001003 status1 = serial_in(up, 0x04); /* EXCR2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 status1 &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
1005 status1 |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
1006 serial_outp(up, 0x04, status1);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001007
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01001008 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
David Woodhouse857dde22005-05-21 15:52:23 +01001010 serial_outp(up, UART_LCR, 0);
1011
1012 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 up->port.type = PORT_NS16550A;
1014 up->capabilities |= UART_NATSEMI;
1015 return;
1016 }
1017 }
1018
1019 /*
1020 * No EFR. Try to detect a TI16750, which only sets bit 5 of
1021 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1022 * Try setting it with and without DLAB set. Cheap clones
1023 * set bit 5 without DLAB set.
1024 */
1025 serial_outp(up, UART_LCR, 0);
1026 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1027 status1 = serial_in(up, UART_IIR) >> 5;
1028 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1029 serial_outp(up, UART_LCR, UART_LCR_DLAB);
1030 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1031 status2 = serial_in(up, UART_IIR) >> 5;
1032 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1033 serial_outp(up, UART_LCR, 0);
1034
1035 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1036
1037 if (status1 == 6 && status2 == 7) {
1038 up->port.type = PORT_16750;
1039 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1040 return;
1041 }
1042
1043 /*
1044 * Try writing and reading the UART_IER_UUE bit (b6).
1045 * If it works, this is probably one of the Xscale platform's
1046 * internal UARTs.
1047 * We're going to explicitly set the UUE bit to 0 before
1048 * trying to write and read a 1 just to make sure it's not
1049 * already a 1 and maybe locked there before we even start start.
1050 */
1051 iersave = serial_in(up, UART_IER);
1052 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
1053 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1054 /*
1055 * OK it's in a known zero state, try writing and reading
1056 * without disturbing the current state of the other bits.
1057 */
1058 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
1059 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1060 /*
1061 * It's an Xscale.
1062 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1063 */
1064 DEBUG_AUTOCONF("Xscale ");
1065 up->port.type = PORT_XSCALE;
1066 up->capabilities |= UART_CAP_UUE;
1067 return;
1068 }
1069 } else {
1070 /*
1071 * If we got here we couldn't force the IER_UUE bit to 0.
1072 * Log it and continue.
1073 */
1074 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1075 }
1076 serial_outp(up, UART_IER, iersave);
1077}
1078
1079/*
1080 * This routine is called by rs_init() to initialize a specific serial
1081 * port. It determines what type of UART chip this serial port is
1082 * using: 8250, 16450, 16550, 16550A. The important question is
1083 * whether or not this UART is a 16550A or not, since this will
1084 * determine whether or not we can use its FIFO features or not.
1085 */
1086static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1087{
1088 unsigned char status1, scratch, scratch2, scratch3;
1089 unsigned char save_lcr, save_mcr;
1090 unsigned long flags;
1091
1092 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
1093 return;
1094
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001095 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
David S. Miller84408382008-10-13 10:45:26 +01001096 serial_index(&up->port), up->port.iobase, up->port.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 /*
1099 * We really do need global IRQs disabled here - we're going to
1100 * be frobbing the chips IRQ enable register to see if it exists.
1101 */
1102 spin_lock_irqsave(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001105 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 if (!(up->port.flags & UPF_BUGGY_UART)) {
1108 /*
1109 * Do a simple existence test first; if we fail this,
1110 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001111 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 * 0x80 is used as a nonsense port to prevent against
1113 * false positives due to ISA bus float. The
1114 * assumption is that 0x80 is a non-existent port;
1115 * which should be safe since include/asm/io.h also
1116 * makes this assumption.
1117 *
1118 * Note: this is safe as long as MCR bit 4 is clear
1119 * and the device is in "PC" mode.
1120 */
1121 scratch = serial_inp(up, UART_IER);
1122 serial_outp(up, UART_IER, 0);
1123#ifdef __i386__
1124 outb(0xff, 0x080);
1125#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001126 /*
1127 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1128 * 16C754B) allow only to modify them if an EFR bit is set.
1129 */
1130 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 serial_outp(up, UART_IER, 0x0F);
1132#ifdef __i386__
1133 outb(0, 0x080);
1134#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001135 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 serial_outp(up, UART_IER, scratch);
1137 if (scratch2 != 0 || scratch3 != 0x0F) {
1138 /*
1139 * We failed; there's nothing here
1140 */
1141 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1142 scratch2, scratch3);
1143 goto out;
1144 }
1145 }
1146
1147 save_mcr = serial_in(up, UART_MCR);
1148 save_lcr = serial_in(up, UART_LCR);
1149
Thomas Koellerbd71c182007-05-06 14:48:47 -07001150 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 * Check to see if a UART is really there. Certain broken
1152 * internal modems based on the Rockwell chipset fail this
1153 * test, because they apparently don't implement the loopback
1154 * test mode. So this test is skipped on the COM 1 through
1155 * COM 4 ports. This *should* be safe, since no board
1156 * manufacturer would be stupid enough to design a board
1157 * that conflicts with COM 1-4 --- we hope!
1158 */
1159 if (!(up->port.flags & UPF_SKIP_TEST)) {
1160 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1161 status1 = serial_inp(up, UART_MSR) & 0xF0;
1162 serial_outp(up, UART_MCR, save_mcr);
1163 if (status1 != 0x90) {
1164 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1165 status1);
1166 goto out;
1167 }
1168 }
1169
1170 /*
1171 * We're pretty sure there's a port here. Lets find out what
1172 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001173 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 * determines what we test for next.
1175 *
1176 * We also initialise the EFR (if any) to zero for later. The
1177 * EFR occupies the same register location as the FCR and IIR.
1178 */
1179 serial_outp(up, UART_LCR, 0xBF);
1180 serial_outp(up, UART_EFR, 0);
1181 serial_outp(up, UART_LCR, 0);
1182
1183 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1184 scratch = serial_in(up, UART_IIR) >> 6;
1185
1186 DEBUG_AUTOCONF("iir=%d ", scratch);
1187
1188 switch (scratch) {
1189 case 0:
1190 autoconfig_8250(up);
1191 break;
1192 case 1:
1193 up->port.type = PORT_UNKNOWN;
1194 break;
1195 case 2:
1196 up->port.type = PORT_16550;
1197 break;
1198 case 3:
1199 autoconfig_16550a(up);
1200 break;
1201 }
1202
1203#ifdef CONFIG_SERIAL_8250_RSA
1204 /*
1205 * Only probe for RSA ports if we got the region.
1206 */
1207 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1208 int i;
1209
1210 for (i = 0 ; i < probe_rsa_count; ++i) {
1211 if (probe_rsa[i] == up->port.iobase &&
1212 __enable_rsa(up)) {
1213 up->port.type = PORT_RSA;
1214 break;
1215 }
1216 }
1217 }
1218#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 serial_outp(up, UART_LCR, save_lcr);
1221
1222 if (up->capabilities != uart_config[up->port.type].flags) {
1223 printk(KERN_WARNING
1224 "ttyS%d: detected caps %08x should be %08x\n",
David S. Miller84408382008-10-13 10:45:26 +01001225 serial_index(&up->port), up->capabilities,
1226 uart_config[up->port.type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
1228
1229 up->port.fifosize = uart_config[up->port.type].fifo_size;
1230 up->capabilities = uart_config[up->port.type].flags;
1231 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1232
1233 if (up->port.type == PORT_UNKNOWN)
1234 goto out;
1235
1236 /*
1237 * Reset the UART.
1238 */
1239#ifdef CONFIG_SERIAL_8250_RSA
1240 if (up->port.type == PORT_RSA)
1241 serial_outp(up, UART_RSA_FRR, 0);
1242#endif
1243 serial_outp(up, UART_MCR, save_mcr);
1244 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001245 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001246 if (up->capabilities & UART_CAP_UUE)
1247 serial_outp(up, UART_IER, UART_IER_UUE);
1248 else
1249 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Thomas Koellerbd71c182007-05-06 14:48:47 -07001251 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1254}
1255
1256static void autoconfig_irq(struct uart_8250_port *up)
1257{
1258 unsigned char save_mcr, save_ier;
1259 unsigned char save_ICP = 0;
1260 unsigned int ICP = 0;
1261 unsigned long irqs;
1262 int irq;
1263
1264 if (up->port.flags & UPF_FOURPORT) {
1265 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1266 save_ICP = inb_p(ICP);
1267 outb_p(0x80, ICP);
1268 (void) inb_p(ICP);
1269 }
1270
1271 /* forget possible initially masked and pending IRQ */
1272 probe_irq_off(probe_irq_on());
1273 save_mcr = serial_inp(up, UART_MCR);
1274 save_ier = serial_inp(up, UART_IER);
1275 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 irqs = probe_irq_on();
1278 serial_outp(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001279 udelay(10);
1280 if (up->port.flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 serial_outp(up, UART_MCR,
1282 UART_MCR_DTR | UART_MCR_RTS);
1283 } else {
1284 serial_outp(up, UART_MCR,
1285 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1286 }
1287 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1288 (void)serial_inp(up, UART_LSR);
1289 (void)serial_inp(up, UART_RX);
1290 (void)serial_inp(up, UART_IIR);
1291 (void)serial_inp(up, UART_MSR);
1292 serial_outp(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001293 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 irq = probe_irq_off(irqs);
1295
1296 serial_outp(up, UART_MCR, save_mcr);
1297 serial_outp(up, UART_IER, save_ier);
1298
1299 if (up->port.flags & UPF_FOURPORT)
1300 outb_p(save_ICP, ICP);
1301
1302 up->port.irq = (irq > 0) ? irq : 0;
1303}
1304
Russell Kinge763b902005-06-29 18:41:51 +01001305static inline void __stop_tx(struct uart_8250_port *p)
1306{
1307 if (p->ier & UART_IER_THRI) {
1308 p->ier &= ~UART_IER_THRI;
1309 serial_out(p, UART_IER, p->ier);
1310 }
1311}
1312
Russell Kingb129a8c2005-08-31 10:12:14 +01001313static void serial8250_stop_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
Russell Kinge763b902005-06-29 18:41:51 +01001317 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 /*
Russell Kinge763b902005-06-29 18:41:51 +01001320 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 */
Russell Kinge763b902005-06-29 18:41:51 +01001322 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 up->acr |= UART_ACR_TXDIS;
1324 serial_icr_write(up, UART_ACR, up->acr);
1325 }
1326}
1327
Russell King55d3b282005-06-23 15:05:41 +01001328static void transmit_chars(struct uart_8250_port *up);
1329
Russell Kingb129a8c2005-08-31 10:12:14 +01001330static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
1332 struct uart_8250_port *up = (struct uart_8250_port *)port;
1333
1334 if (!(up->ier & UART_IER_THRI)) {
1335 up->ier |= UART_IER_THRI;
1336 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001337
Russell King67f76542005-06-23 22:26:43 +01001338 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001339 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001340 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001341 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Thomas Koellerbd71c182007-05-06 14:48:47 -07001342 if ((up->port.type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001343 (lsr & UART_LSR_THRE) :
1344 (lsr & UART_LSR_TEMT))
Russell King55d3b282005-06-23 15:05:41 +01001345 transmit_chars(up);
1346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
Russell Kinge763b902005-06-29 18:41:51 +01001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 /*
Russell Kinge763b902005-06-29 18:41:51 +01001350 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 */
Russell Kinge763b902005-06-29 18:41:51 +01001352 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 up->acr &= ~UART_ACR_TXDIS;
1354 serial_icr_write(up, UART_ACR, up->acr);
1355 }
1356}
1357
1358static void serial8250_stop_rx(struct uart_port *port)
1359{
1360 struct uart_8250_port *up = (struct uart_8250_port *)port;
1361
1362 up->ier &= ~UART_IER_RLSI;
1363 up->port.read_status_mask &= ~UART_LSR_DR;
1364 serial_out(up, UART_IER, up->ier);
1365}
1366
1367static void serial8250_enable_ms(struct uart_port *port)
1368{
1369 struct uart_8250_port *up = (struct uart_8250_port *)port;
1370
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001371 /* no MSR capabilities */
1372 if (up->bugs & UART_BUG_NOMSR)
1373 return;
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 up->ier |= UART_IER_MSI;
1376 serial_out(up, UART_IER, up->ier);
1377}
1378
Russell Kingea8874d2006-01-04 19:43:24 +00001379static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001380receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001382 struct tty_struct *tty = up->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 unsigned char ch, lsr = *status;
1384 int max_count = 256;
1385 char flag;
1386
1387 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001388 if (likely(lsr & UART_LSR_DR))
1389 ch = serial_inp(up, UART_RX);
1390 else
1391 /*
1392 * Intel 82571 has a Serial Over Lan device that will
1393 * set UART_LSR_BI without setting UART_LSR_DR when
1394 * it receives a break. To avoid reading from the
1395 * receive buffer without UART_LSR_DR bit set, we
1396 * just force the read character to be 0
1397 */
1398 ch = 0;
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 flag = TTY_NORMAL;
1401 up->port.icount.rx++;
1402
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001403 lsr |= up->lsr_saved_flags;
1404 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001406 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /*
1408 * For statistics only
1409 */
1410 if (lsr & UART_LSR_BI) {
1411 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1412 up->port.icount.brk++;
1413 /*
1414 * We do the SysRQ and SAK checking
1415 * here because otherwise the break
1416 * may get masked by ignore_status_mask
1417 * or read_status_mask.
1418 */
1419 if (uart_handle_break(&up->port))
1420 goto ignore_char;
1421 } else if (lsr & UART_LSR_PE)
1422 up->port.icount.parity++;
1423 else if (lsr & UART_LSR_FE)
1424 up->port.icount.frame++;
1425 if (lsr & UART_LSR_OE)
1426 up->port.icount.overrun++;
1427
1428 /*
Russell King23907eb2005-04-16 15:26:39 -07001429 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 */
1431 lsr &= up->port.read_status_mask;
1432
1433 if (lsr & UART_LSR_BI) {
1434 DEBUG_INTR("handling break....");
1435 flag = TTY_BREAK;
1436 } else if (lsr & UART_LSR_PE)
1437 flag = TTY_PARITY;
1438 else if (lsr & UART_LSR_FE)
1439 flag = TTY_FRAME;
1440 }
David Howells7d12e782006-10-05 14:55:46 +01001441 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001443
1444 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1445
Alan Cox6f803cd2008-02-08 04:18:52 -08001446ignore_char:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 lsr = serial_inp(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001448 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 spin_unlock(&up->port.lock);
1450 tty_flip_buffer_push(tty);
1451 spin_lock(&up->port.lock);
1452 *status = lsr;
1453}
1454
Russell Kingea8874d2006-01-04 19:43:24 +00001455static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001457 struct circ_buf *xmit = &up->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 int count;
1459
1460 if (up->port.x_char) {
1461 serial_outp(up, UART_TX, up->port.x_char);
1462 up->port.icount.tx++;
1463 up->port.x_char = 0;
1464 return;
1465 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001466 if (uart_tx_stopped(&up->port)) {
1467 serial8250_stop_tx(&up->port);
1468 return;
1469 }
1470 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001471 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return;
1473 }
1474
1475 count = up->tx_loadsz;
1476 do {
1477 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1478 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1479 up->port.icount.tx++;
1480 if (uart_circ_empty(xmit))
1481 break;
1482 } while (--count > 0);
1483
1484 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1485 uart_write_wakeup(&up->port);
1486
1487 DEBUG_INTR("THRE...");
1488
1489 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001490 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Russell King2af7cd62006-01-04 16:55:09 +00001493static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Russell King2af7cd62006-01-04 16:55:09 +00001495 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001497 status |= up->msr_saved_flags;
1498 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001499 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001500 up->port.state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001501 if (status & UART_MSR_TERI)
1502 up->port.icount.rng++;
1503 if (status & UART_MSR_DDSR)
1504 up->port.icount.dsr++;
1505 if (status & UART_MSR_DDCD)
1506 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1507 if (status & UART_MSR_DCTS)
1508 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Alan Coxbdc04e32009-09-19 13:13:31 -07001510 wake_up_interruptible(&up->port.state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Russell King2af7cd62006-01-04 16:55:09 +00001513 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
1516/*
1517 * This handles the interrupt from one port.
1518 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001519static void serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Russell King45e24602006-01-04 19:19:06 +00001521 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001522 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001523
Jiri Kosina4bf36312007-04-23 14:41:21 -07001524 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001525
1526 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 DEBUG_INTR("status = %x...", status);
1529
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001530 if (status & (UART_LSR_DR | UART_LSR_BI))
David Howells7d12e782006-10-05 14:55:46 +01001531 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 check_modem_status(up);
1533 if (status & UART_LSR_THRE)
1534 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001535
Jiri Kosina4bf36312007-04-23 14:41:21 -07001536 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539/*
1540 * This is the serial driver's interrupt routine.
1541 *
1542 * Arjan thinks the old way was overly complex, so it got simplified.
1543 * Alan disagrees, saying that need the complexity to handle the weird
1544 * nature of ISA shared interrupts. (This is a special exception.)
1545 *
1546 * In order to handle ISA shared interrupts properly, we need to check
1547 * that all ports have been serviced, and therefore the ISA interrupt
1548 * line has been de-asserted.
1549 *
1550 * This means we need to loop through all ports. checking that they
1551 * don't have an interrupt pending.
1552 */
David Howells7d12e782006-10-05 14:55:46 +01001553static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
1555 struct irq_info *i = dev_id;
1556 struct list_head *l, *end = NULL;
1557 int pass_counter = 0, handled = 0;
1558
1559 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1560
1561 spin_lock(&i->lock);
1562
1563 l = i->head;
1564 do {
1565 struct uart_8250_port *up;
1566 unsigned int iir;
1567
1568 up = list_entry(l, struct uart_8250_port, list);
1569
1570 iir = serial_in(up, UART_IIR);
1571 if (!(iir & UART_IIR_NO_INT)) {
David Howells7d12e782006-10-05 14:55:46 +01001572 serial8250_handle_port(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 handled = 1;
1575
1576 end = NULL;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001577 } else if (up->port.iotype == UPIO_DWAPB &&
1578 (iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
1579 /* The DesignWare APB UART has an Busy Detect (0x07)
1580 * interrupt meaning an LCR write attempt occured while the
1581 * UART was busy. The interrupt must be cleared by reading
1582 * the UART status register (USR) and the LCR re-written. */
1583 unsigned int status;
1584 status = *(volatile u32 *)up->port.private_data;
1585 serial_out(up, UART_LCR, up->lcr);
1586
1587 handled = 1;
1588
1589 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 } else if (end == NULL)
1591 end = l;
1592
1593 l = l->next;
1594
1595 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1596 /* If we hit this, we're dead. */
1597 printk(KERN_ERR "serial8250: too much work for "
1598 "irq%d\n", irq);
1599 break;
1600 }
1601 } while (l != end);
1602
1603 spin_unlock(&i->lock);
1604
1605 DEBUG_INTR("end.\n");
1606
1607 return IRQ_RETVAL(handled);
1608}
1609
1610/*
1611 * To support ISA shared interrupts, we need to have one interrupt
1612 * handler that ensures that the IRQ line has been deasserted
1613 * before returning. Failing to do this will result in the IRQ
1614 * line being stuck active, and, since ISA irqs are edge triggered,
1615 * no more IRQs will be seen.
1616 */
1617static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1618{
1619 spin_lock_irq(&i->lock);
1620
1621 if (!list_empty(i->head)) {
1622 if (i->head == &up->list)
1623 i->head = i->head->next;
1624 list_del(&up->list);
1625 } else {
1626 BUG_ON(i->head != &up->list);
1627 i->head = NULL;
1628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001630 /* List empty so throw away the hash node */
1631 if (i->head == NULL) {
1632 hlist_del(&i->node);
1633 kfree(i);
1634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635}
1636
1637static int serial_link_irq_chain(struct uart_8250_port *up)
1638{
Alan Cox25db8ad2008-08-19 20:49:40 -07001639 struct hlist_head *h;
1640 struct hlist_node *n;
1641 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001642 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Alan Cox25db8ad2008-08-19 20:49:40 -07001644 mutex_lock(&hash_mutex);
1645
1646 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1647
1648 hlist_for_each(n, h) {
1649 i = hlist_entry(n, struct irq_info, node);
1650 if (i->irq == up->port.irq)
1651 break;
1652 }
1653
1654 if (n == NULL) {
1655 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1656 if (i == NULL) {
1657 mutex_unlock(&hash_mutex);
1658 return -ENOMEM;
1659 }
1660 spin_lock_init(&i->lock);
1661 i->irq = up->port.irq;
1662 hlist_add_head(&i->node, h);
1663 }
1664 mutex_unlock(&hash_mutex);
1665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 spin_lock_irq(&i->lock);
1667
1668 if (i->head) {
1669 list_add(&up->list, i->head);
1670 spin_unlock_irq(&i->lock);
1671
1672 ret = 0;
1673 } else {
1674 INIT_LIST_HEAD(&up->list);
1675 i->head = &up->list;
1676 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001677 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 ret = request_irq(up->port.irq, serial8250_interrupt,
1679 irq_flags, "serial", i);
1680 if (ret < 0)
1681 serial_do_unlink(i, up);
1682 }
1683
1684 return ret;
1685}
1686
1687static void serial_unlink_irq_chain(struct uart_8250_port *up)
1688{
Alan Cox25db8ad2008-08-19 20:49:40 -07001689 struct irq_info *i;
1690 struct hlist_node *n;
1691 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Alan Cox25db8ad2008-08-19 20:49:40 -07001693 mutex_lock(&hash_mutex);
1694
1695 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1696
1697 hlist_for_each(n, h) {
1698 i = hlist_entry(n, struct irq_info, node);
1699 if (i->irq == up->port.irq)
1700 break;
1701 }
1702
1703 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 BUG_ON(i->head == NULL);
1705
1706 if (list_empty(i->head))
1707 free_irq(up->port.irq, i);
1708
1709 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001710 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
Alex Williamson40b36da2007-02-14 00:33:04 -08001713/* Base timer interval for polling */
1714static inline int poll_timeout(int timeout)
1715{
1716 return timeout > 6 ? (timeout / 2 - 2) : 1;
1717}
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719/*
1720 * This function is used to handle ports that do not have an
1721 * interrupt. This doesn't work very well for 16450's, but gives
1722 * barely passable results for a 16550A. (Although at the expense
1723 * of much CPU overhead).
1724 */
1725static void serial8250_timeout(unsigned long data)
1726{
1727 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 unsigned int iir;
1729
1730 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001731 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001732 serial8250_handle_port(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001733 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout));
1734}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Alex Williamson40b36da2007-02-14 00:33:04 -08001736static void serial8250_backup_timeout(unsigned long data)
1737{
1738 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001739 unsigned int iir, ier = 0, lsr;
1740 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001741
1742 /*
1743 * Must disable interrupts or else we risk racing with the interrupt
1744 * based handler.
1745 */
1746 if (is_real_interrupt(up->port.irq)) {
1747 ier = serial_in(up, UART_IER);
1748 serial_out(up, UART_IER, 0);
1749 }
1750
1751 iir = serial_in(up, UART_IIR);
1752
1753 /*
1754 * This should be a safe test for anyone who doesn't trust the
1755 * IIR bits on their UART, but it's specifically designed for
1756 * the "Diva" UART used on the management processor on many HP
1757 * ia64 and parisc boxes.
1758 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001759 spin_lock_irqsave(&up->port.lock, flags);
1760 lsr = serial_in(up, UART_LSR);
1761 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1762 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001763 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001764 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001765 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001766 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1767 iir |= UART_IIR_THRI;
1768 }
1769
1770 if (!(iir & UART_IIR_NO_INT))
1771 serial8250_handle_port(up);
1772
1773 if (is_real_interrupt(up->port.irq))
1774 serial_out(up, UART_IER, ier);
1775
1776 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001777 mod_timer(&up->timer,
1778 jiffies + poll_timeout(up->port.timeout) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
1781static unsigned int serial8250_tx_empty(struct uart_port *port)
1782{
1783 struct uart_8250_port *up = (struct uart_8250_port *)port;
1784 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001785 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
1787 spin_lock_irqsave(&up->port.lock, flags);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001788 lsr = serial_in(up, UART_LSR);
1789 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 spin_unlock_irqrestore(&up->port.lock, flags);
1791
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001792 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793}
1794
1795static unsigned int serial8250_get_mctrl(struct uart_port *port)
1796{
1797 struct uart_8250_port *up = (struct uart_8250_port *)port;
Russell King2af7cd62006-01-04 16:55:09 +00001798 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 unsigned int ret;
1800
Russell King2af7cd62006-01-04 16:55:09 +00001801 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803 ret = 0;
1804 if (status & UART_MSR_DCD)
1805 ret |= TIOCM_CAR;
1806 if (status & UART_MSR_RI)
1807 ret |= TIOCM_RNG;
1808 if (status & UART_MSR_DSR)
1809 ret |= TIOCM_DSR;
1810 if (status & UART_MSR_CTS)
1811 ret |= TIOCM_CTS;
1812 return ret;
1813}
1814
1815static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1816{
1817 struct uart_8250_port *up = (struct uart_8250_port *)port;
1818 unsigned char mcr = 0;
1819
1820 if (mctrl & TIOCM_RTS)
1821 mcr |= UART_MCR_RTS;
1822 if (mctrl & TIOCM_DTR)
1823 mcr |= UART_MCR_DTR;
1824 if (mctrl & TIOCM_OUT1)
1825 mcr |= UART_MCR_OUT1;
1826 if (mctrl & TIOCM_OUT2)
1827 mcr |= UART_MCR_OUT2;
1828 if (mctrl & TIOCM_LOOP)
1829 mcr |= UART_MCR_LOOP;
1830
1831 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1832
1833 serial_out(up, UART_MCR, mcr);
1834}
1835
1836static void serial8250_break_ctl(struct uart_port *port, int break_state)
1837{
1838 struct uart_8250_port *up = (struct uart_8250_port *)port;
1839 unsigned long flags;
1840
1841 spin_lock_irqsave(&up->port.lock, flags);
1842 if (break_state == -1)
1843 up->lcr |= UART_LCR_SBC;
1844 else
1845 up->lcr &= ~UART_LCR_SBC;
1846 serial_out(up, UART_LCR, up->lcr);
1847 spin_unlock_irqrestore(&up->port.lock, flags);
1848}
1849
Alex Williamson40b36da2007-02-14 00:33:04 -08001850/*
1851 * Wait for transmitter & holding register to empty
1852 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001853static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001854{
1855 unsigned int status, tmout = 10000;
1856
1857 /* Wait up to 10ms for the character(s) to be sent. */
1858 do {
1859 status = serial_in(up, UART_LSR);
1860
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001861 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001862
1863 if (--tmout == 0)
1864 break;
1865 udelay(1);
1866 } while ((status & bits) != bits);
1867
1868 /* Wait up to 1s for flow control if necessary */
1869 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001870 unsigned int tmout;
1871 for (tmout = 1000000; tmout; tmout--) {
1872 unsigned int msr = serial_in(up, UART_MSR);
1873 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1874 if (msr & UART_MSR_CTS)
1875 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001876 udelay(1);
1877 touch_nmi_watchdog();
1878 }
1879 }
1880}
1881
Jason Wesself2d937f2008-04-17 20:05:37 +02001882#ifdef CONFIG_CONSOLE_POLL
1883/*
1884 * Console polling routines for writing and reading from the uart while
1885 * in an interrupt or debug context.
1886 */
1887
1888static int serial8250_get_poll_char(struct uart_port *port)
1889{
1890 struct uart_8250_port *up = (struct uart_8250_port *)port;
1891 unsigned char lsr = serial_inp(up, UART_LSR);
1892
1893 while (!(lsr & UART_LSR_DR))
1894 lsr = serial_inp(up, UART_LSR);
1895
1896 return serial_inp(up, UART_RX);
1897}
1898
1899
1900static void serial8250_put_poll_char(struct uart_port *port,
1901 unsigned char c)
1902{
1903 unsigned int ier;
1904 struct uart_8250_port *up = (struct uart_8250_port *)port;
1905
1906 /*
1907 * First save the IER then disable the interrupts
1908 */
1909 ier = serial_in(up, UART_IER);
1910 if (up->capabilities & UART_CAP_UUE)
1911 serial_out(up, UART_IER, UART_IER_UUE);
1912 else
1913 serial_out(up, UART_IER, 0);
1914
1915 wait_for_xmitr(up, BOTH_EMPTY);
1916 /*
1917 * Send the character out.
1918 * If a LF, also do CR...
1919 */
1920 serial_out(up, UART_TX, c);
1921 if (c == 10) {
1922 wait_for_xmitr(up, BOTH_EMPTY);
1923 serial_out(up, UART_TX, 13);
1924 }
1925
1926 /*
1927 * Finally, wait for transmitter to become empty
1928 * and restore the IER
1929 */
1930 wait_for_xmitr(up, BOTH_EMPTY);
1931 serial_out(up, UART_IER, ier);
1932}
1933
1934#endif /* CONFIG_CONSOLE_POLL */
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936static int serial8250_startup(struct uart_port *port)
1937{
1938 struct uart_8250_port *up = (struct uart_8250_port *)port;
1939 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001940 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 int retval;
1942
1943 up->capabilities = uart_config[up->port.type].flags;
1944 up->mcr = 0;
1945
Alan Coxb8e7e402009-05-28 14:01:35 +01001946 if (up->port.iotype != up->cur_iotype)
1947 set_io_from_upio(port);
1948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 if (up->port.type == PORT_16C950) {
1950 /* Wake up and initialize UART */
1951 up->acr = 0;
1952 serial_outp(up, UART_LCR, 0xBF);
1953 serial_outp(up, UART_EFR, UART_EFR_ECB);
1954 serial_outp(up, UART_IER, 0);
1955 serial_outp(up, UART_LCR, 0);
1956 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
1957 serial_outp(up, UART_LCR, 0xBF);
1958 serial_outp(up, UART_EFR, UART_EFR_ECB);
1959 serial_outp(up, UART_LCR, 0);
1960 }
1961
1962#ifdef CONFIG_SERIAL_8250_RSA
1963 /*
1964 * If this is an RSA port, see if we can kick it up to the
1965 * higher speed clock.
1966 */
1967 enable_rsa(up);
1968#endif
1969
1970 /*
1971 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001972 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 */
1974 serial8250_clear_fifos(up);
1975
1976 /*
1977 * Clear the interrupt registers.
1978 */
1979 (void) serial_inp(up, UART_LSR);
1980 (void) serial_inp(up, UART_RX);
1981 (void) serial_inp(up, UART_IIR);
1982 (void) serial_inp(up, UART_MSR);
1983
1984 /*
1985 * At this point, there's no way the LSR could still be 0xff;
1986 * if it is, then bail out, because there's likely no UART
1987 * here.
1988 */
1989 if (!(up->port.flags & UPF_BUGGY_UART) &&
1990 (serial_inp(up, UART_LSR) == 0xff)) {
David S. Miller84408382008-10-13 10:45:26 +01001991 printk(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
1992 serial_index(&up->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 return -ENODEV;
1994 }
1995
1996 /*
1997 * For a XR16C850, we need to set the trigger levels
1998 */
1999 if (up->port.type == PORT_16850) {
2000 unsigned char fctr;
2001
2002 serial_outp(up, UART_LCR, 0xbf);
2003
2004 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
2005 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2006 serial_outp(up, UART_TRG, UART_TRG_96);
2007 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2008 serial_outp(up, UART_TRG, UART_TRG_96);
2009
2010 serial_outp(up, UART_LCR, 0);
2011 }
2012
Alex Williamson40b36da2007-02-14 00:33:04 -08002013 if (is_real_interrupt(up->port.irq)) {
Alex Williamson01c194d2008-04-28 02:14:09 -07002014 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08002015 /*
2016 * Test for UARTs that do not reassert THRE when the
2017 * transmitter is idle and the interrupt has already
2018 * been cleared. Real 16550s should always reassert
2019 * this interrupt whenever the transmitter is idle and
2020 * the interrupt is enabled. Delays are necessary to
2021 * allow register changes to become visible.
2022 */
Borislav Petkovc389d272008-07-29 22:33:32 -07002023 spin_lock_irqsave(&up->port.lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002024 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002025 disable_irq_nosync(up->port.irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002026
2027 wait_for_xmitr(up, UART_LSR_THRE);
2028 serial_out_sync(up, UART_IER, UART_IER_THRI);
2029 udelay(1); /* allow THRE to set */
Alex Williamson01c194d2008-04-28 02:14:09 -07002030 iir1 = serial_in(up, UART_IIR);
Alex Williamson40b36da2007-02-14 00:33:04 -08002031 serial_out(up, UART_IER, 0);
2032 serial_out_sync(up, UART_IER, UART_IER_THRI);
2033 udelay(1); /* allow a working UART time to re-assert THRE */
2034 iir = serial_in(up, UART_IIR);
2035 serial_out(up, UART_IER, 0);
2036
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002037 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002038 enable_irq(up->port.irq);
Borislav Petkovc389d272008-07-29 22:33:32 -07002039 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002040
2041 /*
2042 * If the interrupt is not reasserted, setup a timer to
2043 * kick the UART on a regular basis.
2044 */
Alex Williamson01c194d2008-04-28 02:14:09 -07002045 if (!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) {
Will Newton363f66f2008-09-02 14:35:44 -07002046 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002047 pr_debug("ttyS%d - using backup timer\n",
2048 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002049 }
2050 }
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /*
Will Newton363f66f2008-09-02 14:35:44 -07002053 * The above check will only give an accurate result the first time
2054 * the port is opened so this value needs to be preserved.
2055 */
2056 if (up->bugs & UART_BUG_THRE) {
2057 up->timer.function = serial8250_backup_timeout;
2058 up->timer.data = (unsigned long)up;
2059 mod_timer(&up->timer, jiffies +
2060 poll_timeout(up->port.timeout) + HZ / 5);
2061 }
2062
2063 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * If the "interrupt" for this port doesn't correspond with any
2065 * hardware interrupt, we use a timer-based system. The original
2066 * driver used to do this with IRQ0.
2067 */
2068 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 up->timer.data = (unsigned long)up;
Alex Williamson40b36da2007-02-14 00:33:04 -08002070 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 } else {
2072 retval = serial_link_irq_chain(up);
2073 if (retval)
2074 return retval;
2075 }
2076
2077 /*
2078 * Now, initialize the UART
2079 */
2080 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
2081
2082 spin_lock_irqsave(&up->port.lock, flags);
2083 if (up->port.flags & UPF_FOURPORT) {
2084 if (!is_real_interrupt(up->port.irq))
2085 up->port.mctrl |= TIOCM_OUT1;
2086 } else
2087 /*
2088 * Most PC uarts need OUT2 raised to enable interrupts.
2089 */
2090 if (is_real_interrupt(up->port.irq))
2091 up->port.mctrl |= TIOCM_OUT2;
2092
2093 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002094
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002095 /* Serial over Lan (SoL) hack:
2096 Intel 8257x Gigabit ethernet chips have a
2097 16550 emulation, to be used for Serial Over Lan.
2098 Those chips take a longer time than a normal
2099 serial device to signalize that a transmission
2100 data was queued. Due to that, the above test generally
2101 fails. One solution would be to delay the reading of
2102 iir. However, this is not reliable, since the timeout
2103 is variable. So, let's just don't test if we receive
2104 TX irq. This way, we'll never enable UART_BUG_TXEN.
2105 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002106 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002107 goto dont_test_tx_en;
2108
Russell King55d3b282005-06-23 15:05:41 +01002109 /*
2110 * Do a quick test to see if we receive an
2111 * interrupt when we enable the TX irq.
2112 */
2113 serial_outp(up, UART_IER, UART_IER_THRI);
2114 lsr = serial_in(up, UART_LSR);
2115 iir = serial_in(up, UART_IIR);
2116 serial_outp(up, UART_IER, 0);
2117
2118 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002119 if (!(up->bugs & UART_BUG_TXEN)) {
2120 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002121 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002122 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002123 }
2124 } else {
Russell King67f76542005-06-23 22:26:43 +01002125 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002126 }
2127
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002128dont_test_tx_en:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 spin_unlock_irqrestore(&up->port.lock, flags);
2130
2131 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002132 * Clear the interrupt registers again for luck, and clear the
2133 * saved flags to avoid getting false values from polling
2134 * routines or the previous session.
2135 */
2136 serial_inp(up, UART_LSR);
2137 serial_inp(up, UART_RX);
2138 serial_inp(up, UART_IIR);
2139 serial_inp(up, UART_MSR);
2140 up->lsr_saved_flags = 0;
2141 up->msr_saved_flags = 0;
2142
2143 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 * Finally, enable interrupts. Note: Modem status interrupts
2145 * are set via set_termios(), which will be occurring imminently
2146 * anyway, so we don't enable them here.
2147 */
2148 up->ier = UART_IER_RLSI | UART_IER_RDI;
2149 serial_outp(up, UART_IER, up->ier);
2150
2151 if (up->port.flags & UPF_FOURPORT) {
2152 unsigned int icp;
2153 /*
2154 * Enable interrupts on the AST Fourport board
2155 */
2156 icp = (up->port.iobase & 0xfe0) | 0x01f;
2157 outb_p(0x80, icp);
2158 (void) inb_p(icp);
2159 }
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return 0;
2162}
2163
2164static void serial8250_shutdown(struct uart_port *port)
2165{
2166 struct uart_8250_port *up = (struct uart_8250_port *)port;
2167 unsigned long flags;
2168
2169 /*
2170 * Disable interrupts from this port
2171 */
2172 up->ier = 0;
2173 serial_outp(up, UART_IER, 0);
2174
2175 spin_lock_irqsave(&up->port.lock, flags);
2176 if (up->port.flags & UPF_FOURPORT) {
2177 /* reset interrupts on the AST Fourport board */
2178 inb((up->port.iobase & 0xfe0) | 0x1f);
2179 up->port.mctrl |= TIOCM_OUT1;
2180 } else
2181 up->port.mctrl &= ~TIOCM_OUT2;
2182
2183 serial8250_set_mctrl(&up->port, up->port.mctrl);
2184 spin_unlock_irqrestore(&up->port.lock, flags);
2185
2186 /*
2187 * Disable break condition and FIFOs
2188 */
2189 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
2190 serial8250_clear_fifos(up);
2191
2192#ifdef CONFIG_SERIAL_8250_RSA
2193 /*
2194 * Reset the RSA board back to 115kbps compat mode.
2195 */
2196 disable_rsa(up);
2197#endif
2198
2199 /*
2200 * Read data port to reset things, and then unlink from
2201 * the IRQ chain.
2202 */
2203 (void) serial_in(up, UART_RX);
2204
Alex Williamson40b36da2007-02-14 00:33:04 -08002205 del_timer_sync(&up->timer);
2206 up->timer.function = serial8250_timeout;
2207 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 serial_unlink_irq_chain(up);
2209}
2210
2211static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2212{
2213 unsigned int quot;
2214
2215 /*
2216 * Handle magic divisors for baud rates above baud_base on
2217 * SMSC SuperIO chips.
2218 */
2219 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2220 baud == (port->uartclk/4))
2221 quot = 0x8001;
2222 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2223 baud == (port->uartclk/8))
2224 quot = 0x8002;
2225 else
2226 quot = uart_get_divisor(port, baud);
2227
2228 return quot;
2229}
2230
2231static void
Alan Cox606d0992006-12-08 02:38:45 -08002232serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2233 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
2235 struct uart_8250_port *up = (struct uart_8250_port *)port;
2236 unsigned char cval, fcr = 0;
2237 unsigned long flags;
2238 unsigned int baud, quot;
2239
2240 switch (termios->c_cflag & CSIZE) {
2241 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002242 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 break;
2244 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002245 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 break;
2247 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002248 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 break;
2250 default:
2251 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002252 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 break;
2254 }
2255
2256 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002257 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 if (termios->c_cflag & PARENB)
2259 cval |= UART_LCR_PARITY;
2260 if (!(termios->c_cflag & PARODD))
2261 cval |= UART_LCR_EPAR;
2262#ifdef CMSPAR
2263 if (termios->c_cflag & CMSPAR)
2264 cval |= UART_LCR_SPAR;
2265#endif
2266
2267 /*
2268 * Ask the core to calculate the divisor for us.
2269 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002270 baud = uart_get_baud_rate(port, termios, old,
2271 port->uartclk / 16 / 0xffff,
2272 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 quot = serial8250_get_divisor(port, baud);
2274
2275 /*
Russell King4ba5e352005-06-23 10:43:04 +01002276 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 */
Russell King4ba5e352005-06-23 10:43:04 +01002278 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002279 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2282 if (baud < 2400)
2283 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2284 else
2285 fcr = uart_config[up->port.type].fcr;
2286 }
2287
2288 /*
2289 * MCR-based auto flow control. When AFE is enabled, RTS will be
2290 * deasserted when the receive FIFO contains more characters than
2291 * the trigger, or the MCR RTS bit is cleared. In the case where
2292 * the remote UART is not using CTS auto flow control, we must
2293 * have sufficient FIFO entries for the latency of the remote
2294 * UART to respond. IOW, at least 32 bytes of FIFO.
2295 */
2296 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2297 up->mcr &= ~UART_MCR_AFE;
2298 if (termios->c_cflag & CRTSCTS)
2299 up->mcr |= UART_MCR_AFE;
2300 }
2301
2302 /*
2303 * Ok, we're now changing the port state. Do it with
2304 * interrupts disabled.
2305 */
2306 spin_lock_irqsave(&up->port.lock, flags);
2307
2308 /*
2309 * Update the per-port timeout.
2310 */
2311 uart_update_timeout(port, termios->c_cflag, baud);
2312
2313 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2314 if (termios->c_iflag & INPCK)
2315 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2316 if (termios->c_iflag & (BRKINT | PARMRK))
2317 up->port.read_status_mask |= UART_LSR_BI;
2318
2319 /*
2320 * Characteres to ignore
2321 */
2322 up->port.ignore_status_mask = 0;
2323 if (termios->c_iflag & IGNPAR)
2324 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2325 if (termios->c_iflag & IGNBRK) {
2326 up->port.ignore_status_mask |= UART_LSR_BI;
2327 /*
2328 * If we're ignoring parity and break indicators,
2329 * ignore overruns too (for real raw support).
2330 */
2331 if (termios->c_iflag & IGNPAR)
2332 up->port.ignore_status_mask |= UART_LSR_OE;
2333 }
2334
2335 /*
2336 * ignore all characters if CREAD is not set
2337 */
2338 if ((termios->c_cflag & CREAD) == 0)
2339 up->port.ignore_status_mask |= UART_LSR_DR;
2340
2341 /*
2342 * CTS flow control flag and modem status interrupts
2343 */
2344 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002345 if (!(up->bugs & UART_BUG_NOMSR) &&
2346 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 up->ier |= UART_IER_MSI;
2348 if (up->capabilities & UART_CAP_UUE)
2349 up->ier |= UART_IER_UUE | UART_IER_RTOIE;
2350
2351 serial_out(up, UART_IER, up->ier);
2352
2353 if (up->capabilities & UART_CAP_EFR) {
2354 unsigned char efr = 0;
2355 /*
2356 * TI16C752/Startech hardware flow control. FIXME:
2357 * - TI16C752 requires control thresholds to be set.
2358 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2359 */
2360 if (termios->c_cflag & CRTSCTS)
2361 efr |= UART_EFR_CTS;
2362
2363 serial_outp(up, UART_LCR, 0xBF);
2364 serial_outp(up, UART_EFR, efr);
2365 }
2366
Russell Kingf2eda272008-09-01 21:47:59 +01002367#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002368 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002369 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002370 if (baud == 115200) {
2371 quot = 1;
2372 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2373 } else
2374 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2375 }
2376#endif
2377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (up->capabilities & UART_NATSEMI) {
2379 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2380 serial_outp(up, UART_LCR, 0xe0);
2381 } else {
2382 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2383 }
2384
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002385 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 /*
2388 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2389 * is written without DLAB set, this mode will be disabled.
2390 */
2391 if (up->port.type == PORT_16750)
2392 serial_outp(up, UART_FCR, fcr);
2393
2394 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2395 up->lcr = cval; /* Save LCR */
2396 if (up->port.type != PORT_16750) {
2397 if (fcr & UART_FCR_ENABLE_FIFO) {
2398 /* emulated UARTs (Lucent Venus 167x) need two steps */
2399 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2400 }
2401 serial_outp(up, UART_FCR, fcr); /* set fcr */
2402 }
2403 serial8250_set_mctrl(&up->port, up->port.mctrl);
2404 spin_unlock_irqrestore(&up->port.lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002405 /* Don't rewrite B0 */
2406 if (tty_termios_baud_rate(termios))
2407 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408}
2409
2410static void
2411serial8250_pm(struct uart_port *port, unsigned int state,
2412 unsigned int oldstate)
2413{
2414 struct uart_8250_port *p = (struct uart_8250_port *)port;
2415
2416 serial8250_set_sleep(p, state != 0);
2417
2418 if (p->pm)
2419 p->pm(port, state, oldstate);
2420}
2421
Russell Kingf2eda272008-09-01 21:47:59 +01002422static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2423{
2424 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002425 return 0x1000;
Russell Kingf2eda272008-09-01 21:47:59 +01002426#ifdef CONFIG_ARCH_OMAP
2427 if (is_omap_port(pt))
2428 return 0x16 << pt->port.regshift;
2429#endif
2430 return 8 << pt->port.regshift;
2431}
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433/*
2434 * Resource handling.
2435 */
2436static int serial8250_request_std_resource(struct uart_8250_port *up)
2437{
Russell Kingf2eda272008-09-01 21:47:59 +01002438 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 int ret = 0;
2440
2441 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002442 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002443 case UPIO_TSI:
2444 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002446 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 if (!up->port.mapbase)
2448 break;
2449
2450 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2451 ret = -EBUSY;
2452 break;
2453 }
2454
2455 if (up->port.flags & UPF_IOREMAP) {
Alan Cox6f441fe2008-05-01 04:34:59 -07002456 up->port.membase = ioremap_nocache(up->port.mapbase,
2457 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 if (!up->port.membase) {
2459 release_mem_region(up->port.mapbase, size);
2460 ret = -ENOMEM;
2461 }
2462 }
2463 break;
2464
2465 case UPIO_HUB6:
2466 case UPIO_PORT:
2467 if (!request_region(up->port.iobase, size, "serial"))
2468 ret = -EBUSY;
2469 break;
2470 }
2471 return ret;
2472}
2473
2474static void serial8250_release_std_resource(struct uart_8250_port *up)
2475{
Russell Kingf2eda272008-09-01 21:47:59 +01002476 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002479 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002480 case UPIO_TSI:
2481 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002483 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (!up->port.mapbase)
2485 break;
2486
2487 if (up->port.flags & UPF_IOREMAP) {
2488 iounmap(up->port.membase);
2489 up->port.membase = NULL;
2490 }
2491
2492 release_mem_region(up->port.mapbase, size);
2493 break;
2494
2495 case UPIO_HUB6:
2496 case UPIO_PORT:
2497 release_region(up->port.iobase, size);
2498 break;
2499 }
2500}
2501
2502static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2503{
2504 unsigned long start = UART_RSA_BASE << up->port.regshift;
2505 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002506 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 case UPIO_HUB6:
2510 case UPIO_PORT:
2511 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002512 if (request_region(start, size, "serial-rsa"))
2513 ret = 0;
2514 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 ret = -EBUSY;
2516 break;
2517 }
2518
2519 return ret;
2520}
2521
2522static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2523{
2524 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2525 unsigned int size = 8 << up->port.regshift;
2526
2527 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 case UPIO_HUB6:
2529 case UPIO_PORT:
2530 release_region(up->port.iobase + offset, size);
2531 break;
2532 }
2533}
2534
2535static void serial8250_release_port(struct uart_port *port)
2536{
2537 struct uart_8250_port *up = (struct uart_8250_port *)port;
2538
2539 serial8250_release_std_resource(up);
2540 if (up->port.type == PORT_RSA)
2541 serial8250_release_rsa_resource(up);
2542}
2543
2544static int serial8250_request_port(struct uart_port *port)
2545{
2546 struct uart_8250_port *up = (struct uart_8250_port *)port;
2547 int ret = 0;
2548
2549 ret = serial8250_request_std_resource(up);
2550 if (ret == 0 && up->port.type == PORT_RSA) {
2551 ret = serial8250_request_rsa_resource(up);
2552 if (ret < 0)
2553 serial8250_release_std_resource(up);
2554 }
2555
2556 return ret;
2557}
2558
2559static void serial8250_config_port(struct uart_port *port, int flags)
2560{
2561 struct uart_8250_port *up = (struct uart_8250_port *)port;
2562 int probeflags = PROBE_ANY;
2563 int ret;
2564
2565 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 * Find the region that we can probe for. This in turn
2567 * tells us whether we can probe for the type of port.
2568 */
2569 ret = serial8250_request_std_resource(up);
2570 if (ret < 0)
2571 return;
2572
2573 ret = serial8250_request_rsa_resource(up);
2574 if (ret < 0)
2575 probeflags &= ~PROBE_RSA;
2576
Alan Coxb8e7e402009-05-28 14:01:35 +01002577 if (up->port.iotype != up->cur_iotype)
2578 set_io_from_upio(port);
2579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 if (flags & UART_CONFIG_TYPE)
2581 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002582
2583#ifdef CONFIG_SERIAL_8250_AU1X00
2584 /* if access method is AU, it is a 16550 with a quirk */
2585 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
2586 up->bugs |= UART_BUG_NOMSR;
2587#endif
2588
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2590 autoconfig_irq(up);
2591
2592 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2593 serial8250_release_rsa_resource(up);
2594 if (up->port.type == PORT_UNKNOWN)
2595 serial8250_release_std_resource(up);
2596}
2597
2598static int
2599serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2600{
Yinghai Lua62c4132008-08-19 20:49:55 -07002601 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2603 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2604 ser->type == PORT_STARTECH)
2605 return -EINVAL;
2606 return 0;
2607}
2608
2609static const char *
2610serial8250_type(struct uart_port *port)
2611{
2612 int type = port->type;
2613
2614 if (type >= ARRAY_SIZE(uart_config))
2615 type = 0;
2616 return uart_config[type].name;
2617}
2618
2619static struct uart_ops serial8250_pops = {
2620 .tx_empty = serial8250_tx_empty,
2621 .set_mctrl = serial8250_set_mctrl,
2622 .get_mctrl = serial8250_get_mctrl,
2623 .stop_tx = serial8250_stop_tx,
2624 .start_tx = serial8250_start_tx,
2625 .stop_rx = serial8250_stop_rx,
2626 .enable_ms = serial8250_enable_ms,
2627 .break_ctl = serial8250_break_ctl,
2628 .startup = serial8250_startup,
2629 .shutdown = serial8250_shutdown,
2630 .set_termios = serial8250_set_termios,
2631 .pm = serial8250_pm,
2632 .type = serial8250_type,
2633 .release_port = serial8250_release_port,
2634 .request_port = serial8250_request_port,
2635 .config_port = serial8250_config_port,
2636 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002637#ifdef CONFIG_CONSOLE_POLL
2638 .poll_get_char = serial8250_get_poll_char,
2639 .poll_put_char = serial8250_put_poll_char,
2640#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641};
2642
2643static struct uart_8250_port serial8250_ports[UART_NR];
2644
2645static void __init serial8250_isa_init_ports(void)
2646{
2647 struct uart_8250_port *up;
2648 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002649 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651 if (!first)
2652 return;
2653 first = 0;
2654
Dave Jonesa61c2d72006-01-07 23:18:19 +00002655 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 struct uart_8250_port *up = &serial8250_ports[i];
2657
2658 up->port.line = i;
2659 spin_lock_init(&up->port.lock);
2660
2661 init_timer(&up->timer);
2662 up->timer.function = serial8250_timeout;
2663
2664 /*
2665 * ALPHA_KLUDGE_MCR needs to be killed.
2666 */
2667 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2668 up->mcr_force = ALPHA_KLUDGE_MCR;
2669
2670 up->port.ops = &serial8250_pops;
2671 }
2672
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002673 if (share_irqs)
2674 irqflag = IRQF_SHARED;
2675
Russell King44454bc2005-06-30 22:41:22 +01002676 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002677 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 i++, up++) {
2679 up->port.iobase = old_serial_port[i].port;
2680 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002681 up->port.irqflags = old_serial_port[i].irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 up->port.uartclk = old_serial_port[i].baud_base * 16;
2683 up->port.flags = old_serial_port[i].flags;
2684 up->port.hub6 = old_serial_port[i].hub6;
2685 up->port.membase = old_serial_port[i].iomem_base;
2686 up->port.iotype = old_serial_port[i].io_type;
2687 up->port.regshift = old_serial_port[i].iomem_reg_shift;
David Daney7d6a07d2009-01-02 13:49:47 +00002688 set_io_from_upio(&up->port);
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002689 up->port.irqflags |= irqflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 }
2691}
2692
2693static void __init
2694serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2695{
2696 int i;
2697
Alan Coxb8e7e402009-05-28 14:01:35 +01002698 for (i = 0; i < nr_uarts; i++) {
2699 struct uart_8250_port *up = &serial8250_ports[i];
2700 up->cur_iotype = 0xFF;
2701 }
2702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 serial8250_isa_init_ports();
2704
Dave Jonesa61c2d72006-01-07 23:18:19 +00002705 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 struct uart_8250_port *up = &serial8250_ports[i];
2707
2708 up->port.dev = dev;
2709 uart_add_one_port(drv, &up->port);
2710 }
2711}
2712
2713#ifdef CONFIG_SERIAL_8250_CONSOLE
2714
Russell Kingd3587882006-03-20 20:00:09 +00002715static void serial8250_console_putchar(struct uart_port *port, int ch)
2716{
2717 struct uart_8250_port *up = (struct uart_8250_port *)port;
2718
2719 wait_for_xmitr(up, UART_LSR_THRE);
2720 serial_out(up, UART_TX, ch);
2721}
2722
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723/*
2724 * Print a string to the serial port trying not to disturb
2725 * any possible real use of the port...
2726 *
2727 * The console_lock must be held when we get here.
2728 */
2729static void
2730serial8250_console_write(struct console *co, const char *s, unsigned int count)
2731{
2732 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002733 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002735 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Andrew Morton78512ec2005-11-07 00:59:13 -08002737 touch_nmi_watchdog();
2738
Andrew Morton68aa2c02006-06-30 02:29:59 -07002739 local_irq_save(flags);
2740 if (up->port.sysrq) {
2741 /* serial8250_handle_port() already took the lock */
2742 locked = 0;
2743 } else if (oops_in_progress) {
2744 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002745 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002746 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002749 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 */
2751 ier = serial_in(up, UART_IER);
2752
2753 if (up->capabilities & UART_CAP_UUE)
2754 serial_out(up, UART_IER, UART_IER_UUE);
2755 else
2756 serial_out(up, UART_IER, 0);
2757
Russell Kingd3587882006-03-20 20:00:09 +00002758 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760 /*
2761 * Finally, wait for transmitter to become empty
2762 * and restore the IER
2763 */
Alan Coxf91a3712006-01-21 14:59:12 +00002764 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002765 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002766
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002767 /*
2768 * The receive handling will happen properly because the
2769 * receive ready bit will still be set; it is not cleared
2770 * on read. However, modem control will not, we must
2771 * call it if we have saved something in the saved flags
2772 * while processing with interrupts off.
2773 */
2774 if (up->msr_saved_flags)
2775 check_modem_status(up);
2776
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002777 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002778 spin_unlock(&up->port.lock);
2779 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002782static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783{
2784 struct uart_port *port;
2785 int baud = 9600;
2786 int bits = 8;
2787 int parity = 'n';
2788 int flow = 'n';
2789
2790 /*
2791 * Check whether an invalid uart number has been specified, and
2792 * if so, search for the first available port that does have
2793 * console support.
2794 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002795 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 co->index = 0;
2797 port = &serial8250_ports[co->index].port;
2798 if (!port->iobase && !port->membase)
2799 return -ENODEV;
2800
2801 if (options)
2802 uart_parse_options(options, &baud, &parity, &bits, &flow);
2803
2804 return uart_set_options(port, co, baud, parity, bits, flow);
2805}
2806
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002807static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002808{
2809 return serial8250_find_port_for_earlycon();
2810}
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812static struct console serial8250_console = {
2813 .name = "ttyS",
2814 .write = serial8250_console_write,
2815 .device = uart_console_device,
2816 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002817 .early_setup = serial8250_console_early_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 .flags = CON_PRINTBUFFER,
2819 .index = -1,
2820 .data = &serial8250_reg,
2821};
2822
2823static int __init serial8250_console_init(void)
2824{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002825 if (nr_uarts > UART_NR)
2826 nr_uarts = UART_NR;
2827
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 serial8250_isa_init_ports();
2829 register_console(&serial8250_console);
2830 return 0;
2831}
2832console_initcall(serial8250_console_init);
2833
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002834int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
2836 int line;
2837 struct uart_port *port;
2838
Dave Jonesa61c2d72006-01-07 23:18:19 +00002839 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002841 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 return line;
2843 }
2844 return -ENODEV;
2845}
2846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847#define SERIAL8250_CONSOLE &serial8250_console
2848#else
2849#define SERIAL8250_CONSOLE NULL
2850#endif
2851
2852static struct uart_driver serial8250_reg = {
2853 .owner = THIS_MODULE,
2854 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 .dev_name = "ttyS",
2856 .major = TTY_MAJOR,
2857 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 .cons = SERIAL8250_CONSOLE,
2859};
2860
Russell Kingd856c662006-02-23 10:22:13 +00002861/*
2862 * early_serial_setup - early registration for 8250 ports
2863 *
2864 * Setup an 8250 port structure prior to console initialisation. Use
2865 * after console initialisation will cause undefined behaviour.
2866 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867int __init early_serial_setup(struct uart_port *port)
2868{
David Daneyb4304282009-01-02 13:49:41 +00002869 struct uart_port *p;
2870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 if (port->line >= ARRAY_SIZE(serial8250_ports))
2872 return -ENODEV;
2873
2874 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00002875 p = &serial8250_ports[port->line].port;
2876 p->iobase = port->iobase;
2877 p->membase = port->membase;
2878 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002879 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00002880 p->uartclk = port->uartclk;
2881 p->fifosize = port->fifosize;
2882 p->regshift = port->regshift;
2883 p->iotype = port->iotype;
2884 p->flags = port->flags;
2885 p->mapbase = port->mapbase;
2886 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01002887 p->type = port->type;
2888 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00002889
2890 set_io_from_upio(p);
2891 if (port->serial_in)
2892 p->serial_in = port->serial_in;
2893 if (port->serial_out)
2894 p->serial_out = port->serial_out;
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 return 0;
2897}
2898
2899/**
2900 * serial8250_suspend_port - suspend one serial port
2901 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 *
2903 * Suspend one serial port.
2904 */
2905void serial8250_suspend_port(int line)
2906{
2907 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
2908}
2909
2910/**
2911 * serial8250_resume_port - resume one serial port
2912 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 *
2914 * Resume one serial port.
2915 */
2916void serial8250_resume_port(int line)
2917{
David Woodhouseb5b82df2007-05-17 14:27:39 +08002918 struct uart_8250_port *up = &serial8250_ports[line];
2919
2920 if (up->capabilities & UART_NATSEMI) {
2921 unsigned char tmp;
2922
2923 /* Ensure it's still in high speed mode */
2924 serial_outp(up, UART_LCR, 0xE0);
2925
2926 tmp = serial_in(up, 0x04); /* EXCR2 */
2927 tmp &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
2928 tmp |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
2929 serial_outp(up, 0x04, tmp);
2930
2931 serial_outp(up, UART_LCR, 0);
2932 }
2933 uart_resume_port(&serial8250_reg, &up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934}
2935
2936/*
2937 * Register a set of serial devices attached to a platform device. The
2938 * list is terminated with a zero flags entry, which means we expect
2939 * all entries to have at least UPF_BOOT_AUTOCONF set.
2940 */
Russell King3ae5eae2005-11-09 22:32:44 +00002941static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942{
Russell King3ae5eae2005-11-09 22:32:44 +00002943 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 struct uart_port port;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002945 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
2947 memset(&port, 0, sizeof(struct uart_port));
2948
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002949 if (share_irqs)
2950 irqflag = IRQF_SHARED;
2951
Russell Kingec9f47c2005-06-27 11:12:54 +01002952 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08002953 port.iobase = p->iobase;
2954 port.membase = p->membase;
2955 port.irq = p->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002956 port.irqflags = p->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08002957 port.uartclk = p->uartclk;
2958 port.regshift = p->regshift;
2959 port.iotype = p->iotype;
2960 port.flags = p->flags;
2961 port.mapbase = p->mapbase;
2962 port.hub6 = p->hub6;
2963 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00002964 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00002965 port.serial_in = p->serial_in;
2966 port.serial_out = p->serial_out;
Will Newton74a197412008-02-04 22:27:50 -08002967 port.dev = &dev->dev;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002968 port.irqflags |= irqflag;
Russell Kingec9f47c2005-06-27 11:12:54 +01002969 ret = serial8250_register_port(&port);
2970 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00002971 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07002972 "(IO%lx MEM%llx IRQ%d): %d\n", i,
2973 p->iobase, (unsigned long long)p->mapbase,
2974 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01002975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 }
2977 return 0;
2978}
2979
2980/*
2981 * Remove serial ports registered against a platform device.
2982 */
Russell King3ae5eae2005-11-09 22:32:44 +00002983static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984{
2985 int i;
2986
Dave Jonesa61c2d72006-01-07 23:18:19 +00002987 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 struct uart_8250_port *up = &serial8250_ports[i];
2989
Russell King3ae5eae2005-11-09 22:32:44 +00002990 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 serial8250_unregister_port(i);
2992 }
2993 return 0;
2994}
2995
Russell King3ae5eae2005-11-09 22:32:44 +00002996static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
2998 int i;
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 for (i = 0; i < UART_NR; i++) {
3001 struct uart_8250_port *up = &serial8250_ports[i];
3002
Russell King3ae5eae2005-11-09 22:32:44 +00003003 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 uart_suspend_port(&serial8250_reg, &up->port);
3005 }
3006
3007 return 0;
3008}
3009
Russell King3ae5eae2005-11-09 22:32:44 +00003010static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011{
3012 int i;
3013
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 for (i = 0; i < UART_NR; i++) {
3015 struct uart_8250_port *up = &serial8250_ports[i];
3016
Russell King3ae5eae2005-11-09 22:32:44 +00003017 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003018 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 }
3020
3021 return 0;
3022}
3023
Russell King3ae5eae2005-11-09 22:32:44 +00003024static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 .probe = serial8250_probe,
3026 .remove = __devexit_p(serial8250_remove),
3027 .suspend = serial8250_suspend,
3028 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003029 .driver = {
3030 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003031 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003032 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033};
3034
3035/*
3036 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3037 * in the table in include/asm/serial.h
3038 */
3039static struct platform_device *serial8250_isa_devs;
3040
3041/*
3042 * serial8250_register_port and serial8250_unregister_port allows for
3043 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3044 * modems and PCI multiport cards.
3045 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003046static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
3048static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3049{
3050 int i;
3051
3052 /*
3053 * First, find a port entry which matches.
3054 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003055 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 if (uart_match_port(&serial8250_ports[i].port, port))
3057 return &serial8250_ports[i];
3058
3059 /*
3060 * We didn't find a matching entry, so look for the first
3061 * free entry. We look for one which hasn't been previously
3062 * used (indicated by zero iobase).
3063 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003064 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3066 serial8250_ports[i].port.iobase == 0)
3067 return &serial8250_ports[i];
3068
3069 /*
3070 * That also failed. Last resort is to find any entry which
3071 * doesn't have a real port associated with it.
3072 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003073 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3075 return &serial8250_ports[i];
3076
3077 return NULL;
3078}
3079
3080/**
3081 * serial8250_register_port - register a serial port
3082 * @port: serial port template
3083 *
3084 * Configure the serial port specified by the request. If the
3085 * port exists and is in use, it is hung up and unregistered
3086 * first.
3087 *
3088 * The port is then probed and if necessary the IRQ is autodetected
3089 * If this fails an error is returned.
3090 *
3091 * On success the port is ready to use and the line number is returned.
3092 */
3093int serial8250_register_port(struct uart_port *port)
3094{
3095 struct uart_8250_port *uart;
3096 int ret = -ENOSPC;
3097
3098 if (port->uartclk == 0)
3099 return -EINVAL;
3100
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003101 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
3103 uart = serial8250_find_match_or_unused(port);
3104 if (uart) {
3105 uart_remove_one_port(&serial8250_reg, &uart->port);
3106
Will Newton74a197412008-02-04 22:27:50 -08003107 uart->port.iobase = port->iobase;
3108 uart->port.membase = port->membase;
3109 uart->port.irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003110 uart->port.irqflags = port->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003111 uart->port.uartclk = port->uartclk;
3112 uart->port.fifosize = port->fifosize;
3113 uart->port.regshift = port->regshift;
3114 uart->port.iotype = port->iotype;
3115 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3116 uart->port.mapbase = port->mapbase;
3117 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 if (port->dev)
3119 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003120
3121 if (port->flags & UPF_FIXED_TYPE) {
3122 uart->port.type = port->type;
3123 uart->port.fifosize = uart_config[port->type].fifo_size;
3124 uart->capabilities = uart_config[port->type].flags;
3125 uart->tx_loadsz = uart_config[port->type].tx_loadsz;
3126 }
3127
David Daney7d6a07d2009-01-02 13:49:47 +00003128 set_io_from_upio(&uart->port);
3129 /* Possibly override default I/O functions. */
3130 if (port->serial_in)
3131 uart->port.serial_in = port->serial_in;
3132 if (port->serial_out)
3133 uart->port.serial_out = port->serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3136 if (ret == 0)
3137 ret = uart->port.line;
3138 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003139 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
3141 return ret;
3142}
3143EXPORT_SYMBOL(serial8250_register_port);
3144
3145/**
3146 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3147 * @line: serial line number
3148 *
3149 * Remove one serial port. This may not be called from interrupt
3150 * context. We hand the port back to the our control.
3151 */
3152void serial8250_unregister_port(int line)
3153{
3154 struct uart_8250_port *uart = &serial8250_ports[line];
3155
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003156 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 uart_remove_one_port(&serial8250_reg, &uart->port);
3158 if (serial8250_isa_devs) {
3159 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3160 uart->port.type = PORT_UNKNOWN;
3161 uart->port.dev = &serial8250_isa_devs->dev;
3162 uart_add_one_port(&serial8250_reg, &uart->port);
3163 } else {
3164 uart->port.dev = NULL;
3165 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003166 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167}
3168EXPORT_SYMBOL(serial8250_unregister_port);
3169
3170static int __init serial8250_init(void)
3171{
Alan Cox25db8ad2008-08-19 20:49:40 -07003172 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
Dave Jonesa61c2d72006-01-07 23:18:19 +00003174 if (nr_uarts > UART_NR)
3175 nr_uarts = UART_NR;
3176
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003177 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003178 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 share_irqs ? "en" : "dis");
3180
David Millerb70ac772008-10-13 10:36:31 +01003181#ifdef CONFIG_SPARC
3182 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3183#else
3184 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003186#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 if (ret)
3188 goto out;
3189
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003190 serial8250_isa_devs = platform_device_alloc("serial8250",
3191 PLAT8250_DEV_LEGACY);
3192 if (!serial8250_isa_devs) {
3193 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003194 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 }
3196
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003197 ret = platform_device_add(serial8250_isa_devs);
3198 if (ret)
3199 goto put_dev;
3200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3202
Russell Kingbc965a72006-01-18 09:54:29 +00003203 ret = platform_driver_register(&serial8250_isa_driver);
3204 if (ret == 0)
3205 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
Russell Kingbc965a72006-01-18 09:54:29 +00003207 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003208put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003209 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003210unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003211#ifdef CONFIG_SPARC
3212 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3213#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003215#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003216out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 return ret;
3218}
3219
3220static void __exit serial8250_exit(void)
3221{
3222 struct platform_device *isa_dev = serial8250_isa_devs;
3223
3224 /*
3225 * This tells serial8250_unregister_port() not to re-register
3226 * the ports (thereby making serial8250_isa_driver permanently
3227 * in use.)
3228 */
3229 serial8250_isa_devs = NULL;
3230
Russell King3ae5eae2005-11-09 22:32:44 +00003231 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 platform_device_unregister(isa_dev);
3233
David Millerb70ac772008-10-13 10:36:31 +01003234#ifdef CONFIG_SPARC
3235 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3236#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003238#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239}
3240
3241module_init(serial8250_init);
3242module_exit(serial8250_exit);
3243
3244EXPORT_SYMBOL(serial8250_suspend_port);
3245EXPORT_SYMBOL(serial8250_resume_port);
3246
3247MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003248MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
3250module_param(share_irqs, uint, 0644);
3251MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3252 " (unsafe)");
3253
Dave Jonesa61c2d72006-01-07 23:18:19 +00003254module_param(nr_uarts, uint, 0644);
3255MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3256
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003257module_param(skip_txen_test, uint, 0644);
3258MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3259
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260#ifdef CONFIG_SERIAL_8250_RSA
3261module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3262MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3263#endif
3264MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);