blob: bd0c47c582853030ccdc74503c911710378e7cc3 [file] [log] [blame]
Peter Hurleyb6830f62015-06-27 09:19:00 -04001/*
2 * Base port operations for 8250/16550-type serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 * Split from 8250_core.c, Copyright (C) 2001 Russell King.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * A note about mapbase / membase
13 *
14 * mapbase is the physical address of the IO port.
15 * membase is an 'ioremapped' cookie.
16 */
17
18#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
19#define SUPPORT_SYSRQ
20#endif
21
22#include <linux/module.h>
23#include <linux/moduleparam.h>
24#include <linux/ioport.h>
25#include <linux/init.h>
26#include <linux/console.h>
27#include <linux/sysrq.h>
28#include <linux/delay.h>
29#include <linux/platform_device.h>
30#include <linux/tty.h>
31#include <linux/ratelimit.h>
32#include <linux/tty_flip.h>
33#include <linux/serial.h>
34#include <linux/serial_8250.h>
35#include <linux/nmi.h>
36#include <linux/mutex.h>
37#include <linux/slab.h>
38#include <linux/uaccess.h>
39#include <linux/pm_runtime.h>
40
41#include <asm/io.h>
42#include <asm/irq.h>
43
44#include "8250.h"
45
46/*
47 * Debugging.
48 */
49#if 0
50#define DEBUG_AUTOCONF(fmt...) printk(fmt)
51#else
52#define DEBUG_AUTOCONF(fmt...) do { } while (0)
53#endif
54
55#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
56
57/*
58 * Here we define the default xmit fifo size used for each type of UART.
59 */
60static const struct serial8250_config uart_config[] = {
61 [PORT_UNKNOWN] = {
62 .name = "unknown",
63 .fifo_size = 1,
64 .tx_loadsz = 1,
65 },
66 [PORT_8250] = {
67 .name = "8250",
68 .fifo_size = 1,
69 .tx_loadsz = 1,
70 },
71 [PORT_16450] = {
72 .name = "16450",
73 .fifo_size = 1,
74 .tx_loadsz = 1,
75 },
76 [PORT_16550] = {
77 .name = "16550",
78 .fifo_size = 1,
79 .tx_loadsz = 1,
80 },
81 [PORT_16550A] = {
82 .name = "16550A",
83 .fifo_size = 16,
84 .tx_loadsz = 16,
85 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
86 .rxtrig_bytes = {1, 4, 8, 14},
87 .flags = UART_CAP_FIFO,
88 },
89 [PORT_CIRRUS] = {
90 .name = "Cirrus",
91 .fifo_size = 1,
92 .tx_loadsz = 1,
93 },
94 [PORT_16650] = {
95 .name = "ST16650",
96 .fifo_size = 1,
97 .tx_loadsz = 1,
98 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
99 },
100 [PORT_16650V2] = {
101 .name = "ST16650V2",
102 .fifo_size = 32,
103 .tx_loadsz = 16,
104 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
105 UART_FCR_T_TRIG_00,
106 .rxtrig_bytes = {8, 16, 24, 28},
107 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
108 },
109 [PORT_16750] = {
110 .name = "TI16750",
111 .fifo_size = 64,
112 .tx_loadsz = 64,
113 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
114 UART_FCR7_64BYTE,
115 .rxtrig_bytes = {1, 16, 32, 56},
116 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
117 },
118 [PORT_STARTECH] = {
119 .name = "Startech",
120 .fifo_size = 1,
121 .tx_loadsz = 1,
122 },
123 [PORT_16C950] = {
124 .name = "16C950/954",
125 .fifo_size = 128,
126 .tx_loadsz = 128,
127 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
128 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
129 .flags = UART_CAP_FIFO | UART_CAP_SLEEP,
130 },
131 [PORT_16654] = {
132 .name = "ST16654",
133 .fifo_size = 64,
134 .tx_loadsz = 32,
135 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
136 UART_FCR_T_TRIG_10,
137 .rxtrig_bytes = {8, 16, 56, 60},
138 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
139 },
140 [PORT_16850] = {
141 .name = "XR16850",
142 .fifo_size = 128,
143 .tx_loadsz = 128,
144 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
145 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
146 },
147 [PORT_RSA] = {
148 .name = "RSA",
149 .fifo_size = 2048,
150 .tx_loadsz = 2048,
151 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
152 .flags = UART_CAP_FIFO,
153 },
154 [PORT_NS16550A] = {
155 .name = "NS16550A",
156 .fifo_size = 16,
157 .tx_loadsz = 16,
158 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
159 .flags = UART_CAP_FIFO | UART_NATSEMI,
160 },
161 [PORT_XSCALE] = {
162 .name = "XScale",
163 .fifo_size = 32,
164 .tx_loadsz = 32,
165 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
166 .flags = UART_CAP_FIFO | UART_CAP_UUE | UART_CAP_RTOIE,
167 },
168 [PORT_OCTEON] = {
169 .name = "OCTEON",
170 .fifo_size = 64,
171 .tx_loadsz = 64,
172 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
173 .flags = UART_CAP_FIFO,
174 },
175 [PORT_AR7] = {
176 .name = "AR7",
177 .fifo_size = 16,
178 .tx_loadsz = 16,
179 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
180 .flags = UART_CAP_FIFO | UART_CAP_AFE,
181 },
182 [PORT_U6_16550A] = {
183 .name = "U6_16550A",
184 .fifo_size = 64,
185 .tx_loadsz = 64,
186 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
187 .flags = UART_CAP_FIFO | UART_CAP_AFE,
188 },
189 [PORT_TEGRA] = {
190 .name = "Tegra",
191 .fifo_size = 32,
192 .tx_loadsz = 8,
193 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
194 UART_FCR_T_TRIG_01,
195 .rxtrig_bytes = {1, 4, 8, 14},
196 .flags = UART_CAP_FIFO | UART_CAP_RTOIE,
197 },
198 [PORT_XR17D15X] = {
199 .name = "XR17D15X",
200 .fifo_size = 64,
201 .tx_loadsz = 64,
202 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
203 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
204 UART_CAP_SLEEP,
205 },
206 [PORT_XR17V35X] = {
207 .name = "XR17V35X",
208 .fifo_size = 256,
209 .tx_loadsz = 256,
210 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11 |
211 UART_FCR_T_TRIG_11,
212 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
213 UART_CAP_SLEEP,
214 },
215 [PORT_LPC3220] = {
216 .name = "LPC3220",
217 .fifo_size = 64,
218 .tx_loadsz = 32,
219 .fcr = UART_FCR_DMA_SELECT | UART_FCR_ENABLE_FIFO |
220 UART_FCR_R_TRIG_00 | UART_FCR_T_TRIG_00,
221 .flags = UART_CAP_FIFO,
222 },
223 [PORT_BRCM_TRUMANAGE] = {
224 .name = "TruManage",
225 .fifo_size = 1,
226 .tx_loadsz = 1024,
227 .flags = UART_CAP_HFIFO,
228 },
229 [PORT_8250_CIR] = {
230 .name = "CIR port"
231 },
232 [PORT_ALTR_16550_F32] = {
233 .name = "Altera 16550 FIFO32",
234 .fifo_size = 32,
235 .tx_loadsz = 32,
236 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
237 .flags = UART_CAP_FIFO | UART_CAP_AFE,
238 },
239 [PORT_ALTR_16550_F64] = {
240 .name = "Altera 16550 FIFO64",
241 .fifo_size = 64,
242 .tx_loadsz = 64,
243 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
244 .flags = UART_CAP_FIFO | UART_CAP_AFE,
245 },
246 [PORT_ALTR_16550_F128] = {
247 .name = "Altera 16550 FIFO128",
248 .fifo_size = 128,
249 .tx_loadsz = 128,
250 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
251 .flags = UART_CAP_FIFO | UART_CAP_AFE,
252 },
253/* tx_loadsz is set to 63-bytes instead of 64-bytes to implement
254workaround of errata A-008006 which states that tx_loadsz should be
255configured less than Maximum supported fifo bytes */
256 [PORT_16550A_FSL64] = {
257 .name = "16550A_FSL64",
258 .fifo_size = 64,
259 .tx_loadsz = 63,
260 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
261 UART_FCR7_64BYTE,
262 .flags = UART_CAP_FIFO,
263 },
264};
265
266/* Uart divisor latch read */
267static int default_serial_dl_read(struct uart_8250_port *up)
268{
269 return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8;
270}
271
272/* Uart divisor latch write */
273static void default_serial_dl_write(struct uart_8250_port *up, int value)
274{
275 serial_out(up, UART_DLL, value & 0xff);
276 serial_out(up, UART_DLM, value >> 8 & 0xff);
277}
278
279#if defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_SERIAL_8250_RT288X)
280
281/* Au1x00/RT288x UART hardware has a weird register layout */
282static const s8 au_io_in_map[8] = {
283 0, /* UART_RX */
284 2, /* UART_IER */
285 3, /* UART_IIR */
286 5, /* UART_LCR */
287 6, /* UART_MCR */
288 7, /* UART_LSR */
289 8, /* UART_MSR */
290 -1, /* UART_SCR (unmapped) */
291};
292
293static const s8 au_io_out_map[8] = {
294 1, /* UART_TX */
295 2, /* UART_IER */
296 4, /* UART_FCR */
297 5, /* UART_LCR */
298 6, /* UART_MCR */
299 -1, /* UART_LSR (unmapped) */
300 -1, /* UART_MSR (unmapped) */
301 -1, /* UART_SCR (unmapped) */
302};
303
304static unsigned int au_serial_in(struct uart_port *p, int offset)
305{
306 if (offset >= ARRAY_SIZE(au_io_in_map))
307 return UINT_MAX;
308 offset = au_io_in_map[offset];
309 if (offset < 0)
310 return UINT_MAX;
311 return __raw_readl(p->membase + (offset << p->regshift));
312}
313
314static void au_serial_out(struct uart_port *p, int offset, int value)
315{
316 if (offset >= ARRAY_SIZE(au_io_out_map))
317 return;
318 offset = au_io_out_map[offset];
319 if (offset < 0)
320 return;
321 __raw_writel(value, p->membase + (offset << p->regshift));
322}
323
324/* Au1x00 haven't got a standard divisor latch */
325static int au_serial_dl_read(struct uart_8250_port *up)
326{
327 return __raw_readl(up->port.membase + 0x28);
328}
329
330static void au_serial_dl_write(struct uart_8250_port *up, int value)
331{
332 __raw_writel(value, up->port.membase + 0x28);
333}
334
335#endif
336
337static unsigned int hub6_serial_in(struct uart_port *p, int offset)
338{
339 offset = offset << p->regshift;
340 outb(p->hub6 - 1 + offset, p->iobase);
341 return inb(p->iobase + 1);
342}
343
344static void hub6_serial_out(struct uart_port *p, int offset, int value)
345{
346 offset = offset << p->regshift;
347 outb(p->hub6 - 1 + offset, p->iobase);
348 outb(value, p->iobase + 1);
349}
350
351static unsigned int mem_serial_in(struct uart_port *p, int offset)
352{
353 offset = offset << p->regshift;
354 return readb(p->membase + offset);
355}
356
357static void mem_serial_out(struct uart_port *p, int offset, int value)
358{
359 offset = offset << p->regshift;
360 writeb(value, p->membase + offset);
361}
362
363static void mem32_serial_out(struct uart_port *p, int offset, int value)
364{
365 offset = offset << p->regshift;
366 writel(value, p->membase + offset);
367}
368
369static unsigned int mem32_serial_in(struct uart_port *p, int offset)
370{
371 offset = offset << p->regshift;
372 return readl(p->membase + offset);
373}
374
375static void mem32be_serial_out(struct uart_port *p, int offset, int value)
376{
377 offset = offset << p->regshift;
378 iowrite32be(value, p->membase + offset);
379}
380
381static unsigned int mem32be_serial_in(struct uart_port *p, int offset)
382{
383 offset = offset << p->regshift;
384 return ioread32be(p->membase + offset);
385}
386
387static unsigned int io_serial_in(struct uart_port *p, int offset)
388{
389 offset = offset << p->regshift;
390 return inb(p->iobase + offset);
391}
392
393static void io_serial_out(struct uart_port *p, int offset, int value)
394{
395 offset = offset << p->regshift;
396 outb(value, p->iobase + offset);
397}
398
399static int serial8250_default_handle_irq(struct uart_port *port);
400static int exar_handle_irq(struct uart_port *port);
401
402static void set_io_from_upio(struct uart_port *p)
403{
404 struct uart_8250_port *up = up_to_u8250p(p);
405
406 up->dl_read = default_serial_dl_read;
407 up->dl_write = default_serial_dl_write;
408
409 switch (p->iotype) {
410 case UPIO_HUB6:
411 p->serial_in = hub6_serial_in;
412 p->serial_out = hub6_serial_out;
413 break;
414
415 case UPIO_MEM:
416 p->serial_in = mem_serial_in;
417 p->serial_out = mem_serial_out;
418 break;
419
420 case UPIO_MEM32:
421 p->serial_in = mem32_serial_in;
422 p->serial_out = mem32_serial_out;
423 break;
424
425 case UPIO_MEM32BE:
426 p->serial_in = mem32be_serial_in;
427 p->serial_out = mem32be_serial_out;
428 break;
429
430#if defined(CONFIG_MIPS_ALCHEMY) || defined(CONFIG_SERIAL_8250_RT288X)
431 case UPIO_AU:
432 p->serial_in = au_serial_in;
433 p->serial_out = au_serial_out;
434 up->dl_read = au_serial_dl_read;
435 up->dl_write = au_serial_dl_write;
436 break;
437#endif
438
439 default:
440 p->serial_in = io_serial_in;
441 p->serial_out = io_serial_out;
442 break;
443 }
444 /* Remember loaded iotype */
445 up->cur_iotype = p->iotype;
446 p->handle_irq = serial8250_default_handle_irq;
447}
448
449static void
450serial_port_out_sync(struct uart_port *p, int offset, int value)
451{
452 switch (p->iotype) {
453 case UPIO_MEM:
454 case UPIO_MEM32:
455 case UPIO_MEM32BE:
456 case UPIO_AU:
457 p->serial_out(p, offset, value);
458 p->serial_in(p, UART_LCR); /* safe, no side-effects */
459 break;
460 default:
461 p->serial_out(p, offset, value);
462 }
463}
464
465/*
466 * For the 16C950
467 */
468static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
469{
470 serial_out(up, UART_SCR, offset);
471 serial_out(up, UART_ICR, value);
472}
473
474static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
475{
476 unsigned int value;
477
478 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
479 serial_out(up, UART_SCR, offset);
480 value = serial_in(up, UART_ICR);
481 serial_icr_write(up, UART_ACR, up->acr);
482
483 return value;
484}
485
486/*
487 * FIFO support.
488 */
489static void serial8250_clear_fifos(struct uart_8250_port *p)
490{
491 if (p->capabilities & UART_CAP_FIFO) {
492 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO);
493 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO |
494 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
495 serial_out(p, UART_FCR, 0);
496 }
497}
498
499void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p)
500{
501 serial8250_clear_fifos(p);
502 serial_out(p, UART_FCR, p->fcr);
503}
504EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos);
505
506void serial8250_rpm_get(struct uart_8250_port *p)
507{
508 if (!(p->capabilities & UART_CAP_RPM))
509 return;
510 pm_runtime_get_sync(p->port.dev);
511}
512EXPORT_SYMBOL_GPL(serial8250_rpm_get);
513
514void serial8250_rpm_put(struct uart_8250_port *p)
515{
516 if (!(p->capabilities & UART_CAP_RPM))
517 return;
518 pm_runtime_mark_last_busy(p->port.dev);
519 pm_runtime_put_autosuspend(p->port.dev);
520}
521EXPORT_SYMBOL_GPL(serial8250_rpm_put);
522
523/*
524 * These two wrappers ensure that enable_runtime_pm_tx() can be called more than
525 * once and disable_runtime_pm_tx() will still disable RPM because the fifo is
526 * empty and the HW can idle again.
527 */
528static void serial8250_rpm_get_tx(struct uart_8250_port *p)
529{
530 unsigned char rpm_active;
531
532 if (!(p->capabilities & UART_CAP_RPM))
533 return;
534
535 rpm_active = xchg(&p->rpm_tx_active, 1);
536 if (rpm_active)
537 return;
538 pm_runtime_get_sync(p->port.dev);
539}
540
541static void serial8250_rpm_put_tx(struct uart_8250_port *p)
542{
543 unsigned char rpm_active;
544
545 if (!(p->capabilities & UART_CAP_RPM))
546 return;
547
548 rpm_active = xchg(&p->rpm_tx_active, 0);
549 if (!rpm_active)
550 return;
551 pm_runtime_mark_last_busy(p->port.dev);
552 pm_runtime_put_autosuspend(p->port.dev);
553}
554
555/*
556 * IER sleep support. UARTs which have EFRs need the "extended
557 * capability" bit enabled. Note that on XR16C850s, we need to
558 * reset LCR to write to IER.
559 */
560static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
561{
562 unsigned char lcr = 0, efr = 0;
563 /*
564 * Exar UARTs have a SLEEP register that enables or disables
565 * each UART to enter sleep mode separately. On the XR17V35x the
566 * register is accessible to each UART at the UART_EXAR_SLEEP
567 * offset but the UART channel may only write to the corresponding
568 * bit.
569 */
570 serial8250_rpm_get(p);
571 if ((p->port.type == PORT_XR17V35X) ||
572 (p->port.type == PORT_XR17D15X)) {
573 serial_out(p, UART_EXAR_SLEEP, sleep ? 0xff : 0);
574 goto out;
575 }
576
577 if (p->capabilities & UART_CAP_SLEEP) {
578 if (p->capabilities & UART_CAP_EFR) {
579 lcr = serial_in(p, UART_LCR);
580 efr = serial_in(p, UART_EFR);
581 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
582 serial_out(p, UART_EFR, UART_EFR_ECB);
583 serial_out(p, UART_LCR, 0);
584 }
585 serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
586 if (p->capabilities & UART_CAP_EFR) {
587 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
588 serial_out(p, UART_EFR, efr);
589 serial_out(p, UART_LCR, lcr);
590 }
591 }
592out:
593 serial8250_rpm_put(p);
594}
595
596#ifdef CONFIG_SERIAL_8250_RSA
597/*
598 * Attempts to turn on the RSA FIFO. Returns zero on failure.
599 * We set the port uart clock rate if we succeed.
600 */
601static int __enable_rsa(struct uart_8250_port *up)
602{
603 unsigned char mode;
604 int result;
605
606 mode = serial_in(up, UART_RSA_MSR);
607 result = mode & UART_RSA_MSR_FIFO;
608
609 if (!result) {
610 serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
611 mode = serial_in(up, UART_RSA_MSR);
612 result = mode & UART_RSA_MSR_FIFO;
613 }
614
615 if (result)
616 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
617
618 return result;
619}
620
621static void enable_rsa(struct uart_8250_port *up)
622{
623 if (up->port.type == PORT_RSA) {
624 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
625 spin_lock_irq(&up->port.lock);
626 __enable_rsa(up);
627 spin_unlock_irq(&up->port.lock);
628 }
629 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
630 serial_out(up, UART_RSA_FRR, 0);
631 }
632}
633
634/*
635 * Attempts to turn off the RSA FIFO. Returns zero on failure.
636 * It is unknown why interrupts were disabled in here. However,
637 * the caller is expected to preserve this behaviour by grabbing
638 * the spinlock before calling this function.
639 */
640static void disable_rsa(struct uart_8250_port *up)
641{
642 unsigned char mode;
643 int result;
644
645 if (up->port.type == PORT_RSA &&
646 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
647 spin_lock_irq(&up->port.lock);
648
649 mode = serial_in(up, UART_RSA_MSR);
650 result = !(mode & UART_RSA_MSR_FIFO);
651
652 if (!result) {
653 serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
654 mode = serial_in(up, UART_RSA_MSR);
655 result = !(mode & UART_RSA_MSR_FIFO);
656 }
657
658 if (result)
659 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
660 spin_unlock_irq(&up->port.lock);
661 }
662}
663#endif /* CONFIG_SERIAL_8250_RSA */
664
665/*
666 * This is a quickie test to see how big the FIFO is.
667 * It doesn't work at all the time, more's the pity.
668 */
669static int size_fifo(struct uart_8250_port *up)
670{
671 unsigned char old_fcr, old_mcr, old_lcr;
672 unsigned short old_dl;
673 int count;
674
675 old_lcr = serial_in(up, UART_LCR);
676 serial_out(up, UART_LCR, 0);
677 old_fcr = serial_in(up, UART_FCR);
678 old_mcr = serial_in(up, UART_MCR);
679 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
680 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
681 serial_out(up, UART_MCR, UART_MCR_LOOP);
682 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
683 old_dl = serial_dl_read(up);
684 serial_dl_write(up, 0x0001);
685 serial_out(up, UART_LCR, 0x03);
686 for (count = 0; count < 256; count++)
687 serial_out(up, UART_TX, count);
688 mdelay(20);/* FIXME - schedule_timeout */
689 for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) &&
690 (count < 256); count++)
691 serial_in(up, UART_RX);
692 serial_out(up, UART_FCR, old_fcr);
693 serial_out(up, UART_MCR, old_mcr);
694 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
695 serial_dl_write(up, old_dl);
696 serial_out(up, UART_LCR, old_lcr);
697
698 return count;
699}
700
701/*
702 * Read UART ID using the divisor method - set DLL and DLM to zero
703 * and the revision will be in DLL and device type in DLM. We
704 * preserve the device state across this.
705 */
706static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
707{
708 unsigned char old_dll, old_dlm, old_lcr;
709 unsigned int id;
710
711 old_lcr = serial_in(p, UART_LCR);
712 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A);
713
714 old_dll = serial_in(p, UART_DLL);
715 old_dlm = serial_in(p, UART_DLM);
716
717 serial_out(p, UART_DLL, 0);
718 serial_out(p, UART_DLM, 0);
719
720 id = serial_in(p, UART_DLL) | serial_in(p, UART_DLM) << 8;
721
722 serial_out(p, UART_DLL, old_dll);
723 serial_out(p, UART_DLM, old_dlm);
724 serial_out(p, UART_LCR, old_lcr);
725
726 return id;
727}
728
729/*
730 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
731 * When this function is called we know it is at least a StarTech
732 * 16650 V2, but it might be one of several StarTech UARTs, or one of
733 * its clones. (We treat the broken original StarTech 16650 V1 as a
734 * 16550, and why not? Startech doesn't seem to even acknowledge its
735 * existence.)
736 *
737 * What evil have men's minds wrought...
738 */
739static void autoconfig_has_efr(struct uart_8250_port *up)
740{
741 unsigned int id1, id2, id3, rev;
742
743 /*
744 * Everything with an EFR has SLEEP
745 */
746 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
747
748 /*
749 * First we check to see if it's an Oxford Semiconductor UART.
750 *
751 * If we have to do this here because some non-National
752 * Semiconductor clone chips lock up if you try writing to the
753 * LSR register (which serial_icr_read does)
754 */
755
756 /*
757 * Check for Oxford Semiconductor 16C950.
758 *
759 * EFR [4] must be set else this test fails.
760 *
761 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
762 * claims that it's needed for 952 dual UART's (which are not
763 * recommended for new designs).
764 */
765 up->acr = 0;
766 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
767 serial_out(up, UART_EFR, UART_EFR_ECB);
768 serial_out(up, UART_LCR, 0x00);
769 id1 = serial_icr_read(up, UART_ID1);
770 id2 = serial_icr_read(up, UART_ID2);
771 id3 = serial_icr_read(up, UART_ID3);
772 rev = serial_icr_read(up, UART_REV);
773
774 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
775
776 if (id1 == 0x16 && id2 == 0xC9 &&
777 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
778 up->port.type = PORT_16C950;
779
780 /*
781 * Enable work around for the Oxford Semiconductor 952 rev B
782 * chip which causes it to seriously miscalculate baud rates
783 * when DLL is 0.
784 */
785 if (id3 == 0x52 && rev == 0x01)
786 up->bugs |= UART_BUG_QUOT;
787 return;
788 }
789
790 /*
791 * We check for a XR16C850 by setting DLL and DLM to 0, and then
792 * reading back DLL and DLM. The chip type depends on the DLM
793 * value read back:
794 * 0x10 - XR16C850 and the DLL contains the chip revision.
795 * 0x12 - XR16C2850.
796 * 0x14 - XR16C854.
797 */
798 id1 = autoconfig_read_divisor_id(up);
799 DEBUG_AUTOCONF("850id=%04x ", id1);
800
801 id2 = id1 >> 8;
802 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
803 up->port.type = PORT_16850;
804 return;
805 }
806
807 /*
808 * It wasn't an XR16C850.
809 *
810 * We distinguish between the '654 and the '650 by counting
811 * how many bytes are in the FIFO. I'm using this for now,
812 * since that's the technique that was sent to me in the
813 * serial driver update, but I'm not convinced this works.
814 * I've had problems doing this in the past. -TYT
815 */
816 if (size_fifo(up) == 64)
817 up->port.type = PORT_16654;
818 else
819 up->port.type = PORT_16650V2;
820}
821
822/*
823 * We detected a chip without a FIFO. Only two fall into
824 * this category - the original 8250 and the 16450. The
825 * 16450 has a scratch register (accessible with LCR=0)
826 */
827static void autoconfig_8250(struct uart_8250_port *up)
828{
829 unsigned char scratch, status1, status2;
830
831 up->port.type = PORT_8250;
832
833 scratch = serial_in(up, UART_SCR);
834 serial_out(up, UART_SCR, 0xa5);
835 status1 = serial_in(up, UART_SCR);
836 serial_out(up, UART_SCR, 0x5a);
837 status2 = serial_in(up, UART_SCR);
838 serial_out(up, UART_SCR, scratch);
839
840 if (status1 == 0xa5 && status2 == 0x5a)
841 up->port.type = PORT_16450;
842}
843
844static int broken_efr(struct uart_8250_port *up)
845{
846 /*
847 * Exar ST16C2550 "A2" devices incorrectly detect as
848 * having an EFR, and report an ID of 0x0201. See
849 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
850 */
851 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
852 return 1;
853
854 return 0;
855}
856
857/*
858 * We know that the chip has FIFOs. Does it have an EFR? The
859 * EFR is located in the same register position as the IIR and
860 * we know the top two bits of the IIR are currently set. The
861 * EFR should contain zero. Try to read the EFR.
862 */
863static void autoconfig_16550a(struct uart_8250_port *up)
864{
865 unsigned char status1, status2;
866 unsigned int iersave;
867
868 up->port.type = PORT_16550A;
869 up->capabilities |= UART_CAP_FIFO;
870
871 /*
872 * XR17V35x UARTs have an extra divisor register, DLD
873 * that gets enabled with when DLAB is set which will
874 * cause the device to incorrectly match and assign
875 * port type to PORT_16650. The EFR for this UART is
876 * found at offset 0x09. Instead check the Deice ID (DVID)
877 * register for a 2, 4 or 8 port UART.
878 */
879 if (up->port.flags & UPF_EXAR_EFR) {
880 status1 = serial_in(up, UART_EXAR_DVID);
881 if (status1 == 0x82 || status1 == 0x84 || status1 == 0x88) {
882 DEBUG_AUTOCONF("Exar XR17V35x ");
883 up->port.type = PORT_XR17V35X;
884 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
885 UART_CAP_SLEEP;
886
887 return;
888 }
889
890 }
891
892 /*
893 * Check for presence of the EFR when DLAB is set.
894 * Only ST16C650V1 UARTs pass this test.
895 */
896 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
897 if (serial_in(up, UART_EFR) == 0) {
898 serial_out(up, UART_EFR, 0xA8);
899 if (serial_in(up, UART_EFR) != 0) {
900 DEBUG_AUTOCONF("EFRv1 ");
901 up->port.type = PORT_16650;
902 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
903 } else {
904 serial_out(up, UART_LCR, 0);
905 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
906 UART_FCR7_64BYTE);
907 status1 = serial_in(up, UART_IIR) >> 5;
908 serial_out(up, UART_FCR, 0);
909 serial_out(up, UART_LCR, 0);
910
911 if (status1 == 7)
912 up->port.type = PORT_16550A_FSL64;
913 else
914 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
915 }
916 serial_out(up, UART_EFR, 0);
917 return;
918 }
919
920 /*
921 * Maybe it requires 0xbf to be written to the LCR.
922 * (other ST16C650V2 UARTs, TI16C752A, etc)
923 */
924 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
925 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
926 DEBUG_AUTOCONF("EFRv2 ");
927 autoconfig_has_efr(up);
928 return;
929 }
930
931 /*
932 * Check for a National Semiconductor SuperIO chip.
933 * Attempt to switch to bank 2, read the value of the LOOP bit
934 * from EXCR1. Switch back to bank 0, change it in MCR. Then
935 * switch back to bank 2, read it from EXCR1 again and check
936 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
937 */
938 serial_out(up, UART_LCR, 0);
939 status1 = serial_in(up, UART_MCR);
940 serial_out(up, UART_LCR, 0xE0);
941 status2 = serial_in(up, 0x02); /* EXCR1 */
942
943 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
944 serial_out(up, UART_LCR, 0);
945 serial_out(up, UART_MCR, status1 ^ UART_MCR_LOOP);
946 serial_out(up, UART_LCR, 0xE0);
947 status2 = serial_in(up, 0x02); /* EXCR1 */
948 serial_out(up, UART_LCR, 0);
949 serial_out(up, UART_MCR, status1);
950
951 if ((status2 ^ status1) & UART_MCR_LOOP) {
952 unsigned short quot;
953
954 serial_out(up, UART_LCR, 0xE0);
955
956 quot = serial_dl_read(up);
957 quot <<= 3;
958
959 if (ns16550a_goto_highspeed(up))
960 serial_dl_write(up, quot);
961
962 serial_out(up, UART_LCR, 0);
963
964 up->port.uartclk = 921600*16;
965 up->port.type = PORT_NS16550A;
966 up->capabilities |= UART_NATSEMI;
967 return;
968 }
969 }
970
971 /*
972 * No EFR. Try to detect a TI16750, which only sets bit 5 of
973 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
974 * Try setting it with and without DLAB set. Cheap clones
975 * set bit 5 without DLAB set.
976 */
977 serial_out(up, UART_LCR, 0);
978 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
979 status1 = serial_in(up, UART_IIR) >> 5;
980 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
981 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
982 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
983 status2 = serial_in(up, UART_IIR) >> 5;
984 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
985 serial_out(up, UART_LCR, 0);
986
987 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
988
989 if (status1 == 6 && status2 == 7) {
990 up->port.type = PORT_16750;
991 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
992 return;
993 }
994
995 /*
996 * Try writing and reading the UART_IER_UUE bit (b6).
997 * If it works, this is probably one of the Xscale platform's
998 * internal UARTs.
999 * We're going to explicitly set the UUE bit to 0 before
1000 * trying to write and read a 1 just to make sure it's not
1001 * already a 1 and maybe locked there before we even start start.
1002 */
1003 iersave = serial_in(up, UART_IER);
1004 serial_out(up, UART_IER, iersave & ~UART_IER_UUE);
1005 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1006 /*
1007 * OK it's in a known zero state, try writing and reading
1008 * without disturbing the current state of the other bits.
1009 */
1010 serial_out(up, UART_IER, iersave | UART_IER_UUE);
1011 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1012 /*
1013 * It's an Xscale.
1014 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1015 */
1016 DEBUG_AUTOCONF("Xscale ");
1017 up->port.type = PORT_XSCALE;
1018 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
1019 return;
1020 }
1021 } else {
1022 /*
1023 * If we got here we couldn't force the IER_UUE bit to 0.
1024 * Log it and continue.
1025 */
1026 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1027 }
1028 serial_out(up, UART_IER, iersave);
1029
1030 /*
1031 * Exar uarts have EFR in a weird location
1032 */
1033 if (up->port.flags & UPF_EXAR_EFR) {
1034 DEBUG_AUTOCONF("Exar XR17D15x ");
1035 up->port.type = PORT_XR17D15X;
1036 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
1037 UART_CAP_SLEEP;
1038
1039 return;
1040 }
1041
1042 /*
1043 * We distinguish between 16550A and U6 16550A by counting
1044 * how many bytes are in the FIFO.
1045 */
1046 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1047 up->port.type = PORT_U6_16550A;
1048 up->capabilities |= UART_CAP_AFE;
1049 }
1050}
1051
1052/*
1053 * This routine is called by rs_init() to initialize a specific serial
1054 * port. It determines what type of UART chip this serial port is
1055 * using: 8250, 16450, 16550, 16550A. The important question is
1056 * whether or not this UART is a 16550A or not, since this will
1057 * determine whether or not we can use its FIFO features or not.
1058 */
1059static void autoconfig(struct uart_8250_port *up)
1060{
1061 unsigned char status1, scratch, scratch2, scratch3;
1062 unsigned char save_lcr, save_mcr;
1063 struct uart_port *port = &up->port;
1064 unsigned long flags;
1065 unsigned int old_capabilities;
1066
1067 if (!port->iobase && !port->mapbase && !port->membase)
1068 return;
1069
1070 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
1071 serial_index(port), port->iobase, port->membase);
1072
1073 /*
1074 * We really do need global IRQs disabled here - we're going to
1075 * be frobbing the chips IRQ enable register to see if it exists.
1076 */
1077 spin_lock_irqsave(&port->lock, flags);
1078
1079 up->capabilities = 0;
1080 up->bugs = 0;
1081
1082 if (!(port->flags & UPF_BUGGY_UART)) {
1083 /*
1084 * Do a simple existence test first; if we fail this,
1085 * there's no point trying anything else.
1086 *
1087 * 0x80 is used as a nonsense port to prevent against
1088 * false positives due to ISA bus float. The
1089 * assumption is that 0x80 is a non-existent port;
1090 * which should be safe since include/asm/io.h also
1091 * makes this assumption.
1092 *
1093 * Note: this is safe as long as MCR bit 4 is clear
1094 * and the device is in "PC" mode.
1095 */
1096 scratch = serial_in(up, UART_IER);
1097 serial_out(up, UART_IER, 0);
1098#ifdef __i386__
1099 outb(0xff, 0x080);
1100#endif
1101 /*
1102 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1103 * 16C754B) allow only to modify them if an EFR bit is set.
1104 */
1105 scratch2 = serial_in(up, UART_IER) & 0x0f;
1106 serial_out(up, UART_IER, 0x0F);
1107#ifdef __i386__
1108 outb(0, 0x080);
1109#endif
1110 scratch3 = serial_in(up, UART_IER) & 0x0f;
1111 serial_out(up, UART_IER, scratch);
1112 if (scratch2 != 0 || scratch3 != 0x0F) {
1113 /*
1114 * We failed; there's nothing here
1115 */
1116 spin_unlock_irqrestore(&port->lock, flags);
1117 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1118 scratch2, scratch3);
1119 goto out;
1120 }
1121 }
1122
1123 save_mcr = serial_in(up, UART_MCR);
1124 save_lcr = serial_in(up, UART_LCR);
1125
1126 /*
1127 * Check to see if a UART is really there. Certain broken
1128 * internal modems based on the Rockwell chipset fail this
1129 * test, because they apparently don't implement the loopback
1130 * test mode. So this test is skipped on the COM 1 through
1131 * COM 4 ports. This *should* be safe, since no board
1132 * manufacturer would be stupid enough to design a board
1133 * that conflicts with COM 1-4 --- we hope!
1134 */
1135 if (!(port->flags & UPF_SKIP_TEST)) {
1136 serial_out(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1137 status1 = serial_in(up, UART_MSR) & 0xF0;
1138 serial_out(up, UART_MCR, save_mcr);
1139 if (status1 != 0x90) {
1140 spin_unlock_irqrestore(&port->lock, flags);
1141 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1142 status1);
1143 goto out;
1144 }
1145 }
1146
1147 /*
1148 * We're pretty sure there's a port here. Lets find out what
1149 * type of port it is. The IIR top two bits allows us to find
1150 * out if it's 8250 or 16450, 16550, 16550A or later. This
1151 * determines what we test for next.
1152 *
1153 * We also initialise the EFR (if any) to zero for later. The
1154 * EFR occupies the same register location as the FCR and IIR.
1155 */
1156 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1157 serial_out(up, UART_EFR, 0);
1158 serial_out(up, UART_LCR, 0);
1159
1160 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1161 scratch = serial_in(up, UART_IIR) >> 6;
1162
1163 switch (scratch) {
1164 case 0:
1165 autoconfig_8250(up);
1166 break;
1167 case 1:
1168 port->type = PORT_UNKNOWN;
1169 break;
1170 case 2:
1171 port->type = PORT_16550;
1172 break;
1173 case 3:
1174 autoconfig_16550a(up);
1175 break;
1176 }
1177
1178#ifdef CONFIG_SERIAL_8250_RSA
1179 /*
1180 * Only probe for RSA ports if we got the region.
1181 */
1182 if (port->type == PORT_16550A && up->probe & UART_PROBE_RSA &&
1183 __enable_rsa(up))
1184 port->type = PORT_RSA;
1185#endif
1186
1187 serial_out(up, UART_LCR, save_lcr);
1188
1189 port->fifosize = uart_config[up->port.type].fifo_size;
1190 old_capabilities = up->capabilities;
1191 up->capabilities = uart_config[port->type].flags;
1192 up->tx_loadsz = uart_config[port->type].tx_loadsz;
1193
1194 if (port->type == PORT_UNKNOWN)
1195 goto out_lock;
1196
1197 /*
1198 * Reset the UART.
1199 */
1200#ifdef CONFIG_SERIAL_8250_RSA
1201 if (port->type == PORT_RSA)
1202 serial_out(up, UART_RSA_FRR, 0);
1203#endif
1204 serial_out(up, UART_MCR, save_mcr);
1205 serial8250_clear_fifos(up);
1206 serial_in(up, UART_RX);
1207 if (up->capabilities & UART_CAP_UUE)
1208 serial_out(up, UART_IER, UART_IER_UUE);
1209 else
1210 serial_out(up, UART_IER, 0);
1211
1212out_lock:
1213 spin_unlock_irqrestore(&port->lock, flags);
1214 if (up->capabilities != old_capabilities) {
1215 printk(KERN_WARNING
1216 "ttyS%d: detected caps %08x should be %08x\n",
1217 serial_index(port), old_capabilities,
1218 up->capabilities);
1219 }
1220out:
1221 DEBUG_AUTOCONF("iir=%d ", scratch);
1222 DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name);
1223}
1224
1225static void autoconfig_irq(struct uart_8250_port *up)
1226{
1227 struct uart_port *port = &up->port;
1228 unsigned char save_mcr, save_ier;
1229 unsigned char save_ICP = 0;
1230 unsigned int ICP = 0;
1231 unsigned long irqs;
1232 int irq;
1233
1234 if (port->flags & UPF_FOURPORT) {
1235 ICP = (port->iobase & 0xfe0) | 0x1f;
1236 save_ICP = inb_p(ICP);
1237 outb_p(0x80, ICP);
1238 inb_p(ICP);
1239 }
1240
1241 /* forget possible initially masked and pending IRQ */
1242 probe_irq_off(probe_irq_on());
1243 save_mcr = serial_in(up, UART_MCR);
1244 save_ier = serial_in(up, UART_IER);
1245 serial_out(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
1246
1247 irqs = probe_irq_on();
1248 serial_out(up, UART_MCR, 0);
1249 udelay(10);
1250 if (port->flags & UPF_FOURPORT) {
1251 serial_out(up, UART_MCR,
1252 UART_MCR_DTR | UART_MCR_RTS);
1253 } else {
1254 serial_out(up, UART_MCR,
1255 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1256 }
1257 serial_out(up, UART_IER, 0x0f); /* enable all intrs */
1258 serial_in(up, UART_LSR);
1259 serial_in(up, UART_RX);
1260 serial_in(up, UART_IIR);
1261 serial_in(up, UART_MSR);
1262 serial_out(up, UART_TX, 0xFF);
1263 udelay(20);
1264 irq = probe_irq_off(irqs);
1265
1266 serial_out(up, UART_MCR, save_mcr);
1267 serial_out(up, UART_IER, save_ier);
1268
1269 if (port->flags & UPF_FOURPORT)
1270 outb_p(save_ICP, ICP);
1271
1272 port->irq = (irq > 0) ? irq : 0;
1273}
1274
1275static inline void __stop_tx(struct uart_8250_port *p)
1276{
1277 if (p->ier & UART_IER_THRI) {
1278 p->ier &= ~UART_IER_THRI;
1279 serial_out(p, UART_IER, p->ier);
1280 serial8250_rpm_put_tx(p);
1281 }
1282}
1283
1284static void serial8250_stop_tx(struct uart_port *port)
1285{
1286 struct uart_8250_port *up = up_to_u8250p(port);
1287
1288 serial8250_rpm_get(up);
1289 __stop_tx(up);
1290
1291 /*
1292 * We really want to stop the transmitter from sending.
1293 */
1294 if (port->type == PORT_16C950) {
1295 up->acr |= UART_ACR_TXDIS;
1296 serial_icr_write(up, UART_ACR, up->acr);
1297 }
1298 serial8250_rpm_put(up);
1299}
1300
1301static void serial8250_start_tx(struct uart_port *port)
1302{
1303 struct uart_8250_port *up = up_to_u8250p(port);
1304
1305 serial8250_rpm_get_tx(up);
1306
1307 if (up->dma && !up->dma->tx_dma(up))
1308 return;
1309
1310 if (!(up->ier & UART_IER_THRI)) {
1311 up->ier |= UART_IER_THRI;
1312 serial_port_out(port, UART_IER, up->ier);
1313
1314 if (up->bugs & UART_BUG_TXEN) {
1315 unsigned char lsr;
1316 lsr = serial_in(up, UART_LSR);
1317 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1318 if (lsr & UART_LSR_THRE)
1319 serial8250_tx_chars(up);
1320 }
1321 }
1322
1323 /*
1324 * Re-enable the transmitter if we disabled it.
1325 */
1326 if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
1327 up->acr &= ~UART_ACR_TXDIS;
1328 serial_icr_write(up, UART_ACR, up->acr);
1329 }
1330}
1331
1332static void serial8250_throttle(struct uart_port *port)
1333{
1334 port->throttle(port);
1335}
1336
1337static void serial8250_unthrottle(struct uart_port *port)
1338{
1339 port->unthrottle(port);
1340}
1341
1342static void serial8250_stop_rx(struct uart_port *port)
1343{
1344 struct uart_8250_port *up = up_to_u8250p(port);
1345
1346 serial8250_rpm_get(up);
1347
1348 up->ier &= ~(UART_IER_RLSI | UART_IER_RDI);
1349 up->port.read_status_mask &= ~UART_LSR_DR;
1350 serial_port_out(port, UART_IER, up->ier);
1351
1352 serial8250_rpm_put(up);
1353}
1354
1355static void serial8250_disable_ms(struct uart_port *port)
1356{
1357 struct uart_8250_port *up =
1358 container_of(port, struct uart_8250_port, port);
1359
1360 /* no MSR capabilities */
1361 if (up->bugs & UART_BUG_NOMSR)
1362 return;
1363
1364 up->ier &= ~UART_IER_MSI;
1365 serial_port_out(port, UART_IER, up->ier);
1366}
1367
1368static void serial8250_enable_ms(struct uart_port *port)
1369{
1370 struct uart_8250_port *up = up_to_u8250p(port);
1371
1372 /* no MSR capabilities */
1373 if (up->bugs & UART_BUG_NOMSR)
1374 return;
1375
1376 up->ier |= UART_IER_MSI;
1377
1378 serial8250_rpm_get(up);
1379 serial_port_out(port, UART_IER, up->ier);
1380 serial8250_rpm_put(up);
1381}
1382
1383/*
1384 * serial8250_rx_chars: processes according to the passed in LSR
1385 * value, and returns the remaining LSR bits not handled
1386 * by this Rx routine.
1387 */
1388unsigned char
1389serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr)
1390{
1391 struct uart_port *port = &up->port;
1392 unsigned char ch;
1393 int max_count = 256;
1394 char flag;
1395
1396 do {
1397 if (likely(lsr & UART_LSR_DR))
1398 ch = serial_in(up, UART_RX);
1399 else
1400 /*
1401 * Intel 82571 has a Serial Over Lan device that will
1402 * set UART_LSR_BI without setting UART_LSR_DR when
1403 * it receives a break. To avoid reading from the
1404 * receive buffer without UART_LSR_DR bit set, we
1405 * just force the read character to be 0
1406 */
1407 ch = 0;
1408
1409 flag = TTY_NORMAL;
1410 port->icount.rx++;
1411
1412 lsr |= up->lsr_saved_flags;
1413 up->lsr_saved_flags = 0;
1414
1415 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
1416 if (lsr & UART_LSR_BI) {
1417 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1418 port->icount.brk++;
1419 /*
1420 * We do the SysRQ and SAK checking
1421 * here because otherwise the break
1422 * may get masked by ignore_status_mask
1423 * or read_status_mask.
1424 */
1425 if (uart_handle_break(port))
1426 goto ignore_char;
1427 } else if (lsr & UART_LSR_PE)
1428 port->icount.parity++;
1429 else if (lsr & UART_LSR_FE)
1430 port->icount.frame++;
1431 if (lsr & UART_LSR_OE)
1432 port->icount.overrun++;
1433
1434 /*
1435 * Mask off conditions which should be ignored.
1436 */
1437 lsr &= port->read_status_mask;
1438
1439 if (lsr & UART_LSR_BI) {
1440 DEBUG_INTR("handling break....");
1441 flag = TTY_BREAK;
1442 } else if (lsr & UART_LSR_PE)
1443 flag = TTY_PARITY;
1444 else if (lsr & UART_LSR_FE)
1445 flag = TTY_FRAME;
1446 }
1447 if (uart_handle_sysrq_char(port, ch))
1448 goto ignore_char;
1449
1450 uart_insert_char(port, lsr, UART_LSR_OE, ch, flag);
1451
1452ignore_char:
1453 lsr = serial_in(up, UART_LSR);
1454 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (--max_count > 0));
1455 spin_unlock(&port->lock);
1456 tty_flip_buffer_push(&port->state->port);
1457 spin_lock(&port->lock);
1458 return lsr;
1459}
1460EXPORT_SYMBOL_GPL(serial8250_rx_chars);
1461
1462void serial8250_tx_chars(struct uart_8250_port *up)
1463{
1464 struct uart_port *port = &up->port;
1465 struct circ_buf *xmit = &port->state->xmit;
1466 int count;
1467
1468 if (port->x_char) {
1469 serial_out(up, UART_TX, port->x_char);
1470 port->icount.tx++;
1471 port->x_char = 0;
1472 return;
1473 }
1474 if (uart_tx_stopped(port)) {
1475 serial8250_stop_tx(port);
1476 return;
1477 }
1478 if (uart_circ_empty(xmit)) {
1479 __stop_tx(up);
1480 return;
1481 }
1482
1483 count = up->tx_loadsz;
1484 do {
1485 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1486 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1487 port->icount.tx++;
1488 if (uart_circ_empty(xmit))
1489 break;
1490 if (up->capabilities & UART_CAP_HFIFO) {
1491 if ((serial_port_in(port, UART_LSR) & BOTH_EMPTY) !=
1492 BOTH_EMPTY)
1493 break;
1494 }
1495 } while (--count > 0);
1496
1497 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1498 uart_write_wakeup(port);
1499
1500 DEBUG_INTR("THRE...");
1501
1502 /*
1503 * With RPM enabled, we have to wait until the FIFO is empty before the
1504 * HW can go idle. So we get here once again with empty FIFO and disable
1505 * the interrupt and RPM in __stop_tx()
1506 */
1507 if (uart_circ_empty(xmit) && !(up->capabilities & UART_CAP_RPM))
1508 __stop_tx(up);
1509}
1510EXPORT_SYMBOL_GPL(serial8250_tx_chars);
1511
1512/* Caller holds uart port lock */
1513unsigned int serial8250_modem_status(struct uart_8250_port *up)
1514{
1515 struct uart_port *port = &up->port;
1516 unsigned int status = serial_in(up, UART_MSR);
1517
1518 status |= up->msr_saved_flags;
1519 up->msr_saved_flags = 0;
1520 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
1521 port->state != NULL) {
1522 if (status & UART_MSR_TERI)
1523 port->icount.rng++;
1524 if (status & UART_MSR_DDSR)
1525 port->icount.dsr++;
1526 if (status & UART_MSR_DDCD)
1527 uart_handle_dcd_change(port, status & UART_MSR_DCD);
1528 if (status & UART_MSR_DCTS)
1529 uart_handle_cts_change(port, status & UART_MSR_CTS);
1530
1531 wake_up_interruptible(&port->state->port.delta_msr_wait);
1532 }
1533
1534 return status;
1535}
1536EXPORT_SYMBOL_GPL(serial8250_modem_status);
1537
1538/*
1539 * This handles the interrupt from one port.
1540 */
1541int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
1542{
1543 unsigned char status;
1544 unsigned long flags;
1545 struct uart_8250_port *up = up_to_u8250p(port);
1546 int dma_err = 0;
1547
1548 if (iir & UART_IIR_NO_INT)
1549 return 0;
1550
1551 spin_lock_irqsave(&port->lock, flags);
1552
1553 status = serial_port_in(port, UART_LSR);
1554
1555 DEBUG_INTR("status = %x...", status);
1556
1557 if (status & (UART_LSR_DR | UART_LSR_BI)) {
1558 if (up->dma)
1559 dma_err = up->dma->rx_dma(up, iir);
1560
1561 if (!up->dma || dma_err)
1562 status = serial8250_rx_chars(up, status);
1563 }
1564 serial8250_modem_status(up);
1565 if ((!up->dma || (up->dma && up->dma->tx_err)) &&
1566 (status & UART_LSR_THRE))
1567 serial8250_tx_chars(up);
1568
1569 spin_unlock_irqrestore(&port->lock, flags);
1570 return 1;
1571}
1572EXPORT_SYMBOL_GPL(serial8250_handle_irq);
1573
1574static int serial8250_default_handle_irq(struct uart_port *port)
1575{
1576 struct uart_8250_port *up = up_to_u8250p(port);
1577 unsigned int iir;
1578 int ret;
1579
1580 serial8250_rpm_get(up);
1581
1582 iir = serial_port_in(port, UART_IIR);
1583 ret = serial8250_handle_irq(port, iir);
1584
1585 serial8250_rpm_put(up);
1586 return ret;
1587}
1588
1589/*
1590 * These Exar UARTs have an extra interrupt indicator that could
1591 * fire for a few unimplemented interrupts. One of which is a
1592 * wakeup event when coming out of sleep. Put this here just
1593 * to be on the safe side that these interrupts don't go unhandled.
1594 */
1595static int exar_handle_irq(struct uart_port *port)
1596{
1597 unsigned char int0, int1, int2, int3;
1598 unsigned int iir = serial_port_in(port, UART_IIR);
1599 int ret;
1600
1601 ret = serial8250_handle_irq(port, iir);
1602
1603 if ((port->type == PORT_XR17V35X) ||
1604 (port->type == PORT_XR17D15X)) {
1605 int0 = serial_port_in(port, 0x80);
1606 int1 = serial_port_in(port, 0x81);
1607 int2 = serial_port_in(port, 0x82);
1608 int3 = serial_port_in(port, 0x83);
1609 }
1610
1611 return ret;
1612}
1613
1614static unsigned int serial8250_tx_empty(struct uart_port *port)
1615{
1616 struct uart_8250_port *up = up_to_u8250p(port);
1617 unsigned long flags;
1618 unsigned int lsr;
1619
1620 serial8250_rpm_get(up);
1621
1622 spin_lock_irqsave(&port->lock, flags);
1623 lsr = serial_port_in(port, UART_LSR);
1624 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1625 spin_unlock_irqrestore(&port->lock, flags);
1626
1627 serial8250_rpm_put(up);
1628
1629 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
1630}
1631
1632static unsigned int serial8250_get_mctrl(struct uart_port *port)
1633{
1634 struct uart_8250_port *up = up_to_u8250p(port);
1635 unsigned int status;
1636 unsigned int ret;
1637
1638 serial8250_rpm_get(up);
1639 status = serial8250_modem_status(up);
1640 serial8250_rpm_put(up);
1641
1642 ret = 0;
1643 if (status & UART_MSR_DCD)
1644 ret |= TIOCM_CAR;
1645 if (status & UART_MSR_RI)
1646 ret |= TIOCM_RNG;
1647 if (status & UART_MSR_DSR)
1648 ret |= TIOCM_DSR;
1649 if (status & UART_MSR_CTS)
1650 ret |= TIOCM_CTS;
1651 return ret;
1652}
1653
1654void serial8250_do_set_mctrl(struct uart_port *port, unsigned int mctrl)
1655{
1656 struct uart_8250_port *up = up_to_u8250p(port);
1657 unsigned char mcr = 0;
1658
1659 if (mctrl & TIOCM_RTS)
1660 mcr |= UART_MCR_RTS;
1661 if (mctrl & TIOCM_DTR)
1662 mcr |= UART_MCR_DTR;
1663 if (mctrl & TIOCM_OUT1)
1664 mcr |= UART_MCR_OUT1;
1665 if (mctrl & TIOCM_OUT2)
1666 mcr |= UART_MCR_OUT2;
1667 if (mctrl & TIOCM_LOOP)
1668 mcr |= UART_MCR_LOOP;
1669
1670 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1671
1672 serial_port_out(port, UART_MCR, mcr);
1673}
1674EXPORT_SYMBOL_GPL(serial8250_do_set_mctrl);
1675
1676static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1677{
1678 if (port->set_mctrl)
1679 port->set_mctrl(port, mctrl);
1680 else
1681 serial8250_do_set_mctrl(port, mctrl);
1682}
1683
1684static void serial8250_break_ctl(struct uart_port *port, int break_state)
1685{
1686 struct uart_8250_port *up = up_to_u8250p(port);
1687 unsigned long flags;
1688
1689 serial8250_rpm_get(up);
1690 spin_lock_irqsave(&port->lock, flags);
1691 if (break_state == -1)
1692 up->lcr |= UART_LCR_SBC;
1693 else
1694 up->lcr &= ~UART_LCR_SBC;
1695 serial_port_out(port, UART_LCR, up->lcr);
1696 spin_unlock_irqrestore(&port->lock, flags);
1697 serial8250_rpm_put(up);
1698}
1699
1700/*
1701 * Wait for transmitter & holding register to empty
1702 */
1703static void wait_for_xmitr(struct uart_8250_port *up, int bits)
1704{
1705 unsigned int status, tmout = 10000;
1706
1707 /* Wait up to 10ms for the character(s) to be sent. */
1708 for (;;) {
1709 status = serial_in(up, UART_LSR);
1710
1711 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
1712
1713 if ((status & bits) == bits)
1714 break;
1715 if (--tmout == 0)
1716 break;
1717 udelay(1);
1718 }
1719
1720 /* Wait up to 1s for flow control if necessary */
1721 if (up->port.flags & UPF_CONS_FLOW) {
1722 unsigned int tmout;
1723 for (tmout = 1000000; tmout; tmout--) {
1724 unsigned int msr = serial_in(up, UART_MSR);
1725 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1726 if (msr & UART_MSR_CTS)
1727 break;
1728 udelay(1);
1729 touch_nmi_watchdog();
1730 }
1731 }
1732}
1733
1734#ifdef CONFIG_CONSOLE_POLL
1735/*
1736 * Console polling routines for writing and reading from the uart while
1737 * in an interrupt or debug context.
1738 */
1739
1740static int serial8250_get_poll_char(struct uart_port *port)
1741{
1742 struct uart_8250_port *up = up_to_u8250p(port);
1743 unsigned char lsr;
1744 int status;
1745
1746 serial8250_rpm_get(up);
1747
1748 lsr = serial_port_in(port, UART_LSR);
1749
1750 if (!(lsr & UART_LSR_DR)) {
1751 status = NO_POLL_CHAR;
1752 goto out;
1753 }
1754
1755 status = serial_port_in(port, UART_RX);
1756out:
1757 serial8250_rpm_put(up);
1758 return status;
1759}
1760
1761
1762static void serial8250_put_poll_char(struct uart_port *port,
1763 unsigned char c)
1764{
1765 unsigned int ier;
1766 struct uart_8250_port *up = up_to_u8250p(port);
1767
1768 serial8250_rpm_get(up);
1769 /*
1770 * First save the IER then disable the interrupts
1771 */
1772 ier = serial_port_in(port, UART_IER);
1773 if (up->capabilities & UART_CAP_UUE)
1774 serial_port_out(port, UART_IER, UART_IER_UUE);
1775 else
1776 serial_port_out(port, UART_IER, 0);
1777
1778 wait_for_xmitr(up, BOTH_EMPTY);
1779 /*
1780 * Send the character out.
1781 */
1782 serial_port_out(port, UART_TX, c);
1783
1784 /*
1785 * Finally, wait for transmitter to become empty
1786 * and restore the IER
1787 */
1788 wait_for_xmitr(up, BOTH_EMPTY);
1789 serial_port_out(port, UART_IER, ier);
1790 serial8250_rpm_put(up);
1791}
1792
1793#endif /* CONFIG_CONSOLE_POLL */
1794
1795int serial8250_do_startup(struct uart_port *port)
1796{
1797 struct uart_8250_port *up = up_to_u8250p(port);
1798 unsigned long flags;
1799 unsigned char lsr, iir;
1800 int retval;
1801
Peter Hurleyb6830f62015-06-27 09:19:00 -04001802 if (!port->fifosize)
1803 port->fifosize = uart_config[port->type].fifo_size;
1804 if (!up->tx_loadsz)
1805 up->tx_loadsz = uart_config[port->type].tx_loadsz;
1806 if (!up->capabilities)
1807 up->capabilities = uart_config[port->type].flags;
1808 up->mcr = 0;
1809
1810 if (port->iotype != up->cur_iotype)
1811 set_io_from_upio(port);
1812
1813 serial8250_rpm_get(up);
1814 if (port->type == PORT_16C950) {
1815 /* Wake up and initialize UART */
1816 up->acr = 0;
1817 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1818 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1819 serial_port_out(port, UART_IER, 0);
1820 serial_port_out(port, UART_LCR, 0);
1821 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
1822 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1823 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1824 serial_port_out(port, UART_LCR, 0);
1825 }
1826
1827#ifdef CONFIG_SERIAL_8250_RSA
1828 /*
1829 * If this is an RSA port, see if we can kick it up to the
1830 * higher speed clock.
1831 */
1832 enable_rsa(up);
1833#endif
Joerg Roedelda891642015-07-16 10:29:13 +02001834
1835 if (port->type == PORT_XR17V35X) {
1836 /*
1837 * First enable access to IER [7:5], ISR [5:4], FCR [5:4],
1838 * MCR [7:5] and MSR [7:0]
1839 */
1840 serial_port_out(port, UART_XR_EFR, UART_EFR_ECB);
1841
1842 /*
1843 * Make sure all interrups are masked until initialization is
1844 * complete and the FIFOs are cleared
1845 */
1846 serial_port_out(port, UART_IER, 0);
1847 }
1848
Peter Hurleyb6830f62015-06-27 09:19:00 -04001849 /*
1850 * Clear the FIFO buffers and disable them.
1851 * (they will be reenabled in set_termios())
1852 */
1853 serial8250_clear_fifos(up);
1854
1855 /*
1856 * Clear the interrupt registers.
1857 */
1858 serial_port_in(port, UART_LSR);
1859 serial_port_in(port, UART_RX);
1860 serial_port_in(port, UART_IIR);
1861 serial_port_in(port, UART_MSR);
1862
1863 /*
1864 * At this point, there's no way the LSR could still be 0xff;
1865 * if it is, then bail out, because there's likely no UART
1866 * here.
1867 */
1868 if (!(port->flags & UPF_BUGGY_UART) &&
1869 (serial_port_in(port, UART_LSR) == 0xff)) {
1870 printk_ratelimited(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
1871 serial_index(port));
1872 retval = -ENODEV;
1873 goto out;
1874 }
1875
1876 /*
1877 * For a XR16C850, we need to set the trigger levels
1878 */
1879 if (port->type == PORT_16850) {
1880 unsigned char fctr;
1881
1882 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1883
1884 fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
1885 serial_port_out(port, UART_FCTR,
1886 fctr | UART_FCTR_TRGD | UART_FCTR_RX);
1887 serial_port_out(port, UART_TRG, UART_TRG_96);
1888 serial_port_out(port, UART_FCTR,
1889 fctr | UART_FCTR_TRGD | UART_FCTR_TX);
1890 serial_port_out(port, UART_TRG, UART_TRG_96);
1891
1892 serial_port_out(port, UART_LCR, 0);
1893 }
1894
1895 if (port->irq) {
1896 unsigned char iir1;
1897 /*
1898 * Test for UARTs that do not reassert THRE when the
1899 * transmitter is idle and the interrupt has already
1900 * been cleared. Real 16550s should always reassert
1901 * this interrupt whenever the transmitter is idle and
1902 * the interrupt is enabled. Delays are necessary to
1903 * allow register changes to become visible.
1904 */
1905 spin_lock_irqsave(&port->lock, flags);
1906 if (up->port.irqflags & IRQF_SHARED)
1907 disable_irq_nosync(port->irq);
1908
1909 wait_for_xmitr(up, UART_LSR_THRE);
1910 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
1911 udelay(1); /* allow THRE to set */
1912 iir1 = serial_port_in(port, UART_IIR);
1913 serial_port_out(port, UART_IER, 0);
1914 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
1915 udelay(1); /* allow a working UART time to re-assert THRE */
1916 iir = serial_port_in(port, UART_IIR);
1917 serial_port_out(port, UART_IER, 0);
1918
1919 if (port->irqflags & IRQF_SHARED)
1920 enable_irq(port->irq);
1921 spin_unlock_irqrestore(&port->lock, flags);
1922
1923 /*
1924 * If the interrupt is not reasserted, or we otherwise
1925 * don't trust the iir, setup a timer to kick the UART
1926 * on a regular basis.
1927 */
1928 if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) ||
1929 up->port.flags & UPF_BUG_THRE) {
1930 up->bugs |= UART_BUG_THRE;
1931 }
1932 }
1933
1934 retval = up->ops->setup_irq(up);
1935 if (retval)
1936 goto out;
1937
1938 /*
1939 * Now, initialize the UART
1940 */
1941 serial_port_out(port, UART_LCR, UART_LCR_WLEN8);
1942
1943 spin_lock_irqsave(&port->lock, flags);
1944 if (up->port.flags & UPF_FOURPORT) {
1945 if (!up->port.irq)
1946 up->port.mctrl |= TIOCM_OUT1;
1947 } else
1948 /*
1949 * Most PC uarts need OUT2 raised to enable interrupts.
1950 */
1951 if (port->irq)
1952 up->port.mctrl |= TIOCM_OUT2;
1953
1954 serial8250_set_mctrl(port, port->mctrl);
1955
1956 /* Serial over Lan (SoL) hack:
1957 Intel 8257x Gigabit ethernet chips have a
1958 16550 emulation, to be used for Serial Over Lan.
1959 Those chips take a longer time than a normal
1960 serial device to signalize that a transmission
1961 data was queued. Due to that, the above test generally
1962 fails. One solution would be to delay the reading of
1963 iir. However, this is not reliable, since the timeout
1964 is variable. So, let's just don't test if we receive
1965 TX irq. This way, we'll never enable UART_BUG_TXEN.
1966 */
1967 if (up->port.flags & UPF_NO_TXEN_TEST)
1968 goto dont_test_tx_en;
1969
1970 /*
1971 * Do a quick test to see if we receive an
1972 * interrupt when we enable the TX irq.
1973 */
1974 serial_port_out(port, UART_IER, UART_IER_THRI);
1975 lsr = serial_port_in(port, UART_LSR);
1976 iir = serial_port_in(port, UART_IIR);
1977 serial_port_out(port, UART_IER, 0);
1978
1979 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
1980 if (!(up->bugs & UART_BUG_TXEN)) {
1981 up->bugs |= UART_BUG_TXEN;
1982 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
1983 serial_index(port));
1984 }
1985 } else {
1986 up->bugs &= ~UART_BUG_TXEN;
1987 }
1988
1989dont_test_tx_en:
1990 spin_unlock_irqrestore(&port->lock, flags);
1991
1992 /*
1993 * Clear the interrupt registers again for luck, and clear the
1994 * saved flags to avoid getting false values from polling
1995 * routines or the previous session.
1996 */
1997 serial_port_in(port, UART_LSR);
1998 serial_port_in(port, UART_RX);
1999 serial_port_in(port, UART_IIR);
2000 serial_port_in(port, UART_MSR);
2001 up->lsr_saved_flags = 0;
2002 up->msr_saved_flags = 0;
2003
2004 /*
2005 * Request DMA channels for both RX and TX.
2006 */
2007 if (up->dma) {
2008 retval = serial8250_request_dma(up);
2009 if (retval) {
2010 pr_warn_ratelimited("ttyS%d - failed to request DMA\n",
2011 serial_index(port));
2012 up->dma = NULL;
2013 }
2014 }
2015
2016 /*
Peter Hurleyee3ad902015-07-12 21:11:31 -04002017 * Set the IER shadow for rx interrupts but defer actual interrupt
2018 * enable until after the FIFOs are enabled; otherwise, an already-
2019 * active sender can swamp the interrupt handler with "too much work".
Peter Hurleyb6830f62015-06-27 09:19:00 -04002020 */
2021 up->ier = UART_IER_RLSI | UART_IER_RDI;
Peter Hurleyb6830f62015-06-27 09:19:00 -04002022
2023 if (port->flags & UPF_FOURPORT) {
2024 unsigned int icp;
2025 /*
2026 * Enable interrupts on the AST Fourport board
2027 */
2028 icp = (port->iobase & 0xfe0) | 0x01f;
2029 outb_p(0x80, icp);
2030 inb_p(icp);
2031 }
2032 retval = 0;
2033out:
2034 serial8250_rpm_put(up);
2035 return retval;
2036}
2037EXPORT_SYMBOL_GPL(serial8250_do_startup);
2038
2039static int serial8250_startup(struct uart_port *port)
2040{
2041 if (port->startup)
2042 return port->startup(port);
2043 return serial8250_do_startup(port);
2044}
2045
2046void serial8250_do_shutdown(struct uart_port *port)
2047{
2048 struct uart_8250_port *up = up_to_u8250p(port);
2049 unsigned long flags;
2050
2051 serial8250_rpm_get(up);
2052 /*
2053 * Disable interrupts from this port
2054 */
2055 up->ier = 0;
2056 serial_port_out(port, UART_IER, 0);
2057
2058 if (up->dma)
2059 serial8250_release_dma(up);
2060
2061 spin_lock_irqsave(&port->lock, flags);
2062 if (port->flags & UPF_FOURPORT) {
2063 /* reset interrupts on the AST Fourport board */
2064 inb((port->iobase & 0xfe0) | 0x1f);
2065 port->mctrl |= TIOCM_OUT1;
2066 } else
2067 port->mctrl &= ~TIOCM_OUT2;
2068
2069 serial8250_set_mctrl(port, port->mctrl);
2070 spin_unlock_irqrestore(&port->lock, flags);
2071
2072 /*
2073 * Disable break condition and FIFOs
2074 */
2075 serial_port_out(port, UART_LCR,
2076 serial_port_in(port, UART_LCR) & ~UART_LCR_SBC);
2077 serial8250_clear_fifos(up);
2078
2079#ifdef CONFIG_SERIAL_8250_RSA
2080 /*
2081 * Reset the RSA board back to 115kbps compat mode.
2082 */
2083 disable_rsa(up);
2084#endif
2085
2086 /*
2087 * Read data port to reset things, and then unlink from
2088 * the IRQ chain.
2089 */
2090 serial_port_in(port, UART_RX);
2091 serial8250_rpm_put(up);
2092
2093 up->ops->release_irq(up);
2094}
2095EXPORT_SYMBOL_GPL(serial8250_do_shutdown);
2096
2097static void serial8250_shutdown(struct uart_port *port)
2098{
2099 if (port->shutdown)
2100 port->shutdown(port);
2101 else
2102 serial8250_do_shutdown(port);
2103}
2104
2105/*
2106 * XR17V35x UARTs have an extra fractional divisor register (DLD)
2107 * Calculate divisor with extra 4-bit fractional portion
2108 */
2109static unsigned int xr17v35x_get_divisor(struct uart_8250_port *up,
2110 unsigned int baud,
2111 unsigned int *frac)
2112{
2113 struct uart_port *port = &up->port;
2114 unsigned int quot_16;
2115
2116 quot_16 = DIV_ROUND_CLOSEST(port->uartclk, baud);
2117 *frac = quot_16 & 0x0f;
2118
2119 return quot_16 >> 4;
2120}
2121
2122static unsigned int serial8250_get_divisor(struct uart_8250_port *up,
2123 unsigned int baud,
2124 unsigned int *frac)
2125{
2126 struct uart_port *port = &up->port;
2127 unsigned int quot;
2128
2129 /*
2130 * Handle magic divisors for baud rates above baud_base on
2131 * SMSC SuperIO chips.
2132 *
2133 */
2134 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2135 baud == (port->uartclk/4))
2136 quot = 0x8001;
2137 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2138 baud == (port->uartclk/8))
2139 quot = 0x8002;
2140 else if (up->port.type == PORT_XR17V35X)
2141 quot = xr17v35x_get_divisor(up, baud, frac);
2142 else
2143 quot = uart_get_divisor(port, baud);
2144
2145 /*
2146 * Oxford Semi 952 rev B workaround
2147 */
2148 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
2149 quot++;
2150
2151 return quot;
2152}
2153
2154static unsigned char serial8250_compute_lcr(struct uart_8250_port *up,
2155 tcflag_t c_cflag)
2156{
2157 unsigned char cval;
2158
2159 switch (c_cflag & CSIZE) {
2160 case CS5:
2161 cval = UART_LCR_WLEN5;
2162 break;
2163 case CS6:
2164 cval = UART_LCR_WLEN6;
2165 break;
2166 case CS7:
2167 cval = UART_LCR_WLEN7;
2168 break;
2169 default:
2170 case CS8:
2171 cval = UART_LCR_WLEN8;
2172 break;
2173 }
2174
2175 if (c_cflag & CSTOPB)
2176 cval |= UART_LCR_STOP;
2177 if (c_cflag & PARENB) {
2178 cval |= UART_LCR_PARITY;
2179 if (up->bugs & UART_BUG_PARITY)
2180 up->fifo_bug = true;
2181 }
2182 if (!(c_cflag & PARODD))
2183 cval |= UART_LCR_EPAR;
2184#ifdef CMSPAR
2185 if (c_cflag & CMSPAR)
2186 cval |= UART_LCR_SPAR;
2187#endif
2188
2189 return cval;
2190}
2191
2192static void serial8250_set_divisor(struct uart_port *port, unsigned int baud,
2193 unsigned int quot, unsigned int quot_frac)
2194{
2195 struct uart_8250_port *up = up_to_u8250p(port);
2196
2197 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
2198 if (is_omap1510_8250(up)) {
2199 if (baud == 115200) {
2200 quot = 1;
2201 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1);
2202 } else
2203 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0);
2204 }
2205
2206 /*
2207 * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2,
2208 * otherwise just set DLAB
2209 */
2210 if (up->capabilities & UART_NATSEMI)
2211 serial_port_out(port, UART_LCR, 0xe0);
2212 else
2213 serial_port_out(port, UART_LCR, up->lcr | UART_LCR_DLAB);
2214
2215 serial_dl_write(up, quot);
2216
2217 /* XR17V35x UARTs have an extra fractional divisor register (DLD) */
2218 if (up->port.type == PORT_XR17V35X)
2219 serial_port_out(port, 0x2, quot_frac);
2220}
2221
2222void
2223serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2224 struct ktermios *old)
2225{
2226 struct uart_8250_port *up = up_to_u8250p(port);
2227 unsigned char cval;
2228 unsigned long flags;
2229 unsigned int baud, quot, frac = 0;
2230
2231 cval = serial8250_compute_lcr(up, termios->c_cflag);
2232
2233 /*
2234 * Ask the core to calculate the divisor for us.
2235 */
2236 baud = uart_get_baud_rate(port, termios, old,
2237 port->uartclk / 16 / 0xffff,
2238 port->uartclk / 16);
2239 quot = serial8250_get_divisor(up, baud, &frac);
2240
2241 /*
2242 * Ok, we're now changing the port state. Do it with
2243 * interrupts disabled.
2244 */
2245 serial8250_rpm_get(up);
2246 spin_lock_irqsave(&port->lock, flags);
2247
2248 up->lcr = cval; /* Save computed LCR */
2249
2250 if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) {
2251 /* NOTE: If fifo_bug is not set, a user can set RX_trigger. */
2252 if ((baud < 2400 && !up->dma) || up->fifo_bug) {
2253 up->fcr &= ~UART_FCR_TRIGGER_MASK;
2254 up->fcr |= UART_FCR_TRIGGER_1;
2255 }
2256 }
2257
2258 /*
2259 * MCR-based auto flow control. When AFE is enabled, RTS will be
2260 * deasserted when the receive FIFO contains more characters than
2261 * the trigger, or the MCR RTS bit is cleared. In the case where
2262 * the remote UART is not using CTS auto flow control, we must
2263 * have sufficient FIFO entries for the latency of the remote
2264 * UART to respond. IOW, at least 32 bytes of FIFO.
2265 */
2266 if (up->capabilities & UART_CAP_AFE && port->fifosize >= 32) {
2267 up->mcr &= ~UART_MCR_AFE;
2268 if (termios->c_cflag & CRTSCTS)
2269 up->mcr |= UART_MCR_AFE;
2270 }
2271
2272 /*
2273 * Update the per-port timeout.
2274 */
2275 uart_update_timeout(port, termios->c_cflag, baud);
2276
2277 port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2278 if (termios->c_iflag & INPCK)
2279 port->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2280 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
2281 port->read_status_mask |= UART_LSR_BI;
2282
2283 /*
2284 * Characteres to ignore
2285 */
2286 port->ignore_status_mask = 0;
2287 if (termios->c_iflag & IGNPAR)
2288 port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2289 if (termios->c_iflag & IGNBRK) {
2290 port->ignore_status_mask |= UART_LSR_BI;
2291 /*
2292 * If we're ignoring parity and break indicators,
2293 * ignore overruns too (for real raw support).
2294 */
2295 if (termios->c_iflag & IGNPAR)
2296 port->ignore_status_mask |= UART_LSR_OE;
2297 }
2298
2299 /*
2300 * ignore all characters if CREAD is not set
2301 */
2302 if ((termios->c_cflag & CREAD) == 0)
2303 port->ignore_status_mask |= UART_LSR_DR;
2304
2305 /*
2306 * CTS flow control flag and modem status interrupts
2307 */
2308 up->ier &= ~UART_IER_MSI;
2309 if (!(up->bugs & UART_BUG_NOMSR) &&
2310 UART_ENABLE_MS(&up->port, termios->c_cflag))
2311 up->ier |= UART_IER_MSI;
2312 if (up->capabilities & UART_CAP_UUE)
2313 up->ier |= UART_IER_UUE;
2314 if (up->capabilities & UART_CAP_RTOIE)
2315 up->ier |= UART_IER_RTOIE;
2316
2317 serial_port_out(port, UART_IER, up->ier);
2318
2319 if (up->capabilities & UART_CAP_EFR) {
2320 unsigned char efr = 0;
2321 /*
2322 * TI16C752/Startech hardware flow control. FIXME:
2323 * - TI16C752 requires control thresholds to be set.
2324 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2325 */
2326 if (termios->c_cflag & CRTSCTS)
2327 efr |= UART_EFR_CTS;
2328
2329 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
2330 if (port->flags & UPF_EXAR_EFR)
2331 serial_port_out(port, UART_XR_EFR, efr);
2332 else
2333 serial_port_out(port, UART_EFR, efr);
2334 }
2335
2336 serial8250_set_divisor(port, baud, quot, frac);
2337
2338 /*
2339 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2340 * is written without DLAB set, this mode will be disabled.
2341 */
2342 if (port->type == PORT_16750)
2343 serial_port_out(port, UART_FCR, up->fcr);
2344
2345 serial_port_out(port, UART_LCR, up->lcr); /* reset DLAB */
2346 if (port->type != PORT_16750) {
2347 /* emulated UARTs (Lucent Venus 167x) need two steps */
2348 if (up->fcr & UART_FCR_ENABLE_FIFO)
2349 serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);
2350 serial_port_out(port, UART_FCR, up->fcr); /* set fcr */
2351 }
2352 serial8250_set_mctrl(port, port->mctrl);
2353 spin_unlock_irqrestore(&port->lock, flags);
2354 serial8250_rpm_put(up);
2355
2356 /* Don't rewrite B0 */
2357 if (tty_termios_baud_rate(termios))
2358 tty_termios_encode_baud_rate(termios, baud, baud);
2359}
2360EXPORT_SYMBOL(serial8250_do_set_termios);
2361
2362static void
2363serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2364 struct ktermios *old)
2365{
2366 if (port->set_termios)
2367 port->set_termios(port, termios, old);
2368 else
2369 serial8250_do_set_termios(port, termios, old);
2370}
2371
2372static void
2373serial8250_set_ldisc(struct uart_port *port, struct ktermios *termios)
2374{
2375 if (termios->c_line == N_PPS) {
2376 port->flags |= UPF_HARDPPS_CD;
2377 spin_lock_irq(&port->lock);
2378 serial8250_enable_ms(port);
2379 spin_unlock_irq(&port->lock);
2380 } else {
2381 port->flags &= ~UPF_HARDPPS_CD;
2382 if (!UART_ENABLE_MS(port, termios->c_cflag)) {
2383 spin_lock_irq(&port->lock);
2384 serial8250_disable_ms(port);
2385 spin_unlock_irq(&port->lock);
2386 }
2387 }
2388}
2389
2390
2391void serial8250_do_pm(struct uart_port *port, unsigned int state,
2392 unsigned int oldstate)
2393{
2394 struct uart_8250_port *p = up_to_u8250p(port);
2395
2396 serial8250_set_sleep(p, state != 0);
2397}
2398EXPORT_SYMBOL(serial8250_do_pm);
2399
2400static void
2401serial8250_pm(struct uart_port *port, unsigned int state,
2402 unsigned int oldstate)
2403{
2404 if (port->pm)
2405 port->pm(port, state, oldstate);
2406 else
2407 serial8250_do_pm(port, state, oldstate);
2408}
2409
2410static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2411{
2412 if (pt->port.mapsize)
2413 return pt->port.mapsize;
2414 if (pt->port.iotype == UPIO_AU) {
2415 if (pt->port.type == PORT_RT2880)
2416 return 0x100;
2417 return 0x1000;
2418 }
2419 if (is_omap1_8250(pt))
2420 return 0x16 << pt->port.regshift;
2421
2422 return 8 << pt->port.regshift;
2423}
2424
2425/*
2426 * Resource handling.
2427 */
2428static int serial8250_request_std_resource(struct uart_8250_port *up)
2429{
2430 unsigned int size = serial8250_port_size(up);
2431 struct uart_port *port = &up->port;
2432 int ret = 0;
2433
2434 switch (port->iotype) {
2435 case UPIO_AU:
2436 case UPIO_TSI:
2437 case UPIO_MEM32:
2438 case UPIO_MEM32BE:
2439 case UPIO_MEM:
2440 if (!port->mapbase)
2441 break;
2442
2443 if (!request_mem_region(port->mapbase, size, "serial")) {
2444 ret = -EBUSY;
2445 break;
2446 }
2447
2448 if (port->flags & UPF_IOREMAP) {
2449 port->membase = ioremap_nocache(port->mapbase, size);
2450 if (!port->membase) {
2451 release_mem_region(port->mapbase, size);
2452 ret = -ENOMEM;
2453 }
2454 }
2455 break;
2456
2457 case UPIO_HUB6:
2458 case UPIO_PORT:
2459 if (!request_region(port->iobase, size, "serial"))
2460 ret = -EBUSY;
2461 break;
2462 }
2463 return ret;
2464}
2465
2466static void serial8250_release_std_resource(struct uart_8250_port *up)
2467{
2468 unsigned int size = serial8250_port_size(up);
2469 struct uart_port *port = &up->port;
2470
2471 switch (port->iotype) {
2472 case UPIO_AU:
2473 case UPIO_TSI:
2474 case UPIO_MEM32:
2475 case UPIO_MEM32BE:
2476 case UPIO_MEM:
2477 if (!port->mapbase)
2478 break;
2479
2480 if (port->flags & UPF_IOREMAP) {
2481 iounmap(port->membase);
2482 port->membase = NULL;
2483 }
2484
2485 release_mem_region(port->mapbase, size);
2486 break;
2487
2488 case UPIO_HUB6:
2489 case UPIO_PORT:
2490 release_region(port->iobase, size);
2491 break;
2492 }
2493}
2494
2495static void serial8250_release_port(struct uart_port *port)
2496{
2497 struct uart_8250_port *up = up_to_u8250p(port);
2498
2499 serial8250_release_std_resource(up);
2500}
2501
2502static int serial8250_request_port(struct uart_port *port)
2503{
2504 struct uart_8250_port *up = up_to_u8250p(port);
Peter Hurleyb6830f62015-06-27 09:19:00 -04002505
Maciej S. Szmigieroe4fda3a2015-09-27 16:25:56 +02002506 return serial8250_request_std_resource(up);
Peter Hurleyb6830f62015-06-27 09:19:00 -04002507}
2508
2509static int fcr_get_rxtrig_bytes(struct uart_8250_port *up)
2510{
2511 const struct serial8250_config *conf_type = &uart_config[up->port.type];
2512 unsigned char bytes;
2513
2514 bytes = conf_type->rxtrig_bytes[UART_FCR_R_TRIG_BITS(up->fcr)];
2515
2516 return bytes ? bytes : -EOPNOTSUPP;
2517}
2518
2519static int bytes_to_fcr_rxtrig(struct uart_8250_port *up, unsigned char bytes)
2520{
2521 const struct serial8250_config *conf_type = &uart_config[up->port.type];
2522 int i;
2523
2524 if (!conf_type->rxtrig_bytes[UART_FCR_R_TRIG_BITS(UART_FCR_R_TRIG_00)])
2525 return -EOPNOTSUPP;
2526
2527 for (i = 1; i < UART_FCR_R_TRIG_MAX_STATE; i++) {
2528 if (bytes < conf_type->rxtrig_bytes[i])
2529 /* Use the nearest lower value */
2530 return (--i) << UART_FCR_R_TRIG_SHIFT;
2531 }
2532
2533 return UART_FCR_R_TRIG_11;
2534}
2535
2536static int do_get_rxtrig(struct tty_port *port)
2537{
2538 struct uart_state *state = container_of(port, struct uart_state, port);
2539 struct uart_port *uport = state->uart_port;
2540 struct uart_8250_port *up =
2541 container_of(uport, struct uart_8250_port, port);
2542
2543 if (!(up->capabilities & UART_CAP_FIFO) || uport->fifosize <= 1)
2544 return -EINVAL;
2545
2546 return fcr_get_rxtrig_bytes(up);
2547}
2548
2549static int do_serial8250_get_rxtrig(struct tty_port *port)
2550{
2551 int rxtrig_bytes;
2552
2553 mutex_lock(&port->mutex);
2554 rxtrig_bytes = do_get_rxtrig(port);
2555 mutex_unlock(&port->mutex);
2556
2557 return rxtrig_bytes;
2558}
2559
2560static ssize_t serial8250_get_attr_rx_trig_bytes(struct device *dev,
2561 struct device_attribute *attr, char *buf)
2562{
2563 struct tty_port *port = dev_get_drvdata(dev);
2564 int rxtrig_bytes;
2565
2566 rxtrig_bytes = do_serial8250_get_rxtrig(port);
2567 if (rxtrig_bytes < 0)
2568 return rxtrig_bytes;
2569
2570 return snprintf(buf, PAGE_SIZE, "%d\n", rxtrig_bytes);
2571}
2572
2573static int do_set_rxtrig(struct tty_port *port, unsigned char bytes)
2574{
2575 struct uart_state *state = container_of(port, struct uart_state, port);
2576 struct uart_port *uport = state->uart_port;
2577 struct uart_8250_port *up =
2578 container_of(uport, struct uart_8250_port, port);
2579 int rxtrig;
2580
2581 if (!(up->capabilities & UART_CAP_FIFO) || uport->fifosize <= 1 ||
2582 up->fifo_bug)
2583 return -EINVAL;
2584
2585 rxtrig = bytes_to_fcr_rxtrig(up, bytes);
2586 if (rxtrig < 0)
2587 return rxtrig;
2588
2589 serial8250_clear_fifos(up);
2590 up->fcr &= ~UART_FCR_TRIGGER_MASK;
2591 up->fcr |= (unsigned char)rxtrig;
2592 serial_out(up, UART_FCR, up->fcr);
2593 return 0;
2594}
2595
2596static int do_serial8250_set_rxtrig(struct tty_port *port, unsigned char bytes)
2597{
2598 int ret;
2599
2600 mutex_lock(&port->mutex);
2601 ret = do_set_rxtrig(port, bytes);
2602 mutex_unlock(&port->mutex);
2603
2604 return ret;
2605}
2606
2607static ssize_t serial8250_set_attr_rx_trig_bytes(struct device *dev,
2608 struct device_attribute *attr, const char *buf, size_t count)
2609{
2610 struct tty_port *port = dev_get_drvdata(dev);
2611 unsigned char bytes;
2612 int ret;
2613
2614 if (!count)
2615 return -EINVAL;
2616
2617 ret = kstrtou8(buf, 10, &bytes);
2618 if (ret < 0)
2619 return ret;
2620
2621 ret = do_serial8250_set_rxtrig(port, bytes);
2622 if (ret < 0)
2623 return ret;
2624
2625 return count;
2626}
2627
2628static DEVICE_ATTR(rx_trig_bytes, S_IRUSR | S_IWUSR | S_IRGRP,
2629 serial8250_get_attr_rx_trig_bytes,
2630 serial8250_set_attr_rx_trig_bytes);
2631
2632static struct attribute *serial8250_dev_attrs[] = {
2633 &dev_attr_rx_trig_bytes.attr,
2634 NULL,
2635 };
2636
2637static struct attribute_group serial8250_dev_attr_group = {
2638 .attrs = serial8250_dev_attrs,
2639 };
2640
2641static void register_dev_spec_attr_grp(struct uart_8250_port *up)
2642{
2643 const struct serial8250_config *conf_type = &uart_config[up->port.type];
2644
2645 if (conf_type->rxtrig_bytes[0])
2646 up->port.attr_group = &serial8250_dev_attr_group;
2647}
2648
2649static void serial8250_config_port(struct uart_port *port, int flags)
2650{
2651 struct uart_8250_port *up = up_to_u8250p(port);
2652 int ret;
2653
Peter Hurleyb6830f62015-06-27 09:19:00 -04002654 /*
2655 * Find the region that we can probe for. This in turn
2656 * tells us whether we can probe for the type of port.
2657 */
2658 ret = serial8250_request_std_resource(up);
2659 if (ret < 0)
2660 return;
2661
2662 if (port->iotype != up->cur_iotype)
2663 set_io_from_upio(port);
2664
2665 if (flags & UART_CONFIG_TYPE)
2666 autoconfig(up);
2667
2668 /* if access method is AU, it is a 16550 with a quirk */
2669 if (port->type == PORT_16550A && port->iotype == UPIO_AU)
2670 up->bugs |= UART_BUG_NOMSR;
2671
2672 /* HW bugs may trigger IRQ while IIR == NO_INT */
2673 if (port->type == PORT_TEGRA)
2674 up->bugs |= UART_BUG_NOMSR;
2675
2676 if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2677 autoconfig_irq(up);
2678
2679 if (port->type == PORT_UNKNOWN)
2680 serial8250_release_std_resource(up);
2681
2682 /* Fixme: probably not the best place for this */
2683 if ((port->type == PORT_XR17V35X) ||
2684 (port->type == PORT_XR17D15X))
2685 port->handle_irq = exar_handle_irq;
2686
2687 register_dev_spec_attr_grp(up);
2688 up->fcr = uart_config[up->port.type].fcr;
2689}
2690
2691static int
2692serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2693{
2694 if (ser->irq >= nr_irqs || ser->irq < 0 ||
2695 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2696 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2697 ser->type == PORT_STARTECH)
2698 return -EINVAL;
2699 return 0;
2700}
2701
2702static const char *
2703serial8250_type(struct uart_port *port)
2704{
2705 int type = port->type;
2706
2707 if (type >= ARRAY_SIZE(uart_config))
2708 type = 0;
2709 return uart_config[type].name;
2710}
2711
2712static const struct uart_ops serial8250_pops = {
2713 .tx_empty = serial8250_tx_empty,
2714 .set_mctrl = serial8250_set_mctrl,
2715 .get_mctrl = serial8250_get_mctrl,
2716 .stop_tx = serial8250_stop_tx,
2717 .start_tx = serial8250_start_tx,
2718 .throttle = serial8250_throttle,
2719 .unthrottle = serial8250_unthrottle,
2720 .stop_rx = serial8250_stop_rx,
2721 .enable_ms = serial8250_enable_ms,
2722 .break_ctl = serial8250_break_ctl,
2723 .startup = serial8250_startup,
2724 .shutdown = serial8250_shutdown,
2725 .set_termios = serial8250_set_termios,
2726 .set_ldisc = serial8250_set_ldisc,
2727 .pm = serial8250_pm,
2728 .type = serial8250_type,
2729 .release_port = serial8250_release_port,
2730 .request_port = serial8250_request_port,
2731 .config_port = serial8250_config_port,
2732 .verify_port = serial8250_verify_port,
2733#ifdef CONFIG_CONSOLE_POLL
2734 .poll_get_char = serial8250_get_poll_char,
2735 .poll_put_char = serial8250_put_poll_char,
2736#endif
2737};
2738
2739void serial8250_init_port(struct uart_8250_port *up)
2740{
2741 struct uart_port *port = &up->port;
2742
2743 spin_lock_init(&port->lock);
2744 port->ops = &serial8250_pops;
2745
2746 up->cur_iotype = 0xFF;
2747}
2748EXPORT_SYMBOL_GPL(serial8250_init_port);
2749
2750void serial8250_set_defaults(struct uart_8250_port *up)
2751{
2752 struct uart_port *port = &up->port;
2753
2754 if (up->port.flags & UPF_FIXED_TYPE) {
2755 unsigned int type = up->port.type;
2756
2757 if (!up->port.fifosize)
2758 up->port.fifosize = uart_config[type].fifo_size;
2759 if (!up->tx_loadsz)
2760 up->tx_loadsz = uart_config[type].tx_loadsz;
2761 if (!up->capabilities)
2762 up->capabilities = uart_config[type].flags;
2763 }
2764
2765 set_io_from_upio(port);
2766
2767 /* default dma handlers */
2768 if (up->dma) {
2769 if (!up->dma->tx_dma)
2770 up->dma->tx_dma = serial8250_tx_dma;
2771 if (!up->dma->rx_dma)
2772 up->dma->rx_dma = serial8250_rx_dma;
2773 }
2774}
2775EXPORT_SYMBOL_GPL(serial8250_set_defaults);
2776
2777#ifdef CONFIG_SERIAL_8250_CONSOLE
2778
2779static void serial8250_console_putchar(struct uart_port *port, int ch)
2780{
2781 struct uart_8250_port *up = up_to_u8250p(port);
2782
2783 wait_for_xmitr(up, UART_LSR_THRE);
2784 serial_port_out(port, UART_TX, ch);
2785}
2786
2787/*
2788 * Print a string to the serial port trying not to disturb
2789 * any possible real use of the port...
2790 *
2791 * The console_lock must be held when we get here.
2792 */
2793void serial8250_console_write(struct uart_8250_port *up, const char *s,
2794 unsigned int count)
2795{
2796 struct uart_port *port = &up->port;
2797 unsigned long flags;
2798 unsigned int ier;
2799 int locked = 1;
2800
2801 touch_nmi_watchdog();
2802
2803 serial8250_rpm_get(up);
2804
2805 if (port->sysrq)
2806 locked = 0;
2807 else if (oops_in_progress)
2808 locked = spin_trylock_irqsave(&port->lock, flags);
2809 else
2810 spin_lock_irqsave(&port->lock, flags);
2811
2812 /*
2813 * First save the IER then disable the interrupts
2814 */
2815 ier = serial_port_in(port, UART_IER);
2816
2817 if (up->capabilities & UART_CAP_UUE)
2818 serial_port_out(port, UART_IER, UART_IER_UUE);
2819 else
2820 serial_port_out(port, UART_IER, 0);
2821
2822 /* check scratch reg to see if port powered off during system sleep */
2823 if (up->canary && (up->canary != serial_port_in(port, UART_SCR))) {
2824 struct ktermios termios;
2825 unsigned int baud, quot, frac = 0;
2826
2827 termios.c_cflag = port->cons->cflag;
2828 if (port->state->port.tty && termios.c_cflag == 0)
2829 termios.c_cflag = port->state->port.tty->termios.c_cflag;
2830
2831 baud = uart_get_baud_rate(port, &termios, NULL,
2832 port->uartclk / 16 / 0xffff,
2833 port->uartclk / 16);
2834 quot = serial8250_get_divisor(up, baud, &frac);
2835
2836 serial8250_set_divisor(port, baud, quot, frac);
2837 serial_port_out(port, UART_LCR, up->lcr);
2838 serial_port_out(port, UART_MCR, UART_MCR_DTR | UART_MCR_RTS);
2839
2840 up->canary = 0;
2841 }
2842
2843 uart_console_write(port, s, count, serial8250_console_putchar);
2844
2845 /*
2846 * Finally, wait for transmitter to become empty
2847 * and restore the IER
2848 */
2849 wait_for_xmitr(up, BOTH_EMPTY);
2850 serial_port_out(port, UART_IER, ier);
2851
2852 /*
2853 * The receive handling will happen properly because the
2854 * receive ready bit will still be set; it is not cleared
2855 * on read. However, modem control will not, we must
2856 * call it if we have saved something in the saved flags
2857 * while processing with interrupts off.
2858 */
2859 if (up->msr_saved_flags)
2860 serial8250_modem_status(up);
2861
2862 if (locked)
2863 spin_unlock_irqrestore(&port->lock, flags);
2864 serial8250_rpm_put(up);
2865}
2866
2867static unsigned int probe_baud(struct uart_port *port)
2868{
2869 unsigned char lcr, dll, dlm;
2870 unsigned int quot;
2871
2872 lcr = serial_port_in(port, UART_LCR);
2873 serial_port_out(port, UART_LCR, lcr | UART_LCR_DLAB);
2874 dll = serial_port_in(port, UART_DLL);
2875 dlm = serial_port_in(port, UART_DLM);
2876 serial_port_out(port, UART_LCR, lcr);
2877
2878 quot = (dlm << 8) | dll;
2879 return (port->uartclk / 16) / quot;
2880}
2881
2882int serial8250_console_setup(struct uart_port *port, char *options, bool probe)
2883{
2884 int baud = 9600;
2885 int bits = 8;
2886 int parity = 'n';
2887 int flow = 'n';
2888
2889 if (!port->iobase && !port->membase)
2890 return -ENODEV;
2891
2892 if (options)
2893 uart_parse_options(options, &baud, &parity, &bits, &flow);
2894 else if (probe)
2895 baud = probe_baud(port);
2896
2897 return uart_set_options(port, port->cons, baud, parity, bits, flow);
2898}
2899
2900#endif /* CONFIG_SERIAL_8250_CONSOLE */
Jonathan McDowellf7a76512015-09-21 21:23:47 +01002901
2902MODULE_LICENSE("GPL");