1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/acpi.h>
18#include <linux/module.h>
19#include <linux/moduleparam.h>
20#include <linux/ioport.h>
21#include <linux/init.h>
22#include <linux/console.h>
23#include <linux/sysrq.h>
24#include <linux/delay.h>
25#include <linux/platform_device.h>
26#include <linux/tty.h>
27#include <linux/ratelimit.h>
28#include <linux/tty_flip.h>
29#include <linux/serial.h>
30#include <linux/serial_8250.h>
31#include <linux/nmi.h>
32#include <linux/mutex.h>
33#include <linux/slab.h>
34#include <linux/uaccess.h>
35#include <linux/pm_runtime.h>
36#include <linux/io.h>
37#ifdef CONFIG_SPARC
38#include <linux/sunserialcore.h>
39#endif
40
41#include <asm/irq.h>
42
43#include "8250.h"
44
45
46
47
48
49
50static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
51
52static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
53
54static struct uart_driver serial8250_reg;
55
56static unsigned int skip_txen_test;
57
58#define PASS_LIMIT 512
59
60#include <asm/serial.h>
61
62
63
64
65
66#ifndef SERIAL_PORT_DFNS
67#define SERIAL_PORT_DFNS
68#endif
69
70static const struct old_serial_port old_serial_port[] = {
71 SERIAL_PORT_DFNS
72};
73
74#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
75
76#ifdef CONFIG_SERIAL_8250_RSA
77
78#define PORT_RSA_MAX 4
79static unsigned long probe_rsa[PORT_RSA_MAX];
80static unsigned int probe_rsa_count;
81#endif
82
83struct irq_info {
84 struct hlist_node node;
85 int irq;
86 spinlock_t lock;
87 struct list_head *head;
88};
89
90#define NR_IRQ_HASH 32
91static struct hlist_head irq_lists[NR_IRQ_HASH];
92static DEFINE_MUTEX(hash_mutex);
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
109{
110 struct irq_info *i = dev_id;
111 struct list_head *l, *end = NULL;
112 int pass_counter = 0, handled = 0;
113
114 pr_debug("%s(%d): start\n", __func__, irq);
115
116 spin_lock(&i->lock);
117
118 l = i->head;
119 do {
120 struct uart_8250_port *up;
121 struct uart_port *port;
122
123 up = list_entry(l, struct uart_8250_port, list);
124 port = &up->port;
125
126 if (port->handle_irq(port)) {
127 handled = 1;
128 end = NULL;
129 } else if (end == NULL)
130 end = l;
131
132 l = l->next;
133
134 if (l == i->head && pass_counter++ > PASS_LIMIT)
135 break;
136 } while (l != end);
137
138 spin_unlock(&i->lock);
139
140 pr_debug("%s(%d): end\n", __func__, irq);
141
142 return IRQ_RETVAL(handled);
143}
144
145
146
147
148
149
150
151
152static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
153{
154 spin_lock_irq(&i->lock);
155
156 if (!list_empty(i->head)) {
157 if (i->head == &up->list)
158 i->head = i->head->next;
159 list_del(&up->list);
160 } else {
161 BUG_ON(i->head != &up->list);
162 i->head = NULL;
163 }
164 spin_unlock_irq(&i->lock);
165
166 if (i->head == NULL) {
167 hlist_del(&i->node);
168 kfree(i);
169 }
170}
171
172static int serial_link_irq_chain(struct uart_8250_port *up)
173{
174 struct hlist_head *h;
175 struct hlist_node *n;
176 struct irq_info *i;
177 int ret;
178
179 mutex_lock(&hash_mutex);
180
181 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
182
183 hlist_for_each(n, h) {
184 i = hlist_entry(n, struct irq_info, node);
185 if (i->irq == up->port.irq)
186 break;
187 }
188
189 if (n == NULL) {
190 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
191 if (i == NULL) {
192 mutex_unlock(&hash_mutex);
193 return -ENOMEM;
194 }
195 spin_lock_init(&i->lock);
196 i->irq = up->port.irq;
197 hlist_add_head(&i->node, h);
198 }
199 mutex_unlock(&hash_mutex);
200
201 spin_lock_irq(&i->lock);
202
203 if (i->head) {
204 list_add(&up->list, i->head);
205 spin_unlock_irq(&i->lock);
206
207 ret = 0;
208 } else {
209 INIT_LIST_HEAD(&up->list);
210 i->head = &up->list;
211 spin_unlock_irq(&i->lock);
212 ret = request_irq(up->port.irq, serial8250_interrupt,
213 up->port.irqflags, up->port.name, i);
214 if (ret < 0)
215 serial_do_unlink(i, up);
216 }
217
218 return ret;
219}
220
221static void serial_unlink_irq_chain(struct uart_8250_port *up)
222{
223
224
225
226
227 struct irq_info *i;
228 struct hlist_node *n;
229 struct hlist_head *h;
230
231 mutex_lock(&hash_mutex);
232
233 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
234
235 hlist_for_each(n, h) {
236 i = hlist_entry(n, struct irq_info, node);
237 if (i->irq == up->port.irq)
238 break;
239 }
240
241 BUG_ON(n == NULL);
242 BUG_ON(i->head == NULL);
243
244 if (list_empty(i->head))
245 free_irq(up->port.irq, i);
246
247 serial_do_unlink(i, up);
248 mutex_unlock(&hash_mutex);
249}
250
251
252
253
254
255
256
257static void serial8250_timeout(struct timer_list *t)
258{
259 struct uart_8250_port *up = from_timer(up, t, timer);
260
261 up->port.handle_irq(&up->port);
262 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
263}
264
265static void serial8250_backup_timeout(struct timer_list *t)
266{
267 struct uart_8250_port *up = from_timer(up, t, timer);
268 unsigned int iir, ier = 0, lsr;
269 unsigned long flags;
270
271 spin_lock_irqsave(&up->port.lock, flags);
272
273
274
275
276
277 if (up->port.irq) {
278 ier = serial_in(up, UART_IER);
279 serial_out(up, UART_IER, 0);
280 }
281
282 iir = serial_in(up, UART_IIR);
283
284
285
286
287
288
289
290 lsr = serial_in(up, UART_LSR);
291 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
292 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
293 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
294 (lsr & UART_LSR_THRE)) {
295 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
296 iir |= UART_IIR_THRI;
297 }
298
299 if (!(iir & UART_IIR_NO_INT))
300 serial8250_tx_chars(up);
301
302 if (up->port.irq)
303 serial_out(up, UART_IER, ier);
304
305 spin_unlock_irqrestore(&up->port.lock, flags);
306
307
308 mod_timer(&up->timer,
309 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
310}
311
312static int univ8250_setup_irq(struct uart_8250_port *up)
313{
314 struct uart_port *port = &up->port;
315 int retval = 0;
316
317
318
319
320
321 if (up->bugs & UART_BUG_THRE) {
322 pr_debug("%s - using backup timer\n", port->name);
323
324 up->timer.function = serial8250_backup_timeout;
325 mod_timer(&up->timer, jiffies +
326 uart_poll_timeout(port) + HZ / 5);
327 }
328
329
330
331
332
333
334 if (!port->irq) {
335 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
336 } else
337 retval = serial_link_irq_chain(up);
338
339 return retval;
340}
341
342static void univ8250_release_irq(struct uart_8250_port *up)
343{
344 struct uart_port *port = &up->port;
345
346 del_timer_sync(&up->timer);
347 up->timer.function = serial8250_timeout;
348 if (port->irq)
349 serial_unlink_irq_chain(up);
350}
351
352#ifdef CONFIG_SERIAL_8250_RSA
353static int serial8250_request_rsa_resource(struct uart_8250_port *up)
354{
355 unsigned long start = UART_RSA_BASE << up->port.regshift;
356 unsigned int size = 8 << up->port.regshift;
357 struct uart_port *port = &up->port;
358 int ret = -EINVAL;
359
360 switch (port->iotype) {
361 case UPIO_HUB6:
362 case UPIO_PORT:
363 start += port->iobase;
364 if (request_region(start, size, "serial-rsa"))
365 ret = 0;
366 else
367 ret = -EBUSY;
368 break;
369 }
370
371 return ret;
372}
373
374static void serial8250_release_rsa_resource(struct uart_8250_port *up)
375{
376 unsigned long offset = UART_RSA_BASE << up->port.regshift;
377 unsigned int size = 8 << up->port.regshift;
378 struct uart_port *port = &up->port;
379
380 switch (port->iotype) {
381 case UPIO_HUB6:
382 case UPIO_PORT:
383 release_region(port->iobase + offset, size);
384 break;
385 }
386}
387#endif
388
389static const struct uart_ops *base_ops;
390static struct uart_ops univ8250_port_ops;
391
392static const struct uart_8250_ops univ8250_driver_ops = {
393 .setup_irq = univ8250_setup_irq,
394 .release_irq = univ8250_release_irq,
395};
396
397static struct uart_8250_port serial8250_ports[UART_NR];
398
399
400
401
402
403
404
405
406
407
408
409
410
411struct uart_8250_port *serial8250_get_port(int line)
412{
413 return &serial8250_ports[line];
414}
415EXPORT_SYMBOL_GPL(serial8250_get_port);
416
417static void (*serial8250_isa_config)(int port, struct uart_port *up,
418 u32 *capabilities);
419
420void serial8250_set_isa_configurator(
421 void (*v)(int port, struct uart_port *up, u32 *capabilities))
422{
423 serial8250_isa_config = v;
424}
425EXPORT_SYMBOL(serial8250_set_isa_configurator);
426
427#ifdef CONFIG_SERIAL_8250_RSA
428
429static void univ8250_config_port(struct uart_port *port, int flags)
430{
431 struct uart_8250_port *up = up_to_u8250p(port);
432
433 up->probe &= ~UART_PROBE_RSA;
434 if (port->type == PORT_RSA) {
435 if (serial8250_request_rsa_resource(up) == 0)
436 up->probe |= UART_PROBE_RSA;
437 } else if (flags & UART_CONFIG_TYPE) {
438 int i;
439
440 for (i = 0; i < probe_rsa_count; i++) {
441 if (probe_rsa[i] == up->port.iobase) {
442 if (serial8250_request_rsa_resource(up) == 0)
443 up->probe |= UART_PROBE_RSA;
444 break;
445 }
446 }
447 }
448
449 base_ops->config_port(port, flags);
450
451 if (port->type != PORT_RSA && up->probe & UART_PROBE_RSA)
452 serial8250_release_rsa_resource(up);
453}
454
455static int univ8250_request_port(struct uart_port *port)
456{
457 struct uart_8250_port *up = up_to_u8250p(port);
458 int ret;
459
460 ret = base_ops->request_port(port);
461 if (ret == 0 && port->type == PORT_RSA) {
462 ret = serial8250_request_rsa_resource(up);
463 if (ret < 0)
464 base_ops->release_port(port);
465 }
466
467 return ret;
468}
469
470static void univ8250_release_port(struct uart_port *port)
471{
472 struct uart_8250_port *up = up_to_u8250p(port);
473
474 if (port->type == PORT_RSA)
475 serial8250_release_rsa_resource(up);
476 base_ops->release_port(port);
477}
478
479static void univ8250_rsa_support(struct uart_ops *ops)
480{
481 ops->config_port = univ8250_config_port;
482 ops->request_port = univ8250_request_port;
483 ops->release_port = univ8250_release_port;
484}
485
486#else
487#define univ8250_rsa_support(x) do { } while (0)
488#endif
489
490static inline void serial8250_apply_quirks(struct uart_8250_port *up)
491{
492 up->port.quirks |= skip_txen_test ? UPQ_NO_TXEN_TEST : 0;
493}
494
495static void __init serial8250_isa_init_ports(void)
496{
497 struct uart_8250_port *up;
498 static int first = 1;
499 int i, irqflag = 0;
500
501 if (!first)
502 return;
503 first = 0;
504
505 if (nr_uarts > UART_NR)
506 nr_uarts = UART_NR;
507
508 for (i = 0; i < nr_uarts; i++) {
509 struct uart_8250_port *up = &serial8250_ports[i];
510 struct uart_port *port = &up->port;
511
512 port->line = i;
513 serial8250_init_port(up);
514 if (!base_ops)
515 base_ops = port->ops;
516 port->ops = &univ8250_port_ops;
517
518 timer_setup(&up->timer, serial8250_timeout, 0);
519
520 up->ops = &univ8250_driver_ops;
521
522
523
524
525 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
526 up->mcr_force = ALPHA_KLUDGE_MCR;
527 }
528
529
530 univ8250_port_ops = *base_ops;
531 univ8250_rsa_support(&univ8250_port_ops);
532
533 if (share_irqs)
534 irqflag = IRQF_SHARED;
535
536 for (i = 0, up = serial8250_ports;
537 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
538 i++, up++) {
539 struct uart_port *port = &up->port;
540
541 port->iobase = old_serial_port[i].port;
542 port->irq = irq_canonicalize(old_serial_port[i].irq);
543 port->irqflags = 0;
544 port->uartclk = old_serial_port[i].baud_base * 16;
545 port->flags = old_serial_port[i].flags;
546 port->hub6 = 0;
547 port->membase = old_serial_port[i].iomem_base;
548 port->iotype = old_serial_port[i].io_type;
549 port->regshift = old_serial_port[i].iomem_reg_shift;
550 serial8250_set_defaults(up);
551
552 port->irqflags |= irqflag;
553 if (serial8250_isa_config != NULL)
554 serial8250_isa_config(i, &up->port, &up->capabilities);
555 }
556}
557
558static void __init
559serial8250_register_ports(struct uart_driver *drv, struct device *dev)
560{
561 int i;
562
563 for (i = 0; i < nr_uarts; i++) {
564 struct uart_8250_port *up = &serial8250_ports[i];
565
566 if (up->port.type == PORT_8250_CIR)
567 continue;
568
569 if (up->port.dev)
570 continue;
571
572 up->port.dev = dev;
573
574 serial8250_apply_quirks(up);
575 uart_add_one_port(drv, &up->port);
576 }
577}
578
579#ifdef CONFIG_SERIAL_8250_CONSOLE
580
581static void univ8250_console_write(struct console *co, const char *s,
582 unsigned int count)
583{
584 struct uart_8250_port *up = &serial8250_ports[co->index];
585
586 serial8250_console_write(up, s, count);
587}
588
589static int univ8250_console_setup(struct console *co, char *options)
590{
591 struct uart_port *port;
592 int retval;
593
594
595
596
597
598
599 if (co->index >= nr_uarts)
600 co->index = 0;
601 port = &serial8250_ports[co->index].port;
602
603 port->cons = co;
604
605 retval = serial8250_console_setup(port, options, false);
606 if (retval != 0)
607 port->cons = NULL;
608 return retval;
609}
610
611static int univ8250_console_exit(struct console *co)
612{
613 struct uart_port *port;
614
615 port = &serial8250_ports[co->index].port;
616 return serial8250_console_exit(port);
617}
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637static int univ8250_console_match(struct console *co, char *name, int idx,
638 char *options)
639{
640 char match[] = "uart";
641 unsigned char iotype;
642 resource_size_t addr;
643 int i;
644
645 if (strncmp(name, match, 4) != 0)
646 return -ENODEV;
647
648 if (uart_parse_earlycon(options, &iotype, &addr, &options))
649 return -ENODEV;
650
651
652 for (i = 0; i < nr_uarts; i++) {
653 struct uart_port *port = &serial8250_ports[i].port;
654
655 if (port->iotype != iotype)
656 continue;
657 if ((iotype == UPIO_MEM || iotype == UPIO_MEM16 ||
658 iotype == UPIO_MEM32 || iotype == UPIO_MEM32BE)
659 && (port->mapbase != addr))
660 continue;
661 if (iotype == UPIO_PORT && port->iobase != addr)
662 continue;
663
664 co->index = i;
665 port->cons = co;
666 return serial8250_console_setup(port, options, true);
667 }
668
669 return -ENODEV;
670}
671
672static struct console univ8250_console = {
673 .name = "ttyS",
674 .write = univ8250_console_write,
675 .device = uart_console_device,
676 .setup = univ8250_console_setup,
677 .exit = univ8250_console_exit,
678 .match = univ8250_console_match,
679 .flags = CON_PRINTBUFFER | CON_ANYTIME,
680 .index = -1,
681 .data = &serial8250_reg,
682};
683
684static int __init univ8250_console_init(void)
685{
686 if (nr_uarts == 0)
687 return -ENODEV;
688
689 serial8250_isa_init_ports();
690 register_console(&univ8250_console);
691 return 0;
692}
693console_initcall(univ8250_console_init);
694
695#define SERIAL8250_CONSOLE (&univ8250_console)
696#else
697#define SERIAL8250_CONSOLE NULL
698#endif
699
700static struct uart_driver serial8250_reg = {
701 .owner = THIS_MODULE,
702 .driver_name = "serial",
703 .dev_name = "ttyS",
704 .major = TTY_MAJOR,
705 .minor = 64,
706 .cons = SERIAL8250_CONSOLE,
707};
708
709
710
711
712
713
714
715int __init early_serial_setup(struct uart_port *port)
716{
717 struct uart_port *p;
718
719 if (port->line >= ARRAY_SIZE(serial8250_ports) || nr_uarts == 0)
720 return -ENODEV;
721
722 serial8250_isa_init_ports();
723 p = &serial8250_ports[port->line].port;
724 p->iobase = port->iobase;
725 p->membase = port->membase;
726 p->irq = port->irq;
727 p->irqflags = port->irqflags;
728 p->uartclk = port->uartclk;
729 p->fifosize = port->fifosize;
730 p->regshift = port->regshift;
731 p->iotype = port->iotype;
732 p->flags = port->flags;
733 p->mapbase = port->mapbase;
734 p->mapsize = port->mapsize;
735 p->private_data = port->private_data;
736 p->type = port->type;
737 p->line = port->line;
738
739 serial8250_set_defaults(up_to_u8250p(p));
740
741 if (port->serial_in)
742 p->serial_in = port->serial_in;
743 if (port->serial_out)
744 p->serial_out = port->serial_out;
745 if (port->handle_irq)
746 p->handle_irq = port->handle_irq;
747
748 return 0;
749}
750
751
752
753
754
755
756
757void serial8250_suspend_port(int line)
758{
759 struct uart_8250_port *up = &serial8250_ports[line];
760 struct uart_port *port = &up->port;
761
762 if (!console_suspend_enabled && uart_console(port) &&
763 port->type != PORT_8250) {
764 unsigned char canary = 0xa5;
765 serial_out(up, UART_SCR, canary);
766 if (serial_in(up, UART_SCR) == canary)
767 up->canary = canary;
768 }
769
770 uart_suspend_port(&serial8250_reg, port);
771}
772EXPORT_SYMBOL(serial8250_suspend_port);
773
774
775
776
777
778
779
780void serial8250_resume_port(int line)
781{
782 struct uart_8250_port *up = &serial8250_ports[line];
783 struct uart_port *port = &up->port;
784
785 up->canary = 0;
786
787 if (up->capabilities & UART_NATSEMI) {
788
789 serial_port_out(port, UART_LCR, 0xE0);
790
791 ns16550a_goto_highspeed(up);
792
793 serial_port_out(port, UART_LCR, 0);
794 port->uartclk = 921600*16;
795 }
796 uart_resume_port(&serial8250_reg, port);
797}
798EXPORT_SYMBOL(serial8250_resume_port);
799
800
801
802
803
804
805static int serial8250_probe(struct platform_device *dev)
806{
807 struct plat_serial8250_port *p = dev_get_platdata(&dev->dev);
808 struct uart_8250_port uart;
809 int ret, i, irqflag = 0;
810
811 memset(&uart, 0, sizeof(uart));
812
813 if (share_irqs)
814 irqflag = IRQF_SHARED;
815
816 for (i = 0; p && p->flags != 0; p++, i++) {
817 uart.port.iobase = p->iobase;
818 uart.port.membase = p->membase;
819 uart.port.irq = p->irq;
820 uart.port.irqflags = p->irqflags;
821 uart.port.uartclk = p->uartclk;
822 uart.port.regshift = p->regshift;
823 uart.port.iotype = p->iotype;
824 uart.port.flags = p->flags;
825 uart.port.mapbase = p->mapbase;
826 uart.port.hub6 = p->hub6;
827 uart.port.has_sysrq = p->has_sysrq;
828 uart.port.private_data = p->private_data;
829 uart.port.type = p->type;
830 uart.port.serial_in = p->serial_in;
831 uart.port.serial_out = p->serial_out;
832 uart.port.handle_irq = p->handle_irq;
833 uart.port.handle_break = p->handle_break;
834 uart.port.set_termios = p->set_termios;
835 uart.port.set_ldisc = p->set_ldisc;
836 uart.port.get_mctrl = p->get_mctrl;
837 uart.port.pm = p->pm;
838 uart.port.dev = &dev->dev;
839 uart.port.irqflags |= irqflag;
840 ret = serial8250_register_8250_port(&uart);
841 if (ret < 0) {
842 dev_err(&dev->dev, "unable to register port at index %d "
843 "(IO%lx MEM%llx IRQ%d): %d\n", i,
844 p->iobase, (unsigned long long)p->mapbase,
845 p->irq, ret);
846 }
847 }
848 return 0;
849}
850
851
852
853
854static int serial8250_remove(struct platform_device *dev)
855{
856 int i;
857
858 for (i = 0; i < nr_uarts; i++) {
859 struct uart_8250_port *up = &serial8250_ports[i];
860
861 if (up->port.dev == &dev->dev)
862 serial8250_unregister_port(i);
863 }
864 return 0;
865}
866
867static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
868{
869 int i;
870
871 for (i = 0; i < UART_NR; i++) {
872 struct uart_8250_port *up = &serial8250_ports[i];
873
874 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
875 uart_suspend_port(&serial8250_reg, &up->port);
876 }
877
878 return 0;
879}
880
881static int serial8250_resume(struct platform_device *dev)
882{
883 int i;
884
885 for (i = 0; i < UART_NR; i++) {
886 struct uart_8250_port *up = &serial8250_ports[i];
887
888 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
889 serial8250_resume_port(i);
890 }
891
892 return 0;
893}
894
895static struct platform_driver serial8250_isa_driver = {
896 .probe = serial8250_probe,
897 .remove = serial8250_remove,
898 .suspend = serial8250_suspend,
899 .resume = serial8250_resume,
900 .driver = {
901 .name = "serial8250",
902 },
903};
904
905
906
907
908
909static struct platform_device *serial8250_isa_devs;
910
911
912
913
914
915
916static DEFINE_MUTEX(serial_mutex);
917
918static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
919{
920 int i;
921
922
923
924
925 for (i = 0; i < nr_uarts; i++)
926 if (uart_match_port(&serial8250_ports[i].port, port))
927 return &serial8250_ports[i];
928
929
930 i = port->line;
931 if (i < nr_uarts && serial8250_ports[i].port.type == PORT_UNKNOWN &&
932 serial8250_ports[i].port.iobase == 0)
933 return &serial8250_ports[i];
934
935
936
937
938
939 for (i = 0; i < nr_uarts; i++)
940 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
941 serial8250_ports[i].port.iobase == 0)
942 return &serial8250_ports[i];
943
944
945
946
947
948 for (i = 0; i < nr_uarts; i++)
949 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
950 return &serial8250_ports[i];
951
952 return NULL;
953}
954
955static void serial_8250_overrun_backoff_work(struct work_struct *work)
956{
957 struct uart_8250_port *up =
958 container_of(to_delayed_work(work), struct uart_8250_port,
959 overrun_backoff);
960 struct uart_port *port = &up->port;
961 unsigned long flags;
962
963 spin_lock_irqsave(&port->lock, flags);
964 up->ier |= UART_IER_RLSI | UART_IER_RDI;
965 up->port.read_status_mask |= UART_LSR_DR;
966 serial_out(up, UART_IER, up->ier);
967 spin_unlock_irqrestore(&port->lock, flags);
968}
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983int serial8250_register_8250_port(struct uart_8250_port *up)
984{
985 struct uart_8250_port *uart;
986 int ret = -ENOSPC;
987
988 if (up->port.uartclk == 0)
989 return -EINVAL;
990
991 mutex_lock(&serial_mutex);
992
993 uart = serial8250_find_match_or_unused(&up->port);
994 if (uart && uart->port.type != PORT_8250_CIR) {
995 struct mctrl_gpios *gpios;
996
997 if (uart->port.dev)
998 uart_remove_one_port(&serial8250_reg, &uart->port);
999
1000 uart->port.iobase = up->port.iobase;
1001 uart->port.membase = up->port.membase;
1002 uart->port.irq = up->port.irq;
1003 uart->port.irqflags = up->port.irqflags;
1004 uart->port.uartclk = up->port.uartclk;
1005 uart->port.fifosize = up->port.fifosize;
1006 uart->port.regshift = up->port.regshift;
1007 uart->port.iotype = up->port.iotype;
1008 uart->port.flags = up->port.flags | UPF_BOOT_AUTOCONF;
1009 uart->bugs = up->bugs;
1010 uart->port.mapbase = up->port.mapbase;
1011 uart->port.mapsize = up->port.mapsize;
1012 uart->port.private_data = up->port.private_data;
1013 uart->tx_loadsz = up->tx_loadsz;
1014 uart->capabilities = up->capabilities;
1015 uart->port.throttle = up->port.throttle;
1016 uart->port.unthrottle = up->port.unthrottle;
1017 uart->port.rs485_config = up->port.rs485_config;
1018 uart->port.rs485 = up->port.rs485;
1019 uart->rs485_start_tx = up->rs485_start_tx;
1020 uart->rs485_stop_tx = up->rs485_stop_tx;
1021 uart->dma = up->dma;
1022
1023
1024 if (uart->port.fifosize && !uart->tx_loadsz)
1025 uart->tx_loadsz = uart->port.fifosize;
1026
1027 if (up->port.dev) {
1028 uart->port.dev = up->port.dev;
1029 uart_get_rs485_mode(uart->port.dev, &uart->port.rs485);
1030 }
1031
1032 if (up->port.flags & UPF_FIXED_TYPE)
1033 uart->port.type = up->port.type;
1034
1035
1036
1037
1038
1039 if (!has_acpi_companion(uart->port.dev)) {
1040 gpios = mctrl_gpio_init(&uart->port, 0);
1041 if (IS_ERR(gpios)) {
1042 ret = PTR_ERR(gpios);
1043 goto out_unlock;
1044 } else {
1045 uart->gpios = gpios;
1046 }
1047 }
1048
1049 serial8250_set_defaults(uart);
1050
1051
1052 if (up->port.serial_in)
1053 uart->port.serial_in = up->port.serial_in;
1054 if (up->port.serial_out)
1055 uart->port.serial_out = up->port.serial_out;
1056 if (up->port.handle_irq)
1057 uart->port.handle_irq = up->port.handle_irq;
1058
1059 if (up->port.set_termios)
1060 uart->port.set_termios = up->port.set_termios;
1061 if (up->port.set_ldisc)
1062 uart->port.set_ldisc = up->port.set_ldisc;
1063 if (up->port.get_mctrl)
1064 uart->port.get_mctrl = up->port.get_mctrl;
1065 if (up->port.set_mctrl)
1066 uart->port.set_mctrl = up->port.set_mctrl;
1067 if (up->port.get_divisor)
1068 uart->port.get_divisor = up->port.get_divisor;
1069 if (up->port.set_divisor)
1070 uart->port.set_divisor = up->port.set_divisor;
1071 if (up->port.startup)
1072 uart->port.startup = up->port.startup;
1073 if (up->port.shutdown)
1074 uart->port.shutdown = up->port.shutdown;
1075 if (up->port.pm)
1076 uart->port.pm = up->port.pm;
1077 if (up->port.handle_break)
1078 uart->port.handle_break = up->port.handle_break;
1079 if (up->dl_read)
1080 uart->dl_read = up->dl_read;
1081 if (up->dl_write)
1082 uart->dl_write = up->dl_write;
1083
1084 if (uart->port.type != PORT_8250_CIR) {
1085 if (serial8250_isa_config != NULL)
1086 serial8250_isa_config(0, &uart->port,
1087 &uart->capabilities);
1088
1089 serial8250_apply_quirks(uart);
1090 ret = uart_add_one_port(&serial8250_reg,
1091 &uart->port);
1092 if (ret == 0)
1093 ret = uart->port.line;
1094 } else {
1095 dev_info(uart->port.dev,
1096 "skipping CIR port at 0x%lx / 0x%llx, IRQ %d\n",
1097 uart->port.iobase,
1098 (unsigned long long)uart->port.mapbase,
1099 uart->port.irq);
1100
1101 ret = 0;
1102 }
1103
1104
1105 if (up->overrun_backoff_time_ms > 0) {
1106 uart->overrun_backoff_time_ms =
1107 up->overrun_backoff_time_ms;
1108 INIT_DELAYED_WORK(&uart->overrun_backoff,
1109 serial_8250_overrun_backoff_work);
1110 } else {
1111 uart->overrun_backoff_time_ms = 0;
1112 }
1113 }
1114
1115out_unlock:
1116 mutex_unlock(&serial_mutex);
1117
1118 return ret;
1119}
1120EXPORT_SYMBOL(serial8250_register_8250_port);
1121
1122
1123
1124
1125
1126
1127
1128
1129void serial8250_unregister_port(int line)
1130{
1131 struct uart_8250_port *uart = &serial8250_ports[line];
1132
1133 mutex_lock(&serial_mutex);
1134
1135 if (uart->em485) {
1136 unsigned long flags;
1137
1138 spin_lock_irqsave(&uart->port.lock, flags);
1139 serial8250_em485_destroy(uart);
1140 spin_unlock_irqrestore(&uart->port.lock, flags);
1141 }
1142
1143 uart_remove_one_port(&serial8250_reg, &uart->port);
1144 if (serial8250_isa_devs) {
1145 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
1146 uart->port.type = PORT_UNKNOWN;
1147 uart->port.dev = &serial8250_isa_devs->dev;
1148 uart->capabilities = 0;
1149 serial8250_apply_quirks(uart);
1150 uart_add_one_port(&serial8250_reg, &uart->port);
1151 } else {
1152 uart->port.dev = NULL;
1153 }
1154 mutex_unlock(&serial_mutex);
1155}
1156EXPORT_SYMBOL(serial8250_unregister_port);
1157
1158static int __init serial8250_init(void)
1159{
1160 int ret;
1161
1162 if (nr_uarts == 0)
1163 return -ENODEV;
1164
1165 serial8250_isa_init_ports();
1166
1167 pr_info("Serial: 8250/16550 driver, %d ports, IRQ sharing %sabled\n",
1168 nr_uarts, share_irqs ? "en" : "dis");
1169
1170#ifdef CONFIG_SPARC
1171 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
1172#else
1173 serial8250_reg.nr = UART_NR;
1174 ret = uart_register_driver(&serial8250_reg);
1175#endif
1176 if (ret)
1177 goto out;
1178
1179 ret = serial8250_pnp_init();
1180 if (ret)
1181 goto unreg_uart_drv;
1182
1183 serial8250_isa_devs = platform_device_alloc("serial8250",
1184 PLAT8250_DEV_LEGACY);
1185 if (!serial8250_isa_devs) {
1186 ret = -ENOMEM;
1187 goto unreg_pnp;
1188 }
1189
1190 ret = platform_device_add(serial8250_isa_devs);
1191 if (ret)
1192 goto put_dev;
1193
1194 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
1195
1196 ret = platform_driver_register(&serial8250_isa_driver);
1197 if (ret == 0)
1198 goto out;
1199
1200 platform_device_del(serial8250_isa_devs);
1201put_dev:
1202 platform_device_put(serial8250_isa_devs);
1203unreg_pnp:
1204 serial8250_pnp_exit();
1205unreg_uart_drv:
1206#ifdef CONFIG_SPARC
1207 sunserial_unregister_minors(&serial8250_reg, UART_NR);
1208#else
1209 uart_unregister_driver(&serial8250_reg);
1210#endif
1211out:
1212 return ret;
1213}
1214
1215static void __exit serial8250_exit(void)
1216{
1217 struct platform_device *isa_dev = serial8250_isa_devs;
1218
1219
1220
1221
1222
1223
1224 serial8250_isa_devs = NULL;
1225
1226 platform_driver_unregister(&serial8250_isa_driver);
1227 platform_device_unregister(isa_dev);
1228
1229 serial8250_pnp_exit();
1230
1231#ifdef CONFIG_SPARC
1232 sunserial_unregister_minors(&serial8250_reg, UART_NR);
1233#else
1234 uart_unregister_driver(&serial8250_reg);
1235#endif
1236}
1237
1238module_init(serial8250_init);
1239module_exit(serial8250_exit);
1240
1241MODULE_LICENSE("GPL");
1242MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
1243
1244module_param_hw(share_irqs, uint, other, 0644);
1245MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices (unsafe)");
1246
1247module_param(nr_uarts, uint, 0644);
1248MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
1249
1250module_param(skip_txen_test, uint, 0644);
1251MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
1252
1253#ifdef CONFIG_SERIAL_8250_RSA
1254module_param_hw_array(probe_rsa, ulong, ioport, &probe_rsa_count, 0444);
1255MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
1256#endif
1257MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);
1258
1259#ifdef CONFIG_SERIAL_8250_DEPRECATED_OPTIONS
1260#ifndef MODULE
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271static void __used s8250_options(void)
1272{
1273#undef MODULE_PARAM_PREFIX
1274#define MODULE_PARAM_PREFIX "8250_core."
1275
1276 module_param_cb(share_irqs, ¶m_ops_uint, &share_irqs, 0644);
1277 module_param_cb(nr_uarts, ¶m_ops_uint, &nr_uarts, 0644);
1278 module_param_cb(skip_txen_test, ¶m_ops_uint, &skip_txen_test, 0644);
1279#ifdef CONFIG_SERIAL_8250_RSA
1280 __module_param_call(MODULE_PARAM_PREFIX, probe_rsa,
1281 ¶m_array_ops, .arr = &__param_arr_probe_rsa,
1282 0444, -1, 0);
1283#endif
1284}
1285#else
1286MODULE_ALIAS("8250_core");
1287#endif
1288#endif
1289