tty: serial: 8250: omap: add custom irq handling
[cascardo/linux.git] / drivers / tty / serial / 8250 / 8250_core.c
1 /*
2  *  Driver for 8250/16550-type serial ports
3  *
4  *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5  *
6  *  Copyright (C) 2001 Russell King.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * A note about mapbase / membase
14  *
15  *  mapbase is the physical address of the IO port.
16  *  membase is an 'ioremapped' cookie.
17  */
18
19 #if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
20 #define SUPPORT_SYSRQ
21 #endif
22
23 #include <linux/module.h>
24 #include <linux/moduleparam.h>
25 #include <linux/ioport.h>
26 #include <linux/init.h>
27 #include <linux/console.h>
28 #include <linux/sysrq.h>
29 #include <linux/delay.h>
30 #include <linux/platform_device.h>
31 #include <linux/tty.h>
32 #include <linux/ratelimit.h>
33 #include <linux/tty_flip.h>
34 #include <linux/serial_core.h>
35 #include <linux/serial.h>
36 #include <linux/serial_8250.h>
37 #include <linux/nmi.h>
38 #include <linux/mutex.h>
39 #include <linux/slab.h>
40 #include <linux/uaccess.h>
41 #include <linux/pm_runtime.h>
42 #ifdef CONFIG_SPARC
43 #include <linux/sunserialcore.h>
44 #endif
45
46 #include <asm/io.h>
47 #include <asm/irq.h>
48
49 #include "8250.h"
50
51 /*
52  * Configuration:
53  *   share_irqs - whether we pass IRQF_SHARED to request_irq().  This option
54  *                is unsafe when used on edge-triggered interrupts.
55  */
56 static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
57
58 static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
59
60 static struct uart_driver serial8250_reg;
61
62 static int serial_index(struct uart_port *port)
63 {
64         return (serial8250_reg.minor - 64) + port->line;
65 }
66
67 static unsigned int skip_txen_test; /* force skip of txen test at init time */
68
69 /*
70  * Debugging.
71  */
72 #if 0
73 #define DEBUG_AUTOCONF(fmt...)  printk(fmt)
74 #else
75 #define DEBUG_AUTOCONF(fmt...)  do { } while (0)
76 #endif
77
78 #if 0
79 #define DEBUG_INTR(fmt...)      printk(fmt)
80 #else
81 #define DEBUG_INTR(fmt...)      do { } while (0)
82 #endif
83
84 #define PASS_LIMIT      512
85
86 #define BOTH_EMPTY      (UART_LSR_TEMT | UART_LSR_THRE)
87
88
89 #ifdef CONFIG_SERIAL_8250_DETECT_IRQ
90 #define CONFIG_SERIAL_DETECT_IRQ 1
91 #endif
92 #ifdef CONFIG_SERIAL_8250_MANY_PORTS
93 #define CONFIG_SERIAL_MANY_PORTS 1
94 #endif
95
96 /*
97  * HUB6 is always on.  This will be removed once the header
98  * files have been cleaned.
99  */
100 #define CONFIG_HUB6 1
101
102 #include <asm/serial.h>
103 /*
104  * SERIAL_PORT_DFNS tells us about built-in ports that have no
105  * standard enumeration mechanism.   Platforms that can find all
106  * serial ports via mechanisms like ACPI or PCI need not supply it.
107  */
108 #ifndef SERIAL_PORT_DFNS
109 #define SERIAL_PORT_DFNS
110 #endif
111
112 static const struct old_serial_port old_serial_port[] = {
113         SERIAL_PORT_DFNS /* defined in asm/serial.h */
114 };
115
116 #define UART_NR CONFIG_SERIAL_8250_NR_UARTS
117
118 #ifdef CONFIG_SERIAL_8250_RSA
119
120 #define PORT_RSA_MAX 4
121 static unsigned long probe_rsa[PORT_RSA_MAX];
122 static unsigned int probe_rsa_count;
123 #endif /* CONFIG_SERIAL_8250_RSA  */
124
125 struct irq_info {
126         struct                  hlist_node node;
127         int                     irq;
128         spinlock_t              lock;   /* Protects list not the hash */
129         struct list_head        *head;
130 };
131
132 #define NR_IRQ_HASH             32      /* Can be adjusted later */
133 static struct hlist_head irq_lists[NR_IRQ_HASH];
134 static DEFINE_MUTEX(hash_mutex);        /* Used to walk the hash */
135
136 /*
137  * Here we define the default xmit fifo size used for each type of UART.
138  */
139 static const struct serial8250_config uart_config[] = {
140         [PORT_UNKNOWN] = {
141                 .name           = "unknown",
142                 .fifo_size      = 1,
143                 .tx_loadsz      = 1,
144         },
145         [PORT_8250] = {
146                 .name           = "8250",
147                 .fifo_size      = 1,
148                 .tx_loadsz      = 1,
149         },
150         [PORT_16450] = {
151                 .name           = "16450",
152                 .fifo_size      = 1,
153                 .tx_loadsz      = 1,
154         },
155         [PORT_16550] = {
156                 .name           = "16550",
157                 .fifo_size      = 1,
158                 .tx_loadsz      = 1,
159         },
160         [PORT_16550A] = {
161                 .name           = "16550A",
162                 .fifo_size      = 16,
163                 .tx_loadsz      = 16,
164                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
165                 .rxtrig_bytes   = {1, 4, 8, 14},
166                 .flags          = UART_CAP_FIFO,
167         },
168         [PORT_CIRRUS] = {
169                 .name           = "Cirrus",
170                 .fifo_size      = 1,
171                 .tx_loadsz      = 1,
172         },
173         [PORT_16650] = {
174                 .name           = "ST16650",
175                 .fifo_size      = 1,
176                 .tx_loadsz      = 1,
177                 .flags          = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
178         },
179         [PORT_16650V2] = {
180                 .name           = "ST16650V2",
181                 .fifo_size      = 32,
182                 .tx_loadsz      = 16,
183                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
184                                   UART_FCR_T_TRIG_00,
185                 .rxtrig_bytes   = {8, 16, 24, 28},
186                 .flags          = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
187         },
188         [PORT_16750] = {
189                 .name           = "TI16750",
190                 .fifo_size      = 64,
191                 .tx_loadsz      = 64,
192                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
193                                   UART_FCR7_64BYTE,
194                 .rxtrig_bytes   = {1, 16, 32, 56},
195                 .flags          = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
196         },
197         [PORT_STARTECH] = {
198                 .name           = "Startech",
199                 .fifo_size      = 1,
200                 .tx_loadsz      = 1,
201         },
202         [PORT_16C950] = {
203                 .name           = "16C950/954",
204                 .fifo_size      = 128,
205                 .tx_loadsz      = 128,
206                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
207                 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
208                 .flags          = UART_CAP_FIFO | UART_CAP_SLEEP,
209         },
210         [PORT_16654] = {
211                 .name           = "ST16654",
212                 .fifo_size      = 64,
213                 .tx_loadsz      = 32,
214                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
215                                   UART_FCR_T_TRIG_10,
216                 .rxtrig_bytes   = {8, 16, 56, 60},
217                 .flags          = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
218         },
219         [PORT_16850] = {
220                 .name           = "XR16850",
221                 .fifo_size      = 128,
222                 .tx_loadsz      = 128,
223                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
224                 .flags          = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
225         },
226         [PORT_RSA] = {
227                 .name           = "RSA",
228                 .fifo_size      = 2048,
229                 .tx_loadsz      = 2048,
230                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
231                 .flags          = UART_CAP_FIFO,
232         },
233         [PORT_NS16550A] = {
234                 .name           = "NS16550A",
235                 .fifo_size      = 16,
236                 .tx_loadsz      = 16,
237                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
238                 .flags          = UART_CAP_FIFO | UART_NATSEMI,
239         },
240         [PORT_XSCALE] = {
241                 .name           = "XScale",
242                 .fifo_size      = 32,
243                 .tx_loadsz      = 32,
244                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
245                 .flags          = UART_CAP_FIFO | UART_CAP_UUE | UART_CAP_RTOIE,
246         },
247         [PORT_OCTEON] = {
248                 .name           = "OCTEON",
249                 .fifo_size      = 64,
250                 .tx_loadsz      = 64,
251                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
252                 .flags          = UART_CAP_FIFO,
253         },
254         [PORT_AR7] = {
255                 .name           = "AR7",
256                 .fifo_size      = 16,
257                 .tx_loadsz      = 16,
258                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
259                 .flags          = UART_CAP_FIFO | UART_CAP_AFE,
260         },
261         [PORT_U6_16550A] = {
262                 .name           = "U6_16550A",
263                 .fifo_size      = 64,
264                 .tx_loadsz      = 64,
265                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
266                 .flags          = UART_CAP_FIFO | UART_CAP_AFE,
267         },
268         [PORT_TEGRA] = {
269                 .name           = "Tegra",
270                 .fifo_size      = 32,
271                 .tx_loadsz      = 8,
272                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
273                                   UART_FCR_T_TRIG_01,
274                 .rxtrig_bytes   = {1, 4, 8, 14},
275                 .flags          = UART_CAP_FIFO | UART_CAP_RTOIE,
276         },
277         [PORT_XR17D15X] = {
278                 .name           = "XR17D15X",
279                 .fifo_size      = 64,
280                 .tx_loadsz      = 64,
281                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
282                 .flags          = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
283                                   UART_CAP_SLEEP,
284         },
285         [PORT_XR17V35X] = {
286                 .name           = "XR17V35X",
287                 .fifo_size      = 256,
288                 .tx_loadsz      = 256,
289                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11 |
290                                   UART_FCR_T_TRIG_11,
291                 .flags          = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
292                                   UART_CAP_SLEEP,
293         },
294         [PORT_LPC3220] = {
295                 .name           = "LPC3220",
296                 .fifo_size      = 64,
297                 .tx_loadsz      = 32,
298                 .fcr            = UART_FCR_DMA_SELECT | UART_FCR_ENABLE_FIFO |
299                                   UART_FCR_R_TRIG_00 | UART_FCR_T_TRIG_00,
300                 .flags          = UART_CAP_FIFO,
301         },
302         [PORT_BRCM_TRUMANAGE] = {
303                 .name           = "TruManage",
304                 .fifo_size      = 1,
305                 .tx_loadsz      = 1024,
306                 .flags          = UART_CAP_HFIFO,
307         },
308         [PORT_8250_CIR] = {
309                 .name           = "CIR port"
310         },
311         [PORT_ALTR_16550_F32] = {
312                 .name           = "Altera 16550 FIFO32",
313                 .fifo_size      = 32,
314                 .tx_loadsz      = 32,
315                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
316                 .flags          = UART_CAP_FIFO | UART_CAP_AFE,
317         },
318         [PORT_ALTR_16550_F64] = {
319                 .name           = "Altera 16550 FIFO64",
320                 .fifo_size      = 64,
321                 .tx_loadsz      = 64,
322                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
323                 .flags          = UART_CAP_FIFO | UART_CAP_AFE,
324         },
325         [PORT_ALTR_16550_F128] = {
326                 .name           = "Altera 16550 FIFO128",
327                 .fifo_size      = 128,
328                 .tx_loadsz      = 128,
329                 .fcr            = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
330                 .flags          = UART_CAP_FIFO | UART_CAP_AFE,
331         },
332 };
333
334 /* Uart divisor latch read */
335 static int default_serial_dl_read(struct uart_8250_port *up)
336 {
337         return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8;
338 }
339
340 /* Uart divisor latch write */
341 static void default_serial_dl_write(struct uart_8250_port *up, int value)
342 {
343         serial_out(up, UART_DLL, value & 0xff);
344         serial_out(up, UART_DLM, value >> 8 & 0xff);
345 }
346
347 #if defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_SERIAL_8250_RT288X)
348
349 /* Au1x00/RT288x UART hardware has a weird register layout */
350 static const u8 au_io_in_map[] = {
351         [UART_RX]  = 0,
352         [UART_IER] = 2,
353         [UART_IIR] = 3,
354         [UART_LCR] = 5,
355         [UART_MCR] = 6,
356         [UART_LSR] = 7,
357         [UART_MSR] = 8,
358 };
359
360 static const u8 au_io_out_map[] = {
361         [UART_TX]  = 1,
362         [UART_IER] = 2,
363         [UART_FCR] = 4,
364         [UART_LCR] = 5,
365         [UART_MCR] = 6,
366 };
367
368 static unsigned int au_serial_in(struct uart_port *p, int offset)
369 {
370         offset = au_io_in_map[offset] << p->regshift;
371         return __raw_readl(p->membase + offset);
372 }
373
374 static void au_serial_out(struct uart_port *p, int offset, int value)
375 {
376         offset = au_io_out_map[offset] << p->regshift;
377         __raw_writel(value, p->membase + offset);
378 }
379
380 /* Au1x00 haven't got a standard divisor latch */
381 static int au_serial_dl_read(struct uart_8250_port *up)
382 {
383         return __raw_readl(up->port.membase + 0x28);
384 }
385
386 static void au_serial_dl_write(struct uart_8250_port *up, int value)
387 {
388         __raw_writel(value, up->port.membase + 0x28);
389 }
390
391 #endif
392
393 static unsigned int hub6_serial_in(struct uart_port *p, int offset)
394 {
395         offset = offset << p->regshift;
396         outb(p->hub6 - 1 + offset, p->iobase);
397         return inb(p->iobase + 1);
398 }
399
400 static void hub6_serial_out(struct uart_port *p, int offset, int value)
401 {
402         offset = offset << p->regshift;
403         outb(p->hub6 - 1 + offset, p->iobase);
404         outb(value, p->iobase + 1);
405 }
406
407 static unsigned int mem_serial_in(struct uart_port *p, int offset)
408 {
409         offset = offset << p->regshift;
410         return readb(p->membase + offset);
411 }
412
413 static void mem_serial_out(struct uart_port *p, int offset, int value)
414 {
415         offset = offset << p->regshift;
416         writeb(value, p->membase + offset);
417 }
418
419 static void mem32_serial_out(struct uart_port *p, int offset, int value)
420 {
421         offset = offset << p->regshift;
422         writel(value, p->membase + offset);
423 }
424
425 static unsigned int mem32_serial_in(struct uart_port *p, int offset)
426 {
427         offset = offset << p->regshift;
428         return readl(p->membase + offset);
429 }
430
431 static unsigned int io_serial_in(struct uart_port *p, int offset)
432 {
433         offset = offset << p->regshift;
434         return inb(p->iobase + offset);
435 }
436
437 static void io_serial_out(struct uart_port *p, int offset, int value)
438 {
439         offset = offset << p->regshift;
440         outb(value, p->iobase + offset);
441 }
442
443 static int serial8250_default_handle_irq(struct uart_port *port);
444 static int exar_handle_irq(struct uart_port *port);
445
446 static void set_io_from_upio(struct uart_port *p)
447 {
448         struct uart_8250_port *up = up_to_u8250p(p);
449
450         up->dl_read = default_serial_dl_read;
451         up->dl_write = default_serial_dl_write;
452
453         switch (p->iotype) {
454         case UPIO_HUB6:
455                 p->serial_in = hub6_serial_in;
456                 p->serial_out = hub6_serial_out;
457                 break;
458
459         case UPIO_MEM:
460                 p->serial_in = mem_serial_in;
461                 p->serial_out = mem_serial_out;
462                 break;
463
464         case UPIO_MEM32:
465                 p->serial_in = mem32_serial_in;
466                 p->serial_out = mem32_serial_out;
467                 break;
468
469 #if defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_SERIAL_8250_RT288X)
470         case UPIO_AU:
471                 p->serial_in = au_serial_in;
472                 p->serial_out = au_serial_out;
473                 up->dl_read = au_serial_dl_read;
474                 up->dl_write = au_serial_dl_write;
475                 break;
476 #endif
477
478         default:
479                 p->serial_in = io_serial_in;
480                 p->serial_out = io_serial_out;
481                 break;
482         }
483         /* Remember loaded iotype */
484         up->cur_iotype = p->iotype;
485         p->handle_irq = serial8250_default_handle_irq;
486 }
487
488 static void
489 serial_port_out_sync(struct uart_port *p, int offset, int value)
490 {
491         switch (p->iotype) {
492         case UPIO_MEM:
493         case UPIO_MEM32:
494         case UPIO_AU:
495                 p->serial_out(p, offset, value);
496                 p->serial_in(p, UART_LCR);      /* safe, no side-effects */
497                 break;
498         default:
499                 p->serial_out(p, offset, value);
500         }
501 }
502
503 /*
504  * For the 16C950
505  */
506 static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
507 {
508         serial_out(up, UART_SCR, offset);
509         serial_out(up, UART_ICR, value);
510 }
511
512 static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
513 {
514         unsigned int value;
515
516         serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
517         serial_out(up, UART_SCR, offset);
518         value = serial_in(up, UART_ICR);
519         serial_icr_write(up, UART_ACR, up->acr);
520
521         return value;
522 }
523
524 /*
525  * FIFO support.
526  */
527 static void serial8250_clear_fifos(struct uart_8250_port *p)
528 {
529         if (p->capabilities & UART_CAP_FIFO) {
530                 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO);
531                 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO |
532                                UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
533                 serial_out(p, UART_FCR, 0);
534         }
535 }
536
537 void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p)
538 {
539         serial8250_clear_fifos(p);
540         serial_out(p, UART_FCR, p->fcr);
541 }
542 EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos);
543
544 void serial8250_rpm_get(struct uart_8250_port *p)
545 {
546         if (!(p->capabilities & UART_CAP_RPM))
547                 return;
548         pm_runtime_get_sync(p->port.dev);
549 }
550 EXPORT_SYMBOL_GPL(serial8250_rpm_get);
551
552 void serial8250_rpm_put(struct uart_8250_port *p)
553 {
554         if (!(p->capabilities & UART_CAP_RPM))
555                 return;
556         pm_runtime_mark_last_busy(p->port.dev);
557         pm_runtime_put_autosuspend(p->port.dev);
558 }
559 EXPORT_SYMBOL_GPL(serial8250_rpm_put);
560
561 /*
562  * These two wrappers ensure that enable_runtime_pm_tx() can be called more than
563  * once and disable_runtime_pm_tx() will still disable RPM because the fifo is
564  * empty and the HW can idle again.
565  */
566 static void serial8250_rpm_get_tx(struct uart_8250_port *p)
567 {
568         unsigned char rpm_active;
569
570         if (!(p->capabilities & UART_CAP_RPM))
571                 return;
572
573         rpm_active = xchg(&p->rpm_tx_active, 1);
574         if (rpm_active)
575                 return;
576         pm_runtime_get_sync(p->port.dev);
577 }
578
579 static void serial8250_rpm_put_tx(struct uart_8250_port *p)
580 {
581         unsigned char rpm_active;
582
583         if (!(p->capabilities & UART_CAP_RPM))
584                 return;
585
586         rpm_active = xchg(&p->rpm_tx_active, 0);
587         if (!rpm_active)
588                 return;
589         pm_runtime_mark_last_busy(p->port.dev);
590         pm_runtime_put_autosuspend(p->port.dev);
591 }
592
593 /*
594  * IER sleep support.  UARTs which have EFRs need the "extended
595  * capability" bit enabled.  Note that on XR16C850s, we need to
596  * reset LCR to write to IER.
597  */
598 static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
599 {
600         unsigned char lcr = 0, efr = 0;
601         /*
602          * Exar UARTs have a SLEEP register that enables or disables
603          * each UART to enter sleep mode separately.  On the XR17V35x the
604          * register is accessible to each UART at the UART_EXAR_SLEEP
605          * offset but the UART channel may only write to the corresponding
606          * bit.
607          */
608         serial8250_rpm_get(p);
609         if ((p->port.type == PORT_XR17V35X) ||
610            (p->port.type == PORT_XR17D15X)) {
611                 serial_out(p, UART_EXAR_SLEEP, sleep ? 0xff : 0);
612                 goto out;
613         }
614
615         if (p->capabilities & UART_CAP_SLEEP) {
616                 if (p->capabilities & UART_CAP_EFR) {
617                         lcr = serial_in(p, UART_LCR);
618                         efr = serial_in(p, UART_EFR);
619                         serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
620                         serial_out(p, UART_EFR, UART_EFR_ECB);
621                         serial_out(p, UART_LCR, 0);
622                 }
623                 serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
624                 if (p->capabilities & UART_CAP_EFR) {
625                         serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
626                         serial_out(p, UART_EFR, efr);
627                         serial_out(p, UART_LCR, lcr);
628                 }
629         }
630 out:
631         serial8250_rpm_put(p);
632 }
633
634 #ifdef CONFIG_SERIAL_8250_RSA
635 /*
636  * Attempts to turn on the RSA FIFO.  Returns zero on failure.
637  * We set the port uart clock rate if we succeed.
638  */
639 static int __enable_rsa(struct uart_8250_port *up)
640 {
641         unsigned char mode;
642         int result;
643
644         mode = serial_in(up, UART_RSA_MSR);
645         result = mode & UART_RSA_MSR_FIFO;
646
647         if (!result) {
648                 serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
649                 mode = serial_in(up, UART_RSA_MSR);
650                 result = mode & UART_RSA_MSR_FIFO;
651         }
652
653         if (result)
654                 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
655
656         return result;
657 }
658
659 static void enable_rsa(struct uart_8250_port *up)
660 {
661         if (up->port.type == PORT_RSA) {
662                 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
663                         spin_lock_irq(&up->port.lock);
664                         __enable_rsa(up);
665                         spin_unlock_irq(&up->port.lock);
666                 }
667                 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
668                         serial_out(up, UART_RSA_FRR, 0);
669         }
670 }
671
672 /*
673  * Attempts to turn off the RSA FIFO.  Returns zero on failure.
674  * It is unknown why interrupts were disabled in here.  However,
675  * the caller is expected to preserve this behaviour by grabbing
676  * the spinlock before calling this function.
677  */
678 static void disable_rsa(struct uart_8250_port *up)
679 {
680         unsigned char mode;
681         int result;
682
683         if (up->port.type == PORT_RSA &&
684             up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
685                 spin_lock_irq(&up->port.lock);
686
687                 mode = serial_in(up, UART_RSA_MSR);
688                 result = !(mode & UART_RSA_MSR_FIFO);
689
690                 if (!result) {
691                         serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
692                         mode = serial_in(up, UART_RSA_MSR);
693                         result = !(mode & UART_RSA_MSR_FIFO);
694                 }
695
696                 if (result)
697                         up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
698                 spin_unlock_irq(&up->port.lock);
699         }
700 }
701 #endif /* CONFIG_SERIAL_8250_RSA */
702
703 /*
704  * This is a quickie test to see how big the FIFO is.
705  * It doesn't work at all the time, more's the pity.
706  */
707 static int size_fifo(struct uart_8250_port *up)
708 {
709         unsigned char old_fcr, old_mcr, old_lcr;
710         unsigned short old_dl;
711         int count;
712
713         old_lcr = serial_in(up, UART_LCR);
714         serial_out(up, UART_LCR, 0);
715         old_fcr = serial_in(up, UART_FCR);
716         old_mcr = serial_in(up, UART_MCR);
717         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
718                     UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
719         serial_out(up, UART_MCR, UART_MCR_LOOP);
720         serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
721         old_dl = serial_dl_read(up);
722         serial_dl_write(up, 0x0001);
723         serial_out(up, UART_LCR, 0x03);
724         for (count = 0; count < 256; count++)
725                 serial_out(up, UART_TX, count);
726         mdelay(20);/* FIXME - schedule_timeout */
727         for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) &&
728              (count < 256); count++)
729                 serial_in(up, UART_RX);
730         serial_out(up, UART_FCR, old_fcr);
731         serial_out(up, UART_MCR, old_mcr);
732         serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
733         serial_dl_write(up, old_dl);
734         serial_out(up, UART_LCR, old_lcr);
735
736         return count;
737 }
738
739 /*
740  * Read UART ID using the divisor method - set DLL and DLM to zero
741  * and the revision will be in DLL and device type in DLM.  We
742  * preserve the device state across this.
743  */
744 static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
745 {
746         unsigned char old_dll, old_dlm, old_lcr;
747         unsigned int id;
748
749         old_lcr = serial_in(p, UART_LCR);
750         serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A);
751
752         old_dll = serial_in(p, UART_DLL);
753         old_dlm = serial_in(p, UART_DLM);
754
755         serial_out(p, UART_DLL, 0);
756         serial_out(p, UART_DLM, 0);
757
758         id = serial_in(p, UART_DLL) | serial_in(p, UART_DLM) << 8;
759
760         serial_out(p, UART_DLL, old_dll);
761         serial_out(p, UART_DLM, old_dlm);
762         serial_out(p, UART_LCR, old_lcr);
763
764         return id;
765 }
766
767 /*
768  * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
769  * When this function is called we know it is at least a StarTech
770  * 16650 V2, but it might be one of several StarTech UARTs, or one of
771  * its clones.  (We treat the broken original StarTech 16650 V1 as a
772  * 16550, and why not?  Startech doesn't seem to even acknowledge its
773  * existence.)
774  *
775  * What evil have men's minds wrought...
776  */
777 static void autoconfig_has_efr(struct uart_8250_port *up)
778 {
779         unsigned int id1, id2, id3, rev;
780
781         /*
782          * Everything with an EFR has SLEEP
783          */
784         up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
785
786         /*
787          * First we check to see if it's an Oxford Semiconductor UART.
788          *
789          * If we have to do this here because some non-National
790          * Semiconductor clone chips lock up if you try writing to the
791          * LSR register (which serial_icr_read does)
792          */
793
794         /*
795          * Check for Oxford Semiconductor 16C950.
796          *
797          * EFR [4] must be set else this test fails.
798          *
799          * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
800          * claims that it's needed for 952 dual UART's (which are not
801          * recommended for new designs).
802          */
803         up->acr = 0;
804         serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
805         serial_out(up, UART_EFR, UART_EFR_ECB);
806         serial_out(up, UART_LCR, 0x00);
807         id1 = serial_icr_read(up, UART_ID1);
808         id2 = serial_icr_read(up, UART_ID2);
809         id3 = serial_icr_read(up, UART_ID3);
810         rev = serial_icr_read(up, UART_REV);
811
812         DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
813
814         if (id1 == 0x16 && id2 == 0xC9 &&
815             (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
816                 up->port.type = PORT_16C950;
817
818                 /*
819                  * Enable work around for the Oxford Semiconductor 952 rev B
820                  * chip which causes it to seriously miscalculate baud rates
821                  * when DLL is 0.
822                  */
823                 if (id3 == 0x52 && rev == 0x01)
824                         up->bugs |= UART_BUG_QUOT;
825                 return;
826         }
827
828         /*
829          * We check for a XR16C850 by setting DLL and DLM to 0, and then
830          * reading back DLL and DLM.  The chip type depends on the DLM
831          * value read back:
832          *  0x10 - XR16C850 and the DLL contains the chip revision.
833          *  0x12 - XR16C2850.
834          *  0x14 - XR16C854.
835          */
836         id1 = autoconfig_read_divisor_id(up);
837         DEBUG_AUTOCONF("850id=%04x ", id1);
838
839         id2 = id1 >> 8;
840         if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
841                 up->port.type = PORT_16850;
842                 return;
843         }
844
845         /*
846          * It wasn't an XR16C850.
847          *
848          * We distinguish between the '654 and the '650 by counting
849          * how many bytes are in the FIFO.  I'm using this for now,
850          * since that's the technique that was sent to me in the
851          * serial driver update, but I'm not convinced this works.
852          * I've had problems doing this in the past.  -TYT
853          */
854         if (size_fifo(up) == 64)
855                 up->port.type = PORT_16654;
856         else
857                 up->port.type = PORT_16650V2;
858 }
859
860 /*
861  * We detected a chip without a FIFO.  Only two fall into
862  * this category - the original 8250 and the 16450.  The
863  * 16450 has a scratch register (accessible with LCR=0)
864  */
865 static void autoconfig_8250(struct uart_8250_port *up)
866 {
867         unsigned char scratch, status1, status2;
868
869         up->port.type = PORT_8250;
870
871         scratch = serial_in(up, UART_SCR);
872         serial_out(up, UART_SCR, 0xa5);
873         status1 = serial_in(up, UART_SCR);
874         serial_out(up, UART_SCR, 0x5a);
875         status2 = serial_in(up, UART_SCR);
876         serial_out(up, UART_SCR, scratch);
877
878         if (status1 == 0xa5 && status2 == 0x5a)
879                 up->port.type = PORT_16450;
880 }
881
882 static int broken_efr(struct uart_8250_port *up)
883 {
884         /*
885          * Exar ST16C2550 "A2" devices incorrectly detect as
886          * having an EFR, and report an ID of 0x0201.  See
887          * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html 
888          */
889         if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
890                 return 1;
891
892         return 0;
893 }
894
895 static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
896 {
897         unsigned char status;
898
899         status = serial_in(up, 0x04); /* EXCR2 */
900 #define PRESL(x) ((x) & 0x30)
901         if (PRESL(status) == 0x10) {
902                 /* already in high speed mode */
903                 return 0;
904         } else {
905                 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
906                 status |= 0x10;  /* 1.625 divisor for baud_base --> 921600 */
907                 serial_out(up, 0x04, status);
908         }
909         return 1;
910 }
911
912 /*
913  * We know that the chip has FIFOs.  Does it have an EFR?  The
914  * EFR is located in the same register position as the IIR and
915  * we know the top two bits of the IIR are currently set.  The
916  * EFR should contain zero.  Try to read the EFR.
917  */
918 static void autoconfig_16550a(struct uart_8250_port *up)
919 {
920         unsigned char status1, status2;
921         unsigned int iersave;
922
923         up->port.type = PORT_16550A;
924         up->capabilities |= UART_CAP_FIFO;
925
926         /*
927          * XR17V35x UARTs have an extra divisor register, DLD
928          * that gets enabled with when DLAB is set which will
929          * cause the device to incorrectly match and assign
930          * port type to PORT_16650.  The EFR for this UART is
931          * found at offset 0x09. Instead check the Deice ID (DVID)
932          * register for a 2, 4 or 8 port UART.
933          */
934         if (up->port.flags & UPF_EXAR_EFR) {
935                 status1 = serial_in(up, UART_EXAR_DVID);
936                 if (status1 == 0x82 || status1 == 0x84 || status1 == 0x88) {
937                         DEBUG_AUTOCONF("Exar XR17V35x ");
938                         up->port.type = PORT_XR17V35X;
939                         up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
940                                                 UART_CAP_SLEEP;
941
942                         return;
943                 }
944
945         }
946
947         /*
948          * Check for presence of the EFR when DLAB is set.
949          * Only ST16C650V1 UARTs pass this test.
950          */
951         serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
952         if (serial_in(up, UART_EFR) == 0) {
953                 serial_out(up, UART_EFR, 0xA8);
954                 if (serial_in(up, UART_EFR) != 0) {
955                         DEBUG_AUTOCONF("EFRv1 ");
956                         up->port.type = PORT_16650;
957                         up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
958                 } else {
959                         DEBUG_AUTOCONF("Motorola 8xxx DUART ");
960                 }
961                 serial_out(up, UART_EFR, 0);
962                 return;
963         }
964
965         /*
966          * Maybe it requires 0xbf to be written to the LCR.
967          * (other ST16C650V2 UARTs, TI16C752A, etc)
968          */
969         serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
970         if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
971                 DEBUG_AUTOCONF("EFRv2 ");
972                 autoconfig_has_efr(up);
973                 return;
974         }
975
976         /*
977          * Check for a National Semiconductor SuperIO chip.
978          * Attempt to switch to bank 2, read the value of the LOOP bit
979          * from EXCR1. Switch back to bank 0, change it in MCR. Then
980          * switch back to bank 2, read it from EXCR1 again and check
981          * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
982          */
983         serial_out(up, UART_LCR, 0);
984         status1 = serial_in(up, UART_MCR);
985         serial_out(up, UART_LCR, 0xE0);
986         status2 = serial_in(up, 0x02); /* EXCR1 */
987
988         if (!((status2 ^ status1) & UART_MCR_LOOP)) {
989                 serial_out(up, UART_LCR, 0);
990                 serial_out(up, UART_MCR, status1 ^ UART_MCR_LOOP);
991                 serial_out(up, UART_LCR, 0xE0);
992                 status2 = serial_in(up, 0x02); /* EXCR1 */
993                 serial_out(up, UART_LCR, 0);
994                 serial_out(up, UART_MCR, status1);
995
996                 if ((status2 ^ status1) & UART_MCR_LOOP) {
997                         unsigned short quot;
998
999                         serial_out(up, UART_LCR, 0xE0);
1000
1001                         quot = serial_dl_read(up);
1002                         quot <<= 3;
1003
1004                         if (ns16550a_goto_highspeed(up))
1005                                 serial_dl_write(up, quot);
1006
1007                         serial_out(up, UART_LCR, 0);
1008
1009                         up->port.uartclk = 921600*16;
1010                         up->port.type = PORT_NS16550A;
1011                         up->capabilities |= UART_NATSEMI;
1012                         return;
1013                 }
1014         }
1015
1016         /*
1017          * No EFR.  Try to detect a TI16750, which only sets bit 5 of
1018          * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1019          * Try setting it with and without DLAB set.  Cheap clones
1020          * set bit 5 without DLAB set.
1021          */
1022         serial_out(up, UART_LCR, 0);
1023         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1024         status1 = serial_in(up, UART_IIR) >> 5;
1025         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1026         serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
1027         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1028         status2 = serial_in(up, UART_IIR) >> 5;
1029         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1030         serial_out(up, UART_LCR, 0);
1031
1032         DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1033
1034         if (status1 == 6 && status2 == 7) {
1035                 up->port.type = PORT_16750;
1036                 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1037                 return;
1038         }
1039
1040         /*
1041          * Try writing and reading the UART_IER_UUE bit (b6).
1042          * If it works, this is probably one of the Xscale platform's
1043          * internal UARTs.
1044          * We're going to explicitly set the UUE bit to 0 before
1045          * trying to write and read a 1 just to make sure it's not
1046          * already a 1 and maybe locked there before we even start start.
1047          */
1048         iersave = serial_in(up, UART_IER);
1049         serial_out(up, UART_IER, iersave & ~UART_IER_UUE);
1050         if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1051                 /*
1052                  * OK it's in a known zero state, try writing and reading
1053                  * without disturbing the current state of the other bits.
1054                  */
1055                 serial_out(up, UART_IER, iersave | UART_IER_UUE);
1056                 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1057                         /*
1058                          * It's an Xscale.
1059                          * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1060                          */
1061                         DEBUG_AUTOCONF("Xscale ");
1062                         up->port.type = PORT_XSCALE;
1063                         up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
1064                         return;
1065                 }
1066         } else {
1067                 /*
1068                  * If we got here we couldn't force the IER_UUE bit to 0.
1069                  * Log it and continue.
1070                  */
1071                 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1072         }
1073         serial_out(up, UART_IER, iersave);
1074
1075         /*
1076          * Exar uarts have EFR in a weird location
1077          */
1078         if (up->port.flags & UPF_EXAR_EFR) {
1079                 DEBUG_AUTOCONF("Exar XR17D15x ");
1080                 up->port.type = PORT_XR17D15X;
1081                 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
1082                                     UART_CAP_SLEEP;
1083
1084                 return;
1085         }
1086
1087         /*
1088          * We distinguish between 16550A and U6 16550A by counting
1089          * how many bytes are in the FIFO.
1090          */
1091         if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1092                 up->port.type = PORT_U6_16550A;
1093                 up->capabilities |= UART_CAP_AFE;
1094         }
1095 }
1096
1097 /*
1098  * This routine is called by rs_init() to initialize a specific serial
1099  * port.  It determines what type of UART chip this serial port is
1100  * using: 8250, 16450, 16550, 16550A.  The important question is
1101  * whether or not this UART is a 16550A or not, since this will
1102  * determine whether or not we can use its FIFO features or not.
1103  */
1104 static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1105 {
1106         unsigned char status1, scratch, scratch2, scratch3;
1107         unsigned char save_lcr, save_mcr;
1108         struct uart_port *port = &up->port;
1109         unsigned long flags;
1110         unsigned int old_capabilities;
1111
1112         if (!port->iobase && !port->mapbase && !port->membase)
1113                 return;
1114
1115         DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
1116                        serial_index(port), port->iobase, port->membase);
1117
1118         /*
1119          * We really do need global IRQs disabled here - we're going to
1120          * be frobbing the chips IRQ enable register to see if it exists.
1121          */
1122         spin_lock_irqsave(&port->lock, flags);
1123
1124         up->capabilities = 0;
1125         up->bugs = 0;
1126
1127         if (!(port->flags & UPF_BUGGY_UART)) {
1128                 /*
1129                  * Do a simple existence test first; if we fail this,
1130                  * there's no point trying anything else.
1131                  *
1132                  * 0x80 is used as a nonsense port to prevent against
1133                  * false positives due to ISA bus float.  The
1134                  * assumption is that 0x80 is a non-existent port;
1135                  * which should be safe since include/asm/io.h also
1136                  * makes this assumption.
1137                  *
1138                  * Note: this is safe as long as MCR bit 4 is clear
1139                  * and the device is in "PC" mode.
1140                  */
1141                 scratch = serial_in(up, UART_IER);
1142                 serial_out(up, UART_IER, 0);
1143 #ifdef __i386__
1144                 outb(0xff, 0x080);
1145 #endif
1146                 /*
1147                  * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1148                  * 16C754B) allow only to modify them if an EFR bit is set.
1149                  */
1150                 scratch2 = serial_in(up, UART_IER) & 0x0f;
1151                 serial_out(up, UART_IER, 0x0F);
1152 #ifdef __i386__
1153                 outb(0, 0x080);
1154 #endif
1155                 scratch3 = serial_in(up, UART_IER) & 0x0f;
1156                 serial_out(up, UART_IER, scratch);
1157                 if (scratch2 != 0 || scratch3 != 0x0F) {
1158                         /*
1159                          * We failed; there's nothing here
1160                          */
1161                         spin_unlock_irqrestore(&port->lock, flags);
1162                         DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1163                                        scratch2, scratch3);
1164                         goto out;
1165                 }
1166         }
1167
1168         save_mcr = serial_in(up, UART_MCR);
1169         save_lcr = serial_in(up, UART_LCR);
1170
1171         /*
1172          * Check to see if a UART is really there.  Certain broken
1173          * internal modems based on the Rockwell chipset fail this
1174          * test, because they apparently don't implement the loopback
1175          * test mode.  So this test is skipped on the COM 1 through
1176          * COM 4 ports.  This *should* be safe, since no board
1177          * manufacturer would be stupid enough to design a board
1178          * that conflicts with COM 1-4 --- we hope!
1179          */
1180         if (!(port->flags & UPF_SKIP_TEST)) {
1181                 serial_out(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1182                 status1 = serial_in(up, UART_MSR) & 0xF0;
1183                 serial_out(up, UART_MCR, save_mcr);
1184                 if (status1 != 0x90) {
1185                         spin_unlock_irqrestore(&port->lock, flags);
1186                         DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1187                                        status1);
1188                         goto out;
1189                 }
1190         }
1191
1192         /*
1193          * We're pretty sure there's a port here.  Lets find out what
1194          * type of port it is.  The IIR top two bits allows us to find
1195          * out if it's 8250 or 16450, 16550, 16550A or later.  This
1196          * determines what we test for next.
1197          *
1198          * We also initialise the EFR (if any) to zero for later.  The
1199          * EFR occupies the same register location as the FCR and IIR.
1200          */
1201         serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1202         serial_out(up, UART_EFR, 0);
1203         serial_out(up, UART_LCR, 0);
1204
1205         serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1206         scratch = serial_in(up, UART_IIR) >> 6;
1207
1208         switch (scratch) {
1209         case 0:
1210                 autoconfig_8250(up);
1211                 break;
1212         case 1:
1213                 port->type = PORT_UNKNOWN;
1214                 break;
1215         case 2:
1216                 port->type = PORT_16550;
1217                 break;
1218         case 3:
1219                 autoconfig_16550a(up);
1220                 break;
1221         }
1222
1223 #ifdef CONFIG_SERIAL_8250_RSA
1224         /*
1225          * Only probe for RSA ports if we got the region.
1226          */
1227         if (port->type == PORT_16550A && probeflags & PROBE_RSA) {
1228                 int i;
1229
1230                 for (i = 0 ; i < probe_rsa_count; ++i) {
1231                         if (probe_rsa[i] == port->iobase && __enable_rsa(up)) {
1232                                 port->type = PORT_RSA;
1233                                 break;
1234                         }
1235                 }
1236         }
1237 #endif
1238
1239         serial_out(up, UART_LCR, save_lcr);
1240
1241         port->fifosize = uart_config[up->port.type].fifo_size;
1242         old_capabilities = up->capabilities; 
1243         up->capabilities = uart_config[port->type].flags;
1244         up->tx_loadsz = uart_config[port->type].tx_loadsz;
1245
1246         if (port->type == PORT_UNKNOWN)
1247                 goto out_lock;
1248
1249         /*
1250          * Reset the UART.
1251          */
1252 #ifdef CONFIG_SERIAL_8250_RSA
1253         if (port->type == PORT_RSA)
1254                 serial_out(up, UART_RSA_FRR, 0);
1255 #endif
1256         serial_out(up, UART_MCR, save_mcr);
1257         serial8250_clear_fifos(up);
1258         serial_in(up, UART_RX);
1259         if (up->capabilities & UART_CAP_UUE)
1260                 serial_out(up, UART_IER, UART_IER_UUE);
1261         else
1262                 serial_out(up, UART_IER, 0);
1263
1264 out_lock:
1265         spin_unlock_irqrestore(&port->lock, flags);
1266         if (up->capabilities != old_capabilities) {
1267                 printk(KERN_WARNING
1268                        "ttyS%d: detected caps %08x should be %08x\n",
1269                        serial_index(port), old_capabilities,
1270                        up->capabilities);
1271         }
1272 out:
1273         DEBUG_AUTOCONF("iir=%d ", scratch);
1274         DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name);
1275 }
1276
1277 static void autoconfig_irq(struct uart_8250_port *up)
1278 {
1279         struct uart_port *port = &up->port;
1280         unsigned char save_mcr, save_ier;
1281         unsigned char save_ICP = 0;
1282         unsigned int ICP = 0;
1283         unsigned long irqs;
1284         int irq;
1285
1286         if (port->flags & UPF_FOURPORT) {
1287                 ICP = (port->iobase & 0xfe0) | 0x1f;
1288                 save_ICP = inb_p(ICP);
1289                 outb_p(0x80, ICP);
1290                 inb_p(ICP);
1291         }
1292
1293         /* forget possible initially masked and pending IRQ */
1294         probe_irq_off(probe_irq_on());
1295         save_mcr = serial_in(up, UART_MCR);
1296         save_ier = serial_in(up, UART_IER);
1297         serial_out(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
1298
1299         irqs = probe_irq_on();
1300         serial_out(up, UART_MCR, 0);
1301         udelay(10);
1302         if (port->flags & UPF_FOURPORT) {
1303                 serial_out(up, UART_MCR,
1304                             UART_MCR_DTR | UART_MCR_RTS);
1305         } else {
1306                 serial_out(up, UART_MCR,
1307                             UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1308         }
1309         serial_out(up, UART_IER, 0x0f); /* enable all intrs */
1310         serial_in(up, UART_LSR);
1311         serial_in(up, UART_RX);
1312         serial_in(up, UART_IIR);
1313         serial_in(up, UART_MSR);
1314         serial_out(up, UART_TX, 0xFF);
1315         udelay(20);
1316         irq = probe_irq_off(irqs);
1317
1318         serial_out(up, UART_MCR, save_mcr);
1319         serial_out(up, UART_IER, save_ier);
1320
1321         if (port->flags & UPF_FOURPORT)
1322                 outb_p(save_ICP, ICP);
1323
1324         port->irq = (irq > 0) ? irq : 0;
1325 }
1326
1327 static inline void __stop_tx(struct uart_8250_port *p)
1328 {
1329         if (p->ier & UART_IER_THRI) {
1330                 p->ier &= ~UART_IER_THRI;
1331                 serial_out(p, UART_IER, p->ier);
1332                 serial8250_rpm_put_tx(p);
1333         }
1334 }
1335
1336 static void serial8250_stop_tx(struct uart_port *port)
1337 {
1338         struct uart_8250_port *up = up_to_u8250p(port);
1339
1340         serial8250_rpm_get(up);
1341         __stop_tx(up);
1342
1343         /*
1344          * We really want to stop the transmitter from sending.
1345          */
1346         if (port->type == PORT_16C950) {
1347                 up->acr |= UART_ACR_TXDIS;
1348                 serial_icr_write(up, UART_ACR, up->acr);
1349         }
1350         serial8250_rpm_put(up);
1351 }
1352
1353 static void serial8250_start_tx(struct uart_port *port)
1354 {
1355         struct uart_8250_port *up = up_to_u8250p(port);
1356
1357         serial8250_rpm_get_tx(up);
1358         if (up->dma && !up->dma->tx_dma(up)) {
1359                 return;
1360         } else if (!(up->ier & UART_IER_THRI)) {
1361                 up->ier |= UART_IER_THRI;
1362                 serial_port_out(port, UART_IER, up->ier);
1363
1364                 if (up->bugs & UART_BUG_TXEN) {
1365                         unsigned char lsr;
1366                         lsr = serial_in(up, UART_LSR);
1367                         up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1368                         if (lsr & UART_LSR_TEMT)
1369                                 serial8250_tx_chars(up);
1370                 }
1371         }
1372
1373         /*
1374          * Re-enable the transmitter if we disabled it.
1375          */
1376         if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
1377                 up->acr &= ~UART_ACR_TXDIS;
1378                 serial_icr_write(up, UART_ACR, up->acr);
1379         }
1380 }
1381
1382 static void serial8250_throttle(struct uart_port *port)
1383 {
1384         port->throttle(port);
1385 }
1386
1387 static void serial8250_unthrottle(struct uart_port *port)
1388 {
1389         port->unthrottle(port);
1390 }
1391
1392 static void serial8250_stop_rx(struct uart_port *port)
1393 {
1394         struct uart_8250_port *up = up_to_u8250p(port);
1395
1396         serial8250_rpm_get(up);
1397
1398         up->ier &= ~(UART_IER_RLSI | UART_IER_RDI);
1399         up->port.read_status_mask &= ~UART_LSR_DR;
1400         serial_port_out(port, UART_IER, up->ier);
1401
1402         serial8250_rpm_put(up);
1403 }
1404
1405 static void serial8250_enable_ms(struct uart_port *port)
1406 {
1407         struct uart_8250_port *up = up_to_u8250p(port);
1408
1409         /* no MSR capabilities */
1410         if (up->bugs & UART_BUG_NOMSR)
1411                 return;
1412
1413         up->ier |= UART_IER_MSI;
1414
1415         serial8250_rpm_get(up);
1416         serial_port_out(port, UART_IER, up->ier);
1417         serial8250_rpm_put(up);
1418 }
1419
1420 /*
1421  * serial8250_rx_chars: processes according to the passed in LSR
1422  * value, and returns the remaining LSR bits not handled
1423  * by this Rx routine.
1424  */
1425 unsigned char
1426 serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr)
1427 {
1428         struct uart_port *port = &up->port;
1429         unsigned char ch;
1430         int max_count = 256;
1431         char flag;
1432
1433         do {
1434                 if (likely(lsr & UART_LSR_DR))
1435                         ch = serial_in(up, UART_RX);
1436                 else
1437                         /*
1438                          * Intel 82571 has a Serial Over Lan device that will
1439                          * set UART_LSR_BI without setting UART_LSR_DR when
1440                          * it receives a break. To avoid reading from the
1441                          * receive buffer without UART_LSR_DR bit set, we
1442                          * just force the read character to be 0
1443                          */
1444                         ch = 0;
1445
1446                 flag = TTY_NORMAL;
1447                 port->icount.rx++;
1448
1449                 lsr |= up->lsr_saved_flags;
1450                 up->lsr_saved_flags = 0;
1451
1452                 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
1453                         if (lsr & UART_LSR_BI) {
1454                                 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1455                                 port->icount.brk++;
1456                                 /*
1457                                  * We do the SysRQ and SAK checking
1458                                  * here because otherwise the break
1459                                  * may get masked by ignore_status_mask
1460                                  * or read_status_mask.
1461                                  */
1462                                 if (uart_handle_break(port))
1463                                         goto ignore_char;
1464                         } else if (lsr & UART_LSR_PE)
1465                                 port->icount.parity++;
1466                         else if (lsr & UART_LSR_FE)
1467                                 port->icount.frame++;
1468                         if (lsr & UART_LSR_OE)
1469                                 port->icount.overrun++;
1470
1471                         /*
1472                          * Mask off conditions which should be ignored.
1473                          */
1474                         lsr &= port->read_status_mask;
1475
1476                         if (lsr & UART_LSR_BI) {
1477                                 DEBUG_INTR("handling break....");
1478                                 flag = TTY_BREAK;
1479                         } else if (lsr & UART_LSR_PE)
1480                                 flag = TTY_PARITY;
1481                         else if (lsr & UART_LSR_FE)
1482                                 flag = TTY_FRAME;
1483                 }
1484                 if (uart_handle_sysrq_char(port, ch))
1485                         goto ignore_char;
1486
1487                 uart_insert_char(port, lsr, UART_LSR_OE, ch, flag);
1488
1489 ignore_char:
1490                 lsr = serial_in(up, UART_LSR);
1491         } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
1492         spin_unlock(&port->lock);
1493         tty_flip_buffer_push(&port->state->port);
1494         spin_lock(&port->lock);
1495         return lsr;
1496 }
1497 EXPORT_SYMBOL_GPL(serial8250_rx_chars);
1498
1499 void serial8250_tx_chars(struct uart_8250_port *up)
1500 {
1501         struct uart_port *port = &up->port;
1502         struct circ_buf *xmit = &port->state->xmit;
1503         int count;
1504
1505         if (port->x_char) {
1506                 serial_out(up, UART_TX, port->x_char);
1507                 port->icount.tx++;
1508                 port->x_char = 0;
1509                 return;
1510         }
1511         if (uart_tx_stopped(port)) {
1512                 serial8250_stop_tx(port);
1513                 return;
1514         }
1515         if (uart_circ_empty(xmit)) {
1516                 __stop_tx(up);
1517                 return;
1518         }
1519
1520         count = up->tx_loadsz;
1521         do {
1522                 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1523                 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1524                 port->icount.tx++;
1525                 if (uart_circ_empty(xmit))
1526                         break;
1527                 if (up->capabilities & UART_CAP_HFIFO) {
1528                         if ((serial_port_in(port, UART_LSR) & BOTH_EMPTY) !=
1529                             BOTH_EMPTY)
1530                                 break;
1531                 }
1532         } while (--count > 0);
1533
1534         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1535                 uart_write_wakeup(port);
1536
1537         DEBUG_INTR("THRE...");
1538
1539         /*
1540          * With RPM enabled, we have to wait until the FIFO is empty before the
1541          * HW can go idle. So we get here once again with empty FIFO and disable
1542          * the interrupt and RPM in __stop_tx()
1543          */
1544         if (uart_circ_empty(xmit) && !(up->capabilities & UART_CAP_RPM))
1545                 __stop_tx(up);
1546 }
1547 EXPORT_SYMBOL_GPL(serial8250_tx_chars);
1548
1549 /* Caller holds uart port lock */
1550 unsigned int serial8250_modem_status(struct uart_8250_port *up)
1551 {
1552         struct uart_port *port = &up->port;
1553         unsigned int status = serial_in(up, UART_MSR);
1554
1555         status |= up->msr_saved_flags;
1556         up->msr_saved_flags = 0;
1557         if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
1558             port->state != NULL) {
1559                 if (status & UART_MSR_TERI)
1560                         port->icount.rng++;
1561                 if (status & UART_MSR_DDSR)
1562                         port->icount.dsr++;
1563                 if (status & UART_MSR_DDCD)
1564                         uart_handle_dcd_change(port, status & UART_MSR_DCD);
1565                 if (status & UART_MSR_DCTS)
1566                         uart_handle_cts_change(port, status & UART_MSR_CTS);
1567
1568                 wake_up_interruptible(&port->state->port.delta_msr_wait);
1569         }
1570
1571         return status;
1572 }
1573 EXPORT_SYMBOL_GPL(serial8250_modem_status);
1574
1575 /*
1576  * This handles the interrupt from one port.
1577  */
1578 int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
1579 {
1580         unsigned char status;
1581         unsigned long flags;
1582         struct uart_8250_port *up = up_to_u8250p(port);
1583         int dma_err = 0;
1584
1585         if (iir & UART_IIR_NO_INT)
1586                 return 0;
1587
1588         spin_lock_irqsave(&port->lock, flags);
1589
1590         status = serial_port_in(port, UART_LSR);
1591
1592         DEBUG_INTR("status = %x...", status);
1593
1594         if (status & (UART_LSR_DR | UART_LSR_BI)) {
1595                 if (up->dma)
1596                         dma_err = up->dma->rx_dma(up, iir);
1597
1598                 if (!up->dma || dma_err)
1599                         status = serial8250_rx_chars(up, status);
1600         }
1601         serial8250_modem_status(up);
1602         if ((!up->dma || (up->dma && up->dma->tx_err)) &&
1603             (status & UART_LSR_THRE))
1604                 serial8250_tx_chars(up);
1605
1606         spin_unlock_irqrestore(&port->lock, flags);
1607         return 1;
1608 }
1609 EXPORT_SYMBOL_GPL(serial8250_handle_irq);
1610
1611 static int serial8250_default_handle_irq(struct uart_port *port)
1612 {
1613         struct uart_8250_port *up = up_to_u8250p(port);
1614         unsigned int iir;
1615         int ret;
1616
1617         serial8250_rpm_get(up);
1618
1619         iir = serial_port_in(port, UART_IIR);
1620         ret = serial8250_handle_irq(port, iir);
1621
1622         serial8250_rpm_put(up);
1623         return ret;
1624 }
1625
1626 /*
1627  * These Exar UARTs have an extra interrupt indicator that could
1628  * fire for a few unimplemented interrupts.  One of which is a
1629  * wakeup event when coming out of sleep.  Put this here just
1630  * to be on the safe side that these interrupts don't go unhandled.
1631  */
1632 static int exar_handle_irq(struct uart_port *port)
1633 {
1634         unsigned char int0, int1, int2, int3;
1635         unsigned int iir = serial_port_in(port, UART_IIR);
1636         int ret;
1637
1638         ret = serial8250_handle_irq(port, iir);
1639
1640         if ((port->type == PORT_XR17V35X) ||
1641            (port->type == PORT_XR17D15X)) {
1642                 int0 = serial_port_in(port, 0x80);
1643                 int1 = serial_port_in(port, 0x81);
1644                 int2 = serial_port_in(port, 0x82);
1645                 int3 = serial_port_in(port, 0x83);
1646         }
1647
1648         return ret;
1649 }
1650
1651 /*
1652  * This is the serial driver's interrupt routine.
1653  *
1654  * Arjan thinks the old way was overly complex, so it got simplified.
1655  * Alan disagrees, saying that need the complexity to handle the weird
1656  * nature of ISA shared interrupts.  (This is a special exception.)
1657  *
1658  * In order to handle ISA shared interrupts properly, we need to check
1659  * that all ports have been serviced, and therefore the ISA interrupt
1660  * line has been de-asserted.
1661  *
1662  * This means we need to loop through all ports. checking that they
1663  * don't have an interrupt pending.
1664  */
1665 static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
1666 {
1667         struct irq_info *i = dev_id;
1668         struct list_head *l, *end = NULL;
1669         int pass_counter = 0, handled = 0;
1670
1671         DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1672
1673         spin_lock(&i->lock);
1674
1675         l = i->head;
1676         do {
1677                 struct uart_8250_port *up;
1678                 struct uart_port *port;
1679
1680                 up = list_entry(l, struct uart_8250_port, list);
1681                 port = &up->port;
1682
1683                 if (port->handle_irq(port)) {
1684                         handled = 1;
1685                         end = NULL;
1686                 } else if (end == NULL)
1687                         end = l;
1688
1689                 l = l->next;
1690
1691                 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1692                         /* If we hit this, we're dead. */
1693                         printk_ratelimited(KERN_ERR
1694                                 "serial8250: too much work for irq%d\n", irq);
1695                         break;
1696                 }
1697         } while (l != end);
1698
1699         spin_unlock(&i->lock);
1700
1701         DEBUG_INTR("end.\n");
1702
1703         return IRQ_RETVAL(handled);
1704 }
1705
1706 /*
1707  * To support ISA shared interrupts, we need to have one interrupt
1708  * handler that ensures that the IRQ line has been deasserted
1709  * before returning.  Failing to do this will result in the IRQ
1710  * line being stuck active, and, since ISA irqs are edge triggered,
1711  * no more IRQs will be seen.
1712  */
1713 static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1714 {
1715         spin_lock_irq(&i->lock);
1716
1717         if (!list_empty(i->head)) {
1718                 if (i->head == &up->list)
1719                         i->head = i->head->next;
1720                 list_del(&up->list);
1721         } else {
1722                 BUG_ON(i->head != &up->list);
1723                 i->head = NULL;
1724         }
1725         spin_unlock_irq(&i->lock);
1726         /* List empty so throw away the hash node */
1727         if (i->head == NULL) {
1728                 hlist_del(&i->node);
1729                 kfree(i);
1730         }
1731 }
1732
1733 static int serial_link_irq_chain(struct uart_8250_port *up)
1734 {
1735         struct hlist_head *h;
1736         struct hlist_node *n;
1737         struct irq_info *i;
1738         int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
1739
1740         mutex_lock(&hash_mutex);
1741
1742         h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1743
1744         hlist_for_each(n, h) {
1745                 i = hlist_entry(n, struct irq_info, node);
1746                 if (i->irq == up->port.irq)
1747                         break;
1748         }
1749
1750         if (n == NULL) {
1751                 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1752                 if (i == NULL) {
1753                         mutex_unlock(&hash_mutex);
1754                         return -ENOMEM;
1755                 }
1756                 spin_lock_init(&i->lock);
1757                 i->irq = up->port.irq;
1758                 hlist_add_head(&i->node, h);
1759         }
1760         mutex_unlock(&hash_mutex);
1761
1762         spin_lock_irq(&i->lock);
1763
1764         if (i->head) {
1765                 list_add(&up->list, i->head);
1766                 spin_unlock_irq(&i->lock);
1767
1768                 ret = 0;
1769         } else {
1770                 INIT_LIST_HEAD(&up->list);
1771                 i->head = &up->list;
1772                 spin_unlock_irq(&i->lock);
1773                 irq_flags |= up->port.irqflags;
1774                 ret = request_irq(up->port.irq, serial8250_interrupt,
1775                                   irq_flags, "serial", i);
1776                 if (ret < 0)
1777                         serial_do_unlink(i, up);
1778         }
1779
1780         return ret;
1781 }
1782
1783 static void serial_unlink_irq_chain(struct uart_8250_port *up)
1784 {
1785         /*
1786          * yes, some broken gcc emit "warning: 'i' may be used uninitialized"
1787          * but no, we are not going to take a patch that assigns NULL below.
1788          */
1789         struct irq_info *i;
1790         struct hlist_node *n;
1791         struct hlist_head *h;
1792
1793         mutex_lock(&hash_mutex);
1794
1795         h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1796
1797         hlist_for_each(n, h) {
1798                 i = hlist_entry(n, struct irq_info, node);
1799                 if (i->irq == up->port.irq)
1800                         break;
1801         }
1802
1803         BUG_ON(n == NULL);
1804         BUG_ON(i->head == NULL);
1805
1806         if (list_empty(i->head))
1807                 free_irq(up->port.irq, i);
1808
1809         serial_do_unlink(i, up);
1810         mutex_unlock(&hash_mutex);
1811 }
1812
1813 /*
1814  * This function is used to handle ports that do not have an
1815  * interrupt.  This doesn't work very well for 16450's, but gives
1816  * barely passable results for a 16550A.  (Although at the expense
1817  * of much CPU overhead).
1818  */
1819 static void serial8250_timeout(unsigned long data)
1820 {
1821         struct uart_8250_port *up = (struct uart_8250_port *)data;
1822
1823         up->port.handle_irq(&up->port);
1824         mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
1825 }
1826
1827 static void serial8250_backup_timeout(unsigned long data)
1828 {
1829         struct uart_8250_port *up = (struct uart_8250_port *)data;
1830         unsigned int iir, ier = 0, lsr;
1831         unsigned long flags;
1832
1833         spin_lock_irqsave(&up->port.lock, flags);
1834
1835         /*
1836          * Must disable interrupts or else we risk racing with the interrupt
1837          * based handler.
1838          */
1839         if (up->port.irq) {
1840                 ier = serial_in(up, UART_IER);
1841                 serial_out(up, UART_IER, 0);
1842         }
1843
1844         iir = serial_in(up, UART_IIR);
1845
1846         /*
1847          * This should be a safe test for anyone who doesn't trust the
1848          * IIR bits on their UART, but it's specifically designed for
1849          * the "Diva" UART used on the management processor on many HP
1850          * ia64 and parisc boxes.
1851          */
1852         lsr = serial_in(up, UART_LSR);
1853         up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1854         if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
1855             (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
1856             (lsr & UART_LSR_THRE)) {
1857                 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1858                 iir |= UART_IIR_THRI;
1859         }
1860
1861         if (!(iir & UART_IIR_NO_INT))
1862                 serial8250_tx_chars(up);
1863
1864         if (up->port.irq)
1865                 serial_out(up, UART_IER, ier);
1866
1867         spin_unlock_irqrestore(&up->port.lock, flags);
1868
1869         /* Standard timer interval plus 0.2s to keep the port running */
1870         mod_timer(&up->timer,
1871                 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
1872 }
1873
1874 static unsigned int serial8250_tx_empty(struct uart_port *port)
1875 {
1876         struct uart_8250_port *up = up_to_u8250p(port);
1877         unsigned long flags;
1878         unsigned int lsr;
1879
1880         serial8250_rpm_get(up);
1881
1882         spin_lock_irqsave(&port->lock, flags);
1883         lsr = serial_port_in(port, UART_LSR);
1884         up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1885         spin_unlock_irqrestore(&port->lock, flags);
1886
1887         serial8250_rpm_put(up);
1888
1889         return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
1890 }
1891
1892 static unsigned int serial8250_get_mctrl(struct uart_port *port)
1893 {
1894         struct uart_8250_port *up = up_to_u8250p(port);
1895         unsigned int status;
1896         unsigned int ret;
1897
1898         serial8250_rpm_get(up);
1899         status = serial8250_modem_status(up);
1900         serial8250_rpm_put(up);
1901
1902         ret = 0;
1903         if (status & UART_MSR_DCD)
1904                 ret |= TIOCM_CAR;
1905         if (status & UART_MSR_RI)
1906                 ret |= TIOCM_RNG;
1907         if (status & UART_MSR_DSR)
1908                 ret |= TIOCM_DSR;
1909         if (status & UART_MSR_CTS)
1910                 ret |= TIOCM_CTS;
1911         return ret;
1912 }
1913
1914 static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1915 {
1916         struct uart_8250_port *up = up_to_u8250p(port);
1917         unsigned char mcr = 0;
1918
1919         if (mctrl & TIOCM_RTS)
1920                 mcr |= UART_MCR_RTS;
1921         if (mctrl & TIOCM_DTR)
1922                 mcr |= UART_MCR_DTR;
1923         if (mctrl & TIOCM_OUT1)
1924                 mcr |= UART_MCR_OUT1;
1925         if (mctrl & TIOCM_OUT2)
1926                 mcr |= UART_MCR_OUT2;
1927         if (mctrl & TIOCM_LOOP)
1928                 mcr |= UART_MCR_LOOP;
1929
1930         mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1931
1932         serial_port_out(port, UART_MCR, mcr);
1933 }
1934
1935 static void serial8250_break_ctl(struct uart_port *port, int break_state)
1936 {
1937         struct uart_8250_port *up = up_to_u8250p(port);
1938         unsigned long flags;
1939
1940         serial8250_rpm_get(up);
1941         spin_lock_irqsave(&port->lock, flags);
1942         if (break_state == -1)
1943                 up->lcr |= UART_LCR_SBC;
1944         else
1945                 up->lcr &= ~UART_LCR_SBC;
1946         serial_port_out(port, UART_LCR, up->lcr);
1947         spin_unlock_irqrestore(&port->lock, flags);
1948         serial8250_rpm_put(up);
1949 }
1950
1951 /*
1952  *      Wait for transmitter & holding register to empty
1953  */
1954 static void wait_for_xmitr(struct uart_8250_port *up, int bits)
1955 {
1956         unsigned int status, tmout = 10000;
1957
1958         /* Wait up to 10ms for the character(s) to be sent. */
1959         for (;;) {
1960                 status = serial_in(up, UART_LSR);
1961
1962                 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
1963
1964                 if ((status & bits) == bits)
1965                         break;
1966                 if (--tmout == 0)
1967                         break;
1968                 udelay(1);
1969         }
1970
1971         /* Wait up to 1s for flow control if necessary */
1972         if (up->port.flags & UPF_CONS_FLOW) {
1973                 unsigned int tmout;
1974                 for (tmout = 1000000; tmout; tmout--) {
1975                         unsigned int msr = serial_in(up, UART_MSR);
1976                         up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1977                         if (msr & UART_MSR_CTS)
1978                                 break;
1979                         udelay(1);
1980                         touch_nmi_watchdog();
1981                 }
1982         }
1983 }
1984
1985 #ifdef CONFIG_CONSOLE_POLL
1986 /*
1987  * Console polling routines for writing and reading from the uart while
1988  * in an interrupt or debug context.
1989  */
1990
1991 static int serial8250_get_poll_char(struct uart_port *port)
1992 {
1993         struct uart_8250_port *up = up_to_u8250p(port);
1994         unsigned char lsr;
1995         int status;
1996
1997         serial8250_rpm_get(up);
1998
1999         lsr = serial_port_in(port, UART_LSR);
2000
2001         if (!(lsr & UART_LSR_DR)) {
2002                 status = NO_POLL_CHAR;
2003                 goto out;
2004         }
2005
2006         status = serial_port_in(port, UART_RX);
2007 out:
2008         serial8250_rpm_put(up);
2009         return status;
2010 }
2011
2012
2013 static void serial8250_put_poll_char(struct uart_port *port,
2014                          unsigned char c)
2015 {
2016         unsigned int ier;
2017         struct uart_8250_port *up = up_to_u8250p(port);
2018
2019         serial8250_rpm_get(up);
2020         /*
2021          *      First save the IER then disable the interrupts
2022          */
2023         ier = serial_port_in(port, UART_IER);
2024         if (up->capabilities & UART_CAP_UUE)
2025                 serial_port_out(port, UART_IER, UART_IER_UUE);
2026         else
2027                 serial_port_out(port, UART_IER, 0);
2028
2029         wait_for_xmitr(up, BOTH_EMPTY);
2030         /*
2031          *      Send the character out.
2032          */
2033         serial_port_out(port, UART_TX, c);
2034
2035         /*
2036          *      Finally, wait for transmitter to become empty
2037          *      and restore the IER
2038          */
2039         wait_for_xmitr(up, BOTH_EMPTY);
2040         serial_port_out(port, UART_IER, ier);
2041         serial8250_rpm_put(up);
2042 }
2043
2044 #endif /* CONFIG_CONSOLE_POLL */
2045
2046 int serial8250_do_startup(struct uart_port *port)
2047 {
2048         struct uart_8250_port *up = up_to_u8250p(port);
2049         unsigned long flags;
2050         unsigned char lsr, iir;
2051         int retval;
2052
2053         if (port->type == PORT_8250_CIR)
2054                 return -ENODEV;
2055
2056         if (!port->fifosize)
2057                 port->fifosize = uart_config[port->type].fifo_size;
2058         if (!up->tx_loadsz)
2059                 up->tx_loadsz = uart_config[port->type].tx_loadsz;
2060         if (!up->capabilities)
2061                 up->capabilities = uart_config[port->type].flags;
2062         up->mcr = 0;
2063
2064         if (port->iotype != up->cur_iotype)
2065                 set_io_from_upio(port);
2066
2067         serial8250_rpm_get(up);
2068         if (port->type == PORT_16C950) {
2069                 /* Wake up and initialize UART */
2070                 up->acr = 0;
2071                 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
2072                 serial_port_out(port, UART_EFR, UART_EFR_ECB);
2073                 serial_port_out(port, UART_IER, 0);
2074                 serial_port_out(port, UART_LCR, 0);
2075                 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
2076                 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
2077                 serial_port_out(port, UART_EFR, UART_EFR_ECB);
2078                 serial_port_out(port, UART_LCR, 0);
2079         }
2080
2081 #ifdef CONFIG_SERIAL_8250_RSA
2082         /*
2083          * If this is an RSA port, see if we can kick it up to the
2084          * higher speed clock.
2085          */
2086         enable_rsa(up);
2087 #endif
2088         /*
2089          * Clear the FIFO buffers and disable them.
2090          * (they will be reenabled in set_termios())
2091          */
2092         serial8250_clear_fifos(up);
2093
2094         /*
2095          * Clear the interrupt registers.
2096          */
2097         if (serial_port_in(port, UART_LSR) & UART_LSR_DR)
2098                 serial_port_in(port, UART_RX);
2099         serial_port_in(port, UART_IIR);
2100         serial_port_in(port, UART_MSR);
2101
2102         /*
2103          * At this point, there's no way the LSR could still be 0xff;
2104          * if it is, then bail out, because there's likely no UART
2105          * here.
2106          */
2107         if (!(port->flags & UPF_BUGGY_UART) &&
2108             (serial_port_in(port, UART_LSR) == 0xff)) {
2109                 printk_ratelimited(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
2110                                    serial_index(port));
2111                 retval = -ENODEV;
2112                 goto out;
2113         }
2114
2115         /*
2116          * For a XR16C850, we need to set the trigger levels
2117          */
2118         if (port->type == PORT_16850) {
2119                 unsigned char fctr;
2120
2121                 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
2122
2123                 fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
2124                 serial_port_out(port, UART_FCTR,
2125                                 fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2126                 serial_port_out(port, UART_TRG, UART_TRG_96);
2127                 serial_port_out(port, UART_FCTR,
2128                                 fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2129                 serial_port_out(port, UART_TRG, UART_TRG_96);
2130
2131                 serial_port_out(port, UART_LCR, 0);
2132         }
2133
2134         if (port->irq) {
2135                 unsigned char iir1;
2136                 /*
2137                  * Test for UARTs that do not reassert THRE when the
2138                  * transmitter is idle and the interrupt has already
2139                  * been cleared.  Real 16550s should always reassert
2140                  * this interrupt whenever the transmitter is idle and
2141                  * the interrupt is enabled.  Delays are necessary to
2142                  * allow register changes to become visible.
2143                  */
2144                 spin_lock_irqsave(&port->lock, flags);
2145                 if (up->port.irqflags & IRQF_SHARED)
2146                         disable_irq_nosync(port->irq);
2147
2148                 wait_for_xmitr(up, UART_LSR_THRE);
2149                 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
2150                 udelay(1); /* allow THRE to set */
2151                 iir1 = serial_port_in(port, UART_IIR);
2152                 serial_port_out(port, UART_IER, 0);
2153                 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
2154                 udelay(1); /* allow a working UART time to re-assert THRE */
2155                 iir = serial_port_in(port, UART_IIR);
2156                 serial_port_out(port, UART_IER, 0);
2157
2158                 if (port->irqflags & IRQF_SHARED)
2159                         enable_irq(port->irq);
2160                 spin_unlock_irqrestore(&port->lock, flags);
2161
2162                 /*
2163                  * If the interrupt is not reasserted, or we otherwise
2164                  * don't trust the iir, setup a timer to kick the UART
2165                  * on a regular basis.
2166                  */
2167                 if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) ||
2168                     up->port.flags & UPF_BUG_THRE) {
2169                         up->bugs |= UART_BUG_THRE;
2170                         pr_debug("ttyS%d - using backup timer\n",
2171                                  serial_index(port));
2172                 }
2173         }
2174
2175         /*
2176          * The above check will only give an accurate result the first time
2177          * the port is opened so this value needs to be preserved.
2178          */
2179         if (up->bugs & UART_BUG_THRE) {
2180                 up->timer.function = serial8250_backup_timeout;
2181                 up->timer.data = (unsigned long)up;
2182                 mod_timer(&up->timer, jiffies +
2183                         uart_poll_timeout(port) + HZ / 5);
2184         }
2185
2186         /*
2187          * If the "interrupt" for this port doesn't correspond with any
2188          * hardware interrupt, we use a timer-based system.  The original
2189          * driver used to do this with IRQ0.
2190          */
2191         if (!port->irq) {
2192                 up->timer.data = (unsigned long)up;
2193                 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
2194         } else {
2195                 retval = serial_link_irq_chain(up);
2196                 if (retval)
2197                         goto out;
2198         }
2199
2200         /*
2201          * Now, initialize the UART
2202          */
2203         serial_port_out(port, UART_LCR, UART_LCR_WLEN8);
2204
2205         spin_lock_irqsave(&port->lock, flags);
2206         if (up->port.flags & UPF_FOURPORT) {
2207                 if (!up->port.irq)
2208                         up->port.mctrl |= TIOCM_OUT1;
2209         } else
2210                 /*
2211                  * Most PC uarts need OUT2 raised to enable interrupts.
2212                  */
2213                 if (port->irq)
2214                         up->port.mctrl |= TIOCM_OUT2;
2215
2216         serial8250_set_mctrl(port, port->mctrl);
2217
2218         /* Serial over Lan (SoL) hack:
2219            Intel 8257x Gigabit ethernet chips have a
2220            16550 emulation, to be used for Serial Over Lan.
2221            Those chips take a longer time than a normal
2222            serial device to signalize that a transmission
2223            data was queued. Due to that, the above test generally
2224            fails. One solution would be to delay the reading of
2225            iir. However, this is not reliable, since the timeout
2226            is variable. So, let's just don't test if we receive
2227            TX irq. This way, we'll never enable UART_BUG_TXEN.
2228          */
2229         if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
2230                 goto dont_test_tx_en;
2231
2232         /*
2233          * Do a quick test to see if we receive an
2234          * interrupt when we enable the TX irq.
2235          */
2236         serial_port_out(port, UART_IER, UART_IER_THRI);
2237         lsr = serial_port_in(port, UART_LSR);
2238         iir = serial_port_in(port, UART_IIR);
2239         serial_port_out(port, UART_IER, 0);
2240
2241         if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
2242                 if (!(up->bugs & UART_BUG_TXEN)) {
2243                         up->bugs |= UART_BUG_TXEN;
2244                         pr_debug("ttyS%d - enabling bad tx status workarounds\n",
2245                                  serial_index(port));
2246                 }
2247         } else {
2248                 up->bugs &= ~UART_BUG_TXEN;
2249         }
2250
2251 dont_test_tx_en:
2252         spin_unlock_irqrestore(&port->lock, flags);
2253
2254         /*
2255          * Clear the interrupt registers again for luck, and clear the
2256          * saved flags to avoid getting false values from polling
2257          * routines or the previous session.
2258          */
2259         if (serial_port_in(port, UART_LSR) & UART_LSR_DR)
2260                 serial_port_in(port, UART_RX);
2261         serial_port_in(port, UART_IIR);
2262         serial_port_in(port, UART_MSR);
2263         up->lsr_saved_flags = 0;
2264         up->msr_saved_flags = 0;
2265
2266         /*
2267          * Request DMA channels for both RX and TX.
2268          */
2269         if (up->dma) {
2270                 retval = serial8250_request_dma(up);
2271                 if (retval) {
2272                         pr_warn_ratelimited("ttyS%d - failed to request DMA\n",
2273                                             serial_index(port));
2274                         up->dma = NULL;
2275                 }
2276         }
2277
2278         /*
2279          * Finally, enable interrupts.  Note: Modem status interrupts
2280          * are set via set_termios(), which will be occurring imminently
2281          * anyway, so we don't enable them here.
2282          */
2283         up->ier = UART_IER_RLSI | UART_IER_RDI;
2284         serial_port_out(port, UART_IER, up->ier);
2285
2286         if (port->flags & UPF_FOURPORT) {
2287                 unsigned int icp;
2288                 /*
2289                  * Enable interrupts on the AST Fourport board
2290                  */
2291                 icp = (port->iobase & 0xfe0) | 0x01f;
2292                 outb_p(0x80, icp);
2293                 inb_p(icp);
2294         }
2295         retval = 0;
2296 out:
2297         serial8250_rpm_put(up);
2298         return retval;
2299 }
2300 EXPORT_SYMBOL_GPL(serial8250_do_startup);
2301
2302 static int serial8250_startup(struct uart_port *port)
2303 {
2304         if (port->startup)
2305                 return port->startup(port);
2306         return serial8250_do_startup(port);
2307 }
2308
2309 void serial8250_do_shutdown(struct uart_port *port)
2310 {
2311         struct uart_8250_port *up = up_to_u8250p(port);
2312         unsigned long flags;
2313
2314         serial8250_rpm_get(up);
2315         /*
2316          * Disable interrupts from this port
2317          */
2318         up->ier = 0;
2319         serial_port_out(port, UART_IER, 0);
2320
2321         if (up->dma)
2322                 serial8250_release_dma(up);
2323
2324         spin_lock_irqsave(&port->lock, flags);
2325         if (port->flags & UPF_FOURPORT) {
2326                 /* reset interrupts on the AST Fourport board */
2327                 inb((port->iobase & 0xfe0) | 0x1f);
2328                 port->mctrl |= TIOCM_OUT1;
2329         } else
2330                 port->mctrl &= ~TIOCM_OUT2;
2331
2332         serial8250_set_mctrl(port, port->mctrl);
2333         spin_unlock_irqrestore(&port->lock, flags);
2334
2335         /*
2336          * Disable break condition and FIFOs
2337          */
2338         serial_port_out(port, UART_LCR,
2339                         serial_port_in(port, UART_LCR) & ~UART_LCR_SBC);
2340         serial8250_clear_fifos(up);
2341
2342 #ifdef CONFIG_SERIAL_8250_RSA
2343         /*
2344          * Reset the RSA board back to 115kbps compat mode.
2345          */
2346         disable_rsa(up);
2347 #endif
2348
2349         /*
2350          * Read data port to reset things, and then unlink from
2351          * the IRQ chain.
2352          */
2353         if (serial_port_in(port, UART_LSR) & UART_LSR_DR)
2354                 serial_port_in(port, UART_RX);
2355         serial8250_rpm_put(up);
2356
2357         del_timer_sync(&up->timer);
2358         up->timer.function = serial8250_timeout;
2359         if (port->irq)
2360                 serial_unlink_irq_chain(up);
2361 }
2362 EXPORT_SYMBOL_GPL(serial8250_do_shutdown);
2363
2364 static void serial8250_shutdown(struct uart_port *port)
2365 {
2366         if (port->shutdown)
2367                 port->shutdown(port);
2368         else
2369                 serial8250_do_shutdown(port);
2370 }
2371
2372 static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2373 {
2374         unsigned int quot;
2375
2376         /*
2377          * Handle magic divisors for baud rates above baud_base on
2378          * SMSC SuperIO chips.
2379          */
2380         if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2381             baud == (port->uartclk/4))
2382                 quot = 0x8001;
2383         else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2384                  baud == (port->uartclk/8))
2385                 quot = 0x8002;
2386         else
2387                 quot = uart_get_divisor(port, baud);
2388
2389         return quot;
2390 }
2391
2392 void
2393 serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2394                           struct ktermios *old)
2395 {
2396         struct uart_8250_port *up = up_to_u8250p(port);
2397         unsigned char cval;
2398         unsigned long flags;
2399         unsigned int baud, quot;
2400
2401         switch (termios->c_cflag & CSIZE) {
2402         case CS5:
2403                 cval = UART_LCR_WLEN5;
2404                 break;
2405         case CS6:
2406                 cval = UART_LCR_WLEN6;
2407                 break;
2408         case CS7:
2409                 cval = UART_LCR_WLEN7;
2410                 break;
2411         default:
2412         case CS8:
2413                 cval = UART_LCR_WLEN8;
2414                 break;
2415         }
2416
2417         if (termios->c_cflag & CSTOPB)
2418                 cval |= UART_LCR_STOP;
2419         if (termios->c_cflag & PARENB) {
2420                 cval |= UART_LCR_PARITY;
2421                 if (up->bugs & UART_BUG_PARITY)
2422                         up->fifo_bug = true;
2423         }
2424         if (!(termios->c_cflag & PARODD))
2425                 cval |= UART_LCR_EPAR;
2426 #ifdef CMSPAR
2427         if (termios->c_cflag & CMSPAR)
2428                 cval |= UART_LCR_SPAR;
2429 #endif
2430
2431         /*
2432          * Ask the core to calculate the divisor for us.
2433          */
2434         baud = uart_get_baud_rate(port, termios, old,
2435                                   port->uartclk / 16 / 0xffff,
2436                                   port->uartclk / 16);
2437         quot = serial8250_get_divisor(port, baud);
2438
2439         /*
2440          * Oxford Semi 952 rev B workaround
2441          */
2442         if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
2443                 quot++;
2444
2445         if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) {
2446                 /* NOTE: If fifo_bug is not set, a user can set RX_trigger. */
2447                 if ((baud < 2400 && !up->dma) || up->fifo_bug) {
2448                         up->fcr &= ~UART_FCR_TRIGGER_MASK;
2449                         up->fcr |= UART_FCR_TRIGGER_1;
2450                 }
2451         }
2452
2453         /*
2454          * MCR-based auto flow control.  When AFE is enabled, RTS will be
2455          * deasserted when the receive FIFO contains more characters than
2456          * the trigger, or the MCR RTS bit is cleared.  In the case where
2457          * the remote UART is not using CTS auto flow control, we must
2458          * have sufficient FIFO entries for the latency of the remote
2459          * UART to respond.  IOW, at least 32 bytes of FIFO.
2460          */
2461         if (up->capabilities & UART_CAP_AFE && port->fifosize >= 32) {
2462                 up->mcr &= ~UART_MCR_AFE;
2463                 if (termios->c_cflag & CRTSCTS)
2464                         up->mcr |= UART_MCR_AFE;
2465         }
2466
2467         /*
2468          * Ok, we're now changing the port state.  Do it with
2469          * interrupts disabled.
2470          */
2471         serial8250_rpm_get(up);
2472         spin_lock_irqsave(&port->lock, flags);
2473
2474         /*
2475          * Update the per-port timeout.
2476          */
2477         uart_update_timeout(port, termios->c_cflag, baud);
2478
2479         port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2480         if (termios->c_iflag & INPCK)
2481                 port->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2482         if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
2483                 port->read_status_mask |= UART_LSR_BI;
2484
2485         /*
2486          * Characteres to ignore
2487          */
2488         port->ignore_status_mask = 0;
2489         if (termios->c_iflag & IGNPAR)
2490                 port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2491         if (termios->c_iflag & IGNBRK) {
2492                 port->ignore_status_mask |= UART_LSR_BI;
2493                 /*
2494                  * If we're ignoring parity and break indicators,
2495                  * ignore overruns too (for real raw support).
2496                  */
2497                 if (termios->c_iflag & IGNPAR)
2498                         port->ignore_status_mask |= UART_LSR_OE;
2499         }
2500
2501         /*
2502          * ignore all characters if CREAD is not set
2503          */
2504         if ((termios->c_cflag & CREAD) == 0)
2505                 port->ignore_status_mask |= UART_LSR_DR;
2506
2507         /*
2508          * CTS flow control flag and modem status interrupts
2509          */
2510         up->ier &= ~UART_IER_MSI;
2511         if (!(up->bugs & UART_BUG_NOMSR) &&
2512                         UART_ENABLE_MS(&up->port, termios->c_cflag))
2513                 up->ier |= UART_IER_MSI;
2514         if (up->capabilities & UART_CAP_UUE)
2515                 up->ier |= UART_IER_UUE;
2516         if (up->capabilities & UART_CAP_RTOIE)
2517                 up->ier |= UART_IER_RTOIE;
2518
2519         serial_port_out(port, UART_IER, up->ier);
2520
2521         if (up->capabilities & UART_CAP_EFR) {
2522                 unsigned char efr = 0;
2523                 /*
2524                  * TI16C752/Startech hardware flow control.  FIXME:
2525                  * - TI16C752 requires control thresholds to be set.
2526                  * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2527                  */
2528                 if (termios->c_cflag & CRTSCTS)
2529                         efr |= UART_EFR_CTS;
2530
2531                 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
2532                 if (port->flags & UPF_EXAR_EFR)
2533                         serial_port_out(port, UART_XR_EFR, efr);
2534                 else
2535                         serial_port_out(port, UART_EFR, efr);
2536         }
2537
2538         /* Workaround to enable 115200 baud on OMAP1510 internal ports */
2539         if (is_omap1510_8250(up)) {
2540                 if (baud == 115200) {
2541                         quot = 1;
2542                         serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1);
2543                 } else
2544                         serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0);
2545         }
2546
2547         /*
2548          * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2,
2549          * otherwise just set DLAB
2550          */
2551         if (up->capabilities & UART_NATSEMI)
2552                 serial_port_out(port, UART_LCR, 0xe0);
2553         else
2554                 serial_port_out(port, UART_LCR, cval | UART_LCR_DLAB);
2555
2556         serial_dl_write(up, quot);
2557
2558         /*
2559          * XR17V35x UARTs have an extra fractional divisor register (DLD)
2560          *
2561          * We need to recalculate all of the registers, because DLM and DLL
2562          * are already rounded to a whole integer.
2563          *
2564          * When recalculating we use a 32x clock instead of a 16x clock to
2565          * allow 1-bit for rounding in the fractional part.
2566          */
2567         if (up->port.type == PORT_XR17V35X) {
2568                 unsigned int baud_x32 = (port->uartclk * 2) / baud;
2569                 u16 quot = baud_x32 / 32;
2570                 u8 quot_frac = DIV_ROUND_CLOSEST(baud_x32 % 32, 2);
2571
2572                 serial_dl_write(up, quot);
2573                 serial_port_out(port, 0x2, quot_frac & 0xf);
2574         }
2575
2576         /*
2577          * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2578          * is written without DLAB set, this mode will be disabled.
2579          */
2580         if (port->type == PORT_16750)
2581                 serial_port_out(port, UART_FCR, up->fcr);
2582
2583         serial_port_out(port, UART_LCR, cval);          /* reset DLAB */
2584         up->lcr = cval;                                 /* Save LCR */
2585         if (port->type != PORT_16750) {
2586                 /* emulated UARTs (Lucent Venus 167x) need two steps */
2587                 if (up->fcr & UART_FCR_ENABLE_FIFO)
2588                         serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);
2589                 serial_port_out(port, UART_FCR, up->fcr);       /* set fcr */
2590         }
2591         serial8250_set_mctrl(port, port->mctrl);
2592         spin_unlock_irqrestore(&port->lock, flags);
2593         serial8250_rpm_put(up);
2594
2595         /* Don't rewrite B0 */
2596         if (tty_termios_baud_rate(termios))
2597                 tty_termios_encode_baud_rate(termios, baud, baud);
2598 }
2599 EXPORT_SYMBOL(serial8250_do_set_termios);
2600
2601 static void
2602 serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2603                        struct ktermios *old)
2604 {
2605         if (port->set_termios)
2606                 port->set_termios(port, termios, old);
2607         else
2608                 serial8250_do_set_termios(port, termios, old);
2609 }
2610
2611 static void
2612 serial8250_set_ldisc(struct uart_port *port, int new)
2613 {
2614         if (new == N_PPS) {
2615                 port->flags |= UPF_HARDPPS_CD;
2616                 serial8250_enable_ms(port);
2617         } else
2618                 port->flags &= ~UPF_HARDPPS_CD;
2619 }
2620
2621
2622 void serial8250_do_pm(struct uart_port *port, unsigned int state,
2623                       unsigned int oldstate)
2624 {
2625         struct uart_8250_port *p = up_to_u8250p(port);
2626
2627         serial8250_set_sleep(p, state != 0);
2628 }
2629 EXPORT_SYMBOL(serial8250_do_pm);
2630
2631 static void
2632 serial8250_pm(struct uart_port *port, unsigned int state,
2633               unsigned int oldstate)
2634 {
2635         if (port->pm)
2636                 port->pm(port, state, oldstate);
2637         else
2638                 serial8250_do_pm(port, state, oldstate);
2639 }
2640
2641 static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2642 {
2643         if (pt->port.iotype == UPIO_AU)
2644                 return 0x1000;
2645         if (is_omap1_8250(pt))
2646                 return 0x16 << pt->port.regshift;
2647
2648         return 8 << pt->port.regshift;
2649 }
2650
2651 /*
2652  * Resource handling.
2653  */
2654 static int serial8250_request_std_resource(struct uart_8250_port *up)
2655 {
2656         unsigned int size = serial8250_port_size(up);
2657         struct uart_port *port = &up->port;
2658         int ret = 0;
2659
2660         switch (port->iotype) {
2661         case UPIO_AU:
2662         case UPIO_TSI:
2663         case UPIO_MEM32:
2664         case UPIO_MEM:
2665                 if (!port->mapbase)
2666                         break;
2667
2668                 if (!request_mem_region(port->mapbase, size, "serial")) {
2669                         ret = -EBUSY;
2670                         break;
2671                 }
2672
2673                 if (port->flags & UPF_IOREMAP) {
2674                         port->membase = ioremap_nocache(port->mapbase, size);
2675                         if (!port->membase) {
2676                                 release_mem_region(port->mapbase, size);
2677                                 ret = -ENOMEM;
2678                         }
2679                 }
2680                 break;
2681
2682         case UPIO_HUB6:
2683         case UPIO_PORT:
2684                 if (!request_region(port->iobase, size, "serial"))
2685                         ret = -EBUSY;
2686                 break;
2687         }
2688         return ret;
2689 }
2690
2691 static void serial8250_release_std_resource(struct uart_8250_port *up)
2692 {
2693         unsigned int size = serial8250_port_size(up);
2694         struct uart_port *port = &up->port;
2695
2696         switch (port->iotype) {
2697         case UPIO_AU:
2698         case UPIO_TSI:
2699         case UPIO_MEM32:
2700         case UPIO_MEM:
2701                 if (!port->mapbase)
2702                         break;
2703
2704                 if (port->flags & UPF_IOREMAP) {
2705                         iounmap(port->membase);
2706                         port->membase = NULL;
2707                 }
2708
2709                 release_mem_region(port->mapbase, size);
2710                 break;
2711
2712         case UPIO_HUB6:
2713         case UPIO_PORT:
2714                 release_region(port->iobase, size);
2715                 break;
2716         }
2717 }
2718
2719 static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2720 {
2721         unsigned long start = UART_RSA_BASE << up->port.regshift;
2722         unsigned int size = 8 << up->port.regshift;
2723         struct uart_port *port = &up->port;
2724         int ret = -EINVAL;
2725
2726         switch (port->iotype) {
2727         case UPIO_HUB6:
2728         case UPIO_PORT:
2729                 start += port->iobase;
2730                 if (request_region(start, size, "serial-rsa"))
2731                         ret = 0;
2732                 else
2733                         ret = -EBUSY;
2734                 break;
2735         }
2736
2737         return ret;
2738 }
2739
2740 static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2741 {
2742         unsigned long offset = UART_RSA_BASE << up->port.regshift;
2743         unsigned int size = 8 << up->port.regshift;
2744         struct uart_port *port = &up->port;
2745
2746         switch (port->iotype) {
2747         case UPIO_HUB6:
2748         case UPIO_PORT:
2749                 release_region(port->iobase + offset, size);
2750                 break;
2751         }
2752 }
2753
2754 static void serial8250_release_port(struct uart_port *port)
2755 {
2756         struct uart_8250_port *up = up_to_u8250p(port);
2757
2758         serial8250_release_std_resource(up);
2759         if (port->type == PORT_RSA)
2760                 serial8250_release_rsa_resource(up);
2761 }
2762
2763 static int serial8250_request_port(struct uart_port *port)
2764 {
2765         struct uart_8250_port *up = up_to_u8250p(port);
2766         int ret;
2767
2768         if (port->type == PORT_8250_CIR)
2769                 return -ENODEV;
2770
2771         ret = serial8250_request_std_resource(up);
2772         if (ret == 0 && port->type == PORT_RSA) {
2773                 ret = serial8250_request_rsa_resource(up);
2774                 if (ret < 0)
2775                         serial8250_release_std_resource(up);
2776         }
2777
2778         return ret;
2779 }
2780
2781 static int fcr_get_rxtrig_bytes(struct uart_8250_port *up)
2782 {
2783         const struct serial8250_config *conf_type = &uart_config[up->port.type];
2784         unsigned char bytes;
2785
2786         bytes = conf_type->rxtrig_bytes[UART_FCR_R_TRIG_BITS(up->fcr)];
2787
2788         return bytes ? bytes : -EOPNOTSUPP;
2789 }
2790
2791 static int bytes_to_fcr_rxtrig(struct uart_8250_port *up, unsigned char bytes)
2792 {
2793         const struct serial8250_config *conf_type = &uart_config[up->port.type];
2794         int i;
2795
2796         if (!conf_type->rxtrig_bytes[UART_FCR_R_TRIG_BITS(UART_FCR_R_TRIG_00)])
2797                 return -EOPNOTSUPP;
2798
2799         for (i = 1; i < UART_FCR_R_TRIG_MAX_STATE; i++) {
2800                 if (bytes < conf_type->rxtrig_bytes[i])
2801                         /* Use the nearest lower value */
2802                         return (--i) << UART_FCR_R_TRIG_SHIFT;
2803         }
2804
2805         return UART_FCR_R_TRIG_11;
2806 }
2807
2808 static int do_get_rxtrig(struct tty_port *port)
2809 {
2810         struct uart_state *state = container_of(port, struct uart_state, port);
2811         struct uart_port *uport = state->uart_port;
2812         struct uart_8250_port *up =
2813                 container_of(uport, struct uart_8250_port, port);
2814
2815         if (!(up->capabilities & UART_CAP_FIFO) || uport->fifosize <= 1)
2816                 return -EINVAL;
2817
2818         return fcr_get_rxtrig_bytes(up);
2819 }
2820
2821 static int do_serial8250_get_rxtrig(struct tty_port *port)
2822 {
2823         int rxtrig_bytes;
2824
2825         mutex_lock(&port->mutex);
2826         rxtrig_bytes = do_get_rxtrig(port);
2827         mutex_unlock(&port->mutex);
2828
2829         return rxtrig_bytes;
2830 }
2831
2832 static ssize_t serial8250_get_attr_rx_trig_bytes(struct device *dev,
2833         struct device_attribute *attr, char *buf)
2834 {
2835         struct tty_port *port = dev_get_drvdata(dev);
2836         int rxtrig_bytes;
2837
2838         rxtrig_bytes = do_serial8250_get_rxtrig(port);
2839         if (rxtrig_bytes < 0)
2840                 return rxtrig_bytes;
2841
2842         return snprintf(buf, PAGE_SIZE, "%d\n", rxtrig_bytes);
2843 }
2844
2845 static int do_set_rxtrig(struct tty_port *port, unsigned char bytes)
2846 {
2847         struct uart_state *state = container_of(port, struct uart_state, port);
2848         struct uart_port *uport = state->uart_port;
2849         struct uart_8250_port *up =
2850                 container_of(uport, struct uart_8250_port, port);
2851         int rxtrig;
2852
2853         if (!(up->capabilities & UART_CAP_FIFO) || uport->fifosize <= 1 ||
2854             up->fifo_bug)
2855                 return -EINVAL;
2856
2857         rxtrig = bytes_to_fcr_rxtrig(up, bytes);
2858         if (rxtrig < 0)
2859                 return rxtrig;
2860
2861         serial8250_clear_fifos(up);
2862         up->fcr &= ~UART_FCR_TRIGGER_MASK;
2863         up->fcr |= (unsigned char)rxtrig;
2864         serial_out(up, UART_FCR, up->fcr);
2865         return 0;
2866 }
2867
2868 static int do_serial8250_set_rxtrig(struct tty_port *port, unsigned char bytes)
2869 {
2870         int ret;
2871
2872         mutex_lock(&port->mutex);
2873         ret = do_set_rxtrig(port, bytes);
2874         mutex_unlock(&port->mutex);
2875
2876         return ret;
2877 }
2878
2879 static ssize_t serial8250_set_attr_rx_trig_bytes(struct device *dev,
2880         struct device_attribute *attr, const char *buf, size_t count)
2881 {
2882         struct tty_port *port = dev_get_drvdata(dev);
2883         unsigned char bytes;
2884         int ret;
2885
2886         if (!count)
2887                 return -EINVAL;
2888
2889         ret = kstrtou8(buf, 10, &bytes);
2890         if (ret < 0)
2891                 return ret;
2892
2893         ret = do_serial8250_set_rxtrig(port, bytes);
2894         if (ret < 0)
2895                 return ret;
2896
2897         return count;
2898 }
2899
2900 static DEVICE_ATTR(rx_trig_bytes, S_IRUSR | S_IWUSR | S_IRGRP,
2901                    serial8250_get_attr_rx_trig_bytes,
2902                    serial8250_set_attr_rx_trig_bytes);
2903
2904 static struct attribute *serial8250_dev_attrs[] = {
2905         &dev_attr_rx_trig_bytes.attr,
2906         NULL,
2907         };
2908
2909 static struct attribute_group serial8250_dev_attr_group = {
2910         .attrs = serial8250_dev_attrs,
2911         };
2912
2913 static void register_dev_spec_attr_grp(struct uart_8250_port *up)
2914 {
2915         const struct serial8250_config *conf_type = &uart_config[up->port.type];
2916
2917         if (conf_type->rxtrig_bytes[0])
2918                 up->port.attr_group = &serial8250_dev_attr_group;
2919 }
2920
2921 static void serial8250_config_port(struct uart_port *port, int flags)
2922 {
2923         struct uart_8250_port *up = up_to_u8250p(port);
2924         int probeflags = PROBE_ANY;
2925         int ret;
2926
2927         if (port->type == PORT_8250_CIR)
2928                 return;
2929
2930         /*
2931          * Find the region that we can probe for.  This in turn
2932          * tells us whether we can probe for the type of port.
2933          */
2934         ret = serial8250_request_std_resource(up);
2935         if (ret < 0)
2936                 return;
2937
2938         ret = serial8250_request_rsa_resource(up);
2939         if (ret < 0)
2940                 probeflags &= ~PROBE_RSA;
2941
2942         if (port->iotype != up->cur_iotype)
2943                 set_io_from_upio(port);
2944
2945         if (flags & UART_CONFIG_TYPE)
2946                 autoconfig(up, probeflags);
2947
2948         /* if access method is AU, it is a 16550 with a quirk */
2949         if (port->type == PORT_16550A && port->iotype == UPIO_AU)
2950                 up->bugs |= UART_BUG_NOMSR;
2951
2952         /* HW bugs may trigger IRQ while IIR == NO_INT */
2953         if (port->type == PORT_TEGRA)
2954                 up->bugs |= UART_BUG_NOMSR;
2955
2956         if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2957                 autoconfig_irq(up);
2958
2959         if (port->type != PORT_RSA && probeflags & PROBE_RSA)
2960                 serial8250_release_rsa_resource(up);
2961         if (port->type == PORT_UNKNOWN)
2962                 serial8250_release_std_resource(up);
2963
2964         /* Fixme: probably not the best place for this */
2965         if ((port->type == PORT_XR17V35X) ||
2966            (port->type == PORT_XR17D15X))
2967                 port->handle_irq = exar_handle_irq;
2968
2969         register_dev_spec_attr_grp(up);
2970         up->fcr = uart_config[up->port.type].fcr;
2971 }
2972
2973 static int
2974 serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2975 {
2976         if (ser->irq >= nr_irqs || ser->irq < 0 ||
2977             ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2978             ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2979             ser->type == PORT_STARTECH)
2980                 return -EINVAL;
2981         return 0;
2982 }
2983
2984 static int serial8250_ioctl(struct uart_port *port, unsigned int cmd,
2985                            unsigned long arg)
2986 {
2987         struct uart_8250_port *up =
2988                 container_of(port, struct uart_8250_port, port);
2989         int ret;
2990         struct serial_rs485 rs485_config;
2991
2992         if (!up->rs485_config)
2993                 return -ENOIOCTLCMD;
2994
2995         switch (cmd) {
2996         case TIOCSRS485:
2997                 if (copy_from_user(&rs485_config, (void __user *)arg,
2998                                    sizeof(rs485_config)))
2999                         return -EFAULT;
3000
3001                 ret = up->rs485_config(up, &rs485_config);
3002                 if (ret)
3003                         return ret;
3004
3005                 memcpy(&up->rs485, &rs485_config, sizeof(rs485_config));
3006
3007                 return 0;
3008         case TIOCGRS485:
3009                 if (copy_to_user((void __user *)arg, &up->rs485,
3010                                  sizeof(up->rs485)))
3011                         return -EFAULT;
3012                 return 0;
3013         default:
3014                 break;
3015         }
3016
3017         return -ENOIOCTLCMD;
3018 }
3019
3020 static const char *
3021 serial8250_type(struct uart_port *port)
3022 {
3023         int type = port->type;
3024
3025         if (type >= ARRAY_SIZE(uart_config))
3026                 type = 0;
3027         return uart_config[type].name;
3028 }
3029
3030 static struct uart_ops serial8250_pops = {
3031         .tx_empty       = serial8250_tx_empty,
3032         .set_mctrl      = serial8250_set_mctrl,
3033         .get_mctrl      = serial8250_get_mctrl,
3034         .stop_tx        = serial8250_stop_tx,
3035         .start_tx       = serial8250_start_tx,
3036         .throttle       = serial8250_throttle,
3037         .unthrottle     = serial8250_unthrottle,
3038         .stop_rx        = serial8250_stop_rx,
3039         .enable_ms      = serial8250_enable_ms,
3040         .break_ctl      = serial8250_break_ctl,
3041         .startup        = serial8250_startup,
3042         .shutdown       = serial8250_shutdown,
3043         .set_termios    = serial8250_set_termios,
3044         .set_ldisc      = serial8250_set_ldisc,
3045         .pm             = serial8250_pm,
3046         .type           = serial8250_type,
3047         .release_port   = serial8250_release_port,
3048         .request_port   = serial8250_request_port,
3049         .config_port    = serial8250_config_port,
3050         .verify_port    = serial8250_verify_port,
3051         .ioctl          = serial8250_ioctl,
3052 #ifdef CONFIG_CONSOLE_POLL
3053         .poll_get_char = serial8250_get_poll_char,
3054         .poll_put_char = serial8250_put_poll_char,
3055 #endif
3056 };
3057
3058 static struct uart_8250_port serial8250_ports[UART_NR];
3059
3060 /**
3061  * serial8250_get_port - retrieve struct uart_8250_port
3062  * @line: serial line number
3063  *
3064  * This function retrieves struct uart_8250_port for the specific line.
3065  * This struct *must* *not* be used to perform a 8250 or serial core operation
3066  * which is not accessible otherwise. Its only purpose is to make the struct
3067  * accessible to the runtime-pm callbacks for context suspend/restore.
3068  * The lock assumption made here is none because runtime-pm suspend/resume
3069  * callbacks should not be invoked if there is any operation performed on the
3070  * port.
3071  */
3072 struct uart_8250_port *serial8250_get_port(int line)
3073 {
3074         return &serial8250_ports[line];
3075 }
3076 EXPORT_SYMBOL_GPL(serial8250_get_port);
3077
3078 static void (*serial8250_isa_config)(int port, struct uart_port *up,
3079         unsigned short *capabilities);
3080
3081 void serial8250_set_isa_configurator(
3082         void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
3083 {
3084         serial8250_isa_config = v;
3085 }
3086 EXPORT_SYMBOL(serial8250_set_isa_configurator);
3087
3088 static void __init serial8250_isa_init_ports(void)
3089 {
3090         struct uart_8250_port *up;
3091         static int first = 1;
3092         int i, irqflag = 0;
3093
3094         if (!first)
3095                 return;
3096         first = 0;
3097
3098         if (nr_uarts > UART_NR)
3099                 nr_uarts = UART_NR;
3100
3101         for (i = 0; i < nr_uarts; i++) {
3102                 struct uart_8250_port *up = &serial8250_ports[i];
3103                 struct uart_port *port = &up->port;
3104
3105                 port->line = i;
3106                 spin_lock_init(&port->lock);
3107
3108                 init_timer(&up->timer);
3109                 up->timer.function = serial8250_timeout;
3110                 up->cur_iotype = 0xFF;
3111
3112                 /*
3113                  * ALPHA_KLUDGE_MCR needs to be killed.
3114                  */
3115                 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
3116                 up->mcr_force = ALPHA_KLUDGE_MCR;
3117
3118                 port->ops = &serial8250_pops;
3119         }
3120
3121         if (share_irqs)
3122                 irqflag = IRQF_SHARED;
3123
3124         for (i = 0, up = serial8250_ports;
3125              i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
3126              i++, up++) {
3127                 struct uart_port *port = &up->port;
3128
3129                 port->iobase   = old_serial_port[i].port;
3130                 port->irq      = irq_canonicalize(old_serial_port[i].irq);
3131                 port->irqflags = old_serial_port[i].irqflags;
3132                 port->uartclk  = old_serial_port[i].baud_base * 16;
3133                 port->flags    = old_serial_port[i].flags;
3134                 port->hub6     = old_serial_port[i].hub6;
3135                 port->membase  = old_serial_port[i].iomem_base;
3136                 port->iotype   = old_serial_port[i].io_type;
3137                 port->regshift = old_serial_port[i].iomem_reg_shift;
3138                 set_io_from_upio(port);
3139                 port->irqflags |= irqflag;
3140                 if (serial8250_isa_config != NULL)
3141                         serial8250_isa_config(i, &up->port, &up->capabilities);
3142
3143         }
3144 }
3145
3146 static void
3147 serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
3148 {
3149         up->port.type = type;
3150         if (!up->port.fifosize)
3151                 up->port.fifosize = uart_config[type].fifo_size;
3152         if (!up->tx_loadsz)
3153                 up->tx_loadsz = uart_config[type].tx_loadsz;
3154         if (!up->capabilities)
3155                 up->capabilities = uart_config[type].flags;
3156 }
3157
3158 static void __init
3159 serial8250_register_ports(struct uart_driver *drv, struct device *dev)
3160 {
3161         int i;
3162
3163         for (i = 0; i < nr_uarts; i++) {
3164                 struct uart_8250_port *up = &serial8250_ports[i];
3165
3166                 if (up->port.dev)
3167                         continue;
3168
3169                 up->port.dev = dev;
3170
3171                 if (up->port.flags & UPF_FIXED_TYPE)
3172                         serial8250_init_fixed_type_port(up, up->port.type);
3173
3174                 uart_add_one_port(drv, &up->port);
3175         }
3176 }
3177
3178 #ifdef CONFIG_SERIAL_8250_CONSOLE
3179
3180 static void serial8250_console_putchar(struct uart_port *port, int ch)
3181 {
3182         struct uart_8250_port *up = up_to_u8250p(port);
3183
3184         wait_for_xmitr(up, UART_LSR_THRE);
3185         serial_port_out(port, UART_TX, ch);
3186 }
3187
3188 /*
3189  *      Print a string to the serial port trying not to disturb
3190  *      any possible real use of the port...
3191  *
3192  *      The console_lock must be held when we get here.
3193  */
3194 static void
3195 serial8250_console_write(struct console *co, const char *s, unsigned int count)
3196 {
3197         struct uart_8250_port *up = &serial8250_ports[co->index];
3198         struct uart_port *port = &up->port;
3199         unsigned long flags;
3200         unsigned int ier;
3201         int locked = 1;
3202
3203         touch_nmi_watchdog();
3204
3205         serial8250_rpm_get(up);
3206
3207         if (port->sysrq || oops_in_progress)
3208                 locked = spin_trylock_irqsave(&port->lock, flags);
3209         else
3210                 spin_lock_irqsave(&port->lock, flags);
3211
3212         /*
3213          *      First save the IER then disable the interrupts
3214          */
3215         ier = serial_port_in(port, UART_IER);
3216
3217         if (up->capabilities & UART_CAP_UUE)
3218                 serial_port_out(port, UART_IER, UART_IER_UUE);
3219         else
3220                 serial_port_out(port, UART_IER, 0);
3221
3222         uart_console_write(port, s, count, serial8250_console_putchar);
3223
3224         /*
3225          *      Finally, wait for transmitter to become empty
3226          *      and restore the IER
3227          */
3228         wait_for_xmitr(up, BOTH_EMPTY);
3229         serial_port_out(port, UART_IER, ier);
3230
3231         /*
3232          *      The receive handling will happen properly because the
3233          *      receive ready bit will still be set; it is not cleared
3234          *      on read.  However, modem control will not, we must
3235          *      call it if we have saved something in the saved flags
3236          *      while processing with interrupts off.
3237          */
3238         if (up->msr_saved_flags)
3239                 serial8250_modem_status(up);
3240
3241         if (locked)
3242                 spin_unlock_irqrestore(&port->lock, flags);
3243         serial8250_rpm_put(up);
3244 }
3245
3246 static int serial8250_console_setup(struct console *co, char *options)
3247 {
3248         struct uart_port *port;
3249         int baud = 9600;
3250         int bits = 8;
3251         int parity = 'n';
3252         int flow = 'n';
3253
3254         /*
3255          * Check whether an invalid uart number has been specified, and
3256          * if so, search for the first available port that does have
3257          * console support.
3258          */
3259         if (co->index >= nr_uarts)
3260                 co->index = 0;
3261         port = &serial8250_ports[co->index].port;
3262         if (!port->iobase && !port->membase)
3263                 return -ENODEV;
3264
3265         if (options)
3266                 uart_parse_options(options, &baud, &parity, &bits, &flow);
3267
3268         return uart_set_options(port, co, baud, parity, bits, flow);
3269 }
3270
3271 static int serial8250_console_early_setup(void)
3272 {
3273         return serial8250_find_port_for_earlycon();
3274 }
3275
3276 static struct console serial8250_console = {
3277         .name           = "ttyS",
3278         .write          = serial8250_console_write,
3279         .device         = uart_console_device,
3280         .setup          = serial8250_console_setup,
3281         .early_setup    = serial8250_console_early_setup,
3282         .flags          = CON_PRINTBUFFER | CON_ANYTIME,
3283         .index          = -1,
3284         .data           = &serial8250_reg,
3285 };
3286
3287 static int __init serial8250_console_init(void)
3288 {
3289         serial8250_isa_init_ports();
3290         register_console(&serial8250_console);
3291         return 0;
3292 }
3293 console_initcall(serial8250_console_init);
3294
3295 int serial8250_find_port(struct uart_port *p)
3296 {
3297         int line;
3298         struct uart_port *port;
3299
3300         for (line = 0; line < nr_uarts; line++) {
3301                 port = &serial8250_ports[line].port;
3302                 if (uart_match_port(p, port))
3303                         return line;
3304         }
3305         return -ENODEV;
3306 }
3307
3308 #define SERIAL8250_CONSOLE      &serial8250_console
3309 #else
3310 #define SERIAL8250_CONSOLE      NULL
3311 #endif
3312
3313 static struct uart_driver serial8250_reg = {
3314         .owner                  = THIS_MODULE,
3315         .driver_name            = "serial",
3316         .dev_name               = "ttyS",
3317         .major                  = TTY_MAJOR,
3318         .minor                  = 64,
3319         .cons                   = SERIAL8250_CONSOLE,
3320 };
3321
3322 /*
3323  * early_serial_setup - early registration for 8250 ports
3324  *
3325  * Setup an 8250 port structure prior to console initialisation.  Use
3326  * after console initialisation will cause undefined behaviour.
3327  */
3328 int __init early_serial_setup(struct uart_port *port)
3329 {
3330         struct uart_port *p;
3331
3332         if (port->line >= ARRAY_SIZE(serial8250_ports))
3333                 return -ENODEV;
3334
3335         serial8250_isa_init_ports();
3336         p = &serial8250_ports[port->line].port;
3337         p->iobase       = port->iobase;
3338         p->membase      = port->membase;
3339         p->irq          = port->irq;
3340         p->irqflags     = port->irqflags;
3341         p->uartclk      = port->uartclk;
3342         p->fifosize     = port->fifosize;
3343         p->regshift     = port->regshift;
3344         p->iotype       = port->iotype;
3345         p->flags        = port->flags;
3346         p->mapbase      = port->mapbase;
3347         p->private_data = port->private_data;
3348         p->type         = port->type;
3349         p->line         = port->line;
3350
3351         set_io_from_upio(p);
3352         if (port->serial_in)
3353                 p->serial_in = port->serial_in;
3354         if (port->serial_out)
3355                 p->serial_out = port->serial_out;
3356         if (port->handle_irq)
3357                 p->handle_irq = port->handle_irq;
3358         else
3359                 p->handle_irq = serial8250_default_handle_irq;
3360
3361         return 0;
3362 }
3363
3364 /**
3365  *      serial8250_suspend_port - suspend one serial port
3366  *      @line:  serial line number
3367  *
3368  *      Suspend one serial port.
3369  */
3370 void serial8250_suspend_port(int line)
3371 {
3372         uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
3373 }
3374
3375 /**
3376  *      serial8250_resume_port - resume one serial port
3377  *      @line:  serial line number
3378  *
3379  *      Resume one serial port.
3380  */
3381 void serial8250_resume_port(int line)
3382 {
3383         struct uart_8250_port *up = &serial8250_ports[line];
3384         struct uart_port *port = &up->port;
3385
3386         if (up->capabilities & UART_NATSEMI) {
3387                 /* Ensure it's still in high speed mode */
3388                 serial_port_out(port, UART_LCR, 0xE0);
3389
3390                 ns16550a_goto_highspeed(up);
3391
3392                 serial_port_out(port, UART_LCR, 0);
3393                 port->uartclk = 921600*16;
3394         }
3395         uart_resume_port(&serial8250_reg, port);
3396 }
3397
3398 /*
3399  * Register a set of serial devices attached to a platform device.  The
3400  * list is terminated with a zero flags entry, which means we expect
3401  * all entries to have at least UPF_BOOT_AUTOCONF set.
3402  */
3403 static int serial8250_probe(struct platform_device *dev)
3404 {
3405         struct plat_serial8250_port *p = dev_get_platdata(&dev->dev);
3406         struct uart_8250_port uart;
3407         int ret, i, irqflag = 0;
3408
3409         memset(&uart, 0, sizeof(uart));
3410
3411         if (share_irqs)
3412                 irqflag = IRQF_SHARED;
3413
3414         for (i = 0; p && p->flags != 0; p++, i++) {
3415                 uart.port.iobase        = p->iobase;
3416                 uart.port.membase       = p->membase;
3417                 uart.port.irq           = p->irq;
3418                 uart.port.irqflags      = p->irqflags;
3419                 uart.port.uartclk       = p->uartclk;
3420                 uart.port.regshift      = p->regshift;
3421                 uart.port.iotype        = p->iotype;
3422                 uart.port.flags         = p->flags;
3423                 uart.port.mapbase       = p->mapbase;
3424                 uart.port.hub6          = p->hub6;
3425                 uart.port.private_data  = p->private_data;
3426                 uart.port.type          = p->type;
3427                 uart.port.serial_in     = p->serial_in;
3428                 uart.port.serial_out    = p->serial_out;
3429                 uart.port.handle_irq    = p->handle_irq;
3430                 uart.port.handle_break  = p->handle_break;
3431                 uart.port.set_termios   = p->set_termios;
3432                 uart.port.pm            = p->pm;
3433                 uart.port.dev           = &dev->dev;
3434                 uart.port.irqflags      |= irqflag;
3435                 ret = serial8250_register_8250_port(&uart);
3436                 if (ret < 0) {
3437                         dev_err(&dev->dev, "unable to register port at index %d "
3438                                 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3439                                 p->iobase, (unsigned long long)p->mapbase,
3440                                 p->irq, ret);
3441                 }
3442         }
3443         return 0;
3444 }
3445
3446 /*
3447  * Remove serial ports registered against a platform device.
3448  */
3449 static int serial8250_remove(struct platform_device *dev)
3450 {
3451         int i;
3452
3453         for (i = 0; i < nr_uarts; i++) {
3454                 struct uart_8250_port *up = &serial8250_ports[i];
3455
3456                 if (up->port.dev == &dev->dev)
3457                         serial8250_unregister_port(i);
3458         }
3459         return 0;
3460 }
3461
3462 static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
3463 {
3464         int i;
3465
3466         for (i = 0; i < UART_NR; i++) {
3467                 struct uart_8250_port *up = &serial8250_ports[i];
3468
3469                 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
3470                         uart_suspend_port(&serial8250_reg, &up->port);
3471         }
3472
3473         return 0;
3474 }
3475
3476 static int serial8250_resume(struct platform_device *dev)
3477 {
3478         int i;
3479
3480         for (i = 0; i < UART_NR; i++) {
3481                 struct uart_8250_port *up = &serial8250_ports[i];
3482
3483                 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
3484                         serial8250_resume_port(i);
3485         }
3486
3487         return 0;
3488 }
3489
3490 static struct platform_driver serial8250_isa_driver = {
3491         .probe          = serial8250_probe,
3492         .remove         = serial8250_remove,
3493         .suspend        = serial8250_suspend,
3494         .resume         = serial8250_resume,
3495         .driver         = {
3496                 .name   = "serial8250",
3497                 .owner  = THIS_MODULE,
3498         },
3499 };
3500
3501 /*
3502  * This "device" covers _all_ ISA 8250-compatible serial devices listed
3503  * in the table in include/asm/serial.h
3504  */
3505 static struct platform_device *serial8250_isa_devs;
3506
3507 /*
3508  * serial8250_register_8250_port and serial8250_unregister_port allows for
3509  * 16x50 serial ports to be configured at run-time, to support PCMCIA
3510  * modems and PCI multiport cards.
3511  */
3512 static DEFINE_MUTEX(serial_mutex);
3513
3514 static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3515 {
3516         int i;
3517
3518         /*
3519          * First, find a port entry which matches.
3520          */
3521         for (i = 0; i < nr_uarts; i++)
3522                 if (uart_match_port(&serial8250_ports[i].port, port))
3523                         return &serial8250_ports[i];
3524
3525         /* try line number first if still available */
3526         i = port->line;
3527         if (i < nr_uarts && serial8250_ports[i].port.type == PORT_UNKNOWN &&
3528                         serial8250_ports[i].port.iobase == 0)
3529                 return &serial8250_ports[i];
3530         /*
3531          * We didn't find a matching entry, so look for the first
3532          * free entry.  We look for one which hasn't been previously
3533          * used (indicated by zero iobase).
3534          */
3535         for (i = 0; i < nr_uarts; i++)
3536                 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3537                     serial8250_ports[i].port.iobase == 0)
3538                         return &serial8250_ports[i];
3539
3540         /*
3541          * That also failed.  Last resort is to find any entry which
3542          * doesn't have a real port associated with it.
3543          */
3544         for (i = 0; i < nr_uarts; i++)
3545                 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3546                         return &serial8250_ports[i];
3547
3548         return NULL;
3549 }
3550
3551 /**
3552  *      serial8250_register_8250_port - register a serial port
3553  *      @up: serial port template
3554  *
3555  *      Configure the serial port specified by the request. If the
3556  *      port exists and is in use, it is hung up and unregistered
3557  *      first.
3558  *
3559  *      The port is then probed and if necessary the IRQ is autodetected
3560  *      If this fails an error is returned.
3561  *
3562  *      On success the port is ready to use and the line number is returned.
3563  */
3564 int serial8250_register_8250_port(struct uart_8250_port *up)
3565 {
3566         struct uart_8250_port *uart;
3567         int ret = -ENOSPC;
3568
3569         if (up->port.uartclk == 0)
3570                 return -EINVAL;
3571
3572         mutex_lock(&serial_mutex);
3573
3574         uart = serial8250_find_match_or_unused(&up->port);
3575         if (uart && uart->port.type != PORT_8250_CIR) {
3576                 if (uart->port.dev)
3577                         uart_remove_one_port(&serial8250_reg, &uart->port);
3578
3579                 uart->port.iobase       = up->port.iobase;
3580                 uart->port.membase      = up->port.membase;
3581                 uart->port.irq          = up->port.irq;
3582                 uart->port.irqflags     = up->port.irqflags;
3583                 uart->port.uartclk      = up->port.uartclk;
3584                 uart->port.fifosize     = up->port.fifosize;
3585                 uart->port.regshift     = up->port.regshift;
3586                 uart->port.iotype       = up->port.iotype;
3587                 uart->port.flags        = up->port.flags | UPF_BOOT_AUTOCONF;
3588                 uart->bugs              = up->bugs;
3589                 uart->port.mapbase      = up->port.mapbase;
3590                 uart->port.private_data = up->port.private_data;
3591                 uart->port.fifosize     = up->port.fifosize;
3592                 uart->tx_loadsz         = up->tx_loadsz;
3593                 uart->capabilities      = up->capabilities;
3594                 uart->rs485_config      = up->rs485_config;
3595                 uart->rs485             = up->rs485;
3596                 uart->port.throttle     = up->port.throttle;
3597                 uart->port.unthrottle   = up->port.unthrottle;
3598
3599                 /* Take tx_loadsz from fifosize if it wasn't set separately */
3600                 if (uart->port.fifosize && !uart->tx_loadsz)
3601                         uart->tx_loadsz = uart->port.fifosize;
3602
3603                 if (up->port.dev)
3604                         uart->port.dev = up->port.dev;
3605
3606                 if (up->port.flags & UPF_FIXED_TYPE)
3607                         serial8250_init_fixed_type_port(uart, up->port.type);
3608
3609                 set_io_from_upio(&uart->port);
3610                 /* Possibly override default I/O functions.  */
3611                 if (up->port.serial_in)
3612                         uart->port.serial_in = up->port.serial_in;
3613                 if (up->port.serial_out)
3614                         uart->port.serial_out = up->port.serial_out;
3615                 if (up->port.handle_irq)
3616                         uart->port.handle_irq = up->port.handle_irq;
3617                 /*  Possibly override set_termios call */
3618                 if (up->port.set_termios)
3619                         uart->port.set_termios = up->port.set_termios;
3620                 if (up->port.startup)
3621                         uart->port.startup = up->port.startup;
3622                 if (up->port.shutdown)
3623                         uart->port.shutdown = up->port.shutdown;
3624                 if (up->port.pm)
3625                         uart->port.pm = up->port.pm;
3626                 if (up->port.handle_break)
3627                         uart->port.handle_break = up->port.handle_break;
3628                 if (up->dl_read)
3629                         uart->dl_read = up->dl_read;
3630                 if (up->dl_write)
3631                         uart->dl_write = up->dl_write;
3632                 if (up->dma) {
3633                         uart->dma = up->dma;
3634                         if (!uart->dma->tx_dma)
3635                                 uart->dma->tx_dma = serial8250_tx_dma;
3636                         if (!uart->dma->rx_dma)
3637                                 uart->dma->rx_dma = serial8250_rx_dma;
3638                 }
3639
3640                 if (serial8250_isa_config != NULL)
3641                         serial8250_isa_config(0, &uart->port,
3642                                         &uart->capabilities);
3643
3644                 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3645                 if (ret == 0)
3646                         ret = uart->port.line;
3647         }
3648         mutex_unlock(&serial_mutex);
3649
3650         return ret;
3651 }
3652 EXPORT_SYMBOL(serial8250_register_8250_port);
3653
3654 /**
3655  *      serial8250_unregister_port - remove a 16x50 serial port at runtime
3656  *      @line: serial line number
3657  *
3658  *      Remove one serial port.  This may not be called from interrupt
3659  *      context.  We hand the port back to the our control.
3660  */
3661 void serial8250_unregister_port(int line)
3662 {
3663         struct uart_8250_port *uart = &serial8250_ports[line];
3664
3665         mutex_lock(&serial_mutex);
3666         uart_remove_one_port(&serial8250_reg, &uart->port);
3667         if (serial8250_isa_devs) {
3668                 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3669                 uart->port.type = PORT_UNKNOWN;
3670                 uart->port.dev = &serial8250_isa_devs->dev;
3671                 uart->capabilities = uart_config[uart->port.type].flags;
3672                 uart_add_one_port(&serial8250_reg, &uart->port);
3673         } else {
3674                 uart->port.dev = NULL;
3675         }
3676         mutex_unlock(&serial_mutex);
3677 }
3678 EXPORT_SYMBOL(serial8250_unregister_port);
3679
3680 static int __init serial8250_init(void)
3681 {
3682         int ret;
3683
3684         serial8250_isa_init_ports();
3685
3686         printk(KERN_INFO "Serial: 8250/16550 driver, "
3687                 "%d ports, IRQ sharing %sabled\n", nr_uarts,
3688                 share_irqs ? "en" : "dis");
3689
3690 #ifdef CONFIG_SPARC
3691         ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3692 #else
3693         serial8250_reg.nr = UART_NR;
3694         ret = uart_register_driver(&serial8250_reg);
3695 #endif
3696         if (ret)
3697                 goto out;
3698
3699         ret = serial8250_pnp_init();
3700         if (ret)
3701                 goto unreg_uart_drv;
3702
3703         serial8250_isa_devs = platform_device_alloc("serial8250",
3704                                                     PLAT8250_DEV_LEGACY);
3705         if (!serial8250_isa_devs) {
3706                 ret = -ENOMEM;
3707                 goto unreg_pnp;
3708         }
3709
3710         ret = platform_device_add(serial8250_isa_devs);
3711         if (ret)
3712                 goto put_dev;
3713
3714         serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3715
3716         ret = platform_driver_register(&serial8250_isa_driver);
3717         if (ret == 0)
3718                 goto out;
3719
3720         platform_device_del(serial8250_isa_devs);
3721 put_dev:
3722         platform_device_put(serial8250_isa_devs);
3723 unreg_pnp:
3724         serial8250_pnp_exit();
3725 unreg_uart_drv:
3726 #ifdef CONFIG_SPARC
3727         sunserial_unregister_minors(&serial8250_reg, UART_NR);
3728 #else
3729         uart_unregister_driver(&serial8250_reg);
3730 #endif
3731 out:
3732         return ret;
3733 }
3734
3735 static void __exit serial8250_exit(void)
3736 {
3737         struct platform_device *isa_dev = serial8250_isa_devs;
3738
3739         /*
3740          * This tells serial8250_unregister_port() not to re-register
3741          * the ports (thereby making serial8250_isa_driver permanently
3742          * in use.)
3743          */
3744         serial8250_isa_devs = NULL;
3745
3746         platform_driver_unregister(&serial8250_isa_driver);
3747         platform_device_unregister(isa_dev);
3748
3749         serial8250_pnp_exit();
3750
3751 #ifdef CONFIG_SPARC
3752         sunserial_unregister_minors(&serial8250_reg, UART_NR);
3753 #else
3754         uart_unregister_driver(&serial8250_reg);
3755 #endif
3756 }
3757
3758 module_init(serial8250_init);
3759 module_exit(serial8250_exit);
3760
3761 EXPORT_SYMBOL(serial8250_suspend_port);
3762 EXPORT_SYMBOL(serial8250_resume_port);
3763
3764 MODULE_LICENSE("GPL");
3765 MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
3766
3767 module_param(share_irqs, uint, 0644);
3768 MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3769         " (unsafe)");
3770
3771 module_param(nr_uarts, uint, 0644);
3772 MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3773
3774 module_param(skip_txen_test, uint, 0644);
3775 MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3776
3777 #ifdef CONFIG_SERIAL_8250_RSA
3778 module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3779 MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3780 #endif
3781 MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);
3782
3783 #ifdef CONFIG_SERIAL_8250_DEPRECATED_OPTIONS
3784 #ifndef MODULE
3785 /* This module was renamed to 8250_core in 3.7.  Keep the old "8250" name
3786  * working as well for the module options so we don't break people.  We
3787  * need to keep the names identical and the convenient macros will happily
3788  * refuse to let us do that by failing the build with redefinition errors
3789  * of global variables.  So we stick them inside a dummy function to avoid
3790  * those conflicts.  The options still get parsed, and the redefined
3791  * MODULE_PARAM_PREFIX lets us keep the "8250." syntax alive.
3792  *
3793  * This is hacky.  I'm sorry.
3794  */
3795 static void __used s8250_options(void)
3796 {
3797 #undef MODULE_PARAM_PREFIX
3798 #define MODULE_PARAM_PREFIX "8250_core."
3799
3800         module_param_cb(share_irqs, &param_ops_uint, &share_irqs, 0644);
3801         module_param_cb(nr_uarts, &param_ops_uint, &nr_uarts, 0644);
3802         module_param_cb(skip_txen_test, &param_ops_uint, &skip_txen_test, 0644);
3803 #ifdef CONFIG_SERIAL_8250_RSA
3804         __module_param_call(MODULE_PARAM_PREFIX, probe_rsa,
3805                 &param_array_ops, .arr = &__param_arr_probe_rsa,
3806                 0444, -1, 0);
3807 #endif
3808 }
3809 #else
3810 MODULE_ALIAS("8250_core");
3811 #endif
3812 #endif