blob: 8058533f84180a22d6629c04668cbff00e8435ad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/8250.c
3 *
4 * Driver for 8250/16550-type serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * Copyright (C) 2001 Russell King.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * A note about mapbase / membase
16 *
17 * mapbase is the physical address of the IO port.
18 * membase is an 'ioremapped' cookie.
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
22#define SUPPORT_SYSRQ
23#endif
24
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/ioport.h>
28#include <linux/init.h>
29#include <linux/console.h>
30#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010032#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/tty.h>
34#include <linux/tty_flip.h>
35#include <linux/serial_reg.h>
36#include <linux/serial_core.h>
37#include <linux/serial.h>
38#include <linux/serial_8250.h>
Andrew Morton78512ec2005-11-07 00:59:13 -080039#include <linux/nmi.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000040#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/io.h>
43#include <asm/irq.h>
44
45#include "8250.h"
46
47/*
48 * Configuration:
Thomas Gleixner40663cc2006-07-01 19:29:43 -070049 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * is unsafe when used on edge-triggered interrupts.
51 */
Adrian Bunk408b6642005-05-01 08:59:29 -070052static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Dave Jonesa61c2d72006-01-07 23:18:19 +000054static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
57 * Debugging.
58 */
59#if 0
60#define DEBUG_AUTOCONF(fmt...) printk(fmt)
61#else
62#define DEBUG_AUTOCONF(fmt...) do { } while (0)
63#endif
64
65#if 0
66#define DEBUG_INTR(fmt...) printk(fmt)
67#else
68#define DEBUG_INTR(fmt...) do { } while (0)
69#endif
70
71#define PASS_LIMIT 256
72
73/*
74 * We default to IRQ0 for the "no irq" hack. Some
75 * machine types want others as well - they're free
76 * to redefine this in their header file.
77 */
78#define is_real_interrupt(irq) ((irq) != 0)
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
81#define CONFIG_SERIAL_DETECT_IRQ 1
82#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#ifdef CONFIG_SERIAL_8250_MANY_PORTS
84#define CONFIG_SERIAL_MANY_PORTS 1
85#endif
86
87/*
88 * HUB6 is always on. This will be removed once the header
89 * files have been cleaned.
90 */
91#define CONFIG_HUB6 1
92
Bryan Wua4ed1e42008-05-31 16:10:04 +080093#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*
95 * SERIAL_PORT_DFNS tells us about built-in ports that have no
96 * standard enumeration mechanism. Platforms that can find all
97 * serial ports via mechanisms like ACPI or PCI need not supply it.
98 */
99#ifndef SERIAL_PORT_DFNS
100#define SERIAL_PORT_DFNS
101#endif
102
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000103static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 SERIAL_PORT_DFNS /* defined in asm/serial.h */
105};
106
Russell King026d02a2005-06-29 18:45:19 +0100107#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109#ifdef CONFIG_SERIAL_8250_RSA
110
111#define PORT_RSA_MAX 4
112static unsigned long probe_rsa[PORT_RSA_MAX];
113static unsigned int probe_rsa_count;
114#endif /* CONFIG_SERIAL_8250_RSA */
115
116struct uart_8250_port {
117 struct uart_port port;
118 struct timer_list timer; /* "no irq" timer */
119 struct list_head list; /* ports on this IRQ */
Russell King4ba5e352005-06-23 10:43:04 +0100120 unsigned short capabilities; /* port capabilities */
121 unsigned short bugs; /* port bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 unsigned int tx_loadsz; /* transmit fifo load size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 unsigned char acr;
124 unsigned char ier;
125 unsigned char lcr;
126 unsigned char mcr;
127 unsigned char mcr_mask; /* mask of user bits */
128 unsigned char mcr_force; /* mask of forced bits */
Corey Minyardad4c2aa2007-08-22 14:01:18 -0700129
130 /*
131 * Some bits in registers are cleared on a read, so they must
132 * be saved whenever the register is read but the bits will not
133 * be immediately processed.
134 */
135#define LSR_SAVE_FLAGS UART_LSR_BRK_ERROR_BITS
136 unsigned char lsr_saved_flags;
137#define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
138 unsigned char msr_saved_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 /*
141 * We provide a per-port pm hook.
142 */
143 void (*pm)(struct uart_port *port,
144 unsigned int state, unsigned int old);
145};
146
147struct irq_info {
148 spinlock_t lock;
149 struct list_head *head;
150};
151
152static struct irq_info irq_lists[NR_IRQS];
153
154/*
155 * Here we define the default xmit fifo size used for each type of UART.
156 */
157static const struct serial8250_config uart_config[] = {
158 [PORT_UNKNOWN] = {
159 .name = "unknown",
160 .fifo_size = 1,
161 .tx_loadsz = 1,
162 },
163 [PORT_8250] = {
164 .name = "8250",
165 .fifo_size = 1,
166 .tx_loadsz = 1,
167 },
168 [PORT_16450] = {
169 .name = "16450",
170 .fifo_size = 1,
171 .tx_loadsz = 1,
172 },
173 [PORT_16550] = {
174 .name = "16550",
175 .fifo_size = 1,
176 .tx_loadsz = 1,
177 },
178 [PORT_16550A] = {
179 .name = "16550A",
180 .fifo_size = 16,
181 .tx_loadsz = 16,
182 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
183 .flags = UART_CAP_FIFO,
184 },
185 [PORT_CIRRUS] = {
186 .name = "Cirrus",
187 .fifo_size = 1,
188 .tx_loadsz = 1,
189 },
190 [PORT_16650] = {
191 .name = "ST16650",
192 .fifo_size = 1,
193 .tx_loadsz = 1,
194 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
195 },
196 [PORT_16650V2] = {
197 .name = "ST16650V2",
198 .fifo_size = 32,
199 .tx_loadsz = 16,
200 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
201 UART_FCR_T_TRIG_00,
202 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
203 },
204 [PORT_16750] = {
205 .name = "TI16750",
206 .fifo_size = 64,
207 .tx_loadsz = 64,
208 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
209 UART_FCR7_64BYTE,
210 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
211 },
212 [PORT_STARTECH] = {
213 .name = "Startech",
214 .fifo_size = 1,
215 .tx_loadsz = 1,
216 },
217 [PORT_16C950] = {
218 .name = "16C950/954",
219 .fifo_size = 128,
220 .tx_loadsz = 128,
221 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
222 .flags = UART_CAP_FIFO,
223 },
224 [PORT_16654] = {
225 .name = "ST16654",
226 .fifo_size = 64,
227 .tx_loadsz = 32,
228 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
229 UART_FCR_T_TRIG_10,
230 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
231 },
232 [PORT_16850] = {
233 .name = "XR16850",
234 .fifo_size = 128,
235 .tx_loadsz = 128,
236 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
237 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
238 },
239 [PORT_RSA] = {
240 .name = "RSA",
241 .fifo_size = 2048,
242 .tx_loadsz = 2048,
243 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
244 .flags = UART_CAP_FIFO,
245 },
246 [PORT_NS16550A] = {
247 .name = "NS16550A",
248 .fifo_size = 16,
249 .tx_loadsz = 16,
250 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
251 .flags = UART_CAP_FIFO | UART_NATSEMI,
252 },
253 [PORT_XSCALE] = {
254 .name = "XScale",
255 .fifo_size = 32,
256 .tx_loadsz = 32,
257 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
258 .flags = UART_CAP_FIFO | UART_CAP_UUE,
259 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700260 [PORT_RM9000] = {
261 .name = "RM9000",
262 .fifo_size = 16,
263 .tx_loadsz = 16,
264 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
265 .flags = UART_CAP_FIFO,
266 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
Thomas Koellerbd71c182007-05-06 14:48:47 -0700269#if defined (CONFIG_SERIAL_8250_AU1X00)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000270
271/* Au1x00 UART hardware has a weird register layout */
272static const u8 au_io_in_map[] = {
273 [UART_RX] = 0,
274 [UART_IER] = 2,
275 [UART_IIR] = 3,
276 [UART_LCR] = 5,
277 [UART_MCR] = 6,
278 [UART_LSR] = 7,
279 [UART_MSR] = 8,
280};
281
282static const u8 au_io_out_map[] = {
283 [UART_TX] = 1,
284 [UART_IER] = 2,
285 [UART_FCR] = 4,
286 [UART_LCR] = 5,
287 [UART_MCR] = 6,
288};
289
290/* sane hardware needs no mapping */
291static inline int map_8250_in_reg(struct uart_8250_port *up, int offset)
292{
293 if (up->port.iotype != UPIO_AU)
294 return offset;
295 return au_io_in_map[offset];
296}
297
298static inline int map_8250_out_reg(struct uart_8250_port *up, int offset)
299{
300 if (up->port.iotype != UPIO_AU)
301 return offset;
302 return au_io_out_map[offset];
303}
304
Alan Cox6f803cd2008-02-08 04:18:52 -0800305#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700306
307static const u8
308 regmap_in[8] = {
309 [UART_RX] = 0x00,
310 [UART_IER] = 0x0c,
311 [UART_IIR] = 0x14,
312 [UART_LCR] = 0x1c,
313 [UART_MCR] = 0x20,
314 [UART_LSR] = 0x24,
315 [UART_MSR] = 0x28,
316 [UART_SCR] = 0x2c
317 },
318 regmap_out[8] = {
319 [UART_TX] = 0x04,
320 [UART_IER] = 0x0c,
321 [UART_FCR] = 0x18,
322 [UART_LCR] = 0x1c,
323 [UART_MCR] = 0x20,
324 [UART_LSR] = 0x24,
325 [UART_MSR] = 0x28,
326 [UART_SCR] = 0x2c
327 };
328
329static inline int map_8250_in_reg(struct uart_8250_port *up, int offset)
330{
331 if (up->port.iotype != UPIO_RM9000)
332 return offset;
333 return regmap_in[offset];
334}
335
336static inline int map_8250_out_reg(struct uart_8250_port *up, int offset)
337{
338 if (up->port.iotype != UPIO_RM9000)
339 return offset;
340 return regmap_out[offset];
341}
342
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000343#else
344
345/* sane hardware needs no mapping */
346#define map_8250_in_reg(up, offset) (offset)
347#define map_8250_out_reg(up, offset) (offset)
348
349#endif
350
Russell Kingea8874d2006-01-04 19:43:24 +0000351static unsigned int serial_in(struct uart_8250_port *up, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700353 unsigned int tmp;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000354 offset = map_8250_in_reg(up, offset) << up->port.regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 switch (up->port.iotype) {
357 case UPIO_HUB6:
358 outb(up->port.hub6 - 1 + offset, up->port.iobase);
359 return inb(up->port.iobase + 1);
360
361 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700362 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return readb(up->port.membase + offset);
364
Thomas Koellerbd71c182007-05-06 14:48:47 -0700365 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 case UPIO_MEM32:
367 return readl(up->port.membase + offset);
368
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000369#ifdef CONFIG_SERIAL_8250_AU1X00
370 case UPIO_AU:
371 return __raw_readl(up->port.membase + offset);
372#endif
373
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700374 case UPIO_TSI:
375 if (offset == UART_IIR) {
Al Viro9e84b602006-09-23 01:39:45 +0100376 tmp = readl(up->port.membase + (UART_IIR & ~3));
377 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700378 } else
379 return readb(up->port.membase + offset);
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 default:
382 return inb(up->port.iobase + offset);
383 }
384}
385
Russell Kingea8874d2006-01-04 19:43:24 +0000386static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387serial_out(struct uart_8250_port *up, int offset, int value)
388{
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700389 /* Save the offset before it's remapped */
390 int save_offset = offset;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000391 offset = map_8250_out_reg(up, offset) << up->port.regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 switch (up->port.iotype) {
394 case UPIO_HUB6:
395 outb(up->port.hub6 - 1 + offset, up->port.iobase);
396 outb(value, up->port.iobase + 1);
397 break;
398
399 case UPIO_MEM:
400 writeb(value, up->port.membase + offset);
401 break;
402
Thomas Koellerbd71c182007-05-06 14:48:47 -0700403 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 case UPIO_MEM32:
405 writel(value, up->port.membase + offset);
406 break;
407
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000408#ifdef CONFIG_SERIAL_8250_AU1X00
409 case UPIO_AU:
410 __raw_writel(value, up->port.membase + offset);
411 break;
412#endif
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700413 case UPIO_TSI:
414 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
415 writeb(value, up->port.membase + offset);
416 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000417
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700418 case UPIO_DWAPB:
419 /* Save the LCR value so it can be re-written when a
420 * Busy Detect interrupt occurs. */
421 if (save_offset == UART_LCR)
422 up->lcr = value;
423 writeb(value, up->port.membase + offset);
424 /* Read the IER to ensure any interrupt is cleared before
425 * returning from ISR. */
426 if (save_offset == UART_TX || save_offset == UART_IER)
427 value = serial_in(up, UART_IER);
428 break;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 default:
431 outb(value, up->port.iobase + offset);
432 }
433}
434
Alex Williamson40b36da2007-02-14 00:33:04 -0800435static void
436serial_out_sync(struct uart_8250_port *up, int offset, int value)
437{
438 switch (up->port.iotype) {
439 case UPIO_MEM:
440 case UPIO_MEM32:
441#ifdef CONFIG_SERIAL_8250_AU1X00
442 case UPIO_AU:
443#endif
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700444 case UPIO_DWAPB:
Alex Williamson40b36da2007-02-14 00:33:04 -0800445 serial_out(up, offset, value);
446 serial_in(up, UART_LCR); /* safe, no side-effects */
447 break;
448 default:
449 serial_out(up, offset, value);
450 }
451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/*
454 * We used to support using pause I/O for certain machines. We
455 * haven't supported this for a while, but just in case it's badly
456 * needed for certain old 386 machines, I've left these #define's
457 * in....
458 */
459#define serial_inp(up, offset) serial_in(up, offset)
460#define serial_outp(up, offset, value) serial_out(up, offset, value)
461
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100462/* Uart divisor latch read */
463static inline int _serial_dl_read(struct uart_8250_port *up)
464{
465 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
466}
467
468/* Uart divisor latch write */
469static inline void _serial_dl_write(struct uart_8250_port *up, int value)
470{
471 serial_outp(up, UART_DLL, value & 0xff);
472 serial_outp(up, UART_DLM, value >> 8 & 0xff);
473}
474
Alan Cox6f803cd2008-02-08 04:18:52 -0800475#if defined(CONFIG_SERIAL_8250_AU1X00)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100476/* Au1x00 haven't got a standard divisor latch */
477static int serial_dl_read(struct uart_8250_port *up)
478{
479 if (up->port.iotype == UPIO_AU)
480 return __raw_readl(up->port.membase + 0x28);
481 else
482 return _serial_dl_read(up);
483}
484
485static void serial_dl_write(struct uart_8250_port *up, int value)
486{
487 if (up->port.iotype == UPIO_AU)
488 __raw_writel(value, up->port.membase + 0x28);
489 else
490 _serial_dl_write(up, value);
491}
Alan Cox6f803cd2008-02-08 04:18:52 -0800492#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700493static int serial_dl_read(struct uart_8250_port *up)
494{
495 return (up->port.iotype == UPIO_RM9000) ?
496 (((__raw_readl(up->port.membase + 0x10) << 8) |
497 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
498 _serial_dl_read(up);
499}
500
501static void serial_dl_write(struct uart_8250_port *up, int value)
502{
503 if (up->port.iotype == UPIO_RM9000) {
504 __raw_writel(value, up->port.membase + 0x08);
505 __raw_writel(value >> 8, up->port.membase + 0x10);
506 } else {
507 _serial_dl_write(up, value);
508 }
509}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100510#else
511#define serial_dl_read(up) _serial_dl_read(up)
512#define serial_dl_write(up, value) _serial_dl_write(up, value)
513#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515/*
516 * For the 16C950
517 */
518static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
519{
520 serial_out(up, UART_SCR, offset);
521 serial_out(up, UART_ICR, value);
522}
523
524static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
525{
526 unsigned int value;
527
528 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
529 serial_out(up, UART_SCR, offset);
530 value = serial_in(up, UART_ICR);
531 serial_icr_write(up, UART_ACR, up->acr);
532
533 return value;
534}
535
536/*
537 * FIFO support.
538 */
539static inline void serial8250_clear_fifos(struct uart_8250_port *p)
540{
541 if (p->capabilities & UART_CAP_FIFO) {
542 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
543 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
544 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
545 serial_outp(p, UART_FCR, 0);
546 }
547}
548
549/*
550 * IER sleep support. UARTs which have EFRs need the "extended
551 * capability" bit enabled. Note that on XR16C850s, we need to
552 * reset LCR to write to IER.
553 */
554static inline void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
555{
556 if (p->capabilities & UART_CAP_SLEEP) {
557 if (p->capabilities & UART_CAP_EFR) {
558 serial_outp(p, UART_LCR, 0xBF);
559 serial_outp(p, UART_EFR, UART_EFR_ECB);
560 serial_outp(p, UART_LCR, 0);
561 }
562 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
563 if (p->capabilities & UART_CAP_EFR) {
564 serial_outp(p, UART_LCR, 0xBF);
565 serial_outp(p, UART_EFR, 0);
566 serial_outp(p, UART_LCR, 0);
567 }
568 }
569}
570
571#ifdef CONFIG_SERIAL_8250_RSA
572/*
573 * Attempts to turn on the RSA FIFO. Returns zero on failure.
574 * We set the port uart clock rate if we succeed.
575 */
576static int __enable_rsa(struct uart_8250_port *up)
577{
578 unsigned char mode;
579 int result;
580
581 mode = serial_inp(up, UART_RSA_MSR);
582 result = mode & UART_RSA_MSR_FIFO;
583
584 if (!result) {
585 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
586 mode = serial_inp(up, UART_RSA_MSR);
587 result = mode & UART_RSA_MSR_FIFO;
588 }
589
590 if (result)
591 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
592
593 return result;
594}
595
596static void enable_rsa(struct uart_8250_port *up)
597{
598 if (up->port.type == PORT_RSA) {
599 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
600 spin_lock_irq(&up->port.lock);
601 __enable_rsa(up);
602 spin_unlock_irq(&up->port.lock);
603 }
604 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
605 serial_outp(up, UART_RSA_FRR, 0);
606 }
607}
608
609/*
610 * Attempts to turn off the RSA FIFO. Returns zero on failure.
611 * It is unknown why interrupts were disabled in here. However,
612 * the caller is expected to preserve this behaviour by grabbing
613 * the spinlock before calling this function.
614 */
615static void disable_rsa(struct uart_8250_port *up)
616{
617 unsigned char mode;
618 int result;
619
620 if (up->port.type == PORT_RSA &&
621 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
622 spin_lock_irq(&up->port.lock);
623
624 mode = serial_inp(up, UART_RSA_MSR);
625 result = !(mode & UART_RSA_MSR_FIFO);
626
627 if (!result) {
628 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
629 mode = serial_inp(up, UART_RSA_MSR);
630 result = !(mode & UART_RSA_MSR_FIFO);
631 }
632
633 if (result)
634 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
635 spin_unlock_irq(&up->port.lock);
636 }
637}
638#endif /* CONFIG_SERIAL_8250_RSA */
639
640/*
641 * This is a quickie test to see how big the FIFO is.
642 * It doesn't work at all the time, more's the pity.
643 */
644static int size_fifo(struct uart_8250_port *up)
645{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100646 unsigned char old_fcr, old_mcr, old_lcr;
647 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int count;
649
650 old_lcr = serial_inp(up, UART_LCR);
651 serial_outp(up, UART_LCR, 0);
652 old_fcr = serial_inp(up, UART_FCR);
653 old_mcr = serial_inp(up, UART_MCR);
654 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
655 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
656 serial_outp(up, UART_MCR, UART_MCR_LOOP);
657 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100658 old_dl = serial_dl_read(up);
659 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 serial_outp(up, UART_LCR, 0x03);
661 for (count = 0; count < 256; count++)
662 serial_outp(up, UART_TX, count);
663 mdelay(20);/* FIXME - schedule_timeout */
664 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
665 (count < 256); count++)
666 serial_inp(up, UART_RX);
667 serial_outp(up, UART_FCR, old_fcr);
668 serial_outp(up, UART_MCR, old_mcr);
669 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100670 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 serial_outp(up, UART_LCR, old_lcr);
672
673 return count;
674}
675
676/*
677 * Read UART ID using the divisor method - set DLL and DLM to zero
678 * and the revision will be in DLL and device type in DLM. We
679 * preserve the device state across this.
680 */
681static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
682{
683 unsigned char old_dll, old_dlm, old_lcr;
684 unsigned int id;
685
686 old_lcr = serial_inp(p, UART_LCR);
687 serial_outp(p, UART_LCR, UART_LCR_DLAB);
688
689 old_dll = serial_inp(p, UART_DLL);
690 old_dlm = serial_inp(p, UART_DLM);
691
692 serial_outp(p, UART_DLL, 0);
693 serial_outp(p, UART_DLM, 0);
694
695 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
696
697 serial_outp(p, UART_DLL, old_dll);
698 serial_outp(p, UART_DLM, old_dlm);
699 serial_outp(p, UART_LCR, old_lcr);
700
701 return id;
702}
703
704/*
705 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
706 * When this function is called we know it is at least a StarTech
707 * 16650 V2, but it might be one of several StarTech UARTs, or one of
708 * its clones. (We treat the broken original StarTech 16650 V1 as a
709 * 16550, and why not? Startech doesn't seem to even acknowledge its
710 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700711 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 * What evil have men's minds wrought...
713 */
714static void autoconfig_has_efr(struct uart_8250_port *up)
715{
716 unsigned int id1, id2, id3, rev;
717
718 /*
719 * Everything with an EFR has SLEEP
720 */
721 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
722
723 /*
724 * First we check to see if it's an Oxford Semiconductor UART.
725 *
726 * If we have to do this here because some non-National
727 * Semiconductor clone chips lock up if you try writing to the
728 * LSR register (which serial_icr_read does)
729 */
730
731 /*
732 * Check for Oxford Semiconductor 16C950.
733 *
734 * EFR [4] must be set else this test fails.
735 *
736 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
737 * claims that it's needed for 952 dual UART's (which are not
738 * recommended for new designs).
739 */
740 up->acr = 0;
741 serial_out(up, UART_LCR, 0xBF);
742 serial_out(up, UART_EFR, UART_EFR_ECB);
743 serial_out(up, UART_LCR, 0x00);
744 id1 = serial_icr_read(up, UART_ID1);
745 id2 = serial_icr_read(up, UART_ID2);
746 id3 = serial_icr_read(up, UART_ID3);
747 rev = serial_icr_read(up, UART_REV);
748
749 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
750
751 if (id1 == 0x16 && id2 == 0xC9 &&
752 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
753 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100754
755 /*
756 * Enable work around for the Oxford Semiconductor 952 rev B
757 * chip which causes it to seriously miscalculate baud rates
758 * when DLL is 0.
759 */
760 if (id3 == 0x52 && rev == 0x01)
761 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return;
763 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /*
766 * We check for a XR16C850 by setting DLL and DLM to 0, and then
767 * reading back DLL and DLM. The chip type depends on the DLM
768 * value read back:
769 * 0x10 - XR16C850 and the DLL contains the chip revision.
770 * 0x12 - XR16C2850.
771 * 0x14 - XR16C854.
772 */
773 id1 = autoconfig_read_divisor_id(up);
774 DEBUG_AUTOCONF("850id=%04x ", id1);
775
776 id2 = id1 >> 8;
777 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 up->port.type = PORT_16850;
779 return;
780 }
781
782 /*
783 * It wasn't an XR16C850.
784 *
785 * We distinguish between the '654 and the '650 by counting
786 * how many bytes are in the FIFO. I'm using this for now,
787 * since that's the technique that was sent to me in the
788 * serial driver update, but I'm not convinced this works.
789 * I've had problems doing this in the past. -TYT
790 */
791 if (size_fifo(up) == 64)
792 up->port.type = PORT_16654;
793 else
794 up->port.type = PORT_16650V2;
795}
796
797/*
798 * We detected a chip without a FIFO. Only two fall into
799 * this category - the original 8250 and the 16450. The
800 * 16450 has a scratch register (accessible with LCR=0)
801 */
802static void autoconfig_8250(struct uart_8250_port *up)
803{
804 unsigned char scratch, status1, status2;
805
806 up->port.type = PORT_8250;
807
808 scratch = serial_in(up, UART_SCR);
809 serial_outp(up, UART_SCR, 0xa5);
810 status1 = serial_in(up, UART_SCR);
811 serial_outp(up, UART_SCR, 0x5a);
812 status2 = serial_in(up, UART_SCR);
813 serial_outp(up, UART_SCR, scratch);
814
815 if (status1 == 0xa5 && status2 == 0x5a)
816 up->port.type = PORT_16450;
817}
818
819static int broken_efr(struct uart_8250_port *up)
820{
821 /*
822 * Exar ST16C2550 "A2" devices incorrectly detect as
823 * having an EFR, and report an ID of 0x0201. See
824 * http://www.exar.com/info.php?pdf=dan180_oct2004.pdf
825 */
826 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
827 return 1;
828
829 return 0;
830}
831
832/*
833 * We know that the chip has FIFOs. Does it have an EFR? The
834 * EFR is located in the same register position as the IIR and
835 * we know the top two bits of the IIR are currently set. The
836 * EFR should contain zero. Try to read the EFR.
837 */
838static void autoconfig_16550a(struct uart_8250_port *up)
839{
840 unsigned char status1, status2;
841 unsigned int iersave;
842
843 up->port.type = PORT_16550A;
844 up->capabilities |= UART_CAP_FIFO;
845
846 /*
847 * Check for presence of the EFR when DLAB is set.
848 * Only ST16C650V1 UARTs pass this test.
849 */
850 serial_outp(up, UART_LCR, UART_LCR_DLAB);
851 if (serial_in(up, UART_EFR) == 0) {
852 serial_outp(up, UART_EFR, 0xA8);
853 if (serial_in(up, UART_EFR) != 0) {
854 DEBUG_AUTOCONF("EFRv1 ");
855 up->port.type = PORT_16650;
856 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
857 } else {
858 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
859 }
860 serial_outp(up, UART_EFR, 0);
861 return;
862 }
863
864 /*
865 * Maybe it requires 0xbf to be written to the LCR.
866 * (other ST16C650V2 UARTs, TI16C752A, etc)
867 */
868 serial_outp(up, UART_LCR, 0xBF);
869 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
870 DEBUG_AUTOCONF("EFRv2 ");
871 autoconfig_has_efr(up);
872 return;
873 }
874
875 /*
876 * Check for a National Semiconductor SuperIO chip.
877 * Attempt to switch to bank 2, read the value of the LOOP bit
878 * from EXCR1. Switch back to bank 0, change it in MCR. Then
879 * switch back to bank 2, read it from EXCR1 again and check
880 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
882 serial_outp(up, UART_LCR, 0);
883 status1 = serial_in(up, UART_MCR);
884 serial_outp(up, UART_LCR, 0xE0);
885 status2 = serial_in(up, 0x02); /* EXCR1 */
886
887 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
888 serial_outp(up, UART_LCR, 0);
889 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
890 serial_outp(up, UART_LCR, 0xE0);
891 status2 = serial_in(up, 0x02); /* EXCR1 */
892 serial_outp(up, UART_LCR, 0);
893 serial_outp(up, UART_MCR, status1);
894
895 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100896 unsigned short quot;
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100899
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100900 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +0100901 quot <<= 3;
902
David Woodhouseb5b82df2007-05-17 14:27:39 +0800903 status1 = serial_in(up, 0x04); /* EXCR2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 status1 &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
905 status1 |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
906 serial_outp(up, 0x04, status1);
Thomas Koellerbd71c182007-05-06 14:48:47 -0700907
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100908 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
David Woodhouse857dde22005-05-21 15:52:23 +0100910 serial_outp(up, UART_LCR, 0);
911
912 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 up->port.type = PORT_NS16550A;
914 up->capabilities |= UART_NATSEMI;
915 return;
916 }
917 }
918
919 /*
920 * No EFR. Try to detect a TI16750, which only sets bit 5 of
921 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
922 * Try setting it with and without DLAB set. Cheap clones
923 * set bit 5 without DLAB set.
924 */
925 serial_outp(up, UART_LCR, 0);
926 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
927 status1 = serial_in(up, UART_IIR) >> 5;
928 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
929 serial_outp(up, UART_LCR, UART_LCR_DLAB);
930 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
931 status2 = serial_in(up, UART_IIR) >> 5;
932 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
933 serial_outp(up, UART_LCR, 0);
934
935 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
936
937 if (status1 == 6 && status2 == 7) {
938 up->port.type = PORT_16750;
939 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
940 return;
941 }
942
943 /*
944 * Try writing and reading the UART_IER_UUE bit (b6).
945 * If it works, this is probably one of the Xscale platform's
946 * internal UARTs.
947 * We're going to explicitly set the UUE bit to 0 before
948 * trying to write and read a 1 just to make sure it's not
949 * already a 1 and maybe locked there before we even start start.
950 */
951 iersave = serial_in(up, UART_IER);
952 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
953 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
954 /*
955 * OK it's in a known zero state, try writing and reading
956 * without disturbing the current state of the other bits.
957 */
958 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
959 if (serial_in(up, UART_IER) & UART_IER_UUE) {
960 /*
961 * It's an Xscale.
962 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
963 */
964 DEBUG_AUTOCONF("Xscale ");
965 up->port.type = PORT_XSCALE;
966 up->capabilities |= UART_CAP_UUE;
967 return;
968 }
969 } else {
970 /*
971 * If we got here we couldn't force the IER_UUE bit to 0.
972 * Log it and continue.
973 */
974 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
975 }
976 serial_outp(up, UART_IER, iersave);
977}
978
979/*
980 * This routine is called by rs_init() to initialize a specific serial
981 * port. It determines what type of UART chip this serial port is
982 * using: 8250, 16450, 16550, 16550A. The important question is
983 * whether or not this UART is a 16550A or not, since this will
984 * determine whether or not we can use its FIFO features or not.
985 */
986static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
987{
988 unsigned char status1, scratch, scratch2, scratch3;
989 unsigned char save_lcr, save_mcr;
990 unsigned long flags;
991
992 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
993 return;
994
995 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04x, 0x%p): ",
996 up->port.line, up->port.iobase, up->port.membase);
997
998 /*
999 * We really do need global IRQs disabled here - we're going to
1000 * be frobbing the chips IRQ enable register to see if it exists.
1001 */
1002 spin_lock_irqsave(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001005 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 if (!(up->port.flags & UPF_BUGGY_UART)) {
1008 /*
1009 * Do a simple existence test first; if we fail this,
1010 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 * 0x80 is used as a nonsense port to prevent against
1013 * false positives due to ISA bus float. The
1014 * assumption is that 0x80 is a non-existent port;
1015 * which should be safe since include/asm/io.h also
1016 * makes this assumption.
1017 *
1018 * Note: this is safe as long as MCR bit 4 is clear
1019 * and the device is in "PC" mode.
1020 */
1021 scratch = serial_inp(up, UART_IER);
1022 serial_outp(up, UART_IER, 0);
1023#ifdef __i386__
1024 outb(0xff, 0x080);
1025#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001026 /*
1027 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1028 * 16C754B) allow only to modify them if an EFR bit is set.
1029 */
1030 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 serial_outp(up, UART_IER, 0x0F);
1032#ifdef __i386__
1033 outb(0, 0x080);
1034#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001035 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 serial_outp(up, UART_IER, scratch);
1037 if (scratch2 != 0 || scratch3 != 0x0F) {
1038 /*
1039 * We failed; there's nothing here
1040 */
1041 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1042 scratch2, scratch3);
1043 goto out;
1044 }
1045 }
1046
1047 save_mcr = serial_in(up, UART_MCR);
1048 save_lcr = serial_in(up, UART_LCR);
1049
Thomas Koellerbd71c182007-05-06 14:48:47 -07001050 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 * Check to see if a UART is really there. Certain broken
1052 * internal modems based on the Rockwell chipset fail this
1053 * test, because they apparently don't implement the loopback
1054 * test mode. So this test is skipped on the COM 1 through
1055 * COM 4 ports. This *should* be safe, since no board
1056 * manufacturer would be stupid enough to design a board
1057 * that conflicts with COM 1-4 --- we hope!
1058 */
1059 if (!(up->port.flags & UPF_SKIP_TEST)) {
1060 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1061 status1 = serial_inp(up, UART_MSR) & 0xF0;
1062 serial_outp(up, UART_MCR, save_mcr);
1063 if (status1 != 0x90) {
1064 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1065 status1);
1066 goto out;
1067 }
1068 }
1069
1070 /*
1071 * We're pretty sure there's a port here. Lets find out what
1072 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001073 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 * determines what we test for next.
1075 *
1076 * We also initialise the EFR (if any) to zero for later. The
1077 * EFR occupies the same register location as the FCR and IIR.
1078 */
1079 serial_outp(up, UART_LCR, 0xBF);
1080 serial_outp(up, UART_EFR, 0);
1081 serial_outp(up, UART_LCR, 0);
1082
1083 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1084 scratch = serial_in(up, UART_IIR) >> 6;
1085
1086 DEBUG_AUTOCONF("iir=%d ", scratch);
1087
1088 switch (scratch) {
1089 case 0:
1090 autoconfig_8250(up);
1091 break;
1092 case 1:
1093 up->port.type = PORT_UNKNOWN;
1094 break;
1095 case 2:
1096 up->port.type = PORT_16550;
1097 break;
1098 case 3:
1099 autoconfig_16550a(up);
1100 break;
1101 }
1102
1103#ifdef CONFIG_SERIAL_8250_RSA
1104 /*
1105 * Only probe for RSA ports if we got the region.
1106 */
1107 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1108 int i;
1109
1110 for (i = 0 ; i < probe_rsa_count; ++i) {
1111 if (probe_rsa[i] == up->port.iobase &&
1112 __enable_rsa(up)) {
1113 up->port.type = PORT_RSA;
1114 break;
1115 }
1116 }
1117 }
1118#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001119
1120#ifdef CONFIG_SERIAL_8250_AU1X00
1121 /* if access method is AU, it is a 16550 with a quirk */
1122 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
1123 up->bugs |= UART_BUG_NOMSR;
1124#endif
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 serial_outp(up, UART_LCR, save_lcr);
1127
1128 if (up->capabilities != uart_config[up->port.type].flags) {
1129 printk(KERN_WARNING
1130 "ttyS%d: detected caps %08x should be %08x\n",
1131 up->port.line, up->capabilities,
1132 uart_config[up->port.type].flags);
1133 }
1134
1135 up->port.fifosize = uart_config[up->port.type].fifo_size;
1136 up->capabilities = uart_config[up->port.type].flags;
1137 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1138
1139 if (up->port.type == PORT_UNKNOWN)
1140 goto out;
1141
1142 /*
1143 * Reset the UART.
1144 */
1145#ifdef CONFIG_SERIAL_8250_RSA
1146 if (up->port.type == PORT_RSA)
1147 serial_outp(up, UART_RSA_FRR, 0);
1148#endif
1149 serial_outp(up, UART_MCR, save_mcr);
1150 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001151 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001152 if (up->capabilities & UART_CAP_UUE)
1153 serial_outp(up, UART_IER, UART_IER_UUE);
1154 else
1155 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Thomas Koellerbd71c182007-05-06 14:48:47 -07001157 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1160}
1161
1162static void autoconfig_irq(struct uart_8250_port *up)
1163{
1164 unsigned char save_mcr, save_ier;
1165 unsigned char save_ICP = 0;
1166 unsigned int ICP = 0;
1167 unsigned long irqs;
1168 int irq;
1169
1170 if (up->port.flags & UPF_FOURPORT) {
1171 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1172 save_ICP = inb_p(ICP);
1173 outb_p(0x80, ICP);
1174 (void) inb_p(ICP);
1175 }
1176
1177 /* forget possible initially masked and pending IRQ */
1178 probe_irq_off(probe_irq_on());
1179 save_mcr = serial_inp(up, UART_MCR);
1180 save_ier = serial_inp(up, UART_IER);
1181 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 irqs = probe_irq_on();
1184 serial_outp(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001185 udelay(10);
1186 if (up->port.flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 serial_outp(up, UART_MCR,
1188 UART_MCR_DTR | UART_MCR_RTS);
1189 } else {
1190 serial_outp(up, UART_MCR,
1191 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1192 }
1193 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1194 (void)serial_inp(up, UART_LSR);
1195 (void)serial_inp(up, UART_RX);
1196 (void)serial_inp(up, UART_IIR);
1197 (void)serial_inp(up, UART_MSR);
1198 serial_outp(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001199 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 irq = probe_irq_off(irqs);
1201
1202 serial_outp(up, UART_MCR, save_mcr);
1203 serial_outp(up, UART_IER, save_ier);
1204
1205 if (up->port.flags & UPF_FOURPORT)
1206 outb_p(save_ICP, ICP);
1207
1208 up->port.irq = (irq > 0) ? irq : 0;
1209}
1210
Russell Kinge763b902005-06-29 18:41:51 +01001211static inline void __stop_tx(struct uart_8250_port *p)
1212{
1213 if (p->ier & UART_IER_THRI) {
1214 p->ier &= ~UART_IER_THRI;
1215 serial_out(p, UART_IER, p->ier);
1216 }
1217}
1218
Russell Kingb129a8c2005-08-31 10:12:14 +01001219static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 struct uart_8250_port *up = (struct uart_8250_port *)port;
1222
Russell Kinge763b902005-06-29 18:41:51 +01001223 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 /*
Russell Kinge763b902005-06-29 18:41:51 +01001226 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 */
Russell Kinge763b902005-06-29 18:41:51 +01001228 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 up->acr |= UART_ACR_TXDIS;
1230 serial_icr_write(up, UART_ACR, up->acr);
1231 }
1232}
1233
Russell King55d3b282005-06-23 15:05:41 +01001234static void transmit_chars(struct uart_8250_port *up);
1235
Russell Kingb129a8c2005-08-31 10:12:14 +01001236static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
1238 struct uart_8250_port *up = (struct uart_8250_port *)port;
1239
1240 if (!(up->ier & UART_IER_THRI)) {
1241 up->ier |= UART_IER_THRI;
1242 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001243
Russell King67f76542005-06-23 22:26:43 +01001244 if (up->bugs & UART_BUG_TXEN) {
Russell King55d3b282005-06-23 15:05:41 +01001245 unsigned char lsr, iir;
1246 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001247 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Thomas Koellerbd71c182007-05-06 14:48:47 -07001248 iir = serial_in(up, UART_IIR) & 0x0f;
1249 if ((up->port.type == PORT_RM9000) ?
1250 (lsr & UART_LSR_THRE &&
1251 (iir == UART_IIR_NO_INT || iir == UART_IIR_THRI)) :
1252 (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT))
Russell King55d3b282005-06-23 15:05:41 +01001253 transmit_chars(up);
1254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
Russell Kinge763b902005-06-29 18:41:51 +01001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /*
Russell Kinge763b902005-06-29 18:41:51 +01001258 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 */
Russell Kinge763b902005-06-29 18:41:51 +01001260 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 up->acr &= ~UART_ACR_TXDIS;
1262 serial_icr_write(up, UART_ACR, up->acr);
1263 }
1264}
1265
1266static void serial8250_stop_rx(struct uart_port *port)
1267{
1268 struct uart_8250_port *up = (struct uart_8250_port *)port;
1269
1270 up->ier &= ~UART_IER_RLSI;
1271 up->port.read_status_mask &= ~UART_LSR_DR;
1272 serial_out(up, UART_IER, up->ier);
1273}
1274
1275static void serial8250_enable_ms(struct uart_port *port)
1276{
1277 struct uart_8250_port *up = (struct uart_8250_port *)port;
1278
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001279 /* no MSR capabilities */
1280 if (up->bugs & UART_BUG_NOMSR)
1281 return;
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 up->ier |= UART_IER_MSI;
1284 serial_out(up, UART_IER, up->ier);
1285}
1286
Russell Kingea8874d2006-01-04 19:43:24 +00001287static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001288receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Alan Coxdf4f4dd2008-07-16 21:53:50 +01001290 struct tty_struct *tty = up->port.info->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 unsigned char ch, lsr = *status;
1292 int max_count = 256;
1293 char flag;
1294
1295 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001296 if (likely(lsr & UART_LSR_DR))
1297 ch = serial_inp(up, UART_RX);
1298 else
1299 /*
1300 * Intel 82571 has a Serial Over Lan device that will
1301 * set UART_LSR_BI without setting UART_LSR_DR when
1302 * it receives a break. To avoid reading from the
1303 * receive buffer without UART_LSR_DR bit set, we
1304 * just force the read character to be 0
1305 */
1306 ch = 0;
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 flag = TTY_NORMAL;
1309 up->port.icount.rx++;
1310
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001311 lsr |= up->lsr_saved_flags;
1312 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001314 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 /*
1316 * For statistics only
1317 */
1318 if (lsr & UART_LSR_BI) {
1319 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1320 up->port.icount.brk++;
1321 /*
1322 * We do the SysRQ and SAK checking
1323 * here because otherwise the break
1324 * may get masked by ignore_status_mask
1325 * or read_status_mask.
1326 */
1327 if (uart_handle_break(&up->port))
1328 goto ignore_char;
1329 } else if (lsr & UART_LSR_PE)
1330 up->port.icount.parity++;
1331 else if (lsr & UART_LSR_FE)
1332 up->port.icount.frame++;
1333 if (lsr & UART_LSR_OE)
1334 up->port.icount.overrun++;
1335
1336 /*
Russell King23907eb2005-04-16 15:26:39 -07001337 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 */
1339 lsr &= up->port.read_status_mask;
1340
1341 if (lsr & UART_LSR_BI) {
1342 DEBUG_INTR("handling break....");
1343 flag = TTY_BREAK;
1344 } else if (lsr & UART_LSR_PE)
1345 flag = TTY_PARITY;
1346 else if (lsr & UART_LSR_FE)
1347 flag = TTY_FRAME;
1348 }
David Howells7d12e782006-10-05 14:55:46 +01001349 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001351
1352 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1353
Alan Cox6f803cd2008-02-08 04:18:52 -08001354ignore_char:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 lsr = serial_inp(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001356 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 spin_unlock(&up->port.lock);
1358 tty_flip_buffer_push(tty);
1359 spin_lock(&up->port.lock);
1360 *status = lsr;
1361}
1362
Russell Kingea8874d2006-01-04 19:43:24 +00001363static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
1365 struct circ_buf *xmit = &up->port.info->xmit;
1366 int count;
1367
1368 if (up->port.x_char) {
1369 serial_outp(up, UART_TX, up->port.x_char);
1370 up->port.icount.tx++;
1371 up->port.x_char = 0;
1372 return;
1373 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001374 if (uart_tx_stopped(&up->port)) {
1375 serial8250_stop_tx(&up->port);
1376 return;
1377 }
1378 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001379 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return;
1381 }
1382
1383 count = up->tx_loadsz;
1384 do {
1385 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1386 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1387 up->port.icount.tx++;
1388 if (uart_circ_empty(xmit))
1389 break;
1390 } while (--count > 0);
1391
1392 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1393 uart_write_wakeup(&up->port);
1394
1395 DEBUG_INTR("THRE...");
1396
1397 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001398 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
1400
Russell King2af7cd62006-01-04 16:55:09 +00001401static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Russell King2af7cd62006-01-04 16:55:09 +00001403 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001405 status |= up->msr_saved_flags;
1406 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001407 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
1408 up->port.info != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001409 if (status & UART_MSR_TERI)
1410 up->port.icount.rng++;
1411 if (status & UART_MSR_DDSR)
1412 up->port.icount.dsr++;
1413 if (status & UART_MSR_DDCD)
1414 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1415 if (status & UART_MSR_DCTS)
1416 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Russell King2af7cd62006-01-04 16:55:09 +00001418 wake_up_interruptible(&up->port.info->delta_msr_wait);
1419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Russell King2af7cd62006-01-04 16:55:09 +00001421 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
1424/*
1425 * This handles the interrupt from one port.
1426 */
1427static inline void
David Howells7d12e782006-10-05 14:55:46 +01001428serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Russell King45e24602006-01-04 19:19:06 +00001430 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001431 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001432
Jiri Kosina4bf36312007-04-23 14:41:21 -07001433 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001434
1435 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437 DEBUG_INTR("status = %x...", status);
1438
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001439 if (status & (UART_LSR_DR | UART_LSR_BI))
David Howells7d12e782006-10-05 14:55:46 +01001440 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 check_modem_status(up);
1442 if (status & UART_LSR_THRE)
1443 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001444
Jiri Kosina4bf36312007-04-23 14:41:21 -07001445 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448/*
1449 * This is the serial driver's interrupt routine.
1450 *
1451 * Arjan thinks the old way was overly complex, so it got simplified.
1452 * Alan disagrees, saying that need the complexity to handle the weird
1453 * nature of ISA shared interrupts. (This is a special exception.)
1454 *
1455 * In order to handle ISA shared interrupts properly, we need to check
1456 * that all ports have been serviced, and therefore the ISA interrupt
1457 * line has been de-asserted.
1458 *
1459 * This means we need to loop through all ports. checking that they
1460 * don't have an interrupt pending.
1461 */
David Howells7d12e782006-10-05 14:55:46 +01001462static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
1464 struct irq_info *i = dev_id;
1465 struct list_head *l, *end = NULL;
1466 int pass_counter = 0, handled = 0;
1467
1468 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1469
1470 spin_lock(&i->lock);
1471
1472 l = i->head;
1473 do {
1474 struct uart_8250_port *up;
1475 unsigned int iir;
1476
1477 up = list_entry(l, struct uart_8250_port, list);
1478
1479 iir = serial_in(up, UART_IIR);
1480 if (!(iir & UART_IIR_NO_INT)) {
David Howells7d12e782006-10-05 14:55:46 +01001481 serial8250_handle_port(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 handled = 1;
1484
1485 end = NULL;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001486 } else if (up->port.iotype == UPIO_DWAPB &&
1487 (iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
1488 /* The DesignWare APB UART has an Busy Detect (0x07)
1489 * interrupt meaning an LCR write attempt occured while the
1490 * UART was busy. The interrupt must be cleared by reading
1491 * the UART status register (USR) and the LCR re-written. */
1492 unsigned int status;
1493 status = *(volatile u32 *)up->port.private_data;
1494 serial_out(up, UART_LCR, up->lcr);
1495
1496 handled = 1;
1497
1498 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 } else if (end == NULL)
1500 end = l;
1501
1502 l = l->next;
1503
1504 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1505 /* If we hit this, we're dead. */
1506 printk(KERN_ERR "serial8250: too much work for "
1507 "irq%d\n", irq);
1508 break;
1509 }
1510 } while (l != end);
1511
1512 spin_unlock(&i->lock);
1513
1514 DEBUG_INTR("end.\n");
1515
1516 return IRQ_RETVAL(handled);
1517}
1518
1519/*
1520 * To support ISA shared interrupts, we need to have one interrupt
1521 * handler that ensures that the IRQ line has been deasserted
1522 * before returning. Failing to do this will result in the IRQ
1523 * line being stuck active, and, since ISA irqs are edge triggered,
1524 * no more IRQs will be seen.
1525 */
1526static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1527{
1528 spin_lock_irq(&i->lock);
1529
1530 if (!list_empty(i->head)) {
1531 if (i->head == &up->list)
1532 i->head = i->head->next;
1533 list_del(&up->list);
1534 } else {
1535 BUG_ON(i->head != &up->list);
1536 i->head = NULL;
1537 }
1538
1539 spin_unlock_irq(&i->lock);
1540}
1541
1542static int serial_link_irq_chain(struct uart_8250_port *up)
1543{
1544 struct irq_info *i = irq_lists + up->port.irq;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001545 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 spin_lock_irq(&i->lock);
1548
1549 if (i->head) {
1550 list_add(&up->list, i->head);
1551 spin_unlock_irq(&i->lock);
1552
1553 ret = 0;
1554 } else {
1555 INIT_LIST_HEAD(&up->list);
1556 i->head = &up->list;
1557 spin_unlock_irq(&i->lock);
1558
1559 ret = request_irq(up->port.irq, serial8250_interrupt,
1560 irq_flags, "serial", i);
1561 if (ret < 0)
1562 serial_do_unlink(i, up);
1563 }
1564
1565 return ret;
1566}
1567
1568static void serial_unlink_irq_chain(struct uart_8250_port *up)
1569{
1570 struct irq_info *i = irq_lists + up->port.irq;
1571
1572 BUG_ON(i->head == NULL);
1573
1574 if (list_empty(i->head))
1575 free_irq(up->port.irq, i);
1576
1577 serial_do_unlink(i, up);
1578}
1579
Alex Williamson40b36da2007-02-14 00:33:04 -08001580/* Base timer interval for polling */
1581static inline int poll_timeout(int timeout)
1582{
1583 return timeout > 6 ? (timeout / 2 - 2) : 1;
1584}
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586/*
1587 * This function is used to handle ports that do not have an
1588 * interrupt. This doesn't work very well for 16450's, but gives
1589 * barely passable results for a 16550A. (Although at the expense
1590 * of much CPU overhead).
1591 */
1592static void serial8250_timeout(unsigned long data)
1593{
1594 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 unsigned int iir;
1596
1597 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001598 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001599 serial8250_handle_port(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001600 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout));
1601}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Alex Williamson40b36da2007-02-14 00:33:04 -08001603static void serial8250_backup_timeout(unsigned long data)
1604{
1605 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001606 unsigned int iir, ier = 0, lsr;
1607 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001608
1609 /*
1610 * Must disable interrupts or else we risk racing with the interrupt
1611 * based handler.
1612 */
1613 if (is_real_interrupt(up->port.irq)) {
1614 ier = serial_in(up, UART_IER);
1615 serial_out(up, UART_IER, 0);
1616 }
1617
1618 iir = serial_in(up, UART_IIR);
1619
1620 /*
1621 * This should be a safe test for anyone who doesn't trust the
1622 * IIR bits on their UART, but it's specifically designed for
1623 * the "Diva" UART used on the management processor on many HP
1624 * ia64 and parisc boxes.
1625 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001626 spin_lock_irqsave(&up->port.lock, flags);
1627 lsr = serial_in(up, UART_LSR);
1628 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1629 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001630 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
1631 (!uart_circ_empty(&up->port.info->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001632 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001633 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1634 iir |= UART_IIR_THRI;
1635 }
1636
1637 if (!(iir & UART_IIR_NO_INT))
1638 serial8250_handle_port(up);
1639
1640 if (is_real_interrupt(up->port.irq))
1641 serial_out(up, UART_IER, ier);
1642
1643 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001644 mod_timer(&up->timer,
1645 jiffies + poll_timeout(up->port.timeout) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
1648static unsigned int serial8250_tx_empty(struct uart_port *port)
1649{
1650 struct uart_8250_port *up = (struct uart_8250_port *)port;
1651 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001652 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 spin_lock_irqsave(&up->port.lock, flags);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001655 lsr = serial_in(up, UART_LSR);
1656 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 spin_unlock_irqrestore(&up->port.lock, flags);
1658
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001659 return lsr & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
1662static unsigned int serial8250_get_mctrl(struct uart_port *port)
1663{
1664 struct uart_8250_port *up = (struct uart_8250_port *)port;
Russell King2af7cd62006-01-04 16:55:09 +00001665 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 unsigned int ret;
1667
Russell King2af7cd62006-01-04 16:55:09 +00001668 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 ret = 0;
1671 if (status & UART_MSR_DCD)
1672 ret |= TIOCM_CAR;
1673 if (status & UART_MSR_RI)
1674 ret |= TIOCM_RNG;
1675 if (status & UART_MSR_DSR)
1676 ret |= TIOCM_DSR;
1677 if (status & UART_MSR_CTS)
1678 ret |= TIOCM_CTS;
1679 return ret;
1680}
1681
1682static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1683{
1684 struct uart_8250_port *up = (struct uart_8250_port *)port;
1685 unsigned char mcr = 0;
1686
1687 if (mctrl & TIOCM_RTS)
1688 mcr |= UART_MCR_RTS;
1689 if (mctrl & TIOCM_DTR)
1690 mcr |= UART_MCR_DTR;
1691 if (mctrl & TIOCM_OUT1)
1692 mcr |= UART_MCR_OUT1;
1693 if (mctrl & TIOCM_OUT2)
1694 mcr |= UART_MCR_OUT2;
1695 if (mctrl & TIOCM_LOOP)
1696 mcr |= UART_MCR_LOOP;
1697
1698 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1699
1700 serial_out(up, UART_MCR, mcr);
1701}
1702
1703static void serial8250_break_ctl(struct uart_port *port, int break_state)
1704{
1705 struct uart_8250_port *up = (struct uart_8250_port *)port;
1706 unsigned long flags;
1707
1708 spin_lock_irqsave(&up->port.lock, flags);
1709 if (break_state == -1)
1710 up->lcr |= UART_LCR_SBC;
1711 else
1712 up->lcr &= ~UART_LCR_SBC;
1713 serial_out(up, UART_LCR, up->lcr);
1714 spin_unlock_irqrestore(&up->port.lock, flags);
1715}
1716
Alex Williamson40b36da2007-02-14 00:33:04 -08001717#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
1718
1719/*
1720 * Wait for transmitter & holding register to empty
1721 */
1722static inline void wait_for_xmitr(struct uart_8250_port *up, int bits)
1723{
1724 unsigned int status, tmout = 10000;
1725
1726 /* Wait up to 10ms for the character(s) to be sent. */
1727 do {
1728 status = serial_in(up, UART_LSR);
1729
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001730 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001731
1732 if (--tmout == 0)
1733 break;
1734 udelay(1);
1735 } while ((status & bits) != bits);
1736
1737 /* Wait up to 1s for flow control if necessary */
1738 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001739 unsigned int tmout;
1740 for (tmout = 1000000; tmout; tmout--) {
1741 unsigned int msr = serial_in(up, UART_MSR);
1742 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1743 if (msr & UART_MSR_CTS)
1744 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001745 udelay(1);
1746 touch_nmi_watchdog();
1747 }
1748 }
1749}
1750
Jason Wesself2d937f2008-04-17 20:05:37 +02001751#ifdef CONFIG_CONSOLE_POLL
1752/*
1753 * Console polling routines for writing and reading from the uart while
1754 * in an interrupt or debug context.
1755 */
1756
1757static int serial8250_get_poll_char(struct uart_port *port)
1758{
1759 struct uart_8250_port *up = (struct uart_8250_port *)port;
1760 unsigned char lsr = serial_inp(up, UART_LSR);
1761
1762 while (!(lsr & UART_LSR_DR))
1763 lsr = serial_inp(up, UART_LSR);
1764
1765 return serial_inp(up, UART_RX);
1766}
1767
1768
1769static void serial8250_put_poll_char(struct uart_port *port,
1770 unsigned char c)
1771{
1772 unsigned int ier;
1773 struct uart_8250_port *up = (struct uart_8250_port *)port;
1774
1775 /*
1776 * First save the IER then disable the interrupts
1777 */
1778 ier = serial_in(up, UART_IER);
1779 if (up->capabilities & UART_CAP_UUE)
1780 serial_out(up, UART_IER, UART_IER_UUE);
1781 else
1782 serial_out(up, UART_IER, 0);
1783
1784 wait_for_xmitr(up, BOTH_EMPTY);
1785 /*
1786 * Send the character out.
1787 * If a LF, also do CR...
1788 */
1789 serial_out(up, UART_TX, c);
1790 if (c == 10) {
1791 wait_for_xmitr(up, BOTH_EMPTY);
1792 serial_out(up, UART_TX, 13);
1793 }
1794
1795 /*
1796 * Finally, wait for transmitter to become empty
1797 * and restore the IER
1798 */
1799 wait_for_xmitr(up, BOTH_EMPTY);
1800 serial_out(up, UART_IER, ier);
1801}
1802
1803#endif /* CONFIG_CONSOLE_POLL */
1804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805static int serial8250_startup(struct uart_port *port)
1806{
1807 struct uart_8250_port *up = (struct uart_8250_port *)port;
1808 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001809 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 int retval;
1811
1812 up->capabilities = uart_config[up->port.type].flags;
1813 up->mcr = 0;
1814
1815 if (up->port.type == PORT_16C950) {
1816 /* Wake up and initialize UART */
1817 up->acr = 0;
1818 serial_outp(up, UART_LCR, 0xBF);
1819 serial_outp(up, UART_EFR, UART_EFR_ECB);
1820 serial_outp(up, UART_IER, 0);
1821 serial_outp(up, UART_LCR, 0);
1822 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
1823 serial_outp(up, UART_LCR, 0xBF);
1824 serial_outp(up, UART_EFR, UART_EFR_ECB);
1825 serial_outp(up, UART_LCR, 0);
1826 }
1827
1828#ifdef CONFIG_SERIAL_8250_RSA
1829 /*
1830 * If this is an RSA port, see if we can kick it up to the
1831 * higher speed clock.
1832 */
1833 enable_rsa(up);
1834#endif
1835
1836 /*
1837 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001838 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 */
1840 serial8250_clear_fifos(up);
1841
1842 /*
1843 * Clear the interrupt registers.
1844 */
1845 (void) serial_inp(up, UART_LSR);
1846 (void) serial_inp(up, UART_RX);
1847 (void) serial_inp(up, UART_IIR);
1848 (void) serial_inp(up, UART_MSR);
1849
1850 /*
1851 * At this point, there's no way the LSR could still be 0xff;
1852 * if it is, then bail out, because there's likely no UART
1853 * here.
1854 */
1855 if (!(up->port.flags & UPF_BUGGY_UART) &&
1856 (serial_inp(up, UART_LSR) == 0xff)) {
1857 printk("ttyS%d: LSR safety check engaged!\n", up->port.line);
1858 return -ENODEV;
1859 }
1860
1861 /*
1862 * For a XR16C850, we need to set the trigger levels
1863 */
1864 if (up->port.type == PORT_16850) {
1865 unsigned char fctr;
1866
1867 serial_outp(up, UART_LCR, 0xbf);
1868
1869 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
1870 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
1871 serial_outp(up, UART_TRG, UART_TRG_96);
1872 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
1873 serial_outp(up, UART_TRG, UART_TRG_96);
1874
1875 serial_outp(up, UART_LCR, 0);
1876 }
1877
Alex Williamson40b36da2007-02-14 00:33:04 -08001878 if (is_real_interrupt(up->port.irq)) {
Alex Williamson01c194d2008-04-28 02:14:09 -07001879 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08001880 /*
1881 * Test for UARTs that do not reassert THRE when the
1882 * transmitter is idle and the interrupt has already
1883 * been cleared. Real 16550s should always reassert
1884 * this interrupt whenever the transmitter is idle and
1885 * the interrupt is enabled. Delays are necessary to
1886 * allow register changes to become visible.
1887 */
Borislav Petkovc389d272008-07-29 22:33:32 -07001888 spin_lock_irqsave(&up->port.lock, flags);
Anton Vorontsov768aec02008-07-22 11:21:07 +01001889 if (up->port.flags & UPF_SHARE_IRQ)
1890 disable_irq_nosync(up->port.irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08001891
1892 wait_for_xmitr(up, UART_LSR_THRE);
1893 serial_out_sync(up, UART_IER, UART_IER_THRI);
1894 udelay(1); /* allow THRE to set */
Alex Williamson01c194d2008-04-28 02:14:09 -07001895 iir1 = serial_in(up, UART_IIR);
Alex Williamson40b36da2007-02-14 00:33:04 -08001896 serial_out(up, UART_IER, 0);
1897 serial_out_sync(up, UART_IER, UART_IER_THRI);
1898 udelay(1); /* allow a working UART time to re-assert THRE */
1899 iir = serial_in(up, UART_IIR);
1900 serial_out(up, UART_IER, 0);
1901
Anton Vorontsov768aec02008-07-22 11:21:07 +01001902 if (up->port.flags & UPF_SHARE_IRQ)
1903 enable_irq(up->port.irq);
Borislav Petkovc389d272008-07-29 22:33:32 -07001904 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001905
1906 /*
1907 * If the interrupt is not reasserted, setup a timer to
1908 * kick the UART on a regular basis.
1909 */
Alex Williamson01c194d2008-04-28 02:14:09 -07001910 if (!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) {
Will Newton363f66f2008-09-02 14:35:44 -07001911 up->bugs |= UART_BUG_THRE;
Alex Williamson40b36da2007-02-14 00:33:04 -08001912 pr_debug("ttyS%d - using backup timer\n", port->line);
Alex Williamson40b36da2007-02-14 00:33:04 -08001913 }
1914 }
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 /*
Will Newton363f66f2008-09-02 14:35:44 -07001917 * The above check will only give an accurate result the first time
1918 * the port is opened so this value needs to be preserved.
1919 */
1920 if (up->bugs & UART_BUG_THRE) {
1921 up->timer.function = serial8250_backup_timeout;
1922 up->timer.data = (unsigned long)up;
1923 mod_timer(&up->timer, jiffies +
1924 poll_timeout(up->port.timeout) + HZ / 5);
1925 }
1926
1927 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 * If the "interrupt" for this port doesn't correspond with any
1929 * hardware interrupt, we use a timer-based system. The original
1930 * driver used to do this with IRQ0.
1931 */
1932 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 up->timer.data = (unsigned long)up;
Alex Williamson40b36da2007-02-14 00:33:04 -08001934 mod_timer(&up->timer, jiffies + poll_timeout(up->port.timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 } else {
1936 retval = serial_link_irq_chain(up);
1937 if (retval)
1938 return retval;
1939 }
1940
1941 /*
1942 * Now, initialize the UART
1943 */
1944 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
1945
1946 spin_lock_irqsave(&up->port.lock, flags);
1947 if (up->port.flags & UPF_FOURPORT) {
1948 if (!is_real_interrupt(up->port.irq))
1949 up->port.mctrl |= TIOCM_OUT1;
1950 } else
1951 /*
1952 * Most PC uarts need OUT2 raised to enable interrupts.
1953 */
1954 if (is_real_interrupt(up->port.irq))
1955 up->port.mctrl |= TIOCM_OUT2;
1956
1957 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01001958
1959 /*
1960 * Do a quick test to see if we receive an
1961 * interrupt when we enable the TX irq.
1962 */
1963 serial_outp(up, UART_IER, UART_IER_THRI);
1964 lsr = serial_in(up, UART_LSR);
1965 iir = serial_in(up, UART_IIR);
1966 serial_outp(up, UART_IER, 0);
1967
1968 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01001969 if (!(up->bugs & UART_BUG_TXEN)) {
1970 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01001971 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
1972 port->line);
1973 }
1974 } else {
Russell King67f76542005-06-23 22:26:43 +01001975 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01001976 }
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 spin_unlock_irqrestore(&up->port.lock, flags);
1979
1980 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001981 * Clear the interrupt registers again for luck, and clear the
1982 * saved flags to avoid getting false values from polling
1983 * routines or the previous session.
1984 */
1985 serial_inp(up, UART_LSR);
1986 serial_inp(up, UART_RX);
1987 serial_inp(up, UART_IIR);
1988 serial_inp(up, UART_MSR);
1989 up->lsr_saved_flags = 0;
1990 up->msr_saved_flags = 0;
1991
1992 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 * Finally, enable interrupts. Note: Modem status interrupts
1994 * are set via set_termios(), which will be occurring imminently
1995 * anyway, so we don't enable them here.
1996 */
1997 up->ier = UART_IER_RLSI | UART_IER_RDI;
1998 serial_outp(up, UART_IER, up->ier);
1999
2000 if (up->port.flags & UPF_FOURPORT) {
2001 unsigned int icp;
2002 /*
2003 * Enable interrupts on the AST Fourport board
2004 */
2005 icp = (up->port.iobase & 0xfe0) | 0x01f;
2006 outb_p(0x80, icp);
2007 (void) inb_p(icp);
2008 }
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return 0;
2011}
2012
2013static void serial8250_shutdown(struct uart_port *port)
2014{
2015 struct uart_8250_port *up = (struct uart_8250_port *)port;
2016 unsigned long flags;
2017
2018 /*
2019 * Disable interrupts from this port
2020 */
2021 up->ier = 0;
2022 serial_outp(up, UART_IER, 0);
2023
2024 spin_lock_irqsave(&up->port.lock, flags);
2025 if (up->port.flags & UPF_FOURPORT) {
2026 /* reset interrupts on the AST Fourport board */
2027 inb((up->port.iobase & 0xfe0) | 0x1f);
2028 up->port.mctrl |= TIOCM_OUT1;
2029 } else
2030 up->port.mctrl &= ~TIOCM_OUT2;
2031
2032 serial8250_set_mctrl(&up->port, up->port.mctrl);
2033 spin_unlock_irqrestore(&up->port.lock, flags);
2034
2035 /*
2036 * Disable break condition and FIFOs
2037 */
2038 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
2039 serial8250_clear_fifos(up);
2040
2041#ifdef CONFIG_SERIAL_8250_RSA
2042 /*
2043 * Reset the RSA board back to 115kbps compat mode.
2044 */
2045 disable_rsa(up);
2046#endif
2047
2048 /*
2049 * Read data port to reset things, and then unlink from
2050 * the IRQ chain.
2051 */
2052 (void) serial_in(up, UART_RX);
2053
Alex Williamson40b36da2007-02-14 00:33:04 -08002054 del_timer_sync(&up->timer);
2055 up->timer.function = serial8250_timeout;
2056 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 serial_unlink_irq_chain(up);
2058}
2059
2060static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2061{
2062 unsigned int quot;
2063
2064 /*
2065 * Handle magic divisors for baud rates above baud_base on
2066 * SMSC SuperIO chips.
2067 */
2068 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2069 baud == (port->uartclk/4))
2070 quot = 0x8001;
2071 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2072 baud == (port->uartclk/8))
2073 quot = 0x8002;
2074 else
2075 quot = uart_get_divisor(port, baud);
2076
2077 return quot;
2078}
2079
2080static void
Alan Cox606d0992006-12-08 02:38:45 -08002081serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2082 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
2084 struct uart_8250_port *up = (struct uart_8250_port *)port;
2085 unsigned char cval, fcr = 0;
2086 unsigned long flags;
2087 unsigned int baud, quot;
2088
2089 switch (termios->c_cflag & CSIZE) {
2090 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002091 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 break;
2093 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002094 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 break;
2096 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002097 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 break;
2099 default:
2100 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002101 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 break;
2103 }
2104
2105 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002106 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 if (termios->c_cflag & PARENB)
2108 cval |= UART_LCR_PARITY;
2109 if (!(termios->c_cflag & PARODD))
2110 cval |= UART_LCR_EPAR;
2111#ifdef CMSPAR
2112 if (termios->c_cflag & CMSPAR)
2113 cval |= UART_LCR_SPAR;
2114#endif
2115
2116 /*
2117 * Ask the core to calculate the divisor for us.
2118 */
Thomas Koellerbd71c182007-05-06 14:48:47 -07002119 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 quot = serial8250_get_divisor(port, baud);
2121
2122 /*
Russell King4ba5e352005-06-23 10:43:04 +01002123 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 */
Russell King4ba5e352005-06-23 10:43:04 +01002125 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002126 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2129 if (baud < 2400)
2130 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2131 else
2132 fcr = uart_config[up->port.type].fcr;
2133 }
2134
2135 /*
2136 * MCR-based auto flow control. When AFE is enabled, RTS will be
2137 * deasserted when the receive FIFO contains more characters than
2138 * the trigger, or the MCR RTS bit is cleared. In the case where
2139 * the remote UART is not using CTS auto flow control, we must
2140 * have sufficient FIFO entries for the latency of the remote
2141 * UART to respond. IOW, at least 32 bytes of FIFO.
2142 */
2143 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2144 up->mcr &= ~UART_MCR_AFE;
2145 if (termios->c_cflag & CRTSCTS)
2146 up->mcr |= UART_MCR_AFE;
2147 }
2148
2149 /*
2150 * Ok, we're now changing the port state. Do it with
2151 * interrupts disabled.
2152 */
2153 spin_lock_irqsave(&up->port.lock, flags);
2154
2155 /*
2156 * Update the per-port timeout.
2157 */
2158 uart_update_timeout(port, termios->c_cflag, baud);
2159
2160 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2161 if (termios->c_iflag & INPCK)
2162 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2163 if (termios->c_iflag & (BRKINT | PARMRK))
2164 up->port.read_status_mask |= UART_LSR_BI;
2165
2166 /*
2167 * Characteres to ignore
2168 */
2169 up->port.ignore_status_mask = 0;
2170 if (termios->c_iflag & IGNPAR)
2171 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2172 if (termios->c_iflag & IGNBRK) {
2173 up->port.ignore_status_mask |= UART_LSR_BI;
2174 /*
2175 * If we're ignoring parity and break indicators,
2176 * ignore overruns too (for real raw support).
2177 */
2178 if (termios->c_iflag & IGNPAR)
2179 up->port.ignore_status_mask |= UART_LSR_OE;
2180 }
2181
2182 /*
2183 * ignore all characters if CREAD is not set
2184 */
2185 if ((termios->c_cflag & CREAD) == 0)
2186 up->port.ignore_status_mask |= UART_LSR_DR;
2187
2188 /*
2189 * CTS flow control flag and modem status interrupts
2190 */
2191 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002192 if (!(up->bugs & UART_BUG_NOMSR) &&
2193 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 up->ier |= UART_IER_MSI;
2195 if (up->capabilities & UART_CAP_UUE)
2196 up->ier |= UART_IER_UUE | UART_IER_RTOIE;
2197
2198 serial_out(up, UART_IER, up->ier);
2199
2200 if (up->capabilities & UART_CAP_EFR) {
2201 unsigned char efr = 0;
2202 /*
2203 * TI16C752/Startech hardware flow control. FIXME:
2204 * - TI16C752 requires control thresholds to be set.
2205 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2206 */
2207 if (termios->c_cflag & CRTSCTS)
2208 efr |= UART_EFR_CTS;
2209
2210 serial_outp(up, UART_LCR, 0xBF);
2211 serial_outp(up, UART_EFR, efr);
2212 }
2213
Russell Kingf2eda272008-09-01 21:47:59 +01002214#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002215 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002216 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002217 if (baud == 115200) {
2218 quot = 1;
2219 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2220 } else
2221 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2222 }
2223#endif
2224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (up->capabilities & UART_NATSEMI) {
2226 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2227 serial_outp(up, UART_LCR, 0xe0);
2228 } else {
2229 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2230 }
2231
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002232 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 /*
2235 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2236 * is written without DLAB set, this mode will be disabled.
2237 */
2238 if (up->port.type == PORT_16750)
2239 serial_outp(up, UART_FCR, fcr);
2240
2241 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2242 up->lcr = cval; /* Save LCR */
2243 if (up->port.type != PORT_16750) {
2244 if (fcr & UART_FCR_ENABLE_FIFO) {
2245 /* emulated UARTs (Lucent Venus 167x) need two steps */
2246 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2247 }
2248 serial_outp(up, UART_FCR, fcr); /* set fcr */
2249 }
2250 serial8250_set_mctrl(&up->port, up->port.mctrl);
2251 spin_unlock_irqrestore(&up->port.lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002252 /* Don't rewrite B0 */
2253 if (tty_termios_baud_rate(termios))
2254 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255}
2256
2257static void
2258serial8250_pm(struct uart_port *port, unsigned int state,
2259 unsigned int oldstate)
2260{
2261 struct uart_8250_port *p = (struct uart_8250_port *)port;
2262
2263 serial8250_set_sleep(p, state != 0);
2264
2265 if (p->pm)
2266 p->pm(port, state, oldstate);
2267}
2268
Russell Kingf2eda272008-09-01 21:47:59 +01002269static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2270{
2271 if (pt->port.iotype == UPIO_AU)
2272 return 0x100000;
2273#ifdef CONFIG_ARCH_OMAP
2274 if (is_omap_port(pt))
2275 return 0x16 << pt->port.regshift;
2276#endif
2277 return 8 << pt->port.regshift;
2278}
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280/*
2281 * Resource handling.
2282 */
2283static int serial8250_request_std_resource(struct uart_8250_port *up)
2284{
Russell Kingf2eda272008-09-01 21:47:59 +01002285 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 int ret = 0;
2287
2288 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002289 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002290 case UPIO_TSI:
2291 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002293 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 if (!up->port.mapbase)
2295 break;
2296
2297 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2298 ret = -EBUSY;
2299 break;
2300 }
2301
2302 if (up->port.flags & UPF_IOREMAP) {
Alan Cox6f441fe2008-05-01 04:34:59 -07002303 up->port.membase = ioremap_nocache(up->port.mapbase,
2304 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 if (!up->port.membase) {
2306 release_mem_region(up->port.mapbase, size);
2307 ret = -ENOMEM;
2308 }
2309 }
2310 break;
2311
2312 case UPIO_HUB6:
2313 case UPIO_PORT:
2314 if (!request_region(up->port.iobase, size, "serial"))
2315 ret = -EBUSY;
2316 break;
2317 }
2318 return ret;
2319}
2320
2321static void serial8250_release_std_resource(struct uart_8250_port *up)
2322{
Russell Kingf2eda272008-09-01 21:47:59 +01002323 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
2325 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002326 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002327 case UPIO_TSI:
2328 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002330 case UPIO_DWAPB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if (!up->port.mapbase)
2332 break;
2333
2334 if (up->port.flags & UPF_IOREMAP) {
2335 iounmap(up->port.membase);
2336 up->port.membase = NULL;
2337 }
2338
2339 release_mem_region(up->port.mapbase, size);
2340 break;
2341
2342 case UPIO_HUB6:
2343 case UPIO_PORT:
2344 release_region(up->port.iobase, size);
2345 break;
2346 }
2347}
2348
2349static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2350{
2351 unsigned long start = UART_RSA_BASE << up->port.regshift;
2352 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002353 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 case UPIO_HUB6:
2357 case UPIO_PORT:
2358 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002359 if (request_region(start, size, "serial-rsa"))
2360 ret = 0;
2361 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 ret = -EBUSY;
2363 break;
2364 }
2365
2366 return ret;
2367}
2368
2369static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2370{
2371 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2372 unsigned int size = 8 << up->port.regshift;
2373
2374 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 case UPIO_HUB6:
2376 case UPIO_PORT:
2377 release_region(up->port.iobase + offset, size);
2378 break;
2379 }
2380}
2381
2382static void serial8250_release_port(struct uart_port *port)
2383{
2384 struct uart_8250_port *up = (struct uart_8250_port *)port;
2385
2386 serial8250_release_std_resource(up);
2387 if (up->port.type == PORT_RSA)
2388 serial8250_release_rsa_resource(up);
2389}
2390
2391static int serial8250_request_port(struct uart_port *port)
2392{
2393 struct uart_8250_port *up = (struct uart_8250_port *)port;
2394 int ret = 0;
2395
2396 ret = serial8250_request_std_resource(up);
2397 if (ret == 0 && up->port.type == PORT_RSA) {
2398 ret = serial8250_request_rsa_resource(up);
2399 if (ret < 0)
2400 serial8250_release_std_resource(up);
2401 }
2402
2403 return ret;
2404}
2405
2406static void serial8250_config_port(struct uart_port *port, int flags)
2407{
2408 struct uart_8250_port *up = (struct uart_8250_port *)port;
2409 int probeflags = PROBE_ANY;
2410 int ret;
2411
2412 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 * Find the region that we can probe for. This in turn
2414 * tells us whether we can probe for the type of port.
2415 */
2416 ret = serial8250_request_std_resource(up);
2417 if (ret < 0)
2418 return;
2419
2420 ret = serial8250_request_rsa_resource(up);
2421 if (ret < 0)
2422 probeflags &= ~PROBE_RSA;
2423
2424 if (flags & UART_CONFIG_TYPE)
2425 autoconfig(up, probeflags);
2426 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2427 autoconfig_irq(up);
2428
2429 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2430 serial8250_release_rsa_resource(up);
2431 if (up->port.type == PORT_UNKNOWN)
2432 serial8250_release_std_resource(up);
2433}
2434
2435static int
2436serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2437{
2438 if (ser->irq >= NR_IRQS || ser->irq < 0 ||
2439 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2440 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2441 ser->type == PORT_STARTECH)
2442 return -EINVAL;
2443 return 0;
2444}
2445
2446static const char *
2447serial8250_type(struct uart_port *port)
2448{
2449 int type = port->type;
2450
2451 if (type >= ARRAY_SIZE(uart_config))
2452 type = 0;
2453 return uart_config[type].name;
2454}
2455
2456static struct uart_ops serial8250_pops = {
2457 .tx_empty = serial8250_tx_empty,
2458 .set_mctrl = serial8250_set_mctrl,
2459 .get_mctrl = serial8250_get_mctrl,
2460 .stop_tx = serial8250_stop_tx,
2461 .start_tx = serial8250_start_tx,
2462 .stop_rx = serial8250_stop_rx,
2463 .enable_ms = serial8250_enable_ms,
2464 .break_ctl = serial8250_break_ctl,
2465 .startup = serial8250_startup,
2466 .shutdown = serial8250_shutdown,
2467 .set_termios = serial8250_set_termios,
2468 .pm = serial8250_pm,
2469 .type = serial8250_type,
2470 .release_port = serial8250_release_port,
2471 .request_port = serial8250_request_port,
2472 .config_port = serial8250_config_port,
2473 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002474#ifdef CONFIG_CONSOLE_POLL
2475 .poll_get_char = serial8250_get_poll_char,
2476 .poll_put_char = serial8250_put_poll_char,
2477#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478};
2479
2480static struct uart_8250_port serial8250_ports[UART_NR];
2481
2482static void __init serial8250_isa_init_ports(void)
2483{
2484 struct uart_8250_port *up;
2485 static int first = 1;
2486 int i;
2487
2488 if (!first)
2489 return;
2490 first = 0;
2491
Dave Jonesa61c2d72006-01-07 23:18:19 +00002492 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 struct uart_8250_port *up = &serial8250_ports[i];
2494
2495 up->port.line = i;
2496 spin_lock_init(&up->port.lock);
2497
2498 init_timer(&up->timer);
2499 up->timer.function = serial8250_timeout;
2500
2501 /*
2502 * ALPHA_KLUDGE_MCR needs to be killed.
2503 */
2504 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2505 up->mcr_force = ALPHA_KLUDGE_MCR;
2506
2507 up->port.ops = &serial8250_pops;
2508 }
2509
Russell King44454bc2005-06-30 22:41:22 +01002510 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002511 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 i++, up++) {
2513 up->port.iobase = old_serial_port[i].port;
2514 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
2515 up->port.uartclk = old_serial_port[i].baud_base * 16;
2516 up->port.flags = old_serial_port[i].flags;
2517 up->port.hub6 = old_serial_port[i].hub6;
2518 up->port.membase = old_serial_port[i].iomem_base;
2519 up->port.iotype = old_serial_port[i].io_type;
2520 up->port.regshift = old_serial_port[i].iomem_reg_shift;
2521 if (share_irqs)
2522 up->port.flags |= UPF_SHARE_IRQ;
2523 }
2524}
2525
2526static void __init
2527serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2528{
2529 int i;
2530
2531 serial8250_isa_init_ports();
2532
Dave Jonesa61c2d72006-01-07 23:18:19 +00002533 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 struct uart_8250_port *up = &serial8250_ports[i];
2535
2536 up->port.dev = dev;
2537 uart_add_one_port(drv, &up->port);
2538 }
2539}
2540
2541#ifdef CONFIG_SERIAL_8250_CONSOLE
2542
Russell Kingd3587882006-03-20 20:00:09 +00002543static void serial8250_console_putchar(struct uart_port *port, int ch)
2544{
2545 struct uart_8250_port *up = (struct uart_8250_port *)port;
2546
2547 wait_for_xmitr(up, UART_LSR_THRE);
2548 serial_out(up, UART_TX, ch);
2549}
2550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551/*
2552 * Print a string to the serial port trying not to disturb
2553 * any possible real use of the port...
2554 *
2555 * The console_lock must be held when we get here.
2556 */
2557static void
2558serial8250_console_write(struct console *co, const char *s, unsigned int count)
2559{
2560 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002561 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002563 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Andrew Morton78512ec2005-11-07 00:59:13 -08002565 touch_nmi_watchdog();
2566
Andrew Morton68aa2c02006-06-30 02:29:59 -07002567 local_irq_save(flags);
2568 if (up->port.sysrq) {
2569 /* serial8250_handle_port() already took the lock */
2570 locked = 0;
2571 } else if (oops_in_progress) {
2572 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002573 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002574 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002577 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 */
2579 ier = serial_in(up, UART_IER);
2580
2581 if (up->capabilities & UART_CAP_UUE)
2582 serial_out(up, UART_IER, UART_IER_UUE);
2583 else
2584 serial_out(up, UART_IER, 0);
2585
Russell Kingd3587882006-03-20 20:00:09 +00002586 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 /*
2589 * Finally, wait for transmitter to become empty
2590 * and restore the IER
2591 */
Alan Coxf91a3712006-01-21 14:59:12 +00002592 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002593 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002594
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002595 /*
2596 * The receive handling will happen properly because the
2597 * receive ready bit will still be set; it is not cleared
2598 * on read. However, modem control will not, we must
2599 * call it if we have saved something in the saved flags
2600 * while processing with interrupts off.
2601 */
2602 if (up->msr_saved_flags)
2603 check_modem_status(up);
2604
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002605 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002606 spin_unlock(&up->port.lock);
2607 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608}
2609
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002610static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
2612 struct uart_port *port;
2613 int baud = 9600;
2614 int bits = 8;
2615 int parity = 'n';
2616 int flow = 'n';
2617
2618 /*
2619 * Check whether an invalid uart number has been specified, and
2620 * if so, search for the first available port that does have
2621 * console support.
2622 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002623 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 co->index = 0;
2625 port = &serial8250_ports[co->index].port;
2626 if (!port->iobase && !port->membase)
2627 return -ENODEV;
2628
2629 if (options)
2630 uart_parse_options(options, &baud, &parity, &bits, &flow);
2631
2632 return uart_set_options(port, co, baud, parity, bits, flow);
2633}
2634
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002635static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002636{
2637 return serial8250_find_port_for_earlycon();
2638}
2639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640static struct uart_driver serial8250_reg;
2641static struct console serial8250_console = {
2642 .name = "ttyS",
2643 .write = serial8250_console_write,
2644 .device = uart_console_device,
2645 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002646 .early_setup = serial8250_console_early_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 .flags = CON_PRINTBUFFER,
2648 .index = -1,
2649 .data = &serial8250_reg,
2650};
2651
2652static int __init serial8250_console_init(void)
2653{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002654 if (nr_uarts > UART_NR)
2655 nr_uarts = UART_NR;
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 serial8250_isa_init_ports();
2658 register_console(&serial8250_console);
2659 return 0;
2660}
2661console_initcall(serial8250_console_init);
2662
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002663int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664{
2665 int line;
2666 struct uart_port *port;
2667
Dave Jonesa61c2d72006-01-07 23:18:19 +00002668 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002670 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 return line;
2672 }
2673 return -ENODEV;
2674}
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676#define SERIAL8250_CONSOLE &serial8250_console
2677#else
2678#define SERIAL8250_CONSOLE NULL
2679#endif
2680
2681static struct uart_driver serial8250_reg = {
2682 .owner = THIS_MODULE,
2683 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 .dev_name = "ttyS",
2685 .major = TTY_MAJOR,
2686 .minor = 64,
2687 .nr = UART_NR,
2688 .cons = SERIAL8250_CONSOLE,
2689};
2690
Russell Kingd856c662006-02-23 10:22:13 +00002691/*
2692 * early_serial_setup - early registration for 8250 ports
2693 *
2694 * Setup an 8250 port structure prior to console initialisation. Use
2695 * after console initialisation will cause undefined behaviour.
2696 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697int __init early_serial_setup(struct uart_port *port)
2698{
2699 if (port->line >= ARRAY_SIZE(serial8250_ports))
2700 return -ENODEV;
2701
2702 serial8250_isa_init_ports();
2703 serial8250_ports[port->line].port = *port;
2704 serial8250_ports[port->line].port.ops = &serial8250_pops;
2705 return 0;
2706}
2707
2708/**
2709 * serial8250_suspend_port - suspend one serial port
2710 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 *
2712 * Suspend one serial port.
2713 */
2714void serial8250_suspend_port(int line)
2715{
2716 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
2717}
2718
2719/**
2720 * serial8250_resume_port - resume one serial port
2721 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 *
2723 * Resume one serial port.
2724 */
2725void serial8250_resume_port(int line)
2726{
David Woodhouseb5b82df2007-05-17 14:27:39 +08002727 struct uart_8250_port *up = &serial8250_ports[line];
2728
2729 if (up->capabilities & UART_NATSEMI) {
2730 unsigned char tmp;
2731
2732 /* Ensure it's still in high speed mode */
2733 serial_outp(up, UART_LCR, 0xE0);
2734
2735 tmp = serial_in(up, 0x04); /* EXCR2 */
2736 tmp &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
2737 tmp |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
2738 serial_outp(up, 0x04, tmp);
2739
2740 serial_outp(up, UART_LCR, 0);
2741 }
2742 uart_resume_port(&serial8250_reg, &up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743}
2744
2745/*
2746 * Register a set of serial devices attached to a platform device. The
2747 * list is terminated with a zero flags entry, which means we expect
2748 * all entries to have at least UPF_BOOT_AUTOCONF set.
2749 */
Russell King3ae5eae2005-11-09 22:32:44 +00002750static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751{
Russell King3ae5eae2005-11-09 22:32:44 +00002752 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 struct uart_port port;
Russell Kingec9f47c2005-06-27 11:12:54 +01002754 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 memset(&port, 0, sizeof(struct uart_port));
2757
Russell Kingec9f47c2005-06-27 11:12:54 +01002758 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08002759 port.iobase = p->iobase;
2760 port.membase = p->membase;
2761 port.irq = p->irq;
2762 port.uartclk = p->uartclk;
2763 port.regshift = p->regshift;
2764 port.iotype = p->iotype;
2765 port.flags = p->flags;
2766 port.mapbase = p->mapbase;
2767 port.hub6 = p->hub6;
2768 port.private_data = p->private_data;
2769 port.dev = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if (share_irqs)
2771 port.flags |= UPF_SHARE_IRQ;
Russell Kingec9f47c2005-06-27 11:12:54 +01002772 ret = serial8250_register_port(&port);
2773 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00002774 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07002775 "(IO%lx MEM%llx IRQ%d): %d\n", i,
2776 p->iobase, (unsigned long long)p->mapbase,
2777 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01002778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 }
2780 return 0;
2781}
2782
2783/*
2784 * Remove serial ports registered against a platform device.
2785 */
Russell King3ae5eae2005-11-09 22:32:44 +00002786static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787{
2788 int i;
2789
Dave Jonesa61c2d72006-01-07 23:18:19 +00002790 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 struct uart_8250_port *up = &serial8250_ports[i];
2792
Russell King3ae5eae2005-11-09 22:32:44 +00002793 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 serial8250_unregister_port(i);
2795 }
2796 return 0;
2797}
2798
Russell King3ae5eae2005-11-09 22:32:44 +00002799static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
2801 int i;
2802
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 for (i = 0; i < UART_NR; i++) {
2804 struct uart_8250_port *up = &serial8250_ports[i];
2805
Russell King3ae5eae2005-11-09 22:32:44 +00002806 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 uart_suspend_port(&serial8250_reg, &up->port);
2808 }
2809
2810 return 0;
2811}
2812
Russell King3ae5eae2005-11-09 22:32:44 +00002813static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814{
2815 int i;
2816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 for (i = 0; i < UART_NR; i++) {
2818 struct uart_8250_port *up = &serial8250_ports[i];
2819
Russell King3ae5eae2005-11-09 22:32:44 +00002820 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08002821 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823
2824 return 0;
2825}
2826
Russell King3ae5eae2005-11-09 22:32:44 +00002827static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 .probe = serial8250_probe,
2829 .remove = __devexit_p(serial8250_remove),
2830 .suspend = serial8250_suspend,
2831 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00002832 .driver = {
2833 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002834 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002835 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836};
2837
2838/*
2839 * This "device" covers _all_ ISA 8250-compatible serial devices listed
2840 * in the table in include/asm/serial.h
2841 */
2842static struct platform_device *serial8250_isa_devs;
2843
2844/*
2845 * serial8250_register_port and serial8250_unregister_port allows for
2846 * 16x50 serial ports to be configured at run-time, to support PCMCIA
2847 * modems and PCI multiport cards.
2848 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002849static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
2852{
2853 int i;
2854
2855 /*
2856 * First, find a port entry which matches.
2857 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002858 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 if (uart_match_port(&serial8250_ports[i].port, port))
2860 return &serial8250_ports[i];
2861
2862 /*
2863 * We didn't find a matching entry, so look for the first
2864 * free entry. We look for one which hasn't been previously
2865 * used (indicated by zero iobase).
2866 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002867 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
2869 serial8250_ports[i].port.iobase == 0)
2870 return &serial8250_ports[i];
2871
2872 /*
2873 * That also failed. Last resort is to find any entry which
2874 * doesn't have a real port associated with it.
2875 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002876 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
2878 return &serial8250_ports[i];
2879
2880 return NULL;
2881}
2882
2883/**
2884 * serial8250_register_port - register a serial port
2885 * @port: serial port template
2886 *
2887 * Configure the serial port specified by the request. If the
2888 * port exists and is in use, it is hung up and unregistered
2889 * first.
2890 *
2891 * The port is then probed and if necessary the IRQ is autodetected
2892 * If this fails an error is returned.
2893 *
2894 * On success the port is ready to use and the line number is returned.
2895 */
2896int serial8250_register_port(struct uart_port *port)
2897{
2898 struct uart_8250_port *uart;
2899 int ret = -ENOSPC;
2900
2901 if (port->uartclk == 0)
2902 return -EINVAL;
2903
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002904 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906 uart = serial8250_find_match_or_unused(port);
2907 if (uart) {
2908 uart_remove_one_port(&serial8250_reg, &uart->port);
2909
Will Newton74a197412008-02-04 22:27:50 -08002910 uart->port.iobase = port->iobase;
2911 uart->port.membase = port->membase;
2912 uart->port.irq = port->irq;
2913 uart->port.uartclk = port->uartclk;
2914 uart->port.fifosize = port->fifosize;
2915 uart->port.regshift = port->regshift;
2916 uart->port.iotype = port->iotype;
2917 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
2918 uart->port.mapbase = port->mapbase;
2919 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 if (port->dev)
2921 uart->port.dev = port->dev;
2922
2923 ret = uart_add_one_port(&serial8250_reg, &uart->port);
2924 if (ret == 0)
2925 ret = uart->port.line;
2926 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002927 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
2929 return ret;
2930}
2931EXPORT_SYMBOL(serial8250_register_port);
2932
2933/**
2934 * serial8250_unregister_port - remove a 16x50 serial port at runtime
2935 * @line: serial line number
2936 *
2937 * Remove one serial port. This may not be called from interrupt
2938 * context. We hand the port back to the our control.
2939 */
2940void serial8250_unregister_port(int line)
2941{
2942 struct uart_8250_port *uart = &serial8250_ports[line];
2943
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002944 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 uart_remove_one_port(&serial8250_reg, &uart->port);
2946 if (serial8250_isa_devs) {
2947 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
2948 uart->port.type = PORT_UNKNOWN;
2949 uart->port.dev = &serial8250_isa_devs->dev;
2950 uart_add_one_port(&serial8250_reg, &uart->port);
2951 } else {
2952 uart->port.dev = NULL;
2953 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002954 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955}
2956EXPORT_SYMBOL(serial8250_unregister_port);
2957
2958static int __init serial8250_init(void)
2959{
2960 int ret, i;
2961
Dave Jonesa61c2d72006-01-07 23:18:19 +00002962 if (nr_uarts > UART_NR)
2963 nr_uarts = UART_NR;
2964
Adrian Bunkd87a6d92008-07-16 21:53:31 +01002965 printk(KERN_INFO "Serial: 8250/16550 driver"
Dave Jonesa61c2d72006-01-07 23:18:19 +00002966 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 share_irqs ? "en" : "dis");
2968
2969 for (i = 0; i < NR_IRQS; i++)
2970 spin_lock_init(&irq_lists[i].lock);
2971
2972 ret = uart_register_driver(&serial8250_reg);
2973 if (ret)
2974 goto out;
2975
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002976 serial8250_isa_devs = platform_device_alloc("serial8250",
2977 PLAT8250_DEV_LEGACY);
2978 if (!serial8250_isa_devs) {
2979 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00002980 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 }
2982
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002983 ret = platform_device_add(serial8250_isa_devs);
2984 if (ret)
2985 goto put_dev;
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
2988
Russell Kingbc965a72006-01-18 09:54:29 +00002989 ret = platform_driver_register(&serial8250_isa_driver);
2990 if (ret == 0)
2991 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Russell Kingbc965a72006-01-18 09:54:29 +00002993 platform_device_del(serial8250_isa_devs);
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002994 put_dev:
2995 platform_device_put(serial8250_isa_devs);
Dmitry Torokhov7493a312006-01-13 22:06:43 +00002996 unreg_uart_drv:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 uart_unregister_driver(&serial8250_reg);
2998 out:
2999 return ret;
3000}
3001
3002static void __exit serial8250_exit(void)
3003{
3004 struct platform_device *isa_dev = serial8250_isa_devs;
3005
3006 /*
3007 * This tells serial8250_unregister_port() not to re-register
3008 * the ports (thereby making serial8250_isa_driver permanently
3009 * in use.)
3010 */
3011 serial8250_isa_devs = NULL;
3012
Russell King3ae5eae2005-11-09 22:32:44 +00003013 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 platform_device_unregister(isa_dev);
3015
3016 uart_unregister_driver(&serial8250_reg);
3017}
3018
3019module_init(serial8250_init);
3020module_exit(serial8250_exit);
3021
3022EXPORT_SYMBOL(serial8250_suspend_port);
3023EXPORT_SYMBOL(serial8250_resume_port);
3024
3025MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003026MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
3028module_param(share_irqs, uint, 0644);
3029MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3030 " (unsafe)");
3031
Dave Jonesa61c2d72006-01-07 23:18:19 +00003032module_param(nr_uarts, uint, 0644);
3033MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035#ifdef CONFIG_SERIAL_8250_RSA
3036module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3037MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3038#endif
3039MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);