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