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