blob: e2ac25a037ef31ec24e1c965f77758b029666b70 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for 8250/16550-type serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright (C) 2001 Russell King.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * A note about mapbase / membase
14 *
15 * mapbase is the physical address of the IO port.
16 * membase is an 'ioremapped' cookie.
17 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
20#define SUPPORT_SYSRQ
21#endif
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/ioport.h>
26#include <linux/init.h>
27#include <linux/console.h>
28#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010030#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/tty.h>
Daniel Drakecd3ecad2010-10-20 16:00:48 -070032#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/tty_flip.h>
34#include <linux/serial_reg.h>
35#include <linux/serial_core.h>
36#include <linux/serial.h>
37#include <linux/serial_8250.h>
Andrew Morton78512ec2005-11-07 00:59:13 -080038#include <linux/nmi.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000039#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Paul Gortmaker68163832012-02-09 18:48:19 -050041#ifdef CONFIG_SPARC
42#include <linux/sunserialcore.h>
43#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/io.h>
46#include <asm/irq.h>
47
48#include "8250.h"
49
50/*
51 * Configuration:
Thomas Gleixner40663cc2006-07-01 19:29:43 -070052 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * is unsafe when used on edge-triggered interrupts.
54 */
Adrian Bunk408b6642005-05-01 08:59:29 -070055static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Dave Jonesa61c2d72006-01-07 23:18:19 +000057static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
58
David S. Miller84408382008-10-13 10:45:26 +010059static struct uart_driver serial8250_reg;
60
61static int serial_index(struct uart_port *port)
62{
63 return (serial8250_reg.minor - 64) + port->line;
64}
65
Chuck Ebbertd41a4b52009-10-01 15:44:26 -070066static unsigned int skip_txen_test; /* force skip of txen test at init time */
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
69 * Debugging.
70 */
71#if 0
72#define DEBUG_AUTOCONF(fmt...) printk(fmt)
73#else
74#define DEBUG_AUTOCONF(fmt...) do { } while (0)
75#endif
76
77#if 0
78#define DEBUG_INTR(fmt...) printk(fmt)
79#else
80#define DEBUG_INTR(fmt...) do { } while (0)
81#endif
82
Jiri Slabye7328ae2011-06-05 22:51:49 +020083#define PASS_LIMIT 512
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Dick Hollenbeckbca47612009-12-09 12:31:34 -080085#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
86
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
89#define CONFIG_SERIAL_DETECT_IRQ 1
90#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#ifdef CONFIG_SERIAL_8250_MANY_PORTS
92#define CONFIG_SERIAL_MANY_PORTS 1
93#endif
94
95/*
96 * HUB6 is always on. This will be removed once the header
97 * files have been cleaned.
98 */
99#define CONFIG_HUB6 1
100
Bryan Wua4ed1e42008-05-31 16:10:04 +0800101#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*
103 * SERIAL_PORT_DFNS tells us about built-in ports that have no
104 * standard enumeration mechanism. Platforms that can find all
105 * serial ports via mechanisms like ACPI or PCI need not supply it.
106 */
107#ifndef SERIAL_PORT_DFNS
108#define SERIAL_PORT_DFNS
109#endif
110
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000111static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 SERIAL_PORT_DFNS /* defined in asm/serial.h */
113};
114
Russell King026d02a2005-06-29 18:45:19 +0100115#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117#ifdef CONFIG_SERIAL_8250_RSA
118
119#define PORT_RSA_MAX 4
120static unsigned long probe_rsa[PORT_RSA_MAX];
121static unsigned int probe_rsa_count;
122#endif /* CONFIG_SERIAL_8250_RSA */
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124struct irq_info {
Alan Cox25db8ad2008-08-19 20:49:40 -0700125 struct hlist_node node;
126 int irq;
127 spinlock_t lock; /* Protects list not the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct list_head *head;
129};
130
Alan Cox25db8ad2008-08-19 20:49:40 -0700131#define NR_IRQ_HASH 32 /* Can be adjusted later */
132static struct hlist_head irq_lists[NR_IRQ_HASH];
133static DEFINE_MUTEX(hash_mutex); /* Used to walk the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135/*
136 * Here we define the default xmit fifo size used for each type of UART.
137 */
138static const struct serial8250_config uart_config[] = {
139 [PORT_UNKNOWN] = {
140 .name = "unknown",
141 .fifo_size = 1,
142 .tx_loadsz = 1,
143 },
144 [PORT_8250] = {
145 .name = "8250",
146 .fifo_size = 1,
147 .tx_loadsz = 1,
148 },
149 [PORT_16450] = {
150 .name = "16450",
151 .fifo_size = 1,
152 .tx_loadsz = 1,
153 },
154 [PORT_16550] = {
155 .name = "16550",
156 .fifo_size = 1,
157 .tx_loadsz = 1,
158 },
159 [PORT_16550A] = {
160 .name = "16550A",
161 .fifo_size = 16,
162 .tx_loadsz = 16,
163 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
164 .flags = UART_CAP_FIFO,
165 },
166 [PORT_CIRRUS] = {
167 .name = "Cirrus",
168 .fifo_size = 1,
169 .tx_loadsz = 1,
170 },
171 [PORT_16650] = {
172 .name = "ST16650",
173 .fifo_size = 1,
174 .tx_loadsz = 1,
175 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
176 },
177 [PORT_16650V2] = {
178 .name = "ST16650V2",
179 .fifo_size = 32,
180 .tx_loadsz = 16,
181 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
182 UART_FCR_T_TRIG_00,
183 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
184 },
185 [PORT_16750] = {
186 .name = "TI16750",
187 .fifo_size = 64,
188 .tx_loadsz = 64,
189 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
190 UART_FCR7_64BYTE,
191 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
192 },
193 [PORT_STARTECH] = {
194 .name = "Startech",
195 .fifo_size = 1,
196 .tx_loadsz = 1,
197 },
198 [PORT_16C950] = {
199 .name = "16C950/954",
200 .fifo_size = 128,
201 .tx_loadsz = 128,
202 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Pavel Machekd0694e22011-01-09 08:38:48 +0100203 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
204 .flags = UART_CAP_FIFO | UART_CAP_SLEEP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 },
206 [PORT_16654] = {
207 .name = "ST16654",
208 .fifo_size = 64,
209 .tx_loadsz = 32,
210 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
211 UART_FCR_T_TRIG_10,
212 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
213 },
214 [PORT_16850] = {
215 .name = "XR16850",
216 .fifo_size = 128,
217 .tx_loadsz = 128,
218 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
219 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
220 },
221 [PORT_RSA] = {
222 .name = "RSA",
223 .fifo_size = 2048,
224 .tx_loadsz = 2048,
225 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
226 .flags = UART_CAP_FIFO,
227 },
228 [PORT_NS16550A] = {
229 .name = "NS16550A",
230 .fifo_size = 16,
231 .tx_loadsz = 16,
232 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
233 .flags = UART_CAP_FIFO | UART_NATSEMI,
234 },
235 [PORT_XSCALE] = {
236 .name = "XScale",
237 .fifo_size = 32,
238 .tx_loadsz = 32,
239 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Stephen Warren4539c242011-05-17 16:12:36 -0600240 .flags = UART_CAP_FIFO | UART_CAP_UUE | UART_CAP_RTOIE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 },
David Daney6b06f192009-01-02 13:50:00 +0000242 [PORT_OCTEON] = {
243 .name = "OCTEON",
244 .fifo_size = 64,
245 .tx_loadsz = 64,
246 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
247 .flags = UART_CAP_FIFO,
248 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100249 [PORT_AR7] = {
250 .name = "AR7",
251 .fifo_size = 16,
252 .tx_loadsz = 16,
253 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
254 .flags = UART_CAP_FIFO | UART_CAP_AFE,
255 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200256 [PORT_U6_16550A] = {
257 .name = "U6_16550A",
258 .fifo_size = 64,
259 .tx_loadsz = 64,
260 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
261 .flags = UART_CAP_FIFO | UART_CAP_AFE,
262 },
Stephen Warren4539c242011-05-17 16:12:36 -0600263 [PORT_TEGRA] = {
264 .name = "Tegra",
265 .fifo_size = 32,
266 .tx_loadsz = 8,
267 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
268 UART_FCR_T_TRIG_01,
269 .flags = UART_CAP_FIFO | UART_CAP_RTOIE,
270 },
Søren Holm06315342011-09-02 22:55:37 +0200271 [PORT_XR17D15X] = {
272 .name = "XR17D15X",
273 .fifo_size = 64,
274 .tx_loadsz = 64,
275 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Matt Schulte81db0772012-11-21 09:39:07 -0600276 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
277 UART_CAP_SLEEP,
Søren Holm06315342011-09-02 22:55:37 +0200278 },
Matt Schultedc96efb2012-11-19 09:12:04 -0600279 [PORT_XR17V35X] = {
280 .name = "XR17V35X",
281 .fifo_size = 256,
282 .tx_loadsz = 256,
283 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11 |
284 UART_FCR_T_TRIG_11,
285 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR |
286 UART_CAP_SLEEP,
287 },
Roland Stigge7a514592012-06-11 21:57:13 +0200288 [PORT_LPC3220] = {
289 .name = "LPC3220",
290 .fifo_size = 64,
291 .tx_loadsz = 32,
292 .fcr = UART_FCR_DMA_SELECT | UART_FCR_ENABLE_FIFO |
293 UART_FCR_R_TRIG_00 | UART_FCR_T_TRIG_00,
294 .flags = UART_CAP_FIFO,
295 },
Sean Young65ecc9c2012-09-07 19:06:24 +0100296 [PORT_8250_CIR] = {
297 .name = "CIR port"
298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299};
300
Magnus Dammcc419fa02012-05-02 21:46:51 +0900301/* Uart divisor latch read */
Magnus Damme8155622012-05-02 21:47:18 +0900302static int default_serial_dl_read(struct uart_8250_port *up)
Magnus Dammcc419fa02012-05-02 21:46:51 +0900303{
304 return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8;
305}
306
307/* Uart divisor latch write */
Magnus Damme8155622012-05-02 21:47:18 +0900308static void default_serial_dl_write(struct uart_8250_port *up, int value)
Magnus Dammcc419fa02012-05-02 21:46:51 +0900309{
310 serial_out(up, UART_DLL, value & 0xff);
311 serial_out(up, UART_DLM, value >> 8 & 0xff);
312}
313
Magnus Damm6b416032012-05-02 21:47:00 +0900314#ifdef CONFIG_MIPS_ALCHEMY
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000315
316/* Au1x00 UART hardware has a weird register layout */
317static const u8 au_io_in_map[] = {
318 [UART_RX] = 0,
319 [UART_IER] = 2,
320 [UART_IIR] = 3,
321 [UART_LCR] = 5,
322 [UART_MCR] = 6,
323 [UART_LSR] = 7,
324 [UART_MSR] = 8,
325};
326
327static const u8 au_io_out_map[] = {
328 [UART_TX] = 1,
329 [UART_IER] = 2,
330 [UART_FCR] = 4,
331 [UART_LCR] = 5,
332 [UART_MCR] = 6,
333};
334
Magnus Damm6b416032012-05-02 21:47:00 +0900335static unsigned int au_serial_in(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000336{
Magnus Damm6b416032012-05-02 21:47:00 +0900337 offset = au_io_in_map[offset] << p->regshift;
338 return __raw_readl(p->membase + offset);
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000339}
340
Magnus Damm6b416032012-05-02 21:47:00 +0900341static void au_serial_out(struct uart_port *p, int offset, int value)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000342{
Magnus Damm6b416032012-05-02 21:47:00 +0900343 offset = au_io_out_map[offset] << p->regshift;
344 __raw_writel(value, p->membase + offset);
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000345}
346
Magnus Damm6b416032012-05-02 21:47:00 +0900347/* Au1x00 haven't got a standard divisor latch */
348static int au_serial_dl_read(struct uart_8250_port *up)
349{
350 return __raw_readl(up->port.membase + 0x28);
351}
352
353static void au_serial_dl_write(struct uart_8250_port *up, int value)
354{
355 __raw_writel(value, up->port.membase + 0x28);
356}
357
358#endif
359
David Daney7d6a07d2009-01-02 13:49:47 +0000360static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Magnus Damme8155622012-05-02 21:47:18 +0900362 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000363 outb(p->hub6 - 1 + offset, p->iobase);
364 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
David Daney7d6a07d2009-01-02 13:49:47 +0000367static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Magnus Damme8155622012-05-02 21:47:18 +0900369 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000370 outb(p->hub6 - 1 + offset, p->iobase);
371 outb(value, p->iobase + 1);
372}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
David Daney7d6a07d2009-01-02 13:49:47 +0000374static unsigned int mem_serial_in(struct uart_port *p, int offset)
375{
Magnus Damme8155622012-05-02 21:47:18 +0900376 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000377 return readb(p->membase + offset);
378}
379
380static void mem_serial_out(struct uart_port *p, int offset, int value)
381{
Magnus Damme8155622012-05-02 21:47:18 +0900382 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000383 writeb(value, p->membase + offset);
384}
385
386static void mem32_serial_out(struct uart_port *p, int offset, int value)
387{
Magnus Damme8155622012-05-02 21:47:18 +0900388 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000389 writel(value, p->membase + offset);
390}
391
392static unsigned int mem32_serial_in(struct uart_port *p, int offset)
393{
Magnus Damme8155622012-05-02 21:47:18 +0900394 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000395 return readl(p->membase + offset);
396}
397
David Daney7d6a07d2009-01-02 13:49:47 +0000398static unsigned int io_serial_in(struct uart_port *p, int offset)
399{
Magnus Damme8155622012-05-02 21:47:18 +0900400 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000401 return inb(p->iobase + offset);
402}
403
404static void io_serial_out(struct uart_port *p, int offset, int value)
405{
Magnus Damme8155622012-05-02 21:47:18 +0900406 offset = offset << p->regshift;
David Daney7d6a07d2009-01-02 13:49:47 +0000407 outb(value, p->iobase + offset);
408}
409
Jamie Iles583d28e2011-08-15 10:17:52 +0100410static int serial8250_default_handle_irq(struct uart_port *port);
Matt Schultedc96efb2012-11-19 09:12:04 -0600411static int exar_handle_irq(struct uart_port *port);
Jamie Iles583d28e2011-08-15 10:17:52 +0100412
David Daney7d6a07d2009-01-02 13:49:47 +0000413static void set_io_from_upio(struct uart_port *p)
414{
Jamie Iles49d57412010-12-01 23:39:35 +0000415 struct uart_8250_port *up =
416 container_of(p, struct uart_8250_port, port);
Magnus Dammcc419fa02012-05-02 21:46:51 +0900417
Magnus Damme8155622012-05-02 21:47:18 +0900418 up->dl_read = default_serial_dl_read;
419 up->dl_write = default_serial_dl_write;
Magnus Dammcc419fa02012-05-02 21:46:51 +0900420
David Daney7d6a07d2009-01-02 13:49:47 +0000421 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000423 p->serial_in = hub6_serial_in;
424 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 break;
426
427 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000428 p->serial_in = mem_serial_in;
429 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 break;
431
432 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000433 p->serial_in = mem32_serial_in;
434 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 break;
436
Magnus Damm6b416032012-05-02 21:47:00 +0900437#ifdef CONFIG_MIPS_ALCHEMY
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000438 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000439 p->serial_in = au_serial_in;
440 p->serial_out = au_serial_out;
Magnus Damm6b416032012-05-02 21:47:00 +0900441 up->dl_read = au_serial_dl_read;
442 up->dl_write = au_serial_dl_write;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000443 break;
Magnus Damm6b416032012-05-02 21:47:00 +0900444#endif
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000447 p->serial_in = io_serial_in;
448 p->serial_out = io_serial_out;
449 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100451 /* Remember loaded iotype */
452 up->cur_iotype = p->iotype;
Jamie Iles583d28e2011-08-15 10:17:52 +0100453 p->handle_irq = serial8250_default_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Alex Williamson40b36da2007-02-14 00:33:04 -0800456static void
Paul Gortmaker55e40162012-03-08 19:12:14 -0500457serial_port_out_sync(struct uart_port *p, int offset, int value)
Alex Williamson40b36da2007-02-14 00:33:04 -0800458{
David Daney7d6a07d2009-01-02 13:49:47 +0000459 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800460 case UPIO_MEM:
461 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800462 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000463 p->serial_out(p, offset, value);
464 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800465 break;
466 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000467 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800468 }
469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/*
472 * For the 16C950
473 */
474static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
475{
476 serial_out(up, UART_SCR, offset);
477 serial_out(up, UART_ICR, value);
478}
479
480static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
481{
482 unsigned int value;
483
484 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
485 serial_out(up, UART_SCR, offset);
486 value = serial_in(up, UART_ICR);
487 serial_icr_write(up, UART_ACR, up->acr);
488
489 return value;
490}
491
492/*
493 * FIFO support.
494 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100495static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 if (p->capabilities & UART_CAP_FIFO) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500498 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO);
499 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500501 serial_out(p, UART_FCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503}
504
Sudhakar Mamillapalli0ad372b2012-04-10 14:10:58 -0700505void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p)
506{
507 unsigned char fcr;
508
509 serial8250_clear_fifos(p);
510 fcr = uart_config[p->port.type].fcr;
511 serial_out(p, UART_FCR, fcr);
512}
513EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos);
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515/*
516 * IER sleep support. UARTs which have EFRs need the "extended
517 * capability" bit enabled. Note that on XR16C850s, we need to
518 * reset LCR to write to IER.
519 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100520static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Matt Schultedc96efb2012-11-19 09:12:04 -0600522 /*
523 * Exar UARTs have a SLEEP register that enables or disables
524 * each UART to enter sleep mode separately. On the XR17V35x the
525 * register is accessible to each UART at the UART_EXAR_SLEEP
526 * offset but the UART channel may only write to the corresponding
527 * bit.
528 */
Matt Schulte81db0772012-11-21 09:39:07 -0600529 if ((p->port.type == PORT_XR17V35X) ||
530 (p->port.type == PORT_XR17D15X)) {
Matt Schultedc96efb2012-11-19 09:12:04 -0600531 serial_out(p, UART_EXAR_SLEEP, 0xff);
532 return;
533 }
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (p->capabilities & UART_CAP_SLEEP) {
536 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500537 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
538 serial_out(p, UART_EFR, UART_EFR_ECB);
539 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500541 serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500543 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
544 serial_out(p, UART_EFR, 0);
545 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547 }
548}
549
550#ifdef CONFIG_SERIAL_8250_RSA
551/*
552 * Attempts to turn on the RSA FIFO. Returns zero on failure.
553 * We set the port uart clock rate if we succeed.
554 */
555static int __enable_rsa(struct uart_8250_port *up)
556{
557 unsigned char mode;
558 int result;
559
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500560 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 result = mode & UART_RSA_MSR_FIFO;
562
563 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500564 serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
565 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 result = mode & UART_RSA_MSR_FIFO;
567 }
568
569 if (result)
570 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
571
572 return result;
573}
574
575static void enable_rsa(struct uart_8250_port *up)
576{
577 if (up->port.type == PORT_RSA) {
578 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
579 spin_lock_irq(&up->port.lock);
580 __enable_rsa(up);
581 spin_unlock_irq(&up->port.lock);
582 }
583 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500584 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586}
587
588/*
589 * Attempts to turn off the RSA FIFO. Returns zero on failure.
590 * It is unknown why interrupts were disabled in here. However,
591 * the caller is expected to preserve this behaviour by grabbing
592 * the spinlock before calling this function.
593 */
594static void disable_rsa(struct uart_8250_port *up)
595{
596 unsigned char mode;
597 int result;
598
599 if (up->port.type == PORT_RSA &&
600 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
601 spin_lock_irq(&up->port.lock);
602
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500603 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 result = !(mode & UART_RSA_MSR_FIFO);
605
606 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500607 serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
608 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 result = !(mode & UART_RSA_MSR_FIFO);
610 }
611
612 if (result)
613 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
614 spin_unlock_irq(&up->port.lock);
615 }
616}
617#endif /* CONFIG_SERIAL_8250_RSA */
618
619/*
620 * This is a quickie test to see how big the FIFO is.
621 * It doesn't work at all the time, more's the pity.
622 */
623static int size_fifo(struct uart_8250_port *up)
624{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100625 unsigned char old_fcr, old_mcr, old_lcr;
626 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int count;
628
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500629 old_lcr = serial_in(up, UART_LCR);
630 serial_out(up, UART_LCR, 0);
631 old_fcr = serial_in(up, UART_FCR);
632 old_mcr = serial_in(up, UART_MCR);
633 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500635 serial_out(up, UART_MCR, UART_MCR_LOOP);
636 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100637 old_dl = serial_dl_read(up);
638 serial_dl_write(up, 0x0001);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500639 serial_out(up, UART_LCR, 0x03);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 for (count = 0; count < 256; count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500641 serial_out(up, UART_TX, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 mdelay(20);/* FIXME - schedule_timeout */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500643 for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 (count < 256); count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500645 serial_in(up, UART_RX);
646 serial_out(up, UART_FCR, old_fcr);
647 serial_out(up, UART_MCR, old_mcr);
648 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100649 serial_dl_write(up, old_dl);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500650 serial_out(up, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 return count;
653}
654
655/*
656 * Read UART ID using the divisor method - set DLL and DLM to zero
657 * and the revision will be in DLL and device type in DLM. We
658 * preserve the device state across this.
659 */
660static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
661{
662 unsigned char old_dll, old_dlm, old_lcr;
663 unsigned int id;
664
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500665 old_lcr = serial_in(p, UART_LCR);
666 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500668 old_dll = serial_in(p, UART_DLL);
669 old_dlm = serial_in(p, UART_DLM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500671 serial_out(p, UART_DLL, 0);
672 serial_out(p, UART_DLM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500674 id = serial_in(p, UART_DLL) | serial_in(p, UART_DLM) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500676 serial_out(p, UART_DLL, old_dll);
677 serial_out(p, UART_DLM, old_dlm);
678 serial_out(p, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 return id;
681}
682
683/*
684 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
685 * When this function is called we know it is at least a StarTech
686 * 16650 V2, but it might be one of several StarTech UARTs, or one of
687 * its clones. (We treat the broken original StarTech 16650 V1 as a
688 * 16550, and why not? Startech doesn't seem to even acknowledge its
689 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700690 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 * What evil have men's minds wrought...
692 */
693static void autoconfig_has_efr(struct uart_8250_port *up)
694{
695 unsigned int id1, id2, id3, rev;
696
697 /*
698 * Everything with an EFR has SLEEP
699 */
700 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
701
702 /*
703 * First we check to see if it's an Oxford Semiconductor UART.
704 *
705 * If we have to do this here because some non-National
706 * Semiconductor clone chips lock up if you try writing to the
707 * LSR register (which serial_icr_read does)
708 */
709
710 /*
711 * Check for Oxford Semiconductor 16C950.
712 *
713 * EFR [4] must be set else this test fails.
714 *
715 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
716 * claims that it's needed for 952 dual UART's (which are not
717 * recommended for new designs).
718 */
719 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800720 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 serial_out(up, UART_EFR, UART_EFR_ECB);
722 serial_out(up, UART_LCR, 0x00);
723 id1 = serial_icr_read(up, UART_ID1);
724 id2 = serial_icr_read(up, UART_ID2);
725 id3 = serial_icr_read(up, UART_ID3);
726 rev = serial_icr_read(up, UART_REV);
727
728 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
729
730 if (id1 == 0x16 && id2 == 0xC9 &&
731 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
732 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100733
734 /*
735 * Enable work around for the Oxford Semiconductor 952 rev B
736 * chip which causes it to seriously miscalculate baud rates
737 * when DLL is 0.
738 */
739 if (id3 == 0x52 && rev == 0x01)
740 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return;
742 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /*
745 * We check for a XR16C850 by setting DLL and DLM to 0, and then
746 * reading back DLL and DLM. The chip type depends on the DLM
747 * value read back:
748 * 0x10 - XR16C850 and the DLL contains the chip revision.
749 * 0x12 - XR16C2850.
750 * 0x14 - XR16C854.
751 */
752 id1 = autoconfig_read_divisor_id(up);
753 DEBUG_AUTOCONF("850id=%04x ", id1);
754
755 id2 = id1 >> 8;
756 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 up->port.type = PORT_16850;
758 return;
759 }
760
761 /*
762 * It wasn't an XR16C850.
763 *
764 * We distinguish between the '654 and the '650 by counting
765 * how many bytes are in the FIFO. I'm using this for now,
766 * since that's the technique that was sent to me in the
767 * serial driver update, but I'm not convinced this works.
768 * I've had problems doing this in the past. -TYT
769 */
770 if (size_fifo(up) == 64)
771 up->port.type = PORT_16654;
772 else
773 up->port.type = PORT_16650V2;
774}
775
776/*
777 * We detected a chip without a FIFO. Only two fall into
778 * this category - the original 8250 and the 16450. The
779 * 16450 has a scratch register (accessible with LCR=0)
780 */
781static void autoconfig_8250(struct uart_8250_port *up)
782{
783 unsigned char scratch, status1, status2;
784
785 up->port.type = PORT_8250;
786
787 scratch = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500788 serial_out(up, UART_SCR, 0xa5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 status1 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500790 serial_out(up, UART_SCR, 0x5a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 status2 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500792 serial_out(up, UART_SCR, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (status1 == 0xa5 && status2 == 0x5a)
795 up->port.type = PORT_16450;
796}
797
798static int broken_efr(struct uart_8250_port *up)
799{
800 /*
801 * Exar ST16C2550 "A2" devices incorrectly detect as
802 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200803 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 */
805 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
806 return 1;
807
808 return 0;
809}
810
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800811static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
812{
813 unsigned char status;
814
815 status = serial_in(up, 0x04); /* EXCR2 */
816#define PRESL(x) ((x) & 0x30)
817 if (PRESL(status) == 0x10) {
818 /* already in high speed mode */
819 return 0;
820 } else {
821 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
822 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500823 serial_out(up, 0x04, status);
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800824 }
825 return 1;
826}
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828/*
829 * We know that the chip has FIFOs. Does it have an EFR? The
830 * EFR is located in the same register position as the IIR and
831 * we know the top two bits of the IIR are currently set. The
832 * EFR should contain zero. Try to read the EFR.
833 */
834static void autoconfig_16550a(struct uart_8250_port *up)
835{
836 unsigned char status1, status2;
837 unsigned int iersave;
838
839 up->port.type = PORT_16550A;
840 up->capabilities |= UART_CAP_FIFO;
841
842 /*
Matt Schultedc96efb2012-11-19 09:12:04 -0600843 * XR17V35x UARTs have an extra divisor register, DLD
844 * that gets enabled with when DLAB is set which will
845 * cause the device to incorrectly match and assign
846 * port type to PORT_16650. The EFR for this UART is
847 * found at offset 0x09. Instead check the Deice ID (DVID)
848 * register for a 2, 4 or 8 port UART.
849 */
Matt Schulteb7a7e142012-11-20 11:23:56 -0600850 if (up->port.flags & UPF_EXAR_EFR) {
851 status1 = serial_in(up, UART_EXAR_DVID);
852 if (status1 == 0x82 || status1 == 0x84 || status1 == 0x88) {
Matt Schultedc96efb2012-11-19 09:12:04 -0600853 DEBUG_AUTOCONF("Exar XR17V35x ");
854 up->port.type = PORT_XR17V35X;
855 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
856 UART_CAP_SLEEP;
857
858 return;
859 }
860
861 }
862
863 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 * Check for presence of the EFR when DLAB is set.
865 * Only ST16C650V1 UARTs pass this test.
866 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500867 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (serial_in(up, UART_EFR) == 0) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500869 serial_out(up, UART_EFR, 0xA8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (serial_in(up, UART_EFR) != 0) {
871 DEBUG_AUTOCONF("EFRv1 ");
872 up->port.type = PORT_16650;
873 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
874 } else {
875 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
876 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500877 serial_out(up, UART_EFR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return;
879 }
880
881 /*
882 * Maybe it requires 0xbf to be written to the LCR.
883 * (other ST16C650V2 UARTs, TI16C752A, etc)
884 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500885 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
887 DEBUG_AUTOCONF("EFRv2 ");
888 autoconfig_has_efr(up);
889 return;
890 }
891
892 /*
893 * Check for a National Semiconductor SuperIO chip.
894 * Attempt to switch to bank 2, read the value of the LOOP bit
895 * from EXCR1. Switch back to bank 0, change it in MCR. Then
896 * switch back to bank 2, read it from EXCR1 again and check
897 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500899 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 status1 = serial_in(up, UART_MCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500901 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 status2 = serial_in(up, 0x02); /* EXCR1 */
903
904 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500905 serial_out(up, UART_LCR, 0);
906 serial_out(up, UART_MCR, status1 ^ UART_MCR_LOOP);
907 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 status2 = serial_in(up, 0x02); /* EXCR1 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500909 serial_out(up, UART_LCR, 0);
910 serial_out(up, UART_MCR, status1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100913 unsigned short quot;
914
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500915 serial_out(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100916
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100917 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +0100918 quot <<= 3;
919
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800920 if (ns16550a_goto_highspeed(up))
921 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500923 serial_out(up, UART_LCR, 0);
David Woodhouse857dde22005-05-21 15:52:23 +0100924
925 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 up->port.type = PORT_NS16550A;
927 up->capabilities |= UART_NATSEMI;
928 return;
929 }
930 }
931
932 /*
933 * No EFR. Try to detect a TI16750, which only sets bit 5 of
934 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
935 * Try setting it with and without DLAB set. Cheap clones
936 * set bit 5 without DLAB set.
937 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500938 serial_out(up, UART_LCR, 0);
939 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 status1 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500941 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
942 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
943 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 status2 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500945 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
946 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
949
950 if (status1 == 6 && status2 == 7) {
951 up->port.type = PORT_16750;
952 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
953 return;
954 }
955
956 /*
957 * Try writing and reading the UART_IER_UUE bit (b6).
958 * If it works, this is probably one of the Xscale platform's
959 * internal UARTs.
960 * We're going to explicitly set the UUE bit to 0 before
961 * trying to write and read a 1 just to make sure it's not
962 * already a 1 and maybe locked there before we even start start.
963 */
964 iersave = serial_in(up, UART_IER);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500965 serial_out(up, UART_IER, iersave & ~UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
967 /*
968 * OK it's in a known zero state, try writing and reading
969 * without disturbing the current state of the other bits.
970 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500971 serial_out(up, UART_IER, iersave | UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (serial_in(up, UART_IER) & UART_IER_UUE) {
973 /*
974 * It's an Xscale.
975 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
976 */
977 DEBUG_AUTOCONF("Xscale ");
978 up->port.type = PORT_XSCALE;
Stephen Warren55681812011-06-17 09:45:07 -0600979 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return;
981 }
982 } else {
983 /*
984 * If we got here we couldn't force the IER_UUE bit to 0.
985 * Log it and continue.
986 */
987 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
988 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500989 serial_out(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +0200990
991 /*
Søren Holm06315342011-09-02 22:55:37 +0200992 * Exar uarts have EFR in a weird location
993 */
994 if (up->port.flags & UPF_EXAR_EFR) {
Matt Schulte81db0772012-11-21 09:39:07 -0600995 DEBUG_AUTOCONF("Exar XR17D15x ");
Søren Holm06315342011-09-02 22:55:37 +0200996 up->port.type = PORT_XR17D15X;
Matt Schulte81db0772012-11-21 09:39:07 -0600997 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |
998 UART_CAP_SLEEP;
999
1000 return;
Søren Holm06315342011-09-02 22:55:37 +02001001 }
1002
1003 /*
Philippe Langlais235dae52010-07-29 17:13:57 +02001004 * We distinguish between 16550A and U6 16550A by counting
1005 * how many bytes are in the FIFO.
1006 */
1007 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1008 up->port.type = PORT_U6_16550A;
1009 up->capabilities |= UART_CAP_AFE;
1010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
1013/*
1014 * This routine is called by rs_init() to initialize a specific serial
1015 * port. It determines what type of UART chip this serial port is
1016 * using: 8250, 16450, 16550, 16550A. The important question is
1017 * whether or not this UART is a 16550A or not, since this will
1018 * determine whether or not we can use its FIFO features or not.
1019 */
1020static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1021{
1022 unsigned char status1, scratch, scratch2, scratch3;
1023 unsigned char save_lcr, save_mcr;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001024 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 unsigned long flags;
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001026 unsigned int old_capabilities;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001028 if (!port->iobase && !port->mapbase && !port->membase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return;
1030
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001031 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001032 serial_index(port), port->iobase, port->membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 /*
1035 * We really do need global IRQs disabled here - we're going to
1036 * be frobbing the chips IRQ enable register to see if it exists.
1037 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001038 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001041 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001043 if (!(port->flags & UPF_BUGGY_UART)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 /*
1045 * Do a simple existence test first; if we fail this,
1046 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001047 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 * 0x80 is used as a nonsense port to prevent against
1049 * false positives due to ISA bus float. The
1050 * assumption is that 0x80 is a non-existent port;
1051 * which should be safe since include/asm/io.h also
1052 * makes this assumption.
1053 *
1054 * Note: this is safe as long as MCR bit 4 is clear
1055 * and the device is in "PC" mode.
1056 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001057 scratch = serial_in(up, UART_IER);
1058 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059#ifdef __i386__
1060 outb(0xff, 0x080);
1061#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001062 /*
1063 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1064 * 16C754B) allow only to modify them if an EFR bit is set.
1065 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001066 scratch2 = serial_in(up, UART_IER) & 0x0f;
1067 serial_out(up, UART_IER, 0x0F);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068#ifdef __i386__
1069 outb(0, 0x080);
1070#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001071 scratch3 = serial_in(up, UART_IER) & 0x0f;
1072 serial_out(up, UART_IER, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (scratch2 != 0 || scratch3 != 0x0F) {
1074 /*
1075 * We failed; there's nothing here
1076 */
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001077 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1079 scratch2, scratch3);
1080 goto out;
1081 }
1082 }
1083
1084 save_mcr = serial_in(up, UART_MCR);
1085 save_lcr = serial_in(up, UART_LCR);
1086
Thomas Koellerbd71c182007-05-06 14:48:47 -07001087 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 * Check to see if a UART is really there. Certain broken
1089 * internal modems based on the Rockwell chipset fail this
1090 * test, because they apparently don't implement the loopback
1091 * test mode. So this test is skipped on the COM 1 through
1092 * COM 4 ports. This *should* be safe, since no board
1093 * manufacturer would be stupid enough to design a board
1094 * that conflicts with COM 1-4 --- we hope!
1095 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001096 if (!(port->flags & UPF_SKIP_TEST)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001097 serial_out(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1098 status1 = serial_in(up, UART_MSR) & 0xF0;
1099 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (status1 != 0x90) {
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001101 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1103 status1);
1104 goto out;
1105 }
1106 }
1107
1108 /*
1109 * We're pretty sure there's a port here. Lets find out what
1110 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001111 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 * determines what we test for next.
1113 *
1114 * We also initialise the EFR (if any) to zero for later. The
1115 * EFR occupies the same register location as the FCR and IIR.
1116 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001117 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1118 serial_out(up, UART_EFR, 0);
1119 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001121 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 scratch = serial_in(up, UART_IIR) >> 6;
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 switch (scratch) {
1125 case 0:
1126 autoconfig_8250(up);
1127 break;
1128 case 1:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001129 port->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 break;
1131 case 2:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001132 port->type = PORT_16550;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 break;
1134 case 3:
1135 autoconfig_16550a(up);
1136 break;
1137 }
1138
1139#ifdef CONFIG_SERIAL_8250_RSA
1140 /*
1141 * Only probe for RSA ports if we got the region.
1142 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001143 if (port->type == PORT_16550A && probeflags & PROBE_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 int i;
1145
1146 for (i = 0 ; i < probe_rsa_count; ++i) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001147 if (probe_rsa[i] == port->iobase && __enable_rsa(up)) {
1148 port->type = PORT_RSA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break;
1150 }
1151 }
1152 }
1153#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001154
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001155 serial_out(up, UART_LCR, save_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001157 port->fifosize = uart_config[up->port.type].fifo_size;
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001158 old_capabilities = up->capabilities;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001159 up->capabilities = uart_config[port->type].flags;
1160 up->tx_loadsz = uart_config[port->type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001162 if (port->type == PORT_UNKNOWN)
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001163 goto out_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 /*
1166 * Reset the UART.
1167 */
1168#ifdef CONFIG_SERIAL_8250_RSA
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001169 if (port->type == PORT_RSA)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001170 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001172 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001174 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001175 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001176 serial_out(up, UART_IER, UART_IER_UUE);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001177 else
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001178 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001180out_lock:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001181 spin_unlock_irqrestore(&port->lock, flags);
Flavio Leitnerbd21f552012-09-18 16:21:32 -03001182 if (up->capabilities != old_capabilities) {
1183 printk(KERN_WARNING
1184 "ttyS%d: detected caps %08x should be %08x\n",
1185 serial_index(port), old_capabilities,
1186 up->capabilities);
1187 }
1188out:
1189 DEBUG_AUTOCONF("iir=%d ", scratch);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001190 DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
1193static void autoconfig_irq(struct uart_8250_port *up)
1194{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001195 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 unsigned char save_mcr, save_ier;
1197 unsigned char save_ICP = 0;
1198 unsigned int ICP = 0;
1199 unsigned long irqs;
1200 int irq;
1201
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001202 if (port->flags & UPF_FOURPORT) {
1203 ICP = (port->iobase & 0xfe0) | 0x1f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 save_ICP = inb_p(ICP);
1205 outb_p(0x80, ICP);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001206 inb_p(ICP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208
1209 /* forget possible initially masked and pending IRQ */
1210 probe_irq_off(probe_irq_on());
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001211 save_mcr = serial_in(up, UART_MCR);
1212 save_ier = serial_in(up, UART_IER);
1213 serial_out(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 irqs = probe_irq_on();
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001216 serial_out(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001217 udelay(10);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001218 if (port->flags & UPF_FOURPORT) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001219 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 UART_MCR_DTR | UART_MCR_RTS);
1221 } else {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001222 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1224 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001225 serial_out(up, UART_IER, 0x0f); /* enable all intrs */
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001226 serial_in(up, UART_LSR);
1227 serial_in(up, UART_RX);
1228 serial_in(up, UART_IIR);
1229 serial_in(up, UART_MSR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001230 serial_out(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001231 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 irq = probe_irq_off(irqs);
1233
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001234 serial_out(up, UART_MCR, save_mcr);
1235 serial_out(up, UART_IER, save_ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001237 if (port->flags & UPF_FOURPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 outb_p(save_ICP, ICP);
1239
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001240 port->irq = (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
Russell Kinge763b902005-06-29 18:41:51 +01001243static inline void __stop_tx(struct uart_8250_port *p)
1244{
1245 if (p->ier & UART_IER_THRI) {
1246 p->ier &= ~UART_IER_THRI;
1247 serial_out(p, UART_IER, p->ier);
1248 }
1249}
1250
Russell Kingb129a8c2005-08-31 10:12:14 +01001251static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Jamie Iles49d57412010-12-01 23:39:35 +00001253 struct uart_8250_port *up =
1254 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Russell Kinge763b902005-06-29 18:41:51 +01001256 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 /*
Russell Kinge763b902005-06-29 18:41:51 +01001259 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001261 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 up->acr |= UART_ACR_TXDIS;
1263 serial_icr_write(up, UART_ACR, up->acr);
1264 }
1265}
1266
Russell Kingb129a8c2005-08-31 10:12:14 +01001267static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Jamie Iles49d57412010-12-01 23:39:35 +00001269 struct uart_8250_port *up =
1270 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 if (!(up->ier & UART_IER_THRI)) {
1273 up->ier |= UART_IER_THRI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001274 serial_port_out(port, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001275
Russell King67f76542005-06-23 22:26:43 +01001276 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001277 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001278 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001279 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Ralf Baechlea205a562012-12-18 11:41:14 +01001280 if (lsr & UART_LSR_TEMT)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001281 serial8250_tx_chars(up);
Russell King55d3b282005-06-23 15:05:41 +01001282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
Russell Kinge763b902005-06-29 18:41:51 +01001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 /*
Russell Kinge763b902005-06-29 18:41:51 +01001286 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001288 if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 up->acr &= ~UART_ACR_TXDIS;
1290 serial_icr_write(up, UART_ACR, up->acr);
1291 }
1292}
1293
1294static void serial8250_stop_rx(struct uart_port *port)
1295{
Jamie Iles49d57412010-12-01 23:39:35 +00001296 struct uart_8250_port *up =
1297 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 up->ier &= ~UART_IER_RLSI;
1300 up->port.read_status_mask &= ~UART_LSR_DR;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001301 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
1304static void serial8250_enable_ms(struct uart_port *port)
1305{
Jamie Iles49d57412010-12-01 23:39:35 +00001306 struct uart_8250_port *up =
1307 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001309 /* no MSR capabilities */
1310 if (up->bugs & UART_BUG_NOMSR)
1311 return;
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 up->ier |= UART_IER_MSI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001314 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
Stephen Warren5f873ba2011-05-17 16:12:37 -06001317/*
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001318 * serial8250_rx_chars: processes according to the passed in LSR
Paul Gortmaker0690f412011-12-04 18:42:19 -05001319 * value, and returns the remaining LSR bits not handled
1320 * by this Rx routine.
1321 */
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001322unsigned char
1323serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001325 struct uart_port *port = &up->port;
Paul Gortmaker0690f412011-12-04 18:42:19 -05001326 unsigned char ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 int max_count = 256;
1328 char flag;
1329
1330 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001331 if (likely(lsr & UART_LSR_DR))
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001332 ch = serial_in(up, UART_RX);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001333 else
1334 /*
1335 * Intel 82571 has a Serial Over Lan device that will
1336 * set UART_LSR_BI without setting UART_LSR_DR when
1337 * it receives a break. To avoid reading from the
1338 * receive buffer without UART_LSR_DR bit set, we
1339 * just force the read character to be 0
1340 */
1341 ch = 0;
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 flag = TTY_NORMAL;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001344 port->icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001346 lsr |= up->lsr_saved_flags;
1347 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001349 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (lsr & UART_LSR_BI) {
1351 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001352 port->icount.brk++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 /*
1354 * We do the SysRQ and SAK checking
1355 * here because otherwise the break
1356 * may get masked by ignore_status_mask
1357 * or read_status_mask.
1358 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001359 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 goto ignore_char;
1361 } else if (lsr & UART_LSR_PE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001362 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 else if (lsr & UART_LSR_FE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001364 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (lsr & UART_LSR_OE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001366 port->icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 /*
Russell King23907eb2005-04-16 15:26:39 -07001369 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001371 lsr &= port->read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 if (lsr & UART_LSR_BI) {
1374 DEBUG_INTR("handling break....");
1375 flag = TTY_BREAK;
1376 } else if (lsr & UART_LSR_PE)
1377 flag = TTY_PARITY;
1378 else if (lsr & UART_LSR_FE)
1379 flag = TTY_FRAME;
1380 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001381 if (uart_handle_sysrq_char(port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001383
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001384 uart_insert_char(port, lsr, UART_LSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +01001385
Alan Cox6f803cd2008-02-08 04:18:52 -08001386ignore_char:
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001387 lsr = serial_in(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001388 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001389 spin_unlock(&port->lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001390 tty_flip_buffer_push(&port->state->port);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001391 spin_lock(&port->lock);
Paul Gortmaker0690f412011-12-04 18:42:19 -05001392 return lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001394EXPORT_SYMBOL_GPL(serial8250_rx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001396void serial8250_tx_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001398 struct uart_port *port = &up->port;
1399 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 int count;
1401
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001402 if (port->x_char) {
1403 serial_out(up, UART_TX, port->x_char);
1404 port->icount.tx++;
1405 port->x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return;
1407 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001408 if (uart_tx_stopped(port)) {
1409 serial8250_stop_tx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +01001410 return;
1411 }
1412 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001413 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return;
1415 }
1416
1417 count = up->tx_loadsz;
1418 do {
1419 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1420 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001421 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (uart_circ_empty(xmit))
1423 break;
1424 } while (--count > 0);
1425
1426 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001427 uart_write_wakeup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 DEBUG_INTR("THRE...");
1430
1431 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001432 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001434EXPORT_SYMBOL_GPL(serial8250_tx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001436unsigned int serial8250_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001438 struct uart_port *port = &up->port;
Russell King2af7cd62006-01-04 16:55:09 +00001439 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001441 status |= up->msr_saved_flags;
1442 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001443 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001444 port->state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001445 if (status & UART_MSR_TERI)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001446 port->icount.rng++;
Russell King2af7cd62006-01-04 16:55:09 +00001447 if (status & UART_MSR_DDSR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001448 port->icount.dsr++;
Russell King2af7cd62006-01-04 16:55:09 +00001449 if (status & UART_MSR_DDCD)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001450 uart_handle_dcd_change(port, status & UART_MSR_DCD);
Russell King2af7cd62006-01-04 16:55:09 +00001451 if (status & UART_MSR_DCTS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001452 uart_handle_cts_change(port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001454 wake_up_interruptible(&port->state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Russell King2af7cd62006-01-04 16:55:09 +00001457 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001459EXPORT_SYMBOL_GPL(serial8250_modem_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461/*
1462 * This handles the interrupt from one port.
1463 */
Paul Gortmaker86b21192011-12-04 18:42:22 -05001464int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
Paul Gortmaker0690f412011-12-04 18:42:19 -05001466 unsigned char status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001467 unsigned long flags;
Paul Gortmaker86b21192011-12-04 18:42:22 -05001468 struct uart_8250_port *up =
1469 container_of(port, struct uart_8250_port, port);
1470
1471 if (iir & UART_IIR_NO_INT)
1472 return 0;
Russell King45e24602006-01-04 19:19:06 +00001473
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001474 spin_lock_irqsave(&port->lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001475
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001476 status = serial_port_in(port, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 DEBUG_INTR("status = %x...", status);
1479
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001480 if (status & (UART_LSR_DR | UART_LSR_BI))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001481 status = serial8250_rx_chars(up, status);
1482 serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 if (status & UART_LSR_THRE)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001484 serial8250_tx_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001485
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001486 spin_unlock_irqrestore(&port->lock, flags);
Paul Gortmaker86b21192011-12-04 18:42:22 -05001487 return 1;
Jamie Iles583d28e2011-08-15 10:17:52 +01001488}
Jamie Ilesc7a1bdc2011-08-26 19:04:49 +01001489EXPORT_SYMBOL_GPL(serial8250_handle_irq);
Jamie Iles583d28e2011-08-15 10:17:52 +01001490
1491static int serial8250_default_handle_irq(struct uart_port *port)
1492{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001493 unsigned int iir = serial_port_in(port, UART_IIR);
Jamie Iles583d28e2011-08-15 10:17:52 +01001494
1495 return serial8250_handle_irq(port, iir);
1496}
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/*
Matt Schultedc96efb2012-11-19 09:12:04 -06001499 * These Exar UARTs have an extra interrupt indicator that could
1500 * fire for a few unimplemented interrupts. One of which is a
1501 * wakeup event when coming out of sleep. Put this here just
1502 * to be on the safe side that these interrupts don't go unhandled.
1503 */
1504static int exar_handle_irq(struct uart_port *port)
1505{
1506 unsigned char int0, int1, int2, int3;
1507 unsigned int iir = serial_port_in(port, UART_IIR);
1508 int ret;
1509
1510 ret = serial8250_handle_irq(port, iir);
1511
Matt Schulte30fa96a2012-11-21 09:40:49 -06001512 if ((port->type == PORT_XR17V35X) ||
1513 (port->type == PORT_XR17D15X)) {
Matt Schultedc96efb2012-11-19 09:12:04 -06001514 int0 = serial_port_in(port, 0x80);
1515 int1 = serial_port_in(port, 0x81);
1516 int2 = serial_port_in(port, 0x82);
1517 int3 = serial_port_in(port, 0x83);
1518 }
1519
1520 return ret;
1521}
1522
1523/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 * This is the serial driver's interrupt routine.
1525 *
1526 * Arjan thinks the old way was overly complex, so it got simplified.
1527 * Alan disagrees, saying that need the complexity to handle the weird
1528 * nature of ISA shared interrupts. (This is a special exception.)
1529 *
1530 * In order to handle ISA shared interrupts properly, we need to check
1531 * that all ports have been serviced, and therefore the ISA interrupt
1532 * line has been de-asserted.
1533 *
1534 * This means we need to loop through all ports. checking that they
1535 * don't have an interrupt pending.
1536 */
David Howells7d12e782006-10-05 14:55:46 +01001537static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 struct irq_info *i = dev_id;
1540 struct list_head *l, *end = NULL;
1541 int pass_counter = 0, handled = 0;
1542
1543 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1544
1545 spin_lock(&i->lock);
1546
1547 l = i->head;
1548 do {
1549 struct uart_8250_port *up;
Jamie Iles583d28e2011-08-15 10:17:52 +01001550 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 up = list_entry(l, struct uart_8250_port, list);
Jamie Iles583d28e2011-08-15 10:17:52 +01001553 port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Dan Williams49b532f2012-04-06 11:49:44 -07001555 if (port->handle_irq(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 handled = 1;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001557 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 } else if (end == NULL)
1559 end = l;
1560
1561 l = l->next;
1562
1563 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1564 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001565 printk_ratelimited(KERN_ERR
1566 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 break;
1568 }
1569 } while (l != end);
1570
1571 spin_unlock(&i->lock);
1572
1573 DEBUG_INTR("end.\n");
1574
1575 return IRQ_RETVAL(handled);
1576}
1577
1578/*
1579 * To support ISA shared interrupts, we need to have one interrupt
1580 * handler that ensures that the IRQ line has been deasserted
1581 * before returning. Failing to do this will result in the IRQ
1582 * line being stuck active, and, since ISA irqs are edge triggered,
1583 * no more IRQs will be seen.
1584 */
1585static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1586{
1587 spin_lock_irq(&i->lock);
1588
1589 if (!list_empty(i->head)) {
1590 if (i->head == &up->list)
1591 i->head = i->head->next;
1592 list_del(&up->list);
1593 } else {
1594 BUG_ON(i->head != &up->list);
1595 i->head = NULL;
1596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001598 /* List empty so throw away the hash node */
1599 if (i->head == NULL) {
1600 hlist_del(&i->node);
1601 kfree(i);
1602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
1605static int serial_link_irq_chain(struct uart_8250_port *up)
1606{
Alan Cox25db8ad2008-08-19 20:49:40 -07001607 struct hlist_head *h;
1608 struct hlist_node *n;
1609 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001610 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Alan Cox25db8ad2008-08-19 20:49:40 -07001612 mutex_lock(&hash_mutex);
1613
1614 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1615
1616 hlist_for_each(n, h) {
1617 i = hlist_entry(n, struct irq_info, node);
1618 if (i->irq == up->port.irq)
1619 break;
1620 }
1621
1622 if (n == NULL) {
1623 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1624 if (i == NULL) {
1625 mutex_unlock(&hash_mutex);
1626 return -ENOMEM;
1627 }
1628 spin_lock_init(&i->lock);
1629 i->irq = up->port.irq;
1630 hlist_add_head(&i->node, h);
1631 }
1632 mutex_unlock(&hash_mutex);
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 spin_lock_irq(&i->lock);
1635
1636 if (i->head) {
1637 list_add(&up->list, i->head);
1638 spin_unlock_irq(&i->lock);
1639
1640 ret = 0;
1641 } else {
1642 INIT_LIST_HEAD(&up->list);
1643 i->head = &up->list;
1644 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001645 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 ret = request_irq(up->port.irq, serial8250_interrupt,
1647 irq_flags, "serial", i);
1648 if (ret < 0)
1649 serial_do_unlink(i, up);
1650 }
1651
1652 return ret;
1653}
1654
1655static void serial_unlink_irq_chain(struct uart_8250_port *up)
1656{
Alan Cox25db8ad2008-08-19 20:49:40 -07001657 struct irq_info *i;
1658 struct hlist_node *n;
1659 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Alan Cox25db8ad2008-08-19 20:49:40 -07001661 mutex_lock(&hash_mutex);
1662
1663 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1664
1665 hlist_for_each(n, h) {
1666 i = hlist_entry(n, struct irq_info, node);
1667 if (i->irq == up->port.irq)
1668 break;
1669 }
1670
1671 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 BUG_ON(i->head == NULL);
1673
1674 if (list_empty(i->head))
1675 free_irq(up->port.irq, i);
1676
1677 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001678 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
1681/*
1682 * This function is used to handle ports that do not have an
1683 * interrupt. This doesn't work very well for 16450's, but gives
1684 * barely passable results for a 16550A. (Although at the expense
1685 * of much CPU overhead).
1686 */
1687static void serial8250_timeout(unsigned long data)
1688{
1689 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Paul Gortmakera0431472011-12-04 18:42:21 -05001691 up->port.handle_irq(&up->port);
Anton Vorontsov54381062010-10-01 17:21:25 +04001692 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001693}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Alex Williamson40b36da2007-02-14 00:33:04 -08001695static void serial8250_backup_timeout(unsigned long data)
1696{
1697 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001698 unsigned int iir, ier = 0, lsr;
1699 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001700
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001701 spin_lock_irqsave(&up->port.lock, flags);
1702
Alex Williamson40b36da2007-02-14 00:33:04 -08001703 /*
1704 * Must disable interrupts or else we risk racing with the interrupt
1705 * based handler.
1706 */
Alan Coxd4e33fa2012-01-26 17:44:09 +00001707 if (up->port.irq) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001708 ier = serial_in(up, UART_IER);
1709 serial_out(up, UART_IER, 0);
1710 }
1711
1712 iir = serial_in(up, UART_IIR);
1713
1714 /*
1715 * This should be a safe test for anyone who doesn't trust the
1716 * IIR bits on their UART, but it's specifically designed for
1717 * the "Diva" UART used on the management processor on many HP
1718 * ia64 and parisc boxes.
1719 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001720 lsr = serial_in(up, UART_LSR);
1721 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001722 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001723 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001724 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001725 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1726 iir |= UART_IIR_THRI;
1727 }
1728
1729 if (!(iir & UART_IIR_NO_INT))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001730 serial8250_tx_chars(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001731
Alan Coxd4e33fa2012-01-26 17:44:09 +00001732 if (up->port.irq)
Alex Williamson40b36da2007-02-14 00:33:04 -08001733 serial_out(up, UART_IER, ier);
1734
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001735 spin_unlock_irqrestore(&up->port.lock, flags);
1736
Alex Williamson40b36da2007-02-14 00:33:04 -08001737 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001738 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001739 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
1742static unsigned int serial8250_tx_empty(struct uart_port *port)
1743{
Jamie Iles49d57412010-12-01 23:39:35 +00001744 struct uart_8250_port *up =
1745 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001747 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001749 spin_lock_irqsave(&port->lock, flags);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001750 lsr = serial_port_in(port, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001751 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001752 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001754 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755}
1756
1757static unsigned int serial8250_get_mctrl(struct uart_port *port)
1758{
Jamie Iles49d57412010-12-01 23:39:35 +00001759 struct uart_8250_port *up =
1760 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001761 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 unsigned int ret;
1763
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001764 status = serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766 ret = 0;
1767 if (status & UART_MSR_DCD)
1768 ret |= TIOCM_CAR;
1769 if (status & UART_MSR_RI)
1770 ret |= TIOCM_RNG;
1771 if (status & UART_MSR_DSR)
1772 ret |= TIOCM_DSR;
1773 if (status & UART_MSR_CTS)
1774 ret |= TIOCM_CTS;
1775 return ret;
1776}
1777
1778static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1779{
Jamie Iles49d57412010-12-01 23:39:35 +00001780 struct uart_8250_port *up =
1781 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 unsigned char mcr = 0;
1783
1784 if (mctrl & TIOCM_RTS)
1785 mcr |= UART_MCR_RTS;
1786 if (mctrl & TIOCM_DTR)
1787 mcr |= UART_MCR_DTR;
1788 if (mctrl & TIOCM_OUT1)
1789 mcr |= UART_MCR_OUT1;
1790 if (mctrl & TIOCM_OUT2)
1791 mcr |= UART_MCR_OUT2;
1792 if (mctrl & TIOCM_LOOP)
1793 mcr |= UART_MCR_LOOP;
1794
1795 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1796
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001797 serial_port_out(port, UART_MCR, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
1800static void serial8250_break_ctl(struct uart_port *port, int break_state)
1801{
Jamie Iles49d57412010-12-01 23:39:35 +00001802 struct uart_8250_port *up =
1803 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 unsigned long flags;
1805
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001806 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 if (break_state == -1)
1808 up->lcr |= UART_LCR_SBC;
1809 else
1810 up->lcr &= ~UART_LCR_SBC;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001811 serial_port_out(port, UART_LCR, up->lcr);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001812 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
Alex Williamson40b36da2007-02-14 00:33:04 -08001815/*
1816 * Wait for transmitter & holding register to empty
1817 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001818static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001819{
1820 unsigned int status, tmout = 10000;
1821
1822 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001823 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001824 status = serial_in(up, UART_LSR);
1825
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001826 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001827
David Daney97d303b2010-10-05 11:40:07 -07001828 if ((status & bits) == bits)
1829 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001830 if (--tmout == 0)
1831 break;
1832 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001833 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001834
1835 /* Wait up to 1s for flow control if necessary */
1836 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001837 unsigned int tmout;
1838 for (tmout = 1000000; tmout; tmout--) {
1839 unsigned int msr = serial_in(up, UART_MSR);
1840 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1841 if (msr & UART_MSR_CTS)
1842 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001843 udelay(1);
1844 touch_nmi_watchdog();
1845 }
1846 }
1847}
1848
Jason Wesself2d937f2008-04-17 20:05:37 +02001849#ifdef CONFIG_CONSOLE_POLL
1850/*
1851 * Console polling routines for writing and reading from the uart while
1852 * in an interrupt or debug context.
1853 */
1854
1855static int serial8250_get_poll_char(struct uart_port *port)
1856{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001857 unsigned char lsr = serial_port_in(port, UART_LSR);
Jason Wesself2d937f2008-04-17 20:05:37 +02001858
Jason Wesself5316b42010-05-20 21:04:22 -05001859 if (!(lsr & UART_LSR_DR))
1860 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001861
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001862 return serial_port_in(port, UART_RX);
Jason Wesself2d937f2008-04-17 20:05:37 +02001863}
1864
1865
1866static void serial8250_put_poll_char(struct uart_port *port,
1867 unsigned char c)
1868{
1869 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001870 struct uart_8250_port *up =
1871 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001872
1873 /*
1874 * First save the IER then disable the interrupts
1875 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001876 ier = serial_port_in(port, UART_IER);
Jason Wesself2d937f2008-04-17 20:05:37 +02001877 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001878 serial_port_out(port, UART_IER, UART_IER_UUE);
Jason Wesself2d937f2008-04-17 20:05:37 +02001879 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001880 serial_port_out(port, UART_IER, 0);
Jason Wesself2d937f2008-04-17 20:05:37 +02001881
1882 wait_for_xmitr(up, BOTH_EMPTY);
1883 /*
1884 * Send the character out.
1885 * If a LF, also do CR...
1886 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001887 serial_port_out(port, UART_TX, c);
Jason Wesself2d937f2008-04-17 20:05:37 +02001888 if (c == 10) {
1889 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001890 serial_port_out(port, UART_TX, 13);
Jason Wesself2d937f2008-04-17 20:05:37 +02001891 }
1892
1893 /*
1894 * Finally, wait for transmitter to become empty
1895 * and restore the IER
1896 */
1897 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001898 serial_port_out(port, UART_IER, ier);
Jason Wesself2d937f2008-04-17 20:05:37 +02001899}
1900
1901#endif /* CONFIG_CONSOLE_POLL */
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903static int serial8250_startup(struct uart_port *port)
1904{
Jamie Iles49d57412010-12-01 23:39:35 +00001905 struct uart_8250_port *up =
1906 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001908 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 int retval;
1910
Sean Young65ecc9c2012-09-07 19:06:24 +01001911 if (port->type == PORT_8250_CIR)
1912 return -ENODEV;
1913
Heikki Krogerus96604972013-01-10 11:25:05 +02001914 if (!port->fifosize)
1915 port->fifosize = uart_config[port->type].fifo_size;
1916 if (!up->tx_loadsz)
1917 up->tx_loadsz = uart_config[port->type].tx_loadsz;
1918 if (!up->capabilities)
1919 up->capabilities = uart_config[port->type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 up->mcr = 0;
1921
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001922 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01001923 set_io_from_upio(port);
1924
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001925 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 /* Wake up and initialize UART */
1927 up->acr = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001928 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1929 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1930 serial_port_out(port, UART_IER, 0);
1931 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001933 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1934 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1935 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
1937
1938#ifdef CONFIG_SERIAL_8250_RSA
1939 /*
1940 * If this is an RSA port, see if we can kick it up to the
1941 * higher speed clock.
1942 */
1943 enable_rsa(up);
1944#endif
1945
1946 /*
1947 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001948 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 */
1950 serial8250_clear_fifos(up);
1951
1952 /*
1953 * Clear the interrupt registers.
1954 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001955 serial_port_in(port, UART_LSR);
1956 serial_port_in(port, UART_RX);
1957 serial_port_in(port, UART_IIR);
1958 serial_port_in(port, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 /*
1961 * At this point, there's no way the LSR could still be 0xff;
1962 * if it is, then bail out, because there's likely no UART
1963 * here.
1964 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001965 if (!(port->flags & UPF_BUGGY_UART) &&
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001966 (serial_port_in(port, UART_LSR) == 0xff)) {
Konrad Rzeszutek Wilk7808a4c2011-09-26 09:14:34 -04001967 printk_ratelimited(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001968 serial_index(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return -ENODEV;
1970 }
1971
1972 /*
1973 * For a XR16C850, we need to set the trigger levels
1974 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001975 if (port->type == PORT_16850) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 unsigned char fctr;
1977
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001978 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001980 fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001981 serial_port_out(port, UART_FCTR,
1982 fctr | UART_FCTR_TRGD | UART_FCTR_RX);
1983 serial_port_out(port, UART_TRG, UART_TRG_96);
1984 serial_port_out(port, UART_FCTR,
1985 fctr | UART_FCTR_TRGD | UART_FCTR_TX);
1986 serial_port_out(port, UART_TRG, UART_TRG_96);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001988 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
1990
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001991 if (port->irq) {
Alex Williamson01c194d2008-04-28 02:14:09 -07001992 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08001993 /*
1994 * Test for UARTs that do not reassert THRE when the
1995 * transmitter is idle and the interrupt has already
1996 * been cleared. Real 16550s should always reassert
1997 * this interrupt whenever the transmitter is idle and
1998 * the interrupt is enabled. Delays are necessary to
1999 * allow register changes to become visible.
2000 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002001 spin_lock_irqsave(&port->lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002002 if (up->port.irqflags & IRQF_SHARED)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002003 disable_irq_nosync(port->irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002004
2005 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker55e40162012-03-08 19:12:14 -05002006 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002007 udelay(1); /* allow THRE to set */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002008 iir1 = serial_port_in(port, UART_IIR);
2009 serial_port_out(port, UART_IER, 0);
Paul Gortmaker55e40162012-03-08 19:12:14 -05002010 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002011 udelay(1); /* allow a working UART time to re-assert THRE */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002012 iir = serial_port_in(port, UART_IIR);
2013 serial_port_out(port, UART_IER, 0);
Alex Williamson40b36da2007-02-14 00:33:04 -08002014
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002015 if (port->irqflags & IRQF_SHARED)
2016 enable_irq(port->irq);
2017 spin_unlock_irqrestore(&port->lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002018
2019 /*
Dan Williamsbc02d152012-04-06 11:49:50 -07002020 * If the interrupt is not reasserted, or we otherwise
2021 * don't trust the iir, setup a timer to kick the UART
2022 * on a regular basis.
Alex Williamson40b36da2007-02-14 00:33:04 -08002023 */
Dan Williamsbc02d152012-04-06 11:49:50 -07002024 if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) ||
2025 up->port.flags & UPF_BUG_THRE) {
Will Newton363f66f2008-09-02 14:35:44 -07002026 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002027 pr_debug("ttyS%d - using backup timer\n",
2028 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002029 }
2030 }
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 /*
Will Newton363f66f2008-09-02 14:35:44 -07002033 * The above check will only give an accurate result the first time
2034 * the port is opened so this value needs to be preserved.
2035 */
2036 if (up->bugs & UART_BUG_THRE) {
2037 up->timer.function = serial8250_backup_timeout;
2038 up->timer.data = (unsigned long)up;
2039 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002040 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002041 }
2042
2043 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 * If the "interrupt" for this port doesn't correspond with any
2045 * hardware interrupt, we use a timer-based system. The original
2046 * driver used to do this with IRQ0.
2047 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002048 if (!port->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002050 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 } else {
2052 retval = serial_link_irq_chain(up);
2053 if (retval)
2054 return retval;
2055 }
2056
2057 /*
2058 * Now, initialize the UART
2059 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002060 serial_port_out(port, UART_LCR, UART_LCR_WLEN8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002062 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (up->port.flags & UPF_FOURPORT) {
Alan Coxd4e33fa2012-01-26 17:44:09 +00002064 if (!up->port.irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 up->port.mctrl |= TIOCM_OUT1;
2066 } else
2067 /*
2068 * Most PC uarts need OUT2 raised to enable interrupts.
2069 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002070 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 up->port.mctrl |= TIOCM_OUT2;
2072
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002073 serial8250_set_mctrl(port, port->mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002074
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002075 /* Serial over Lan (SoL) hack:
2076 Intel 8257x Gigabit ethernet chips have a
2077 16550 emulation, to be used for Serial Over Lan.
2078 Those chips take a longer time than a normal
2079 serial device to signalize that a transmission
2080 data was queued. Due to that, the above test generally
2081 fails. One solution would be to delay the reading of
2082 iir. However, this is not reliable, since the timeout
2083 is variable. So, let's just don't test if we receive
2084 TX irq. This way, we'll never enable UART_BUG_TXEN.
2085 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002086 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002087 goto dont_test_tx_en;
2088
Russell King55d3b282005-06-23 15:05:41 +01002089 /*
2090 * Do a quick test to see if we receive an
2091 * interrupt when we enable the TX irq.
2092 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002093 serial_port_out(port, UART_IER, UART_IER_THRI);
2094 lsr = serial_port_in(port, UART_LSR);
2095 iir = serial_port_in(port, UART_IIR);
2096 serial_port_out(port, UART_IER, 0);
Russell King55d3b282005-06-23 15:05:41 +01002097
2098 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002099 if (!(up->bugs & UART_BUG_TXEN)) {
2100 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002101 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002102 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002103 }
2104 } else {
Russell King67f76542005-06-23 22:26:43 +01002105 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002106 }
2107
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002108dont_test_tx_en:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002109 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002112 * Clear the interrupt registers again for luck, and clear the
2113 * saved flags to avoid getting false values from polling
2114 * routines or the previous session.
2115 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002116 serial_port_in(port, UART_LSR);
2117 serial_port_in(port, UART_RX);
2118 serial_port_in(port, UART_IIR);
2119 serial_port_in(port, UART_MSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002120 up->lsr_saved_flags = 0;
2121 up->msr_saved_flags = 0;
2122
2123 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 * Finally, enable interrupts. Note: Modem status interrupts
2125 * are set via set_termios(), which will be occurring imminently
2126 * anyway, so we don't enable them here.
2127 */
2128 up->ier = UART_IER_RLSI | UART_IER_RDI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002129 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002131 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 unsigned int icp;
2133 /*
2134 * Enable interrupts on the AST Fourport board
2135 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002136 icp = (port->iobase & 0xfe0) | 0x01f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 outb_p(0x80, icp);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05002138 inb_p(icp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 return 0;
2142}
2143
2144static void serial8250_shutdown(struct uart_port *port)
2145{
Jamie Iles49d57412010-12-01 23:39:35 +00002146 struct uart_8250_port *up =
2147 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 unsigned long flags;
2149
2150 /*
2151 * Disable interrupts from this port
2152 */
2153 up->ier = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002154 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002156 spin_lock_irqsave(&port->lock, flags);
2157 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 /* reset interrupts on the AST Fourport board */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002159 inb((port->iobase & 0xfe0) | 0x1f);
2160 port->mctrl |= TIOCM_OUT1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002162 port->mctrl &= ~TIOCM_OUT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002164 serial8250_set_mctrl(port, port->mctrl);
2165 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 /*
2168 * Disable break condition and FIFOs
2169 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002170 serial_port_out(port, UART_LCR,
2171 serial_port_in(port, UART_LCR) & ~UART_LCR_SBC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 serial8250_clear_fifos(up);
2173
2174#ifdef CONFIG_SERIAL_8250_RSA
2175 /*
2176 * Reset the RSA board back to 115kbps compat mode.
2177 */
2178 disable_rsa(up);
2179#endif
2180
2181 /*
2182 * Read data port to reset things, and then unlink from
2183 * the IRQ chain.
2184 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002185 serial_port_in(port, UART_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Alex Williamson40b36da2007-02-14 00:33:04 -08002187 del_timer_sync(&up->timer);
2188 up->timer.function = serial8250_timeout;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002189 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 serial_unlink_irq_chain(up);
2191}
2192
2193static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2194{
2195 unsigned int quot;
2196
2197 /*
2198 * Handle magic divisors for baud rates above baud_base on
2199 * SMSC SuperIO chips.
2200 */
2201 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2202 baud == (port->uartclk/4))
2203 quot = 0x8001;
2204 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2205 baud == (port->uartclk/8))
2206 quot = 0x8002;
2207 else
2208 quot = uart_get_divisor(port, baud);
2209
2210 return quot;
2211}
2212
Philippe Langlais235dae52010-07-29 17:13:57 +02002213void
2214serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2215 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
Jamie Iles49d57412010-12-01 23:39:35 +00002217 struct uart_8250_port *up =
2218 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 unsigned char cval, fcr = 0;
2220 unsigned long flags;
2221 unsigned int baud, quot;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002222 int fifo_bug = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 switch (termios->c_cflag & CSIZE) {
2225 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002226 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 break;
2228 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002229 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 break;
2231 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002232 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 break;
2234 default:
2235 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002236 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 break;
2238 }
2239
2240 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002241 cval |= UART_LCR_STOP;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002242 if (termios->c_cflag & PARENB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 cval |= UART_LCR_PARITY;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002244 if (up->bugs & UART_BUG_PARITY)
2245 fifo_bug = 1;
2246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (!(termios->c_cflag & PARODD))
2248 cval |= UART_LCR_EPAR;
2249#ifdef CMSPAR
2250 if (termios->c_cflag & CMSPAR)
2251 cval |= UART_LCR_SPAR;
2252#endif
2253
2254 /*
2255 * Ask the core to calculate the divisor for us.
2256 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002257 baud = uart_get_baud_rate(port, termios, old,
2258 port->uartclk / 16 / 0xffff,
2259 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 quot = serial8250_get_divisor(port, baud);
2261
2262 /*
Russell King4ba5e352005-06-23 10:43:04 +01002263 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 */
Russell King4ba5e352005-06-23 10:43:04 +01002265 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002266 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002268 if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) {
Christian Melkif9a91112012-04-30 11:21:26 +02002269 fcr = uart_config[port->type].fcr;
Alan Coxeb26dfe2012-07-12 13:00:31 +01002270 if (baud < 2400 || fifo_bug) {
Christian Melkif9a91112012-04-30 11:21:26 +02002271 fcr &= ~UART_FCR_TRIGGER_MASK;
2272 fcr |= UART_FCR_TRIGGER_1;
2273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 }
2275
2276 /*
2277 * MCR-based auto flow control. When AFE is enabled, RTS will be
2278 * deasserted when the receive FIFO contains more characters than
2279 * the trigger, or the MCR RTS bit is cleared. In the case where
2280 * the remote UART is not using CTS auto flow control, we must
2281 * have sufficient FIFO entries for the latency of the remote
2282 * UART to respond. IOW, at least 32 bytes of FIFO.
2283 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002284 if (up->capabilities & UART_CAP_AFE && port->fifosize >= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 up->mcr &= ~UART_MCR_AFE;
2286 if (termios->c_cflag & CRTSCTS)
2287 up->mcr |= UART_MCR_AFE;
2288 }
2289
2290 /*
2291 * Ok, we're now changing the port state. Do it with
2292 * interrupts disabled.
2293 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002294 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 /*
2297 * Update the per-port timeout.
2298 */
2299 uart_update_timeout(port, termios->c_cflag, baud);
2300
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002301 port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 if (termios->c_iflag & INPCK)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002303 port->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (termios->c_iflag & (BRKINT | PARMRK))
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002305 port->read_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 /*
2308 * Characteres to ignore
2309 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002310 port->ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002312 port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (termios->c_iflag & IGNBRK) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002314 port->ignore_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 /*
2316 * If we're ignoring parity and break indicators,
2317 * ignore overruns too (for real raw support).
2318 */
2319 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002320 port->ignore_status_mask |= UART_LSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 }
2322
2323 /*
2324 * ignore all characters if CREAD is not set
2325 */
2326 if ((termios->c_cflag & CREAD) == 0)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002327 port->ignore_status_mask |= UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
2329 /*
2330 * CTS flow control flag and modem status interrupts
2331 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002332 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002333 if (!(up->bugs & UART_BUG_NOMSR) &&
2334 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 up->ier |= UART_IER_MSI;
2336 if (up->capabilities & UART_CAP_UUE)
Stephen Warren4539c242011-05-17 16:12:36 -06002337 up->ier |= UART_IER_UUE;
2338 if (up->capabilities & UART_CAP_RTOIE)
2339 up->ier |= UART_IER_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002341 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
2343 if (up->capabilities & UART_CAP_EFR) {
2344 unsigned char efr = 0;
2345 /*
2346 * TI16C752/Startech hardware flow control. FIXME:
2347 * - TI16C752 requires control thresholds to be set.
2348 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2349 */
2350 if (termios->c_cflag & CRTSCTS)
2351 efr |= UART_EFR_CTS;
2352
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002353 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002354 if (port->flags & UPF_EXAR_EFR)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002355 serial_port_out(port, UART_XR_EFR, efr);
Søren Holm06315342011-09-02 22:55:37 +02002356 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002357 serial_port_out(port, UART_EFR, efr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
2359
Jonathan McDowell255341c2006-08-14 23:05:32 -07002360 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002361 if (is_omap1510_8250(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002362 if (baud == 115200) {
2363 quot = 1;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002364 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002365 } else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002366 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002367 }
Jonathan McDowell255341c2006-08-14 23:05:32 -07002368
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002369 /*
2370 * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2,
2371 * otherwise just set DLAB
2372 */
2373 if (up->capabilities & UART_NATSEMI)
2374 serial_port_out(port, UART_LCR, 0xe0);
2375 else
2376 serial_port_out(port, UART_LCR, cval | UART_LCR_DLAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002378 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 /*
2381 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2382 * is written without DLAB set, this mode will be disabled.
2383 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002384 if (port->type == PORT_16750)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002385 serial_port_out(port, UART_FCR, fcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002387 serial_port_out(port, UART_LCR, cval); /* reset DLAB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 up->lcr = cval; /* Save LCR */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002389 if (port->type != PORT_16750) {
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002390 /* emulated UARTs (Lucent Venus 167x) need two steps */
2391 if (fcr & UART_FCR_ENABLE_FIFO)
2392 serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);
2393 serial_port_out(port, UART_FCR, fcr); /* set fcr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002395 serial8250_set_mctrl(port, port->mctrl);
2396 spin_unlock_irqrestore(&port->lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002397 /* Don't rewrite B0 */
2398 if (tty_termios_baud_rate(termios))
2399 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400}
Philippe Langlais235dae52010-07-29 17:13:57 +02002401EXPORT_SYMBOL(serial8250_do_set_termios);
2402
2403static void
2404serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2405 struct ktermios *old)
2406{
2407 if (port->set_termios)
2408 port->set_termios(port, termios, old);
2409 else
2410 serial8250_do_set_termios(port, termios, old);
2411}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
2413static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002414serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002415{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002416 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002417 port->flags |= UPF_HARDPPS_CD;
2418 serial8250_enable_ms(port);
2419 } else
2420 port->flags &= ~UPF_HARDPPS_CD;
2421}
2422
Manuel Laussc161afe2010-09-25 15:13:45 +02002423
2424void serial8250_do_pm(struct uart_port *port, unsigned int state,
2425 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
Jamie Iles49d57412010-12-01 23:39:35 +00002427 struct uart_8250_port *p =
2428 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002431}
2432EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Manuel Laussc161afe2010-09-25 15:13:45 +02002434static void
2435serial8250_pm(struct uart_port *port, unsigned int state,
2436 unsigned int oldstate)
2437{
2438 if (port->pm)
2439 port->pm(port, state, oldstate);
2440 else
2441 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442}
2443
Russell Kingf2eda272008-09-01 21:47:59 +01002444static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2445{
2446 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002447 return 0x1000;
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002448 if (is_omap1_8250(pt))
Russell Kingf2eda272008-09-01 21:47:59 +01002449 return 0x16 << pt->port.regshift;
Tony Lindgren54ec52b2012-10-03 15:31:58 -07002450
Russell Kingf2eda272008-09-01 21:47:59 +01002451 return 8 << pt->port.regshift;
2452}
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454/*
2455 * Resource handling.
2456 */
2457static int serial8250_request_std_resource(struct uart_8250_port *up)
2458{
Russell Kingf2eda272008-09-01 21:47:59 +01002459 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002460 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 int ret = 0;
2462
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002463 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002464 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002465 case UPIO_TSI:
2466 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002468 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 break;
2470
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002471 if (!request_mem_region(port->mapbase, size, "serial")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 ret = -EBUSY;
2473 break;
2474 }
2475
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002476 if (port->flags & UPF_IOREMAP) {
2477 port->membase = ioremap_nocache(port->mapbase, size);
2478 if (!port->membase) {
2479 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 ret = -ENOMEM;
2481 }
2482 }
2483 break;
2484
2485 case UPIO_HUB6:
2486 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002487 if (!request_region(port->iobase, size, "serial"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 ret = -EBUSY;
2489 break;
2490 }
2491 return ret;
2492}
2493
2494static void serial8250_release_std_resource(struct uart_8250_port *up)
2495{
Russell Kingf2eda272008-09-01 21:47:59 +01002496 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002497 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002499 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002500 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002501 case UPIO_TSI:
2502 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002504 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 break;
2506
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002507 if (port->flags & UPF_IOREMAP) {
2508 iounmap(port->membase);
2509 port->membase = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 }
2511
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002512 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 break;
2514
2515 case UPIO_HUB6:
2516 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002517 release_region(port->iobase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 break;
2519 }
2520}
2521
2522static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2523{
2524 unsigned long start = UART_RSA_BASE << up->port.regshift;
2525 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002526 struct uart_port *port = &up->port;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002527 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002529 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 case UPIO_HUB6:
2531 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002532 start += port->iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002533 if (request_region(start, size, "serial-rsa"))
2534 ret = 0;
2535 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 ret = -EBUSY;
2537 break;
2538 }
2539
2540 return ret;
2541}
2542
2543static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2544{
2545 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2546 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002547 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002549 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 case UPIO_HUB6:
2551 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002552 release_region(port->iobase + offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 break;
2554 }
2555}
2556
2557static void serial8250_release_port(struct uart_port *port)
2558{
Jamie Iles49d57412010-12-01 23:39:35 +00002559 struct uart_8250_port *up =
2560 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
2562 serial8250_release_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002563 if (port->type == PORT_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 serial8250_release_rsa_resource(up);
2565}
2566
2567static int serial8250_request_port(struct uart_port *port)
2568{
Jamie Iles49d57412010-12-01 23:39:35 +00002569 struct uart_8250_port *up =
2570 container_of(port, struct uart_8250_port, port);
Sean Young65ecc9c2012-09-07 19:06:24 +01002571 int ret;
2572
2573 if (port->type == PORT_8250_CIR)
2574 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
2576 ret = serial8250_request_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002577 if (ret == 0 && port->type == PORT_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 ret = serial8250_request_rsa_resource(up);
2579 if (ret < 0)
2580 serial8250_release_std_resource(up);
2581 }
2582
2583 return ret;
2584}
2585
2586static void serial8250_config_port(struct uart_port *port, int flags)
2587{
Jamie Iles49d57412010-12-01 23:39:35 +00002588 struct uart_8250_port *up =
2589 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 int probeflags = PROBE_ANY;
2591 int ret;
2592
Sean Young65ecc9c2012-09-07 19:06:24 +01002593 if (port->type == PORT_8250_CIR)
2594 return;
2595
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 * Find the region that we can probe for. This in turn
2598 * tells us whether we can probe for the type of port.
2599 */
2600 ret = serial8250_request_std_resource(up);
2601 if (ret < 0)
2602 return;
2603
2604 ret = serial8250_request_rsa_resource(up);
2605 if (ret < 0)
2606 probeflags &= ~PROBE_RSA;
2607
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002608 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01002609 set_io_from_upio(port);
2610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (flags & UART_CONFIG_TYPE)
2612 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002613
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002614 /* if access method is AU, it is a 16550 with a quirk */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002615 if (port->type == PORT_16550A && port->iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002616 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002617
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002618 if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 autoconfig_irq(up);
2620
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002621 if (port->type != PORT_RSA && probeflags & PROBE_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 serial8250_release_rsa_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002623 if (port->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 serial8250_release_std_resource(up);
Matt Schultedc96efb2012-11-19 09:12:04 -06002625
2626 /* Fixme: probably not the best place for this */
Matt Schulte30fa96a2012-11-21 09:40:49 -06002627 if ((port->type == PORT_XR17V35X) ||
2628 (port->type == PORT_XR17D15X))
Matt Schultedc96efb2012-11-19 09:12:04 -06002629 port->handle_irq = exar_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
2632static int
2633serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2634{
Yinghai Lua62c4132008-08-19 20:49:55 -07002635 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2637 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2638 ser->type == PORT_STARTECH)
2639 return -EINVAL;
2640 return 0;
2641}
2642
2643static const char *
2644serial8250_type(struct uart_port *port)
2645{
2646 int type = port->type;
2647
2648 if (type >= ARRAY_SIZE(uart_config))
2649 type = 0;
2650 return uart_config[type].name;
2651}
2652
2653static struct uart_ops serial8250_pops = {
2654 .tx_empty = serial8250_tx_empty,
2655 .set_mctrl = serial8250_set_mctrl,
2656 .get_mctrl = serial8250_get_mctrl,
2657 .stop_tx = serial8250_stop_tx,
2658 .start_tx = serial8250_start_tx,
2659 .stop_rx = serial8250_stop_rx,
2660 .enable_ms = serial8250_enable_ms,
2661 .break_ctl = serial8250_break_ctl,
2662 .startup = serial8250_startup,
2663 .shutdown = serial8250_shutdown,
2664 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002665 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 .pm = serial8250_pm,
2667 .type = serial8250_type,
2668 .release_port = serial8250_release_port,
2669 .request_port = serial8250_request_port,
2670 .config_port = serial8250_config_port,
2671 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002672#ifdef CONFIG_CONSOLE_POLL
2673 .poll_get_char = serial8250_get_poll_char,
2674 .poll_put_char = serial8250_put_poll_char,
2675#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676};
2677
2678static struct uart_8250_port serial8250_ports[UART_NR];
2679
Alan Coxaf7f3742010-10-18 11:38:02 -07002680static void (*serial8250_isa_config)(int port, struct uart_port *up,
2681 unsigned short *capabilities);
2682
2683void serial8250_set_isa_configurator(
2684 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2685{
2686 serial8250_isa_config = v;
2687}
2688EXPORT_SYMBOL(serial8250_set_isa_configurator);
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690static void __init serial8250_isa_init_ports(void)
2691{
2692 struct uart_8250_port *up;
2693 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002694 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
2696 if (!first)
2697 return;
2698 first = 0;
2699
Sean Young835d8442012-09-07 19:06:23 +01002700 if (nr_uarts > UART_NR)
2701 nr_uarts = UART_NR;
2702
Dave Jonesa61c2d72006-01-07 23:18:19 +00002703 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 struct uart_8250_port *up = &serial8250_ports[i];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002705 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002707 port->line = i;
2708 spin_lock_init(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710 init_timer(&up->timer);
2711 up->timer.function = serial8250_timeout;
Sean Young835d8442012-09-07 19:06:23 +01002712 up->cur_iotype = 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
2714 /*
2715 * ALPHA_KLUDGE_MCR needs to be killed.
2716 */
2717 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2718 up->mcr_force = ALPHA_KLUDGE_MCR;
2719
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002720 port->ops = &serial8250_pops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 }
2722
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002723 if (share_irqs)
2724 irqflag = IRQF_SHARED;
2725
Russell King44454bc2005-06-30 22:41:22 +01002726 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002727 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 i++, up++) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002729 struct uart_port *port = &up->port;
2730
2731 port->iobase = old_serial_port[i].port;
2732 port->irq = irq_canonicalize(old_serial_port[i].irq);
2733 port->irqflags = old_serial_port[i].irqflags;
2734 port->uartclk = old_serial_port[i].baud_base * 16;
2735 port->flags = old_serial_port[i].flags;
2736 port->hub6 = old_serial_port[i].hub6;
2737 port->membase = old_serial_port[i].iomem_base;
2738 port->iotype = old_serial_port[i].io_type;
2739 port->regshift = old_serial_port[i].iomem_reg_shift;
2740 set_io_from_upio(port);
2741 port->irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002742 if (serial8250_isa_config != NULL)
2743 serial8250_isa_config(i, &up->port, &up->capabilities);
2744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 }
2746}
2747
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002748static void
2749serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2750{
2751 up->port.type = type;
Heikki Krogerus96604972013-01-10 11:25:05 +02002752 if (!up->port.fifosize)
2753 up->port.fifosize = uart_config[type].fifo_size;
2754 if (!up->tx_loadsz)
2755 up->tx_loadsz = uart_config[type].tx_loadsz;
2756 if (!up->capabilities)
2757 up->capabilities = uart_config[type].flags;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002758}
2759
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760static void __init
2761serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2762{
2763 int i;
2764
Alan Coxb8e7e402009-05-28 14:01:35 +01002765 for (i = 0; i < nr_uarts; i++) {
2766 struct uart_8250_port *up = &serial8250_ports[i];
Alan Coxb8e7e402009-05-28 14:01:35 +01002767
Sean Young835d8442012-09-07 19:06:23 +01002768 if (up->port.dev)
2769 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002772
2773 if (up->port.flags & UPF_FIXED_TYPE)
2774 serial8250_init_fixed_type_port(up, up->port.type);
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 uart_add_one_port(drv, &up->port);
2777 }
2778}
2779
2780#ifdef CONFIG_SERIAL_8250_CONSOLE
2781
Russell Kingd3587882006-03-20 20:00:09 +00002782static void serial8250_console_putchar(struct uart_port *port, int ch)
2783{
Jamie Iles49d57412010-12-01 23:39:35 +00002784 struct uart_8250_port *up =
2785 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002786
2787 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002788 serial_port_out(port, UART_TX, ch);
Russell Kingd3587882006-03-20 20:00:09 +00002789}
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791/*
2792 * Print a string to the serial port trying not to disturb
2793 * any possible real use of the port...
2794 *
2795 * The console_lock must be held when we get here.
2796 */
2797static void
2798serial8250_console_write(struct console *co, const char *s, unsigned int count)
2799{
2800 struct uart_8250_port *up = &serial8250_ports[co->index];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002801 struct uart_port *port = &up->port;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002802 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002804 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Andrew Morton78512ec2005-11-07 00:59:13 -08002806 touch_nmi_watchdog();
2807
Andrew Morton68aa2c02006-06-30 02:29:59 -07002808 local_irq_save(flags);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002809 if (port->sysrq) {
Paul Gortmaker86b21192011-12-04 18:42:22 -05002810 /* serial8250_handle_irq() already took the lock */
Andrew Morton68aa2c02006-06-30 02:29:59 -07002811 locked = 0;
2812 } else if (oops_in_progress) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002813 locked = spin_trylock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002814 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002815 spin_lock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002816
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002818 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002820 ier = serial_port_in(port, UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
2822 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002823 serial_port_out(port, UART_IER, UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002825 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002827 uart_console_write(port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
2829 /*
2830 * Finally, wait for transmitter to become empty
2831 * and restore the IER
2832 */
Alan Coxf91a3712006-01-21 14:59:12 +00002833 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002834 serial_port_out(port, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002835
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002836 /*
2837 * The receive handling will happen properly because the
2838 * receive ready bit will still be set; it is not cleared
2839 * on read. However, modem control will not, we must
2840 * call it if we have saved something in the saved flags
2841 * while processing with interrupts off.
2842 */
2843 if (up->msr_saved_flags)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05002844 serial8250_modem_status(up);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002845
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002846 if (locked)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002847 spin_unlock(&port->lock);
Andrew Morton68aa2c02006-06-30 02:29:59 -07002848 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849}
2850
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002851static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852{
2853 struct uart_port *port;
2854 int baud = 9600;
2855 int bits = 8;
2856 int parity = 'n';
2857 int flow = 'n';
2858
2859 /*
2860 * Check whether an invalid uart number has been specified, and
2861 * if so, search for the first available port that does have
2862 * console support.
2863 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002864 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 co->index = 0;
2866 port = &serial8250_ports[co->index].port;
2867 if (!port->iobase && !port->membase)
2868 return -ENODEV;
2869
2870 if (options)
2871 uart_parse_options(options, &baud, &parity, &bits, &flow);
2872
2873 return uart_set_options(port, co, baud, parity, bits, flow);
2874}
2875
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002876static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002877{
2878 return serial8250_find_port_for_earlycon();
2879}
2880
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881static struct console serial8250_console = {
2882 .name = "ttyS",
2883 .write = serial8250_console_write,
2884 .device = uart_console_device,
2885 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002886 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002887 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 .index = -1,
2889 .data = &serial8250_reg,
2890};
2891
2892static int __init serial8250_console_init(void)
2893{
2894 serial8250_isa_init_ports();
2895 register_console(&serial8250_console);
2896 return 0;
2897}
2898console_initcall(serial8250_console_init);
2899
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002900int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
2902 int line;
2903 struct uart_port *port;
2904
Dave Jonesa61c2d72006-01-07 23:18:19 +00002905 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002907 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 return line;
2909 }
2910 return -ENODEV;
2911}
2912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913#define SERIAL8250_CONSOLE &serial8250_console
2914#else
2915#define SERIAL8250_CONSOLE NULL
2916#endif
2917
2918static struct uart_driver serial8250_reg = {
2919 .owner = THIS_MODULE,
2920 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 .dev_name = "ttyS",
2922 .major = TTY_MAJOR,
2923 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 .cons = SERIAL8250_CONSOLE,
2925};
2926
Russell Kingd856c662006-02-23 10:22:13 +00002927/*
2928 * early_serial_setup - early registration for 8250 ports
2929 *
2930 * Setup an 8250 port structure prior to console initialisation. Use
2931 * after console initialisation will cause undefined behaviour.
2932 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933int __init early_serial_setup(struct uart_port *port)
2934{
David Daneyb4304282009-01-02 13:49:41 +00002935 struct uart_port *p;
2936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 if (port->line >= ARRAY_SIZE(serial8250_ports))
2938 return -ENODEV;
2939
2940 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00002941 p = &serial8250_ports[port->line].port;
2942 p->iobase = port->iobase;
2943 p->membase = port->membase;
2944 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002945 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00002946 p->uartclk = port->uartclk;
2947 p->fifosize = port->fifosize;
2948 p->regshift = port->regshift;
2949 p->iotype = port->iotype;
2950 p->flags = port->flags;
2951 p->mapbase = port->mapbase;
2952 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01002953 p->type = port->type;
2954 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00002955
2956 set_io_from_upio(p);
2957 if (port->serial_in)
2958 p->serial_in = port->serial_in;
2959 if (port->serial_out)
2960 p->serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01002961 if (port->handle_irq)
2962 p->handle_irq = port->handle_irq;
2963 else
2964 p->handle_irq = serial8250_default_handle_irq;
David Daney7d6a07d2009-01-02 13:49:47 +00002965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 return 0;
2967}
2968
2969/**
2970 * serial8250_suspend_port - suspend one serial port
2971 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 *
2973 * Suspend one serial port.
2974 */
2975void serial8250_suspend_port(int line)
2976{
2977 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
2978}
2979
2980/**
2981 * serial8250_resume_port - resume one serial port
2982 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 *
2984 * Resume one serial port.
2985 */
2986void serial8250_resume_port(int line)
2987{
David Woodhouseb5b82df2007-05-17 14:27:39 +08002988 struct uart_8250_port *up = &serial8250_ports[line];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002989 struct uart_port *port = &up->port;
David Woodhouseb5b82df2007-05-17 14:27:39 +08002990
2991 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08002992 /* Ensure it's still in high speed mode */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002993 serial_port_out(port, UART_LCR, 0xE0);
David Woodhouseb5b82df2007-05-17 14:27:39 +08002994
Yin Kangkai0d0389e2011-02-09 11:35:18 +08002995 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08002996
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002997 serial_port_out(port, UART_LCR, 0);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002998 port->uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08002999 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05003000 uart_resume_port(&serial8250_reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001}
3002
3003/*
3004 * Register a set of serial devices attached to a platform device. The
3005 * list is terminated with a zero flags entry, which means we expect
3006 * all entries to have at least UPF_BOOT_AUTOCONF set.
3007 */
Bill Pemberton9671f092012-11-19 13:21:50 -05003008static int serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Russell King3ae5eae2005-11-09 22:32:44 +00003010 struct plat_serial8250_port *p = dev->dev.platform_data;
Alan Cox2655a2c2012-07-12 12:59:50 +01003011 struct uart_8250_port uart;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003012 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Alan Cox2655a2c2012-07-12 12:59:50 +01003014 memset(&uart, 0, sizeof(uart));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003016 if (share_irqs)
3017 irqflag = IRQF_SHARED;
3018
Russell Kingec9f47c2005-06-27 11:12:54 +01003019 for (i = 0; p && p->flags != 0; p++, i++) {
Alan Cox2655a2c2012-07-12 12:59:50 +01003020 uart.port.iobase = p->iobase;
3021 uart.port.membase = p->membase;
3022 uart.port.irq = p->irq;
3023 uart.port.irqflags = p->irqflags;
3024 uart.port.uartclk = p->uartclk;
3025 uart.port.regshift = p->regshift;
3026 uart.port.iotype = p->iotype;
3027 uart.port.flags = p->flags;
3028 uart.port.mapbase = p->mapbase;
3029 uart.port.hub6 = p->hub6;
3030 uart.port.private_data = p->private_data;
3031 uart.port.type = p->type;
3032 uart.port.serial_in = p->serial_in;
3033 uart.port.serial_out = p->serial_out;
3034 uart.port.handle_irq = p->handle_irq;
3035 uart.port.handle_break = p->handle_break;
3036 uart.port.set_termios = p->set_termios;
3037 uart.port.pm = p->pm;
3038 uart.port.dev = &dev->dev;
3039 uart.port.irqflags |= irqflag;
3040 ret = serial8250_register_8250_port(&uart);
Russell Kingec9f47c2005-06-27 11:12:54 +01003041 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003042 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003043 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3044 p->iobase, (unsigned long long)p->mapbase,
3045 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
3048 return 0;
3049}
3050
3051/*
3052 * Remove serial ports registered against a platform device.
3053 */
Bill Pembertonae8d8a12012-11-19 13:26:18 -05003054static int serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055{
3056 int i;
3057
Dave Jonesa61c2d72006-01-07 23:18:19 +00003058 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 struct uart_8250_port *up = &serial8250_ports[i];
3060
Russell King3ae5eae2005-11-09 22:32:44 +00003061 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 serial8250_unregister_port(i);
3063 }
3064 return 0;
3065}
3066
Russell King3ae5eae2005-11-09 22:32:44 +00003067static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
3069 int i;
3070
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 for (i = 0; i < UART_NR; i++) {
3072 struct uart_8250_port *up = &serial8250_ports[i];
3073
Russell King3ae5eae2005-11-09 22:32:44 +00003074 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 uart_suspend_port(&serial8250_reg, &up->port);
3076 }
3077
3078 return 0;
3079}
3080
Russell King3ae5eae2005-11-09 22:32:44 +00003081static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
3083 int i;
3084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 for (i = 0; i < UART_NR; i++) {
3086 struct uart_8250_port *up = &serial8250_ports[i];
3087
Russell King3ae5eae2005-11-09 22:32:44 +00003088 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003089 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 }
3091
3092 return 0;
3093}
3094
Russell King3ae5eae2005-11-09 22:32:44 +00003095static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 .probe = serial8250_probe,
Bill Pemberton2d47b712012-11-19 13:21:34 -05003097 .remove = serial8250_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 .suspend = serial8250_suspend,
3099 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003100 .driver = {
3101 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003102 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003103 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104};
3105
3106/*
3107 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3108 * in the table in include/asm/serial.h
3109 */
3110static struct platform_device *serial8250_isa_devs;
3111
3112/*
Alan Cox2655a2c2012-07-12 12:59:50 +01003113 * serial8250_register_8250_port and serial8250_unregister_port allows for
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3115 * modems and PCI multiport cards.
3116 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003117static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
3119static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3120{
3121 int i;
3122
3123 /*
3124 * First, find a port entry which matches.
3125 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003126 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 if (uart_match_port(&serial8250_ports[i].port, port))
3128 return &serial8250_ports[i];
3129
3130 /*
3131 * We didn't find a matching entry, so look for the first
3132 * free entry. We look for one which hasn't been previously
3133 * used (indicated by zero iobase).
3134 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003135 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3137 serial8250_ports[i].port.iobase == 0)
3138 return &serial8250_ports[i];
3139
3140 /*
3141 * That also failed. Last resort is to find any entry which
3142 * doesn't have a real port associated with it.
3143 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003144 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3146 return &serial8250_ports[i];
3147
3148 return NULL;
3149}
3150
3151/**
Magnus Dammf73fa052012-05-02 21:47:27 +09003152 * serial8250_register_8250_port - register a serial port
Randy Dunlap58bcd332012-06-08 18:51:23 -07003153 * @up: serial port template
Magnus Dammf73fa052012-05-02 21:47:27 +09003154 *
3155 * Configure the serial port specified by the request. If the
3156 * port exists and is in use, it is hung up and unregistered
3157 * first.
3158 *
3159 * The port is then probed and if necessary the IRQ is autodetected
3160 * If this fails an error is returned.
3161 *
3162 * On success the port is ready to use and the line number is returned.
3163 */
3164int serial8250_register_8250_port(struct uart_8250_port *up)
3165{
3166 struct uart_8250_port *uart;
3167 int ret = -ENOSPC;
3168
3169 if (up->port.uartclk == 0)
3170 return -EINVAL;
3171
3172 mutex_lock(&serial_mutex);
3173
3174 uart = serial8250_find_match_or_unused(&up->port);
Sean Young65ecc9c2012-09-07 19:06:24 +01003175 if (uart && uart->port.type != PORT_8250_CIR) {
Sean Young835d8442012-09-07 19:06:23 +01003176 if (uart->port.dev)
3177 uart_remove_one_port(&serial8250_reg, &uart->port);
Magnus Dammf73fa052012-05-02 21:47:27 +09003178
3179 uart->port.iobase = up->port.iobase;
3180 uart->port.membase = up->port.membase;
3181 uart->port.irq = up->port.irq;
3182 uart->port.irqflags = up->port.irqflags;
3183 uart->port.uartclk = up->port.uartclk;
3184 uart->port.fifosize = up->port.fifosize;
3185 uart->port.regshift = up->port.regshift;
3186 uart->port.iotype = up->port.iotype;
3187 uart->port.flags = up->port.flags | UPF_BOOT_AUTOCONF;
Alan Coxa2d33d82012-07-12 13:00:06 +01003188 uart->bugs = up->bugs;
Magnus Dammf73fa052012-05-02 21:47:27 +09003189 uart->port.mapbase = up->port.mapbase;
3190 uart->port.private_data = up->port.private_data;
Heikki Krogerus96604972013-01-10 11:25:05 +02003191 uart->port.fifosize = up->port.fifosize;
3192 uart->tx_loadsz = up->tx_loadsz;
3193 uart->capabilities = up->capabilities;
3194
Magnus Dammf73fa052012-05-02 21:47:27 +09003195 if (up->port.dev)
3196 uart->port.dev = up->port.dev;
3197
3198 if (up->port.flags & UPF_FIXED_TYPE)
3199 serial8250_init_fixed_type_port(uart, up->port.type);
3200
3201 set_io_from_upio(&uart->port);
3202 /* Possibly override default I/O functions. */
3203 if (up->port.serial_in)
3204 uart->port.serial_in = up->port.serial_in;
3205 if (up->port.serial_out)
3206 uart->port.serial_out = up->port.serial_out;
3207 if (up->port.handle_irq)
3208 uart->port.handle_irq = up->port.handle_irq;
3209 /* Possibly override set_termios call */
3210 if (up->port.set_termios)
3211 uart->port.set_termios = up->port.set_termios;
3212 if (up->port.pm)
3213 uart->port.pm = up->port.pm;
3214 if (up->port.handle_break)
3215 uart->port.handle_break = up->port.handle_break;
3216 if (up->dl_read)
3217 uart->dl_read = up->dl_read;
3218 if (up->dl_write)
3219 uart->dl_write = up->dl_write;
3220
3221 if (serial8250_isa_config != NULL)
3222 serial8250_isa_config(0, &uart->port,
3223 &uart->capabilities);
3224
3225 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3226 if (ret == 0)
3227 ret = uart->port.line;
3228 }
3229 mutex_unlock(&serial_mutex);
3230
3231 return ret;
3232}
3233EXPORT_SYMBOL(serial8250_register_8250_port);
3234
3235/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3237 * @line: serial line number
3238 *
3239 * Remove one serial port. This may not be called from interrupt
3240 * context. We hand the port back to the our control.
3241 */
3242void serial8250_unregister_port(int line)
3243{
3244 struct uart_8250_port *uart = &serial8250_ports[line];
3245
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003246 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 uart_remove_one_port(&serial8250_reg, &uart->port);
3248 if (serial8250_isa_devs) {
3249 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3250 uart->port.type = PORT_UNKNOWN;
3251 uart->port.dev = &serial8250_isa_devs->dev;
leitao@linux.vnet.ibm.comcb01ece2011-05-26 11:18:39 -03003252 uart->capabilities = uart_config[uart->port.type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 uart_add_one_port(&serial8250_reg, &uart->port);
3254 } else {
3255 uart->port.dev = NULL;
3256 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003257 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258}
3259EXPORT_SYMBOL(serial8250_unregister_port);
3260
3261static int __init serial8250_init(void)
3262{
Alan Cox25db8ad2008-08-19 20:49:40 -07003263 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Sean Young835d8442012-09-07 19:06:23 +01003265 serial8250_isa_init_ports();
Dave Jonesa61c2d72006-01-07 23:18:19 +00003266
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003267 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003268 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 share_irqs ? "en" : "dis");
3270
David Millerb70ac772008-10-13 10:36:31 +01003271#ifdef CONFIG_SPARC
3272 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3273#else
3274 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003276#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 if (ret)
3278 goto out;
3279
Sean Young835d8442012-09-07 19:06:23 +01003280 ret = serial8250_pnp_init();
3281 if (ret)
3282 goto unreg_uart_drv;
3283
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003284 serial8250_isa_devs = platform_device_alloc("serial8250",
3285 PLAT8250_DEV_LEGACY);
3286 if (!serial8250_isa_devs) {
3287 ret = -ENOMEM;
Sean Young835d8442012-09-07 19:06:23 +01003288 goto unreg_pnp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 }
3290
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003291 ret = platform_device_add(serial8250_isa_devs);
3292 if (ret)
3293 goto put_dev;
3294
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3296
Russell Kingbc965a72006-01-18 09:54:29 +00003297 ret = platform_driver_register(&serial8250_isa_driver);
3298 if (ret == 0)
3299 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Russell Kingbc965a72006-01-18 09:54:29 +00003301 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003302put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003303 platform_device_put(serial8250_isa_devs);
Sean Young835d8442012-09-07 19:06:23 +01003304unreg_pnp:
3305 serial8250_pnp_exit();
Alan Cox25db8ad2008-08-19 20:49:40 -07003306unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003307#ifdef CONFIG_SPARC
3308 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3309#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003311#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003312out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 return ret;
3314}
3315
3316static void __exit serial8250_exit(void)
3317{
3318 struct platform_device *isa_dev = serial8250_isa_devs;
3319
3320 /*
3321 * This tells serial8250_unregister_port() not to re-register
3322 * the ports (thereby making serial8250_isa_driver permanently
3323 * in use.)
3324 */
3325 serial8250_isa_devs = NULL;
3326
Russell King3ae5eae2005-11-09 22:32:44 +00003327 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 platform_device_unregister(isa_dev);
3329
Sean Young835d8442012-09-07 19:06:23 +01003330 serial8250_pnp_exit();
3331
David Millerb70ac772008-10-13 10:36:31 +01003332#ifdef CONFIG_SPARC
3333 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3334#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003336#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337}
3338
3339module_init(serial8250_init);
3340module_exit(serial8250_exit);
3341
3342EXPORT_SYMBOL(serial8250_suspend_port);
3343EXPORT_SYMBOL(serial8250_resume_port);
3344
3345MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003346MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348module_param(share_irqs, uint, 0644);
3349MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3350 " (unsafe)");
3351
Dave Jonesa61c2d72006-01-07 23:18:19 +00003352module_param(nr_uarts, uint, 0644);
3353MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3354
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003355module_param(skip_txen_test, uint, 0644);
3356MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3357
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358#ifdef CONFIG_SERIAL_8250_RSA
3359module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3360MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3361#endif
3362MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);