• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  Base port operations for 8250/16550-type serial ports
4  *
5  *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
6  *  Split from 8250_core.c, Copyright (C) 2001 Russell King.
7  *
8  * A note about mapbase / membase
9  *
10  *  mapbase is the physical address of the IO port.
11  *  membase is an 'ioremapped' cookie.
12  */
13 
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/ioport.h>
17 #include <linux/init.h>
18 #include <linux/irq.h>
19 #include <linux/console.h>
20 #include <linux/gpio/consumer.h>
21 #include <linux/sysrq.h>
22 #include <linux/delay.h>
23 #include <linux/platform_device.h>
24 #include <linux/tty.h>
25 #include <linux/ratelimit.h>
26 #include <linux/tty_flip.h>
27 #include <linux/serial.h>
28 #include <linux/serial_8250.h>
29 #include <linux/nmi.h>
30 #include <linux/mutex.h>
31 #include <linux/slab.h>
32 #include <linux/uaccess.h>
33 #include <linux/pm_runtime.h>
34 #include <linux/ktime.h>
35 
36 #include <asm/io.h>
37 #include <asm/irq.h>
38 
39 #include "8250.h"
40 
41 /* Nuvoton NPCM timeout register */
42 #define UART_NPCM_TOR          7
43 #define UART_NPCM_TOIE         BIT(7)  /* Timeout Interrupt Enable */
44 
45 /*
46  * Debugging.
47  */
48 #if 0
49 #define DEBUG_AUTOCONF(fmt...)	printk(fmt)
50 #else
51 #define DEBUG_AUTOCONF(fmt...)	do { } while (0)
52 #endif
53 
54 #define BOTH_EMPTY	(UART_LSR_TEMT | UART_LSR_THRE)
55 
56 /*
57  * Here we define the default xmit fifo size used for each type of UART.
58  */
59 static const struct serial8250_config uart_config[] = {
60 	[PORT_UNKNOWN] = {
61 		.name		= "unknown",
62 		.fifo_size	= 1,
63 		.tx_loadsz	= 1,
64 	},
65 	[PORT_8250] = {
66 		.name		= "8250",
67 		.fifo_size	= 1,
68 		.tx_loadsz	= 1,
69 	},
70 	[PORT_16450] = {
71 		.name		= "16450",
72 		.fifo_size	= 1,
73 		.tx_loadsz	= 1,
74 	},
75 	[PORT_16550] = {
76 		.name		= "16550",
77 		.fifo_size	= 1,
78 		.tx_loadsz	= 1,
79 	},
80 	[PORT_16550A] = {
81 		.name		= "16550A",
82 		.fifo_size	= 16,
83 		.tx_loadsz	= 16,
84 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
85 		.rxtrig_bytes	= {1, 4, 8, 14},
86 		.flags		= UART_CAP_FIFO,
87 	},
88 	[PORT_CIRRUS] = {
89 		.name		= "Cirrus",
90 		.fifo_size	= 1,
91 		.tx_loadsz	= 1,
92 	},
93 	[PORT_16650] = {
94 		.name		= "ST16650",
95 		.fifo_size	= 1,
96 		.tx_loadsz	= 1,
97 		.flags		= UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
98 	},
99 	[PORT_16650V2] = {
100 		.name		= "ST16650V2",
101 		.fifo_size	= 32,
102 		.tx_loadsz	= 16,
103 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
104 				  UART_FCR_T_TRIG_00,
105 		.rxtrig_bytes	= {8, 16, 24, 28},
106 		.flags		= UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
107 	},
108 	[PORT_16750] = {
109 		.name		= "TI16750",
110 		.fifo_size	= 64,
111 		.tx_loadsz	= 64,
112 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
113 				  UART_FCR7_64BYTE,
114 		.rxtrig_bytes	= {1, 16, 32, 56},
115 		.flags		= UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
116 	},
117 	[PORT_STARTECH] = {
118 		.name		= "Startech",
119 		.fifo_size	= 1,
120 		.tx_loadsz	= 1,
121 	},
122 	[PORT_16C950] = {
123 		.name		= "16C950/954",
124 		.fifo_size	= 128,
125 		.tx_loadsz	= 128,
126 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01,
127 		.rxtrig_bytes	= {16, 32, 112, 120},
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 		.rxtrig_bytes	= {1, 8, 16, 30},
238 		.flags		= UART_CAP_FIFO | UART_CAP_AFE,
239 	},
240 	[PORT_ALTR_16550_F64] = {
241 		.name		= "Altera 16550 FIFO64",
242 		.fifo_size	= 64,
243 		.tx_loadsz	= 64,
244 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
245 		.rxtrig_bytes	= {1, 16, 32, 62},
246 		.flags		= UART_CAP_FIFO | UART_CAP_AFE,
247 	},
248 	[PORT_ALTR_16550_F128] = {
249 		.name		= "Altera 16550 FIFO128",
250 		.fifo_size	= 128,
251 		.tx_loadsz	= 128,
252 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
253 		.rxtrig_bytes	= {1, 32, 64, 126},
254 		.flags		= UART_CAP_FIFO | UART_CAP_AFE,
255 	},
256 	/*
257 	 * tx_loadsz is set to 63-bytes instead of 64-bytes to implement
258 	 * workaround of errata A-008006 which states that tx_loadsz should
259 	 * be configured less than Maximum supported fifo bytes.
260 	 */
261 	[PORT_16550A_FSL64] = {
262 		.name		= "16550A_FSL64",
263 		.fifo_size	= 64,
264 		.tx_loadsz	= 63,
265 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
266 				  UART_FCR7_64BYTE,
267 		.flags		= UART_CAP_FIFO,
268 	},
269 	[PORT_RT2880] = {
270 		.name		= "Palmchip BK-3103",
271 		.fifo_size	= 16,
272 		.tx_loadsz	= 16,
273 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
274 		.rxtrig_bytes	= {1, 4, 8, 14},
275 		.flags		= UART_CAP_FIFO,
276 	},
277 	[PORT_DA830] = {
278 		.name		= "TI DA8xx/66AK2x",
279 		.fifo_size	= 16,
280 		.tx_loadsz	= 16,
281 		.fcr		= UART_FCR_DMA_SELECT | UART_FCR_ENABLE_FIFO |
282 				  UART_FCR_R_TRIG_10,
283 		.rxtrig_bytes	= {1, 4, 8, 14},
284 		.flags		= UART_CAP_FIFO | UART_CAP_AFE,
285 	},
286 	[PORT_MTK_BTIF] = {
287 		.name		= "MediaTek BTIF",
288 		.fifo_size	= 16,
289 		.tx_loadsz	= 16,
290 		.fcr		= UART_FCR_ENABLE_FIFO |
291 				  UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
292 		.flags		= UART_CAP_FIFO,
293 	},
294 	[PORT_NPCM] = {
295 		.name		= "Nuvoton 16550",
296 		.fifo_size	= 16,
297 		.tx_loadsz	= 16,
298 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
299 				  UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
300 		.rxtrig_bytes	= {1, 4, 8, 14},
301 		.flags		= UART_CAP_FIFO,
302 	},
303 	[PORT_SUNIX] = {
304 		.name		= "Sunix",
305 		.fifo_size	= 128,
306 		.tx_loadsz	= 128,
307 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
308 		.rxtrig_bytes	= {1, 32, 64, 112},
309 		.flags		= UART_CAP_FIFO | UART_CAP_SLEEP,
310 	},
311 	[PORT_ASPEED_VUART] = {
312 		.name		= "ASPEED VUART",
313 		.fifo_size	= 16,
314 		.tx_loadsz	= 16,
315 		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
316 		.rxtrig_bytes	= {1, 4, 8, 14},
317 		.flags		= UART_CAP_FIFO,
318 	},
319 };
320 
321 /* Uart divisor latch read */
default_serial_dl_read(struct uart_8250_port * up)322 static int default_serial_dl_read(struct uart_8250_port *up)
323 {
324 	/* Assign these in pieces to truncate any bits above 7.  */
325 	unsigned char dll = serial_in(up, UART_DLL);
326 	unsigned char dlm = serial_in(up, UART_DLM);
327 
328 	return dll | dlm << 8;
329 }
330 
331 /* Uart divisor latch write */
default_serial_dl_write(struct uart_8250_port * up,int value)332 static void default_serial_dl_write(struct uart_8250_port *up, int value)
333 {
334 	serial_out(up, UART_DLL, value & 0xff);
335 	serial_out(up, UART_DLM, value >> 8 & 0xff);
336 }
337 
338 #ifdef CONFIG_SERIAL_8250_RT288X
339 
340 /* Au1x00/RT288x UART hardware has a weird register layout */
341 static const s8 au_io_in_map[8] = {
342 	 0,	/* UART_RX  */
343 	 2,	/* UART_IER */
344 	 3,	/* UART_IIR */
345 	 5,	/* UART_LCR */
346 	 6,	/* UART_MCR */
347 	 7,	/* UART_LSR */
348 	 8,	/* UART_MSR */
349 	-1,	/* UART_SCR (unmapped) */
350 };
351 
352 static const s8 au_io_out_map[8] = {
353 	 1,	/* UART_TX  */
354 	 2,	/* UART_IER */
355 	 4,	/* UART_FCR */
356 	 5,	/* UART_LCR */
357 	 6,	/* UART_MCR */
358 	-1,	/* UART_LSR (unmapped) */
359 	-1,	/* UART_MSR (unmapped) */
360 	-1,	/* UART_SCR (unmapped) */
361 };
362 
au_serial_in(struct uart_port * p,int offset)363 unsigned int au_serial_in(struct uart_port *p, int offset)
364 {
365 	if (offset >= ARRAY_SIZE(au_io_in_map))
366 		return UINT_MAX;
367 	offset = au_io_in_map[offset];
368 	if (offset < 0)
369 		return UINT_MAX;
370 	return __raw_readl(p->membase + (offset << p->regshift));
371 }
372 
au_serial_out(struct uart_port * p,int offset,int value)373 void au_serial_out(struct uart_port *p, int offset, int value)
374 {
375 	if (offset >= ARRAY_SIZE(au_io_out_map))
376 		return;
377 	offset = au_io_out_map[offset];
378 	if (offset < 0)
379 		return;
380 	__raw_writel(value, p->membase + (offset << p->regshift));
381 }
382 
383 /* Au1x00 haven't got a standard divisor latch */
au_serial_dl_read(struct uart_8250_port * up)384 static int au_serial_dl_read(struct uart_8250_port *up)
385 {
386 	return __raw_readl(up->port.membase + 0x28);
387 }
388 
au_serial_dl_write(struct uart_8250_port * up,int value)389 static void au_serial_dl_write(struct uart_8250_port *up, int value)
390 {
391 	__raw_writel(value, up->port.membase + 0x28);
392 }
393 
394 #endif
395 
hub6_serial_in(struct uart_port * p,int offset)396 static unsigned int hub6_serial_in(struct uart_port *p, int offset)
397 {
398 	offset = offset << p->regshift;
399 	outb(p->hub6 - 1 + offset, p->iobase);
400 	return inb(p->iobase + 1);
401 }
402 
hub6_serial_out(struct uart_port * p,int offset,int value)403 static void hub6_serial_out(struct uart_port *p, int offset, int value)
404 {
405 	offset = offset << p->regshift;
406 	outb(p->hub6 - 1 + offset, p->iobase);
407 	outb(value, p->iobase + 1);
408 }
409 
mem_serial_in(struct uart_port * p,int offset)410 static unsigned int mem_serial_in(struct uart_port *p, int offset)
411 {
412 	offset = offset << p->regshift;
413 	return readb(p->membase + offset);
414 }
415 
mem_serial_out(struct uart_port * p,int offset,int value)416 static void mem_serial_out(struct uart_port *p, int offset, int value)
417 {
418 	offset = offset << p->regshift;
419 	writeb(value, p->membase + offset);
420 }
421 
mem16_serial_out(struct uart_port * p,int offset,int value)422 static void mem16_serial_out(struct uart_port *p, int offset, int value)
423 {
424 	offset = offset << p->regshift;
425 	writew(value, p->membase + offset);
426 }
427 
mem16_serial_in(struct uart_port * p,int offset)428 static unsigned int mem16_serial_in(struct uart_port *p, int offset)
429 {
430 	offset = offset << p->regshift;
431 	return readw(p->membase + offset);
432 }
433 
mem32_serial_out(struct uart_port * p,int offset,int value)434 static void mem32_serial_out(struct uart_port *p, int offset, int value)
435 {
436 	offset = offset << p->regshift;
437 	writel(value, p->membase + offset);
438 }
439 
mem32_serial_in(struct uart_port * p,int offset)440 static unsigned int mem32_serial_in(struct uart_port *p, int offset)
441 {
442 	offset = offset << p->regshift;
443 	return readl(p->membase + offset);
444 }
445 
mem32be_serial_out(struct uart_port * p,int offset,int value)446 static void mem32be_serial_out(struct uart_port *p, int offset, int value)
447 {
448 	offset = offset << p->regshift;
449 	iowrite32be(value, p->membase + offset);
450 }
451 
mem32be_serial_in(struct uart_port * p,int offset)452 static unsigned int mem32be_serial_in(struct uart_port *p, int offset)
453 {
454 	offset = offset << p->regshift;
455 	return ioread32be(p->membase + offset);
456 }
457 
io_serial_in(struct uart_port * p,int offset)458 static unsigned int io_serial_in(struct uart_port *p, int offset)
459 {
460 	offset = offset << p->regshift;
461 	return inb(p->iobase + offset);
462 }
463 
io_serial_out(struct uart_port * p,int offset,int value)464 static void io_serial_out(struct uart_port *p, int offset, int value)
465 {
466 	offset = offset << p->regshift;
467 	outb(value, p->iobase + offset);
468 }
469 
470 static int serial8250_default_handle_irq(struct uart_port *port);
471 
set_io_from_upio(struct uart_port * p)472 static void set_io_from_upio(struct uart_port *p)
473 {
474 	struct uart_8250_port *up = up_to_u8250p(p);
475 
476 	up->dl_read = default_serial_dl_read;
477 	up->dl_write = default_serial_dl_write;
478 
479 	switch (p->iotype) {
480 	case UPIO_HUB6:
481 		p->serial_in = hub6_serial_in;
482 		p->serial_out = hub6_serial_out;
483 		break;
484 
485 	case UPIO_MEM:
486 		p->serial_in = mem_serial_in;
487 		p->serial_out = mem_serial_out;
488 		break;
489 
490 	case UPIO_MEM16:
491 		p->serial_in = mem16_serial_in;
492 		p->serial_out = mem16_serial_out;
493 		break;
494 
495 	case UPIO_MEM32:
496 		p->serial_in = mem32_serial_in;
497 		p->serial_out = mem32_serial_out;
498 		break;
499 
500 	case UPIO_MEM32BE:
501 		p->serial_in = mem32be_serial_in;
502 		p->serial_out = mem32be_serial_out;
503 		break;
504 
505 #ifdef CONFIG_SERIAL_8250_RT288X
506 	case UPIO_AU:
507 		p->serial_in = au_serial_in;
508 		p->serial_out = au_serial_out;
509 		up->dl_read = au_serial_dl_read;
510 		up->dl_write = au_serial_dl_write;
511 		break;
512 #endif
513 
514 	default:
515 		p->serial_in = io_serial_in;
516 		p->serial_out = io_serial_out;
517 		break;
518 	}
519 	/* Remember loaded iotype */
520 	up->cur_iotype = p->iotype;
521 	p->handle_irq = serial8250_default_handle_irq;
522 }
523 
524 static void
serial_port_out_sync(struct uart_port * p,int offset,int value)525 serial_port_out_sync(struct uart_port *p, int offset, int value)
526 {
527 	switch (p->iotype) {
528 	case UPIO_MEM:
529 	case UPIO_MEM16:
530 	case UPIO_MEM32:
531 	case UPIO_MEM32BE:
532 	case UPIO_AU:
533 		p->serial_out(p, offset, value);
534 		p->serial_in(p, UART_LCR);	/* safe, no side-effects */
535 		break;
536 	default:
537 		p->serial_out(p, offset, value);
538 	}
539 }
540 
541 /*
542  * FIFO support.
543  */
serial8250_clear_fifos(struct uart_8250_port * p)544 static void serial8250_clear_fifos(struct uart_8250_port *p)
545 {
546 	if (p->capabilities & UART_CAP_FIFO) {
547 		serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO);
548 		serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO |
549 			       UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
550 		serial_out(p, UART_FCR, 0);
551 	}
552 }
553 
554 static enum hrtimer_restart serial8250_em485_handle_start_tx(struct hrtimer *t);
555 static enum hrtimer_restart serial8250_em485_handle_stop_tx(struct hrtimer *t);
556 
serial8250_clear_and_reinit_fifos(struct uart_8250_port * p)557 void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p)
558 {
559 	serial8250_clear_fifos(p);
560 	serial_out(p, UART_FCR, p->fcr);
561 }
562 EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos);
563 
serial8250_rpm_get(struct uart_8250_port * p)564 void serial8250_rpm_get(struct uart_8250_port *p)
565 {
566 	if (!(p->capabilities & UART_CAP_RPM))
567 		return;
568 	pm_runtime_get_sync(p->port.dev);
569 }
570 EXPORT_SYMBOL_GPL(serial8250_rpm_get);
571 
serial8250_rpm_put(struct uart_8250_port * p)572 void serial8250_rpm_put(struct uart_8250_port *p)
573 {
574 	if (!(p->capabilities & UART_CAP_RPM))
575 		return;
576 	pm_runtime_mark_last_busy(p->port.dev);
577 	pm_runtime_put_autosuspend(p->port.dev);
578 }
579 EXPORT_SYMBOL_GPL(serial8250_rpm_put);
580 
581 /**
582  *	serial8250_em485_init() - put uart_8250_port into rs485 emulating
583  *	@p:	uart_8250_port port instance
584  *
585  *	The function is used to start rs485 software emulating on the
586  *	&struct uart_8250_port* @p. Namely, RTS is switched before/after
587  *	transmission. The function is idempotent, so it is safe to call it
588  *	multiple times.
589  *
590  *	The caller MUST enable interrupt on empty shift register before
591  *	calling serial8250_em485_init(). This interrupt is not a part of
592  *	8250 standard, but implementation defined.
593  *
594  *	The function is supposed to be called from .rs485_config callback
595  *	or from any other callback protected with p->port.lock spinlock.
596  *
597  *	See also serial8250_em485_destroy()
598  *
599  *	Return 0 - success, -errno - otherwise
600  */
serial8250_em485_init(struct uart_8250_port * p)601 static int serial8250_em485_init(struct uart_8250_port *p)
602 {
603 	if (p->em485)
604 		goto deassert_rts;
605 
606 	p->em485 = kmalloc(sizeof(struct uart_8250_em485), GFP_ATOMIC);
607 	if (!p->em485)
608 		return -ENOMEM;
609 
610 	hrtimer_init(&p->em485->stop_tx_timer, CLOCK_MONOTONIC,
611 		     HRTIMER_MODE_REL);
612 	hrtimer_init(&p->em485->start_tx_timer, CLOCK_MONOTONIC,
613 		     HRTIMER_MODE_REL);
614 	p->em485->stop_tx_timer.function = &serial8250_em485_handle_stop_tx;
615 	p->em485->start_tx_timer.function = &serial8250_em485_handle_start_tx;
616 	p->em485->port = p;
617 	p->em485->active_timer = NULL;
618 	p->em485->tx_stopped = true;
619 
620 deassert_rts:
621 	if (p->em485->tx_stopped)
622 		p->rs485_stop_tx(p);
623 
624 	return 0;
625 }
626 
627 /**
628  *	serial8250_em485_destroy() - put uart_8250_port into normal state
629  *	@p:	uart_8250_port port instance
630  *
631  *	The function is used to stop rs485 software emulating on the
632  *	&struct uart_8250_port* @p. The function is idempotent, so it is safe to
633  *	call it multiple times.
634  *
635  *	The function is supposed to be called from .rs485_config callback
636  *	or from any other callback protected with p->port.lock spinlock.
637  *
638  *	See also serial8250_em485_init()
639  */
serial8250_em485_destroy(struct uart_8250_port * p)640 void serial8250_em485_destroy(struct uart_8250_port *p)
641 {
642 	if (!p->em485)
643 		return;
644 
645 	hrtimer_cancel(&p->em485->start_tx_timer);
646 	hrtimer_cancel(&p->em485->stop_tx_timer);
647 
648 	kfree(p->em485);
649 	p->em485 = NULL;
650 }
651 EXPORT_SYMBOL_GPL(serial8250_em485_destroy);
652 
653 /**
654  * serial8250_em485_config() - generic ->rs485_config() callback
655  * @port: uart port
656  * @rs485: rs485 settings
657  *
658  * Generic callback usable by 8250 uart drivers to activate rs485 settings
659  * if the uart is incapable of driving RTS as a Transmit Enable signal in
660  * hardware, relying on software emulation instead.
661  */
serial8250_em485_config(struct uart_port * port,struct serial_rs485 * rs485)662 int serial8250_em485_config(struct uart_port *port, struct serial_rs485 *rs485)
663 {
664 	struct uart_8250_port *up = up_to_u8250p(port);
665 
666 	/* pick sane settings if the user hasn't */
667 	if (!!(rs485->flags & SER_RS485_RTS_ON_SEND) ==
668 	    !!(rs485->flags & SER_RS485_RTS_AFTER_SEND)) {
669 		rs485->flags |= SER_RS485_RTS_ON_SEND;
670 		rs485->flags &= ~SER_RS485_RTS_AFTER_SEND;
671 	}
672 
673 	/* clamp the delays to [0, 100ms] */
674 	rs485->delay_rts_before_send = min(rs485->delay_rts_before_send, 100U);
675 	rs485->delay_rts_after_send  = min(rs485->delay_rts_after_send, 100U);
676 
677 	memset(rs485->padding, 0, sizeof(rs485->padding));
678 	port->rs485 = *rs485;
679 
680 	gpiod_set_value(port->rs485_term_gpio,
681 			rs485->flags & SER_RS485_TERMINATE_BUS);
682 
683 	/*
684 	 * Both serial8250_em485_init() and serial8250_em485_destroy()
685 	 * are idempotent.
686 	 */
687 	if (rs485->flags & SER_RS485_ENABLED) {
688 		int ret = serial8250_em485_init(up);
689 
690 		if (ret) {
691 			rs485->flags &= ~SER_RS485_ENABLED;
692 			port->rs485.flags &= ~SER_RS485_ENABLED;
693 		}
694 		return ret;
695 	}
696 
697 	serial8250_em485_destroy(up);
698 	return 0;
699 }
700 EXPORT_SYMBOL_GPL(serial8250_em485_config);
701 
702 /*
703  * These two wrappers ensure that enable_runtime_pm_tx() can be called more than
704  * once and disable_runtime_pm_tx() will still disable RPM because the fifo is
705  * empty and the HW can idle again.
706  */
serial8250_rpm_get_tx(struct uart_8250_port * p)707 void serial8250_rpm_get_tx(struct uart_8250_port *p)
708 {
709 	unsigned char rpm_active;
710 
711 	if (!(p->capabilities & UART_CAP_RPM))
712 		return;
713 
714 	rpm_active = xchg(&p->rpm_tx_active, 1);
715 	if (rpm_active)
716 		return;
717 	pm_runtime_get_sync(p->port.dev);
718 }
719 EXPORT_SYMBOL_GPL(serial8250_rpm_get_tx);
720 
serial8250_rpm_put_tx(struct uart_8250_port * p)721 void serial8250_rpm_put_tx(struct uart_8250_port *p)
722 {
723 	unsigned char rpm_active;
724 
725 	if (!(p->capabilities & UART_CAP_RPM))
726 		return;
727 
728 	rpm_active = xchg(&p->rpm_tx_active, 0);
729 	if (!rpm_active)
730 		return;
731 	pm_runtime_mark_last_busy(p->port.dev);
732 	pm_runtime_put_autosuspend(p->port.dev);
733 }
734 EXPORT_SYMBOL_GPL(serial8250_rpm_put_tx);
735 
736 /*
737  * IER sleep support.  UARTs which have EFRs need the "extended
738  * capability" bit enabled.  Note that on XR16C850s, we need to
739  * reset LCR to write to IER.
740  */
serial8250_set_sleep(struct uart_8250_port * p,int sleep)741 static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
742 {
743 	unsigned char lcr = 0, efr = 0;
744 
745 	serial8250_rpm_get(p);
746 
747 	if (p->capabilities & UART_CAP_SLEEP) {
748 		if (p->capabilities & UART_CAP_EFR) {
749 			lcr = serial_in(p, UART_LCR);
750 			efr = serial_in(p, UART_EFR);
751 			serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
752 			serial_out(p, UART_EFR, UART_EFR_ECB);
753 			serial_out(p, UART_LCR, 0);
754 		}
755 		serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
756 		if (p->capabilities & UART_CAP_EFR) {
757 			serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
758 			serial_out(p, UART_EFR, efr);
759 			serial_out(p, UART_LCR, lcr);
760 		}
761 	}
762 
763 	serial8250_rpm_put(p);
764 }
765 
766 #ifdef CONFIG_SERIAL_8250_RSA
767 /*
768  * Attempts to turn on the RSA FIFO.  Returns zero on failure.
769  * We set the port uart clock rate if we succeed.
770  */
__enable_rsa(struct uart_8250_port * up)771 static int __enable_rsa(struct uart_8250_port *up)
772 {
773 	unsigned char mode;
774 	int result;
775 
776 	mode = serial_in(up, UART_RSA_MSR);
777 	result = mode & UART_RSA_MSR_FIFO;
778 
779 	if (!result) {
780 		serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
781 		mode = serial_in(up, UART_RSA_MSR);
782 		result = mode & UART_RSA_MSR_FIFO;
783 	}
784 
785 	if (result)
786 		up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
787 
788 	return result;
789 }
790 
enable_rsa(struct uart_8250_port * up)791 static void enable_rsa(struct uart_8250_port *up)
792 {
793 	if (up->port.type == PORT_RSA) {
794 		if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
795 			spin_lock_irq(&up->port.lock);
796 			__enable_rsa(up);
797 			spin_unlock_irq(&up->port.lock);
798 		}
799 		if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
800 			serial_out(up, UART_RSA_FRR, 0);
801 	}
802 }
803 
804 /*
805  * Attempts to turn off the RSA FIFO.  Returns zero on failure.
806  * It is unknown why interrupts were disabled in here.  However,
807  * the caller is expected to preserve this behaviour by grabbing
808  * the spinlock before calling this function.
809  */
disable_rsa(struct uart_8250_port * up)810 static void disable_rsa(struct uart_8250_port *up)
811 {
812 	unsigned char mode;
813 	int result;
814 
815 	if (up->port.type == PORT_RSA &&
816 	    up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
817 		spin_lock_irq(&up->port.lock);
818 
819 		mode = serial_in(up, UART_RSA_MSR);
820 		result = !(mode & UART_RSA_MSR_FIFO);
821 
822 		if (!result) {
823 			serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
824 			mode = serial_in(up, UART_RSA_MSR);
825 			result = !(mode & UART_RSA_MSR_FIFO);
826 		}
827 
828 		if (result)
829 			up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
830 		spin_unlock_irq(&up->port.lock);
831 	}
832 }
833 #endif /* CONFIG_SERIAL_8250_RSA */
834 
835 /*
836  * This is a quickie test to see how big the FIFO is.
837  * It doesn't work at all the time, more's the pity.
838  */
size_fifo(struct uart_8250_port * up)839 static int size_fifo(struct uart_8250_port *up)
840 {
841 	unsigned char old_fcr, old_mcr, old_lcr;
842 	unsigned short old_dl;
843 	int count;
844 
845 	old_lcr = serial_in(up, UART_LCR);
846 	serial_out(up, UART_LCR, 0);
847 	old_fcr = serial_in(up, UART_FCR);
848 	old_mcr = serial8250_in_MCR(up);
849 	serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
850 		    UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
851 	serial8250_out_MCR(up, UART_MCR_LOOP);
852 	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
853 	old_dl = serial_dl_read(up);
854 	serial_dl_write(up, 0x0001);
855 	serial_out(up, UART_LCR, 0x03);
856 	for (count = 0; count < 256; count++)
857 		serial_out(up, UART_TX, count);
858 	mdelay(20);/* FIXME - schedule_timeout */
859 	for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) &&
860 	     (count < 256); count++)
861 		serial_in(up, UART_RX);
862 	serial_out(up, UART_FCR, old_fcr);
863 	serial8250_out_MCR(up, old_mcr);
864 	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
865 	serial_dl_write(up, old_dl);
866 	serial_out(up, UART_LCR, old_lcr);
867 
868 	return count;
869 }
870 
871 /*
872  * Read UART ID using the divisor method - set DLL and DLM to zero
873  * and the revision will be in DLL and device type in DLM.  We
874  * preserve the device state across this.
875  */
autoconfig_read_divisor_id(struct uart_8250_port * p)876 static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
877 {
878 	unsigned char old_lcr;
879 	unsigned int id, old_dl;
880 
881 	old_lcr = serial_in(p, UART_LCR);
882 	serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A);
883 	old_dl = serial_dl_read(p);
884 	serial_dl_write(p, 0);
885 	id = serial_dl_read(p);
886 	serial_dl_write(p, old_dl);
887 
888 	serial_out(p, UART_LCR, old_lcr);
889 
890 	return id;
891 }
892 
893 /*
894  * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
895  * When this function is called we know it is at least a StarTech
896  * 16650 V2, but it might be one of several StarTech UARTs, or one of
897  * its clones.  (We treat the broken original StarTech 16650 V1 as a
898  * 16550, and why not?  Startech doesn't seem to even acknowledge its
899  * existence.)
900  *
901  * What evil have men's minds wrought...
902  */
autoconfig_has_efr(struct uart_8250_port * up)903 static void autoconfig_has_efr(struct uart_8250_port *up)
904 {
905 	unsigned int id1, id2, id3, rev;
906 
907 	/*
908 	 * Everything with an EFR has SLEEP
909 	 */
910 	up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
911 
912 	/*
913 	 * First we check to see if it's an Oxford Semiconductor UART.
914 	 *
915 	 * If we have to do this here because some non-National
916 	 * Semiconductor clone chips lock up if you try writing to the
917 	 * LSR register (which serial_icr_read does)
918 	 */
919 
920 	/*
921 	 * Check for Oxford Semiconductor 16C950.
922 	 *
923 	 * EFR [4] must be set else this test fails.
924 	 *
925 	 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
926 	 * claims that it's needed for 952 dual UART's (which are not
927 	 * recommended for new designs).
928 	 */
929 	up->acr = 0;
930 	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
931 	serial_out(up, UART_EFR, UART_EFR_ECB);
932 	serial_out(up, UART_LCR, 0x00);
933 	id1 = serial_icr_read(up, UART_ID1);
934 	id2 = serial_icr_read(up, UART_ID2);
935 	id3 = serial_icr_read(up, UART_ID3);
936 	rev = serial_icr_read(up, UART_REV);
937 
938 	DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
939 
940 	if (id1 == 0x16 && id2 == 0xC9 &&
941 	    (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
942 		up->port.type = PORT_16C950;
943 
944 		/*
945 		 * Enable work around for the Oxford Semiconductor 952 rev B
946 		 * chip which causes it to seriously miscalculate baud rates
947 		 * when DLL is 0.
948 		 */
949 		if (id3 == 0x52 && rev == 0x01)
950 			up->bugs |= UART_BUG_QUOT;
951 		return;
952 	}
953 
954 	/*
955 	 * We check for a XR16C850 by setting DLL and DLM to 0, and then
956 	 * reading back DLL and DLM.  The chip type depends on the DLM
957 	 * value read back:
958 	 *  0x10 - XR16C850 and the DLL contains the chip revision.
959 	 *  0x12 - XR16C2850.
960 	 *  0x14 - XR16C854.
961 	 */
962 	id1 = autoconfig_read_divisor_id(up);
963 	DEBUG_AUTOCONF("850id=%04x ", id1);
964 
965 	id2 = id1 >> 8;
966 	if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
967 		up->port.type = PORT_16850;
968 		return;
969 	}
970 
971 	/*
972 	 * It wasn't an XR16C850.
973 	 *
974 	 * We distinguish between the '654 and the '650 by counting
975 	 * how many bytes are in the FIFO.  I'm using this for now,
976 	 * since that's the technique that was sent to me in the
977 	 * serial driver update, but I'm not convinced this works.
978 	 * I've had problems doing this in the past.  -TYT
979 	 */
980 	if (size_fifo(up) == 64)
981 		up->port.type = PORT_16654;
982 	else
983 		up->port.type = PORT_16650V2;
984 }
985 
986 /*
987  * We detected a chip without a FIFO.  Only two fall into
988  * this category - the original 8250 and the 16450.  The
989  * 16450 has a scratch register (accessible with LCR=0)
990  */
autoconfig_8250(struct uart_8250_port * up)991 static void autoconfig_8250(struct uart_8250_port *up)
992 {
993 	unsigned char scratch, status1, status2;
994 
995 	up->port.type = PORT_8250;
996 
997 	scratch = serial_in(up, UART_SCR);
998 	serial_out(up, UART_SCR, 0xa5);
999 	status1 = serial_in(up, UART_SCR);
1000 	serial_out(up, UART_SCR, 0x5a);
1001 	status2 = serial_in(up, UART_SCR);
1002 	serial_out(up, UART_SCR, scratch);
1003 
1004 	if (status1 == 0xa5 && status2 == 0x5a)
1005 		up->port.type = PORT_16450;
1006 }
1007 
broken_efr(struct uart_8250_port * up)1008 static int broken_efr(struct uart_8250_port *up)
1009 {
1010 	/*
1011 	 * Exar ST16C2550 "A2" devices incorrectly detect as
1012 	 * having an EFR, and report an ID of 0x0201.  See
1013 	 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
1014 	 */
1015 	if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
1016 		return 1;
1017 
1018 	return 0;
1019 }
1020 
1021 /*
1022  * We know that the chip has FIFOs.  Does it have an EFR?  The
1023  * EFR is located in the same register position as the IIR and
1024  * we know the top two bits of the IIR are currently set.  The
1025  * EFR should contain zero.  Try to read the EFR.
1026  */
autoconfig_16550a(struct uart_8250_port * up)1027 static void autoconfig_16550a(struct uart_8250_port *up)
1028 {
1029 	unsigned char status1, status2;
1030 	unsigned int iersave;
1031 
1032 	up->port.type = PORT_16550A;
1033 	up->capabilities |= UART_CAP_FIFO;
1034 
1035 	if (!IS_ENABLED(CONFIG_SERIAL_8250_16550A_VARIANTS))
1036 		return;
1037 
1038 	/*
1039 	 * Check for presence of the EFR when DLAB is set.
1040 	 * Only ST16C650V1 UARTs pass this test.
1041 	 */
1042 	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
1043 	if (serial_in(up, UART_EFR) == 0) {
1044 		serial_out(up, UART_EFR, 0xA8);
1045 		if (serial_in(up, UART_EFR) != 0) {
1046 			DEBUG_AUTOCONF("EFRv1 ");
1047 			up->port.type = PORT_16650;
1048 			up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
1049 		} else {
1050 			serial_out(up, UART_LCR, 0);
1051 			serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
1052 				   UART_FCR7_64BYTE);
1053 			status1 = serial_in(up, UART_IIR) >> 5;
1054 			serial_out(up, UART_FCR, 0);
1055 			serial_out(up, UART_LCR, 0);
1056 
1057 			if (status1 == 7)
1058 				up->port.type = PORT_16550A_FSL64;
1059 			else
1060 				DEBUG_AUTOCONF("Motorola 8xxx DUART ");
1061 		}
1062 		serial_out(up, UART_EFR, 0);
1063 		return;
1064 	}
1065 
1066 	/*
1067 	 * Maybe it requires 0xbf to be written to the LCR.
1068 	 * (other ST16C650V2 UARTs, TI16C752A, etc)
1069 	 */
1070 	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1071 	if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
1072 		DEBUG_AUTOCONF("EFRv2 ");
1073 		autoconfig_has_efr(up);
1074 		return;
1075 	}
1076 
1077 	/*
1078 	 * Check for a National Semiconductor SuperIO chip.
1079 	 * Attempt to switch to bank 2, read the value of the LOOP bit
1080 	 * from EXCR1. Switch back to bank 0, change it in MCR. Then
1081 	 * switch back to bank 2, read it from EXCR1 again and check
1082 	 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
1083 	 */
1084 	serial_out(up, UART_LCR, 0);
1085 	status1 = serial8250_in_MCR(up);
1086 	serial_out(up, UART_LCR, 0xE0);
1087 	status2 = serial_in(up, 0x02); /* EXCR1 */
1088 
1089 	if (!((status2 ^ status1) & UART_MCR_LOOP)) {
1090 		serial_out(up, UART_LCR, 0);
1091 		serial8250_out_MCR(up, status1 ^ UART_MCR_LOOP);
1092 		serial_out(up, UART_LCR, 0xE0);
1093 		status2 = serial_in(up, 0x02); /* EXCR1 */
1094 		serial_out(up, UART_LCR, 0);
1095 		serial8250_out_MCR(up, status1);
1096 
1097 		if ((status2 ^ status1) & UART_MCR_LOOP) {
1098 			unsigned short quot;
1099 
1100 			serial_out(up, UART_LCR, 0xE0);
1101 
1102 			quot = serial_dl_read(up);
1103 			quot <<= 3;
1104 
1105 			if (ns16550a_goto_highspeed(up))
1106 				serial_dl_write(up, quot);
1107 
1108 			serial_out(up, UART_LCR, 0);
1109 
1110 			up->port.uartclk = 921600*16;
1111 			up->port.type = PORT_NS16550A;
1112 			up->capabilities |= UART_NATSEMI;
1113 			return;
1114 		}
1115 	}
1116 
1117 	/*
1118 	 * No EFR.  Try to detect a TI16750, which only sets bit 5 of
1119 	 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1120 	 * Try setting it with and without DLAB set.  Cheap clones
1121 	 * set bit 5 without DLAB set.
1122 	 */
1123 	serial_out(up, UART_LCR, 0);
1124 	serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1125 	status1 = serial_in(up, UART_IIR) >> 5;
1126 	serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1127 	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
1128 	serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1129 	status2 = serial_in(up, UART_IIR) >> 5;
1130 	serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1131 	serial_out(up, UART_LCR, 0);
1132 
1133 	DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1134 
1135 	if (status1 == 6 && status2 == 7) {
1136 		up->port.type = PORT_16750;
1137 		up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1138 		return;
1139 	}
1140 
1141 	/*
1142 	 * Try writing and reading the UART_IER_UUE bit (b6).
1143 	 * If it works, this is probably one of the Xscale platform's
1144 	 * internal UARTs.
1145 	 * We're going to explicitly set the UUE bit to 0 before
1146 	 * trying to write and read a 1 just to make sure it's not
1147 	 * already a 1 and maybe locked there before we even start start.
1148 	 */
1149 	iersave = serial_in(up, UART_IER);
1150 	serial_out(up, UART_IER, iersave & ~UART_IER_UUE);
1151 	if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1152 		/*
1153 		 * OK it's in a known zero state, try writing and reading
1154 		 * without disturbing the current state of the other bits.
1155 		 */
1156 		serial_out(up, UART_IER, iersave | UART_IER_UUE);
1157 		if (serial_in(up, UART_IER) & UART_IER_UUE) {
1158 			/*
1159 			 * It's an Xscale.
1160 			 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1161 			 */
1162 			DEBUG_AUTOCONF("Xscale ");
1163 			up->port.type = PORT_XSCALE;
1164 			up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
1165 			return;
1166 		}
1167 	} else {
1168 		/*
1169 		 * If we got here we couldn't force the IER_UUE bit to 0.
1170 		 * Log it and continue.
1171 		 */
1172 		DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1173 	}
1174 	serial_out(up, UART_IER, iersave);
1175 
1176 	/*
1177 	 * We distinguish between 16550A and U6 16550A by counting
1178 	 * how many bytes are in the FIFO.
1179 	 */
1180 	if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1181 		up->port.type = PORT_U6_16550A;
1182 		up->capabilities |= UART_CAP_AFE;
1183 	}
1184 }
1185 
1186 /*
1187  * This routine is called by rs_init() to initialize a specific serial
1188  * port.  It determines what type of UART chip this serial port is
1189  * using: 8250, 16450, 16550, 16550A.  The important question is
1190  * whether or not this UART is a 16550A or not, since this will
1191  * determine whether or not we can use its FIFO features or not.
1192  */
autoconfig(struct uart_8250_port * up)1193 static void autoconfig(struct uart_8250_port *up)
1194 {
1195 	unsigned char status1, scratch, scratch2, scratch3;
1196 	unsigned char save_lcr, save_mcr;
1197 	struct uart_port *port = &up->port;
1198 	unsigned long flags;
1199 	unsigned int old_capabilities;
1200 
1201 	if (!port->iobase && !port->mapbase && !port->membase)
1202 		return;
1203 
1204 	DEBUG_AUTOCONF("%s: autoconf (0x%04lx, 0x%p): ",
1205 		       port->name, port->iobase, port->membase);
1206 
1207 	/*
1208 	 * We really do need global IRQs disabled here - we're going to
1209 	 * be frobbing the chips IRQ enable register to see if it exists.
1210 	 */
1211 	spin_lock_irqsave(&port->lock, flags);
1212 
1213 	up->capabilities = 0;
1214 	up->bugs = 0;
1215 
1216 	if (!(port->flags & UPF_BUGGY_UART)) {
1217 		/*
1218 		 * Do a simple existence test first; if we fail this,
1219 		 * there's no point trying anything else.
1220 		 *
1221 		 * 0x80 is used as a nonsense port to prevent against
1222 		 * false positives due to ISA bus float.  The
1223 		 * assumption is that 0x80 is a non-existent port;
1224 		 * which should be safe since include/asm/io.h also
1225 		 * makes this assumption.
1226 		 *
1227 		 * Note: this is safe as long as MCR bit 4 is clear
1228 		 * and the device is in "PC" mode.
1229 		 */
1230 		scratch = serial_in(up, UART_IER);
1231 		serial_out(up, UART_IER, 0);
1232 #ifdef __i386__
1233 		outb(0xff, 0x080);
1234 #endif
1235 		/*
1236 		 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1237 		 * 16C754B) allow only to modify them if an EFR bit is set.
1238 		 */
1239 		scratch2 = serial_in(up, UART_IER) & 0x0f;
1240 		serial_out(up, UART_IER, 0x0F);
1241 #ifdef __i386__
1242 		outb(0, 0x080);
1243 #endif
1244 		scratch3 = serial_in(up, UART_IER) & 0x0f;
1245 		serial_out(up, UART_IER, scratch);
1246 		if (scratch2 != 0 || scratch3 != 0x0F) {
1247 			/*
1248 			 * We failed; there's nothing here
1249 			 */
1250 			spin_unlock_irqrestore(&port->lock, flags);
1251 			DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1252 				       scratch2, scratch3);
1253 			goto out;
1254 		}
1255 	}
1256 
1257 	save_mcr = serial8250_in_MCR(up);
1258 	save_lcr = serial_in(up, UART_LCR);
1259 
1260 	/*
1261 	 * Check to see if a UART is really there.  Certain broken
1262 	 * internal modems based on the Rockwell chipset fail this
1263 	 * test, because they apparently don't implement the loopback
1264 	 * test mode.  So this test is skipped on the COM 1 through
1265 	 * COM 4 ports.  This *should* be safe, since no board
1266 	 * manufacturer would be stupid enough to design a board
1267 	 * that conflicts with COM 1-4 --- we hope!
1268 	 */
1269 	if (!(port->flags & UPF_SKIP_TEST)) {
1270 		serial8250_out_MCR(up, UART_MCR_LOOP | 0x0A);
1271 		status1 = serial_in(up, UART_MSR) & 0xF0;
1272 		serial8250_out_MCR(up, save_mcr);
1273 		if (status1 != 0x90) {
1274 			spin_unlock_irqrestore(&port->lock, flags);
1275 			DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1276 				       status1);
1277 			goto out;
1278 		}
1279 	}
1280 
1281 	/*
1282 	 * We're pretty sure there's a port here.  Lets find out what
1283 	 * type of port it is.  The IIR top two bits allows us to find
1284 	 * out if it's 8250 or 16450, 16550, 16550A or later.  This
1285 	 * determines what we test for next.
1286 	 *
1287 	 * We also initialise the EFR (if any) to zero for later.  The
1288 	 * EFR occupies the same register location as the FCR and IIR.
1289 	 */
1290 	serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1291 	serial_out(up, UART_EFR, 0);
1292 	serial_out(up, UART_LCR, 0);
1293 
1294 	serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1295 
1296 	/* Assign this as it is to truncate any bits above 7.  */
1297 	scratch = serial_in(up, UART_IIR);
1298 
1299 	switch (scratch >> 6) {
1300 	case 0:
1301 		autoconfig_8250(up);
1302 		break;
1303 	case 1:
1304 		port->type = PORT_UNKNOWN;
1305 		break;
1306 	case 2:
1307 		port->type = PORT_16550;
1308 		break;
1309 	case 3:
1310 		autoconfig_16550a(up);
1311 		break;
1312 	}
1313 
1314 #ifdef CONFIG_SERIAL_8250_RSA
1315 	/*
1316 	 * Only probe for RSA ports if we got the region.
1317 	 */
1318 	if (port->type == PORT_16550A && up->probe & UART_PROBE_RSA &&
1319 	    __enable_rsa(up))
1320 		port->type = PORT_RSA;
1321 #endif
1322 
1323 	serial_out(up, UART_LCR, save_lcr);
1324 
1325 	port->fifosize = uart_config[up->port.type].fifo_size;
1326 	old_capabilities = up->capabilities;
1327 	up->capabilities = uart_config[port->type].flags;
1328 	up->tx_loadsz = uart_config[port->type].tx_loadsz;
1329 
1330 	if (port->type == PORT_UNKNOWN)
1331 		goto out_lock;
1332 
1333 	/*
1334 	 * Reset the UART.
1335 	 */
1336 #ifdef CONFIG_SERIAL_8250_RSA
1337 	if (port->type == PORT_RSA)
1338 		serial_out(up, UART_RSA_FRR, 0);
1339 #endif
1340 	serial8250_out_MCR(up, save_mcr);
1341 	serial8250_clear_fifos(up);
1342 	serial_in(up, UART_RX);
1343 	if (up->capabilities & UART_CAP_UUE)
1344 		serial_out(up, UART_IER, UART_IER_UUE);
1345 	else
1346 		serial_out(up, UART_IER, 0);
1347 
1348 out_lock:
1349 	spin_unlock_irqrestore(&port->lock, flags);
1350 
1351 	/*
1352 	 * Check if the device is a Fintek F81216A
1353 	 */
1354 	if (port->type == PORT_16550A && port->iotype == UPIO_PORT)
1355 		fintek_8250_probe(up);
1356 
1357 	if (up->capabilities != old_capabilities) {
1358 		dev_warn(port->dev, "detected caps %08x should be %08x\n",
1359 			 old_capabilities, up->capabilities);
1360 	}
1361 out:
1362 	DEBUG_AUTOCONF("iir=%d ", scratch);
1363 	DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name);
1364 }
1365 
autoconfig_irq(struct uart_8250_port * up)1366 static void autoconfig_irq(struct uart_8250_port *up)
1367 {
1368 	struct uart_port *port = &up->port;
1369 	unsigned char save_mcr, save_ier;
1370 	unsigned char save_ICP = 0;
1371 	unsigned int ICP = 0;
1372 	unsigned long irqs;
1373 	int irq;
1374 
1375 	if (port->flags & UPF_FOURPORT) {
1376 		ICP = (port->iobase & 0xfe0) | 0x1f;
1377 		save_ICP = inb_p(ICP);
1378 		outb_p(0x80, ICP);
1379 		inb_p(ICP);
1380 	}
1381 
1382 	if (uart_console(port))
1383 		console_lock();
1384 
1385 	/* forget possible initially masked and pending IRQ */
1386 	probe_irq_off(probe_irq_on());
1387 	save_mcr = serial8250_in_MCR(up);
1388 	save_ier = serial_in(up, UART_IER);
1389 	serial8250_out_MCR(up, UART_MCR_OUT1 | UART_MCR_OUT2);
1390 
1391 	irqs = probe_irq_on();
1392 	serial8250_out_MCR(up, 0);
1393 	udelay(10);
1394 	if (port->flags & UPF_FOURPORT) {
1395 		serial8250_out_MCR(up, UART_MCR_DTR | UART_MCR_RTS);
1396 	} else {
1397 		serial8250_out_MCR(up,
1398 			UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1399 	}
1400 	serial_out(up, UART_IER, 0x0f);	/* enable all intrs */
1401 	serial_in(up, UART_LSR);
1402 	serial_in(up, UART_RX);
1403 	serial_in(up, UART_IIR);
1404 	serial_in(up, UART_MSR);
1405 	serial_out(up, UART_TX, 0xFF);
1406 	udelay(20);
1407 	irq = probe_irq_off(irqs);
1408 
1409 	serial8250_out_MCR(up, save_mcr);
1410 	serial_out(up, UART_IER, save_ier);
1411 
1412 	if (port->flags & UPF_FOURPORT)
1413 		outb_p(save_ICP, ICP);
1414 
1415 	if (uart_console(port))
1416 		console_unlock();
1417 
1418 	port->irq = (irq > 0) ? irq : 0;
1419 }
1420 
serial8250_stop_rx(struct uart_port * port)1421 static void serial8250_stop_rx(struct uart_port *port)
1422 {
1423 	struct uart_8250_port *up = up_to_u8250p(port);
1424 
1425 	serial8250_rpm_get(up);
1426 
1427 	up->ier &= ~(UART_IER_RLSI | UART_IER_RDI);
1428 	up->port.read_status_mask &= ~UART_LSR_DR;
1429 	serial_port_out(port, UART_IER, up->ier);
1430 
1431 	serial8250_rpm_put(up);
1432 }
1433 
1434 /**
1435  * serial8250_em485_stop_tx() - generic ->rs485_stop_tx() callback
1436  * @p: uart 8250 port
1437  *
1438  * Generic callback usable by 8250 uart drivers to stop rs485 transmission.
1439  */
serial8250_em485_stop_tx(struct uart_8250_port * p)1440 void serial8250_em485_stop_tx(struct uart_8250_port *p)
1441 {
1442 	unsigned char mcr = serial8250_in_MCR(p);
1443 
1444 	if (p->port.rs485.flags & SER_RS485_RTS_AFTER_SEND)
1445 		mcr |= UART_MCR_RTS;
1446 	else
1447 		mcr &= ~UART_MCR_RTS;
1448 	serial8250_out_MCR(p, mcr);
1449 
1450 	/*
1451 	 * Empty the RX FIFO, we are not interested in anything
1452 	 * received during the half-duplex transmission.
1453 	 * Enable previously disabled RX interrupts.
1454 	 */
1455 	if (!(p->port.rs485.flags & SER_RS485_RX_DURING_TX)) {
1456 		serial8250_clear_and_reinit_fifos(p);
1457 
1458 		p->ier |= UART_IER_RLSI | UART_IER_RDI;
1459 		serial_port_out(&p->port, UART_IER, p->ier);
1460 	}
1461 }
1462 EXPORT_SYMBOL_GPL(serial8250_em485_stop_tx);
1463 
serial8250_em485_handle_stop_tx(struct hrtimer * t)1464 static enum hrtimer_restart serial8250_em485_handle_stop_tx(struct hrtimer *t)
1465 {
1466 	struct uart_8250_em485 *em485 = container_of(t, struct uart_8250_em485,
1467 			stop_tx_timer);
1468 	struct uart_8250_port *p = em485->port;
1469 	unsigned long flags;
1470 
1471 	serial8250_rpm_get(p);
1472 	spin_lock_irqsave(&p->port.lock, flags);
1473 	if (em485->active_timer == &em485->stop_tx_timer) {
1474 		p->rs485_stop_tx(p);
1475 		em485->active_timer = NULL;
1476 		em485->tx_stopped = true;
1477 	}
1478 	spin_unlock_irqrestore(&p->port.lock, flags);
1479 	serial8250_rpm_put(p);
1480 
1481 	return HRTIMER_NORESTART;
1482 }
1483 
start_hrtimer_ms(struct hrtimer * hrt,unsigned long msec)1484 static void start_hrtimer_ms(struct hrtimer *hrt, unsigned long msec)
1485 {
1486 	hrtimer_start(hrt, ms_to_ktime(msec), HRTIMER_MODE_REL);
1487 }
1488 
__stop_tx_rs485(struct uart_8250_port * p)1489 static void __stop_tx_rs485(struct uart_8250_port *p)
1490 {
1491 	struct uart_8250_em485 *em485 = p->em485;
1492 
1493 	/*
1494 	 * rs485_stop_tx() is going to set RTS according to config
1495 	 * AND flush RX FIFO if required.
1496 	 */
1497 	if (p->port.rs485.delay_rts_after_send > 0) {
1498 		em485->active_timer = &em485->stop_tx_timer;
1499 		start_hrtimer_ms(&em485->stop_tx_timer,
1500 				   p->port.rs485.delay_rts_after_send);
1501 	} else {
1502 		p->rs485_stop_tx(p);
1503 		em485->active_timer = NULL;
1504 		em485->tx_stopped = true;
1505 	}
1506 }
1507 
__do_stop_tx(struct uart_8250_port * p)1508 static inline void __do_stop_tx(struct uart_8250_port *p)
1509 {
1510 	if (serial8250_clear_THRI(p))
1511 		serial8250_rpm_put_tx(p);
1512 }
1513 
__stop_tx(struct uart_8250_port * p)1514 static inline void __stop_tx(struct uart_8250_port *p)
1515 {
1516 	struct uart_8250_em485 *em485 = p->em485;
1517 
1518 	if (em485) {
1519 		unsigned char lsr = serial_in(p, UART_LSR);
1520 		p->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1521 
1522 		/*
1523 		 * To provide required timeing and allow FIFO transfer,
1524 		 * __stop_tx_rs485() must be called only when both FIFO and
1525 		 * shift register are empty. It is for device driver to enable
1526 		 * interrupt on TEMT.
1527 		 */
1528 		if ((lsr & BOTH_EMPTY) != BOTH_EMPTY)
1529 			return;
1530 
1531 		__stop_tx_rs485(p);
1532 	}
1533 	__do_stop_tx(p);
1534 }
1535 
serial8250_stop_tx(struct uart_port * port)1536 static void serial8250_stop_tx(struct uart_port *port)
1537 {
1538 	struct uart_8250_port *up = up_to_u8250p(port);
1539 
1540 	serial8250_rpm_get(up);
1541 	__stop_tx(up);
1542 
1543 	/*
1544 	 * We really want to stop the transmitter from sending.
1545 	 */
1546 	if (port->type == PORT_16C950) {
1547 		up->acr |= UART_ACR_TXDIS;
1548 		serial_icr_write(up, UART_ACR, up->acr);
1549 	}
1550 	serial8250_rpm_put(up);
1551 }
1552 
__start_tx(struct uart_port * port)1553 static inline void __start_tx(struct uart_port *port)
1554 {
1555 	struct uart_8250_port *up = up_to_u8250p(port);
1556 
1557 	if (up->dma && !up->dma->tx_dma(up))
1558 		return;
1559 
1560 	if (serial8250_set_THRI(up)) {
1561 		if (up->bugs & UART_BUG_TXEN) {
1562 			unsigned char lsr;
1563 
1564 			lsr = serial_in(up, UART_LSR);
1565 			up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1566 			if (lsr & UART_LSR_THRE)
1567 				serial8250_tx_chars(up);
1568 		}
1569 	}
1570 
1571 	/*
1572 	 * Re-enable the transmitter if we disabled it.
1573 	 */
1574 	if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
1575 		up->acr &= ~UART_ACR_TXDIS;
1576 		serial_icr_write(up, UART_ACR, up->acr);
1577 	}
1578 }
1579 
1580 /**
1581  * serial8250_em485_start_tx() - generic ->rs485_start_tx() callback
1582  * @up: uart 8250 port
1583  *
1584  * Generic callback usable by 8250 uart drivers to start rs485 transmission.
1585  * Assumes that setting the RTS bit in the MCR register means RTS is high.
1586  * (Some chips use inverse semantics.)  Further assumes that reception is
1587  * stoppable by disabling the UART_IER_RDI interrupt.  (Some chips set the
1588  * UART_LSR_DR bit even when UART_IER_RDI is disabled, foiling this approach.)
1589  */
serial8250_em485_start_tx(struct uart_8250_port * up)1590 void serial8250_em485_start_tx(struct uart_8250_port *up)
1591 {
1592 	unsigned char mcr = serial8250_in_MCR(up);
1593 
1594 	if (!(up->port.rs485.flags & SER_RS485_RX_DURING_TX))
1595 		serial8250_stop_rx(&up->port);
1596 
1597 	if (up->port.rs485.flags & SER_RS485_RTS_ON_SEND)
1598 		mcr |= UART_MCR_RTS;
1599 	else
1600 		mcr &= ~UART_MCR_RTS;
1601 	serial8250_out_MCR(up, mcr);
1602 }
1603 EXPORT_SYMBOL_GPL(serial8250_em485_start_tx);
1604 
start_tx_rs485(struct uart_port * port)1605 static inline void start_tx_rs485(struct uart_port *port)
1606 {
1607 	struct uart_8250_port *up = up_to_u8250p(port);
1608 	struct uart_8250_em485 *em485 = up->em485;
1609 
1610 	/*
1611 	 * While serial8250_em485_handle_stop_tx() is a noop if
1612 	 * em485->active_timer != &em485->stop_tx_timer, it might happen that
1613 	 * the timer is still armed and triggers only after the current bunch of
1614 	 * chars is send and em485->active_timer == &em485->stop_tx_timer again.
1615 	 * So cancel the timer. There is still a theoretical race condition if
1616 	 * the timer is already running and only comes around to check for
1617 	 * em485->active_timer when &em485->stop_tx_timer is armed again.
1618 	 */
1619 	if (em485->active_timer == &em485->stop_tx_timer)
1620 		hrtimer_try_to_cancel(&em485->stop_tx_timer);
1621 
1622 	em485->active_timer = NULL;
1623 
1624 	if (em485->tx_stopped) {
1625 		em485->tx_stopped = false;
1626 
1627 		up->rs485_start_tx(up);
1628 
1629 		if (up->port.rs485.delay_rts_before_send > 0) {
1630 			em485->active_timer = &em485->start_tx_timer;
1631 			start_hrtimer_ms(&em485->start_tx_timer,
1632 					 up->port.rs485.delay_rts_before_send);
1633 			return;
1634 		}
1635 	}
1636 
1637 	__start_tx(port);
1638 }
1639 
serial8250_em485_handle_start_tx(struct hrtimer * t)1640 static enum hrtimer_restart serial8250_em485_handle_start_tx(struct hrtimer *t)
1641 {
1642 	struct uart_8250_em485 *em485 = container_of(t, struct uart_8250_em485,
1643 			start_tx_timer);
1644 	struct uart_8250_port *p = em485->port;
1645 	unsigned long flags;
1646 
1647 	spin_lock_irqsave(&p->port.lock, flags);
1648 	if (em485->active_timer == &em485->start_tx_timer) {
1649 		__start_tx(&p->port);
1650 		em485->active_timer = NULL;
1651 	}
1652 	spin_unlock_irqrestore(&p->port.lock, flags);
1653 
1654 	return HRTIMER_NORESTART;
1655 }
1656 
serial8250_start_tx(struct uart_port * port)1657 static void serial8250_start_tx(struct uart_port *port)
1658 {
1659 	struct uart_8250_port *up = up_to_u8250p(port);
1660 	struct uart_8250_em485 *em485 = up->em485;
1661 
1662 	serial8250_rpm_get_tx(up);
1663 
1664 	if (em485 &&
1665 	    em485->active_timer == &em485->start_tx_timer)
1666 		return;
1667 
1668 	if (em485)
1669 		start_tx_rs485(port);
1670 	else
1671 		__start_tx(port);
1672 }
1673 
serial8250_throttle(struct uart_port * port)1674 static void serial8250_throttle(struct uart_port *port)
1675 {
1676 	port->throttle(port);
1677 }
1678 
serial8250_unthrottle(struct uart_port * port)1679 static void serial8250_unthrottle(struct uart_port *port)
1680 {
1681 	port->unthrottle(port);
1682 }
1683 
serial8250_disable_ms(struct uart_port * port)1684 static void serial8250_disable_ms(struct uart_port *port)
1685 {
1686 	struct uart_8250_port *up = up_to_u8250p(port);
1687 
1688 	/* no MSR capabilities */
1689 	if (up->bugs & UART_BUG_NOMSR)
1690 		return;
1691 
1692 	mctrl_gpio_disable_ms(up->gpios);
1693 
1694 	up->ier &= ~UART_IER_MSI;
1695 	serial_port_out(port, UART_IER, up->ier);
1696 }
1697 
serial8250_enable_ms(struct uart_port * port)1698 static void serial8250_enable_ms(struct uart_port *port)
1699 {
1700 	struct uart_8250_port *up = up_to_u8250p(port);
1701 
1702 	/* no MSR capabilities */
1703 	if (up->bugs & UART_BUG_NOMSR)
1704 		return;
1705 
1706 	mctrl_gpio_enable_ms(up->gpios);
1707 
1708 	up->ier |= UART_IER_MSI;
1709 
1710 	serial8250_rpm_get(up);
1711 	serial_port_out(port, UART_IER, up->ier);
1712 	serial8250_rpm_put(up);
1713 }
1714 
serial8250_read_char(struct uart_8250_port * up,unsigned char lsr)1715 void serial8250_read_char(struct uart_8250_port *up, unsigned char lsr)
1716 {
1717 	struct uart_port *port = &up->port;
1718 	unsigned char ch;
1719 	char flag = TTY_NORMAL;
1720 
1721 	if (likely(lsr & UART_LSR_DR))
1722 		ch = serial_in(up, UART_RX);
1723 	else
1724 		/*
1725 		 * Intel 82571 has a Serial Over Lan device that will
1726 		 * set UART_LSR_BI without setting UART_LSR_DR when
1727 		 * it receives a break. To avoid reading from the
1728 		 * receive buffer without UART_LSR_DR bit set, we
1729 		 * just force the read character to be 0
1730 		 */
1731 		ch = 0;
1732 
1733 	port->icount.rx++;
1734 
1735 	lsr |= up->lsr_saved_flags;
1736 	up->lsr_saved_flags = 0;
1737 
1738 	if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
1739 		if (lsr & UART_LSR_BI) {
1740 			lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1741 			port->icount.brk++;
1742 			/*
1743 			 * We do the SysRQ and SAK checking
1744 			 * here because otherwise the break
1745 			 * may get masked by ignore_status_mask
1746 			 * or read_status_mask.
1747 			 */
1748 			if (uart_handle_break(port))
1749 				return;
1750 		} else if (lsr & UART_LSR_PE)
1751 			port->icount.parity++;
1752 		else if (lsr & UART_LSR_FE)
1753 			port->icount.frame++;
1754 		if (lsr & UART_LSR_OE)
1755 			port->icount.overrun++;
1756 
1757 		/*
1758 		 * Mask off conditions which should be ignored.
1759 		 */
1760 		lsr &= port->read_status_mask;
1761 
1762 		if (lsr & UART_LSR_BI) {
1763 			dev_dbg(port->dev, "handling break\n");
1764 			flag = TTY_BREAK;
1765 		} else if (lsr & UART_LSR_PE)
1766 			flag = TTY_PARITY;
1767 		else if (lsr & UART_LSR_FE)
1768 			flag = TTY_FRAME;
1769 	}
1770 	if (uart_prepare_sysrq_char(port, ch))
1771 		return;
1772 
1773 	uart_insert_char(port, lsr, UART_LSR_OE, ch, flag);
1774 }
1775 EXPORT_SYMBOL_GPL(serial8250_read_char);
1776 
1777 /*
1778  * serial8250_rx_chars: processes according to the passed in LSR
1779  * value, and returns the remaining LSR bits not handled
1780  * by this Rx routine.
1781  */
serial8250_rx_chars(struct uart_8250_port * up,unsigned char lsr)1782 unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr)
1783 {
1784 	struct uart_port *port = &up->port;
1785 	int max_count = 256;
1786 
1787 	do {
1788 		serial8250_read_char(up, lsr);
1789 		if (--max_count == 0)
1790 			break;
1791 		lsr = serial_in(up, UART_LSR);
1792 	} while (lsr & (UART_LSR_DR | UART_LSR_BI));
1793 
1794 	tty_flip_buffer_push(&port->state->port);
1795 	return lsr;
1796 }
1797 EXPORT_SYMBOL_GPL(serial8250_rx_chars);
1798 
serial8250_tx_chars(struct uart_8250_port * up)1799 void serial8250_tx_chars(struct uart_8250_port *up)
1800 {
1801 	struct uart_port *port = &up->port;
1802 	struct circ_buf *xmit = &port->state->xmit;
1803 	int count;
1804 
1805 	if (port->x_char) {
1806 		uart_xchar_out(port, UART_TX);
1807 		return;
1808 	}
1809 	if (uart_tx_stopped(port)) {
1810 		serial8250_stop_tx(port);
1811 		return;
1812 	}
1813 	if (uart_circ_empty(xmit)) {
1814 		__stop_tx(up);
1815 		return;
1816 	}
1817 
1818 	count = up->tx_loadsz;
1819 	do {
1820 		serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1821 		if (up->bugs & UART_BUG_TXRACE) {
1822 			/*
1823 			 * The Aspeed BMC virtual UARTs have a bug where data
1824 			 * may get stuck in the BMC's Tx FIFO from bursts of
1825 			 * writes on the APB interface.
1826 			 *
1827 			 * Delay back-to-back writes by a read cycle to avoid
1828 			 * stalling the VUART. Read a register that won't have
1829 			 * side-effects and discard the result.
1830 			 */
1831 			serial_in(up, UART_SCR);
1832 		}
1833 		xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1834 		port->icount.tx++;
1835 		if (uart_circ_empty(xmit))
1836 			break;
1837 		if ((up->capabilities & UART_CAP_HFIFO) &&
1838 		    (serial_in(up, UART_LSR) & BOTH_EMPTY) != BOTH_EMPTY)
1839 			break;
1840 		/* The BCM2835 MINI UART THRE bit is really a not-full bit. */
1841 		if ((up->capabilities & UART_CAP_MINI) &&
1842 		    !(serial_in(up, UART_LSR) & UART_LSR_THRE))
1843 			break;
1844 	} while (--count > 0);
1845 
1846 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1847 		uart_write_wakeup(port);
1848 
1849 	/*
1850 	 * With RPM enabled, we have to wait until the FIFO is empty before the
1851 	 * HW can go idle. So we get here once again with empty FIFO and disable
1852 	 * the interrupt and RPM in __stop_tx()
1853 	 */
1854 	if (uart_circ_empty(xmit) && !(up->capabilities & UART_CAP_RPM))
1855 		__stop_tx(up);
1856 }
1857 EXPORT_SYMBOL_GPL(serial8250_tx_chars);
1858 
1859 /* Caller holds uart port lock */
serial8250_modem_status(struct uart_8250_port * up)1860 unsigned int serial8250_modem_status(struct uart_8250_port *up)
1861 {
1862 	struct uart_port *port = &up->port;
1863 	unsigned int status = serial_in(up, UART_MSR);
1864 
1865 	status |= up->msr_saved_flags;
1866 	up->msr_saved_flags = 0;
1867 	if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
1868 	    port->state != NULL) {
1869 		if (status & UART_MSR_TERI)
1870 			port->icount.rng++;
1871 		if (status & UART_MSR_DDSR)
1872 			port->icount.dsr++;
1873 		if (status & UART_MSR_DDCD)
1874 			uart_handle_dcd_change(port, status & UART_MSR_DCD);
1875 		if (status & UART_MSR_DCTS)
1876 			uart_handle_cts_change(port, status & UART_MSR_CTS);
1877 
1878 		wake_up_interruptible(&port->state->port.delta_msr_wait);
1879 	}
1880 
1881 	return status;
1882 }
1883 EXPORT_SYMBOL_GPL(serial8250_modem_status);
1884 
handle_rx_dma(struct uart_8250_port * up,unsigned int iir)1885 static bool handle_rx_dma(struct uart_8250_port *up, unsigned int iir)
1886 {
1887 	switch (iir & 0x3f) {
1888 	case UART_IIR_RDI:
1889 		if (!up->dma->rx_running)
1890 			break;
1891 		fallthrough;
1892 	case UART_IIR_RLSI:
1893 	case UART_IIR_RX_TIMEOUT:
1894 		serial8250_rx_dma_flush(up);
1895 		return true;
1896 	}
1897 	return up->dma->rx_dma(up);
1898 }
1899 
1900 /*
1901  * This handles the interrupt from one port.
1902  */
serial8250_handle_irq(struct uart_port * port,unsigned int iir)1903 int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
1904 {
1905 	unsigned char status;
1906 	struct uart_8250_port *up = up_to_u8250p(port);
1907 	struct tty_port *tport = &port->state->port;
1908 	bool skip_rx = false;
1909 	unsigned long flags;
1910 
1911 	if (iir & UART_IIR_NO_INT)
1912 		return 0;
1913 
1914 	spin_lock_irqsave(&port->lock, flags);
1915 
1916 	status = serial_port_in(port, UART_LSR);
1917 
1918 	/*
1919 	 * If port is stopped and there are no error conditions in the
1920 	 * FIFO, then don't drain the FIFO, as this may lead to TTY buffer
1921 	 * overflow. Not servicing, RX FIFO would trigger auto HW flow
1922 	 * control when FIFO occupancy reaches preset threshold, thus
1923 	 * halting RX. This only works when auto HW flow control is
1924 	 * available.
1925 	 */
1926 	if (!(status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS)) &&
1927 	    (port->status & (UPSTAT_AUTOCTS | UPSTAT_AUTORTS)) &&
1928 	    !(port->read_status_mask & UART_LSR_DR))
1929 		skip_rx = true;
1930 
1931 	if (status & (UART_LSR_DR | UART_LSR_BI) && !skip_rx) {
1932 		struct irq_data *d;
1933 
1934 		d = irq_get_irq_data(port->irq);
1935 		if (d && irqd_is_wakeup_set(d))
1936 			pm_wakeup_event(tport->tty->dev, 0);
1937 		if (!up->dma || handle_rx_dma(up, iir))
1938 			status = serial8250_rx_chars(up, status);
1939 	}
1940 	serial8250_modem_status(up);
1941 	if ((!up->dma || up->dma->tx_err) && (status & UART_LSR_THRE) &&
1942 		(up->ier & UART_IER_THRI))
1943 		serial8250_tx_chars(up);
1944 
1945 	uart_unlock_and_check_sysrq_irqrestore(port, flags);
1946 
1947 	return 1;
1948 }
1949 EXPORT_SYMBOL_GPL(serial8250_handle_irq);
1950 
serial8250_default_handle_irq(struct uart_port * port)1951 static int serial8250_default_handle_irq(struct uart_port *port)
1952 {
1953 	struct uart_8250_port *up = up_to_u8250p(port);
1954 	unsigned int iir;
1955 	int ret;
1956 
1957 	serial8250_rpm_get(up);
1958 
1959 	iir = serial_port_in(port, UART_IIR);
1960 	ret = serial8250_handle_irq(port, iir);
1961 
1962 	serial8250_rpm_put(up);
1963 	return ret;
1964 }
1965 
1966 /*
1967  * Newer 16550 compatible parts such as the SC16C650 & Altera 16550 Soft IP
1968  * have a programmable TX threshold that triggers the THRE interrupt in
1969  * the IIR register. In this case, the THRE interrupt indicates the FIFO
1970  * has space available. Load it up with tx_loadsz bytes.
1971  */
serial8250_tx_threshold_handle_irq(struct uart_port * port)1972 static int serial8250_tx_threshold_handle_irq(struct uart_port *port)
1973 {
1974 	unsigned long flags;
1975 	unsigned int iir = serial_port_in(port, UART_IIR);
1976 
1977 	/* TX Threshold IRQ triggered so load up FIFO */
1978 	if ((iir & UART_IIR_ID) == UART_IIR_THRI) {
1979 		struct uart_8250_port *up = up_to_u8250p(port);
1980 
1981 		spin_lock_irqsave(&port->lock, flags);
1982 		serial8250_tx_chars(up);
1983 		spin_unlock_irqrestore(&port->lock, flags);
1984 	}
1985 
1986 	iir = serial_port_in(port, UART_IIR);
1987 	return serial8250_handle_irq(port, iir);
1988 }
1989 
serial8250_tx_empty(struct uart_port * port)1990 static unsigned int serial8250_tx_empty(struct uart_port *port)
1991 {
1992 	struct uart_8250_port *up = up_to_u8250p(port);
1993 	unsigned int result = 0;
1994 	unsigned long flags;
1995 	unsigned int lsr;
1996 
1997 	serial8250_rpm_get(up);
1998 
1999 	spin_lock_irqsave(&port->lock, flags);
2000 	if (!serial8250_tx_dma_running(up)) {
2001 		lsr = serial_port_in(port, UART_LSR);
2002 		up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
2003 
2004 		if ((lsr & BOTH_EMPTY) == BOTH_EMPTY)
2005 			result = TIOCSER_TEMT;
2006 	}
2007 	spin_unlock_irqrestore(&port->lock, flags);
2008 
2009 	serial8250_rpm_put(up);
2010 
2011 	return result;
2012 }
2013 
serial8250_do_get_mctrl(struct uart_port * port)2014 unsigned int serial8250_do_get_mctrl(struct uart_port *port)
2015 {
2016 	struct uart_8250_port *up = up_to_u8250p(port);
2017 	unsigned int status;
2018 	unsigned int val;
2019 
2020 	serial8250_rpm_get(up);
2021 	status = serial8250_modem_status(up);
2022 	serial8250_rpm_put(up);
2023 
2024 	val = serial8250_MSR_to_TIOCM(status);
2025 	if (up->gpios)
2026 		return mctrl_gpio_get(up->gpios, &val);
2027 
2028 	return val;
2029 }
2030 EXPORT_SYMBOL_GPL(serial8250_do_get_mctrl);
2031 
serial8250_get_mctrl(struct uart_port * port)2032 static unsigned int serial8250_get_mctrl(struct uart_port *port)
2033 {
2034 	if (port->get_mctrl)
2035 		return port->get_mctrl(port);
2036 	return serial8250_do_get_mctrl(port);
2037 }
2038 
serial8250_do_set_mctrl(struct uart_port * port,unsigned int mctrl)2039 void serial8250_do_set_mctrl(struct uart_port *port, unsigned int mctrl)
2040 {
2041 	struct uart_8250_port *up = up_to_u8250p(port);
2042 	unsigned char mcr;
2043 
2044 	mcr = serial8250_TIOCM_to_MCR(mctrl);
2045 
2046 	mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
2047 
2048 	serial8250_out_MCR(up, mcr);
2049 }
2050 EXPORT_SYMBOL_GPL(serial8250_do_set_mctrl);
2051 
serial8250_set_mctrl(struct uart_port * port,unsigned int mctrl)2052 static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
2053 {
2054 	if (port->rs485.flags & SER_RS485_ENABLED)
2055 		return;
2056 
2057 	if (port->set_mctrl)
2058 		port->set_mctrl(port, mctrl);
2059 	else
2060 		serial8250_do_set_mctrl(port, mctrl);
2061 }
2062 
serial8250_break_ctl(struct uart_port * port,int break_state)2063 static void serial8250_break_ctl(struct uart_port *port, int break_state)
2064 {
2065 	struct uart_8250_port *up = up_to_u8250p(port);
2066 	unsigned long flags;
2067 
2068 	serial8250_rpm_get(up);
2069 	spin_lock_irqsave(&port->lock, flags);
2070 	if (break_state == -1)
2071 		up->lcr |= UART_LCR_SBC;
2072 	else
2073 		up->lcr &= ~UART_LCR_SBC;
2074 	serial_port_out(port, UART_LCR, up->lcr);
2075 	spin_unlock_irqrestore(&port->lock, flags);
2076 	serial8250_rpm_put(up);
2077 }
2078 
2079 /*
2080  *	Wait for transmitter & holding register to empty
2081  */
wait_for_xmitr(struct uart_8250_port * up,int bits)2082 static void wait_for_xmitr(struct uart_8250_port *up, int bits)
2083 {
2084 	unsigned int status, tmout = 10000;
2085 
2086 	/* Wait up to 10ms for the character(s) to be sent. */
2087 	for (;;) {
2088 		status = serial_in(up, UART_LSR);
2089 
2090 		up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
2091 
2092 		if ((status & bits) == bits)
2093 			break;
2094 		if (--tmout == 0)
2095 			break;
2096 		udelay(1);
2097 		touch_nmi_watchdog();
2098 	}
2099 
2100 	/* Wait up to 1s for flow control if necessary */
2101 	if (up->port.flags & UPF_CONS_FLOW) {
2102 		for (tmout = 1000000; tmout; tmout--) {
2103 			unsigned int msr = serial_in(up, UART_MSR);
2104 			up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
2105 			if (msr & UART_MSR_CTS)
2106 				break;
2107 			udelay(1);
2108 			touch_nmi_watchdog();
2109 		}
2110 	}
2111 }
2112 
2113 #ifdef CONFIG_CONSOLE_POLL
2114 /*
2115  * Console polling routines for writing and reading from the uart while
2116  * in an interrupt or debug context.
2117  */
2118 
serial8250_get_poll_char(struct uart_port * port)2119 static int serial8250_get_poll_char(struct uart_port *port)
2120 {
2121 	struct uart_8250_port *up = up_to_u8250p(port);
2122 	unsigned char lsr;
2123 	int status;
2124 
2125 	serial8250_rpm_get(up);
2126 
2127 	lsr = serial_port_in(port, UART_LSR);
2128 
2129 	if (!(lsr & UART_LSR_DR)) {
2130 		status = NO_POLL_CHAR;
2131 		goto out;
2132 	}
2133 
2134 	status = serial_port_in(port, UART_RX);
2135 out:
2136 	serial8250_rpm_put(up);
2137 	return status;
2138 }
2139 
2140 
serial8250_put_poll_char(struct uart_port * port,unsigned char c)2141 static void serial8250_put_poll_char(struct uart_port *port,
2142 			 unsigned char c)
2143 {
2144 	unsigned int ier;
2145 	struct uart_8250_port *up = up_to_u8250p(port);
2146 
2147 	serial8250_rpm_get(up);
2148 	/*
2149 	 *	First save the IER then disable the interrupts
2150 	 */
2151 	ier = serial_port_in(port, UART_IER);
2152 	if (up->capabilities & UART_CAP_UUE)
2153 		serial_port_out(port, UART_IER, UART_IER_UUE);
2154 	else
2155 		serial_port_out(port, UART_IER, 0);
2156 
2157 	wait_for_xmitr(up, BOTH_EMPTY);
2158 	/*
2159 	 *	Send the character out.
2160 	 */
2161 	serial_port_out(port, UART_TX, c);
2162 
2163 	/*
2164 	 *	Finally, wait for transmitter to become empty
2165 	 *	and restore the IER
2166 	 */
2167 	wait_for_xmitr(up, BOTH_EMPTY);
2168 	serial_port_out(port, UART_IER, ier);
2169 	serial8250_rpm_put(up);
2170 }
2171 
2172 #endif /* CONFIG_CONSOLE_POLL */
2173 
serial8250_do_startup(struct uart_port * port)2174 int serial8250_do_startup(struct uart_port *port)
2175 {
2176 	struct uart_8250_port *up = up_to_u8250p(port);
2177 	unsigned long flags;
2178 	unsigned char lsr, iir;
2179 	int retval;
2180 
2181 	if (!port->fifosize)
2182 		port->fifosize = uart_config[port->type].fifo_size;
2183 	if (!up->tx_loadsz)
2184 		up->tx_loadsz = uart_config[port->type].tx_loadsz;
2185 	if (!up->capabilities)
2186 		up->capabilities = uart_config[port->type].flags;
2187 	up->mcr = 0;
2188 
2189 	if (port->iotype != up->cur_iotype)
2190 		set_io_from_upio(port);
2191 
2192 	serial8250_rpm_get(up);
2193 	if (port->type == PORT_16C950) {
2194 		/* Wake up and initialize UART */
2195 		up->acr = 0;
2196 		serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
2197 		serial_port_out(port, UART_EFR, UART_EFR_ECB);
2198 		serial_port_out(port, UART_IER, 0);
2199 		serial_port_out(port, UART_LCR, 0);
2200 		serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
2201 		serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
2202 		serial_port_out(port, UART_EFR, UART_EFR_ECB);
2203 		serial_port_out(port, UART_LCR, 0);
2204 	}
2205 
2206 	if (port->type == PORT_DA830) {
2207 		/* Reset the port */
2208 		serial_port_out(port, UART_IER, 0);
2209 		serial_port_out(port, UART_DA830_PWREMU_MGMT, 0);
2210 		mdelay(10);
2211 
2212 		/* Enable Tx, Rx and free run mode */
2213 		serial_port_out(port, UART_DA830_PWREMU_MGMT,
2214 				UART_DA830_PWREMU_MGMT_UTRST |
2215 				UART_DA830_PWREMU_MGMT_URRST |
2216 				UART_DA830_PWREMU_MGMT_FREE);
2217 	}
2218 
2219 	if (port->type == PORT_NPCM) {
2220 		/*
2221 		 * Nuvoton calls the scratch register 'UART_TOR' (timeout
2222 		 * register). Enable it, and set TIOC (timeout interrupt
2223 		 * comparator) to be 0x20 for correct operation.
2224 		 */
2225 		serial_port_out(port, UART_NPCM_TOR, UART_NPCM_TOIE | 0x20);
2226 	}
2227 
2228 #ifdef CONFIG_SERIAL_8250_RSA
2229 	/*
2230 	 * If this is an RSA port, see if we can kick it up to the
2231 	 * higher speed clock.
2232 	 */
2233 	enable_rsa(up);
2234 #endif
2235 
2236 	/*
2237 	 * Clear the FIFO buffers and disable them.
2238 	 * (they will be reenabled in set_termios())
2239 	 */
2240 	serial8250_clear_fifos(up);
2241 
2242 	/*
2243 	 * Clear the interrupt registers.
2244 	 */
2245 	serial_port_in(port, UART_LSR);
2246 	serial_port_in(port, UART_RX);
2247 	serial_port_in(port, UART_IIR);
2248 	serial_port_in(port, UART_MSR);
2249 
2250 	/*
2251 	 * At this point, there's no way the LSR could still be 0xff;
2252 	 * if it is, then bail out, because there's likely no UART
2253 	 * here.
2254 	 */
2255 	if (!(port->flags & UPF_BUGGY_UART) &&
2256 	    (serial_port_in(port, UART_LSR) == 0xff)) {
2257 		dev_info_ratelimited(port->dev, "LSR safety check engaged!\n");
2258 		retval = -ENODEV;
2259 		goto out;
2260 	}
2261 
2262 	/*
2263 	 * For a XR16C850, we need to set the trigger levels
2264 	 */
2265 	if (port->type == PORT_16850) {
2266 		unsigned char fctr;
2267 
2268 		serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
2269 
2270 		fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
2271 		serial_port_out(port, UART_FCTR,
2272 				fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2273 		serial_port_out(port, UART_TRG, UART_TRG_96);
2274 		serial_port_out(port, UART_FCTR,
2275 				fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2276 		serial_port_out(port, UART_TRG, UART_TRG_96);
2277 
2278 		serial_port_out(port, UART_LCR, 0);
2279 	}
2280 
2281 	/*
2282 	 * For the Altera 16550 variants, set TX threshold trigger level.
2283 	 */
2284 	if (((port->type == PORT_ALTR_16550_F32) ||
2285 	     (port->type == PORT_ALTR_16550_F64) ||
2286 	     (port->type == PORT_ALTR_16550_F128)) && (port->fifosize > 1)) {
2287 		/* Bounds checking of TX threshold (valid 0 to fifosize-2) */
2288 		if ((up->tx_loadsz < 2) || (up->tx_loadsz > port->fifosize)) {
2289 			dev_err(port->dev, "TX FIFO Threshold errors, skipping\n");
2290 		} else {
2291 			serial_port_out(port, UART_ALTR_AFR,
2292 					UART_ALTR_EN_TXFIFO_LW);
2293 			serial_port_out(port, UART_ALTR_TX_LOW,
2294 					port->fifosize - up->tx_loadsz);
2295 			port->handle_irq = serial8250_tx_threshold_handle_irq;
2296 		}
2297 	}
2298 
2299 	/* Check if we need to have shared IRQs */
2300 	if (port->irq && (up->port.flags & UPF_SHARE_IRQ))
2301 		up->port.irqflags |= IRQF_SHARED;
2302 
2303 	if (port->irq && !(up->port.flags & UPF_NO_THRE_TEST)) {
2304 		unsigned char iir1;
2305 
2306 		if (port->irqflags & IRQF_SHARED)
2307 			disable_irq_nosync(port->irq);
2308 
2309 		/*
2310 		 * Test for UARTs that do not reassert THRE when the
2311 		 * transmitter is idle and the interrupt has already
2312 		 * been cleared.  Real 16550s should always reassert
2313 		 * this interrupt whenever the transmitter is idle and
2314 		 * the interrupt is enabled.  Delays are necessary to
2315 		 * allow register changes to become visible.
2316 		 */
2317 		spin_lock_irqsave(&port->lock, flags);
2318 
2319 		wait_for_xmitr(up, UART_LSR_THRE);
2320 		serial_port_out_sync(port, UART_IER, UART_IER_THRI);
2321 		udelay(1); /* allow THRE to set */
2322 		iir1 = serial_port_in(port, UART_IIR);
2323 		serial_port_out(port, UART_IER, 0);
2324 		serial_port_out_sync(port, UART_IER, UART_IER_THRI);
2325 		udelay(1); /* allow a working UART time to re-assert THRE */
2326 		iir = serial_port_in(port, UART_IIR);
2327 		serial_port_out(port, UART_IER, 0);
2328 
2329 		spin_unlock_irqrestore(&port->lock, flags);
2330 
2331 		if (port->irqflags & IRQF_SHARED)
2332 			enable_irq(port->irq);
2333 
2334 		/*
2335 		 * If the interrupt is not reasserted, or we otherwise
2336 		 * don't trust the iir, setup a timer to kick the UART
2337 		 * on a regular basis.
2338 		 */
2339 		if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) ||
2340 		    up->port.flags & UPF_BUG_THRE) {
2341 			up->bugs |= UART_BUG_THRE;
2342 		}
2343 	}
2344 
2345 	retval = up->ops->setup_irq(up);
2346 	if (retval)
2347 		goto out;
2348 
2349 	/*
2350 	 * Now, initialize the UART
2351 	 */
2352 	serial_port_out(port, UART_LCR, UART_LCR_WLEN8);
2353 
2354 	spin_lock_irqsave(&port->lock, flags);
2355 	if (up->port.flags & UPF_FOURPORT) {
2356 		if (!up->port.irq)
2357 			up->port.mctrl |= TIOCM_OUT1;
2358 	} else
2359 		/*
2360 		 * Most PC uarts need OUT2 raised to enable interrupts.
2361 		 */
2362 		if (port->irq)
2363 			up->port.mctrl |= TIOCM_OUT2;
2364 
2365 	serial8250_set_mctrl(port, port->mctrl);
2366 
2367 	/*
2368 	 * Serial over Lan (SoL) hack:
2369 	 * Intel 8257x Gigabit ethernet chips have a 16550 emulation, to be
2370 	 * used for Serial Over Lan.  Those chips take a longer time than a
2371 	 * normal serial device to signalize that a transmission data was
2372 	 * queued. Due to that, the above test generally fails. One solution
2373 	 * would be to delay the reading of iir. However, this is not
2374 	 * reliable, since the timeout is variable. So, let's just don't
2375 	 * test if we receive TX irq.  This way, we'll never enable
2376 	 * UART_BUG_TXEN.
2377 	 */
2378 	if (up->port.quirks & UPQ_NO_TXEN_TEST)
2379 		goto dont_test_tx_en;
2380 
2381 	/*
2382 	 * Do a quick test to see if we receive an interrupt when we enable
2383 	 * the TX irq.
2384 	 */
2385 	serial_port_out(port, UART_IER, UART_IER_THRI);
2386 	lsr = serial_port_in(port, UART_LSR);
2387 	iir = serial_port_in(port, UART_IIR);
2388 	serial_port_out(port, UART_IER, 0);
2389 
2390 	if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
2391 		if (!(up->bugs & UART_BUG_TXEN)) {
2392 			up->bugs |= UART_BUG_TXEN;
2393 			dev_dbg(port->dev, "enabling bad tx status workarounds\n");
2394 		}
2395 	} else {
2396 		up->bugs &= ~UART_BUG_TXEN;
2397 	}
2398 
2399 dont_test_tx_en:
2400 	spin_unlock_irqrestore(&port->lock, flags);
2401 
2402 	/*
2403 	 * Clear the interrupt registers again for luck, and clear the
2404 	 * saved flags to avoid getting false values from polling
2405 	 * routines or the previous session.
2406 	 */
2407 	serial_port_in(port, UART_LSR);
2408 	serial_port_in(port, UART_RX);
2409 	serial_port_in(port, UART_IIR);
2410 	serial_port_in(port, UART_MSR);
2411 	up->lsr_saved_flags = 0;
2412 	up->msr_saved_flags = 0;
2413 
2414 	/*
2415 	 * Request DMA channels for both RX and TX.
2416 	 */
2417 	if (up->dma) {
2418 		const char *msg = NULL;
2419 
2420 		if (uart_console(port))
2421 			msg = "forbid DMA for kernel console";
2422 		else if (serial8250_request_dma(up))
2423 			msg = "failed to request DMA";
2424 		if (msg) {
2425 			dev_warn_ratelimited(port->dev, "%s\n", msg);
2426 			up->dma = NULL;
2427 		}
2428 	}
2429 
2430 	/*
2431 	 * Set the IER shadow for rx interrupts but defer actual interrupt
2432 	 * enable until after the FIFOs are enabled; otherwise, an already-
2433 	 * active sender can swamp the interrupt handler with "too much work".
2434 	 */
2435 	up->ier = UART_IER_RLSI | UART_IER_RDI;
2436 
2437 	if (port->flags & UPF_FOURPORT) {
2438 		unsigned int icp;
2439 		/*
2440 		 * Enable interrupts on the AST Fourport board
2441 		 */
2442 		icp = (port->iobase & 0xfe0) | 0x01f;
2443 		outb_p(0x80, icp);
2444 		inb_p(icp);
2445 	}
2446 	retval = 0;
2447 out:
2448 	serial8250_rpm_put(up);
2449 	return retval;
2450 }
2451 EXPORT_SYMBOL_GPL(serial8250_do_startup);
2452 
serial8250_startup(struct uart_port * port)2453 static int serial8250_startup(struct uart_port *port)
2454 {
2455 	if (port->startup)
2456 		return port->startup(port);
2457 	return serial8250_do_startup(port);
2458 }
2459 
serial8250_do_shutdown(struct uart_port * port)2460 void serial8250_do_shutdown(struct uart_port *port)
2461 {
2462 	struct uart_8250_port *up = up_to_u8250p(port);
2463 	unsigned long flags;
2464 
2465 	serial8250_rpm_get(up);
2466 	/*
2467 	 * Disable interrupts from this port
2468 	 */
2469 	spin_lock_irqsave(&port->lock, flags);
2470 	up->ier = 0;
2471 	serial_port_out(port, UART_IER, 0);
2472 	spin_unlock_irqrestore(&port->lock, flags);
2473 
2474 	synchronize_irq(port->irq);
2475 
2476 	if (up->dma)
2477 		serial8250_release_dma(up);
2478 
2479 	spin_lock_irqsave(&port->lock, flags);
2480 	if (port->flags & UPF_FOURPORT) {
2481 		/* reset interrupts on the AST Fourport board */
2482 		inb((port->iobase & 0xfe0) | 0x1f);
2483 		port->mctrl |= TIOCM_OUT1;
2484 	} else
2485 		port->mctrl &= ~TIOCM_OUT2;
2486 
2487 	serial8250_set_mctrl(port, port->mctrl);
2488 	spin_unlock_irqrestore(&port->lock, flags);
2489 
2490 	/*
2491 	 * Disable break condition and FIFOs
2492 	 */
2493 	serial_port_out(port, UART_LCR,
2494 			serial_port_in(port, UART_LCR) & ~UART_LCR_SBC);
2495 	serial8250_clear_fifos(up);
2496 
2497 #ifdef CONFIG_SERIAL_8250_RSA
2498 	/*
2499 	 * Reset the RSA board back to 115kbps compat mode.
2500 	 */
2501 	disable_rsa(up);
2502 #endif
2503 
2504 	/*
2505 	 * Read data port to reset things, and then unlink from
2506 	 * the IRQ chain.
2507 	 */
2508 	serial_port_in(port, UART_RX);
2509 	serial8250_rpm_put(up);
2510 
2511 	up->ops->release_irq(up);
2512 }
2513 EXPORT_SYMBOL_GPL(serial8250_do_shutdown);
2514 
serial8250_shutdown(struct uart_port * port)2515 static void serial8250_shutdown(struct uart_port *port)
2516 {
2517 	if (port->shutdown)
2518 		port->shutdown(port);
2519 	else
2520 		serial8250_do_shutdown(port);
2521 }
2522 
2523 /* Nuvoton NPCM UARTs have a custom divisor calculation */
npcm_get_divisor(struct uart_8250_port * up,unsigned int baud)2524 static unsigned int npcm_get_divisor(struct uart_8250_port *up,
2525 		unsigned int baud)
2526 {
2527 	struct uart_port *port = &up->port;
2528 
2529 	return DIV_ROUND_CLOSEST(port->uartclk, 16 * baud + 2) - 2;
2530 }
2531 
serial8250_do_get_divisor(struct uart_port * port,unsigned int baud,unsigned int * frac)2532 static unsigned int serial8250_do_get_divisor(struct uart_port *port,
2533 					      unsigned int baud,
2534 					      unsigned int *frac)
2535 {
2536 	upf_t magic_multiplier = port->flags & UPF_MAGIC_MULTIPLIER;
2537 	struct uart_8250_port *up = up_to_u8250p(port);
2538 	unsigned int quot;
2539 
2540 	/*
2541 	 * Handle magic divisors for baud rates above baud_base on SMSC
2542 	 * Super I/O chips.  We clamp custom rates from clk/6 and clk/12
2543 	 * up to clk/4 (0x8001) and clk/8 (0x8002) respectively.  These
2544 	 * magic divisors actually reprogram the baud rate generator's
2545 	 * reference clock derived from chips's 14.318MHz clock input.
2546 	 *
2547 	 * Documentation claims that with these magic divisors the base
2548 	 * frequencies of 7.3728MHz and 3.6864MHz are used respectively
2549 	 * for the extra baud rates of 460800bps and 230400bps rather
2550 	 * than the usual base frequency of 1.8462MHz.  However empirical
2551 	 * evidence contradicts that.
2552 	 *
2553 	 * Instead bit 7 of the DLM register (bit 15 of the divisor) is
2554 	 * effectively used as a clock prescaler selection bit for the
2555 	 * base frequency of 7.3728MHz, always used.  If set to 0, then
2556 	 * the base frequency is divided by 4 for use by the Baud Rate
2557 	 * Generator, for the usual arrangement where the value of 1 of
2558 	 * the divisor produces the baud rate of 115200bps.  Conversely,
2559 	 * if set to 1 and high-speed operation has been enabled with the
2560 	 * Serial Port Mode Register in the Device Configuration Space,
2561 	 * then the base frequency is supplied directly to the Baud Rate
2562 	 * Generator, so for the divisor values of 0x8001, 0x8002, 0x8003,
2563 	 * 0x8004, etc. the respective baud rates produced are 460800bps,
2564 	 * 230400bps, 153600bps, 115200bps, etc.
2565 	 *
2566 	 * In all cases only low 15 bits of the divisor are used to divide
2567 	 * the baud base and therefore 32767 is the maximum divisor value
2568 	 * possible, even though documentation says that the programmable
2569 	 * Baud Rate Generator is capable of dividing the internal PLL
2570 	 * clock by any divisor from 1 to 65535.
2571 	 */
2572 	if (magic_multiplier && baud >= port->uartclk / 6)
2573 		quot = 0x8001;
2574 	else if (magic_multiplier && baud >= port->uartclk / 12)
2575 		quot = 0x8002;
2576 	else if (up->port.type == PORT_NPCM)
2577 		quot = npcm_get_divisor(up, baud);
2578 	else
2579 		quot = uart_get_divisor(port, baud);
2580 
2581 	/*
2582 	 * Oxford Semi 952 rev B workaround
2583 	 */
2584 	if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
2585 		quot++;
2586 
2587 	return quot;
2588 }
2589 
serial8250_get_divisor(struct uart_port * port,unsigned int baud,unsigned int * frac)2590 static unsigned int serial8250_get_divisor(struct uart_port *port,
2591 					   unsigned int baud,
2592 					   unsigned int *frac)
2593 {
2594 	if (port->get_divisor)
2595 		return port->get_divisor(port, baud, frac);
2596 
2597 	return serial8250_do_get_divisor(port, baud, frac);
2598 }
2599 
serial8250_compute_lcr(struct uart_8250_port * up,tcflag_t c_cflag)2600 static unsigned char serial8250_compute_lcr(struct uart_8250_port *up,
2601 					    tcflag_t c_cflag)
2602 {
2603 	unsigned char cval;
2604 
2605 	switch (c_cflag & CSIZE) {
2606 	case CS5:
2607 		cval = UART_LCR_WLEN5;
2608 		break;
2609 	case CS6:
2610 		cval = UART_LCR_WLEN6;
2611 		break;
2612 	case CS7:
2613 		cval = UART_LCR_WLEN7;
2614 		break;
2615 	default:
2616 	case CS8:
2617 		cval = UART_LCR_WLEN8;
2618 		break;
2619 	}
2620 
2621 	if (c_cflag & CSTOPB)
2622 		cval |= UART_LCR_STOP;
2623 	if (c_cflag & PARENB) {
2624 		cval |= UART_LCR_PARITY;
2625 		if (up->bugs & UART_BUG_PARITY)
2626 			up->fifo_bug = true;
2627 	}
2628 	if (!(c_cflag & PARODD))
2629 		cval |= UART_LCR_EPAR;
2630 #ifdef CMSPAR
2631 	if (c_cflag & CMSPAR)
2632 		cval |= UART_LCR_SPAR;
2633 #endif
2634 
2635 	return cval;
2636 }
2637 
serial8250_do_set_divisor(struct uart_port * port,unsigned int baud,unsigned int quot,unsigned int quot_frac)2638 void serial8250_do_set_divisor(struct uart_port *port, unsigned int baud,
2639 			       unsigned int quot, unsigned int quot_frac)
2640 {
2641 	struct uart_8250_port *up = up_to_u8250p(port);
2642 
2643 	/* Workaround to enable 115200 baud on OMAP1510 internal ports */
2644 	if (is_omap1510_8250(up)) {
2645 		if (baud == 115200) {
2646 			quot = 1;
2647 			serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1);
2648 		} else
2649 			serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0);
2650 	}
2651 
2652 	/*
2653 	 * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2,
2654 	 * otherwise just set DLAB
2655 	 */
2656 	if (up->capabilities & UART_NATSEMI)
2657 		serial_port_out(port, UART_LCR, 0xe0);
2658 	else
2659 		serial_port_out(port, UART_LCR, up->lcr | UART_LCR_DLAB);
2660 
2661 	serial_dl_write(up, quot);
2662 }
2663 EXPORT_SYMBOL_GPL(serial8250_do_set_divisor);
2664 
serial8250_set_divisor(struct uart_port * port,unsigned int baud,unsigned int quot,unsigned int quot_frac)2665 static void serial8250_set_divisor(struct uart_port *port, unsigned int baud,
2666 				   unsigned int quot, unsigned int quot_frac)
2667 {
2668 	if (port->set_divisor)
2669 		port->set_divisor(port, baud, quot, quot_frac);
2670 	else
2671 		serial8250_do_set_divisor(port, baud, quot, quot_frac);
2672 }
2673 
serial8250_get_baud_rate(struct uart_port * port,struct ktermios * termios,struct ktermios * old)2674 static unsigned int serial8250_get_baud_rate(struct uart_port *port,
2675 					     struct ktermios *termios,
2676 					     struct ktermios *old)
2677 {
2678 	unsigned int tolerance = port->uartclk / 100;
2679 	unsigned int min;
2680 	unsigned int max;
2681 
2682 	/*
2683 	 * Handle magic divisors for baud rates above baud_base on SMSC
2684 	 * Super I/O chips.  Enable custom rates of clk/4 and clk/8, but
2685 	 * disable divisor values beyond 32767, which are unavailable.
2686 	 */
2687 	if (port->flags & UPF_MAGIC_MULTIPLIER) {
2688 		min = port->uartclk / 16 / UART_DIV_MAX >> 1;
2689 		max = (port->uartclk + tolerance) / 4;
2690 	} else {
2691 		min = port->uartclk / 16 / UART_DIV_MAX;
2692 		max = (port->uartclk + tolerance) / 16;
2693 	}
2694 
2695 	/*
2696 	 * Ask the core to calculate the divisor for us.
2697 	 * Allow 1% tolerance at the upper limit so uart clks marginally
2698 	 * slower than nominal still match standard baud rates without
2699 	 * causing transmission errors.
2700 	 */
2701 	return uart_get_baud_rate(port, termios, old, min, max);
2702 }
2703 
2704 /*
2705  * Note in order to avoid the tty port mutex deadlock don't use the next method
2706  * within the uart port callbacks. Primarily it's supposed to be utilized to
2707  * handle a sudden reference clock rate change.
2708  */
serial8250_update_uartclk(struct uart_port * port,unsigned int uartclk)2709 void serial8250_update_uartclk(struct uart_port *port, unsigned int uartclk)
2710 {
2711 	struct uart_8250_port *up = up_to_u8250p(port);
2712 	struct tty_port *tport = &port->state->port;
2713 	unsigned int baud, quot, frac = 0;
2714 	struct ktermios *termios;
2715 	struct tty_struct *tty;
2716 	unsigned long flags;
2717 
2718 	tty = tty_port_tty_get(tport);
2719 	if (!tty) {
2720 		mutex_lock(&tport->mutex);
2721 		port->uartclk = uartclk;
2722 		mutex_unlock(&tport->mutex);
2723 		return;
2724 	}
2725 
2726 	down_write(&tty->termios_rwsem);
2727 	mutex_lock(&tport->mutex);
2728 
2729 	if (port->uartclk == uartclk)
2730 		goto out_lock;
2731 
2732 	port->uartclk = uartclk;
2733 
2734 	if (!tty_port_initialized(tport))
2735 		goto out_lock;
2736 
2737 	termios = &tty->termios;
2738 
2739 	baud = serial8250_get_baud_rate(port, termios, NULL);
2740 	quot = serial8250_get_divisor(port, baud, &frac);
2741 
2742 	serial8250_rpm_get(up);
2743 	spin_lock_irqsave(&port->lock, flags);
2744 
2745 	uart_update_timeout(port, termios->c_cflag, baud);
2746 
2747 	serial8250_set_divisor(port, baud, quot, frac);
2748 	serial_port_out(port, UART_LCR, up->lcr);
2749 
2750 	spin_unlock_irqrestore(&port->lock, flags);
2751 	serial8250_rpm_put(up);
2752 
2753 out_lock:
2754 	mutex_unlock(&tport->mutex);
2755 	up_write(&tty->termios_rwsem);
2756 	tty_kref_put(tty);
2757 }
2758 EXPORT_SYMBOL_GPL(serial8250_update_uartclk);
2759 
2760 void
serial8250_do_set_termios(struct uart_port * port,struct ktermios * termios,struct ktermios * old)2761 serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2762 			  struct ktermios *old)
2763 {
2764 	struct uart_8250_port *up = up_to_u8250p(port);
2765 	unsigned char cval;
2766 	unsigned long flags;
2767 	unsigned int baud, quot, frac = 0;
2768 
2769 	if (up->capabilities & UART_CAP_MINI) {
2770 		termios->c_cflag &= ~(CSTOPB | PARENB | PARODD | CMSPAR);
2771 		if ((termios->c_cflag & CSIZE) == CS5 ||
2772 		    (termios->c_cflag & CSIZE) == CS6)
2773 			termios->c_cflag = (termios->c_cflag & ~CSIZE) | CS7;
2774 	}
2775 	cval = serial8250_compute_lcr(up, termios->c_cflag);
2776 
2777 	baud = serial8250_get_baud_rate(port, termios, old);
2778 	quot = serial8250_get_divisor(port, baud, &frac);
2779 
2780 	/*
2781 	 * Ok, we're now changing the port state.  Do it with
2782 	 * interrupts disabled.
2783 	 */
2784 	serial8250_rpm_get(up);
2785 	spin_lock_irqsave(&port->lock, flags);
2786 
2787 	up->lcr = cval;					/* Save computed LCR */
2788 
2789 	if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) {
2790 		/* NOTE: If fifo_bug is not set, a user can set RX_trigger. */
2791 		if ((baud < 2400 && !up->dma) || up->fifo_bug) {
2792 			up->fcr &= ~UART_FCR_TRIGGER_MASK;
2793 			up->fcr |= UART_FCR_TRIGGER_1;
2794 		}
2795 	}
2796 
2797 	/*
2798 	 * MCR-based auto flow control.  When AFE is enabled, RTS will be
2799 	 * deasserted when the receive FIFO contains more characters than
2800 	 * the trigger, or the MCR RTS bit is cleared.
2801 	 */
2802 	if (up->capabilities & UART_CAP_AFE) {
2803 		up->mcr &= ~UART_MCR_AFE;
2804 		if (termios->c_cflag & CRTSCTS)
2805 			up->mcr |= UART_MCR_AFE;
2806 	}
2807 
2808 	/*
2809 	 * Update the per-port timeout.
2810 	 */
2811 	uart_update_timeout(port, termios->c_cflag, baud);
2812 
2813 	port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2814 	if (termios->c_iflag & INPCK)
2815 		port->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2816 	if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
2817 		port->read_status_mask |= UART_LSR_BI;
2818 
2819 	/*
2820 	 * Characteres to ignore
2821 	 */
2822 	port->ignore_status_mask = 0;
2823 	if (termios->c_iflag & IGNPAR)
2824 		port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2825 	if (termios->c_iflag & IGNBRK) {
2826 		port->ignore_status_mask |= UART_LSR_BI;
2827 		/*
2828 		 * If we're ignoring parity and break indicators,
2829 		 * ignore overruns too (for real raw support).
2830 		 */
2831 		if (termios->c_iflag & IGNPAR)
2832 			port->ignore_status_mask |= UART_LSR_OE;
2833 	}
2834 
2835 	/*
2836 	 * ignore all characters if CREAD is not set
2837 	 */
2838 	if ((termios->c_cflag & CREAD) == 0)
2839 		port->ignore_status_mask |= UART_LSR_DR;
2840 
2841 	/*
2842 	 * CTS flow control flag and modem status interrupts
2843 	 */
2844 	up->ier &= ~UART_IER_MSI;
2845 	if (!(up->bugs & UART_BUG_NOMSR) &&
2846 			UART_ENABLE_MS(&up->port, termios->c_cflag))
2847 		up->ier |= UART_IER_MSI;
2848 	if (up->capabilities & UART_CAP_UUE)
2849 		up->ier |= UART_IER_UUE;
2850 	if (up->capabilities & UART_CAP_RTOIE)
2851 		up->ier |= UART_IER_RTOIE;
2852 
2853 	serial_port_out(port, UART_IER, up->ier);
2854 
2855 	if (up->capabilities & UART_CAP_EFR) {
2856 		unsigned char efr = 0;
2857 		/*
2858 		 * TI16C752/Startech hardware flow control.  FIXME:
2859 		 * - TI16C752 requires control thresholds to be set.
2860 		 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2861 		 */
2862 		if (termios->c_cflag & CRTSCTS)
2863 			efr |= UART_EFR_CTS;
2864 
2865 		serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
2866 		if (port->flags & UPF_EXAR_EFR)
2867 			serial_port_out(port, UART_XR_EFR, efr);
2868 		else
2869 			serial_port_out(port, UART_EFR, efr);
2870 	}
2871 
2872 	serial8250_set_divisor(port, baud, quot, frac);
2873 
2874 	/*
2875 	 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2876 	 * is written without DLAB set, this mode will be disabled.
2877 	 */
2878 	if (port->type == PORT_16750)
2879 		serial_port_out(port, UART_FCR, up->fcr);
2880 
2881 	serial_port_out(port, UART_LCR, up->lcr);	/* reset DLAB */
2882 	if (port->type != PORT_16750) {
2883 		/* emulated UARTs (Lucent Venus 167x) need two steps */
2884 		if (up->fcr & UART_FCR_ENABLE_FIFO)
2885 			serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);
2886 		serial_port_out(port, UART_FCR, up->fcr);	/* set fcr */
2887 	}
2888 	serial8250_set_mctrl(port, port->mctrl);
2889 	spin_unlock_irqrestore(&port->lock, flags);
2890 	serial8250_rpm_put(up);
2891 
2892 	/* Don't rewrite B0 */
2893 	if (tty_termios_baud_rate(termios))
2894 		tty_termios_encode_baud_rate(termios, baud, baud);
2895 }
2896 EXPORT_SYMBOL(serial8250_do_set_termios);
2897 
2898 static void
serial8250_set_termios(struct uart_port * port,struct ktermios * termios,struct ktermios * old)2899 serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2900 		       struct ktermios *old)
2901 {
2902 	if (port->set_termios)
2903 		port->set_termios(port, termios, old);
2904 	else
2905 		serial8250_do_set_termios(port, termios, old);
2906 }
2907 
serial8250_do_set_ldisc(struct uart_port * port,struct ktermios * termios)2908 void serial8250_do_set_ldisc(struct uart_port *port, struct ktermios *termios)
2909 {
2910 	if (termios->c_line == N_PPS) {
2911 		port->flags |= UPF_HARDPPS_CD;
2912 		spin_lock_irq(&port->lock);
2913 		serial8250_enable_ms(port);
2914 		spin_unlock_irq(&port->lock);
2915 	} else {
2916 		port->flags &= ~UPF_HARDPPS_CD;
2917 		if (!UART_ENABLE_MS(port, termios->c_cflag)) {
2918 			spin_lock_irq(&port->lock);
2919 			serial8250_disable_ms(port);
2920 			spin_unlock_irq(&port->lock);
2921 		}
2922 	}
2923 }
2924 EXPORT_SYMBOL_GPL(serial8250_do_set_ldisc);
2925 
2926 static void
serial8250_set_ldisc(struct uart_port * port,struct ktermios * termios)2927 serial8250_set_ldisc(struct uart_port *port, struct ktermios *termios)
2928 {
2929 	if (port->set_ldisc)
2930 		port->set_ldisc(port, termios);
2931 	else
2932 		serial8250_do_set_ldisc(port, termios);
2933 }
2934 
serial8250_do_pm(struct uart_port * port,unsigned int state,unsigned int oldstate)2935 void serial8250_do_pm(struct uart_port *port, unsigned int state,
2936 		      unsigned int oldstate)
2937 {
2938 	struct uart_8250_port *p = up_to_u8250p(port);
2939 
2940 	serial8250_set_sleep(p, state != 0);
2941 }
2942 EXPORT_SYMBOL(serial8250_do_pm);
2943 
2944 static void
serial8250_pm(struct uart_port * port,unsigned int state,unsigned int oldstate)2945 serial8250_pm(struct uart_port *port, unsigned int state,
2946 	      unsigned int oldstate)
2947 {
2948 	if (port->pm)
2949 		port->pm(port, state, oldstate);
2950 	else
2951 		serial8250_do_pm(port, state, oldstate);
2952 }
2953 
serial8250_port_size(struct uart_8250_port * pt)2954 static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2955 {
2956 	if (pt->port.mapsize)
2957 		return pt->port.mapsize;
2958 	if (pt->port.iotype == UPIO_AU) {
2959 		if (pt->port.type == PORT_RT2880)
2960 			return 0x100;
2961 		return 0x1000;
2962 	}
2963 	if (is_omap1_8250(pt))
2964 		return 0x16 << pt->port.regshift;
2965 
2966 	return 8 << pt->port.regshift;
2967 }
2968 
2969 /*
2970  * Resource handling.
2971  */
serial8250_request_std_resource(struct uart_8250_port * up)2972 static int serial8250_request_std_resource(struct uart_8250_port *up)
2973 {
2974 	unsigned int size = serial8250_port_size(up);
2975 	struct uart_port *port = &up->port;
2976 	int ret = 0;
2977 
2978 	switch (port->iotype) {
2979 	case UPIO_AU:
2980 	case UPIO_TSI:
2981 	case UPIO_MEM32:
2982 	case UPIO_MEM32BE:
2983 	case UPIO_MEM16:
2984 	case UPIO_MEM:
2985 		if (!port->mapbase) {
2986 			ret = -EINVAL;
2987 			break;
2988 		}
2989 
2990 		if (!request_mem_region(port->mapbase, size, "serial")) {
2991 			ret = -EBUSY;
2992 			break;
2993 		}
2994 
2995 		if (port->flags & UPF_IOREMAP) {
2996 			port->membase = ioremap(port->mapbase, size);
2997 			if (!port->membase) {
2998 				release_mem_region(port->mapbase, size);
2999 				ret = -ENOMEM;
3000 			}
3001 		}
3002 		break;
3003 
3004 	case UPIO_HUB6:
3005 	case UPIO_PORT:
3006 		if (!request_region(port->iobase, size, "serial"))
3007 			ret = -EBUSY;
3008 		break;
3009 	}
3010 	return ret;
3011 }
3012 
serial8250_release_std_resource(struct uart_8250_port * up)3013 static void serial8250_release_std_resource(struct uart_8250_port *up)
3014 {
3015 	unsigned int size = serial8250_port_size(up);
3016 	struct uart_port *port = &up->port;
3017 
3018 	switch (port->iotype) {
3019 	case UPIO_AU:
3020 	case UPIO_TSI:
3021 	case UPIO_MEM32:
3022 	case UPIO_MEM32BE:
3023 	case UPIO_MEM16:
3024 	case UPIO_MEM:
3025 		if (!port->mapbase)
3026 			break;
3027 
3028 		if (port->flags & UPF_IOREMAP) {
3029 			iounmap(port->membase);
3030 			port->membase = NULL;
3031 		}
3032 
3033 		release_mem_region(port->mapbase, size);
3034 		break;
3035 
3036 	case UPIO_HUB6:
3037 	case UPIO_PORT:
3038 		release_region(port->iobase, size);
3039 		break;
3040 	}
3041 }
3042 
serial8250_release_port(struct uart_port * port)3043 static void serial8250_release_port(struct uart_port *port)
3044 {
3045 	struct uart_8250_port *up = up_to_u8250p(port);
3046 
3047 	serial8250_release_std_resource(up);
3048 }
3049 
serial8250_request_port(struct uart_port * port)3050 static int serial8250_request_port(struct uart_port *port)
3051 {
3052 	struct uart_8250_port *up = up_to_u8250p(port);
3053 
3054 	return serial8250_request_std_resource(up);
3055 }
3056 
fcr_get_rxtrig_bytes(struct uart_8250_port * up)3057 static int fcr_get_rxtrig_bytes(struct uart_8250_port *up)
3058 {
3059 	const struct serial8250_config *conf_type = &uart_config[up->port.type];
3060 	unsigned char bytes;
3061 
3062 	bytes = conf_type->rxtrig_bytes[UART_FCR_R_TRIG_BITS(up->fcr)];
3063 
3064 	return bytes ? bytes : -EOPNOTSUPP;
3065 }
3066 
bytes_to_fcr_rxtrig(struct uart_8250_port * up,unsigned char bytes)3067 static int bytes_to_fcr_rxtrig(struct uart_8250_port *up, unsigned char bytes)
3068 {
3069 	const struct serial8250_config *conf_type = &uart_config[up->port.type];
3070 	int i;
3071 
3072 	if (!conf_type->rxtrig_bytes[UART_FCR_R_TRIG_BITS(UART_FCR_R_TRIG_00)])
3073 		return -EOPNOTSUPP;
3074 
3075 	for (i = 1; i < UART_FCR_R_TRIG_MAX_STATE; i++) {
3076 		if (bytes < conf_type->rxtrig_bytes[i])
3077 			/* Use the nearest lower value */
3078 			return (--i) << UART_FCR_R_TRIG_SHIFT;
3079 	}
3080 
3081 	return UART_FCR_R_TRIG_11;
3082 }
3083 
do_get_rxtrig(struct tty_port * port)3084 static int do_get_rxtrig(struct tty_port *port)
3085 {
3086 	struct uart_state *state = container_of(port, struct uart_state, port);
3087 	struct uart_port *uport = state->uart_port;
3088 	struct uart_8250_port *up = up_to_u8250p(uport);
3089 
3090 	if (!(up->capabilities & UART_CAP_FIFO) || uport->fifosize <= 1)
3091 		return -EINVAL;
3092 
3093 	return fcr_get_rxtrig_bytes(up);
3094 }
3095 
do_serial8250_get_rxtrig(struct tty_port * port)3096 static int do_serial8250_get_rxtrig(struct tty_port *port)
3097 {
3098 	int rxtrig_bytes;
3099 
3100 	mutex_lock(&port->mutex);
3101 	rxtrig_bytes = do_get_rxtrig(port);
3102 	mutex_unlock(&port->mutex);
3103 
3104 	return rxtrig_bytes;
3105 }
3106 
rx_trig_bytes_show(struct device * dev,struct device_attribute * attr,char * buf)3107 static ssize_t rx_trig_bytes_show(struct device *dev,
3108 	struct device_attribute *attr, char *buf)
3109 {
3110 	struct tty_port *port = dev_get_drvdata(dev);
3111 	int rxtrig_bytes;
3112 
3113 	rxtrig_bytes = do_serial8250_get_rxtrig(port);
3114 	if (rxtrig_bytes < 0)
3115 		return rxtrig_bytes;
3116 
3117 	return snprintf(buf, PAGE_SIZE, "%d\n", rxtrig_bytes);
3118 }
3119 
do_set_rxtrig(struct tty_port * port,unsigned char bytes)3120 static int do_set_rxtrig(struct tty_port *port, unsigned char bytes)
3121 {
3122 	struct uart_state *state = container_of(port, struct uart_state, port);
3123 	struct uart_port *uport = state->uart_port;
3124 	struct uart_8250_port *up = up_to_u8250p(uport);
3125 	int rxtrig;
3126 
3127 	if (!(up->capabilities & UART_CAP_FIFO) || uport->fifosize <= 1 ||
3128 	    up->fifo_bug)
3129 		return -EINVAL;
3130 
3131 	rxtrig = bytes_to_fcr_rxtrig(up, bytes);
3132 	if (rxtrig < 0)
3133 		return rxtrig;
3134 
3135 	serial8250_clear_fifos(up);
3136 	up->fcr &= ~UART_FCR_TRIGGER_MASK;
3137 	up->fcr |= (unsigned char)rxtrig;
3138 	serial_out(up, UART_FCR, up->fcr);
3139 	return 0;
3140 }
3141 
do_serial8250_set_rxtrig(struct tty_port * port,unsigned char bytes)3142 static int do_serial8250_set_rxtrig(struct tty_port *port, unsigned char bytes)
3143 {
3144 	int ret;
3145 
3146 	mutex_lock(&port->mutex);
3147 	ret = do_set_rxtrig(port, bytes);
3148 	mutex_unlock(&port->mutex);
3149 
3150 	return ret;
3151 }
3152 
rx_trig_bytes_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)3153 static ssize_t rx_trig_bytes_store(struct device *dev,
3154 	struct device_attribute *attr, const char *buf, size_t count)
3155 {
3156 	struct tty_port *port = dev_get_drvdata(dev);
3157 	unsigned char bytes;
3158 	int ret;
3159 
3160 	if (!count)
3161 		return -EINVAL;
3162 
3163 	ret = kstrtou8(buf, 10, &bytes);
3164 	if (ret < 0)
3165 		return ret;
3166 
3167 	ret = do_serial8250_set_rxtrig(port, bytes);
3168 	if (ret < 0)
3169 		return ret;
3170 
3171 	return count;
3172 }
3173 
3174 static DEVICE_ATTR_RW(rx_trig_bytes);
3175 
3176 static struct attribute *serial8250_dev_attrs[] = {
3177 	&dev_attr_rx_trig_bytes.attr,
3178 	NULL
3179 };
3180 
3181 static struct attribute_group serial8250_dev_attr_group = {
3182 	.attrs = serial8250_dev_attrs,
3183 };
3184 
register_dev_spec_attr_grp(struct uart_8250_port * up)3185 static void register_dev_spec_attr_grp(struct uart_8250_port *up)
3186 {
3187 	const struct serial8250_config *conf_type = &uart_config[up->port.type];
3188 
3189 	if (conf_type->rxtrig_bytes[0])
3190 		up->port.attr_group = &serial8250_dev_attr_group;
3191 }
3192 
serial8250_config_port(struct uart_port * port,int flags)3193 static void serial8250_config_port(struct uart_port *port, int flags)
3194 {
3195 	struct uart_8250_port *up = up_to_u8250p(port);
3196 	int ret;
3197 
3198 	/*
3199 	 * Find the region that we can probe for.  This in turn
3200 	 * tells us whether we can probe for the type of port.
3201 	 */
3202 	ret = serial8250_request_std_resource(up);
3203 	if (ret < 0)
3204 		return;
3205 
3206 	if (port->iotype != up->cur_iotype)
3207 		set_io_from_upio(port);
3208 
3209 	if (flags & UART_CONFIG_TYPE)
3210 		autoconfig(up);
3211 
3212 	/* if access method is AU, it is a 16550 with a quirk */
3213 	if (port->type == PORT_16550A && port->iotype == UPIO_AU)
3214 		up->bugs |= UART_BUG_NOMSR;
3215 
3216 	/* HW bugs may trigger IRQ while IIR == NO_INT */
3217 	if (port->type == PORT_TEGRA)
3218 		up->bugs |= UART_BUG_NOMSR;
3219 
3220 	if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
3221 		autoconfig_irq(up);
3222 
3223 	if (port->type == PORT_UNKNOWN)
3224 		serial8250_release_std_resource(up);
3225 
3226 	register_dev_spec_attr_grp(up);
3227 	up->fcr = uart_config[up->port.type].fcr;
3228 }
3229 
3230 static int
serial8250_verify_port(struct uart_port * port,struct serial_struct * ser)3231 serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
3232 {
3233 	if (ser->irq >= nr_irqs || ser->irq < 0 ||
3234 	    ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
3235 	    ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
3236 	    ser->type == PORT_STARTECH)
3237 		return -EINVAL;
3238 	return 0;
3239 }
3240 
serial8250_type(struct uart_port * port)3241 static const char *serial8250_type(struct uart_port *port)
3242 {
3243 	int type = port->type;
3244 
3245 	if (type >= ARRAY_SIZE(uart_config))
3246 		type = 0;
3247 	return uart_config[type].name;
3248 }
3249 
3250 static const struct uart_ops serial8250_pops = {
3251 	.tx_empty	= serial8250_tx_empty,
3252 	.set_mctrl	= serial8250_set_mctrl,
3253 	.get_mctrl	= serial8250_get_mctrl,
3254 	.stop_tx	= serial8250_stop_tx,
3255 	.start_tx	= serial8250_start_tx,
3256 	.throttle	= serial8250_throttle,
3257 	.unthrottle	= serial8250_unthrottle,
3258 	.stop_rx	= serial8250_stop_rx,
3259 	.enable_ms	= serial8250_enable_ms,
3260 	.break_ctl	= serial8250_break_ctl,
3261 	.startup	= serial8250_startup,
3262 	.shutdown	= serial8250_shutdown,
3263 	.set_termios	= serial8250_set_termios,
3264 	.set_ldisc	= serial8250_set_ldisc,
3265 	.pm		= serial8250_pm,
3266 	.type		= serial8250_type,
3267 	.release_port	= serial8250_release_port,
3268 	.request_port	= serial8250_request_port,
3269 	.config_port	= serial8250_config_port,
3270 	.verify_port	= serial8250_verify_port,
3271 #ifdef CONFIG_CONSOLE_POLL
3272 	.poll_get_char = serial8250_get_poll_char,
3273 	.poll_put_char = serial8250_put_poll_char,
3274 #endif
3275 };
3276 
serial8250_init_port(struct uart_8250_port * up)3277 void serial8250_init_port(struct uart_8250_port *up)
3278 {
3279 	struct uart_port *port = &up->port;
3280 
3281 	spin_lock_init(&port->lock);
3282 	port->pm = NULL;
3283 	port->ops = &serial8250_pops;
3284 	port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_8250_CONSOLE);
3285 
3286 	up->cur_iotype = 0xFF;
3287 }
3288 EXPORT_SYMBOL_GPL(serial8250_init_port);
3289 
serial8250_set_defaults(struct uart_8250_port * up)3290 void serial8250_set_defaults(struct uart_8250_port *up)
3291 {
3292 	struct uart_port *port = &up->port;
3293 
3294 	if (up->port.flags & UPF_FIXED_TYPE) {
3295 		unsigned int type = up->port.type;
3296 
3297 		if (!up->port.fifosize)
3298 			up->port.fifosize = uart_config[type].fifo_size;
3299 		if (!up->tx_loadsz)
3300 			up->tx_loadsz = uart_config[type].tx_loadsz;
3301 		if (!up->capabilities)
3302 			up->capabilities = uart_config[type].flags;
3303 	}
3304 
3305 	set_io_from_upio(port);
3306 
3307 	/* default dma handlers */
3308 	if (up->dma) {
3309 		if (!up->dma->tx_dma)
3310 			up->dma->tx_dma = serial8250_tx_dma;
3311 		if (!up->dma->rx_dma)
3312 			up->dma->rx_dma = serial8250_rx_dma;
3313 	}
3314 }
3315 EXPORT_SYMBOL_GPL(serial8250_set_defaults);
3316 
3317 #ifdef CONFIG_SERIAL_8250_CONSOLE
3318 
serial8250_console_putchar(struct uart_port * port,int ch)3319 static void serial8250_console_putchar(struct uart_port *port, int ch)
3320 {
3321 	struct uart_8250_port *up = up_to_u8250p(port);
3322 
3323 	wait_for_xmitr(up, UART_LSR_THRE);
3324 	serial_port_out(port, UART_TX, ch);
3325 }
3326 
3327 /*
3328  *	Restore serial console when h/w power-off detected
3329  */
serial8250_console_restore(struct uart_8250_port * up)3330 static void serial8250_console_restore(struct uart_8250_port *up)
3331 {
3332 	struct uart_port *port = &up->port;
3333 	struct ktermios termios;
3334 	unsigned int baud, quot, frac = 0;
3335 
3336 	termios.c_cflag = port->cons->cflag;
3337 	termios.c_ispeed = port->cons->ispeed;
3338 	termios.c_ospeed = port->cons->ospeed;
3339 	if (port->state->port.tty && termios.c_cflag == 0) {
3340 		termios.c_cflag = port->state->port.tty->termios.c_cflag;
3341 		termios.c_ispeed = port->state->port.tty->termios.c_ispeed;
3342 		termios.c_ospeed = port->state->port.tty->termios.c_ospeed;
3343 	}
3344 
3345 	baud = serial8250_get_baud_rate(port, &termios, NULL);
3346 	quot = serial8250_get_divisor(port, baud, &frac);
3347 
3348 	serial8250_set_divisor(port, baud, quot, frac);
3349 	serial_port_out(port, UART_LCR, up->lcr);
3350 	serial8250_out_MCR(up, up->mcr | UART_MCR_DTR | UART_MCR_RTS);
3351 }
3352 
3353 /*
3354  *	Print a string to the serial port trying not to disturb
3355  *	any possible real use of the port...
3356  *
3357  *	The console_lock must be held when we get here.
3358  *
3359  *	Doing runtime PM is really a bad idea for the kernel console.
3360  *	Thus, we assume the function is called when device is powered up.
3361  */
serial8250_console_write(struct uart_8250_port * up,const char * s,unsigned int count)3362 void serial8250_console_write(struct uart_8250_port *up, const char *s,
3363 			      unsigned int count)
3364 {
3365 	struct uart_8250_em485 *em485 = up->em485;
3366 	struct uart_port *port = &up->port;
3367 	unsigned long flags;
3368 	unsigned int ier;
3369 	int locked = 1;
3370 
3371 	touch_nmi_watchdog();
3372 
3373 	if (oops_in_progress)
3374 		locked = spin_trylock_irqsave(&port->lock, flags);
3375 	else
3376 		spin_lock_irqsave(&port->lock, flags);
3377 
3378 	/*
3379 	 *	First save the IER then disable the interrupts
3380 	 */
3381 	ier = serial_port_in(port, UART_IER);
3382 
3383 	if (up->capabilities & UART_CAP_UUE)
3384 		serial_port_out(port, UART_IER, UART_IER_UUE);
3385 	else
3386 		serial_port_out(port, UART_IER, 0);
3387 
3388 	/* check scratch reg to see if port powered off during system sleep */
3389 	if (up->canary && (up->canary != serial_port_in(port, UART_SCR))) {
3390 		serial8250_console_restore(up);
3391 		up->canary = 0;
3392 	}
3393 
3394 	if (em485) {
3395 		if (em485->tx_stopped)
3396 			up->rs485_start_tx(up);
3397 		mdelay(port->rs485.delay_rts_before_send);
3398 	}
3399 
3400 	uart_console_write(port, s, count, serial8250_console_putchar);
3401 
3402 	/*
3403 	 *	Finally, wait for transmitter to become empty
3404 	 *	and restore the IER
3405 	 */
3406 	wait_for_xmitr(up, BOTH_EMPTY);
3407 
3408 	if (em485) {
3409 		mdelay(port->rs485.delay_rts_after_send);
3410 		if (em485->tx_stopped)
3411 			up->rs485_stop_tx(up);
3412 	}
3413 
3414 	serial_port_out(port, UART_IER, ier);
3415 
3416 	/*
3417 	 *	The receive handling will happen properly because the
3418 	 *	receive ready bit will still be set; it is not cleared
3419 	 *	on read.  However, modem control will not, we must
3420 	 *	call it if we have saved something in the saved flags
3421 	 *	while processing with interrupts off.
3422 	 */
3423 	if (up->msr_saved_flags)
3424 		serial8250_modem_status(up);
3425 
3426 	if (locked)
3427 		spin_unlock_irqrestore(&port->lock, flags);
3428 }
3429 
probe_baud(struct uart_port * port)3430 static unsigned int probe_baud(struct uart_port *port)
3431 {
3432 	unsigned char lcr, dll, dlm;
3433 	unsigned int quot;
3434 
3435 	lcr = serial_port_in(port, UART_LCR);
3436 	serial_port_out(port, UART_LCR, lcr | UART_LCR_DLAB);
3437 	dll = serial_port_in(port, UART_DLL);
3438 	dlm = serial_port_in(port, UART_DLM);
3439 	serial_port_out(port, UART_LCR, lcr);
3440 
3441 	quot = (dlm << 8) | dll;
3442 	return (port->uartclk / 16) / quot;
3443 }
3444 
serial8250_console_setup(struct uart_port * port,char * options,bool probe)3445 int serial8250_console_setup(struct uart_port *port, char *options, bool probe)
3446 {
3447 	int baud = 9600;
3448 	int bits = 8;
3449 	int parity = 'n';
3450 	int flow = 'n';
3451 	int ret;
3452 
3453 	if (!port->iobase && !port->membase)
3454 		return -ENODEV;
3455 
3456 	if (options)
3457 		uart_parse_options(options, &baud, &parity, &bits, &flow);
3458 	else if (probe)
3459 		baud = probe_baud(port);
3460 
3461 	ret = uart_set_options(port, port->cons, baud, parity, bits, flow);
3462 	if (ret)
3463 		return ret;
3464 
3465 	if (port->dev)
3466 		pm_runtime_get_sync(port->dev);
3467 
3468 	return 0;
3469 }
3470 
serial8250_console_exit(struct uart_port * port)3471 int serial8250_console_exit(struct uart_port *port)
3472 {
3473 	if (port->dev)
3474 		pm_runtime_put_sync(port->dev);
3475 
3476 	return 0;
3477 }
3478 
3479 #endif /* CONFIG_SERIAL_8250_CONSOLE */
3480 
3481 MODULE_LICENSE("GPL");
3482