blob: c9832d963f1efaf715f78a54cbd7d14c8d3ad64c [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 *
15 * $Id: 8250.c,v 1.90 2002/07/28 10:03:27 rmk Exp $
16 *
17 * A note about mapbase / membase
18 *
19 * mapbase is the physical address of the IO port.
20 * membase is an 'ioremapped' cookie.
21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
24#define SUPPORT_SYSRQ
25#endif
26
27#include <linux/module.h>
28#include <linux/moduleparam.h>
29#include <linux/ioport.h>
30#include <linux/init.h>
31#include <linux/console.h>
32#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010034#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/tty.h>
36#include <linux/tty_flip.h>
37#include <linux/serial_reg.h>
38#include <linux/serial_core.h>
39#include <linux/serial.h>
40#include <linux/serial_8250.h>
Andrew Morton78512ec2005-11-07 00:59:13 -080041#include <linux/nmi.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000042#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/io.h>
45#include <asm/irq.h>
46
47#include "8250.h"
48
49/*
50 * Configuration:
Thomas Gleixner40663cc2006-07-01 19:29:43 -070051 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * is unsafe when used on edge-triggered interrupts.
53 */
Adrian Bunk408b6642005-05-01 08:59:29 -070054static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Dave Jonesa61c2d72006-01-07 23:18:19 +000056static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * Debugging.
60 */
61#if 0
62#define DEBUG_AUTOCONF(fmt...) printk(fmt)
63#else
64#define DEBUG_AUTOCONF(fmt...) do { } while (0)
65#endif
66
67#if 0
68#define DEBUG_INTR(fmt...) printk(fmt)
69#else
70#define DEBUG_INTR(fmt...) do { } while (0)
71#endif
72
73#define PASS_LIMIT 256
74
75/*
76 * We default to IRQ0 for the "no irq" hack. Some
77 * machine types want others as well - they're free
78 * to redefine this in their header file.
79 */
80#define is_real_interrupt(irq) ((irq) != 0)
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
83#define CONFIG_SERIAL_DETECT_IRQ 1
84#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#ifdef CONFIG_SERIAL_8250_MANY_PORTS
86#define CONFIG_SERIAL_MANY_PORTS 1
87#endif
88
89/*
90 * HUB6 is always on. This will be removed once the header
91 * files have been cleaned.
92 */
93#define CONFIG_HUB6 1
94
95#include <asm/serial.h>
96
97/*
98 * SERIAL_PORT_DFNS tells us about built-in ports that have no
99 * standard enumeration mechanism. Platforms that can find all
100 * serial ports via mechanisms like ACPI or PCI need not supply it.
101 */
102#ifndef SERIAL_PORT_DFNS
103#define SERIAL_PORT_DFNS
104#endif
105
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000106static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 SERIAL_PORT_DFNS /* defined in asm/serial.h */
108};
109
Russell King026d02a2005-06-29 18:45:19 +0100110#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112#ifdef CONFIG_SERIAL_8250_RSA
113
114#define PORT_RSA_MAX 4
115static unsigned long probe_rsa[PORT_RSA_MAX];
116static unsigned int probe_rsa_count;
117#endif /* CONFIG_SERIAL_8250_RSA */
118
119struct uart_8250_port {
120 struct uart_port port;
121 struct timer_list timer; /* "no irq" timer */
122 struct list_head list; /* ports on this IRQ */
Russell King4ba5e352005-06-23 10:43:04 +0100123 unsigned short capabilities; /* port capabilities */
124 unsigned short bugs; /* port bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 unsigned int tx_loadsz; /* transmit fifo load size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 unsigned char acr;
127 unsigned char ier;
128 unsigned char lcr;
129 unsigned char mcr;
130 unsigned char mcr_mask; /* mask of user bits */
131 unsigned char mcr_force; /* mask of forced bits */
132 unsigned char lsr_break_flag;
133
134 /*
135 * We provide a per-port pm hook.
136 */
137 void (*pm)(struct uart_port *port,
138 unsigned int state, unsigned int old);
139};
140
141struct irq_info {
142 spinlock_t lock;
143 struct list_head *head;
144};
145
146static struct irq_info irq_lists[NR_IRQS];
147
148/*
149 * Here we define the default xmit fifo size used for each type of UART.
150 */
151static const struct serial8250_config uart_config[] = {
152 [PORT_UNKNOWN] = {
153 .name = "unknown",
154 .fifo_size = 1,
155 .tx_loadsz = 1,
156 },
157 [PORT_8250] = {
158 .name = "8250",
159 .fifo_size = 1,
160 .tx_loadsz = 1,
161 },
162 [PORT_16450] = {
163 .name = "16450",
164 .fifo_size = 1,
165 .tx_loadsz = 1,
166 },
167 [PORT_16550] = {
168 .name = "16550",
169 .fifo_size = 1,
170 .tx_loadsz = 1,
171 },
172 [PORT_16550A] = {
173 .name = "16550A",
174 .fifo_size = 16,
175 .tx_loadsz = 16,
176 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
177 .flags = UART_CAP_FIFO,
178 },
179 [PORT_CIRRUS] = {
180 .name = "Cirrus",
181 .fifo_size = 1,
182 .tx_loadsz = 1,
183 },
184 [PORT_16650] = {
185 .name = "ST16650",
186 .fifo_size = 1,
187 .tx_loadsz = 1,
188 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
189 },
190 [PORT_16650V2] = {
191 .name = "ST16650V2",
192 .fifo_size = 32,
193 .tx_loadsz = 16,
194 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
195 UART_FCR_T_TRIG_00,
196 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
197 },
198 [PORT_16750] = {
199 .name = "TI16750",
200 .fifo_size = 64,
201 .tx_loadsz = 64,
202 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
203 UART_FCR7_64BYTE,
204 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
205 },
206 [PORT_STARTECH] = {
207 .name = "Startech",
208 .fifo_size = 1,
209 .tx_loadsz = 1,
210 },
211 [PORT_16C950] = {
212 .name = "16C950/954",
213 .fifo_size = 128,
214 .tx_loadsz = 128,
215 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
216 .flags = UART_CAP_FIFO,
217 },
218 [PORT_16654] = {
219 .name = "ST16654",
220 .fifo_size = 64,
221 .tx_loadsz = 32,
222 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
223 UART_FCR_T_TRIG_10,
224 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
225 },
226 [PORT_16850] = {
227 .name = "XR16850",
228 .fifo_size = 128,
229 .tx_loadsz = 128,
230 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
231 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
232 },
233 [PORT_RSA] = {
234 .name = "RSA",
235 .fifo_size = 2048,
236 .tx_loadsz = 2048,
237 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
238 .flags = UART_CAP_FIFO,
239 },
240 [PORT_NS16550A] = {
241 .name = "NS16550A",
242 .fifo_size = 16,
243 .tx_loadsz = 16,
244 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
245 .flags = UART_CAP_FIFO | UART_NATSEMI,
246 },
247 [PORT_XSCALE] = {
248 .name = "XScale",
249 .fifo_size = 32,
250 .tx_loadsz = 32,
251 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
252 .flags = UART_CAP_FIFO | UART_CAP_UUE,
253 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700254 [PORT_RM9000] = {
255 .name = "RM9000",
256 .fifo_size = 16,
257 .tx_loadsz = 16,
258 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
259 .flags = UART_CAP_FIFO,
260 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
Thomas Koellerbd71c182007-05-06 14:48:47 -0700263#if defined (CONFIG_SERIAL_8250_AU1X00)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000264
265/* Au1x00 UART hardware has a weird register layout */
266static const u8 au_io_in_map[] = {
267 [UART_RX] = 0,
268 [UART_IER] = 2,
269 [UART_IIR] = 3,
270 [UART_LCR] = 5,
271 [UART_MCR] = 6,
272 [UART_LSR] = 7,
273 [UART_MSR] = 8,
274};
275
276static const u8 au_io_out_map[] = {
277 [UART_TX] = 1,
278 [UART_IER] = 2,
279 [UART_FCR] = 4,
280 [UART_LCR] = 5,
281 [UART_MCR] = 6,
282};
283
284/* sane hardware needs no mapping */
285static inline int map_8250_in_reg(struct uart_8250_port *up, int offset)
286{
287 if (up->port.iotype != UPIO_AU)
288 return offset;
289 return au_io_in_map[offset];
290}
291
292static inline int map_8250_out_reg(struct uart_8250_port *up, int offset)
293{
294 if (up->port.iotype != UPIO_AU)
295 return offset;
296 return au_io_out_map[offset];
297}
298
Thomas Koellerbd71c182007-05-06 14:48:47 -0700299#elif defined (CONFIG_SERIAL_8250_RM9K)
300
301static const u8
302 regmap_in[8] = {
303 [UART_RX] = 0x00,
304 [UART_IER] = 0x0c,
305 [UART_IIR] = 0x14,
306 [UART_LCR] = 0x1c,
307 [UART_MCR] = 0x20,
308 [UART_LSR] = 0x24,
309 [UART_MSR] = 0x28,
310 [UART_SCR] = 0x2c
311 },
312 regmap_out[8] = {
313 [UART_TX] = 0x04,
314 [UART_IER] = 0x0c,
315 [UART_FCR] = 0x18,
316 [UART_LCR] = 0x1c,
317 [UART_MCR] = 0x20,
318 [UART_LSR] = 0x24,
319 [UART_MSR] = 0x28,
320 [UART_SCR] = 0x2c
321 };
322
323static inline int map_8250_in_reg(struct uart_8250_port *up, int offset)
324{
325 if (up->port.iotype != UPIO_RM9000)
326 return offset;
327 return regmap_in[offset];
328}
329
330static inline int map_8250_out_reg(struct uart_8250_port *up, int offset)
331{
332 if (up->port.iotype != UPIO_RM9000)
333 return offset;
334 return regmap_out[offset];
335}
336
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000337#else
338
339/* sane hardware needs no mapping */
340#define map_8250_in_reg(up, offset) (offset)
341#define map_8250_out_reg(up, offset) (offset)
342
343#endif
344
Russell Kingea8874d2006-01-04 19:43:24 +0000345static unsigned int serial_in(struct uart_8250_port *up, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700347 unsigned int tmp;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000348 offset = map_8250_in_reg(up, offset) << up->port.regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 switch (up->port.iotype) {
351 case UPIO_HUB6:
352 outb(up->port.hub6 - 1 + offset, up->port.iobase);
353 return inb(up->port.iobase + 1);
354
355 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700356 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return readb(up->port.membase + offset);
358
Thomas Koellerbd71c182007-05-06 14:48:47 -0700359 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 case UPIO_MEM32:
361 return readl(up->port.membase + offset);
362
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000363#ifdef CONFIG_SERIAL_8250_AU1X00
364 case UPIO_AU:
365 return __raw_readl(up->port.membase + offset);
366#endif
367
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700368 case UPIO_TSI:
369 if (offset == UART_IIR) {
Al Viro9e84b602006-09-23 01:39:45 +0100370 tmp = readl(up->port.membase + (UART_IIR & ~3));
371 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700372 } else
373 return readb(up->port.membase + offset);
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 default:
376 return inb(up->port.iobase + offset);
377 }
378}
379
Russell Kingea8874d2006-01-04 19:43:24 +0000380static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381serial_out(struct uart_8250_port *up, int offset, int value)
382{
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700383 /* Save the offset before it's remapped */
384 int save_offset = offset;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000385 offset = map_8250_out_reg(up, offset) << up->port.regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 switch (up->port.iotype) {
388 case UPIO_HUB6:
389 outb(up->port.hub6 - 1 + offset, up->port.iobase);
390 outb(value, up->port.iobase + 1);
391 break;
392
393 case UPIO_MEM:
394 writeb(value, up->port.membase + offset);
395 break;
396
Thomas Koellerbd71c182007-05-06 14:48:47 -0700397 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 case UPIO_MEM32:
399 writel(value, up->port.membase + offset);
400 break;
401
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000402#ifdef CONFIG_SERIAL_8250_AU1X00
403 case UPIO_AU:
404 __raw_writel(value, up->port.membase + offset);
405 break;
406#endif
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700407 case UPIO_TSI:
408 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
409 writeb(value, up->port.membase + offset);
410 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000411
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700412 case UPIO_DWAPB:
413 /* Save the LCR value so it can be re-written when a
414 * Busy Detect interrupt occurs. */
415 if (save_offset == UART_LCR)
416 up->lcr = value;
417 writeb(value, up->port.membase + offset);
418 /* Read the IER to ensure any interrupt is cleared before
419 * returning from ISR. */
420 if (save_offset == UART_TX || save_offset == UART_IER)
421 value = serial_in(up, UART_IER);
422 break;
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 default:
425 outb(value, up->port.iobase + offset);
426 }
427}
428
Alex Williamson40b36da2007-02-14 00:33:04 -0800429static void
430serial_out_sync(struct uart_8250_port *up, int offset, int value)
431{
432 switch (up->port.iotype) {
433 case UPIO_MEM:
434 case UPIO_MEM32:
435#ifdef CONFIG_SERIAL_8250_AU1X00
436 case UPIO_AU:
437#endif
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700438 case UPIO_DWAPB:
Alex Williamson40b36da2007-02-14 00:33:04 -0800439 serial_out(up, offset, value);
440 serial_in(up, UART_LCR); /* safe, no side-effects */
441 break;
442 default:
443 serial_out(up, offset, value);
444 }
445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447/*
448 * We used to support using pause I/O for certain machines. We
449 * haven't supported this for a while, but just in case it's badly
450 * needed for certain old 386 machines, I've left these #define's
451 * in....
452 */
453#define serial_inp(up, offset) serial_in(up, offset)
454#define serial_outp(up, offset, value) serial_out(up, offset, value)
455
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100456/* Uart divisor latch read */
457static inline int _serial_dl_read(struct uart_8250_port *up)
458{
459 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
460}
461
462/* Uart divisor latch write */
463static inline void _serial_dl_write(struct uart_8250_port *up, int value)
464{
465 serial_outp(up, UART_DLL, value & 0xff);
466 serial_outp(up, UART_DLM, value >> 8 & 0xff);
467}
468
Thomas Koellerbd71c182007-05-06 14:48:47 -0700469#if defined (CONFIG_SERIAL_8250_AU1X00)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100470/* Au1x00 haven't got a standard divisor latch */
471static int serial_dl_read(struct uart_8250_port *up)
472{
473 if (up->port.iotype == UPIO_AU)
474 return __raw_readl(up->port.membase + 0x28);
475 else
476 return _serial_dl_read(up);
477}
478
479static void serial_dl_write(struct uart_8250_port *up, int value)
480{
481 if (up->port.iotype == UPIO_AU)
482 __raw_writel(value, up->port.membase + 0x28);
483 else
484 _serial_dl_write(up, value);
485}
Thomas Koellerbd71c182007-05-06 14:48:47 -0700486#elif defined (CONFIG_SERIAL_8250_RM9K)
487static int serial_dl_read(struct uart_8250_port *up)
488{
489 return (up->port.iotype == UPIO_RM9000) ?
490 (((__raw_readl(up->port.membase + 0x10) << 8) |
491 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
492 _serial_dl_read(up);
493}
494
495static void serial_dl_write(struct uart_8250_port *up, int value)
496{
497 if (up->port.iotype == UPIO_RM9000) {
498 __raw_writel(value, up->port.membase + 0x08);
499 __raw_writel(value >> 8, up->port.membase + 0x10);
500 } else {
501 _serial_dl_write(up, value);
502 }
503}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100504#else
505#define serial_dl_read(up) _serial_dl_read(up)
506#define serial_dl_write(up, value) _serial_dl_write(up, value)
507#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509/*
510 * For the 16C950
511 */
512static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
513{
514 serial_out(up, UART_SCR, offset);
515 serial_out(up, UART_ICR, value);
516}
517
518static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
519{
520 unsigned int value;
521
522 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
523 serial_out(up, UART_SCR, offset);
524 value = serial_in(up, UART_ICR);
525 serial_icr_write(up, UART_ACR, up->acr);
526
527 return value;
528}
529
530/*
531 * FIFO support.
532 */
533static inline void serial8250_clear_fifos(struct uart_8250_port *p)
534{
535 if (p->capabilities & UART_CAP_FIFO) {
536 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
537 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
538 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
539 serial_outp(p, UART_FCR, 0);
540 }
541}
542
543/*
544 * IER sleep support. UARTs which have EFRs need the "extended
545 * capability" bit enabled. Note that on XR16C850s, we need to
546 * reset LCR to write to IER.
547 */
548static inline void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
549{
550 if (p->capabilities & UART_CAP_SLEEP) {
551 if (p->capabilities & UART_CAP_EFR) {
552 serial_outp(p, UART_LCR, 0xBF);
553 serial_outp(p, UART_EFR, UART_EFR_ECB);
554 serial_outp(p, UART_LCR, 0);
555 }
556 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
557 if (p->capabilities & UART_CAP_EFR) {
558 serial_outp(p, UART_LCR, 0xBF);
559 serial_outp(p, UART_EFR, 0);
560 serial_outp(p, UART_LCR, 0);
561 }
562 }
563}
564
565#ifdef CONFIG_SERIAL_8250_RSA
566/*
567 * Attempts to turn on the RSA FIFO. Returns zero on failure.
568 * We set the port uart clock rate if we succeed.
569 */
570static int __enable_rsa(struct uart_8250_port *up)
571{
572 unsigned char mode;
573 int result;
574
575 mode = serial_inp(up, UART_RSA_MSR);
576 result = mode & UART_RSA_MSR_FIFO;
577
578 if (!result) {
579 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
580 mode = serial_inp(up, UART_RSA_MSR);
581 result = mode & UART_RSA_MSR_FIFO;
582 }
583
584 if (result)
585 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
586
587 return result;
588}
589
590static void enable_rsa(struct uart_8250_port *up)
591{
592 if (up->port.type == PORT_RSA) {
593 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
594 spin_lock_irq(&up->port.lock);
595 __enable_rsa(up);
596 spin_unlock_irq(&up->port.lock);
597 }
598 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
599 serial_outp(up, UART_RSA_FRR, 0);
600 }
601}
602
603/*
604 * Attempts to turn off the RSA FIFO. Returns zero on failure.
605 * It is unknown why interrupts were disabled in here. However,
606 * the caller is expected to preserve this behaviour by grabbing
607 * the spinlock before calling this function.
608 */
609static void disable_rsa(struct uart_8250_port *up)
610{
611 unsigned char mode;
612 int result;
613
614 if (up->port.type == PORT_RSA &&
615 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
616 spin_lock_irq(&up->port.lock);
617
618 mode = serial_inp(up, UART_RSA_MSR);
619 result = !(mode & UART_RSA_MSR_FIFO);
620
621 if (!result) {
622 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
623 mode = serial_inp(up, UART_RSA_MSR);
624 result = !(mode & UART_RSA_MSR_FIFO);
625 }
626
627 if (result)
628 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
629 spin_unlock_irq(&up->port.lock);
630 }
631}
632#endif /* CONFIG_SERIAL_8250_RSA */
633
634/*
635 * This is a quickie test to see how big the FIFO is.
636 * It doesn't work at all the time, more's the pity.
637 */
638static int size_fifo(struct uart_8250_port *up)
639{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100640 unsigned char old_fcr, old_mcr, old_lcr;
641 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 int count;
643
644 old_lcr = serial_inp(up, UART_LCR);
645 serial_outp(up, UART_LCR, 0);
646 old_fcr = serial_inp(up, UART_FCR);
647 old_mcr = serial_inp(up, UART_MCR);
648 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
649 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
650 serial_outp(up, UART_MCR, UART_MCR_LOOP);
651 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100652 old_dl = serial_dl_read(up);
653 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 serial_outp(up, UART_LCR, 0x03);
655 for (count = 0; count < 256; count++)
656 serial_outp(up, UART_TX, count);
657 mdelay(20);/* FIXME - schedule_timeout */
658 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
659 (count < 256); count++)
660 serial_inp(up, UART_RX);
661 serial_outp(up, UART_FCR, old_fcr);
662 serial_outp(up, UART_MCR, old_mcr);
663 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100664 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 serial_outp(up, UART_LCR, old_lcr);
666
667 return count;
668}
669
670/*
671 * Read UART ID using the divisor method - set DLL and DLM to zero
672 * and the revision will be in DLL and device type in DLM. We
673 * preserve the device state across this.
674 */
675static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
676{
677 unsigned char old_dll, old_dlm, old_lcr;
678 unsigned int id;
679
680 old_lcr = serial_inp(p, UART_LCR);
681 serial_outp(p, UART_LCR, UART_LCR_DLAB);
682
683 old_dll = serial_inp(p, UART_DLL);
684 old_dlm = serial_inp(p, UART_DLM);
685
686 serial_outp(p, UART_DLL, 0);
687 serial_outp(p, UART_DLM, 0);
688
689 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
690
691 serial_outp(p, UART_DLL, old_dll);
692 serial_outp(p, UART_DLM, old_dlm);
693 serial_outp(p, UART_LCR, old_lcr);
694
695 return id;
696}
697
698/*
699 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
700 * When this function is called we know it is at least a StarTech
701 * 16650 V2, but it might be one of several StarTech UARTs, or one of
702 * its clones. (We treat the broken original StarTech 16650 V1 as a
703 * 16550, and why not? Startech doesn't seem to even acknowledge its
704 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700705 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 * What evil have men's minds wrought...
707 */
708static void autoconfig_has_efr(struct uart_8250_port *up)
709{
710 unsigned int id1, id2, id3, rev;
711
712 /*
713 * Everything with an EFR has SLEEP
714 */
715 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
716
717 /*
718 * First we check to see if it's an Oxford Semiconductor UART.
719 *
720 * If we have to do this here because some non-National
721 * Semiconductor clone chips lock up if you try writing to the
722 * LSR register (which serial_icr_read does)
723 */
724
725 /*
726 * Check for Oxford Semiconductor 16C950.
727 *
728 * EFR [4] must be set else this test fails.
729 *
730 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
731 * claims that it's needed for 952 dual UART's (which are not
732 * recommended for new designs).
733 */
734 up->acr = 0;
735 serial_out(up, UART_LCR, 0xBF);
736 serial_out(up, UART_EFR, UART_EFR_ECB);
737 serial_out(up, UART_LCR, 0x00);
738 id1 = serial_icr_read(up, UART_ID1);
739 id2 = serial_icr_read(up, UART_ID2);
740 id3 = serial_icr_read(up, UART_ID3);
741 rev = serial_icr_read(up, UART_REV);
742
743 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
744
745 if (id1 == 0x16 && id2 == 0xC9 &&
746 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
747 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100748
749 /*
750 * Enable work around for the Oxford Semiconductor 952 rev B
751 * chip which causes it to seriously miscalculate baud rates
752 * when DLL is 0.
753 */
754 if (id3 == 0x52 && rev == 0x01)
755 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return;
757 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /*
760 * We check for a XR16C850 by setting DLL and DLM to 0, and then
761 * reading back DLL and DLM. The chip type depends on the DLM
762 * value read back:
763 * 0x10 - XR16C850 and the DLL contains the chip revision.
764 * 0x12 - XR16C2850.
765 * 0x14 - XR16C854.
766 */
767 id1 = autoconfig_read_divisor_id(up);
768 DEBUG_AUTOCONF("850id=%04x ", id1);
769
770 id2 = id1 >> 8;
771 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 up->port.type = PORT_16850;
773 return;
774 }
775
776 /*
777 * It wasn't an XR16C850.
778 *
779 * We distinguish between the '654 and the '650 by counting
780 * how many bytes are in the FIFO. I'm using this for now,
781 * since that's the technique that was sent to me in the
782 * serial driver update, but I'm not convinced this works.
783 * I've had problems doing this in the past. -TYT
784 */
785 if (size_fifo(up) == 64)
786 up->port.type = PORT_16654;
787 else
788 up->port.type = PORT_16650V2;
789}
790
791/*
792 * We detected a chip without a FIFO. Only two fall into
793 * this category - the original 8250 and the 16450. The
794 * 16450 has a scratch register (accessible with LCR=0)
795 */
796static void autoconfig_8250(struct uart_8250_port *up)
797{
798 unsigned char scratch, status1, status2;
799
800 up->port.type = PORT_8250;
801
802 scratch = serial_in(up, UART_SCR);
803 serial_outp(up, UART_SCR, 0xa5);
804 status1 = serial_in(up, UART_SCR);
805 serial_outp(up, UART_SCR, 0x5a);
806 status2 = serial_in(up, UART_SCR);
807 serial_outp(up, UART_SCR, scratch);
808
809 if (status1 == 0xa5 && status2 == 0x5a)
810 up->port.type = PORT_16450;
811}
812
813static int broken_efr(struct uart_8250_port *up)
814{
815 /*
816 * Exar ST16C2550 "A2" devices incorrectly detect as
817 * having an EFR, and report an ID of 0x0201. See
818 * http://www.exar.com/info.php?pdf=dan180_oct2004.pdf
819 */
820 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
821 return 1;
822
823 return 0;
824}
825
826/*
827 * We know that the chip has FIFOs. Does it have an EFR? The
828 * EFR is located in the same register position as the IIR and
829 * we know the top two bits of the IIR are currently set. The
830 * EFR should contain zero. Try to read the EFR.
831 */
832static void autoconfig_16550a(struct uart_8250_port *up)
833{
834 unsigned char status1, status2;
835 unsigned int iersave;
836
837 up->port.type = PORT_16550A;
838 up->capabilities |= UART_CAP_FIFO;
839
840 /*
841 * Check for presence of the EFR when DLAB is set.
842 * Only ST16C650V1 UARTs pass this test.
843 */
844 serial_outp(up, UART_LCR, UART_LCR_DLAB);
845 if (serial_in(up, UART_EFR) == 0) {
846 serial_outp(up, UART_EFR, 0xA8);
847 if (serial_in(up, UART_EFR) != 0) {
848 DEBUG_AUTOCONF("EFRv1 ");
849 up->port.type = PORT_16650;
850 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
851 } else {
852 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
853 }
854 serial_outp(up, UART_EFR, 0);
855 return;
856 }
857
858 /*
859 * Maybe it requires 0xbf to be written to the LCR.
860 * (other ST16C650V2 UARTs, TI16C752A, etc)
861 */
862 serial_outp(up, UART_LCR, 0xBF);
863 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
864 DEBUG_AUTOCONF("EFRv2 ");
865 autoconfig_has_efr(up);
866 return;
867 }
868
869 /*
870 * Check for a National Semiconductor SuperIO chip.
871 * Attempt to switch to bank 2, read the value of the LOOP bit
872 * from EXCR1. Switch back to bank 0, change it in MCR. Then
873 * switch back to bank 2, read it from EXCR1 again and check
874 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 */
876 serial_outp(up, UART_LCR, 0);
877 status1 = serial_in(up, UART_MCR);
878 serial_outp(up, UART_LCR, 0xE0);
879 status2 = serial_in(up, 0x02); /* EXCR1 */
880
881 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
882 serial_outp(up, UART_LCR, 0);
883 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
884 serial_outp(up, UART_LCR, 0xE0);
885 status2 = serial_in(up, 0x02); /* EXCR1 */
886 serial_outp(up, UART_LCR, 0);
887 serial_outp(up, UART_MCR, status1);
888
889 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100890 unsigned short quot;
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100893
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100894 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +0100895 quot <<= 3;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 status1 = serial_in(up, 0x04); /* EXCR1 */
898 status1 &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
899 status1 |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
900 serial_outp(up, 0x04, status1);
Thomas Koellerbd71c182007-05-06 14:48:47 -0700901
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100902 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
David Woodhouse857dde22005-05-21 15:52:23 +0100904 serial_outp(up, UART_LCR, 0);
905
906 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 up->port.type = PORT_NS16550A;
908 up->capabilities |= UART_NATSEMI;
909 return;
910 }
911 }
912
913 /*
914 * No EFR. Try to detect a TI16750, which only sets bit 5 of
915 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
916 * Try setting it with and without DLAB set. Cheap clones
917 * set bit 5 without DLAB set.
918 */
919 serial_outp(up, UART_LCR, 0);
920 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
921 status1 = serial_in(up, UART_IIR) >> 5;
922 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
923 serial_outp(up, UART_LCR, UART_LCR_DLAB);
924 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
925 status2 = serial_in(up, UART_IIR) >> 5;
926 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
927 serial_outp(up, UART_LCR, 0);
928
929 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
930
931 if (status1 == 6 && status2 == 7) {
932 up->port.type = PORT_16750;
933 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
934 return;
935 }
936
937 /*
938 * Try writing and reading the UART_IER_UUE bit (b6).
939 * If it works, this is probably one of the Xscale platform's
940 * internal UARTs.
941 * We're going to explicitly set the UUE bit to 0 before
942 * trying to write and read a 1 just to make sure it's not
943 * already a 1 and maybe locked there before we even start start.
944 */
945 iersave = serial_in(up, UART_IER);
946 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
947 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
948 /*
949 * OK it's in a known zero state, try writing and reading
950 * without disturbing the current state of the other bits.
951 */
952 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
953 if (serial_in(up, UART_IER) & UART_IER_UUE) {
954 /*
955 * It's an Xscale.
956 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
957 */
958 DEBUG_AUTOCONF("Xscale ");
959 up->port.type = PORT_XSCALE;
960 up->capabilities |= UART_CAP_UUE;
961 return;
962 }
963 } else {
964 /*
965 * If we got here we couldn't force the IER_UUE bit to 0.
966 * Log it and continue.
967 */
968 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
969 }
970 serial_outp(up, UART_IER, iersave);
971}
972
973/*
974 * This routine is called by rs_init() to initialize a specific serial
975 * port. It determines what type of UART chip this serial port is
976 * using: 8250, 16450, 16550, 16550A. The important question is
977 * whether or not this UART is a 16550A or not, since this will
978 * determine whether or not we can use its FIFO features or not.
979 */
980static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
981{
982 unsigned char status1, scratch, scratch2, scratch3;
983 unsigned char save_lcr, save_mcr;
984 unsigned long flags;
985
986 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
987 return;
988
989 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04x, 0x%p): ",
990 up->port.line, up->port.iobase, up->port.membase);
991
992 /*
993 * We really do need global IRQs disabled here - we're going to
994 * be frobbing the chips IRQ enable register to see if it exists.
995 */
996 spin_lock_irqsave(&up->port.lock, flags);
997// save_flags(flags); cli();
998
999 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001000 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 if (!(up->port.flags & UPF_BUGGY_UART)) {
1003 /*
1004 * Do a simple existence test first; if we fail this,
1005 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 * 0x80 is used as a nonsense port to prevent against
1008 * false positives due to ISA bus float. The
1009 * assumption is that 0x80 is a non-existent port;
1010 * which should be safe since include/asm/io.h also
1011 * makes this assumption.
1012 *
1013 * Note: this is safe as long as MCR bit 4 is clear
1014 * and the device is in "PC" mode.
1015 */
1016 scratch = serial_inp(up, UART_IER);
1017 serial_outp(up, UART_IER, 0);
1018#ifdef __i386__
1019 outb(0xff, 0x080);
1020#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001021 /*
1022 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1023 * 16C754B) allow only to modify them if an EFR bit is set.
1024 */
1025 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 serial_outp(up, UART_IER, 0x0F);
1027#ifdef __i386__
1028 outb(0, 0x080);
1029#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001030 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 serial_outp(up, UART_IER, scratch);
1032 if (scratch2 != 0 || scratch3 != 0x0F) {
1033 /*
1034 * We failed; there's nothing here
1035 */
1036 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1037 scratch2, scratch3);
1038 goto out;
1039 }
1040 }
1041
1042 save_mcr = serial_in(up, UART_MCR);
1043 save_lcr = serial_in(up, UART_LCR);
1044
Thomas Koellerbd71c182007-05-06 14:48:47 -07001045 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 * Check to see if a UART is really there. Certain broken
1047 * internal modems based on the Rockwell chipset fail this
1048 * test, because they apparently don't implement the loopback
1049 * test mode. So this test is skipped on the COM 1 through
1050 * COM 4 ports. This *should* be safe, since no board
1051 * manufacturer would be stupid enough to design a board
1052 * that conflicts with COM 1-4 --- we hope!
1053 */
1054 if (!(up->port.flags & UPF_SKIP_TEST)) {
1055 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1056 status1 = serial_inp(up, UART_MSR) & 0xF0;
1057 serial_outp(up, UART_MCR, save_mcr);
1058 if (status1 != 0x90) {
1059 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1060 status1);
1061 goto out;
1062 }
1063 }
1064
1065 /*
1066 * We're pretty sure there's a port here. Lets find out what
1067 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001068 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 * determines what we test for next.
1070 *
1071 * We also initialise the EFR (if any) to zero for later. The
1072 * EFR occupies the same register location as the FCR and IIR.
1073 */
1074 serial_outp(up, UART_LCR, 0xBF);
1075 serial_outp(up, UART_EFR, 0);
1076 serial_outp(up, UART_LCR, 0);
1077
1078 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1079 scratch = serial_in(up, UART_IIR) >> 6;
1080
1081 DEBUG_AUTOCONF("iir=%d ", scratch);
1082
1083 switch (scratch) {
1084 case 0:
1085 autoconfig_8250(up);
1086 break;
1087 case 1:
1088 up->port.type = PORT_UNKNOWN;
1089 break;
1090 case 2:
1091 up->port.type = PORT_16550;
1092 break;
1093 case 3:
1094 autoconfig_16550a(up);
1095 break;
1096 }
1097
1098#ifdef CONFIG_SERIAL_8250_RSA
1099 /*
1100 * Only probe for RSA ports if we got the region.
1101 */
1102 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1103 int i;
1104
1105 for (i = 0 ; i < probe_rsa_count; ++i) {
1106 if (probe_rsa[i] == up->port.iobase &&
1107 __enable_rsa(up)) {
1108 up->port.type = PORT_RSA;
1109 break;
1110 }
1111 }
1112 }
1113#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001114
1115#ifdef CONFIG_SERIAL_8250_AU1X00
1116 /* if access method is AU, it is a 16550 with a quirk */
1117 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
1118 up->bugs |= UART_BUG_NOMSR;
1119#endif
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 serial_outp(up, UART_LCR, save_lcr);
1122
1123 if (up->capabilities != uart_config[up->port.type].flags) {
1124 printk(KERN_WARNING
1125 "ttyS%d: detected caps %08x should be %08x\n",
1126 up->port.line, up->capabilities,
1127 uart_config[up->port.type].flags);
1128 }
1129
1130 up->port.fifosize = uart_config[up->port.type].fifo_size;
1131 up->capabilities = uart_config[up->port.type].flags;
1132 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1133
1134 if (up->port.type == PORT_UNKNOWN)
1135 goto out;
1136
1137 /*
1138 * Reset the UART.
1139 */
1140#ifdef CONFIG_SERIAL_8250_RSA
1141 if (up->port.type == PORT_RSA)
1142 serial_outp(up, UART_RSA_FRR, 0);
1143#endif
1144 serial_outp(up, UART_MCR, save_mcr);
1145 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001146 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001147 if (up->capabilities & UART_CAP_UUE)
1148 serial_outp(up, UART_IER, UART_IER_UUE);
1149 else
1150 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Thomas Koellerbd71c182007-05-06 14:48:47 -07001152 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 spin_unlock_irqrestore(&up->port.lock, flags);
1154// restore_flags(flags);
1155 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1156}
1157
1158static void autoconfig_irq(struct uart_8250_port *up)
1159{
1160 unsigned char save_mcr, save_ier;
1161 unsigned char save_ICP = 0;
1162 unsigned int ICP = 0;
1163 unsigned long irqs;
1164 int irq;
1165
1166 if (up->port.flags & UPF_FOURPORT) {
1167 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1168 save_ICP = inb_p(ICP);
1169 outb_p(0x80, ICP);
1170 (void) inb_p(ICP);
1171 }
1172
1173 /* forget possible initially masked and pending IRQ */
1174 probe_irq_off(probe_irq_on());
1175 save_mcr = serial_inp(up, UART_MCR);
1176 save_ier = serial_inp(up, UART_IER);
1177 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 irqs = probe_irq_on();
1180 serial_outp(up, UART_MCR, 0);
1181 udelay (10);
1182 if (up->port.flags & UPF_FOURPORT) {
1183 serial_outp(up, UART_MCR,
1184 UART_MCR_DTR | UART_MCR_RTS);
1185 } else {
1186 serial_outp(up, UART_MCR,
1187 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1188 }
1189 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1190 (void)serial_inp(up, UART_LSR);
1191 (void)serial_inp(up, UART_RX);
1192 (void)serial_inp(up, UART_IIR);
1193 (void)serial_inp(up, UART_MSR);
1194 serial_outp(up, UART_TX, 0xFF);
1195 udelay (20);
1196 irq = probe_irq_off(irqs);
1197
1198 serial_outp(up, UART_MCR, save_mcr);
1199 serial_outp(up, UART_IER, save_ier);
1200
1201 if (up->port.flags & UPF_FOURPORT)
1202 outb_p(save_ICP, ICP);
1203
1204 up->port.irq = (irq > 0) ? irq : 0;
1205}
1206
Russell Kinge763b902005-06-29 18:41:51 +01001207static inline void __stop_tx(struct uart_8250_port *p)
1208{
1209 if (p->ier & UART_IER_THRI) {
1210 p->ier &= ~UART_IER_THRI;
1211 serial_out(p, UART_IER, p->ier);
1212 }
1213}
1214
Russell Kingb129a8c2005-08-31 10:12:14 +01001215static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 struct uart_8250_port *up = (struct uart_8250_port *)port;
1218
Russell Kinge763b902005-06-29 18:41:51 +01001219 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 /*
Russell Kinge763b902005-06-29 18:41:51 +01001222 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 */
Russell Kinge763b902005-06-29 18:41:51 +01001224 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 up->acr |= UART_ACR_TXDIS;
1226 serial_icr_write(up, UART_ACR, up->acr);
1227 }
1228}
1229
Russell King55d3b282005-06-23 15:05:41 +01001230static void transmit_chars(struct uart_8250_port *up);
1231
Russell Kingb129a8c2005-08-31 10:12:14 +01001232static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
1234 struct uart_8250_port *up = (struct uart_8250_port *)port;
1235
1236 if (!(up->ier & UART_IER_THRI)) {
1237 up->ier |= UART_IER_THRI;
1238 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001239
Russell King67f76542005-06-23 22:26:43 +01001240 if (up->bugs & UART_BUG_TXEN) {
Russell King55d3b282005-06-23 15:05:41 +01001241 unsigned char lsr, iir;
1242 lsr = serial_in(up, UART_LSR);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001243 iir = serial_in(up, UART_IIR) & 0x0f;
1244 if ((up->port.type == PORT_RM9000) ?
1245 (lsr & UART_LSR_THRE &&
1246 (iir == UART_IIR_NO_INT || iir == UART_IIR_THRI)) :
1247 (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT))
Russell King55d3b282005-06-23 15:05:41 +01001248 transmit_chars(up);
1249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
Russell Kinge763b902005-06-29 18:41:51 +01001251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /*
Russell Kinge763b902005-06-29 18:41:51 +01001253 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 */
Russell Kinge763b902005-06-29 18:41:51 +01001255 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 up->acr &= ~UART_ACR_TXDIS;
1257 serial_icr_write(up, UART_ACR, up->acr);
1258 }
1259}
1260
1261static void serial8250_stop_rx(struct uart_port *port)
1262{
1263 struct uart_8250_port *up = (struct uart_8250_port *)port;
1264
1265 up->ier &= ~UART_IER_RLSI;
1266 up->port.read_status_mask &= ~UART_LSR_DR;
1267 serial_out(up, UART_IER, up->ier);
1268}
1269
1270static void serial8250_enable_ms(struct uart_port *port)
1271{
1272 struct uart_8250_port *up = (struct uart_8250_port *)port;
1273
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001274 /* no MSR capabilities */
1275 if (up->bugs & UART_BUG_NOMSR)
1276 return;
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 up->ier |= UART_IER_MSI;
1279 serial_out(up, UART_IER, up->ier);
1280}
1281
Russell Kingea8874d2006-01-04 19:43:24 +00001282static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001283receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
1285 struct tty_struct *tty = up->port.info->tty;
1286 unsigned char ch, lsr = *status;
1287 int max_count = 256;
1288 char flag;
1289
1290 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 ch = serial_inp(up, UART_RX);
1292 flag = TTY_NORMAL;
1293 up->port.icount.rx++;
1294
1295#ifdef CONFIG_SERIAL_8250_CONSOLE
1296 /*
1297 * Recover the break flag from console xmit
1298 */
1299 if (up->port.line == up->port.cons->index) {
1300 lsr |= up->lsr_break_flag;
1301 up->lsr_break_flag = 0;
1302 }
1303#endif
1304
1305 if (unlikely(lsr & (UART_LSR_BI | UART_LSR_PE |
1306 UART_LSR_FE | UART_LSR_OE))) {
1307 /*
1308 * For statistics only
1309 */
1310 if (lsr & UART_LSR_BI) {
1311 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1312 up->port.icount.brk++;
1313 /*
1314 * We do the SysRQ and SAK checking
1315 * here because otherwise the break
1316 * may get masked by ignore_status_mask
1317 * or read_status_mask.
1318 */
1319 if (uart_handle_break(&up->port))
1320 goto ignore_char;
1321 } else if (lsr & UART_LSR_PE)
1322 up->port.icount.parity++;
1323 else if (lsr & UART_LSR_FE)
1324 up->port.icount.frame++;
1325 if (lsr & UART_LSR_OE)
1326 up->port.icount.overrun++;
1327
1328 /*
Russell King23907eb2005-04-16 15:26:39 -07001329 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 */
1331 lsr &= up->port.read_status_mask;
1332
1333 if (lsr & UART_LSR_BI) {
1334 DEBUG_INTR("handling break....");
1335 flag = TTY_BREAK;
1336 } else if (lsr & UART_LSR_PE)
1337 flag = TTY_PARITY;
1338 else if (lsr & UART_LSR_FE)
1339 flag = TTY_FRAME;
1340 }
David Howells7d12e782006-10-05 14:55:46 +01001341 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001343
1344 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 ignore_char:
1347 lsr = serial_inp(up, UART_LSR);
1348 } while ((lsr & UART_LSR_DR) && (max_count-- > 0));
1349 spin_unlock(&up->port.lock);
1350 tty_flip_buffer_push(tty);
1351 spin_lock(&up->port.lock);
1352 *status = lsr;
1353}
1354
Russell Kingea8874d2006-01-04 19:43:24 +00001355static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 struct circ_buf *xmit = &up->port.info->xmit;
1358 int count;
1359
1360 if (up->port.x_char) {
1361 serial_outp(up, UART_TX, up->port.x_char);
1362 up->port.icount.tx++;
1363 up->port.x_char = 0;
1364 return;
1365 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001366 if (uart_tx_stopped(&up->port)) {
1367 serial8250_stop_tx(&up->port);
1368 return;
1369 }
1370 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001371 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return;
1373 }
1374
1375 count = up->tx_loadsz;
1376 do {
1377 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1378 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1379 up->port.icount.tx++;
1380 if (uart_circ_empty(xmit))
1381 break;
1382 } while (--count > 0);
1383
1384 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1385 uart_write_wakeup(&up->port);
1386
1387 DEBUG_INTR("THRE...");
1388
1389 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001390 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
Russell King2af7cd62006-01-04 16:55:09 +00001393static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
Russell King2af7cd62006-01-04 16:55:09 +00001395 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Taku Izumifdc30b32007-04-23 14:41:00 -07001397 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
1398 up->port.info != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001399 if (status & UART_MSR_TERI)
1400 up->port.icount.rng++;
1401 if (status & UART_MSR_DDSR)
1402 up->port.icount.dsr++;
1403 if (status & UART_MSR_DDCD)
1404 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1405 if (status & UART_MSR_DCTS)
1406 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Russell King2af7cd62006-01-04 16:55:09 +00001408 wake_up_interruptible(&up->port.info->delta_msr_wait);
1409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Russell King2af7cd62006-01-04 16:55:09 +00001411 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
1414/*
1415 * This handles the interrupt from one port.
1416 */
1417static inline void
David Howells7d12e782006-10-05 14:55:46 +01001418serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
Russell King45e24602006-01-04 19:19:06 +00001420 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001421 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001422
Jiri Kosina4bf36312007-04-23 14:41:21 -07001423 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001424
1425 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 DEBUG_INTR("status = %x...", status);
1428
1429 if (status & UART_LSR_DR)
David Howells7d12e782006-10-05 14:55:46 +01001430 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 check_modem_status(up);
1432 if (status & UART_LSR_THRE)
1433 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001434
Jiri Kosina4bf36312007-04-23 14:41:21 -07001435 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438/*
1439 * This is the serial driver's interrupt routine.
1440 *
1441 * Arjan thinks the old way was overly complex, so it got simplified.
1442 * Alan disagrees, saying that need the complexity to handle the weird
1443 * nature of ISA shared interrupts. (This is a special exception.)
1444 *
1445 * In order to handle ISA shared interrupts properly, we need to check
1446 * that all ports have been serviced, and therefore the ISA interrupt
1447 * line has been de-asserted.
1448 *
1449 * This means we need to loop through all ports. checking that they
1450 * don't have an interrupt pending.
1451 */
David Howells7d12e782006-10-05 14:55:46 +01001452static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
1454 struct irq_info *i = dev_id;
1455 struct list_head *l, *end = NULL;
1456 int pass_counter = 0, handled = 0;
1457
1458 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1459
1460 spin_lock(&i->lock);
1461
1462 l = i->head;
1463 do {
1464 struct uart_8250_port *up;
1465 unsigned int iir;
1466
1467 up = list_entry(l, struct uart_8250_port, list);
1468
1469 iir = serial_in(up, UART_IIR);
1470 if (!(iir & UART_IIR_NO_INT)) {
David Howells7d12e782006-10-05 14:55:46 +01001471 serial8250_handle_port(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 handled = 1;
1474
1475 end = NULL;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001476 } else if (up->port.iotype == UPIO_DWAPB &&
1477 (iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
1478 /* The DesignWare APB UART has an Busy Detect (0x07)
1479 * interrupt meaning an LCR write attempt occured while the
1480 * UART was busy. The interrupt must be cleared by reading
1481 * the UART status register (USR) and the LCR re-written. */
1482 unsigned int status;
1483 status = *(volatile u32 *)up->port.private_data;
1484 serial_out(up, UART_LCR, up->lcr);
1485
1486 handled = 1;
1487
1488 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 } else if (end == NULL)
1490 end = l;
1491
1492 l = l->next;
1493
1494 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1495 /* If we hit this, we're dead. */
1496 printk(KERN_ERR "serial8250: too much work for "
1497 "irq%d\n", irq);
1498 break;
1499 }
1500 } while (l != end);
1501
1502 spin_unlock(&i->lock);
1503
1504 DEBUG_INTR("end.\n");
1505
1506 return IRQ_RETVAL(handled);
1507}
1508
1509/*
1510 * To support ISA shared interrupts, we need to have one interrupt
1511 * handler that ensures that the IRQ line has been deasserted
1512 * before returning. Failing to do this will result in the IRQ
1513 * line being stuck active, and, since ISA irqs are edge triggered,
1514 * no more IRQs will be seen.
1515 */
1516static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1517{
1518 spin_lock_irq(&i->lock);
1519
1520 if (!list_empty(i->head)) {
1521 if (i->head == &up->list)
1522 i->head = i->head->next;
1523 list_del(&up->list);
1524 } else {
1525 BUG_ON(i->head != &up->list);
1526 i->head = NULL;
1527 }
1528
1529 spin_unlock_irq(&i->lock);
1530}
1531
1532static int serial_link_irq_chain(struct uart_8250_port *up)
1533{
1534 struct irq_info *i = irq_lists + up->port.irq;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001535 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 spin_lock_irq(&i->lock);
1538
1539 if (i->head) {
1540 list_add(&up->list, i->head);
1541 spin_unlock_irq(&i->lock);
1542
1543 ret = 0;
1544 } else {
1545 INIT_LIST_HEAD(&up->list);
1546 i->head = &up->list;
1547 spin_unlock_irq(&i->lock);
1548
1549 ret = request_irq(up->port.irq, serial8250_interrupt,
1550 irq_flags, "serial", i);
1551 if (ret < 0)
1552 serial_do_unlink(i, up);
1553 }
1554
1555 return ret;
1556}
1557
1558static void serial_unlink_irq_chain(struct uart_8250_port *up)
1559{
1560 struct irq_info *i = irq_lists + up->port.irq;
1561
1562 BUG_ON(i->head == NULL);
1563
1564 if (list_empty(i->head))
1565 free_irq(up->port.irq, i);
1566
1567 serial_do_unlink(i, up);
1568}
1569
Alex Williamson40b36da2007-02-14 00:33:04 -08001570/* Base timer interval for polling */
1571static inline int poll_timeout(int timeout)
1572{
1573 return timeout > 6 ? (timeout / 2 - 2) : 1;
1574}
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576/*
1577 * This function is used to handle ports that do not have an
1578 * interrupt. This doesn't work very well for 16450's, but gives
1579 * barely passable results for a 16550A. (Although at the expense
1580 * of much CPU overhead).
1581 */
1582static void serial8250_timeout(unsigned long data)
1583{
1584 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 unsigned int iir;
1586
1587 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001588 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001589 serial8250_handle_port(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001590 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout));
1591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Alex Williamson40b36da2007-02-14 00:33:04 -08001593static void serial8250_backup_timeout(unsigned long data)
1594{
1595 struct uart_8250_port *up = (struct uart_8250_port *)data;
1596 unsigned int iir, ier = 0;
1597
1598 /*
1599 * Must disable interrupts or else we risk racing with the interrupt
1600 * based handler.
1601 */
1602 if (is_real_interrupt(up->port.irq)) {
1603 ier = serial_in(up, UART_IER);
1604 serial_out(up, UART_IER, 0);
1605 }
1606
1607 iir = serial_in(up, UART_IIR);
1608
1609 /*
1610 * This should be a safe test for anyone who doesn't trust the
1611 * IIR bits on their UART, but it's specifically designed for
1612 * the "Diva" UART used on the management processor on many HP
1613 * ia64 and parisc boxes.
1614 */
1615 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
1616 (!uart_circ_empty(&up->port.info->xmit) || up->port.x_char) &&
1617 (serial_in(up, UART_LSR) & UART_LSR_THRE)) {
1618 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1619 iir |= UART_IIR_THRI;
1620 }
1621
1622 if (!(iir & UART_IIR_NO_INT))
1623 serial8250_handle_port(up);
1624
1625 if (is_real_interrupt(up->port.irq))
1626 serial_out(up, UART_IER, ier);
1627
1628 /* Standard timer interval plus 0.2s to keep the port running */
1629 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout) + HZ/5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
1631
1632static unsigned int serial8250_tx_empty(struct uart_port *port)
1633{
1634 struct uart_8250_port *up = (struct uart_8250_port *)port;
1635 unsigned long flags;
1636 unsigned int ret;
1637
1638 spin_lock_irqsave(&up->port.lock, flags);
1639 ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
1640 spin_unlock_irqrestore(&up->port.lock, flags);
1641
1642 return ret;
1643}
1644
1645static unsigned int serial8250_get_mctrl(struct uart_port *port)
1646{
1647 struct uart_8250_port *up = (struct uart_8250_port *)port;
Russell King2af7cd62006-01-04 16:55:09 +00001648 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 unsigned int ret;
1650
Russell King2af7cd62006-01-04 16:55:09 +00001651 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653 ret = 0;
1654 if (status & UART_MSR_DCD)
1655 ret |= TIOCM_CAR;
1656 if (status & UART_MSR_RI)
1657 ret |= TIOCM_RNG;
1658 if (status & UART_MSR_DSR)
1659 ret |= TIOCM_DSR;
1660 if (status & UART_MSR_CTS)
1661 ret |= TIOCM_CTS;
1662 return ret;
1663}
1664
1665static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1666{
1667 struct uart_8250_port *up = (struct uart_8250_port *)port;
1668 unsigned char mcr = 0;
1669
1670 if (mctrl & TIOCM_RTS)
1671 mcr |= UART_MCR_RTS;
1672 if (mctrl & TIOCM_DTR)
1673 mcr |= UART_MCR_DTR;
1674 if (mctrl & TIOCM_OUT1)
1675 mcr |= UART_MCR_OUT1;
1676 if (mctrl & TIOCM_OUT2)
1677 mcr |= UART_MCR_OUT2;
1678 if (mctrl & TIOCM_LOOP)
1679 mcr |= UART_MCR_LOOP;
1680
1681 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1682
1683 serial_out(up, UART_MCR, mcr);
1684}
1685
1686static void serial8250_break_ctl(struct uart_port *port, int break_state)
1687{
1688 struct uart_8250_port *up = (struct uart_8250_port *)port;
1689 unsigned long flags;
1690
1691 spin_lock_irqsave(&up->port.lock, flags);
1692 if (break_state == -1)
1693 up->lcr |= UART_LCR_SBC;
1694 else
1695 up->lcr &= ~UART_LCR_SBC;
1696 serial_out(up, UART_LCR, up->lcr);
1697 spin_unlock_irqrestore(&up->port.lock, flags);
1698}
1699
Alex Williamson40b36da2007-02-14 00:33:04 -08001700#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
1701
1702/*
1703 * Wait for transmitter & holding register to empty
1704 */
1705static inline void wait_for_xmitr(struct uart_8250_port *up, int bits)
1706{
1707 unsigned int status, tmout = 10000;
1708
1709 /* Wait up to 10ms for the character(s) to be sent. */
1710 do {
1711 status = serial_in(up, UART_LSR);
1712
1713 if (status & UART_LSR_BI)
1714 up->lsr_break_flag = UART_LSR_BI;
1715
1716 if (--tmout == 0)
1717 break;
1718 udelay(1);
1719 } while ((status & bits) != bits);
1720
1721 /* Wait up to 1s for flow control if necessary */
1722 if (up->port.flags & UPF_CONS_FLOW) {
1723 tmout = 1000000;
1724 while (!(serial_in(up, UART_MSR) & UART_MSR_CTS) && --tmout) {
1725 udelay(1);
1726 touch_nmi_watchdog();
1727 }
1728 }
1729}
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731static int serial8250_startup(struct uart_port *port)
1732{
1733 struct uart_8250_port *up = (struct uart_8250_port *)port;
1734 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001735 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 int retval;
1737
1738 up->capabilities = uart_config[up->port.type].flags;
1739 up->mcr = 0;
1740
1741 if (up->port.type == PORT_16C950) {
1742 /* Wake up and initialize UART */
1743 up->acr = 0;
1744 serial_outp(up, UART_LCR, 0xBF);
1745 serial_outp(up, UART_EFR, UART_EFR_ECB);
1746 serial_outp(up, UART_IER, 0);
1747 serial_outp(up, UART_LCR, 0);
1748 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
1749 serial_outp(up, UART_LCR, 0xBF);
1750 serial_outp(up, UART_EFR, UART_EFR_ECB);
1751 serial_outp(up, UART_LCR, 0);
1752 }
1753
1754#ifdef CONFIG_SERIAL_8250_RSA
1755 /*
1756 * If this is an RSA port, see if we can kick it up to the
1757 * higher speed clock.
1758 */
1759 enable_rsa(up);
1760#endif
1761
1762 /*
1763 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001764 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 */
1766 serial8250_clear_fifos(up);
1767
1768 /*
1769 * Clear the interrupt registers.
1770 */
1771 (void) serial_inp(up, UART_LSR);
1772 (void) serial_inp(up, UART_RX);
1773 (void) serial_inp(up, UART_IIR);
1774 (void) serial_inp(up, UART_MSR);
1775
1776 /*
1777 * At this point, there's no way the LSR could still be 0xff;
1778 * if it is, then bail out, because there's likely no UART
1779 * here.
1780 */
1781 if (!(up->port.flags & UPF_BUGGY_UART) &&
1782 (serial_inp(up, UART_LSR) == 0xff)) {
1783 printk("ttyS%d: LSR safety check engaged!\n", up->port.line);
1784 return -ENODEV;
1785 }
1786
1787 /*
1788 * For a XR16C850, we need to set the trigger levels
1789 */
1790 if (up->port.type == PORT_16850) {
1791 unsigned char fctr;
1792
1793 serial_outp(up, UART_LCR, 0xbf);
1794
1795 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
1796 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
1797 serial_outp(up, UART_TRG, UART_TRG_96);
1798 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
1799 serial_outp(up, UART_TRG, UART_TRG_96);
1800
1801 serial_outp(up, UART_LCR, 0);
1802 }
1803
Alex Williamson40b36da2007-02-14 00:33:04 -08001804 if (is_real_interrupt(up->port.irq)) {
1805 /*
1806 * Test for UARTs that do not reassert THRE when the
1807 * transmitter is idle and the interrupt has already
1808 * been cleared. Real 16550s should always reassert
1809 * this interrupt whenever the transmitter is idle and
1810 * the interrupt is enabled. Delays are necessary to
1811 * allow register changes to become visible.
1812 */
1813 spin_lock_irqsave(&up->port.lock, flags);
1814
1815 wait_for_xmitr(up, UART_LSR_THRE);
1816 serial_out_sync(up, UART_IER, UART_IER_THRI);
1817 udelay(1); /* allow THRE to set */
1818 serial_in(up, UART_IIR);
1819 serial_out(up, UART_IER, 0);
1820 serial_out_sync(up, UART_IER, UART_IER_THRI);
1821 udelay(1); /* allow a working UART time to re-assert THRE */
1822 iir = serial_in(up, UART_IIR);
1823 serial_out(up, UART_IER, 0);
1824
1825 spin_unlock_irqrestore(&up->port.lock, flags);
1826
1827 /*
1828 * If the interrupt is not reasserted, setup a timer to
1829 * kick the UART on a regular basis.
1830 */
1831 if (iir & UART_IIR_NO_INT) {
1832 pr_debug("ttyS%d - using backup timer\n", port->line);
1833 up->timer.function = serial8250_backup_timeout;
1834 up->timer.data = (unsigned long)up;
1835 mod_timer(&up->timer, jiffies +
1836 poll_timeout(up->port.timeout) + HZ/5);
1837 }
1838 }
1839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 /*
1841 * If the "interrupt" for this port doesn't correspond with any
1842 * hardware interrupt, we use a timer-based system. The original
1843 * driver used to do this with IRQ0.
1844 */
1845 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 up->timer.data = (unsigned long)up;
Alex Williamson40b36da2007-02-14 00:33:04 -08001847 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 } else {
1849 retval = serial_link_irq_chain(up);
1850 if (retval)
1851 return retval;
1852 }
1853
1854 /*
1855 * Now, initialize the UART
1856 */
1857 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
1858
1859 spin_lock_irqsave(&up->port.lock, flags);
1860 if (up->port.flags & UPF_FOURPORT) {
1861 if (!is_real_interrupt(up->port.irq))
1862 up->port.mctrl |= TIOCM_OUT1;
1863 } else
1864 /*
1865 * Most PC uarts need OUT2 raised to enable interrupts.
1866 */
1867 if (is_real_interrupt(up->port.irq))
1868 up->port.mctrl |= TIOCM_OUT2;
1869
1870 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01001871
1872 /*
1873 * Do a quick test to see if we receive an
1874 * interrupt when we enable the TX irq.
1875 */
1876 serial_outp(up, UART_IER, UART_IER_THRI);
1877 lsr = serial_in(up, UART_LSR);
1878 iir = serial_in(up, UART_IIR);
1879 serial_outp(up, UART_IER, 0);
1880
1881 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01001882 if (!(up->bugs & UART_BUG_TXEN)) {
1883 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01001884 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
1885 port->line);
1886 }
1887 } else {
Russell King67f76542005-06-23 22:26:43 +01001888 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01001889 }
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 spin_unlock_irqrestore(&up->port.lock, flags);
1892
1893 /*
1894 * Finally, enable interrupts. Note: Modem status interrupts
1895 * are set via set_termios(), which will be occurring imminently
1896 * anyway, so we don't enable them here.
1897 */
1898 up->ier = UART_IER_RLSI | UART_IER_RDI;
1899 serial_outp(up, UART_IER, up->ier);
1900
1901 if (up->port.flags & UPF_FOURPORT) {
1902 unsigned int icp;
1903 /*
1904 * Enable interrupts on the AST Fourport board
1905 */
1906 icp = (up->port.iobase & 0xfe0) | 0x01f;
1907 outb_p(0x80, icp);
1908 (void) inb_p(icp);
1909 }
1910
1911 /*
1912 * And clear the interrupt registers again for luck.
1913 */
1914 (void) serial_inp(up, UART_LSR);
1915 (void) serial_inp(up, UART_RX);
1916 (void) serial_inp(up, UART_IIR);
1917 (void) serial_inp(up, UART_MSR);
1918
1919 return 0;
1920}
1921
1922static void serial8250_shutdown(struct uart_port *port)
1923{
1924 struct uart_8250_port *up = (struct uart_8250_port *)port;
1925 unsigned long flags;
1926
1927 /*
1928 * Disable interrupts from this port
1929 */
1930 up->ier = 0;
1931 serial_outp(up, UART_IER, 0);
1932
1933 spin_lock_irqsave(&up->port.lock, flags);
1934 if (up->port.flags & UPF_FOURPORT) {
1935 /* reset interrupts on the AST Fourport board */
1936 inb((up->port.iobase & 0xfe0) | 0x1f);
1937 up->port.mctrl |= TIOCM_OUT1;
1938 } else
1939 up->port.mctrl &= ~TIOCM_OUT2;
1940
1941 serial8250_set_mctrl(&up->port, up->port.mctrl);
1942 spin_unlock_irqrestore(&up->port.lock, flags);
1943
1944 /*
1945 * Disable break condition and FIFOs
1946 */
1947 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
1948 serial8250_clear_fifos(up);
1949
1950#ifdef CONFIG_SERIAL_8250_RSA
1951 /*
1952 * Reset the RSA board back to 115kbps compat mode.
1953 */
1954 disable_rsa(up);
1955#endif
1956
1957 /*
1958 * Read data port to reset things, and then unlink from
1959 * the IRQ chain.
1960 */
1961 (void) serial_in(up, UART_RX);
1962
Alex Williamson40b36da2007-02-14 00:33:04 -08001963 del_timer_sync(&up->timer);
1964 up->timer.function = serial8250_timeout;
1965 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 serial_unlink_irq_chain(up);
1967}
1968
1969static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
1970{
1971 unsigned int quot;
1972
1973 /*
1974 * Handle magic divisors for baud rates above baud_base on
1975 * SMSC SuperIO chips.
1976 */
1977 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
1978 baud == (port->uartclk/4))
1979 quot = 0x8001;
1980 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
1981 baud == (port->uartclk/8))
1982 quot = 0x8002;
1983 else
1984 quot = uart_get_divisor(port, baud);
1985
1986 return quot;
1987}
1988
1989static void
Alan Cox606d0992006-12-08 02:38:45 -08001990serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
1991 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
1993 struct uart_8250_port *up = (struct uart_8250_port *)port;
1994 unsigned char cval, fcr = 0;
1995 unsigned long flags;
1996 unsigned int baud, quot;
1997
1998 switch (termios->c_cflag & CSIZE) {
1999 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002000 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 break;
2002 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002003 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 break;
2005 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002006 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 break;
2008 default:
2009 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002010 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 break;
2012 }
2013
2014 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002015 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if (termios->c_cflag & PARENB)
2017 cval |= UART_LCR_PARITY;
2018 if (!(termios->c_cflag & PARODD))
2019 cval |= UART_LCR_EPAR;
2020#ifdef CMSPAR
2021 if (termios->c_cflag & CMSPAR)
2022 cval |= UART_LCR_SPAR;
2023#endif
2024
2025 /*
2026 * Ask the core to calculate the divisor for us.
2027 */
Thomas Koellerbd71c182007-05-06 14:48:47 -07002028 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 quot = serial8250_get_divisor(port, baud);
2030
2031 /*
Russell King4ba5e352005-06-23 10:43:04 +01002032 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 */
Russell King4ba5e352005-06-23 10:43:04 +01002034 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 quot ++;
2036
2037 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2038 if (baud < 2400)
2039 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2040 else
2041 fcr = uart_config[up->port.type].fcr;
2042 }
2043
2044 /*
2045 * MCR-based auto flow control. When AFE is enabled, RTS will be
2046 * deasserted when the receive FIFO contains more characters than
2047 * the trigger, or the MCR RTS bit is cleared. In the case where
2048 * the remote UART is not using CTS auto flow control, we must
2049 * have sufficient FIFO entries for the latency of the remote
2050 * UART to respond. IOW, at least 32 bytes of FIFO.
2051 */
2052 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2053 up->mcr &= ~UART_MCR_AFE;
2054 if (termios->c_cflag & CRTSCTS)
2055 up->mcr |= UART_MCR_AFE;
2056 }
2057
2058 /*
2059 * Ok, we're now changing the port state. Do it with
2060 * interrupts disabled.
2061 */
2062 spin_lock_irqsave(&up->port.lock, flags);
2063
2064 /*
2065 * Update the per-port timeout.
2066 */
2067 uart_update_timeout(port, termios->c_cflag, baud);
2068
2069 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2070 if (termios->c_iflag & INPCK)
2071 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2072 if (termios->c_iflag & (BRKINT | PARMRK))
2073 up->port.read_status_mask |= UART_LSR_BI;
2074
2075 /*
2076 * Characteres to ignore
2077 */
2078 up->port.ignore_status_mask = 0;
2079 if (termios->c_iflag & IGNPAR)
2080 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2081 if (termios->c_iflag & IGNBRK) {
2082 up->port.ignore_status_mask |= UART_LSR_BI;
2083 /*
2084 * If we're ignoring parity and break indicators,
2085 * ignore overruns too (for real raw support).
2086 */
2087 if (termios->c_iflag & IGNPAR)
2088 up->port.ignore_status_mask |= UART_LSR_OE;
2089 }
2090
2091 /*
2092 * ignore all characters if CREAD is not set
2093 */
2094 if ((termios->c_cflag & CREAD) == 0)
2095 up->port.ignore_status_mask |= UART_LSR_DR;
2096
2097 /*
2098 * CTS flow control flag and modem status interrupts
2099 */
2100 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002101 if (!(up->bugs & UART_BUG_NOMSR) &&
2102 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 up->ier |= UART_IER_MSI;
2104 if (up->capabilities & UART_CAP_UUE)
2105 up->ier |= UART_IER_UUE | UART_IER_RTOIE;
2106
2107 serial_out(up, UART_IER, up->ier);
2108
2109 if (up->capabilities & UART_CAP_EFR) {
2110 unsigned char efr = 0;
2111 /*
2112 * TI16C752/Startech hardware flow control. FIXME:
2113 * - TI16C752 requires control thresholds to be set.
2114 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2115 */
2116 if (termios->c_cflag & CRTSCTS)
2117 efr |= UART_EFR_CTS;
2118
2119 serial_outp(up, UART_LCR, 0xBF);
2120 serial_outp(up, UART_EFR, efr);
2121 }
2122
Jonathan McDowell255341c2006-08-14 23:05:32 -07002123#ifdef CONFIG_ARCH_OMAP15XX
2124 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
2125 if (cpu_is_omap1510() && is_omap_port((unsigned int)up->port.membase)) {
2126 if (baud == 115200) {
2127 quot = 1;
2128 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2129 } else
2130 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2131 }
2132#endif
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (up->capabilities & UART_NATSEMI) {
2135 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2136 serial_outp(up, UART_LCR, 0xe0);
2137 } else {
2138 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2139 }
2140
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002141 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 /*
2144 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2145 * is written without DLAB set, this mode will be disabled.
2146 */
2147 if (up->port.type == PORT_16750)
2148 serial_outp(up, UART_FCR, fcr);
2149
2150 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2151 up->lcr = cval; /* Save LCR */
2152 if (up->port.type != PORT_16750) {
2153 if (fcr & UART_FCR_ENABLE_FIFO) {
2154 /* emulated UARTs (Lucent Venus 167x) need two steps */
2155 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2156 }
2157 serial_outp(up, UART_FCR, fcr); /* set fcr */
2158 }
2159 serial8250_set_mctrl(&up->port, up->port.mctrl);
2160 spin_unlock_irqrestore(&up->port.lock, flags);
2161}
2162
2163static void
2164serial8250_pm(struct uart_port *port, unsigned int state,
2165 unsigned int oldstate)
2166{
2167 struct uart_8250_port *p = (struct uart_8250_port *)port;
2168
2169 serial8250_set_sleep(p, state != 0);
2170
2171 if (p->pm)
2172 p->pm(port, state, oldstate);
2173}
2174
2175/*
2176 * Resource handling.
2177 */
2178static int serial8250_request_std_resource(struct uart_8250_port *up)
2179{
2180 unsigned int size = 8 << up->port.regshift;
2181 int ret = 0;
2182
2183 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002184 case UPIO_AU:
2185 size = 0x100000;
2186 /* fall thru */
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002187 case UPIO_TSI:
2188 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002190 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if (!up->port.mapbase)
2192 break;
2193
2194 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2195 ret = -EBUSY;
2196 break;
2197 }
2198
2199 if (up->port.flags & UPF_IOREMAP) {
2200 up->port.membase = ioremap(up->port.mapbase, size);
2201 if (!up->port.membase) {
2202 release_mem_region(up->port.mapbase, size);
2203 ret = -ENOMEM;
2204 }
2205 }
2206 break;
2207
2208 case UPIO_HUB6:
2209 case UPIO_PORT:
2210 if (!request_region(up->port.iobase, size, "serial"))
2211 ret = -EBUSY;
2212 break;
2213 }
2214 return ret;
2215}
2216
2217static void serial8250_release_std_resource(struct uart_8250_port *up)
2218{
2219 unsigned int size = 8 << up->port.regshift;
2220
2221 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002222 case UPIO_AU:
2223 size = 0x100000;
2224 /* fall thru */
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002225 case UPIO_TSI:
2226 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002228 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 if (!up->port.mapbase)
2230 break;
2231
2232 if (up->port.flags & UPF_IOREMAP) {
2233 iounmap(up->port.membase);
2234 up->port.membase = NULL;
2235 }
2236
2237 release_mem_region(up->port.mapbase, size);
2238 break;
2239
2240 case UPIO_HUB6:
2241 case UPIO_PORT:
2242 release_region(up->port.iobase, size);
2243 break;
2244 }
2245}
2246
2247static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2248{
2249 unsigned long start = UART_RSA_BASE << up->port.regshift;
2250 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002251 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 case UPIO_HUB6:
2255 case UPIO_PORT:
2256 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002257 if (request_region(start, size, "serial-rsa"))
2258 ret = 0;
2259 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 ret = -EBUSY;
2261 break;
2262 }
2263
2264 return ret;
2265}
2266
2267static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2268{
2269 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2270 unsigned int size = 8 << up->port.regshift;
2271
2272 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 case UPIO_HUB6:
2274 case UPIO_PORT:
2275 release_region(up->port.iobase + offset, size);
2276 break;
2277 }
2278}
2279
2280static void serial8250_release_port(struct uart_port *port)
2281{
2282 struct uart_8250_port *up = (struct uart_8250_port *)port;
2283
2284 serial8250_release_std_resource(up);
2285 if (up->port.type == PORT_RSA)
2286 serial8250_release_rsa_resource(up);
2287}
2288
2289static int serial8250_request_port(struct uart_port *port)
2290{
2291 struct uart_8250_port *up = (struct uart_8250_port *)port;
2292 int ret = 0;
2293
2294 ret = serial8250_request_std_resource(up);
2295 if (ret == 0 && up->port.type == PORT_RSA) {
2296 ret = serial8250_request_rsa_resource(up);
2297 if (ret < 0)
2298 serial8250_release_std_resource(up);
2299 }
2300
2301 return ret;
2302}
2303
2304static void serial8250_config_port(struct uart_port *port, int flags)
2305{
2306 struct uart_8250_port *up = (struct uart_8250_port *)port;
2307 int probeflags = PROBE_ANY;
2308 int ret;
2309
2310 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 * Find the region that we can probe for. This in turn
2312 * tells us whether we can probe for the type of port.
2313 */
2314 ret = serial8250_request_std_resource(up);
2315 if (ret < 0)
2316 return;
2317
2318 ret = serial8250_request_rsa_resource(up);
2319 if (ret < 0)
2320 probeflags &= ~PROBE_RSA;
2321
2322 if (flags & UART_CONFIG_TYPE)
2323 autoconfig(up, probeflags);
2324 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2325 autoconfig_irq(up);
2326
2327 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2328 serial8250_release_rsa_resource(up);
2329 if (up->port.type == PORT_UNKNOWN)
2330 serial8250_release_std_resource(up);
2331}
2332
2333static int
2334serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2335{
2336 if (ser->irq >= NR_IRQS || ser->irq < 0 ||
2337 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2338 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2339 ser->type == PORT_STARTECH)
2340 return -EINVAL;
2341 return 0;
2342}
2343
2344static const char *
2345serial8250_type(struct uart_port *port)
2346{
2347 int type = port->type;
2348
2349 if (type >= ARRAY_SIZE(uart_config))
2350 type = 0;
2351 return uart_config[type].name;
2352}
2353
2354static struct uart_ops serial8250_pops = {
2355 .tx_empty = serial8250_tx_empty,
2356 .set_mctrl = serial8250_set_mctrl,
2357 .get_mctrl = serial8250_get_mctrl,
2358 .stop_tx = serial8250_stop_tx,
2359 .start_tx = serial8250_start_tx,
2360 .stop_rx = serial8250_stop_rx,
2361 .enable_ms = serial8250_enable_ms,
2362 .break_ctl = serial8250_break_ctl,
2363 .startup = serial8250_startup,
2364 .shutdown = serial8250_shutdown,
2365 .set_termios = serial8250_set_termios,
2366 .pm = serial8250_pm,
2367 .type = serial8250_type,
2368 .release_port = serial8250_release_port,
2369 .request_port = serial8250_request_port,
2370 .config_port = serial8250_config_port,
2371 .verify_port = serial8250_verify_port,
2372};
2373
2374static struct uart_8250_port serial8250_ports[UART_NR];
2375
2376static void __init serial8250_isa_init_ports(void)
2377{
2378 struct uart_8250_port *up;
2379 static int first = 1;
2380 int i;
2381
2382 if (!first)
2383 return;
2384 first = 0;
2385
Dave Jonesa61c2d72006-01-07 23:18:19 +00002386 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 struct uart_8250_port *up = &serial8250_ports[i];
2388
2389 up->port.line = i;
2390 spin_lock_init(&up->port.lock);
2391
2392 init_timer(&up->timer);
2393 up->timer.function = serial8250_timeout;
2394
2395 /*
2396 * ALPHA_KLUDGE_MCR needs to be killed.
2397 */
2398 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2399 up->mcr_force = ALPHA_KLUDGE_MCR;
2400
2401 up->port.ops = &serial8250_pops;
2402 }
2403
Russell King44454bc2005-06-30 22:41:22 +01002404 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002405 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 i++, up++) {
2407 up->port.iobase = old_serial_port[i].port;
2408 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
2409 up->port.uartclk = old_serial_port[i].baud_base * 16;
2410 up->port.flags = old_serial_port[i].flags;
2411 up->port.hub6 = old_serial_port[i].hub6;
2412 up->port.membase = old_serial_port[i].iomem_base;
2413 up->port.iotype = old_serial_port[i].io_type;
2414 up->port.regshift = old_serial_port[i].iomem_reg_shift;
2415 if (share_irqs)
2416 up->port.flags |= UPF_SHARE_IRQ;
2417 }
2418}
2419
2420static void __init
2421serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2422{
2423 int i;
2424
2425 serial8250_isa_init_ports();
2426
Dave Jonesa61c2d72006-01-07 23:18:19 +00002427 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 struct uart_8250_port *up = &serial8250_ports[i];
2429
2430 up->port.dev = dev;
2431 uart_add_one_port(drv, &up->port);
2432 }
2433}
2434
2435#ifdef CONFIG_SERIAL_8250_CONSOLE
2436
Russell Kingd3587882006-03-20 20:00:09 +00002437static void serial8250_console_putchar(struct uart_port *port, int ch)
2438{
2439 struct uart_8250_port *up = (struct uart_8250_port *)port;
2440
2441 wait_for_xmitr(up, UART_LSR_THRE);
2442 serial_out(up, UART_TX, ch);
2443}
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445/*
2446 * Print a string to the serial port trying not to disturb
2447 * any possible real use of the port...
2448 *
2449 * The console_lock must be held when we get here.
2450 */
2451static void
2452serial8250_console_write(struct console *co, const char *s, unsigned int count)
2453{
2454 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002455 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002457 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Andrew Morton78512ec2005-11-07 00:59:13 -08002459 touch_nmi_watchdog();
2460
Andrew Morton68aa2c02006-06-30 02:29:59 -07002461 local_irq_save(flags);
2462 if (up->port.sysrq) {
2463 /* serial8250_handle_port() already took the lock */
2464 locked = 0;
2465 } else if (oops_in_progress) {
2466 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002467 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002468 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002471 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 */
2473 ier = serial_in(up, UART_IER);
2474
2475 if (up->capabilities & UART_CAP_UUE)
2476 serial_out(up, UART_IER, UART_IER_UUE);
2477 else
2478 serial_out(up, UART_IER, 0);
2479
Russell Kingd3587882006-03-20 20:00:09 +00002480 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
2482 /*
2483 * Finally, wait for transmitter to become empty
2484 * and restore the IER
2485 */
Alan Coxf91a3712006-01-21 14:59:12 +00002486 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002487 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002488
2489 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002490 spin_unlock(&up->port.lock);
2491 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
2493
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002494static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495{
2496 struct uart_port *port;
2497 int baud = 9600;
2498 int bits = 8;
2499 int parity = 'n';
2500 int flow = 'n';
2501
2502 /*
2503 * Check whether an invalid uart number has been specified, and
2504 * if so, search for the first available port that does have
2505 * console support.
2506 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002507 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 co->index = 0;
2509 port = &serial8250_ports[co->index].port;
2510 if (!port->iobase && !port->membase)
2511 return -ENODEV;
2512
2513 if (options)
2514 uart_parse_options(options, &baud, &parity, &bits, &flow);
2515
2516 return uart_set_options(port, co, baud, parity, bits, flow);
2517}
2518
2519static struct uart_driver serial8250_reg;
2520static struct console serial8250_console = {
2521 .name = "ttyS",
2522 .write = serial8250_console_write,
2523 .device = uart_console_device,
2524 .setup = serial8250_console_setup,
2525 .flags = CON_PRINTBUFFER,
2526 .index = -1,
2527 .data = &serial8250_reg,
2528};
2529
2530static int __init serial8250_console_init(void)
2531{
2532 serial8250_isa_init_ports();
2533 register_console(&serial8250_console);
2534 return 0;
2535}
2536console_initcall(serial8250_console_init);
2537
2538static int __init find_port(struct uart_port *p)
2539{
2540 int line;
2541 struct uart_port *port;
2542
Dave Jonesa61c2d72006-01-07 23:18:19 +00002543 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002545 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 return line;
2547 }
2548 return -ENODEV;
2549}
2550
2551int __init serial8250_start_console(struct uart_port *port, char *options)
2552{
2553 int line;
2554
2555 line = find_port(port);
2556 if (line < 0)
2557 return -ENODEV;
2558
2559 add_preferred_console("ttyS", line, options);
2560 printk("Adding console on ttyS%d at %s 0x%lx (options '%s')\n",
2561 line, port->iotype == UPIO_MEM ? "MMIO" : "I/O port",
2562 port->iotype == UPIO_MEM ? (unsigned long) port->mapbase :
2563 (unsigned long) port->iobase, options);
2564 if (!(serial8250_console.flags & CON_ENABLED)) {
2565 serial8250_console.flags &= ~CON_PRINTBUFFER;
2566 register_console(&serial8250_console);
2567 }
2568 return line;
2569}
2570
2571#define SERIAL8250_CONSOLE &serial8250_console
2572#else
2573#define SERIAL8250_CONSOLE NULL
2574#endif
2575
2576static struct uart_driver serial8250_reg = {
2577 .owner = THIS_MODULE,
2578 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 .dev_name = "ttyS",
2580 .major = TTY_MAJOR,
2581 .minor = 64,
2582 .nr = UART_NR,
2583 .cons = SERIAL8250_CONSOLE,
2584};
2585
Russell Kingd856c662006-02-23 10:22:13 +00002586/*
2587 * early_serial_setup - early registration for 8250 ports
2588 *
2589 * Setup an 8250 port structure prior to console initialisation. Use
2590 * after console initialisation will cause undefined behaviour.
2591 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592int __init early_serial_setup(struct uart_port *port)
2593{
2594 if (port->line >= ARRAY_SIZE(serial8250_ports))
2595 return -ENODEV;
2596
2597 serial8250_isa_init_ports();
2598 serial8250_ports[port->line].port = *port;
2599 serial8250_ports[port->line].port.ops = &serial8250_pops;
2600 return 0;
2601}
2602
2603/**
2604 * serial8250_suspend_port - suspend one serial port
2605 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 *
2607 * Suspend one serial port.
2608 */
2609void serial8250_suspend_port(int line)
2610{
2611 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
2612}
2613
2614/**
2615 * serial8250_resume_port - resume one serial port
2616 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 *
2618 * Resume one serial port.
2619 */
2620void serial8250_resume_port(int line)
2621{
2622 uart_resume_port(&serial8250_reg, &serial8250_ports[line].port);
2623}
2624
2625/*
2626 * Register a set of serial devices attached to a platform device. The
2627 * list is terminated with a zero flags entry, which means we expect
2628 * all entries to have at least UPF_BOOT_AUTOCONF set.
2629 */
Russell King3ae5eae2005-11-09 22:32:44 +00002630static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
Russell King3ae5eae2005-11-09 22:32:44 +00002632 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 struct uart_port port;
Russell Kingec9f47c2005-06-27 11:12:54 +01002634 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 memset(&port, 0, sizeof(struct uart_port));
2637
Russell Kingec9f47c2005-06-27 11:12:54 +01002638 for (i = 0; p && p->flags != 0; p++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 port.iobase = p->iobase;
2640 port.membase = p->membase;
2641 port.irq = p->irq;
2642 port.uartclk = p->uartclk;
2643 port.regshift = p->regshift;
2644 port.iotype = p->iotype;
2645 port.flags = p->flags;
2646 port.mapbase = p->mapbase;
Russell Kingec9f47c2005-06-27 11:12:54 +01002647 port.hub6 = p->hub6;
Russell King3ae5eae2005-11-09 22:32:44 +00002648 port.dev = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 if (share_irqs)
2650 port.flags |= UPF_SHARE_IRQ;
Russell Kingec9f47c2005-06-27 11:12:54 +01002651 ret = serial8250_register_port(&port);
2652 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00002653 dev_err(&dev->dev, "unable to register port at index %d "
Russell Kingec9f47c2005-06-27 11:12:54 +01002654 "(IO%lx MEM%lx IRQ%d): %d\n", i,
2655 p->iobase, p->mapbase, p->irq, ret);
2656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 }
2658 return 0;
2659}
2660
2661/*
2662 * Remove serial ports registered against a platform device.
2663 */
Russell King3ae5eae2005-11-09 22:32:44 +00002664static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
2666 int i;
2667
Dave Jonesa61c2d72006-01-07 23:18:19 +00002668 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 struct uart_8250_port *up = &serial8250_ports[i];
2670
Russell King3ae5eae2005-11-09 22:32:44 +00002671 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 serial8250_unregister_port(i);
2673 }
2674 return 0;
2675}
2676
Russell King3ae5eae2005-11-09 22:32:44 +00002677static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
2679 int i;
2680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 for (i = 0; i < UART_NR; i++) {
2682 struct uart_8250_port *up = &serial8250_ports[i];
2683
Russell King3ae5eae2005-11-09 22:32:44 +00002684 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 uart_suspend_port(&serial8250_reg, &up->port);
2686 }
2687
2688 return 0;
2689}
2690
Russell King3ae5eae2005-11-09 22:32:44 +00002691static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692{
2693 int i;
2694
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 for (i = 0; i < UART_NR; i++) {
2696 struct uart_8250_port *up = &serial8250_ports[i];
2697
Russell King3ae5eae2005-11-09 22:32:44 +00002698 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 uart_resume_port(&serial8250_reg, &up->port);
2700 }
2701
2702 return 0;
2703}
2704
Russell King3ae5eae2005-11-09 22:32:44 +00002705static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 .probe = serial8250_probe,
2707 .remove = __devexit_p(serial8250_remove),
2708 .suspend = serial8250_suspend,
2709 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00002710 .driver = {
2711 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002712 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002713 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714};
2715
2716/*
2717 * This "device" covers _all_ ISA 8250-compatible serial devices listed
2718 * in the table in include/asm/serial.h
2719 */
2720static struct platform_device *serial8250_isa_devs;
2721
2722/*
2723 * serial8250_register_port and serial8250_unregister_port allows for
2724 * 16x50 serial ports to be configured at run-time, to support PCMCIA
2725 * modems and PCI multiport cards.
2726 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002727static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
2729static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
2730{
2731 int i;
2732
2733 /*
2734 * First, find a port entry which matches.
2735 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002736 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 if (uart_match_port(&serial8250_ports[i].port, port))
2738 return &serial8250_ports[i];
2739
2740 /*
2741 * We didn't find a matching entry, so look for the first
2742 * free entry. We look for one which hasn't been previously
2743 * used (indicated by zero iobase).
2744 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002745 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
2747 serial8250_ports[i].port.iobase == 0)
2748 return &serial8250_ports[i];
2749
2750 /*
2751 * That also failed. Last resort is to find any entry which
2752 * doesn't have a real port associated with it.
2753 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002754 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
2756 return &serial8250_ports[i];
2757
2758 return NULL;
2759}
2760
2761/**
2762 * serial8250_register_port - register a serial port
2763 * @port: serial port template
2764 *
2765 * Configure the serial port specified by the request. If the
2766 * port exists and is in use, it is hung up and unregistered
2767 * first.
2768 *
2769 * The port is then probed and if necessary the IRQ is autodetected
2770 * If this fails an error is returned.
2771 *
2772 * On success the port is ready to use and the line number is returned.
2773 */
2774int serial8250_register_port(struct uart_port *port)
2775{
2776 struct uart_8250_port *uart;
2777 int ret = -ENOSPC;
2778
2779 if (port->uartclk == 0)
2780 return -EINVAL;
2781
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002782 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 uart = serial8250_find_match_or_unused(port);
2785 if (uart) {
2786 uart_remove_one_port(&serial8250_reg, &uart->port);
2787
2788 uart->port.iobase = port->iobase;
2789 uart->port.membase = port->membase;
2790 uart->port.irq = port->irq;
2791 uart->port.uartclk = port->uartclk;
2792 uart->port.fifosize = port->fifosize;
2793 uart->port.regshift = port->regshift;
2794 uart->port.iotype = port->iotype;
2795 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
2796 uart->port.mapbase = port->mapbase;
2797 if (port->dev)
2798 uart->port.dev = port->dev;
2799
2800 ret = uart_add_one_port(&serial8250_reg, &uart->port);
2801 if (ret == 0)
2802 ret = uart->port.line;
2803 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002804 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
2806 return ret;
2807}
2808EXPORT_SYMBOL(serial8250_register_port);
2809
2810/**
2811 * serial8250_unregister_port - remove a 16x50 serial port at runtime
2812 * @line: serial line number
2813 *
2814 * Remove one serial port. This may not be called from interrupt
2815 * context. We hand the port back to the our control.
2816 */
2817void serial8250_unregister_port(int line)
2818{
2819 struct uart_8250_port *uart = &serial8250_ports[line];
2820
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002821 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 uart_remove_one_port(&serial8250_reg, &uart->port);
2823 if (serial8250_isa_devs) {
2824 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
2825 uart->port.type = PORT_UNKNOWN;
2826 uart->port.dev = &serial8250_isa_devs->dev;
2827 uart_add_one_port(&serial8250_reg, &uart->port);
2828 } else {
2829 uart->port.dev = NULL;
2830 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002831 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832}
2833EXPORT_SYMBOL(serial8250_unregister_port);
2834
2835static int __init serial8250_init(void)
2836{
2837 int ret, i;
2838
Dave Jonesa61c2d72006-01-07 23:18:19 +00002839 if (nr_uarts > UART_NR)
2840 nr_uarts = UART_NR;
2841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 printk(KERN_INFO "Serial: 8250/16550 driver $Revision: 1.90 $ "
Dave Jonesa61c2d72006-01-07 23:18:19 +00002843 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 share_irqs ? "en" : "dis");
2845
2846 for (i = 0; i < NR_IRQS; i++)
2847 spin_lock_init(&irq_lists[i].lock);
2848
2849 ret = uart_register_driver(&serial8250_reg);
2850 if (ret)
2851 goto out;
2852
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002853 serial8250_isa_devs = platform_device_alloc("serial8250",
2854 PLAT8250_DEV_LEGACY);
2855 if (!serial8250_isa_devs) {
2856 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00002857 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 }
2859
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002860 ret = platform_device_add(serial8250_isa_devs);
2861 if (ret)
2862 goto put_dev;
2863
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
2865
Russell Kingbc965a72006-01-18 09:54:29 +00002866 ret = platform_driver_register(&serial8250_isa_driver);
2867 if (ret == 0)
2868 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Russell Kingbc965a72006-01-18 09:54:29 +00002870 platform_device_del(serial8250_isa_devs);
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002871 put_dev:
2872 platform_device_put(serial8250_isa_devs);
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002873 unreg_uart_drv:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 uart_unregister_driver(&serial8250_reg);
2875 out:
2876 return ret;
2877}
2878
2879static void __exit serial8250_exit(void)
2880{
2881 struct platform_device *isa_dev = serial8250_isa_devs;
2882
2883 /*
2884 * This tells serial8250_unregister_port() not to re-register
2885 * the ports (thereby making serial8250_isa_driver permanently
2886 * in use.)
2887 */
2888 serial8250_isa_devs = NULL;
2889
Russell King3ae5eae2005-11-09 22:32:44 +00002890 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 platform_device_unregister(isa_dev);
2892
2893 uart_unregister_driver(&serial8250_reg);
2894}
2895
2896module_init(serial8250_init);
2897module_exit(serial8250_exit);
2898
2899EXPORT_SYMBOL(serial8250_suspend_port);
2900EXPORT_SYMBOL(serial8250_resume_port);
2901
2902MODULE_LICENSE("GPL");
2903MODULE_DESCRIPTION("Generic 8250/16x50 serial driver $Revision: 1.90 $");
2904
2905module_param(share_irqs, uint, 0644);
2906MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
2907 " (unsafe)");
2908
Dave Jonesa61c2d72006-01-07 23:18:19 +00002909module_param(nr_uarts, uint, 0644);
2910MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
2911
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912#ifdef CONFIG_SERIAL_8250_RSA
2913module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
2914MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
2915#endif
2916MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);