blob: 27cc288e91d0465b1d9de49ca13678b8643791d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/8250.c
3 *
4 * Driver for 8250/16550-type serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * Copyright (C) 2001 Russell King.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * $Id: 8250.c,v 1.90 2002/07/28 10:03:27 rmk Exp $
16 *
17 * A note about mapbase / membase
18 *
19 * mapbase is the physical address of the IO port.
20 * membase is an 'ioremapped' cookie.
21 */
22#include <linux/config.h>
23
24#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
25#define SUPPORT_SYSRQ
26#endif
27
28#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/ioport.h>
31#include <linux/init.h>
32#include <linux/console.h>
33#include <linux/sysrq.h>
34#include <linux/mca.h>
35#include <linux/delay.h>
36#include <linux/device.h>
37#include <linux/tty.h>
38#include <linux/tty_flip.h>
39#include <linux/serial_reg.h>
40#include <linux/serial_core.h>
41#include <linux/serial.h>
42#include <linux/serial_8250.h>
43
44#include <asm/io.h>
45#include <asm/irq.h>
46
47#include "8250.h"
48
49/*
50 * Configuration:
51 * share_irqs - whether we pass SA_SHIRQ to request_irq(). This option
52 * is unsafe when used on edge-triggered interrupts.
53 */
Adrian Bunk408b6642005-05-01 08:59:29 -070054static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
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
80/*
81 * This converts from our new CONFIG_ symbols to the symbols
82 * that asm/serial.h expects. You _NEED_ to comment out the
83 * linux/config.h include contained inside asm/serial.h for
84 * this to work.
85 */
86#undef CONFIG_SERIAL_MANY_PORTS
87#undef CONFIG_SERIAL_DETECT_IRQ
88#undef CONFIG_SERIAL_MULTIPORT
89#undef CONFIG_HUB6
90
91#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
92#define CONFIG_SERIAL_DETECT_IRQ 1
93#endif
94#ifdef CONFIG_SERIAL_8250_MULTIPORT
95#define CONFIG_SERIAL_MULTIPORT 1
96#endif
97#ifdef CONFIG_SERIAL_8250_MANY_PORTS
98#define CONFIG_SERIAL_MANY_PORTS 1
99#endif
100
101/*
102 * HUB6 is always on. This will be removed once the header
103 * files have been cleaned.
104 */
105#define CONFIG_HUB6 1
106
107#include <asm/serial.h>
108
109/*
110 * SERIAL_PORT_DFNS tells us about built-in ports that have no
111 * standard enumeration mechanism. Platforms that can find all
112 * serial ports via mechanisms like ACPI or PCI need not supply it.
113 */
114#ifndef SERIAL_PORT_DFNS
115#define SERIAL_PORT_DFNS
116#endif
117
118static struct old_serial_port old_serial_port[] = {
119 SERIAL_PORT_DFNS /* defined in asm/serial.h */
120};
121
122#define UART_NR (ARRAY_SIZE(old_serial_port) + CONFIG_SERIAL_8250_NR_UARTS)
123
124#ifdef CONFIG_SERIAL_8250_RSA
125
126#define PORT_RSA_MAX 4
127static unsigned long probe_rsa[PORT_RSA_MAX];
128static unsigned int probe_rsa_count;
129#endif /* CONFIG_SERIAL_8250_RSA */
130
131struct uart_8250_port {
132 struct uart_port port;
133 struct timer_list timer; /* "no irq" timer */
134 struct list_head list; /* ports on this IRQ */
Russell King4ba5e352005-06-23 10:43:04 +0100135 unsigned short capabilities; /* port capabilities */
136 unsigned short bugs; /* port bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 unsigned int tx_loadsz; /* transmit fifo load size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 unsigned char acr;
139 unsigned char ier;
140 unsigned char lcr;
141 unsigned char mcr;
142 unsigned char mcr_mask; /* mask of user bits */
143 unsigned char mcr_force; /* mask of forced bits */
144 unsigned char lsr_break_flag;
145
146 /*
147 * We provide a per-port pm hook.
148 */
149 void (*pm)(struct uart_port *port,
150 unsigned int state, unsigned int old);
151};
152
153struct irq_info {
154 spinlock_t lock;
155 struct list_head *head;
156};
157
158static struct irq_info irq_lists[NR_IRQS];
159
160/*
161 * Here we define the default xmit fifo size used for each type of UART.
162 */
163static const struct serial8250_config uart_config[] = {
164 [PORT_UNKNOWN] = {
165 .name = "unknown",
166 .fifo_size = 1,
167 .tx_loadsz = 1,
168 },
169 [PORT_8250] = {
170 .name = "8250",
171 .fifo_size = 1,
172 .tx_loadsz = 1,
173 },
174 [PORT_16450] = {
175 .name = "16450",
176 .fifo_size = 1,
177 .tx_loadsz = 1,
178 },
179 [PORT_16550] = {
180 .name = "16550",
181 .fifo_size = 1,
182 .tx_loadsz = 1,
183 },
184 [PORT_16550A] = {
185 .name = "16550A",
186 .fifo_size = 16,
187 .tx_loadsz = 16,
188 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
189 .flags = UART_CAP_FIFO,
190 },
191 [PORT_CIRRUS] = {
192 .name = "Cirrus",
193 .fifo_size = 1,
194 .tx_loadsz = 1,
195 },
196 [PORT_16650] = {
197 .name = "ST16650",
198 .fifo_size = 1,
199 .tx_loadsz = 1,
200 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
201 },
202 [PORT_16650V2] = {
203 .name = "ST16650V2",
204 .fifo_size = 32,
205 .tx_loadsz = 16,
206 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
207 UART_FCR_T_TRIG_00,
208 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
209 },
210 [PORT_16750] = {
211 .name = "TI16750",
212 .fifo_size = 64,
213 .tx_loadsz = 64,
214 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
215 UART_FCR7_64BYTE,
216 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
217 },
218 [PORT_STARTECH] = {
219 .name = "Startech",
220 .fifo_size = 1,
221 .tx_loadsz = 1,
222 },
223 [PORT_16C950] = {
224 .name = "16C950/954",
225 .fifo_size = 128,
226 .tx_loadsz = 128,
227 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
228 .flags = UART_CAP_FIFO,
229 },
230 [PORT_16654] = {
231 .name = "ST16654",
232 .fifo_size = 64,
233 .tx_loadsz = 32,
234 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
235 UART_FCR_T_TRIG_10,
236 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
237 },
238 [PORT_16850] = {
239 .name = "XR16850",
240 .fifo_size = 128,
241 .tx_loadsz = 128,
242 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
243 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
244 },
245 [PORT_RSA] = {
246 .name = "RSA",
247 .fifo_size = 2048,
248 .tx_loadsz = 2048,
249 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
250 .flags = UART_CAP_FIFO,
251 },
252 [PORT_NS16550A] = {
253 .name = "NS16550A",
254 .fifo_size = 16,
255 .tx_loadsz = 16,
256 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
257 .flags = UART_CAP_FIFO | UART_NATSEMI,
258 },
259 [PORT_XSCALE] = {
260 .name = "XScale",
261 .fifo_size = 32,
262 .tx_loadsz = 32,
263 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
264 .flags = UART_CAP_FIFO | UART_CAP_UUE,
265 },
266};
267
268static _INLINE_ unsigned int serial_in(struct uart_8250_port *up, int offset)
269{
270 offset <<= up->port.regshift;
271
272 switch (up->port.iotype) {
273 case UPIO_HUB6:
274 outb(up->port.hub6 - 1 + offset, up->port.iobase);
275 return inb(up->port.iobase + 1);
276
277 case UPIO_MEM:
278 return readb(up->port.membase + offset);
279
280 case UPIO_MEM32:
281 return readl(up->port.membase + offset);
282
283 default:
284 return inb(up->port.iobase + offset);
285 }
286}
287
288static _INLINE_ void
289serial_out(struct uart_8250_port *up, int offset, int value)
290{
291 offset <<= up->port.regshift;
292
293 switch (up->port.iotype) {
294 case UPIO_HUB6:
295 outb(up->port.hub6 - 1 + offset, up->port.iobase);
296 outb(value, up->port.iobase + 1);
297 break;
298
299 case UPIO_MEM:
300 writeb(value, up->port.membase + offset);
301 break;
302
303 case UPIO_MEM32:
304 writel(value, up->port.membase + offset);
305 break;
306
307 default:
308 outb(value, up->port.iobase + offset);
309 }
310}
311
312/*
313 * We used to support using pause I/O for certain machines. We
314 * haven't supported this for a while, but just in case it's badly
315 * needed for certain old 386 machines, I've left these #define's
316 * in....
317 */
318#define serial_inp(up, offset) serial_in(up, offset)
319#define serial_outp(up, offset, value) serial_out(up, offset, value)
320
321
322/*
323 * For the 16C950
324 */
325static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
326{
327 serial_out(up, UART_SCR, offset);
328 serial_out(up, UART_ICR, value);
329}
330
331static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
332{
333 unsigned int value;
334
335 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
336 serial_out(up, UART_SCR, offset);
337 value = serial_in(up, UART_ICR);
338 serial_icr_write(up, UART_ACR, up->acr);
339
340 return value;
341}
342
343/*
344 * FIFO support.
345 */
346static inline void serial8250_clear_fifos(struct uart_8250_port *p)
347{
348 if (p->capabilities & UART_CAP_FIFO) {
349 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
350 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
351 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
352 serial_outp(p, UART_FCR, 0);
353 }
354}
355
356/*
357 * IER sleep support. UARTs which have EFRs need the "extended
358 * capability" bit enabled. Note that on XR16C850s, we need to
359 * reset LCR to write to IER.
360 */
361static inline void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
362{
363 if (p->capabilities & UART_CAP_SLEEP) {
364 if (p->capabilities & UART_CAP_EFR) {
365 serial_outp(p, UART_LCR, 0xBF);
366 serial_outp(p, UART_EFR, UART_EFR_ECB);
367 serial_outp(p, UART_LCR, 0);
368 }
369 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
370 if (p->capabilities & UART_CAP_EFR) {
371 serial_outp(p, UART_LCR, 0xBF);
372 serial_outp(p, UART_EFR, 0);
373 serial_outp(p, UART_LCR, 0);
374 }
375 }
376}
377
378#ifdef CONFIG_SERIAL_8250_RSA
379/*
380 * Attempts to turn on the RSA FIFO. Returns zero on failure.
381 * We set the port uart clock rate if we succeed.
382 */
383static int __enable_rsa(struct uart_8250_port *up)
384{
385 unsigned char mode;
386 int result;
387
388 mode = serial_inp(up, UART_RSA_MSR);
389 result = mode & UART_RSA_MSR_FIFO;
390
391 if (!result) {
392 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
393 mode = serial_inp(up, UART_RSA_MSR);
394 result = mode & UART_RSA_MSR_FIFO;
395 }
396
397 if (result)
398 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
399
400 return result;
401}
402
403static void enable_rsa(struct uart_8250_port *up)
404{
405 if (up->port.type == PORT_RSA) {
406 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
407 spin_lock_irq(&up->port.lock);
408 __enable_rsa(up);
409 spin_unlock_irq(&up->port.lock);
410 }
411 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
412 serial_outp(up, UART_RSA_FRR, 0);
413 }
414}
415
416/*
417 * Attempts to turn off the RSA FIFO. Returns zero on failure.
418 * It is unknown why interrupts were disabled in here. However,
419 * the caller is expected to preserve this behaviour by grabbing
420 * the spinlock before calling this function.
421 */
422static void disable_rsa(struct uart_8250_port *up)
423{
424 unsigned char mode;
425 int result;
426
427 if (up->port.type == PORT_RSA &&
428 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
429 spin_lock_irq(&up->port.lock);
430
431 mode = serial_inp(up, UART_RSA_MSR);
432 result = !(mode & UART_RSA_MSR_FIFO);
433
434 if (!result) {
435 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
436 mode = serial_inp(up, UART_RSA_MSR);
437 result = !(mode & UART_RSA_MSR_FIFO);
438 }
439
440 if (result)
441 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
442 spin_unlock_irq(&up->port.lock);
443 }
444}
445#endif /* CONFIG_SERIAL_8250_RSA */
446
447/*
448 * This is a quickie test to see how big the FIFO is.
449 * It doesn't work at all the time, more's the pity.
450 */
451static int size_fifo(struct uart_8250_port *up)
452{
453 unsigned char old_fcr, old_mcr, old_dll, old_dlm, old_lcr;
454 int count;
455
456 old_lcr = serial_inp(up, UART_LCR);
457 serial_outp(up, UART_LCR, 0);
458 old_fcr = serial_inp(up, UART_FCR);
459 old_mcr = serial_inp(up, UART_MCR);
460 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
461 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
462 serial_outp(up, UART_MCR, UART_MCR_LOOP);
463 serial_outp(up, UART_LCR, UART_LCR_DLAB);
464 old_dll = serial_inp(up, UART_DLL);
465 old_dlm = serial_inp(up, UART_DLM);
466 serial_outp(up, UART_DLL, 0x01);
467 serial_outp(up, UART_DLM, 0x00);
468 serial_outp(up, UART_LCR, 0x03);
469 for (count = 0; count < 256; count++)
470 serial_outp(up, UART_TX, count);
471 mdelay(20);/* FIXME - schedule_timeout */
472 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
473 (count < 256); count++)
474 serial_inp(up, UART_RX);
475 serial_outp(up, UART_FCR, old_fcr);
476 serial_outp(up, UART_MCR, old_mcr);
477 serial_outp(up, UART_LCR, UART_LCR_DLAB);
478 serial_outp(up, UART_DLL, old_dll);
479 serial_outp(up, UART_DLM, old_dlm);
480 serial_outp(up, UART_LCR, old_lcr);
481
482 return count;
483}
484
485/*
486 * Read UART ID using the divisor method - set DLL and DLM to zero
487 * and the revision will be in DLL and device type in DLM. We
488 * preserve the device state across this.
489 */
490static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
491{
492 unsigned char old_dll, old_dlm, old_lcr;
493 unsigned int id;
494
495 old_lcr = serial_inp(p, UART_LCR);
496 serial_outp(p, UART_LCR, UART_LCR_DLAB);
497
498 old_dll = serial_inp(p, UART_DLL);
499 old_dlm = serial_inp(p, UART_DLM);
500
501 serial_outp(p, UART_DLL, 0);
502 serial_outp(p, UART_DLM, 0);
503
504 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
505
506 serial_outp(p, UART_DLL, old_dll);
507 serial_outp(p, UART_DLM, old_dlm);
508 serial_outp(p, UART_LCR, old_lcr);
509
510 return id;
511}
512
513/*
514 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
515 * When this function is called we know it is at least a StarTech
516 * 16650 V2, but it might be one of several StarTech UARTs, or one of
517 * its clones. (We treat the broken original StarTech 16650 V1 as a
518 * 16550, and why not? Startech doesn't seem to even acknowledge its
519 * existence.)
520 *
521 * What evil have men's minds wrought...
522 */
523static void autoconfig_has_efr(struct uart_8250_port *up)
524{
525 unsigned int id1, id2, id3, rev;
526
527 /*
528 * Everything with an EFR has SLEEP
529 */
530 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
531
532 /*
533 * First we check to see if it's an Oxford Semiconductor UART.
534 *
535 * If we have to do this here because some non-National
536 * Semiconductor clone chips lock up if you try writing to the
537 * LSR register (which serial_icr_read does)
538 */
539
540 /*
541 * Check for Oxford Semiconductor 16C950.
542 *
543 * EFR [4] must be set else this test fails.
544 *
545 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
546 * claims that it's needed for 952 dual UART's (which are not
547 * recommended for new designs).
548 */
549 up->acr = 0;
550 serial_out(up, UART_LCR, 0xBF);
551 serial_out(up, UART_EFR, UART_EFR_ECB);
552 serial_out(up, UART_LCR, 0x00);
553 id1 = serial_icr_read(up, UART_ID1);
554 id2 = serial_icr_read(up, UART_ID2);
555 id3 = serial_icr_read(up, UART_ID3);
556 rev = serial_icr_read(up, UART_REV);
557
558 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
559
560 if (id1 == 0x16 && id2 == 0xC9 &&
561 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
562 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100563
564 /*
565 * Enable work around for the Oxford Semiconductor 952 rev B
566 * chip which causes it to seriously miscalculate baud rates
567 * when DLL is 0.
568 */
569 if (id3 == 0x52 && rev == 0x01)
570 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return;
572 }
573
574 /*
575 * We check for a XR16C850 by setting DLL and DLM to 0, and then
576 * reading back DLL and DLM. The chip type depends on the DLM
577 * value read back:
578 * 0x10 - XR16C850 and the DLL contains the chip revision.
579 * 0x12 - XR16C2850.
580 * 0x14 - XR16C854.
581 */
582 id1 = autoconfig_read_divisor_id(up);
583 DEBUG_AUTOCONF("850id=%04x ", id1);
584
585 id2 = id1 >> 8;
586 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 up->port.type = PORT_16850;
588 return;
589 }
590
591 /*
592 * It wasn't an XR16C850.
593 *
594 * We distinguish between the '654 and the '650 by counting
595 * how many bytes are in the FIFO. I'm using this for now,
596 * since that's the technique that was sent to me in the
597 * serial driver update, but I'm not convinced this works.
598 * I've had problems doing this in the past. -TYT
599 */
600 if (size_fifo(up) == 64)
601 up->port.type = PORT_16654;
602 else
603 up->port.type = PORT_16650V2;
604}
605
606/*
607 * We detected a chip without a FIFO. Only two fall into
608 * this category - the original 8250 and the 16450. The
609 * 16450 has a scratch register (accessible with LCR=0)
610 */
611static void autoconfig_8250(struct uart_8250_port *up)
612{
613 unsigned char scratch, status1, status2;
614
615 up->port.type = PORT_8250;
616
617 scratch = serial_in(up, UART_SCR);
618 serial_outp(up, UART_SCR, 0xa5);
619 status1 = serial_in(up, UART_SCR);
620 serial_outp(up, UART_SCR, 0x5a);
621 status2 = serial_in(up, UART_SCR);
622 serial_outp(up, UART_SCR, scratch);
623
624 if (status1 == 0xa5 && status2 == 0x5a)
625 up->port.type = PORT_16450;
626}
627
628static int broken_efr(struct uart_8250_port *up)
629{
630 /*
631 * Exar ST16C2550 "A2" devices incorrectly detect as
632 * having an EFR, and report an ID of 0x0201. See
633 * http://www.exar.com/info.php?pdf=dan180_oct2004.pdf
634 */
635 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
636 return 1;
637
638 return 0;
639}
640
641/*
642 * We know that the chip has FIFOs. Does it have an EFR? The
643 * EFR is located in the same register position as the IIR and
644 * we know the top two bits of the IIR are currently set. The
645 * EFR should contain zero. Try to read the EFR.
646 */
647static void autoconfig_16550a(struct uart_8250_port *up)
648{
649 unsigned char status1, status2;
650 unsigned int iersave;
651
652 up->port.type = PORT_16550A;
653 up->capabilities |= UART_CAP_FIFO;
654
655 /*
656 * Check for presence of the EFR when DLAB is set.
657 * Only ST16C650V1 UARTs pass this test.
658 */
659 serial_outp(up, UART_LCR, UART_LCR_DLAB);
660 if (serial_in(up, UART_EFR) == 0) {
661 serial_outp(up, UART_EFR, 0xA8);
662 if (serial_in(up, UART_EFR) != 0) {
663 DEBUG_AUTOCONF("EFRv1 ");
664 up->port.type = PORT_16650;
665 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
666 } else {
667 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
668 }
669 serial_outp(up, UART_EFR, 0);
670 return;
671 }
672
673 /*
674 * Maybe it requires 0xbf to be written to the LCR.
675 * (other ST16C650V2 UARTs, TI16C752A, etc)
676 */
677 serial_outp(up, UART_LCR, 0xBF);
678 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
679 DEBUG_AUTOCONF("EFRv2 ");
680 autoconfig_has_efr(up);
681 return;
682 }
683
684 /*
685 * Check for a National Semiconductor SuperIO chip.
686 * Attempt to switch to bank 2, read the value of the LOOP bit
687 * from EXCR1. Switch back to bank 0, change it in MCR. Then
688 * switch back to bank 2, read it from EXCR1 again and check
689 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
691 serial_outp(up, UART_LCR, 0);
692 status1 = serial_in(up, UART_MCR);
693 serial_outp(up, UART_LCR, 0xE0);
694 status2 = serial_in(up, 0x02); /* EXCR1 */
695
696 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
697 serial_outp(up, UART_LCR, 0);
698 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
699 serial_outp(up, UART_LCR, 0xE0);
700 status2 = serial_in(up, 0x02); /* EXCR1 */
701 serial_outp(up, UART_LCR, 0);
702 serial_outp(up, UART_MCR, status1);
703
704 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100705 unsigned short quot;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100708
709 quot = serial_inp(up, UART_DLM) << 8;
710 quot += serial_inp(up, UART_DLL);
711 quot <<= 3;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 status1 = serial_in(up, 0x04); /* EXCR1 */
714 status1 &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
715 status1 |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
716 serial_outp(up, 0x04, status1);
David Woodhouse857dde22005-05-21 15:52:23 +0100717
718 serial_outp(up, UART_DLL, quot & 0xff);
719 serial_outp(up, UART_DLM, quot >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
David Woodhouse857dde22005-05-21 15:52:23 +0100721 serial_outp(up, UART_LCR, 0);
722
723 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 up->port.type = PORT_NS16550A;
725 up->capabilities |= UART_NATSEMI;
726 return;
727 }
728 }
729
730 /*
731 * No EFR. Try to detect a TI16750, which only sets bit 5 of
732 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
733 * Try setting it with and without DLAB set. Cheap clones
734 * set bit 5 without DLAB set.
735 */
736 serial_outp(up, UART_LCR, 0);
737 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
738 status1 = serial_in(up, UART_IIR) >> 5;
739 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
740 serial_outp(up, UART_LCR, UART_LCR_DLAB);
741 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
742 status2 = serial_in(up, UART_IIR) >> 5;
743 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
744 serial_outp(up, UART_LCR, 0);
745
746 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
747
748 if (status1 == 6 && status2 == 7) {
749 up->port.type = PORT_16750;
750 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
751 return;
752 }
753
754 /*
755 * Try writing and reading the UART_IER_UUE bit (b6).
756 * If it works, this is probably one of the Xscale platform's
757 * internal UARTs.
758 * We're going to explicitly set the UUE bit to 0 before
759 * trying to write and read a 1 just to make sure it's not
760 * already a 1 and maybe locked there before we even start start.
761 */
762 iersave = serial_in(up, UART_IER);
763 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
764 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
765 /*
766 * OK it's in a known zero state, try writing and reading
767 * without disturbing the current state of the other bits.
768 */
769 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
770 if (serial_in(up, UART_IER) & UART_IER_UUE) {
771 /*
772 * It's an Xscale.
773 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
774 */
775 DEBUG_AUTOCONF("Xscale ");
776 up->port.type = PORT_XSCALE;
777 up->capabilities |= UART_CAP_UUE;
778 return;
779 }
780 } else {
781 /*
782 * If we got here we couldn't force the IER_UUE bit to 0.
783 * Log it and continue.
784 */
785 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
786 }
787 serial_outp(up, UART_IER, iersave);
788}
789
790/*
791 * This routine is called by rs_init() to initialize a specific serial
792 * port. It determines what type of UART chip this serial port is
793 * using: 8250, 16450, 16550, 16550A. The important question is
794 * whether or not this UART is a 16550A or not, since this will
795 * determine whether or not we can use its FIFO features or not.
796 */
797static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
798{
799 unsigned char status1, scratch, scratch2, scratch3;
800 unsigned char save_lcr, save_mcr;
801 unsigned long flags;
802
803 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
804 return;
805
806 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04x, 0x%p): ",
807 up->port.line, up->port.iobase, up->port.membase);
808
809 /*
810 * We really do need global IRQs disabled here - we're going to
811 * be frobbing the chips IRQ enable register to see if it exists.
812 */
813 spin_lock_irqsave(&up->port.lock, flags);
814// save_flags(flags); cli();
815
816 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +0100817 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (!(up->port.flags & UPF_BUGGY_UART)) {
820 /*
821 * Do a simple existence test first; if we fail this,
822 * there's no point trying anything else.
823 *
824 * 0x80 is used as a nonsense port to prevent against
825 * false positives due to ISA bus float. The
826 * assumption is that 0x80 is a non-existent port;
827 * which should be safe since include/asm/io.h also
828 * makes this assumption.
829 *
830 * Note: this is safe as long as MCR bit 4 is clear
831 * and the device is in "PC" mode.
832 */
833 scratch = serial_inp(up, UART_IER);
834 serial_outp(up, UART_IER, 0);
835#ifdef __i386__
836 outb(0xff, 0x080);
837#endif
838 scratch2 = serial_inp(up, UART_IER);
839 serial_outp(up, UART_IER, 0x0F);
840#ifdef __i386__
841 outb(0, 0x080);
842#endif
843 scratch3 = serial_inp(up, UART_IER);
844 serial_outp(up, UART_IER, scratch);
845 if (scratch2 != 0 || scratch3 != 0x0F) {
846 /*
847 * We failed; there's nothing here
848 */
849 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
850 scratch2, scratch3);
851 goto out;
852 }
853 }
854
855 save_mcr = serial_in(up, UART_MCR);
856 save_lcr = serial_in(up, UART_LCR);
857
858 /*
859 * Check to see if a UART is really there. Certain broken
860 * internal modems based on the Rockwell chipset fail this
861 * test, because they apparently don't implement the loopback
862 * test mode. So this test is skipped on the COM 1 through
863 * COM 4 ports. This *should* be safe, since no board
864 * manufacturer would be stupid enough to design a board
865 * that conflicts with COM 1-4 --- we hope!
866 */
867 if (!(up->port.flags & UPF_SKIP_TEST)) {
868 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
869 status1 = serial_inp(up, UART_MSR) & 0xF0;
870 serial_outp(up, UART_MCR, save_mcr);
871 if (status1 != 0x90) {
872 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
873 status1);
874 goto out;
875 }
876 }
877
878 /*
879 * We're pretty sure there's a port here. Lets find out what
880 * type of port it is. The IIR top two bits allows us to find
881 * out if its 8250 or 16450, 16550, 16550A or later. This
882 * determines what we test for next.
883 *
884 * We also initialise the EFR (if any) to zero for later. The
885 * EFR occupies the same register location as the FCR and IIR.
886 */
887 serial_outp(up, UART_LCR, 0xBF);
888 serial_outp(up, UART_EFR, 0);
889 serial_outp(up, UART_LCR, 0);
890
891 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
892 scratch = serial_in(up, UART_IIR) >> 6;
893
894 DEBUG_AUTOCONF("iir=%d ", scratch);
895
896 switch (scratch) {
897 case 0:
898 autoconfig_8250(up);
899 break;
900 case 1:
901 up->port.type = PORT_UNKNOWN;
902 break;
903 case 2:
904 up->port.type = PORT_16550;
905 break;
906 case 3:
907 autoconfig_16550a(up);
908 break;
909 }
910
911#ifdef CONFIG_SERIAL_8250_RSA
912 /*
913 * Only probe for RSA ports if we got the region.
914 */
915 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
916 int i;
917
918 for (i = 0 ; i < probe_rsa_count; ++i) {
919 if (probe_rsa[i] == up->port.iobase &&
920 __enable_rsa(up)) {
921 up->port.type = PORT_RSA;
922 break;
923 }
924 }
925 }
926#endif
927 serial_outp(up, UART_LCR, save_lcr);
928
929 if (up->capabilities != uart_config[up->port.type].flags) {
930 printk(KERN_WARNING
931 "ttyS%d: detected caps %08x should be %08x\n",
932 up->port.line, up->capabilities,
933 uart_config[up->port.type].flags);
934 }
935
936 up->port.fifosize = uart_config[up->port.type].fifo_size;
937 up->capabilities = uart_config[up->port.type].flags;
938 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
939
940 if (up->port.type == PORT_UNKNOWN)
941 goto out;
942
943 /*
944 * Reset the UART.
945 */
946#ifdef CONFIG_SERIAL_8250_RSA
947 if (up->port.type == PORT_RSA)
948 serial_outp(up, UART_RSA_FRR, 0);
949#endif
950 serial_outp(up, UART_MCR, save_mcr);
951 serial8250_clear_fifos(up);
952 (void)serial_in(up, UART_RX);
953 serial_outp(up, UART_IER, 0);
954
955 out:
956 spin_unlock_irqrestore(&up->port.lock, flags);
957// restore_flags(flags);
958 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
959}
960
961static void autoconfig_irq(struct uart_8250_port *up)
962{
963 unsigned char save_mcr, save_ier;
964 unsigned char save_ICP = 0;
965 unsigned int ICP = 0;
966 unsigned long irqs;
967 int irq;
968
969 if (up->port.flags & UPF_FOURPORT) {
970 ICP = (up->port.iobase & 0xfe0) | 0x1f;
971 save_ICP = inb_p(ICP);
972 outb_p(0x80, ICP);
973 (void) inb_p(ICP);
974 }
975
976 /* forget possible initially masked and pending IRQ */
977 probe_irq_off(probe_irq_on());
978 save_mcr = serial_inp(up, UART_MCR);
979 save_ier = serial_inp(up, UART_IER);
980 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
981
982 irqs = probe_irq_on();
983 serial_outp(up, UART_MCR, 0);
984 udelay (10);
985 if (up->port.flags & UPF_FOURPORT) {
986 serial_outp(up, UART_MCR,
987 UART_MCR_DTR | UART_MCR_RTS);
988 } else {
989 serial_outp(up, UART_MCR,
990 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
991 }
992 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
993 (void)serial_inp(up, UART_LSR);
994 (void)serial_inp(up, UART_RX);
995 (void)serial_inp(up, UART_IIR);
996 (void)serial_inp(up, UART_MSR);
997 serial_outp(up, UART_TX, 0xFF);
998 udelay (20);
999 irq = probe_irq_off(irqs);
1000
1001 serial_outp(up, UART_MCR, save_mcr);
1002 serial_outp(up, UART_IER, save_ier);
1003
1004 if (up->port.flags & UPF_FOURPORT)
1005 outb_p(save_ICP, ICP);
1006
1007 up->port.irq = (irq > 0) ? irq : 0;
1008}
1009
1010static void serial8250_stop_tx(struct uart_port *port, unsigned int tty_stop)
1011{
1012 struct uart_8250_port *up = (struct uart_8250_port *)port;
1013
1014 if (up->ier & UART_IER_THRI) {
1015 up->ier &= ~UART_IER_THRI;
1016 serial_out(up, UART_IER, up->ier);
1017 }
1018
1019 /*
1020 * We only do this from uart_stop - if we run out of
1021 * characters to send, we don't want to prevent the
1022 * FIFO from emptying.
1023 */
1024 if (up->port.type == PORT_16C950 && tty_stop) {
1025 up->acr |= UART_ACR_TXDIS;
1026 serial_icr_write(up, UART_ACR, up->acr);
1027 }
1028}
1029
1030static void serial8250_start_tx(struct uart_port *port, unsigned int tty_start)
1031{
1032 struct uart_8250_port *up = (struct uart_8250_port *)port;
1033
1034 if (!(up->ier & UART_IER_THRI)) {
1035 up->ier |= UART_IER_THRI;
1036 serial_out(up, UART_IER, up->ier);
1037 }
1038 /*
1039 * We only do this from uart_start
1040 */
1041 if (tty_start && up->port.type == PORT_16C950) {
1042 up->acr &= ~UART_ACR_TXDIS;
1043 serial_icr_write(up, UART_ACR, up->acr);
1044 }
1045}
1046
1047static void serial8250_stop_rx(struct uart_port *port)
1048{
1049 struct uart_8250_port *up = (struct uart_8250_port *)port;
1050
1051 up->ier &= ~UART_IER_RLSI;
1052 up->port.read_status_mask &= ~UART_LSR_DR;
1053 serial_out(up, UART_IER, up->ier);
1054}
1055
1056static void serial8250_enable_ms(struct uart_port *port)
1057{
1058 struct uart_8250_port *up = (struct uart_8250_port *)port;
1059
1060 up->ier |= UART_IER_MSI;
1061 serial_out(up, UART_IER, up->ier);
1062}
1063
1064static _INLINE_ void
1065receive_chars(struct uart_8250_port *up, int *status, struct pt_regs *regs)
1066{
1067 struct tty_struct *tty = up->port.info->tty;
1068 unsigned char ch, lsr = *status;
1069 int max_count = 256;
1070 char flag;
1071
1072 do {
1073 /* The following is not allowed by the tty layer and
1074 unsafe. It should be fixed ASAP */
1075 if (unlikely(tty->flip.count >= TTY_FLIPBUF_SIZE)) {
1076 if (tty->low_latency) {
1077 spin_unlock(&up->port.lock);
1078 tty_flip_buffer_push(tty);
1079 spin_lock(&up->port.lock);
1080 }
Russell King23907eb2005-04-16 15:26:39 -07001081 /*
1082 * If this failed then we will throw away the
1083 * bytes but must do so to clear interrupts
1084 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086 ch = serial_inp(up, UART_RX);
1087 flag = TTY_NORMAL;
1088 up->port.icount.rx++;
1089
1090#ifdef CONFIG_SERIAL_8250_CONSOLE
1091 /*
1092 * Recover the break flag from console xmit
1093 */
1094 if (up->port.line == up->port.cons->index) {
1095 lsr |= up->lsr_break_flag;
1096 up->lsr_break_flag = 0;
1097 }
1098#endif
1099
1100 if (unlikely(lsr & (UART_LSR_BI | UART_LSR_PE |
1101 UART_LSR_FE | UART_LSR_OE))) {
1102 /*
1103 * For statistics only
1104 */
1105 if (lsr & UART_LSR_BI) {
1106 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1107 up->port.icount.brk++;
1108 /*
1109 * We do the SysRQ and SAK checking
1110 * here because otherwise the break
1111 * may get masked by ignore_status_mask
1112 * or read_status_mask.
1113 */
1114 if (uart_handle_break(&up->port))
1115 goto ignore_char;
1116 } else if (lsr & UART_LSR_PE)
1117 up->port.icount.parity++;
1118 else if (lsr & UART_LSR_FE)
1119 up->port.icount.frame++;
1120 if (lsr & UART_LSR_OE)
1121 up->port.icount.overrun++;
1122
1123 /*
Russell King23907eb2005-04-16 15:26:39 -07001124 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 */
1126 lsr &= up->port.read_status_mask;
1127
1128 if (lsr & UART_LSR_BI) {
1129 DEBUG_INTR("handling break....");
1130 flag = TTY_BREAK;
1131 } else if (lsr & UART_LSR_PE)
1132 flag = TTY_PARITY;
1133 else if (lsr & UART_LSR_FE)
1134 flag = TTY_FRAME;
1135 }
1136 if (uart_handle_sysrq_char(&up->port, ch, regs))
1137 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001138
1139 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 ignore_char:
1142 lsr = serial_inp(up, UART_LSR);
1143 } while ((lsr & UART_LSR_DR) && (max_count-- > 0));
1144 spin_unlock(&up->port.lock);
1145 tty_flip_buffer_push(tty);
1146 spin_lock(&up->port.lock);
1147 *status = lsr;
1148}
1149
1150static _INLINE_ void transmit_chars(struct uart_8250_port *up)
1151{
1152 struct circ_buf *xmit = &up->port.info->xmit;
1153 int count;
1154
1155 if (up->port.x_char) {
1156 serial_outp(up, UART_TX, up->port.x_char);
1157 up->port.icount.tx++;
1158 up->port.x_char = 0;
1159 return;
1160 }
1161 if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
1162 serial8250_stop_tx(&up->port, 0);
1163 return;
1164 }
1165
1166 count = up->tx_loadsz;
1167 do {
1168 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1169 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1170 up->port.icount.tx++;
1171 if (uart_circ_empty(xmit))
1172 break;
1173 } while (--count > 0);
1174
1175 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1176 uart_write_wakeup(&up->port);
1177
1178 DEBUG_INTR("THRE...");
1179
1180 if (uart_circ_empty(xmit))
1181 serial8250_stop_tx(&up->port, 0);
1182}
1183
1184static _INLINE_ void check_modem_status(struct uart_8250_port *up)
1185{
1186 int status;
1187
1188 status = serial_in(up, UART_MSR);
1189
1190 if ((status & UART_MSR_ANY_DELTA) == 0)
1191 return;
1192
1193 if (status & UART_MSR_TERI)
1194 up->port.icount.rng++;
1195 if (status & UART_MSR_DDSR)
1196 up->port.icount.dsr++;
1197 if (status & UART_MSR_DDCD)
1198 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1199 if (status & UART_MSR_DCTS)
1200 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
1201
1202 wake_up_interruptible(&up->port.info->delta_msr_wait);
1203}
1204
1205/*
1206 * This handles the interrupt from one port.
1207 */
1208static inline void
1209serial8250_handle_port(struct uart_8250_port *up, struct pt_regs *regs)
1210{
1211 unsigned int status = serial_inp(up, UART_LSR);
1212
1213 DEBUG_INTR("status = %x...", status);
1214
1215 if (status & UART_LSR_DR)
1216 receive_chars(up, &status, regs);
1217 check_modem_status(up);
1218 if (status & UART_LSR_THRE)
1219 transmit_chars(up);
1220}
1221
1222/*
1223 * This is the serial driver's interrupt routine.
1224 *
1225 * Arjan thinks the old way was overly complex, so it got simplified.
1226 * Alan disagrees, saying that need the complexity to handle the weird
1227 * nature of ISA shared interrupts. (This is a special exception.)
1228 *
1229 * In order to handle ISA shared interrupts properly, we need to check
1230 * that all ports have been serviced, and therefore the ISA interrupt
1231 * line has been de-asserted.
1232 *
1233 * This means we need to loop through all ports. checking that they
1234 * don't have an interrupt pending.
1235 */
1236static irqreturn_t serial8250_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1237{
1238 struct irq_info *i = dev_id;
1239 struct list_head *l, *end = NULL;
1240 int pass_counter = 0, handled = 0;
1241
1242 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1243
1244 spin_lock(&i->lock);
1245
1246 l = i->head;
1247 do {
1248 struct uart_8250_port *up;
1249 unsigned int iir;
1250
1251 up = list_entry(l, struct uart_8250_port, list);
1252
1253 iir = serial_in(up, UART_IIR);
1254 if (!(iir & UART_IIR_NO_INT)) {
1255 spin_lock(&up->port.lock);
1256 serial8250_handle_port(up, regs);
1257 spin_unlock(&up->port.lock);
1258
1259 handled = 1;
1260
1261 end = NULL;
1262 } else if (end == NULL)
1263 end = l;
1264
1265 l = l->next;
1266
1267 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1268 /* If we hit this, we're dead. */
1269 printk(KERN_ERR "serial8250: too much work for "
1270 "irq%d\n", irq);
1271 break;
1272 }
1273 } while (l != end);
1274
1275 spin_unlock(&i->lock);
1276
1277 DEBUG_INTR("end.\n");
1278
1279 return IRQ_RETVAL(handled);
1280}
1281
1282/*
1283 * To support ISA shared interrupts, we need to have one interrupt
1284 * handler that ensures that the IRQ line has been deasserted
1285 * before returning. Failing to do this will result in the IRQ
1286 * line being stuck active, and, since ISA irqs are edge triggered,
1287 * no more IRQs will be seen.
1288 */
1289static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1290{
1291 spin_lock_irq(&i->lock);
1292
1293 if (!list_empty(i->head)) {
1294 if (i->head == &up->list)
1295 i->head = i->head->next;
1296 list_del(&up->list);
1297 } else {
1298 BUG_ON(i->head != &up->list);
1299 i->head = NULL;
1300 }
1301
1302 spin_unlock_irq(&i->lock);
1303}
1304
1305static int serial_link_irq_chain(struct uart_8250_port *up)
1306{
1307 struct irq_info *i = irq_lists + up->port.irq;
1308 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? SA_SHIRQ : 0;
1309
1310 spin_lock_irq(&i->lock);
1311
1312 if (i->head) {
1313 list_add(&up->list, i->head);
1314 spin_unlock_irq(&i->lock);
1315
1316 ret = 0;
1317 } else {
1318 INIT_LIST_HEAD(&up->list);
1319 i->head = &up->list;
1320 spin_unlock_irq(&i->lock);
1321
1322 ret = request_irq(up->port.irq, serial8250_interrupt,
1323 irq_flags, "serial", i);
1324 if (ret < 0)
1325 serial_do_unlink(i, up);
1326 }
1327
1328 return ret;
1329}
1330
1331static void serial_unlink_irq_chain(struct uart_8250_port *up)
1332{
1333 struct irq_info *i = irq_lists + up->port.irq;
1334
1335 BUG_ON(i->head == NULL);
1336
1337 if (list_empty(i->head))
1338 free_irq(up->port.irq, i);
1339
1340 serial_do_unlink(i, up);
1341}
1342
1343/*
1344 * This function is used to handle ports that do not have an
1345 * interrupt. This doesn't work very well for 16450's, but gives
1346 * barely passable results for a 16550A. (Although at the expense
1347 * of much CPU overhead).
1348 */
1349static void serial8250_timeout(unsigned long data)
1350{
1351 struct uart_8250_port *up = (struct uart_8250_port *)data;
1352 unsigned int timeout;
1353 unsigned int iir;
1354
1355 iir = serial_in(up, UART_IIR);
1356 if (!(iir & UART_IIR_NO_INT)) {
1357 spin_lock(&up->port.lock);
1358 serial8250_handle_port(up, NULL);
1359 spin_unlock(&up->port.lock);
1360 }
1361
1362 timeout = up->port.timeout;
1363 timeout = timeout > 6 ? (timeout / 2 - 2) : 1;
1364 mod_timer(&up->timer, jiffies + timeout);
1365}
1366
1367static unsigned int serial8250_tx_empty(struct uart_port *port)
1368{
1369 struct uart_8250_port *up = (struct uart_8250_port *)port;
1370 unsigned long flags;
1371 unsigned int ret;
1372
1373 spin_lock_irqsave(&up->port.lock, flags);
1374 ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
1375 spin_unlock_irqrestore(&up->port.lock, flags);
1376
1377 return ret;
1378}
1379
1380static unsigned int serial8250_get_mctrl(struct uart_port *port)
1381{
1382 struct uart_8250_port *up = (struct uart_8250_port *)port;
1383 unsigned long flags;
1384 unsigned char status;
1385 unsigned int ret;
1386
1387 spin_lock_irqsave(&up->port.lock, flags);
1388 status = serial_in(up, UART_MSR);
1389 spin_unlock_irqrestore(&up->port.lock, flags);
1390
1391 ret = 0;
1392 if (status & UART_MSR_DCD)
1393 ret |= TIOCM_CAR;
1394 if (status & UART_MSR_RI)
1395 ret |= TIOCM_RNG;
1396 if (status & UART_MSR_DSR)
1397 ret |= TIOCM_DSR;
1398 if (status & UART_MSR_CTS)
1399 ret |= TIOCM_CTS;
1400 return ret;
1401}
1402
1403static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1404{
1405 struct uart_8250_port *up = (struct uart_8250_port *)port;
1406 unsigned char mcr = 0;
1407
1408 if (mctrl & TIOCM_RTS)
1409 mcr |= UART_MCR_RTS;
1410 if (mctrl & TIOCM_DTR)
1411 mcr |= UART_MCR_DTR;
1412 if (mctrl & TIOCM_OUT1)
1413 mcr |= UART_MCR_OUT1;
1414 if (mctrl & TIOCM_OUT2)
1415 mcr |= UART_MCR_OUT2;
1416 if (mctrl & TIOCM_LOOP)
1417 mcr |= UART_MCR_LOOP;
1418
1419 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1420
1421 serial_out(up, UART_MCR, mcr);
1422}
1423
1424static void serial8250_break_ctl(struct uart_port *port, int break_state)
1425{
1426 struct uart_8250_port *up = (struct uart_8250_port *)port;
1427 unsigned long flags;
1428
1429 spin_lock_irqsave(&up->port.lock, flags);
1430 if (break_state == -1)
1431 up->lcr |= UART_LCR_SBC;
1432 else
1433 up->lcr &= ~UART_LCR_SBC;
1434 serial_out(up, UART_LCR, up->lcr);
1435 spin_unlock_irqrestore(&up->port.lock, flags);
1436}
1437
1438static int serial8250_startup(struct uart_port *port)
1439{
1440 struct uart_8250_port *up = (struct uart_8250_port *)port;
1441 unsigned long flags;
1442 int retval;
1443
1444 up->capabilities = uart_config[up->port.type].flags;
1445 up->mcr = 0;
1446
1447 if (up->port.type == PORT_16C950) {
1448 /* Wake up and initialize UART */
1449 up->acr = 0;
1450 serial_outp(up, UART_LCR, 0xBF);
1451 serial_outp(up, UART_EFR, UART_EFR_ECB);
1452 serial_outp(up, UART_IER, 0);
1453 serial_outp(up, UART_LCR, 0);
1454 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
1455 serial_outp(up, UART_LCR, 0xBF);
1456 serial_outp(up, UART_EFR, UART_EFR_ECB);
1457 serial_outp(up, UART_LCR, 0);
1458 }
1459
1460#ifdef CONFIG_SERIAL_8250_RSA
1461 /*
1462 * If this is an RSA port, see if we can kick it up to the
1463 * higher speed clock.
1464 */
1465 enable_rsa(up);
1466#endif
1467
1468 /*
1469 * Clear the FIFO buffers and disable them.
1470 * (they will be reeanbled in set_termios())
1471 */
1472 serial8250_clear_fifos(up);
1473
1474 /*
1475 * Clear the interrupt registers.
1476 */
1477 (void) serial_inp(up, UART_LSR);
1478 (void) serial_inp(up, UART_RX);
1479 (void) serial_inp(up, UART_IIR);
1480 (void) serial_inp(up, UART_MSR);
1481
1482 /*
1483 * At this point, there's no way the LSR could still be 0xff;
1484 * if it is, then bail out, because there's likely no UART
1485 * here.
1486 */
1487 if (!(up->port.flags & UPF_BUGGY_UART) &&
1488 (serial_inp(up, UART_LSR) == 0xff)) {
1489 printk("ttyS%d: LSR safety check engaged!\n", up->port.line);
1490 return -ENODEV;
1491 }
1492
1493 /*
1494 * For a XR16C850, we need to set the trigger levels
1495 */
1496 if (up->port.type == PORT_16850) {
1497 unsigned char fctr;
1498
1499 serial_outp(up, UART_LCR, 0xbf);
1500
1501 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
1502 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
1503 serial_outp(up, UART_TRG, UART_TRG_96);
1504 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
1505 serial_outp(up, UART_TRG, UART_TRG_96);
1506
1507 serial_outp(up, UART_LCR, 0);
1508 }
1509
1510 /*
1511 * If the "interrupt" for this port doesn't correspond with any
1512 * hardware interrupt, we use a timer-based system. The original
1513 * driver used to do this with IRQ0.
1514 */
1515 if (!is_real_interrupt(up->port.irq)) {
1516 unsigned int timeout = up->port.timeout;
1517
1518 timeout = timeout > 6 ? (timeout / 2 - 2) : 1;
1519
1520 up->timer.data = (unsigned long)up;
1521 mod_timer(&up->timer, jiffies + timeout);
1522 } else {
1523 retval = serial_link_irq_chain(up);
1524 if (retval)
1525 return retval;
1526 }
1527
1528 /*
1529 * Now, initialize the UART
1530 */
1531 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
1532
1533 spin_lock_irqsave(&up->port.lock, flags);
1534 if (up->port.flags & UPF_FOURPORT) {
1535 if (!is_real_interrupt(up->port.irq))
1536 up->port.mctrl |= TIOCM_OUT1;
1537 } else
1538 /*
1539 * Most PC uarts need OUT2 raised to enable interrupts.
1540 */
1541 if (is_real_interrupt(up->port.irq))
1542 up->port.mctrl |= TIOCM_OUT2;
1543
1544 serial8250_set_mctrl(&up->port, up->port.mctrl);
1545 spin_unlock_irqrestore(&up->port.lock, flags);
1546
1547 /*
1548 * Finally, enable interrupts. Note: Modem status interrupts
1549 * are set via set_termios(), which will be occurring imminently
1550 * anyway, so we don't enable them here.
1551 */
1552 up->ier = UART_IER_RLSI | UART_IER_RDI;
1553 serial_outp(up, UART_IER, up->ier);
1554
1555 if (up->port.flags & UPF_FOURPORT) {
1556 unsigned int icp;
1557 /*
1558 * Enable interrupts on the AST Fourport board
1559 */
1560 icp = (up->port.iobase & 0xfe0) | 0x01f;
1561 outb_p(0x80, icp);
1562 (void) inb_p(icp);
1563 }
1564
1565 /*
1566 * And clear the interrupt registers again for luck.
1567 */
1568 (void) serial_inp(up, UART_LSR);
1569 (void) serial_inp(up, UART_RX);
1570 (void) serial_inp(up, UART_IIR);
1571 (void) serial_inp(up, UART_MSR);
1572
1573 return 0;
1574}
1575
1576static void serial8250_shutdown(struct uart_port *port)
1577{
1578 struct uart_8250_port *up = (struct uart_8250_port *)port;
1579 unsigned long flags;
1580
1581 /*
1582 * Disable interrupts from this port
1583 */
1584 up->ier = 0;
1585 serial_outp(up, UART_IER, 0);
1586
1587 spin_lock_irqsave(&up->port.lock, flags);
1588 if (up->port.flags & UPF_FOURPORT) {
1589 /* reset interrupts on the AST Fourport board */
1590 inb((up->port.iobase & 0xfe0) | 0x1f);
1591 up->port.mctrl |= TIOCM_OUT1;
1592 } else
1593 up->port.mctrl &= ~TIOCM_OUT2;
1594
1595 serial8250_set_mctrl(&up->port, up->port.mctrl);
1596 spin_unlock_irqrestore(&up->port.lock, flags);
1597
1598 /*
1599 * Disable break condition and FIFOs
1600 */
1601 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
1602 serial8250_clear_fifos(up);
1603
1604#ifdef CONFIG_SERIAL_8250_RSA
1605 /*
1606 * Reset the RSA board back to 115kbps compat mode.
1607 */
1608 disable_rsa(up);
1609#endif
1610
1611 /*
1612 * Read data port to reset things, and then unlink from
1613 * the IRQ chain.
1614 */
1615 (void) serial_in(up, UART_RX);
1616
1617 if (!is_real_interrupt(up->port.irq))
1618 del_timer_sync(&up->timer);
1619 else
1620 serial_unlink_irq_chain(up);
1621}
1622
1623static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
1624{
1625 unsigned int quot;
1626
1627 /*
1628 * Handle magic divisors for baud rates above baud_base on
1629 * SMSC SuperIO chips.
1630 */
1631 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
1632 baud == (port->uartclk/4))
1633 quot = 0x8001;
1634 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
1635 baud == (port->uartclk/8))
1636 quot = 0x8002;
1637 else
1638 quot = uart_get_divisor(port, baud);
1639
1640 return quot;
1641}
1642
1643static void
1644serial8250_set_termios(struct uart_port *port, struct termios *termios,
1645 struct termios *old)
1646{
1647 struct uart_8250_port *up = (struct uart_8250_port *)port;
1648 unsigned char cval, fcr = 0;
1649 unsigned long flags;
1650 unsigned int baud, quot;
1651
1652 switch (termios->c_cflag & CSIZE) {
1653 case CS5:
1654 cval = 0x00;
1655 break;
1656 case CS6:
1657 cval = 0x01;
1658 break;
1659 case CS7:
1660 cval = 0x02;
1661 break;
1662 default:
1663 case CS8:
1664 cval = 0x03;
1665 break;
1666 }
1667
1668 if (termios->c_cflag & CSTOPB)
1669 cval |= 0x04;
1670 if (termios->c_cflag & PARENB)
1671 cval |= UART_LCR_PARITY;
1672 if (!(termios->c_cflag & PARODD))
1673 cval |= UART_LCR_EPAR;
1674#ifdef CMSPAR
1675 if (termios->c_cflag & CMSPAR)
1676 cval |= UART_LCR_SPAR;
1677#endif
1678
1679 /*
1680 * Ask the core to calculate the divisor for us.
1681 */
1682 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
1683 quot = serial8250_get_divisor(port, baud);
1684
1685 /*
Russell King4ba5e352005-06-23 10:43:04 +01001686 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
Russell King4ba5e352005-06-23 10:43:04 +01001688 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 quot ++;
1690
1691 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
1692 if (baud < 2400)
1693 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
1694 else
1695 fcr = uart_config[up->port.type].fcr;
1696 }
1697
1698 /*
1699 * MCR-based auto flow control. When AFE is enabled, RTS will be
1700 * deasserted when the receive FIFO contains more characters than
1701 * the trigger, or the MCR RTS bit is cleared. In the case where
1702 * the remote UART is not using CTS auto flow control, we must
1703 * have sufficient FIFO entries for the latency of the remote
1704 * UART to respond. IOW, at least 32 bytes of FIFO.
1705 */
1706 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
1707 up->mcr &= ~UART_MCR_AFE;
1708 if (termios->c_cflag & CRTSCTS)
1709 up->mcr |= UART_MCR_AFE;
1710 }
1711
1712 /*
1713 * Ok, we're now changing the port state. Do it with
1714 * interrupts disabled.
1715 */
1716 spin_lock_irqsave(&up->port.lock, flags);
1717
1718 /*
1719 * Update the per-port timeout.
1720 */
1721 uart_update_timeout(port, termios->c_cflag, baud);
1722
1723 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
1724 if (termios->c_iflag & INPCK)
1725 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
1726 if (termios->c_iflag & (BRKINT | PARMRK))
1727 up->port.read_status_mask |= UART_LSR_BI;
1728
1729 /*
1730 * Characteres to ignore
1731 */
1732 up->port.ignore_status_mask = 0;
1733 if (termios->c_iflag & IGNPAR)
1734 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
1735 if (termios->c_iflag & IGNBRK) {
1736 up->port.ignore_status_mask |= UART_LSR_BI;
1737 /*
1738 * If we're ignoring parity and break indicators,
1739 * ignore overruns too (for real raw support).
1740 */
1741 if (termios->c_iflag & IGNPAR)
1742 up->port.ignore_status_mask |= UART_LSR_OE;
1743 }
1744
1745 /*
1746 * ignore all characters if CREAD is not set
1747 */
1748 if ((termios->c_cflag & CREAD) == 0)
1749 up->port.ignore_status_mask |= UART_LSR_DR;
1750
1751 /*
1752 * CTS flow control flag and modem status interrupts
1753 */
1754 up->ier &= ~UART_IER_MSI;
1755 if (UART_ENABLE_MS(&up->port, termios->c_cflag))
1756 up->ier |= UART_IER_MSI;
1757 if (up->capabilities & UART_CAP_UUE)
1758 up->ier |= UART_IER_UUE | UART_IER_RTOIE;
1759
1760 serial_out(up, UART_IER, up->ier);
1761
1762 if (up->capabilities & UART_CAP_EFR) {
1763 unsigned char efr = 0;
1764 /*
1765 * TI16C752/Startech hardware flow control. FIXME:
1766 * - TI16C752 requires control thresholds to be set.
1767 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
1768 */
1769 if (termios->c_cflag & CRTSCTS)
1770 efr |= UART_EFR_CTS;
1771
1772 serial_outp(up, UART_LCR, 0xBF);
1773 serial_outp(up, UART_EFR, efr);
1774 }
1775
1776 if (up->capabilities & UART_NATSEMI) {
1777 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
1778 serial_outp(up, UART_LCR, 0xe0);
1779 } else {
1780 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
1781 }
1782
1783 serial_outp(up, UART_DLL, quot & 0xff); /* LS of divisor */
1784 serial_outp(up, UART_DLM, quot >> 8); /* MS of divisor */
1785
1786 /*
1787 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
1788 * is written without DLAB set, this mode will be disabled.
1789 */
1790 if (up->port.type == PORT_16750)
1791 serial_outp(up, UART_FCR, fcr);
1792
1793 serial_outp(up, UART_LCR, cval); /* reset DLAB */
1794 up->lcr = cval; /* Save LCR */
1795 if (up->port.type != PORT_16750) {
1796 if (fcr & UART_FCR_ENABLE_FIFO) {
1797 /* emulated UARTs (Lucent Venus 167x) need two steps */
1798 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1799 }
1800 serial_outp(up, UART_FCR, fcr); /* set fcr */
1801 }
1802 serial8250_set_mctrl(&up->port, up->port.mctrl);
1803 spin_unlock_irqrestore(&up->port.lock, flags);
1804}
1805
1806static void
1807serial8250_pm(struct uart_port *port, unsigned int state,
1808 unsigned int oldstate)
1809{
1810 struct uart_8250_port *p = (struct uart_8250_port *)port;
1811
1812 serial8250_set_sleep(p, state != 0);
1813
1814 if (p->pm)
1815 p->pm(port, state, oldstate);
1816}
1817
1818/*
1819 * Resource handling.
1820 */
1821static int serial8250_request_std_resource(struct uart_8250_port *up)
1822{
1823 unsigned int size = 8 << up->port.regshift;
1824 int ret = 0;
1825
1826 switch (up->port.iotype) {
1827 case UPIO_MEM:
1828 if (!up->port.mapbase)
1829 break;
1830
1831 if (!request_mem_region(up->port.mapbase, size, "serial")) {
1832 ret = -EBUSY;
1833 break;
1834 }
1835
1836 if (up->port.flags & UPF_IOREMAP) {
1837 up->port.membase = ioremap(up->port.mapbase, size);
1838 if (!up->port.membase) {
1839 release_mem_region(up->port.mapbase, size);
1840 ret = -ENOMEM;
1841 }
1842 }
1843 break;
1844
1845 case UPIO_HUB6:
1846 case UPIO_PORT:
1847 if (!request_region(up->port.iobase, size, "serial"))
1848 ret = -EBUSY;
1849 break;
1850 }
1851 return ret;
1852}
1853
1854static void serial8250_release_std_resource(struct uart_8250_port *up)
1855{
1856 unsigned int size = 8 << up->port.regshift;
1857
1858 switch (up->port.iotype) {
1859 case UPIO_MEM:
1860 if (!up->port.mapbase)
1861 break;
1862
1863 if (up->port.flags & UPF_IOREMAP) {
1864 iounmap(up->port.membase);
1865 up->port.membase = NULL;
1866 }
1867
1868 release_mem_region(up->port.mapbase, size);
1869 break;
1870
1871 case UPIO_HUB6:
1872 case UPIO_PORT:
1873 release_region(up->port.iobase, size);
1874 break;
1875 }
1876}
1877
1878static int serial8250_request_rsa_resource(struct uart_8250_port *up)
1879{
1880 unsigned long start = UART_RSA_BASE << up->port.regshift;
1881 unsigned int size = 8 << up->port.regshift;
1882 int ret = 0;
1883
1884 switch (up->port.iotype) {
1885 case UPIO_MEM:
1886 ret = -EINVAL;
1887 break;
1888
1889 case UPIO_HUB6:
1890 case UPIO_PORT:
1891 start += up->port.iobase;
1892 if (!request_region(start, size, "serial-rsa"))
1893 ret = -EBUSY;
1894 break;
1895 }
1896
1897 return ret;
1898}
1899
1900static void serial8250_release_rsa_resource(struct uart_8250_port *up)
1901{
1902 unsigned long offset = UART_RSA_BASE << up->port.regshift;
1903 unsigned int size = 8 << up->port.regshift;
1904
1905 switch (up->port.iotype) {
1906 case UPIO_MEM:
1907 break;
1908
1909 case UPIO_HUB6:
1910 case UPIO_PORT:
1911 release_region(up->port.iobase + offset, size);
1912 break;
1913 }
1914}
1915
1916static void serial8250_release_port(struct uart_port *port)
1917{
1918 struct uart_8250_port *up = (struct uart_8250_port *)port;
1919
1920 serial8250_release_std_resource(up);
1921 if (up->port.type == PORT_RSA)
1922 serial8250_release_rsa_resource(up);
1923}
1924
1925static int serial8250_request_port(struct uart_port *port)
1926{
1927 struct uart_8250_port *up = (struct uart_8250_port *)port;
1928 int ret = 0;
1929
1930 ret = serial8250_request_std_resource(up);
1931 if (ret == 0 && up->port.type == PORT_RSA) {
1932 ret = serial8250_request_rsa_resource(up);
1933 if (ret < 0)
1934 serial8250_release_std_resource(up);
1935 }
1936
1937 return ret;
1938}
1939
1940static void serial8250_config_port(struct uart_port *port, int flags)
1941{
1942 struct uart_8250_port *up = (struct uart_8250_port *)port;
1943 int probeflags = PROBE_ANY;
1944 int ret;
1945
1946 /*
1947 * Don't probe for MCA ports on non-MCA machines.
1948 */
1949 if (up->port.flags & UPF_BOOT_ONLYMCA && !MCA_bus)
1950 return;
1951
1952 /*
1953 * Find the region that we can probe for. This in turn
1954 * tells us whether we can probe for the type of port.
1955 */
1956 ret = serial8250_request_std_resource(up);
1957 if (ret < 0)
1958 return;
1959
1960 ret = serial8250_request_rsa_resource(up);
1961 if (ret < 0)
1962 probeflags &= ~PROBE_RSA;
1963
1964 if (flags & UART_CONFIG_TYPE)
1965 autoconfig(up, probeflags);
1966 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
1967 autoconfig_irq(up);
1968
1969 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
1970 serial8250_release_rsa_resource(up);
1971 if (up->port.type == PORT_UNKNOWN)
1972 serial8250_release_std_resource(up);
1973}
1974
1975static int
1976serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
1977{
1978 if (ser->irq >= NR_IRQS || ser->irq < 0 ||
1979 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
1980 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
1981 ser->type == PORT_STARTECH)
1982 return -EINVAL;
1983 return 0;
1984}
1985
1986static const char *
1987serial8250_type(struct uart_port *port)
1988{
1989 int type = port->type;
1990
1991 if (type >= ARRAY_SIZE(uart_config))
1992 type = 0;
1993 return uart_config[type].name;
1994}
1995
1996static struct uart_ops serial8250_pops = {
1997 .tx_empty = serial8250_tx_empty,
1998 .set_mctrl = serial8250_set_mctrl,
1999 .get_mctrl = serial8250_get_mctrl,
2000 .stop_tx = serial8250_stop_tx,
2001 .start_tx = serial8250_start_tx,
2002 .stop_rx = serial8250_stop_rx,
2003 .enable_ms = serial8250_enable_ms,
2004 .break_ctl = serial8250_break_ctl,
2005 .startup = serial8250_startup,
2006 .shutdown = serial8250_shutdown,
2007 .set_termios = serial8250_set_termios,
2008 .pm = serial8250_pm,
2009 .type = serial8250_type,
2010 .release_port = serial8250_release_port,
2011 .request_port = serial8250_request_port,
2012 .config_port = serial8250_config_port,
2013 .verify_port = serial8250_verify_port,
2014};
2015
2016static struct uart_8250_port serial8250_ports[UART_NR];
2017
2018static void __init serial8250_isa_init_ports(void)
2019{
2020 struct uart_8250_port *up;
2021 static int first = 1;
2022 int i;
2023
2024 if (!first)
2025 return;
2026 first = 0;
2027
2028 for (i = 0; i < UART_NR; i++) {
2029 struct uart_8250_port *up = &serial8250_ports[i];
2030
2031 up->port.line = i;
2032 spin_lock_init(&up->port.lock);
2033
2034 init_timer(&up->timer);
2035 up->timer.function = serial8250_timeout;
2036
2037 /*
2038 * ALPHA_KLUDGE_MCR needs to be killed.
2039 */
2040 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2041 up->mcr_force = ALPHA_KLUDGE_MCR;
2042
2043 up->port.ops = &serial8250_pops;
2044 }
2045
2046 for (i = 0, up = serial8250_ports; i < ARRAY_SIZE(old_serial_port);
2047 i++, up++) {
2048 up->port.iobase = old_serial_port[i].port;
2049 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
2050 up->port.uartclk = old_serial_port[i].baud_base * 16;
2051 up->port.flags = old_serial_port[i].flags;
2052 up->port.hub6 = old_serial_port[i].hub6;
2053 up->port.membase = old_serial_port[i].iomem_base;
2054 up->port.iotype = old_serial_port[i].io_type;
2055 up->port.regshift = old_serial_port[i].iomem_reg_shift;
2056 if (share_irqs)
2057 up->port.flags |= UPF_SHARE_IRQ;
2058 }
2059}
2060
2061static void __init
2062serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2063{
2064 int i;
2065
2066 serial8250_isa_init_ports();
2067
2068 for (i = 0; i < UART_NR; i++) {
2069 struct uart_8250_port *up = &serial8250_ports[i];
2070
2071 up->port.dev = dev;
2072 uart_add_one_port(drv, &up->port);
2073 }
2074}
2075
2076#ifdef CONFIG_SERIAL_8250_CONSOLE
2077
2078#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
2079
2080/*
2081 * Wait for transmitter & holding register to empty
2082 */
2083static inline void wait_for_xmitr(struct uart_8250_port *up)
2084{
2085 unsigned int status, tmout = 10000;
2086
2087 /* Wait up to 10ms for the character(s) to be sent. */
2088 do {
2089 status = serial_in(up, UART_LSR);
2090
2091 if (status & UART_LSR_BI)
2092 up->lsr_break_flag = UART_LSR_BI;
2093
2094 if (--tmout == 0)
2095 break;
2096 udelay(1);
2097 } while ((status & BOTH_EMPTY) != BOTH_EMPTY);
2098
2099 /* Wait up to 1s for flow control if necessary */
2100 if (up->port.flags & UPF_CONS_FLOW) {
2101 tmout = 1000000;
2102 while (--tmout &&
2103 ((serial_in(up, UART_MSR) & UART_MSR_CTS) == 0))
2104 udelay(1);
2105 }
2106}
2107
2108/*
2109 * Print a string to the serial port trying not to disturb
2110 * any possible real use of the port...
2111 *
2112 * The console_lock must be held when we get here.
2113 */
2114static void
2115serial8250_console_write(struct console *co, const char *s, unsigned int count)
2116{
2117 struct uart_8250_port *up = &serial8250_ports[co->index];
2118 unsigned int ier;
2119 int i;
2120
2121 /*
2122 * First save the UER then disable the interrupts
2123 */
2124 ier = serial_in(up, UART_IER);
2125
2126 if (up->capabilities & UART_CAP_UUE)
2127 serial_out(up, UART_IER, UART_IER_UUE);
2128 else
2129 serial_out(up, UART_IER, 0);
2130
2131 /*
2132 * Now, do each character
2133 */
2134 for (i = 0; i < count; i++, s++) {
2135 wait_for_xmitr(up);
2136
2137 /*
2138 * Send the character out.
2139 * If a LF, also do CR...
2140 */
2141 serial_out(up, UART_TX, *s);
2142 if (*s == 10) {
2143 wait_for_xmitr(up);
2144 serial_out(up, UART_TX, 13);
2145 }
2146 }
2147
2148 /*
2149 * Finally, wait for transmitter to become empty
2150 * and restore the IER
2151 */
2152 wait_for_xmitr(up);
2153 serial_out(up, UART_IER, ier);
2154}
2155
2156static int serial8250_console_setup(struct console *co, char *options)
2157{
2158 struct uart_port *port;
2159 int baud = 9600;
2160 int bits = 8;
2161 int parity = 'n';
2162 int flow = 'n';
2163
2164 /*
2165 * Check whether an invalid uart number has been specified, and
2166 * if so, search for the first available port that does have
2167 * console support.
2168 */
2169 if (co->index >= UART_NR)
2170 co->index = 0;
2171 port = &serial8250_ports[co->index].port;
2172 if (!port->iobase && !port->membase)
2173 return -ENODEV;
2174
2175 if (options)
2176 uart_parse_options(options, &baud, &parity, &bits, &flow);
2177
2178 return uart_set_options(port, co, baud, parity, bits, flow);
2179}
2180
2181static struct uart_driver serial8250_reg;
2182static struct console serial8250_console = {
2183 .name = "ttyS",
2184 .write = serial8250_console_write,
2185 .device = uart_console_device,
2186 .setup = serial8250_console_setup,
2187 .flags = CON_PRINTBUFFER,
2188 .index = -1,
2189 .data = &serial8250_reg,
2190};
2191
2192static int __init serial8250_console_init(void)
2193{
2194 serial8250_isa_init_ports();
2195 register_console(&serial8250_console);
2196 return 0;
2197}
2198console_initcall(serial8250_console_init);
2199
2200static int __init find_port(struct uart_port *p)
2201{
2202 int line;
2203 struct uart_port *port;
2204
2205 for (line = 0; line < UART_NR; line++) {
2206 port = &serial8250_ports[line].port;
2207 if (p->iotype == port->iotype &&
2208 p->iobase == port->iobase &&
2209 p->membase == port->membase)
2210 return line;
2211 }
2212 return -ENODEV;
2213}
2214
2215int __init serial8250_start_console(struct uart_port *port, char *options)
2216{
2217 int line;
2218
2219 line = find_port(port);
2220 if (line < 0)
2221 return -ENODEV;
2222
2223 add_preferred_console("ttyS", line, options);
2224 printk("Adding console on ttyS%d at %s 0x%lx (options '%s')\n",
2225 line, port->iotype == UPIO_MEM ? "MMIO" : "I/O port",
2226 port->iotype == UPIO_MEM ? (unsigned long) port->mapbase :
2227 (unsigned long) port->iobase, options);
2228 if (!(serial8250_console.flags & CON_ENABLED)) {
2229 serial8250_console.flags &= ~CON_PRINTBUFFER;
2230 register_console(&serial8250_console);
2231 }
2232 return line;
2233}
2234
2235#define SERIAL8250_CONSOLE &serial8250_console
2236#else
2237#define SERIAL8250_CONSOLE NULL
2238#endif
2239
2240static struct uart_driver serial8250_reg = {
2241 .owner = THIS_MODULE,
2242 .driver_name = "serial",
2243 .devfs_name = "tts/",
2244 .dev_name = "ttyS",
2245 .major = TTY_MAJOR,
2246 .minor = 64,
2247 .nr = UART_NR,
2248 .cons = SERIAL8250_CONSOLE,
2249};
2250
2251int __init early_serial_setup(struct uart_port *port)
2252{
2253 if (port->line >= ARRAY_SIZE(serial8250_ports))
2254 return -ENODEV;
2255
2256 serial8250_isa_init_ports();
2257 serial8250_ports[port->line].port = *port;
2258 serial8250_ports[port->line].port.ops = &serial8250_pops;
2259 return 0;
2260}
2261
2262/**
2263 * serial8250_suspend_port - suspend one serial port
2264 * @line: serial line number
2265 * @level: the level of port suspension, as per uart_suspend_port
2266 *
2267 * Suspend one serial port.
2268 */
2269void serial8250_suspend_port(int line)
2270{
2271 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
2272}
2273
2274/**
2275 * serial8250_resume_port - resume one serial port
2276 * @line: serial line number
2277 * @level: the level of port resumption, as per uart_resume_port
2278 *
2279 * Resume one serial port.
2280 */
2281void serial8250_resume_port(int line)
2282{
2283 uart_resume_port(&serial8250_reg, &serial8250_ports[line].port);
2284}
2285
2286/*
2287 * Register a set of serial devices attached to a platform device. The
2288 * list is terminated with a zero flags entry, which means we expect
2289 * all entries to have at least UPF_BOOT_AUTOCONF set.
2290 */
2291static int __devinit serial8250_probe(struct device *dev)
2292{
2293 struct plat_serial8250_port *p = dev->platform_data;
2294 struct uart_port port;
2295
2296 memset(&port, 0, sizeof(struct uart_port));
2297
2298 for (; p && p->flags != 0; p++) {
2299 port.iobase = p->iobase;
2300 port.membase = p->membase;
2301 port.irq = p->irq;
2302 port.uartclk = p->uartclk;
2303 port.regshift = p->regshift;
2304 port.iotype = p->iotype;
2305 port.flags = p->flags;
2306 port.mapbase = p->mapbase;
2307 port.dev = dev;
2308 if (share_irqs)
2309 port.flags |= UPF_SHARE_IRQ;
2310 serial8250_register_port(&port);
2311 }
2312 return 0;
2313}
2314
2315/*
2316 * Remove serial ports registered against a platform device.
2317 */
2318static int __devexit serial8250_remove(struct device *dev)
2319{
2320 int i;
2321
2322 for (i = 0; i < UART_NR; i++) {
2323 struct uart_8250_port *up = &serial8250_ports[i];
2324
2325 if (up->port.dev == dev)
2326 serial8250_unregister_port(i);
2327 }
2328 return 0;
2329}
2330
2331static int serial8250_suspend(struct device *dev, pm_message_t state, u32 level)
2332{
2333 int i;
2334
2335 if (level != SUSPEND_DISABLE)
2336 return 0;
2337
2338 for (i = 0; i < UART_NR; i++) {
2339 struct uart_8250_port *up = &serial8250_ports[i];
2340
2341 if (up->port.type != PORT_UNKNOWN && up->port.dev == dev)
2342 uart_suspend_port(&serial8250_reg, &up->port);
2343 }
2344
2345 return 0;
2346}
2347
2348static int serial8250_resume(struct device *dev, u32 level)
2349{
2350 int i;
2351
2352 if (level != RESUME_ENABLE)
2353 return 0;
2354
2355 for (i = 0; i < UART_NR; i++) {
2356 struct uart_8250_port *up = &serial8250_ports[i];
2357
2358 if (up->port.type != PORT_UNKNOWN && up->port.dev == dev)
2359 uart_resume_port(&serial8250_reg, &up->port);
2360 }
2361
2362 return 0;
2363}
2364
2365static struct device_driver serial8250_isa_driver = {
2366 .name = "serial8250",
2367 .bus = &platform_bus_type,
2368 .probe = serial8250_probe,
2369 .remove = __devexit_p(serial8250_remove),
2370 .suspend = serial8250_suspend,
2371 .resume = serial8250_resume,
2372};
2373
2374/*
2375 * This "device" covers _all_ ISA 8250-compatible serial devices listed
2376 * in the table in include/asm/serial.h
2377 */
2378static struct platform_device *serial8250_isa_devs;
2379
2380/*
2381 * serial8250_register_port and serial8250_unregister_port allows for
2382 * 16x50 serial ports to be configured at run-time, to support PCMCIA
2383 * modems and PCI multiport cards.
2384 */
2385static DECLARE_MUTEX(serial_sem);
2386
2387static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
2388{
2389 int i;
2390
2391 /*
2392 * First, find a port entry which matches.
2393 */
2394 for (i = 0; i < UART_NR; i++)
2395 if (uart_match_port(&serial8250_ports[i].port, port))
2396 return &serial8250_ports[i];
2397
2398 /*
2399 * We didn't find a matching entry, so look for the first
2400 * free entry. We look for one which hasn't been previously
2401 * used (indicated by zero iobase).
2402 */
2403 for (i = 0; i < UART_NR; i++)
2404 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
2405 serial8250_ports[i].port.iobase == 0)
2406 return &serial8250_ports[i];
2407
2408 /*
2409 * That also failed. Last resort is to find any entry which
2410 * doesn't have a real port associated with it.
2411 */
2412 for (i = 0; i < UART_NR; i++)
2413 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
2414 return &serial8250_ports[i];
2415
2416 return NULL;
2417}
2418
2419/**
2420 * serial8250_register_port - register a serial port
2421 * @port: serial port template
2422 *
2423 * Configure the serial port specified by the request. If the
2424 * port exists and is in use, it is hung up and unregistered
2425 * first.
2426 *
2427 * The port is then probed and if necessary the IRQ is autodetected
2428 * If this fails an error is returned.
2429 *
2430 * On success the port is ready to use and the line number is returned.
2431 */
2432int serial8250_register_port(struct uart_port *port)
2433{
2434 struct uart_8250_port *uart;
2435 int ret = -ENOSPC;
2436
2437 if (port->uartclk == 0)
2438 return -EINVAL;
2439
2440 down(&serial_sem);
2441
2442 uart = serial8250_find_match_or_unused(port);
2443 if (uart) {
2444 uart_remove_one_port(&serial8250_reg, &uart->port);
2445
2446 uart->port.iobase = port->iobase;
2447 uart->port.membase = port->membase;
2448 uart->port.irq = port->irq;
2449 uart->port.uartclk = port->uartclk;
2450 uart->port.fifosize = port->fifosize;
2451 uart->port.regshift = port->regshift;
2452 uart->port.iotype = port->iotype;
2453 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
2454 uart->port.mapbase = port->mapbase;
2455 if (port->dev)
2456 uart->port.dev = port->dev;
2457
2458 ret = uart_add_one_port(&serial8250_reg, &uart->port);
2459 if (ret == 0)
2460 ret = uart->port.line;
2461 }
2462 up(&serial_sem);
2463
2464 return ret;
2465}
2466EXPORT_SYMBOL(serial8250_register_port);
2467
2468/**
2469 * serial8250_unregister_port - remove a 16x50 serial port at runtime
2470 * @line: serial line number
2471 *
2472 * Remove one serial port. This may not be called from interrupt
2473 * context. We hand the port back to the our control.
2474 */
2475void serial8250_unregister_port(int line)
2476{
2477 struct uart_8250_port *uart = &serial8250_ports[line];
2478
2479 down(&serial_sem);
2480 uart_remove_one_port(&serial8250_reg, &uart->port);
2481 if (serial8250_isa_devs) {
2482 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
2483 uart->port.type = PORT_UNKNOWN;
2484 uart->port.dev = &serial8250_isa_devs->dev;
2485 uart_add_one_port(&serial8250_reg, &uart->port);
2486 } else {
2487 uart->port.dev = NULL;
2488 }
2489 up(&serial_sem);
2490}
2491EXPORT_SYMBOL(serial8250_unregister_port);
2492
2493static int __init serial8250_init(void)
2494{
2495 int ret, i;
2496
2497 printk(KERN_INFO "Serial: 8250/16550 driver $Revision: 1.90 $ "
2498 "%d ports, IRQ sharing %sabled\n", (int) UART_NR,
2499 share_irqs ? "en" : "dis");
2500
2501 for (i = 0; i < NR_IRQS; i++)
2502 spin_lock_init(&irq_lists[i].lock);
2503
2504 ret = uart_register_driver(&serial8250_reg);
2505 if (ret)
2506 goto out;
2507
2508 serial8250_isa_devs = platform_device_register_simple("serial8250",
2509 -1, NULL, 0);
2510 if (IS_ERR(serial8250_isa_devs)) {
2511 ret = PTR_ERR(serial8250_isa_devs);
2512 goto unreg;
2513 }
2514
2515 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
2516
2517 ret = driver_register(&serial8250_isa_driver);
2518 if (ret == 0)
2519 goto out;
2520
2521 platform_device_unregister(serial8250_isa_devs);
2522 unreg:
2523 uart_unregister_driver(&serial8250_reg);
2524 out:
2525 return ret;
2526}
2527
2528static void __exit serial8250_exit(void)
2529{
2530 struct platform_device *isa_dev = serial8250_isa_devs;
2531
2532 /*
2533 * This tells serial8250_unregister_port() not to re-register
2534 * the ports (thereby making serial8250_isa_driver permanently
2535 * in use.)
2536 */
2537 serial8250_isa_devs = NULL;
2538
2539 driver_unregister(&serial8250_isa_driver);
2540 platform_device_unregister(isa_dev);
2541
2542 uart_unregister_driver(&serial8250_reg);
2543}
2544
2545module_init(serial8250_init);
2546module_exit(serial8250_exit);
2547
2548EXPORT_SYMBOL(serial8250_suspend_port);
2549EXPORT_SYMBOL(serial8250_resume_port);
2550
2551MODULE_LICENSE("GPL");
2552MODULE_DESCRIPTION("Generic 8250/16x50 serial driver $Revision: 1.90 $");
2553
2554module_param(share_irqs, uint, 0644);
2555MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
2556 " (unsafe)");
2557
2558#ifdef CONFIG_SERIAL_8250_RSA
2559module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
2560MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
2561#endif
2562MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);
2563
2564/**
2565 * register_serial - configure a 16x50 serial port at runtime
2566 * @req: request structure
2567 *
2568 * Configure the serial port specified by the request. If the
2569 * port exists and is in use an error is returned. If the port
2570 * is not currently in the table it is added.
2571 *
2572 * The port is then probed and if necessary the IRQ is autodetected
2573 * If this fails an error is returned.
2574 *
2575 * On success the port is ready to use and the line number is returned.
Russell King23907eb2005-04-16 15:26:39 -07002576 *
2577 * Note: this function is deprecated - use serial8250_register_port
2578 * instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 */
2580int register_serial(struct serial_struct *req)
2581{
2582 struct uart_port port;
2583
2584 port.iobase = req->port;
2585 port.membase = req->iomem_base;
2586 port.irq = req->irq;
2587 port.uartclk = req->baud_base * 16;
2588 port.fifosize = req->xmit_fifo_size;
2589 port.regshift = req->iomem_reg_shift;
2590 port.iotype = req->io_type;
2591 port.flags = req->flags | UPF_BOOT_AUTOCONF;
2592 port.mapbase = req->iomap_base;
2593 port.dev = NULL;
2594
2595 if (share_irqs)
2596 port.flags |= UPF_SHARE_IRQ;
2597
2598 if (HIGH_BITS_OFFSET)
2599 port.iobase |= (long) req->port_high << HIGH_BITS_OFFSET;
2600
2601 /*
2602 * If a clock rate wasn't specified by the low level driver, then
2603 * default to the standard clock rate. This should be 115200 (*16)
2604 * and should not depend on the architecture's BASE_BAUD definition.
2605 * However, since this API will be deprecated, it's probably a
2606 * better idea to convert the drivers to use the new API
2607 * (serial8250_register_port and serial8250_unregister_port).
2608 */
2609 if (port.uartclk == 0) {
2610 printk(KERN_WARNING
2611 "Serial: registering port at [%08x,%08lx,%p] irq %d with zero baud_base\n",
2612 port.iobase, port.mapbase, port.membase, port.irq);
2613 printk(KERN_WARNING "Serial: see %s:%d for more information\n",
2614 __FILE__, __LINE__);
2615 dump_stack();
2616
2617 /*
2618 * Fix it up for now, but this is only a temporary measure.
2619 */
2620 port.uartclk = BASE_BAUD * 16;
2621 }
2622
2623 return serial8250_register_port(&port);
2624}
2625EXPORT_SYMBOL(register_serial);
2626
2627/**
2628 * unregister_serial - remove a 16x50 serial port at runtime
2629 * @line: serial line number
2630 *
2631 * Remove one serial port. This may not be called from interrupt
2632 * context. We hand the port back to our local PM control.
Russell King23907eb2005-04-16 15:26:39 -07002633 *
2634 * Note: this function is deprecated - use serial8250_unregister_port
2635 * instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 */
2637void unregister_serial(int line)
2638{
2639 serial8250_unregister_port(line);
2640}
2641EXPORT_SYMBOL(unregister_serial);