blob: c9ac4eabe35a7c76b6b4eb5ce50600be80e37885 [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 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700242 [PORT_RM9000] = {
243 .name = "RM9000",
244 .fifo_size = 16,
245 .tx_loadsz = 16,
246 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
247 .flags = UART_CAP_FIFO,
248 },
David Daney6b06f192009-01-02 13:50:00 +0000249 [PORT_OCTEON] = {
250 .name = "OCTEON",
251 .fifo_size = 64,
252 .tx_loadsz = 64,
253 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
254 .flags = UART_CAP_FIFO,
255 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100256 [PORT_AR7] = {
257 .name = "AR7",
258 .fifo_size = 16,
259 .tx_loadsz = 16,
260 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
261 .flags = UART_CAP_FIFO | UART_CAP_AFE,
262 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200263 [PORT_U6_16550A] = {
264 .name = "U6_16550A",
265 .fifo_size = 64,
266 .tx_loadsz = 64,
267 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
268 .flags = UART_CAP_FIFO | UART_CAP_AFE,
269 },
Stephen Warren4539c242011-05-17 16:12:36 -0600270 [PORT_TEGRA] = {
271 .name = "Tegra",
272 .fifo_size = 32,
273 .tx_loadsz = 8,
274 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
275 UART_FCR_T_TRIG_01,
276 .flags = UART_CAP_FIFO | UART_CAP_RTOIE,
277 },
Søren Holm06315342011-09-02 22:55:37 +0200278 [PORT_XR17D15X] = {
279 .name = "XR17D15X",
280 .fifo_size = 64,
281 .tx_loadsz = 64,
282 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
283 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR,
284 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200287#if defined(CONFIG_MIPS_ALCHEMY)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000288
289/* Au1x00 UART hardware has a weird register layout */
290static const u8 au_io_in_map[] = {
291 [UART_RX] = 0,
292 [UART_IER] = 2,
293 [UART_IIR] = 3,
294 [UART_LCR] = 5,
295 [UART_MCR] = 6,
296 [UART_LSR] = 7,
297 [UART_MSR] = 8,
298};
299
300static const u8 au_io_out_map[] = {
301 [UART_TX] = 1,
302 [UART_IER] = 2,
303 [UART_FCR] = 4,
304 [UART_LCR] = 5,
305 [UART_MCR] = 6,
306};
307
308/* sane hardware needs no mapping */
David Daney7d6a07d2009-01-02 13:49:47 +0000309static inline int map_8250_in_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000310{
David Daney7d6a07d2009-01-02 13:49:47 +0000311 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000312 return offset;
313 return au_io_in_map[offset];
314}
315
David Daney7d6a07d2009-01-02 13:49:47 +0000316static inline int map_8250_out_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000317{
David Daney7d6a07d2009-01-02 13:49:47 +0000318 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000319 return offset;
320 return au_io_out_map[offset];
321}
322
Alan Cox6f803cd2008-02-08 04:18:52 -0800323#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700324
325static const u8
326 regmap_in[8] = {
327 [UART_RX] = 0x00,
328 [UART_IER] = 0x0c,
329 [UART_IIR] = 0x14,
330 [UART_LCR] = 0x1c,
331 [UART_MCR] = 0x20,
332 [UART_LSR] = 0x24,
333 [UART_MSR] = 0x28,
334 [UART_SCR] = 0x2c
335 },
336 regmap_out[8] = {
337 [UART_TX] = 0x04,
338 [UART_IER] = 0x0c,
339 [UART_FCR] = 0x18,
340 [UART_LCR] = 0x1c,
341 [UART_MCR] = 0x20,
342 [UART_LSR] = 0x24,
343 [UART_MSR] = 0x28,
344 [UART_SCR] = 0x2c
345 };
346
David Daney7d6a07d2009-01-02 13:49:47 +0000347static inline int map_8250_in_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700348{
David Daney7d6a07d2009-01-02 13:49:47 +0000349 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700350 return offset;
351 return regmap_in[offset];
352}
353
David Daney7d6a07d2009-01-02 13:49:47 +0000354static inline int map_8250_out_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700355{
David Daney7d6a07d2009-01-02 13:49:47 +0000356 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700357 return offset;
358 return regmap_out[offset];
359}
360
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000361#else
362
363/* sane hardware needs no mapping */
364#define map_8250_in_reg(up, offset) (offset)
365#define map_8250_out_reg(up, offset) (offset)
366
367#endif
368
David Daney7d6a07d2009-01-02 13:49:47 +0000369static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
David Daney7d6a07d2009-01-02 13:49:47 +0000371 offset = map_8250_in_reg(p, offset) << p->regshift;
372 outb(p->hub6 - 1 + offset, p->iobase);
373 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
David Daney7d6a07d2009-01-02 13:49:47 +0000376static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
David Daney7d6a07d2009-01-02 13:49:47 +0000378 offset = map_8250_out_reg(p, offset) << p->regshift;
379 outb(p->hub6 - 1 + offset, p->iobase);
380 outb(value, p->iobase + 1);
381}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
David Daney7d6a07d2009-01-02 13:49:47 +0000383static unsigned int mem_serial_in(struct uart_port *p, int offset)
384{
385 offset = map_8250_in_reg(p, offset) << p->regshift;
386 return readb(p->membase + offset);
387}
388
389static void mem_serial_out(struct uart_port *p, int offset, int value)
390{
391 offset = map_8250_out_reg(p, offset) << p->regshift;
392 writeb(value, p->membase + offset);
393}
394
395static void mem32_serial_out(struct uart_port *p, int offset, int value)
396{
397 offset = map_8250_out_reg(p, offset) << p->regshift;
398 writel(value, p->membase + offset);
399}
400
401static unsigned int mem32_serial_in(struct uart_port *p, int offset)
402{
403 offset = map_8250_in_reg(p, offset) << p->regshift;
404 return readl(p->membase + offset);
405}
406
David Daney7d6a07d2009-01-02 13:49:47 +0000407static unsigned int au_serial_in(struct uart_port *p, int offset)
408{
409 offset = map_8250_in_reg(p, offset) << p->regshift;
410 return __raw_readl(p->membase + offset);
411}
412
413static void au_serial_out(struct uart_port *p, int offset, int value)
414{
415 offset = map_8250_out_reg(p, offset) << p->regshift;
416 __raw_writel(value, p->membase + offset);
417}
David Daney7d6a07d2009-01-02 13:49:47 +0000418
David Daney7d6a07d2009-01-02 13:49:47 +0000419static unsigned int io_serial_in(struct uart_port *p, int offset)
420{
421 offset = map_8250_in_reg(p, offset) << p->regshift;
422 return inb(p->iobase + offset);
423}
424
425static void io_serial_out(struct uart_port *p, int offset, int value)
426{
427 offset = map_8250_out_reg(p, offset) << p->regshift;
428 outb(value, p->iobase + offset);
429}
430
Jamie Iles583d28e2011-08-15 10:17:52 +0100431static int serial8250_default_handle_irq(struct uart_port *port);
432
David Daney7d6a07d2009-01-02 13:49:47 +0000433static void set_io_from_upio(struct uart_port *p)
434{
Jamie Iles49d57412010-12-01 23:39:35 +0000435 struct uart_8250_port *up =
436 container_of(p, struct uart_8250_port, port);
David Daney7d6a07d2009-01-02 13:49:47 +0000437 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000439 p->serial_in = hub6_serial_in;
440 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 break;
442
443 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000444 p->serial_in = mem_serial_in;
445 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 break;
447
Thomas Koellerbd71c182007-05-06 14:48:47 -0700448 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000450 p->serial_in = mem32_serial_in;
451 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 break;
453
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000454 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000455 p->serial_in = au_serial_in;
456 p->serial_out = au_serial_out;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000457 break;
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000460 p->serial_in = io_serial_in;
461 p->serial_out = io_serial_out;
462 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100464 /* Remember loaded iotype */
465 up->cur_iotype = p->iotype;
Jamie Iles583d28e2011-08-15 10:17:52 +0100466 p->handle_irq = serial8250_default_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Alex Williamson40b36da2007-02-14 00:33:04 -0800469static void
Paul Gortmaker55e40162012-03-08 19:12:14 -0500470serial_port_out_sync(struct uart_port *p, int offset, int value)
Alex Williamson40b36da2007-02-14 00:33:04 -0800471{
David Daney7d6a07d2009-01-02 13:49:47 +0000472 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800473 case UPIO_MEM:
474 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800475 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000476 p->serial_out(p, offset, value);
477 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800478 break;
479 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000480 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800481 }
482}
483
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100484/* Uart divisor latch read */
485static inline int _serial_dl_read(struct uart_8250_port *up)
486{
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500487 return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8;
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100488}
489
490/* Uart divisor latch write */
491static inline void _serial_dl_write(struct uart_8250_port *up, int value)
492{
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500493 serial_out(up, UART_DLL, value & 0xff);
494 serial_out(up, UART_DLM, value >> 8 & 0xff);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100495}
496
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200497#if defined(CONFIG_MIPS_ALCHEMY)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100498/* Au1x00 haven't got a standard divisor latch */
499static int serial_dl_read(struct uart_8250_port *up)
500{
501 if (up->port.iotype == UPIO_AU)
502 return __raw_readl(up->port.membase + 0x28);
503 else
504 return _serial_dl_read(up);
505}
506
507static void serial_dl_write(struct uart_8250_port *up, int value)
508{
509 if (up->port.iotype == UPIO_AU)
510 __raw_writel(value, up->port.membase + 0x28);
511 else
512 _serial_dl_write(up, value);
513}
Alan Cox6f803cd2008-02-08 04:18:52 -0800514#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700515static int serial_dl_read(struct uart_8250_port *up)
516{
517 return (up->port.iotype == UPIO_RM9000) ?
518 (((__raw_readl(up->port.membase + 0x10) << 8) |
519 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
520 _serial_dl_read(up);
521}
522
523static void serial_dl_write(struct uart_8250_port *up, int value)
524{
525 if (up->port.iotype == UPIO_RM9000) {
526 __raw_writel(value, up->port.membase + 0x08);
527 __raw_writel(value >> 8, up->port.membase + 0x10);
528 } else {
529 _serial_dl_write(up, value);
530 }
531}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100532#else
533#define serial_dl_read(up) _serial_dl_read(up)
534#define serial_dl_write(up, value) _serial_dl_write(up, value)
535#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537/*
538 * For the 16C950
539 */
540static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
541{
542 serial_out(up, UART_SCR, offset);
543 serial_out(up, UART_ICR, value);
544}
545
546static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
547{
548 unsigned int value;
549
550 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
551 serial_out(up, UART_SCR, offset);
552 value = serial_in(up, UART_ICR);
553 serial_icr_write(up, UART_ACR, up->acr);
554
555 return value;
556}
557
558/*
559 * FIFO support.
560 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100561static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 if (p->capabilities & UART_CAP_FIFO) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500564 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO);
565 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500567 serial_out(p, UART_FCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569}
570
Sudhakar Mamillapalli0ad372b2012-04-10 14:10:58 -0700571void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p)
572{
573 unsigned char fcr;
574
575 serial8250_clear_fifos(p);
576 fcr = uart_config[p->port.type].fcr;
577 serial_out(p, UART_FCR, fcr);
578}
579EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
582 * IER sleep support. UARTs which have EFRs need the "extended
583 * capability" bit enabled. Note that on XR16C850s, we need to
584 * reset LCR to write to IER.
585 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100586static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 if (p->capabilities & UART_CAP_SLEEP) {
589 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500590 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
591 serial_out(p, UART_EFR, UART_EFR_ECB);
592 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500594 serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500596 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
597 serial_out(p, UART_EFR, 0);
598 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600 }
601}
602
603#ifdef CONFIG_SERIAL_8250_RSA
604/*
605 * Attempts to turn on the RSA FIFO. Returns zero on failure.
606 * We set the port uart clock rate if we succeed.
607 */
608static int __enable_rsa(struct uart_8250_port *up)
609{
610 unsigned char mode;
611 int result;
612
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500613 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 result = mode & UART_RSA_MSR_FIFO;
615
616 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500617 serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
618 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 result = mode & UART_RSA_MSR_FIFO;
620 }
621
622 if (result)
623 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
624
625 return result;
626}
627
628static void enable_rsa(struct uart_8250_port *up)
629{
630 if (up->port.type == PORT_RSA) {
631 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
632 spin_lock_irq(&up->port.lock);
633 __enable_rsa(up);
634 spin_unlock_irq(&up->port.lock);
635 }
636 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500637 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639}
640
641/*
642 * Attempts to turn off the RSA FIFO. Returns zero on failure.
643 * It is unknown why interrupts were disabled in here. However,
644 * the caller is expected to preserve this behaviour by grabbing
645 * the spinlock before calling this function.
646 */
647static void disable_rsa(struct uart_8250_port *up)
648{
649 unsigned char mode;
650 int result;
651
652 if (up->port.type == PORT_RSA &&
653 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
654 spin_lock_irq(&up->port.lock);
655
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500656 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 result = !(mode & UART_RSA_MSR_FIFO);
658
659 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500660 serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
661 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 result = !(mode & UART_RSA_MSR_FIFO);
663 }
664
665 if (result)
666 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
667 spin_unlock_irq(&up->port.lock);
668 }
669}
670#endif /* CONFIG_SERIAL_8250_RSA */
671
672/*
673 * This is a quickie test to see how big the FIFO is.
674 * It doesn't work at all the time, more's the pity.
675 */
676static int size_fifo(struct uart_8250_port *up)
677{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100678 unsigned char old_fcr, old_mcr, old_lcr;
679 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 int count;
681
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500682 old_lcr = serial_in(up, UART_LCR);
683 serial_out(up, UART_LCR, 0);
684 old_fcr = serial_in(up, UART_FCR);
685 old_mcr = serial_in(up, UART_MCR);
686 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500688 serial_out(up, UART_MCR, UART_MCR_LOOP);
689 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100690 old_dl = serial_dl_read(up);
691 serial_dl_write(up, 0x0001);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500692 serial_out(up, UART_LCR, 0x03);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 for (count = 0; count < 256; count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500694 serial_out(up, UART_TX, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 mdelay(20);/* FIXME - schedule_timeout */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500696 for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 (count < 256); count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500698 serial_in(up, UART_RX);
699 serial_out(up, UART_FCR, old_fcr);
700 serial_out(up, UART_MCR, old_mcr);
701 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100702 serial_dl_write(up, old_dl);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500703 serial_out(up, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 return count;
706}
707
708/*
709 * Read UART ID using the divisor method - set DLL and DLM to zero
710 * and the revision will be in DLL and device type in DLM. We
711 * preserve the device state across this.
712 */
713static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
714{
715 unsigned char old_dll, old_dlm, old_lcr;
716 unsigned int id;
717
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500718 old_lcr = serial_in(p, UART_LCR);
719 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500721 old_dll = serial_in(p, UART_DLL);
722 old_dlm = serial_in(p, UART_DLM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500724 serial_out(p, UART_DLL, 0);
725 serial_out(p, UART_DLM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500727 id = serial_in(p, UART_DLL) | serial_in(p, UART_DLM) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500729 serial_out(p, UART_DLL, old_dll);
730 serial_out(p, UART_DLM, old_dlm);
731 serial_out(p, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 return id;
734}
735
736/*
737 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
738 * When this function is called we know it is at least a StarTech
739 * 16650 V2, but it might be one of several StarTech UARTs, or one of
740 * its clones. (We treat the broken original StarTech 16650 V1 as a
741 * 16550, and why not? Startech doesn't seem to even acknowledge its
742 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700743 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 * What evil have men's minds wrought...
745 */
746static void autoconfig_has_efr(struct uart_8250_port *up)
747{
748 unsigned int id1, id2, id3, rev;
749
750 /*
751 * Everything with an EFR has SLEEP
752 */
753 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
754
755 /*
756 * First we check to see if it's an Oxford Semiconductor UART.
757 *
758 * If we have to do this here because some non-National
759 * Semiconductor clone chips lock up if you try writing to the
760 * LSR register (which serial_icr_read does)
761 */
762
763 /*
764 * Check for Oxford Semiconductor 16C950.
765 *
766 * EFR [4] must be set else this test fails.
767 *
768 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
769 * claims that it's needed for 952 dual UART's (which are not
770 * recommended for new designs).
771 */
772 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800773 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 serial_out(up, UART_EFR, UART_EFR_ECB);
775 serial_out(up, UART_LCR, 0x00);
776 id1 = serial_icr_read(up, UART_ID1);
777 id2 = serial_icr_read(up, UART_ID2);
778 id3 = serial_icr_read(up, UART_ID3);
779 rev = serial_icr_read(up, UART_REV);
780
781 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
782
783 if (id1 == 0x16 && id2 == 0xC9 &&
784 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
785 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100786
787 /*
788 * Enable work around for the Oxford Semiconductor 952 rev B
789 * chip which causes it to seriously miscalculate baud rates
790 * when DLL is 0.
791 */
792 if (id3 == 0x52 && rev == 0x01)
793 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return;
795 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 /*
798 * We check for a XR16C850 by setting DLL and DLM to 0, and then
799 * reading back DLL and DLM. The chip type depends on the DLM
800 * value read back:
801 * 0x10 - XR16C850 and the DLL contains the chip revision.
802 * 0x12 - XR16C2850.
803 * 0x14 - XR16C854.
804 */
805 id1 = autoconfig_read_divisor_id(up);
806 DEBUG_AUTOCONF("850id=%04x ", id1);
807
808 id2 = id1 >> 8;
809 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 up->port.type = PORT_16850;
811 return;
812 }
813
814 /*
815 * It wasn't an XR16C850.
816 *
817 * We distinguish between the '654 and the '650 by counting
818 * how many bytes are in the FIFO. I'm using this for now,
819 * since that's the technique that was sent to me in the
820 * serial driver update, but I'm not convinced this works.
821 * I've had problems doing this in the past. -TYT
822 */
823 if (size_fifo(up) == 64)
824 up->port.type = PORT_16654;
825 else
826 up->port.type = PORT_16650V2;
827}
828
829/*
830 * We detected a chip without a FIFO. Only two fall into
831 * this category - the original 8250 and the 16450. The
832 * 16450 has a scratch register (accessible with LCR=0)
833 */
834static void autoconfig_8250(struct uart_8250_port *up)
835{
836 unsigned char scratch, status1, status2;
837
838 up->port.type = PORT_8250;
839
840 scratch = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500841 serial_out(up, UART_SCR, 0xa5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 status1 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500843 serial_out(up, UART_SCR, 0x5a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 status2 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500845 serial_out(up, UART_SCR, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 if (status1 == 0xa5 && status2 == 0x5a)
848 up->port.type = PORT_16450;
849}
850
851static int broken_efr(struct uart_8250_port *up)
852{
853 /*
854 * Exar ST16C2550 "A2" devices incorrectly detect as
855 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200856 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 */
858 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
859 return 1;
860
861 return 0;
862}
863
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800864static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
865{
866 unsigned char status;
867
868 status = serial_in(up, 0x04); /* EXCR2 */
869#define PRESL(x) ((x) & 0x30)
870 if (PRESL(status) == 0x10) {
871 /* already in high speed mode */
872 return 0;
873 } else {
874 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
875 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500876 serial_out(up, 0x04, status);
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800877 }
878 return 1;
879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/*
882 * We know that the chip has FIFOs. Does it have an EFR? The
883 * EFR is located in the same register position as the IIR and
884 * we know the top two bits of the IIR are currently set. The
885 * EFR should contain zero. Try to read the EFR.
886 */
887static void autoconfig_16550a(struct uart_8250_port *up)
888{
889 unsigned char status1, status2;
890 unsigned int iersave;
891
892 up->port.type = PORT_16550A;
893 up->capabilities |= UART_CAP_FIFO;
894
895 /*
896 * Check for presence of the EFR when DLAB is set.
897 * Only ST16C650V1 UARTs pass this test.
898 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500899 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (serial_in(up, UART_EFR) == 0) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500901 serial_out(up, UART_EFR, 0xA8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (serial_in(up, UART_EFR) != 0) {
903 DEBUG_AUTOCONF("EFRv1 ");
904 up->port.type = PORT_16650;
905 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
906 } else {
907 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
908 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500909 serial_out(up, UART_EFR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return;
911 }
912
913 /*
914 * Maybe it requires 0xbf to be written to the LCR.
915 * (other ST16C650V2 UARTs, TI16C752A, etc)
916 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500917 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
919 DEBUG_AUTOCONF("EFRv2 ");
920 autoconfig_has_efr(up);
921 return;
922 }
923
924 /*
925 * Check for a National Semiconductor SuperIO chip.
926 * Attempt to switch to bank 2, read the value of the LOOP bit
927 * from EXCR1. Switch back to bank 0, change it in MCR. Then
928 * switch back to bank 2, read it from EXCR1 again and check
929 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500931 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 status1 = serial_in(up, UART_MCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500933 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 status2 = serial_in(up, 0x02); /* EXCR1 */
935
936 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500937 serial_out(up, UART_LCR, 0);
938 serial_out(up, UART_MCR, status1 ^ UART_MCR_LOOP);
939 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 status2 = serial_in(up, 0x02); /* EXCR1 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500941 serial_out(up, UART_LCR, 0);
942 serial_out(up, UART_MCR, status1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100945 unsigned short quot;
946
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500947 serial_out(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100948
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100949 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +0100950 quot <<= 3;
951
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800952 if (ns16550a_goto_highspeed(up))
953 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500955 serial_out(up, UART_LCR, 0);
David Woodhouse857dde22005-05-21 15:52:23 +0100956
957 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 up->port.type = PORT_NS16550A;
959 up->capabilities |= UART_NATSEMI;
960 return;
961 }
962 }
963
964 /*
965 * No EFR. Try to detect a TI16750, which only sets bit 5 of
966 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
967 * Try setting it with and without DLAB set. Cheap clones
968 * set bit 5 without DLAB set.
969 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500970 serial_out(up, UART_LCR, 0);
971 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 status1 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500973 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
974 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
975 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 status2 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500977 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
978 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
981
982 if (status1 == 6 && status2 == 7) {
983 up->port.type = PORT_16750;
984 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
985 return;
986 }
987
988 /*
989 * Try writing and reading the UART_IER_UUE bit (b6).
990 * If it works, this is probably one of the Xscale platform's
991 * internal UARTs.
992 * We're going to explicitly set the UUE bit to 0 before
993 * trying to write and read a 1 just to make sure it's not
994 * already a 1 and maybe locked there before we even start start.
995 */
996 iersave = serial_in(up, UART_IER);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500997 serial_out(up, UART_IER, iersave & ~UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
999 /*
1000 * OK it's in a known zero state, try writing and reading
1001 * without disturbing the current state of the other bits.
1002 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001003 serial_out(up, UART_IER, iersave | UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1005 /*
1006 * It's an Xscale.
1007 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1008 */
1009 DEBUG_AUTOCONF("Xscale ");
1010 up->port.type = PORT_XSCALE;
Stephen Warren55681812011-06-17 09:45:07 -06001011 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return;
1013 }
1014 } else {
1015 /*
1016 * If we got here we couldn't force the IER_UUE bit to 0.
1017 * Log it and continue.
1018 */
1019 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1020 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001021 serial_out(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001022
1023 /*
Søren Holm06315342011-09-02 22:55:37 +02001024 * Exar uarts have EFR in a weird location
1025 */
1026 if (up->port.flags & UPF_EXAR_EFR) {
1027 up->port.type = PORT_XR17D15X;
1028 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR;
1029 }
1030
1031 /*
Philippe Langlais235dae52010-07-29 17:13:57 +02001032 * We distinguish between 16550A and U6 16550A by counting
1033 * how many bytes are in the FIFO.
1034 */
1035 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1036 up->port.type = PORT_U6_16550A;
1037 up->capabilities |= UART_CAP_AFE;
1038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
1041/*
1042 * This routine is called by rs_init() to initialize a specific serial
1043 * port. It determines what type of UART chip this serial port is
1044 * using: 8250, 16450, 16550, 16550A. The important question is
1045 * whether or not this UART is a 16550A or not, since this will
1046 * determine whether or not we can use its FIFO features or not.
1047 */
1048static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1049{
1050 unsigned char status1, scratch, scratch2, scratch3;
1051 unsigned char save_lcr, save_mcr;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001052 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 unsigned long flags;
1054
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001055 if (!port->iobase && !port->mapbase && !port->membase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return;
1057
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001058 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001059 serial_index(port), port->iobase, port->membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 /*
1062 * We really do need global IRQs disabled here - we're going to
1063 * be frobbing the chips IRQ enable register to see if it exists.
1064 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001065 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001068 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001070 if (!(port->flags & UPF_BUGGY_UART)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /*
1072 * Do a simple existence test first; if we fail this,
1073 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001074 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 * 0x80 is used as a nonsense port to prevent against
1076 * false positives due to ISA bus float. The
1077 * assumption is that 0x80 is a non-existent port;
1078 * which should be safe since include/asm/io.h also
1079 * makes this assumption.
1080 *
1081 * Note: this is safe as long as MCR bit 4 is clear
1082 * and the device is in "PC" mode.
1083 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001084 scratch = serial_in(up, UART_IER);
1085 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086#ifdef __i386__
1087 outb(0xff, 0x080);
1088#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001089 /*
1090 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1091 * 16C754B) allow only to modify them if an EFR bit is set.
1092 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001093 scratch2 = serial_in(up, UART_IER) & 0x0f;
1094 serial_out(up, UART_IER, 0x0F);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095#ifdef __i386__
1096 outb(0, 0x080);
1097#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001098 scratch3 = serial_in(up, UART_IER) & 0x0f;
1099 serial_out(up, UART_IER, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (scratch2 != 0 || scratch3 != 0x0F) {
1101 /*
1102 * We failed; there's nothing here
1103 */
1104 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1105 scratch2, scratch3);
1106 goto out;
1107 }
1108 }
1109
1110 save_mcr = serial_in(up, UART_MCR);
1111 save_lcr = serial_in(up, UART_LCR);
1112
Thomas Koellerbd71c182007-05-06 14:48:47 -07001113 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 * Check to see if a UART is really there. Certain broken
1115 * internal modems based on the Rockwell chipset fail this
1116 * test, because they apparently don't implement the loopback
1117 * test mode. So this test is skipped on the COM 1 through
1118 * COM 4 ports. This *should* be safe, since no board
1119 * manufacturer would be stupid enough to design a board
1120 * that conflicts with COM 1-4 --- we hope!
1121 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001122 if (!(port->flags & UPF_SKIP_TEST)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001123 serial_out(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1124 status1 = serial_in(up, UART_MSR) & 0xF0;
1125 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (status1 != 0x90) {
1127 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1128 status1);
1129 goto out;
1130 }
1131 }
1132
1133 /*
1134 * We're pretty sure there's a port here. Lets find out what
1135 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001136 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 * determines what we test for next.
1138 *
1139 * We also initialise the EFR (if any) to zero for later. The
1140 * EFR occupies the same register location as the FCR and IIR.
1141 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001142 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1143 serial_out(up, UART_EFR, 0);
1144 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001146 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 scratch = serial_in(up, UART_IIR) >> 6;
1148
1149 DEBUG_AUTOCONF("iir=%d ", scratch);
1150
1151 switch (scratch) {
1152 case 0:
1153 autoconfig_8250(up);
1154 break;
1155 case 1:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001156 port->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 break;
1158 case 2:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001159 port->type = PORT_16550;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 break;
1161 case 3:
1162 autoconfig_16550a(up);
1163 break;
1164 }
1165
1166#ifdef CONFIG_SERIAL_8250_RSA
1167 /*
1168 * Only probe for RSA ports if we got the region.
1169 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001170 if (port->type == PORT_16550A && probeflags & PROBE_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 int i;
1172
1173 for (i = 0 ; i < probe_rsa_count; ++i) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001174 if (probe_rsa[i] == port->iobase && __enable_rsa(up)) {
1175 port->type = PORT_RSA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 break;
1177 }
1178 }
1179 }
1180#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001181
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001182 serial_out(up, UART_LCR, save_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001184 if (up->capabilities != uart_config[port->type].flags) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 printk(KERN_WARNING
1186 "ttyS%d: detected caps %08x should be %08x\n",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001187 serial_index(port), up->capabilities,
1188 uart_config[port->type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001191 port->fifosize = uart_config[up->port.type].fifo_size;
1192 up->capabilities = uart_config[port->type].flags;
1193 up->tx_loadsz = uart_config[port->type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001195 if (port->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 goto out;
1197
1198 /*
1199 * Reset the UART.
1200 */
1201#ifdef CONFIG_SERIAL_8250_RSA
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001202 if (port->type == PORT_RSA)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001203 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001205 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001207 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001208 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001209 serial_out(up, UART_IER, UART_IER_UUE);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001210 else
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001211 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Thomas Koellerbd71c182007-05-06 14:48:47 -07001213 out:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001214 spin_unlock_irqrestore(&port->lock, flags);
1215 DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
1218static void autoconfig_irq(struct uart_8250_port *up)
1219{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001220 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 unsigned char save_mcr, save_ier;
1222 unsigned char save_ICP = 0;
1223 unsigned int ICP = 0;
1224 unsigned long irqs;
1225 int irq;
1226
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001227 if (port->flags & UPF_FOURPORT) {
1228 ICP = (port->iobase & 0xfe0) | 0x1f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 save_ICP = inb_p(ICP);
1230 outb_p(0x80, ICP);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001231 inb_p(ICP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233
1234 /* forget possible initially masked and pending IRQ */
1235 probe_irq_off(probe_irq_on());
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001236 save_mcr = serial_in(up, UART_MCR);
1237 save_ier = serial_in(up, UART_IER);
1238 serial_out(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 irqs = probe_irq_on();
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001241 serial_out(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001242 udelay(10);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001243 if (port->flags & UPF_FOURPORT) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001244 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 UART_MCR_DTR | UART_MCR_RTS);
1246 } else {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001247 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1249 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001250 serial_out(up, UART_IER, 0x0f); /* enable all intrs */
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001251 serial_in(up, UART_LSR);
1252 serial_in(up, UART_RX);
1253 serial_in(up, UART_IIR);
1254 serial_in(up, UART_MSR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001255 serial_out(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001256 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 irq = probe_irq_off(irqs);
1258
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001259 serial_out(up, UART_MCR, save_mcr);
1260 serial_out(up, UART_IER, save_ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001262 if (port->flags & UPF_FOURPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 outb_p(save_ICP, ICP);
1264
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001265 port->irq = (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
Russell Kinge763b902005-06-29 18:41:51 +01001268static inline void __stop_tx(struct uart_8250_port *p)
1269{
1270 if (p->ier & UART_IER_THRI) {
1271 p->ier &= ~UART_IER_THRI;
1272 serial_out(p, UART_IER, p->ier);
1273 }
1274}
1275
Russell Kingb129a8c2005-08-31 10:12:14 +01001276static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Jamie Iles49d57412010-12-01 23:39:35 +00001278 struct uart_8250_port *up =
1279 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Russell Kinge763b902005-06-29 18:41:51 +01001281 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 /*
Russell Kinge763b902005-06-29 18:41:51 +01001284 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001286 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 up->acr |= UART_ACR_TXDIS;
1288 serial_icr_write(up, UART_ACR, up->acr);
1289 }
1290}
1291
Russell Kingb129a8c2005-08-31 10:12:14 +01001292static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Jamie Iles49d57412010-12-01 23:39:35 +00001294 struct uart_8250_port *up =
1295 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 if (!(up->ier & UART_IER_THRI)) {
1298 up->ier |= UART_IER_THRI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001299 serial_port_out(port, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001300
Russell King67f76542005-06-23 22:26:43 +01001301 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001302 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001303 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001304 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001305 if ((port->type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001306 (lsr & UART_LSR_THRE) :
1307 (lsr & UART_LSR_TEMT))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001308 serial8250_tx_chars(up);
Russell King55d3b282005-06-23 15:05:41 +01001309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
Russell Kinge763b902005-06-29 18:41:51 +01001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 /*
Russell Kinge763b902005-06-29 18:41:51 +01001313 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001315 if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 up->acr &= ~UART_ACR_TXDIS;
1317 serial_icr_write(up, UART_ACR, up->acr);
1318 }
1319}
1320
1321static void serial8250_stop_rx(struct uart_port *port)
1322{
Jamie Iles49d57412010-12-01 23:39:35 +00001323 struct uart_8250_port *up =
1324 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 up->ier &= ~UART_IER_RLSI;
1327 up->port.read_status_mask &= ~UART_LSR_DR;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001328 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
1331static void serial8250_enable_ms(struct uart_port *port)
1332{
Jamie Iles49d57412010-12-01 23:39:35 +00001333 struct uart_8250_port *up =
1334 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001336 /* no MSR capabilities */
1337 if (up->bugs & UART_BUG_NOMSR)
1338 return;
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 up->ier |= UART_IER_MSI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001341 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
Stephen Warren5f873ba2011-05-17 16:12:37 -06001344/*
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001345 * serial8250_rx_chars: processes according to the passed in LSR
Paul Gortmaker0690f412011-12-04 18:42:19 -05001346 * value, and returns the remaining LSR bits not handled
1347 * by this Rx routine.
1348 */
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001349unsigned char
1350serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001352 struct uart_port *port = &up->port;
1353 struct tty_struct *tty = port->state->port.tty;
Paul Gortmaker0690f412011-12-04 18:42:19 -05001354 unsigned char ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 int max_count = 256;
1356 char flag;
1357
1358 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001359 if (likely(lsr & UART_LSR_DR))
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001360 ch = serial_in(up, UART_RX);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001361 else
1362 /*
1363 * Intel 82571 has a Serial Over Lan device that will
1364 * set UART_LSR_BI without setting UART_LSR_DR when
1365 * it receives a break. To avoid reading from the
1366 * receive buffer without UART_LSR_DR bit set, we
1367 * just force the read character to be 0
1368 */
1369 ch = 0;
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 flag = TTY_NORMAL;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001372 port->icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001374 lsr |= up->lsr_saved_flags;
1375 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001377 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (lsr & UART_LSR_BI) {
1379 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001380 port->icount.brk++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 /*
1382 * We do the SysRQ and SAK checking
1383 * here because otherwise the break
1384 * may get masked by ignore_status_mask
1385 * or read_status_mask.
1386 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001387 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 goto ignore_char;
1389 } else if (lsr & UART_LSR_PE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001390 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 else if (lsr & UART_LSR_FE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001392 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 if (lsr & UART_LSR_OE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001394 port->icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 /*
Russell King23907eb2005-04-16 15:26:39 -07001397 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001399 lsr &= port->read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 if (lsr & UART_LSR_BI) {
1402 DEBUG_INTR("handling break....");
1403 flag = TTY_BREAK;
1404 } else if (lsr & UART_LSR_PE)
1405 flag = TTY_PARITY;
1406 else if (lsr & UART_LSR_FE)
1407 flag = TTY_FRAME;
1408 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001409 if (uart_handle_sysrq_char(port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001411
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001412 uart_insert_char(port, lsr, UART_LSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +01001413
Alan Cox6f803cd2008-02-08 04:18:52 -08001414ignore_char:
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001415 lsr = serial_in(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001416 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001417 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 tty_flip_buffer_push(tty);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001419 spin_lock(&port->lock);
Paul Gortmaker0690f412011-12-04 18:42:19 -05001420 return lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001422EXPORT_SYMBOL_GPL(serial8250_rx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001424void serial8250_tx_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001426 struct uart_port *port = &up->port;
1427 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 int count;
1429
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001430 if (port->x_char) {
1431 serial_out(up, UART_TX, port->x_char);
1432 port->icount.tx++;
1433 port->x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return;
1435 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001436 if (uart_tx_stopped(port)) {
1437 serial8250_stop_tx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +01001438 return;
1439 }
1440 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001441 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return;
1443 }
1444
1445 count = up->tx_loadsz;
1446 do {
1447 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1448 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001449 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 if (uart_circ_empty(xmit))
1451 break;
1452 } while (--count > 0);
1453
1454 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001455 uart_write_wakeup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 DEBUG_INTR("THRE...");
1458
1459 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001460 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001462EXPORT_SYMBOL_GPL(serial8250_tx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001464unsigned int serial8250_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001466 struct uart_port *port = &up->port;
Russell King2af7cd62006-01-04 16:55:09 +00001467 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001469 status |= up->msr_saved_flags;
1470 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001471 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001472 port->state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001473 if (status & UART_MSR_TERI)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001474 port->icount.rng++;
Russell King2af7cd62006-01-04 16:55:09 +00001475 if (status & UART_MSR_DDSR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001476 port->icount.dsr++;
Russell King2af7cd62006-01-04 16:55:09 +00001477 if (status & UART_MSR_DDCD)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001478 uart_handle_dcd_change(port, status & UART_MSR_DCD);
Russell King2af7cd62006-01-04 16:55:09 +00001479 if (status & UART_MSR_DCTS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001480 uart_handle_cts_change(port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001482 wake_up_interruptible(&port->state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Russell King2af7cd62006-01-04 16:55:09 +00001485 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001487EXPORT_SYMBOL_GPL(serial8250_modem_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489/*
1490 * This handles the interrupt from one port.
1491 */
Paul Gortmaker86b21192011-12-04 18:42:22 -05001492int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Paul Gortmaker0690f412011-12-04 18:42:19 -05001494 unsigned char status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001495 unsigned long flags;
Paul Gortmaker86b21192011-12-04 18:42:22 -05001496 struct uart_8250_port *up =
1497 container_of(port, struct uart_8250_port, port);
1498
1499 if (iir & UART_IIR_NO_INT)
1500 return 0;
Russell King45e24602006-01-04 19:19:06 +00001501
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001502 spin_lock_irqsave(&port->lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001503
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001504 status = serial_port_in(port, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 DEBUG_INTR("status = %x...", status);
1507
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001508 if (status & (UART_LSR_DR | UART_LSR_BI))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001509 status = serial8250_rx_chars(up, status);
1510 serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (status & UART_LSR_THRE)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001512 serial8250_tx_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001513
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001514 spin_unlock_irqrestore(&port->lock, flags);
Paul Gortmaker86b21192011-12-04 18:42:22 -05001515 return 1;
Jamie Iles583d28e2011-08-15 10:17:52 +01001516}
Jamie Ilesc7a1bdc2011-08-26 19:04:49 +01001517EXPORT_SYMBOL_GPL(serial8250_handle_irq);
Jamie Iles583d28e2011-08-15 10:17:52 +01001518
1519static int serial8250_default_handle_irq(struct uart_port *port)
1520{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001521 unsigned int iir = serial_port_in(port, UART_IIR);
Jamie Iles583d28e2011-08-15 10:17:52 +01001522
1523 return serial8250_handle_irq(port, iir);
1524}
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526/*
1527 * This is the serial driver's interrupt routine.
1528 *
1529 * Arjan thinks the old way was overly complex, so it got simplified.
1530 * Alan disagrees, saying that need the complexity to handle the weird
1531 * nature of ISA shared interrupts. (This is a special exception.)
1532 *
1533 * In order to handle ISA shared interrupts properly, we need to check
1534 * that all ports have been serviced, and therefore the ISA interrupt
1535 * line has been de-asserted.
1536 *
1537 * This means we need to loop through all ports. checking that they
1538 * don't have an interrupt pending.
1539 */
David Howells7d12e782006-10-05 14:55:46 +01001540static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 struct irq_info *i = dev_id;
1543 struct list_head *l, *end = NULL;
1544 int pass_counter = 0, handled = 0;
1545
1546 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1547
1548 spin_lock(&i->lock);
1549
1550 l = i->head;
1551 do {
1552 struct uart_8250_port *up;
Jamie Iles583d28e2011-08-15 10:17:52 +01001553 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555 up = list_entry(l, struct uart_8250_port, list);
Jamie Iles583d28e2011-08-15 10:17:52 +01001556 port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Dan Williams49b532f2012-04-06 11:49:44 -07001558 if (port->handle_irq(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 handled = 1;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001560 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 } else if (end == NULL)
1562 end = l;
1563
1564 l = l->next;
1565
1566 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1567 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001568 printk_ratelimited(KERN_ERR
1569 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 break;
1571 }
1572 } while (l != end);
1573
1574 spin_unlock(&i->lock);
1575
1576 DEBUG_INTR("end.\n");
1577
1578 return IRQ_RETVAL(handled);
1579}
1580
1581/*
1582 * To support ISA shared interrupts, we need to have one interrupt
1583 * handler that ensures that the IRQ line has been deasserted
1584 * before returning. Failing to do this will result in the IRQ
1585 * line being stuck active, and, since ISA irqs are edge triggered,
1586 * no more IRQs will be seen.
1587 */
1588static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1589{
1590 spin_lock_irq(&i->lock);
1591
1592 if (!list_empty(i->head)) {
1593 if (i->head == &up->list)
1594 i->head = i->head->next;
1595 list_del(&up->list);
1596 } else {
1597 BUG_ON(i->head != &up->list);
1598 i->head = NULL;
1599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001601 /* List empty so throw away the hash node */
1602 if (i->head == NULL) {
1603 hlist_del(&i->node);
1604 kfree(i);
1605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
1608static int serial_link_irq_chain(struct uart_8250_port *up)
1609{
Alan Cox25db8ad2008-08-19 20:49:40 -07001610 struct hlist_head *h;
1611 struct hlist_node *n;
1612 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001613 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Alan Cox25db8ad2008-08-19 20:49:40 -07001615 mutex_lock(&hash_mutex);
1616
1617 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1618
1619 hlist_for_each(n, h) {
1620 i = hlist_entry(n, struct irq_info, node);
1621 if (i->irq == up->port.irq)
1622 break;
1623 }
1624
1625 if (n == NULL) {
1626 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1627 if (i == NULL) {
1628 mutex_unlock(&hash_mutex);
1629 return -ENOMEM;
1630 }
1631 spin_lock_init(&i->lock);
1632 i->irq = up->port.irq;
1633 hlist_add_head(&i->node, h);
1634 }
1635 mutex_unlock(&hash_mutex);
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 spin_lock_irq(&i->lock);
1638
1639 if (i->head) {
1640 list_add(&up->list, i->head);
1641 spin_unlock_irq(&i->lock);
1642
1643 ret = 0;
1644 } else {
1645 INIT_LIST_HEAD(&up->list);
1646 i->head = &up->list;
1647 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001648 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 ret = request_irq(up->port.irq, serial8250_interrupt,
1650 irq_flags, "serial", i);
1651 if (ret < 0)
1652 serial_do_unlink(i, up);
1653 }
1654
1655 return ret;
1656}
1657
1658static void serial_unlink_irq_chain(struct uart_8250_port *up)
1659{
Alan Cox25db8ad2008-08-19 20:49:40 -07001660 struct irq_info *i;
1661 struct hlist_node *n;
1662 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Alan Cox25db8ad2008-08-19 20:49:40 -07001664 mutex_lock(&hash_mutex);
1665
1666 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1667
1668 hlist_for_each(n, h) {
1669 i = hlist_entry(n, struct irq_info, node);
1670 if (i->irq == up->port.irq)
1671 break;
1672 }
1673
1674 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 BUG_ON(i->head == NULL);
1676
1677 if (list_empty(i->head))
1678 free_irq(up->port.irq, i);
1679
1680 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001681 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
1684/*
1685 * This function is used to handle ports that do not have an
1686 * interrupt. This doesn't work very well for 16450's, but gives
1687 * barely passable results for a 16550A. (Although at the expense
1688 * of much CPU overhead).
1689 */
1690static void serial8250_timeout(unsigned long data)
1691{
1692 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Paul Gortmakera0431472011-12-04 18:42:21 -05001694 up->port.handle_irq(&up->port);
Anton Vorontsov54381062010-10-01 17:21:25 +04001695 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001696}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Alex Williamson40b36da2007-02-14 00:33:04 -08001698static void serial8250_backup_timeout(unsigned long data)
1699{
1700 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001701 unsigned int iir, ier = 0, lsr;
1702 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001703
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001704 spin_lock_irqsave(&up->port.lock, flags);
1705
Alex Williamson40b36da2007-02-14 00:33:04 -08001706 /*
1707 * Must disable interrupts or else we risk racing with the interrupt
1708 * based handler.
1709 */
Alan Coxd4e33fa2012-01-26 17:44:09 +00001710 if (up->port.irq) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001711 ier = serial_in(up, UART_IER);
1712 serial_out(up, UART_IER, 0);
1713 }
1714
1715 iir = serial_in(up, UART_IIR);
1716
1717 /*
1718 * This should be a safe test for anyone who doesn't trust the
1719 * IIR bits on their UART, but it's specifically designed for
1720 * the "Diva" UART used on the management processor on many HP
1721 * ia64 and parisc boxes.
1722 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001723 lsr = serial_in(up, UART_LSR);
1724 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001725 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001726 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001727 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001728 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1729 iir |= UART_IIR_THRI;
1730 }
1731
1732 if (!(iir & UART_IIR_NO_INT))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001733 serial8250_tx_chars(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001734
Alan Coxd4e33fa2012-01-26 17:44:09 +00001735 if (up->port.irq)
Alex Williamson40b36da2007-02-14 00:33:04 -08001736 serial_out(up, UART_IER, ier);
1737
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001738 spin_unlock_irqrestore(&up->port.lock, flags);
1739
Alex Williamson40b36da2007-02-14 00:33:04 -08001740 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001741 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001742 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}
1744
1745static unsigned int serial8250_tx_empty(struct uart_port *port)
1746{
Jamie Iles49d57412010-12-01 23:39:35 +00001747 struct uart_8250_port *up =
1748 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001750 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001752 spin_lock_irqsave(&port->lock, flags);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001753 lsr = serial_port_in(port, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001754 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001755 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001757 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
1760static unsigned int serial8250_get_mctrl(struct uart_port *port)
1761{
Jamie Iles49d57412010-12-01 23:39:35 +00001762 struct uart_8250_port *up =
1763 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001764 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 unsigned int ret;
1766
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001767 status = serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 ret = 0;
1770 if (status & UART_MSR_DCD)
1771 ret |= TIOCM_CAR;
1772 if (status & UART_MSR_RI)
1773 ret |= TIOCM_RNG;
1774 if (status & UART_MSR_DSR)
1775 ret |= TIOCM_DSR;
1776 if (status & UART_MSR_CTS)
1777 ret |= TIOCM_CTS;
1778 return ret;
1779}
1780
1781static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1782{
Jamie Iles49d57412010-12-01 23:39:35 +00001783 struct uart_8250_port *up =
1784 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 unsigned char mcr = 0;
1786
1787 if (mctrl & TIOCM_RTS)
1788 mcr |= UART_MCR_RTS;
1789 if (mctrl & TIOCM_DTR)
1790 mcr |= UART_MCR_DTR;
1791 if (mctrl & TIOCM_OUT1)
1792 mcr |= UART_MCR_OUT1;
1793 if (mctrl & TIOCM_OUT2)
1794 mcr |= UART_MCR_OUT2;
1795 if (mctrl & TIOCM_LOOP)
1796 mcr |= UART_MCR_LOOP;
1797
1798 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1799
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001800 serial_port_out(port, UART_MCR, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
1803static void serial8250_break_ctl(struct uart_port *port, int break_state)
1804{
Jamie Iles49d57412010-12-01 23:39:35 +00001805 struct uart_8250_port *up =
1806 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 unsigned long flags;
1808
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001809 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (break_state == -1)
1811 up->lcr |= UART_LCR_SBC;
1812 else
1813 up->lcr &= ~UART_LCR_SBC;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001814 serial_port_out(port, UART_LCR, up->lcr);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001815 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816}
1817
Alex Williamson40b36da2007-02-14 00:33:04 -08001818/*
1819 * Wait for transmitter & holding register to empty
1820 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001821static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001822{
1823 unsigned int status, tmout = 10000;
1824
1825 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001826 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001827 status = serial_in(up, UART_LSR);
1828
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001829 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001830
David Daney97d303b2010-10-05 11:40:07 -07001831 if ((status & bits) == bits)
1832 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001833 if (--tmout == 0)
1834 break;
1835 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001836 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001837
1838 /* Wait up to 1s for flow control if necessary */
1839 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001840 unsigned int tmout;
1841 for (tmout = 1000000; tmout; tmout--) {
1842 unsigned int msr = serial_in(up, UART_MSR);
1843 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1844 if (msr & UART_MSR_CTS)
1845 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001846 udelay(1);
1847 touch_nmi_watchdog();
1848 }
1849 }
1850}
1851
Jason Wesself2d937f2008-04-17 20:05:37 +02001852#ifdef CONFIG_CONSOLE_POLL
1853/*
1854 * Console polling routines for writing and reading from the uart while
1855 * in an interrupt or debug context.
1856 */
1857
1858static int serial8250_get_poll_char(struct uart_port *port)
1859{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001860 unsigned char lsr = serial_port_in(port, UART_LSR);
Jason Wesself2d937f2008-04-17 20:05:37 +02001861
Jason Wesself5316b42010-05-20 21:04:22 -05001862 if (!(lsr & UART_LSR_DR))
1863 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001864
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001865 return serial_port_in(port, UART_RX);
Jason Wesself2d937f2008-04-17 20:05:37 +02001866}
1867
1868
1869static void serial8250_put_poll_char(struct uart_port *port,
1870 unsigned char c)
1871{
1872 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001873 struct uart_8250_port *up =
1874 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001875
1876 /*
1877 * First save the IER then disable the interrupts
1878 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001879 ier = serial_port_in(port, UART_IER);
Jason Wesself2d937f2008-04-17 20:05:37 +02001880 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001881 serial_port_out(port, UART_IER, UART_IER_UUE);
Jason Wesself2d937f2008-04-17 20:05:37 +02001882 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001883 serial_port_out(port, UART_IER, 0);
Jason Wesself2d937f2008-04-17 20:05:37 +02001884
1885 wait_for_xmitr(up, BOTH_EMPTY);
1886 /*
1887 * Send the character out.
1888 * If a LF, also do CR...
1889 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001890 serial_port_out(port, UART_TX, c);
Jason Wesself2d937f2008-04-17 20:05:37 +02001891 if (c == 10) {
1892 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001893 serial_port_out(port, UART_TX, 13);
Jason Wesself2d937f2008-04-17 20:05:37 +02001894 }
1895
1896 /*
1897 * Finally, wait for transmitter to become empty
1898 * and restore the IER
1899 */
1900 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001901 serial_port_out(port, UART_IER, ier);
Jason Wesself2d937f2008-04-17 20:05:37 +02001902}
1903
1904#endif /* CONFIG_CONSOLE_POLL */
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906static int serial8250_startup(struct uart_port *port)
1907{
Jamie Iles49d57412010-12-01 23:39:35 +00001908 struct uart_8250_port *up =
1909 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001911 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 int retval;
1913
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001914 port->fifosize = uart_config[up->port.type].fifo_size;
Ondrej Puzmane4f05af2010-12-04 21:17:38 +01001915 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 up->capabilities = uart_config[up->port.type].flags;
1917 up->mcr = 0;
1918
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001919 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01001920 set_io_from_upio(port);
1921
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001922 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 /* Wake up and initialize UART */
1924 up->acr = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001925 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1926 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1927 serial_port_out(port, UART_IER, 0);
1928 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001930 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1931 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1932 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934
1935#ifdef CONFIG_SERIAL_8250_RSA
1936 /*
1937 * If this is an RSA port, see if we can kick it up to the
1938 * higher speed clock.
1939 */
1940 enable_rsa(up);
1941#endif
1942
1943 /*
1944 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001945 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 */
1947 serial8250_clear_fifos(up);
1948
1949 /*
1950 * Clear the interrupt registers.
1951 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001952 serial_port_in(port, UART_LSR);
1953 serial_port_in(port, UART_RX);
1954 serial_port_in(port, UART_IIR);
1955 serial_port_in(port, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 /*
1958 * At this point, there's no way the LSR could still be 0xff;
1959 * if it is, then bail out, because there's likely no UART
1960 * here.
1961 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001962 if (!(port->flags & UPF_BUGGY_UART) &&
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001963 (serial_port_in(port, UART_LSR) == 0xff)) {
Konrad Rzeszutek Wilk7808a4c2011-09-26 09:14:34 -04001964 printk_ratelimited(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001965 serial_index(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return -ENODEV;
1967 }
1968
1969 /*
1970 * For a XR16C850, we need to set the trigger levels
1971 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001972 if (port->type == PORT_16850) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 unsigned char fctr;
1974
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001975 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001977 fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001978 serial_port_out(port, UART_FCTR,
1979 fctr | UART_FCTR_TRGD | UART_FCTR_RX);
1980 serial_port_out(port, UART_TRG, UART_TRG_96);
1981 serial_port_out(port, UART_FCTR,
1982 fctr | UART_FCTR_TRGD | UART_FCTR_TX);
1983 serial_port_out(port, UART_TRG, UART_TRG_96);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001985 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001988 if (port->irq) {
Alex Williamson01c194d2008-04-28 02:14:09 -07001989 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08001990 /*
1991 * Test for UARTs that do not reassert THRE when the
1992 * transmitter is idle and the interrupt has already
1993 * been cleared. Real 16550s should always reassert
1994 * this interrupt whenever the transmitter is idle and
1995 * the interrupt is enabled. Delays are necessary to
1996 * allow register changes to become visible.
1997 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001998 spin_lock_irqsave(&port->lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001999 if (up->port.irqflags & IRQF_SHARED)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002000 disable_irq_nosync(port->irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002001
2002 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker55e40162012-03-08 19:12:14 -05002003 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002004 udelay(1); /* allow THRE to set */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002005 iir1 = serial_port_in(port, UART_IIR);
2006 serial_port_out(port, UART_IER, 0);
Paul Gortmaker55e40162012-03-08 19:12:14 -05002007 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002008 udelay(1); /* allow a working UART time to re-assert THRE */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002009 iir = serial_port_in(port, UART_IIR);
2010 serial_port_out(port, UART_IER, 0);
Alex Williamson40b36da2007-02-14 00:33:04 -08002011
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002012 if (port->irqflags & IRQF_SHARED)
2013 enable_irq(port->irq);
2014 spin_unlock_irqrestore(&port->lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002015
2016 /*
Dan Williamsbc02d152012-04-06 11:49:50 -07002017 * If the interrupt is not reasserted, or we otherwise
2018 * don't trust the iir, setup a timer to kick the UART
2019 * on a regular basis.
Alex Williamson40b36da2007-02-14 00:33:04 -08002020 */
Dan Williamsbc02d152012-04-06 11:49:50 -07002021 if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) ||
2022 up->port.flags & UPF_BUG_THRE) {
Will Newton363f66f2008-09-02 14:35:44 -07002023 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002024 pr_debug("ttyS%d - using backup timer\n",
2025 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002026 }
2027 }
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 /*
Will Newton363f66f2008-09-02 14:35:44 -07002030 * The above check will only give an accurate result the first time
2031 * the port is opened so this value needs to be preserved.
2032 */
2033 if (up->bugs & UART_BUG_THRE) {
2034 up->timer.function = serial8250_backup_timeout;
2035 up->timer.data = (unsigned long)up;
2036 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002037 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002038 }
2039
2040 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 * If the "interrupt" for this port doesn't correspond with any
2042 * hardware interrupt, we use a timer-based system. The original
2043 * driver used to do this with IRQ0.
2044 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002045 if (!port->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002047 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 } else {
2049 retval = serial_link_irq_chain(up);
2050 if (retval)
2051 return retval;
2052 }
2053
2054 /*
2055 * Now, initialize the UART
2056 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002057 serial_port_out(port, UART_LCR, UART_LCR_WLEN8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002059 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 if (up->port.flags & UPF_FOURPORT) {
Alan Coxd4e33fa2012-01-26 17:44:09 +00002061 if (!up->port.irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 up->port.mctrl |= TIOCM_OUT1;
2063 } else
2064 /*
2065 * Most PC uarts need OUT2 raised to enable interrupts.
2066 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002067 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 up->port.mctrl |= TIOCM_OUT2;
2069
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002070 serial8250_set_mctrl(port, port->mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002071
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002072 /* Serial over Lan (SoL) hack:
2073 Intel 8257x Gigabit ethernet chips have a
2074 16550 emulation, to be used for Serial Over Lan.
2075 Those chips take a longer time than a normal
2076 serial device to signalize that a transmission
2077 data was queued. Due to that, the above test generally
2078 fails. One solution would be to delay the reading of
2079 iir. However, this is not reliable, since the timeout
2080 is variable. So, let's just don't test if we receive
2081 TX irq. This way, we'll never enable UART_BUG_TXEN.
2082 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002083 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002084 goto dont_test_tx_en;
2085
Russell King55d3b282005-06-23 15:05:41 +01002086 /*
2087 * Do a quick test to see if we receive an
2088 * interrupt when we enable the TX irq.
2089 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002090 serial_port_out(port, UART_IER, UART_IER_THRI);
2091 lsr = serial_port_in(port, UART_LSR);
2092 iir = serial_port_in(port, UART_IIR);
2093 serial_port_out(port, UART_IER, 0);
Russell King55d3b282005-06-23 15:05:41 +01002094
2095 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002096 if (!(up->bugs & UART_BUG_TXEN)) {
2097 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002098 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002099 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002100 }
2101 } else {
Russell King67f76542005-06-23 22:26:43 +01002102 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002103 }
2104
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002105dont_test_tx_en:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002106 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002109 * Clear the interrupt registers again for luck, and clear the
2110 * saved flags to avoid getting false values from polling
2111 * routines or the previous session.
2112 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002113 serial_port_in(port, UART_LSR);
2114 serial_port_in(port, UART_RX);
2115 serial_port_in(port, UART_IIR);
2116 serial_port_in(port, UART_MSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002117 up->lsr_saved_flags = 0;
2118 up->msr_saved_flags = 0;
2119
2120 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 * Finally, enable interrupts. Note: Modem status interrupts
2122 * are set via set_termios(), which will be occurring imminently
2123 * anyway, so we don't enable them here.
2124 */
2125 up->ier = UART_IER_RLSI | UART_IER_RDI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002126 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002128 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 unsigned int icp;
2130 /*
2131 * Enable interrupts on the AST Fourport board
2132 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002133 icp = (port->iobase & 0xfe0) | 0x01f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 outb_p(0x80, icp);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05002135 inb_p(icp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return 0;
2139}
2140
2141static void serial8250_shutdown(struct uart_port *port)
2142{
Jamie Iles49d57412010-12-01 23:39:35 +00002143 struct uart_8250_port *up =
2144 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 unsigned long flags;
2146
2147 /*
2148 * Disable interrupts from this port
2149 */
2150 up->ier = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002151 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002153 spin_lock_irqsave(&port->lock, flags);
2154 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 /* reset interrupts on the AST Fourport board */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002156 inb((port->iobase & 0xfe0) | 0x1f);
2157 port->mctrl |= TIOCM_OUT1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002159 port->mctrl &= ~TIOCM_OUT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002161 serial8250_set_mctrl(port, port->mctrl);
2162 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164 /*
2165 * Disable break condition and FIFOs
2166 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002167 serial_port_out(port, UART_LCR,
2168 serial_port_in(port, UART_LCR) & ~UART_LCR_SBC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 serial8250_clear_fifos(up);
2170
2171#ifdef CONFIG_SERIAL_8250_RSA
2172 /*
2173 * Reset the RSA board back to 115kbps compat mode.
2174 */
2175 disable_rsa(up);
2176#endif
2177
2178 /*
2179 * Read data port to reset things, and then unlink from
2180 * the IRQ chain.
2181 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002182 serial_port_in(port, UART_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Alex Williamson40b36da2007-02-14 00:33:04 -08002184 del_timer_sync(&up->timer);
2185 up->timer.function = serial8250_timeout;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002186 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 serial_unlink_irq_chain(up);
2188}
2189
2190static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2191{
2192 unsigned int quot;
2193
2194 /*
2195 * Handle magic divisors for baud rates above baud_base on
2196 * SMSC SuperIO chips.
2197 */
2198 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2199 baud == (port->uartclk/4))
2200 quot = 0x8001;
2201 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2202 baud == (port->uartclk/8))
2203 quot = 0x8002;
2204 else
2205 quot = uart_get_divisor(port, baud);
2206
2207 return quot;
2208}
2209
Philippe Langlais235dae52010-07-29 17:13:57 +02002210void
2211serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2212 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
Jamie Iles49d57412010-12-01 23:39:35 +00002214 struct uart_8250_port *up =
2215 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 unsigned char cval, fcr = 0;
2217 unsigned long flags;
2218 unsigned int baud, quot;
2219
2220 switch (termios->c_cflag & CSIZE) {
2221 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002222 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 break;
2224 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002225 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 break;
2227 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002228 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 break;
2230 default:
2231 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002232 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 break;
2234 }
2235
2236 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002237 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 if (termios->c_cflag & PARENB)
2239 cval |= UART_LCR_PARITY;
2240 if (!(termios->c_cflag & PARODD))
2241 cval |= UART_LCR_EPAR;
2242#ifdef CMSPAR
2243 if (termios->c_cflag & CMSPAR)
2244 cval |= UART_LCR_SPAR;
2245#endif
2246
2247 /*
2248 * Ask the core to calculate the divisor for us.
2249 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002250 baud = uart_get_baud_rate(port, termios, old,
2251 port->uartclk / 16 / 0xffff,
2252 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 quot = serial8250_get_divisor(port, baud);
2254
2255 /*
Russell King4ba5e352005-06-23 10:43:04 +01002256 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 */
Russell King4ba5e352005-06-23 10:43:04 +01002258 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002259 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002261 if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) {
Christian Melkif9a91112012-04-30 11:21:26 +02002262 fcr = uart_config[port->type].fcr;
2263 if (baud < 2400) {
2264 fcr &= ~UART_FCR_TRIGGER_MASK;
2265 fcr |= UART_FCR_TRIGGER_1;
2266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
2268
2269 /*
2270 * MCR-based auto flow control. When AFE is enabled, RTS will be
2271 * deasserted when the receive FIFO contains more characters than
2272 * the trigger, or the MCR RTS bit is cleared. In the case where
2273 * the remote UART is not using CTS auto flow control, we must
2274 * have sufficient FIFO entries for the latency of the remote
2275 * UART to respond. IOW, at least 32 bytes of FIFO.
2276 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002277 if (up->capabilities & UART_CAP_AFE && port->fifosize >= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 up->mcr &= ~UART_MCR_AFE;
2279 if (termios->c_cflag & CRTSCTS)
2280 up->mcr |= UART_MCR_AFE;
2281 }
2282
2283 /*
2284 * Ok, we're now changing the port state. Do it with
2285 * interrupts disabled.
2286 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002287 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 /*
2290 * Update the per-port timeout.
2291 */
2292 uart_update_timeout(port, termios->c_cflag, baud);
2293
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002294 port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 if (termios->c_iflag & INPCK)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002296 port->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if (termios->c_iflag & (BRKINT | PARMRK))
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002298 port->read_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
2300 /*
2301 * Characteres to ignore
2302 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002303 port->ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002305 port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (termios->c_iflag & IGNBRK) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002307 port->ignore_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 /*
2309 * If we're ignoring parity and break indicators,
2310 * ignore overruns too (for real raw support).
2311 */
2312 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002313 port->ignore_status_mask |= UART_LSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 }
2315
2316 /*
2317 * ignore all characters if CREAD is not set
2318 */
2319 if ((termios->c_cflag & CREAD) == 0)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002320 port->ignore_status_mask |= UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 /*
2323 * CTS flow control flag and modem status interrupts
2324 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002325 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002326 if (!(up->bugs & UART_BUG_NOMSR) &&
2327 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 up->ier |= UART_IER_MSI;
2329 if (up->capabilities & UART_CAP_UUE)
Stephen Warren4539c242011-05-17 16:12:36 -06002330 up->ier |= UART_IER_UUE;
2331 if (up->capabilities & UART_CAP_RTOIE)
2332 up->ier |= UART_IER_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002334 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336 if (up->capabilities & UART_CAP_EFR) {
2337 unsigned char efr = 0;
2338 /*
2339 * TI16C752/Startech hardware flow control. FIXME:
2340 * - TI16C752 requires control thresholds to be set.
2341 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2342 */
2343 if (termios->c_cflag & CRTSCTS)
2344 efr |= UART_EFR_CTS;
2345
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002346 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002347 if (port->flags & UPF_EXAR_EFR)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002348 serial_port_out(port, UART_XR_EFR, efr);
Søren Holm06315342011-09-02 22:55:37 +02002349 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002350 serial_port_out(port, UART_EFR, efr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 }
2352
Russell Kingf2eda272008-09-01 21:47:59 +01002353#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002354 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002355 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002356 if (baud == 115200) {
2357 quot = 1;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002358 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002359 } else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002360 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002361 }
2362#endif
2363
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002364 /*
2365 * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2,
2366 * otherwise just set DLAB
2367 */
2368 if (up->capabilities & UART_NATSEMI)
2369 serial_port_out(port, UART_LCR, 0xe0);
2370 else
2371 serial_port_out(port, UART_LCR, cval | UART_LCR_DLAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002373 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 /*
2376 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2377 * is written without DLAB set, this mode will be disabled.
2378 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002379 if (port->type == PORT_16750)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002380 serial_port_out(port, UART_FCR, fcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002382 serial_port_out(port, UART_LCR, cval); /* reset DLAB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 up->lcr = cval; /* Save LCR */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002384 if (port->type != PORT_16750) {
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002385 /* emulated UARTs (Lucent Venus 167x) need two steps */
2386 if (fcr & UART_FCR_ENABLE_FIFO)
2387 serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);
2388 serial_port_out(port, UART_FCR, fcr); /* set fcr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002390 serial8250_set_mctrl(port, port->mctrl);
2391 spin_unlock_irqrestore(&port->lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002392 /* Don't rewrite B0 */
2393 if (tty_termios_baud_rate(termios))
2394 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395}
Philippe Langlais235dae52010-07-29 17:13:57 +02002396EXPORT_SYMBOL(serial8250_do_set_termios);
2397
2398static void
2399serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2400 struct ktermios *old)
2401{
2402 if (port->set_termios)
2403 port->set_termios(port, termios, old);
2404 else
2405 serial8250_do_set_termios(port, termios, old);
2406}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002409serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002410{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002411 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002412 port->flags |= UPF_HARDPPS_CD;
2413 serial8250_enable_ms(port);
2414 } else
2415 port->flags &= ~UPF_HARDPPS_CD;
2416}
2417
Manuel Laussc161afe2010-09-25 15:13:45 +02002418
2419void serial8250_do_pm(struct uart_port *port, unsigned int state,
2420 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
Jamie Iles49d57412010-12-01 23:39:35 +00002422 struct uart_8250_port *p =
2423 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002426}
2427EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Manuel Laussc161afe2010-09-25 15:13:45 +02002429static void
2430serial8250_pm(struct uart_port *port, unsigned int state,
2431 unsigned int oldstate)
2432{
2433 if (port->pm)
2434 port->pm(port, state, oldstate);
2435 else
2436 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438
Russell Kingf2eda272008-09-01 21:47:59 +01002439static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2440{
2441 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002442 return 0x1000;
Russell Kingf2eda272008-09-01 21:47:59 +01002443#ifdef CONFIG_ARCH_OMAP
2444 if (is_omap_port(pt))
2445 return 0x16 << pt->port.regshift;
2446#endif
2447 return 8 << pt->port.regshift;
2448}
2449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450/*
2451 * Resource handling.
2452 */
2453static int serial8250_request_std_resource(struct uart_8250_port *up)
2454{
Russell Kingf2eda272008-09-01 21:47:59 +01002455 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002456 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 int ret = 0;
2458
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002459 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002460 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002461 case UPIO_TSI:
2462 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002464 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 break;
2466
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002467 if (!request_mem_region(port->mapbase, size, "serial")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 ret = -EBUSY;
2469 break;
2470 }
2471
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002472 if (port->flags & UPF_IOREMAP) {
2473 port->membase = ioremap_nocache(port->mapbase, size);
2474 if (!port->membase) {
2475 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 ret = -ENOMEM;
2477 }
2478 }
2479 break;
2480
2481 case UPIO_HUB6:
2482 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002483 if (!request_region(port->iobase, size, "serial"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 ret = -EBUSY;
2485 break;
2486 }
2487 return ret;
2488}
2489
2490static void serial8250_release_std_resource(struct uart_8250_port *up)
2491{
Russell Kingf2eda272008-09-01 21:47:59 +01002492 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002493 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002495 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002496 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002497 case UPIO_TSI:
2498 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002500 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 break;
2502
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002503 if (port->flags & UPF_IOREMAP) {
2504 iounmap(port->membase);
2505 port->membase = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 }
2507
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002508 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 break;
2510
2511 case UPIO_HUB6:
2512 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002513 release_region(port->iobase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 break;
2515 }
2516}
2517
2518static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2519{
2520 unsigned long start = UART_RSA_BASE << up->port.regshift;
2521 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002522 struct uart_port *port = &up->port;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002523 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002525 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 case UPIO_HUB6:
2527 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002528 start += port->iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002529 if (request_region(start, size, "serial-rsa"))
2530 ret = 0;
2531 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 ret = -EBUSY;
2533 break;
2534 }
2535
2536 return ret;
2537}
2538
2539static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2540{
2541 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2542 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002543 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002545 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 case UPIO_HUB6:
2547 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002548 release_region(port->iobase + offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 break;
2550 }
2551}
2552
2553static void serial8250_release_port(struct uart_port *port)
2554{
Jamie Iles49d57412010-12-01 23:39:35 +00002555 struct uart_8250_port *up =
2556 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558 serial8250_release_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002559 if (port->type == PORT_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 serial8250_release_rsa_resource(up);
2561}
2562
2563static int serial8250_request_port(struct uart_port *port)
2564{
Jamie Iles49d57412010-12-01 23:39:35 +00002565 struct uart_8250_port *up =
2566 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 int ret = 0;
2568
2569 ret = serial8250_request_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002570 if (ret == 0 && port->type == PORT_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 ret = serial8250_request_rsa_resource(up);
2572 if (ret < 0)
2573 serial8250_release_std_resource(up);
2574 }
2575
2576 return ret;
2577}
2578
2579static void serial8250_config_port(struct uart_port *port, int flags)
2580{
Jamie Iles49d57412010-12-01 23:39:35 +00002581 struct uart_8250_port *up =
2582 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 int probeflags = PROBE_ANY;
2584 int ret;
2585
2586 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 * Find the region that we can probe for. This in turn
2588 * tells us whether we can probe for the type of port.
2589 */
2590 ret = serial8250_request_std_resource(up);
2591 if (ret < 0)
2592 return;
2593
2594 ret = serial8250_request_rsa_resource(up);
2595 if (ret < 0)
2596 probeflags &= ~PROBE_RSA;
2597
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002598 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01002599 set_io_from_upio(port);
2600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (flags & UART_CONFIG_TYPE)
2602 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002603
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002604 /* if access method is AU, it is a 16550 with a quirk */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002605 if (port->type == PORT_16550A && port->iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002606 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002607
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002608 if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 autoconfig_irq(up);
2610
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002611 if (port->type != PORT_RSA && probeflags & PROBE_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 serial8250_release_rsa_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002613 if (port->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 serial8250_release_std_resource(up);
2615}
2616
2617static int
2618serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2619{
Yinghai Lua62c4132008-08-19 20:49:55 -07002620 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2622 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2623 ser->type == PORT_STARTECH)
2624 return -EINVAL;
2625 return 0;
2626}
2627
2628static const char *
2629serial8250_type(struct uart_port *port)
2630{
2631 int type = port->type;
2632
2633 if (type >= ARRAY_SIZE(uart_config))
2634 type = 0;
2635 return uart_config[type].name;
2636}
2637
2638static struct uart_ops serial8250_pops = {
2639 .tx_empty = serial8250_tx_empty,
2640 .set_mctrl = serial8250_set_mctrl,
2641 .get_mctrl = serial8250_get_mctrl,
2642 .stop_tx = serial8250_stop_tx,
2643 .start_tx = serial8250_start_tx,
2644 .stop_rx = serial8250_stop_rx,
2645 .enable_ms = serial8250_enable_ms,
2646 .break_ctl = serial8250_break_ctl,
2647 .startup = serial8250_startup,
2648 .shutdown = serial8250_shutdown,
2649 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002650 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 .pm = serial8250_pm,
2652 .type = serial8250_type,
2653 .release_port = serial8250_release_port,
2654 .request_port = serial8250_request_port,
2655 .config_port = serial8250_config_port,
2656 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002657#ifdef CONFIG_CONSOLE_POLL
2658 .poll_get_char = serial8250_get_poll_char,
2659 .poll_put_char = serial8250_put_poll_char,
2660#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661};
2662
2663static struct uart_8250_port serial8250_ports[UART_NR];
2664
Alan Coxaf7f3742010-10-18 11:38:02 -07002665static void (*serial8250_isa_config)(int port, struct uart_port *up,
2666 unsigned short *capabilities);
2667
2668void serial8250_set_isa_configurator(
2669 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2670{
2671 serial8250_isa_config = v;
2672}
2673EXPORT_SYMBOL(serial8250_set_isa_configurator);
2674
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675static void __init serial8250_isa_init_ports(void)
2676{
2677 struct uart_8250_port *up;
2678 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002679 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 if (!first)
2682 return;
2683 first = 0;
2684
Dave Jonesa61c2d72006-01-07 23:18:19 +00002685 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 struct uart_8250_port *up = &serial8250_ports[i];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002687 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002689 port->line = i;
2690 spin_lock_init(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
2692 init_timer(&up->timer);
2693 up->timer.function = serial8250_timeout;
2694
2695 /*
2696 * ALPHA_KLUDGE_MCR needs to be killed.
2697 */
2698 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2699 up->mcr_force = ALPHA_KLUDGE_MCR;
2700
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002701 port->ops = &serial8250_pops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 }
2703
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002704 if (share_irqs)
2705 irqflag = IRQF_SHARED;
2706
Russell King44454bc2005-06-30 22:41:22 +01002707 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002708 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 i++, up++) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002710 struct uart_port *port = &up->port;
2711
2712 port->iobase = old_serial_port[i].port;
2713 port->irq = irq_canonicalize(old_serial_port[i].irq);
2714 port->irqflags = old_serial_port[i].irqflags;
2715 port->uartclk = old_serial_port[i].baud_base * 16;
2716 port->flags = old_serial_port[i].flags;
2717 port->hub6 = old_serial_port[i].hub6;
2718 port->membase = old_serial_port[i].iomem_base;
2719 port->iotype = old_serial_port[i].io_type;
2720 port->regshift = old_serial_port[i].iomem_reg_shift;
2721 set_io_from_upio(port);
2722 port->irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002723 if (serial8250_isa_config != NULL)
2724 serial8250_isa_config(i, &up->port, &up->capabilities);
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 }
2727}
2728
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002729static void
2730serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2731{
2732 up->port.type = type;
2733 up->port.fifosize = uart_config[type].fifo_size;
2734 up->capabilities = uart_config[type].flags;
2735 up->tx_loadsz = uart_config[type].tx_loadsz;
2736}
2737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738static void __init
2739serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2740{
2741 int i;
2742
Alan Coxb8e7e402009-05-28 14:01:35 +01002743 for (i = 0; i < nr_uarts; i++) {
2744 struct uart_8250_port *up = &serial8250_ports[i];
2745 up->cur_iotype = 0xFF;
2746 }
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 serial8250_isa_init_ports();
2749
Dave Jonesa61c2d72006-01-07 23:18:19 +00002750 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 struct uart_8250_port *up = &serial8250_ports[i];
2752
2753 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002754
2755 if (up->port.flags & UPF_FIXED_TYPE)
2756 serial8250_init_fixed_type_port(up, up->port.type);
2757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 uart_add_one_port(drv, &up->port);
2759 }
2760}
2761
2762#ifdef CONFIG_SERIAL_8250_CONSOLE
2763
Russell Kingd3587882006-03-20 20:00:09 +00002764static void serial8250_console_putchar(struct uart_port *port, int ch)
2765{
Jamie Iles49d57412010-12-01 23:39:35 +00002766 struct uart_8250_port *up =
2767 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002768
2769 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002770 serial_port_out(port, UART_TX, ch);
Russell Kingd3587882006-03-20 20:00:09 +00002771}
2772
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773/*
2774 * Print a string to the serial port trying not to disturb
2775 * any possible real use of the port...
2776 *
2777 * The console_lock must be held when we get here.
2778 */
2779static void
2780serial8250_console_write(struct console *co, const char *s, unsigned int count)
2781{
2782 struct uart_8250_port *up = &serial8250_ports[co->index];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002783 struct uart_port *port = &up->port;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002784 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002786 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
Andrew Morton78512ec2005-11-07 00:59:13 -08002788 touch_nmi_watchdog();
2789
Andrew Morton68aa2c02006-06-30 02:29:59 -07002790 local_irq_save(flags);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002791 if (port->sysrq) {
Paul Gortmaker86b21192011-12-04 18:42:22 -05002792 /* serial8250_handle_irq() already took the lock */
Andrew Morton68aa2c02006-06-30 02:29:59 -07002793 locked = 0;
2794 } else if (oops_in_progress) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002795 locked = spin_trylock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002796 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002797 spin_lock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002798
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002800 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002802 ier = serial_port_in(port, UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002805 serial_port_out(port, UART_IER, UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002807 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002809 uart_console_write(port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
2811 /*
2812 * Finally, wait for transmitter to become empty
2813 * and restore the IER
2814 */
Alan Coxf91a3712006-01-21 14:59:12 +00002815 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002816 serial_port_out(port, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002817
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002818 /*
2819 * The receive handling will happen properly because the
2820 * receive ready bit will still be set; it is not cleared
2821 * on read. However, modem control will not, we must
2822 * call it if we have saved something in the saved flags
2823 * while processing with interrupts off.
2824 */
2825 if (up->msr_saved_flags)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05002826 serial8250_modem_status(up);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002827
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002828 if (locked)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002829 spin_unlock(&port->lock);
Andrew Morton68aa2c02006-06-30 02:29:59 -07002830 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831}
2832
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002833static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834{
2835 struct uart_port *port;
2836 int baud = 9600;
2837 int bits = 8;
2838 int parity = 'n';
2839 int flow = 'n';
2840
2841 /*
2842 * Check whether an invalid uart number has been specified, and
2843 * if so, search for the first available port that does have
2844 * console support.
2845 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002846 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 co->index = 0;
2848 port = &serial8250_ports[co->index].port;
2849 if (!port->iobase && !port->membase)
2850 return -ENODEV;
2851
2852 if (options)
2853 uart_parse_options(options, &baud, &parity, &bits, &flow);
2854
2855 return uart_set_options(port, co, baud, parity, bits, flow);
2856}
2857
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002858static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002859{
2860 return serial8250_find_port_for_earlycon();
2861}
2862
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863static struct console serial8250_console = {
2864 .name = "ttyS",
2865 .write = serial8250_console_write,
2866 .device = uart_console_device,
2867 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002868 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002869 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 .index = -1,
2871 .data = &serial8250_reg,
2872};
2873
2874static int __init serial8250_console_init(void)
2875{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002876 if (nr_uarts > UART_NR)
2877 nr_uarts = UART_NR;
2878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 serial8250_isa_init_ports();
2880 register_console(&serial8250_console);
2881 return 0;
2882}
2883console_initcall(serial8250_console_init);
2884
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002885int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
2887 int line;
2888 struct uart_port *port;
2889
Dave Jonesa61c2d72006-01-07 23:18:19 +00002890 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002892 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 return line;
2894 }
2895 return -ENODEV;
2896}
2897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898#define SERIAL8250_CONSOLE &serial8250_console
2899#else
2900#define SERIAL8250_CONSOLE NULL
2901#endif
2902
2903static struct uart_driver serial8250_reg = {
2904 .owner = THIS_MODULE,
2905 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 .dev_name = "ttyS",
2907 .major = TTY_MAJOR,
2908 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 .cons = SERIAL8250_CONSOLE,
2910};
2911
Russell Kingd856c662006-02-23 10:22:13 +00002912/*
2913 * early_serial_setup - early registration for 8250 ports
2914 *
2915 * Setup an 8250 port structure prior to console initialisation. Use
2916 * after console initialisation will cause undefined behaviour.
2917 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918int __init early_serial_setup(struct uart_port *port)
2919{
David Daneyb4304282009-01-02 13:49:41 +00002920 struct uart_port *p;
2921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 if (port->line >= ARRAY_SIZE(serial8250_ports))
2923 return -ENODEV;
2924
2925 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00002926 p = &serial8250_ports[port->line].port;
2927 p->iobase = port->iobase;
2928 p->membase = port->membase;
2929 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002930 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00002931 p->uartclk = port->uartclk;
2932 p->fifosize = port->fifosize;
2933 p->regshift = port->regshift;
2934 p->iotype = port->iotype;
2935 p->flags = port->flags;
2936 p->mapbase = port->mapbase;
2937 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01002938 p->type = port->type;
2939 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00002940
2941 set_io_from_upio(p);
2942 if (port->serial_in)
2943 p->serial_in = port->serial_in;
2944 if (port->serial_out)
2945 p->serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01002946 if (port->handle_irq)
2947 p->handle_irq = port->handle_irq;
2948 else
2949 p->handle_irq = serial8250_default_handle_irq;
David Daney7d6a07d2009-01-02 13:49:47 +00002950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 return 0;
2952}
2953
2954/**
2955 * serial8250_suspend_port - suspend one serial port
2956 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 *
2958 * Suspend one serial port.
2959 */
2960void serial8250_suspend_port(int line)
2961{
2962 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
2963}
2964
2965/**
2966 * serial8250_resume_port - resume one serial port
2967 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 *
2969 * Resume one serial port.
2970 */
2971void serial8250_resume_port(int line)
2972{
David Woodhouseb5b82df2007-05-17 14:27:39 +08002973 struct uart_8250_port *up = &serial8250_ports[line];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002974 struct uart_port *port = &up->port;
David Woodhouseb5b82df2007-05-17 14:27:39 +08002975
2976 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08002977 /* Ensure it's still in high speed mode */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002978 serial_port_out(port, UART_LCR, 0xE0);
David Woodhouseb5b82df2007-05-17 14:27:39 +08002979
Yin Kangkai0d0389e2011-02-09 11:35:18 +08002980 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08002981
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002982 serial_port_out(port, UART_LCR, 0);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002983 port->uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08002984 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002985 uart_resume_port(&serial8250_reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986}
2987
2988/*
2989 * Register a set of serial devices attached to a platform device. The
2990 * list is terminated with a zero flags entry, which means we expect
2991 * all entries to have at least UPF_BOOT_AUTOCONF set.
2992 */
Russell King3ae5eae2005-11-09 22:32:44 +00002993static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994{
Russell King3ae5eae2005-11-09 22:32:44 +00002995 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 struct uart_port port;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002997 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
2999 memset(&port, 0, sizeof(struct uart_port));
3000
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003001 if (share_irqs)
3002 irqflag = IRQF_SHARED;
3003
Russell Kingec9f47c2005-06-27 11:12:54 +01003004 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08003005 port.iobase = p->iobase;
3006 port.membase = p->membase;
3007 port.irq = p->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003008 port.irqflags = p->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003009 port.uartclk = p->uartclk;
3010 port.regshift = p->regshift;
3011 port.iotype = p->iotype;
3012 port.flags = p->flags;
3013 port.mapbase = p->mapbase;
3014 port.hub6 = p->hub6;
3015 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00003016 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00003017 port.serial_in = p->serial_in;
3018 port.serial_out = p->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003019 port.handle_irq = p->handle_irq;
Dan Williamsbf03f652012-04-10 14:10:53 -07003020 port.handle_break = p->handle_break;
Philippe Langlais235dae52010-07-29 17:13:57 +02003021 port.set_termios = p->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003022 port.pm = p->pm;
Will Newton74a197412008-02-04 22:27:50 -08003023 port.dev = &dev->dev;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003024 port.irqflags |= irqflag;
Russell Kingec9f47c2005-06-27 11:12:54 +01003025 ret = serial8250_register_port(&port);
3026 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003027 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003028 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3029 p->iobase, (unsigned long long)p->mapbase,
3030 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 }
3033 return 0;
3034}
3035
3036/*
3037 * Remove serial ports registered against a platform device.
3038 */
Russell King3ae5eae2005-11-09 22:32:44 +00003039static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040{
3041 int i;
3042
Dave Jonesa61c2d72006-01-07 23:18:19 +00003043 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 struct uart_8250_port *up = &serial8250_ports[i];
3045
Russell King3ae5eae2005-11-09 22:32:44 +00003046 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 serial8250_unregister_port(i);
3048 }
3049 return 0;
3050}
3051
Russell King3ae5eae2005-11-09 22:32:44 +00003052static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053{
3054 int i;
3055
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 for (i = 0; i < UART_NR; i++) {
3057 struct uart_8250_port *up = &serial8250_ports[i];
3058
Russell King3ae5eae2005-11-09 22:32:44 +00003059 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 uart_suspend_port(&serial8250_reg, &up->port);
3061 }
3062
3063 return 0;
3064}
3065
Russell King3ae5eae2005-11-09 22:32:44 +00003066static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067{
3068 int i;
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 for (i = 0; i < UART_NR; i++) {
3071 struct uart_8250_port *up = &serial8250_ports[i];
3072
Russell King3ae5eae2005-11-09 22:32:44 +00003073 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003074 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
3076
3077 return 0;
3078}
3079
Russell King3ae5eae2005-11-09 22:32:44 +00003080static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 .probe = serial8250_probe,
3082 .remove = __devexit_p(serial8250_remove),
3083 .suspend = serial8250_suspend,
3084 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003085 .driver = {
3086 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003087 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003088 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089};
3090
3091/*
3092 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3093 * in the table in include/asm/serial.h
3094 */
3095static struct platform_device *serial8250_isa_devs;
3096
3097/*
3098 * serial8250_register_port and serial8250_unregister_port allows for
3099 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3100 * modems and PCI multiport cards.
3101 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003102static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
3104static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3105{
3106 int i;
3107
3108 /*
3109 * First, find a port entry which matches.
3110 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003111 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 if (uart_match_port(&serial8250_ports[i].port, port))
3113 return &serial8250_ports[i];
3114
3115 /*
3116 * We didn't find a matching entry, so look for the first
3117 * free entry. We look for one which hasn't been previously
3118 * used (indicated by zero iobase).
3119 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003120 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3122 serial8250_ports[i].port.iobase == 0)
3123 return &serial8250_ports[i];
3124
3125 /*
3126 * That also failed. Last resort is to find any entry which
3127 * doesn't have a real port associated with it.
3128 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003129 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3131 return &serial8250_ports[i];
3132
3133 return NULL;
3134}
3135
3136/**
3137 * serial8250_register_port - register a serial port
3138 * @port: serial port template
3139 *
3140 * Configure the serial port specified by the request. If the
3141 * port exists and is in use, it is hung up and unregistered
3142 * first.
3143 *
3144 * The port is then probed and if necessary the IRQ is autodetected
3145 * If this fails an error is returned.
3146 *
3147 * On success the port is ready to use and the line number is returned.
3148 */
3149int serial8250_register_port(struct uart_port *port)
3150{
3151 struct uart_8250_port *uart;
3152 int ret = -ENOSPC;
3153
3154 if (port->uartclk == 0)
3155 return -EINVAL;
3156
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003157 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
3159 uart = serial8250_find_match_or_unused(port);
3160 if (uart) {
3161 uart_remove_one_port(&serial8250_reg, &uart->port);
3162
Will Newton74a197412008-02-04 22:27:50 -08003163 uart->port.iobase = port->iobase;
3164 uart->port.membase = port->membase;
3165 uart->port.irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003166 uart->port.irqflags = port->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003167 uart->port.uartclk = port->uartclk;
3168 uart->port.fifosize = port->fifosize;
3169 uart->port.regshift = port->regshift;
3170 uart->port.iotype = port->iotype;
3171 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3172 uart->port.mapbase = port->mapbase;
3173 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 if (port->dev)
3175 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003176
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08003177 if (port->flags & UPF_FIXED_TYPE)
3178 serial8250_init_fixed_type_port(uart, port->type);
David Daney8e23fcc2009-01-02 13:49:54 +00003179
David Daney7d6a07d2009-01-02 13:49:47 +00003180 set_io_from_upio(&uart->port);
3181 /* Possibly override default I/O functions. */
3182 if (port->serial_in)
3183 uart->port.serial_in = port->serial_in;
3184 if (port->serial_out)
3185 uart->port.serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003186 if (port->handle_irq)
3187 uart->port.handle_irq = port->handle_irq;
Philippe Langlais235dae52010-07-29 17:13:57 +02003188 /* Possibly override set_termios call */
3189 if (port->set_termios)
3190 uart->port.set_termios = port->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003191 if (port->pm)
3192 uart->port.pm = port->pm;
Dan Williamsbf03f652012-04-10 14:10:53 -07003193 if (port->handle_break)
3194 uart->port.handle_break = port->handle_break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Alan Coxaf7f3742010-10-18 11:38:02 -07003196 if (serial8250_isa_config != NULL)
3197 serial8250_isa_config(0, &uart->port,
3198 &uart->capabilities);
3199
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3201 if (ret == 0)
3202 ret = uart->port.line;
3203 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003204 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206 return ret;
3207}
3208EXPORT_SYMBOL(serial8250_register_port);
3209
3210/**
3211 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3212 * @line: serial line number
3213 *
3214 * Remove one serial port. This may not be called from interrupt
3215 * context. We hand the port back to the our control.
3216 */
3217void serial8250_unregister_port(int line)
3218{
3219 struct uart_8250_port *uart = &serial8250_ports[line];
3220
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003221 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 uart_remove_one_port(&serial8250_reg, &uart->port);
3223 if (serial8250_isa_devs) {
3224 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3225 uart->port.type = PORT_UNKNOWN;
3226 uart->port.dev = &serial8250_isa_devs->dev;
leitao@linux.vnet.ibm.comcb01ece2011-05-26 11:18:39 -03003227 uart->capabilities = uart_config[uart->port.type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 uart_add_one_port(&serial8250_reg, &uart->port);
3229 } else {
3230 uart->port.dev = NULL;
3231 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003232 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233}
3234EXPORT_SYMBOL(serial8250_unregister_port);
3235
3236static int __init serial8250_init(void)
3237{
Alan Cox25db8ad2008-08-19 20:49:40 -07003238 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
Dave Jonesa61c2d72006-01-07 23:18:19 +00003240 if (nr_uarts > UART_NR)
3241 nr_uarts = UART_NR;
3242
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003243 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003244 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 share_irqs ? "en" : "dis");
3246
David Millerb70ac772008-10-13 10:36:31 +01003247#ifdef CONFIG_SPARC
3248 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3249#else
3250 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003252#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 if (ret)
3254 goto out;
3255
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003256 serial8250_isa_devs = platform_device_alloc("serial8250",
3257 PLAT8250_DEV_LEGACY);
3258 if (!serial8250_isa_devs) {
3259 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003260 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 }
3262
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003263 ret = platform_device_add(serial8250_isa_devs);
3264 if (ret)
3265 goto put_dev;
3266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3268
Russell Kingbc965a72006-01-18 09:54:29 +00003269 ret = platform_driver_register(&serial8250_isa_driver);
3270 if (ret == 0)
3271 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
Russell Kingbc965a72006-01-18 09:54:29 +00003273 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003274put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003275 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003276unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003277#ifdef CONFIG_SPARC
3278 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3279#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003281#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003282out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 return ret;
3284}
3285
3286static void __exit serial8250_exit(void)
3287{
3288 struct platform_device *isa_dev = serial8250_isa_devs;
3289
3290 /*
3291 * This tells serial8250_unregister_port() not to re-register
3292 * the ports (thereby making serial8250_isa_driver permanently
3293 * in use.)
3294 */
3295 serial8250_isa_devs = NULL;
3296
Russell King3ae5eae2005-11-09 22:32:44 +00003297 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 platform_device_unregister(isa_dev);
3299
David Millerb70ac772008-10-13 10:36:31 +01003300#ifdef CONFIG_SPARC
3301 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3302#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305}
3306
3307module_init(serial8250_init);
3308module_exit(serial8250_exit);
3309
3310EXPORT_SYMBOL(serial8250_suspend_port);
3311EXPORT_SYMBOL(serial8250_resume_port);
3312
3313MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003314MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
3316module_param(share_irqs, uint, 0644);
3317MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3318 " (unsafe)");
3319
Dave Jonesa61c2d72006-01-07 23:18:19 +00003320module_param(nr_uarts, uint, 0644);
3321MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3322
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003323module_param(skip_txen_test, uint, 0644);
3324MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326#ifdef CONFIG_SERIAL_8250_RSA
3327module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3328MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3329#endif
3330MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);