blob: 82ca71aa9d10c4f39b7f856f3397dd25717a69be [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/io.h>
43#include <asm/irq.h>
44
45#include "8250.h"
46
David Millerb70ac772008-10-13 10:36:31 +010047#ifdef CONFIG_SPARC
48#include "suncore.h"
49#endif
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*
52 * Configuration:
Thomas Gleixner40663cc2006-07-01 19:29:43 -070053 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * is unsafe when used on edge-triggered interrupts.
55 */
Adrian Bunk408b6642005-05-01 08:59:29 -070056static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Dave Jonesa61c2d72006-01-07 23:18:19 +000058static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
59
David S. Miller84408382008-10-13 10:45:26 +010060static struct uart_driver serial8250_reg;
61
62static int serial_index(struct uart_port *port)
63{
64 return (serial8250_reg.minor - 64) + port->line;
65}
66
Chuck Ebbertd41a4b52009-10-01 15:44:26 -070067static unsigned int skip_txen_test; /* force skip of txen test at init time */
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * Debugging.
71 */
72#if 0
73#define DEBUG_AUTOCONF(fmt...) printk(fmt)
74#else
75#define DEBUG_AUTOCONF(fmt...) do { } while (0)
76#endif
77
78#if 0
79#define DEBUG_INTR(fmt...) printk(fmt)
80#else
81#define DEBUG_INTR(fmt...) do { } while (0)
82#endif
83
Jiri Slabye7328ae2011-06-05 22:51:49 +020084#define PASS_LIMIT 512
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Dick Hollenbeckbca47612009-12-09 12:31:34 -080086#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
87
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * We default to IRQ0 for the "no irq" hack. Some
91 * machine types want others as well - they're free
92 * to redefine this in their header file.
93 */
94#define is_real_interrupt(irq) ((irq) != 0)
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
97#define CONFIG_SERIAL_DETECT_IRQ 1
98#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#ifdef CONFIG_SERIAL_8250_MANY_PORTS
100#define CONFIG_SERIAL_MANY_PORTS 1
101#endif
102
103/*
104 * HUB6 is always on. This will be removed once the header
105 * files have been cleaned.
106 */
107#define CONFIG_HUB6 1
108
Bryan Wua4ed1e42008-05-31 16:10:04 +0800109#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
111 * SERIAL_PORT_DFNS tells us about built-in ports that have no
112 * standard enumeration mechanism. Platforms that can find all
113 * serial ports via mechanisms like ACPI or PCI need not supply it.
114 */
115#ifndef SERIAL_PORT_DFNS
116#define SERIAL_PORT_DFNS
117#endif
118
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000119static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 SERIAL_PORT_DFNS /* defined in asm/serial.h */
121};
122
Russell King026d02a2005-06-29 18:45:19 +0100123#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125#ifdef CONFIG_SERIAL_8250_RSA
126
127#define PORT_RSA_MAX 4
128static unsigned long probe_rsa[PORT_RSA_MAX];
129static unsigned int probe_rsa_count;
130#endif /* CONFIG_SERIAL_8250_RSA */
131
132struct uart_8250_port {
133 struct uart_port port;
134 struct timer_list timer; /* "no irq" timer */
135 struct list_head list; /* ports on this IRQ */
Russell King4ba5e352005-06-23 10:43:04 +0100136 unsigned short capabilities; /* port capabilities */
137 unsigned short bugs; /* port bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 unsigned int tx_loadsz; /* transmit fifo load size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 unsigned char acr;
140 unsigned char ier;
141 unsigned char lcr;
142 unsigned char mcr;
143 unsigned char mcr_mask; /* mask of user bits */
144 unsigned char mcr_force; /* mask of forced bits */
Alan Coxb8e7e402009-05-28 14:01:35 +0100145 unsigned char cur_iotype; /* Running I/O type */
Corey Minyardad4c2aa2007-08-22 14:01:18 -0700146
147 /*
148 * Some bits in registers are cleared on a read, so they must
149 * be saved whenever the register is read but the bits will not
150 * be immediately processed.
151 */
152#define LSR_SAVE_FLAGS UART_LSR_BRK_ERROR_BITS
153 unsigned char lsr_saved_flags;
154#define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
155 unsigned char msr_saved_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
158struct irq_info {
Alan Cox25db8ad2008-08-19 20:49:40 -0700159 struct hlist_node node;
160 int irq;
161 spinlock_t lock; /* Protects list not the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct list_head *head;
163};
164
Alan Cox25db8ad2008-08-19 20:49:40 -0700165#define NR_IRQ_HASH 32 /* Can be adjusted later */
166static struct hlist_head irq_lists[NR_IRQ_HASH];
167static DEFINE_MUTEX(hash_mutex); /* Used to walk the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/*
170 * Here we define the default xmit fifo size used for each type of UART.
171 */
172static const struct serial8250_config uart_config[] = {
173 [PORT_UNKNOWN] = {
174 .name = "unknown",
175 .fifo_size = 1,
176 .tx_loadsz = 1,
177 },
178 [PORT_8250] = {
179 .name = "8250",
180 .fifo_size = 1,
181 .tx_loadsz = 1,
182 },
183 [PORT_16450] = {
184 .name = "16450",
185 .fifo_size = 1,
186 .tx_loadsz = 1,
187 },
188 [PORT_16550] = {
189 .name = "16550",
190 .fifo_size = 1,
191 .tx_loadsz = 1,
192 },
193 [PORT_16550A] = {
194 .name = "16550A",
195 .fifo_size = 16,
196 .tx_loadsz = 16,
197 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
198 .flags = UART_CAP_FIFO,
199 },
200 [PORT_CIRRUS] = {
201 .name = "Cirrus",
202 .fifo_size = 1,
203 .tx_loadsz = 1,
204 },
205 [PORT_16650] = {
206 .name = "ST16650",
207 .fifo_size = 1,
208 .tx_loadsz = 1,
209 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
210 },
211 [PORT_16650V2] = {
212 .name = "ST16650V2",
213 .fifo_size = 32,
214 .tx_loadsz = 16,
215 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
216 UART_FCR_T_TRIG_00,
217 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
218 },
219 [PORT_16750] = {
220 .name = "TI16750",
221 .fifo_size = 64,
222 .tx_loadsz = 64,
223 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
224 UART_FCR7_64BYTE,
225 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
226 },
227 [PORT_STARTECH] = {
228 .name = "Startech",
229 .fifo_size = 1,
230 .tx_loadsz = 1,
231 },
232 [PORT_16C950] = {
233 .name = "16C950/954",
234 .fifo_size = 128,
235 .tx_loadsz = 128,
236 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Pavel Machekd0694e22011-01-09 08:38:48 +0100237 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
238 .flags = UART_CAP_FIFO | UART_CAP_SLEEP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 },
240 [PORT_16654] = {
241 .name = "ST16654",
242 .fifo_size = 64,
243 .tx_loadsz = 32,
244 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
245 UART_FCR_T_TRIG_10,
246 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
247 },
248 [PORT_16850] = {
249 .name = "XR16850",
250 .fifo_size = 128,
251 .tx_loadsz = 128,
252 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
253 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
254 },
255 [PORT_RSA] = {
256 .name = "RSA",
257 .fifo_size = 2048,
258 .tx_loadsz = 2048,
259 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
260 .flags = UART_CAP_FIFO,
261 },
262 [PORT_NS16550A] = {
263 .name = "NS16550A",
264 .fifo_size = 16,
265 .tx_loadsz = 16,
266 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
267 .flags = UART_CAP_FIFO | UART_NATSEMI,
268 },
269 [PORT_XSCALE] = {
270 .name = "XScale",
271 .fifo_size = 32,
272 .tx_loadsz = 32,
273 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Stephen Warren4539c242011-05-17 16:12:36 -0600274 .flags = UART_CAP_FIFO | UART_CAP_UUE | UART_CAP_RTOIE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700276 [PORT_RM9000] = {
277 .name = "RM9000",
278 .fifo_size = 16,
279 .tx_loadsz = 16,
280 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
281 .flags = UART_CAP_FIFO,
282 },
David Daney6b06f192009-01-02 13:50:00 +0000283 [PORT_OCTEON] = {
284 .name = "OCTEON",
285 .fifo_size = 64,
286 .tx_loadsz = 64,
287 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
288 .flags = UART_CAP_FIFO,
289 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100290 [PORT_AR7] = {
291 .name = "AR7",
292 .fifo_size = 16,
293 .tx_loadsz = 16,
294 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
295 .flags = UART_CAP_FIFO | UART_CAP_AFE,
296 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200297 [PORT_U6_16550A] = {
298 .name = "U6_16550A",
299 .fifo_size = 64,
300 .tx_loadsz = 64,
301 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
302 .flags = UART_CAP_FIFO | UART_CAP_AFE,
303 },
Stephen Warren4539c242011-05-17 16:12:36 -0600304 [PORT_TEGRA] = {
305 .name = "Tegra",
306 .fifo_size = 32,
307 .tx_loadsz = 8,
308 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
309 UART_FCR_T_TRIG_01,
310 .flags = UART_CAP_FIFO | UART_CAP_RTOIE,
311 },
Søren Holm06315342011-09-02 22:55:37 +0200312 [PORT_XR17D15X] = {
313 .name = "XR17D15X",
314 .fifo_size = 64,
315 .tx_loadsz = 64,
316 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
317 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR,
318 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319};
320
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200321#if defined(CONFIG_MIPS_ALCHEMY)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000322
323/* Au1x00 UART hardware has a weird register layout */
324static const u8 au_io_in_map[] = {
325 [UART_RX] = 0,
326 [UART_IER] = 2,
327 [UART_IIR] = 3,
328 [UART_LCR] = 5,
329 [UART_MCR] = 6,
330 [UART_LSR] = 7,
331 [UART_MSR] = 8,
332};
333
334static const u8 au_io_out_map[] = {
335 [UART_TX] = 1,
336 [UART_IER] = 2,
337 [UART_FCR] = 4,
338 [UART_LCR] = 5,
339 [UART_MCR] = 6,
340};
341
342/* sane hardware needs no mapping */
David Daney7d6a07d2009-01-02 13:49:47 +0000343static inline int map_8250_in_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000344{
David Daney7d6a07d2009-01-02 13:49:47 +0000345 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000346 return offset;
347 return au_io_in_map[offset];
348}
349
David Daney7d6a07d2009-01-02 13:49:47 +0000350static inline int map_8250_out_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000351{
David Daney7d6a07d2009-01-02 13:49:47 +0000352 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000353 return offset;
354 return au_io_out_map[offset];
355}
356
Alan Cox6f803cd2008-02-08 04:18:52 -0800357#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700358
359static const u8
360 regmap_in[8] = {
361 [UART_RX] = 0x00,
362 [UART_IER] = 0x0c,
363 [UART_IIR] = 0x14,
364 [UART_LCR] = 0x1c,
365 [UART_MCR] = 0x20,
366 [UART_LSR] = 0x24,
367 [UART_MSR] = 0x28,
368 [UART_SCR] = 0x2c
369 },
370 regmap_out[8] = {
371 [UART_TX] = 0x04,
372 [UART_IER] = 0x0c,
373 [UART_FCR] = 0x18,
374 [UART_LCR] = 0x1c,
375 [UART_MCR] = 0x20,
376 [UART_LSR] = 0x24,
377 [UART_MSR] = 0x28,
378 [UART_SCR] = 0x2c
379 };
380
David Daney7d6a07d2009-01-02 13:49:47 +0000381static inline int map_8250_in_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700382{
David Daney7d6a07d2009-01-02 13:49:47 +0000383 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700384 return offset;
385 return regmap_in[offset];
386}
387
David Daney7d6a07d2009-01-02 13:49:47 +0000388static inline int map_8250_out_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700389{
David Daney7d6a07d2009-01-02 13:49:47 +0000390 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700391 return offset;
392 return regmap_out[offset];
393}
394
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000395#else
396
397/* sane hardware needs no mapping */
398#define map_8250_in_reg(up, offset) (offset)
399#define map_8250_out_reg(up, offset) (offset)
400
401#endif
402
David Daney7d6a07d2009-01-02 13:49:47 +0000403static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
David Daney7d6a07d2009-01-02 13:49:47 +0000405 offset = map_8250_in_reg(p, offset) << p->regshift;
406 outb(p->hub6 - 1 + offset, p->iobase);
407 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
David Daney7d6a07d2009-01-02 13:49:47 +0000410static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
David Daney7d6a07d2009-01-02 13:49:47 +0000412 offset = map_8250_out_reg(p, offset) << p->regshift;
413 outb(p->hub6 - 1 + offset, p->iobase);
414 outb(value, p->iobase + 1);
415}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
David Daney7d6a07d2009-01-02 13:49:47 +0000417static unsigned int mem_serial_in(struct uart_port *p, int offset)
418{
419 offset = map_8250_in_reg(p, offset) << p->regshift;
420 return readb(p->membase + offset);
421}
422
423static void mem_serial_out(struct uart_port *p, int offset, int value)
424{
425 offset = map_8250_out_reg(p, offset) << p->regshift;
426 writeb(value, p->membase + offset);
427}
428
429static void mem32_serial_out(struct uart_port *p, int offset, int value)
430{
431 offset = map_8250_out_reg(p, offset) << p->regshift;
432 writel(value, p->membase + offset);
433}
434
435static unsigned int mem32_serial_in(struct uart_port *p, int offset)
436{
437 offset = map_8250_in_reg(p, offset) << p->regshift;
438 return readl(p->membase + offset);
439}
440
David Daney7d6a07d2009-01-02 13:49:47 +0000441static unsigned int au_serial_in(struct uart_port *p, int offset)
442{
443 offset = map_8250_in_reg(p, offset) << p->regshift;
444 return __raw_readl(p->membase + offset);
445}
446
447static void au_serial_out(struct uart_port *p, int offset, int value)
448{
449 offset = map_8250_out_reg(p, offset) << p->regshift;
450 __raw_writel(value, p->membase + offset);
451}
David Daney7d6a07d2009-01-02 13:49:47 +0000452
453static unsigned int tsi_serial_in(struct uart_port *p, int offset)
454{
455 unsigned int tmp;
456 offset = map_8250_in_reg(p, offset) << p->regshift;
457 if (offset == UART_IIR) {
458 tmp = readl(p->membase + (UART_IIR & ~3));
459 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
460 } else
461 return readb(p->membase + offset);
462}
463
464static void tsi_serial_out(struct uart_port *p, int offset, int value)
465{
466 offset = map_8250_out_reg(p, offset) << p->regshift;
467 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
468 writeb(value, p->membase + offset);
469}
470
David Daney7d6a07d2009-01-02 13:49:47 +0000471static unsigned int io_serial_in(struct uart_port *p, int offset)
472{
473 offset = map_8250_in_reg(p, offset) << p->regshift;
474 return inb(p->iobase + offset);
475}
476
477static void io_serial_out(struct uart_port *p, int offset, int value)
478{
479 offset = map_8250_out_reg(p, offset) << p->regshift;
480 outb(value, p->iobase + offset);
481}
482
Jamie Iles583d28e2011-08-15 10:17:52 +0100483static int serial8250_default_handle_irq(struct uart_port *port);
484
David Daney7d6a07d2009-01-02 13:49:47 +0000485static void set_io_from_upio(struct uart_port *p)
486{
Jamie Iles49d57412010-12-01 23:39:35 +0000487 struct uart_8250_port *up =
488 container_of(p, struct uart_8250_port, port);
David Daney7d6a07d2009-01-02 13:49:47 +0000489 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000491 p->serial_in = hub6_serial_in;
492 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
494
495 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000496 p->serial_in = mem_serial_in;
497 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 break;
499
Thomas Koellerbd71c182007-05-06 14:48:47 -0700500 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000502 p->serial_in = mem32_serial_in;
503 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000506 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000507 p->serial_in = au_serial_in;
508 p->serial_out = au_serial_out;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000509 break;
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200510
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700511 case UPIO_TSI:
David Daney7d6a07d2009-01-02 13:49:47 +0000512 p->serial_in = tsi_serial_in;
513 p->serial_out = tsi_serial_out;
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700514 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000517 p->serial_in = io_serial_in;
518 p->serial_out = io_serial_out;
519 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100521 /* Remember loaded iotype */
522 up->cur_iotype = p->iotype;
Jamie Iles583d28e2011-08-15 10:17:52 +0100523 p->handle_irq = serial8250_default_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
Alex Williamson40b36da2007-02-14 00:33:04 -0800526static void
527serial_out_sync(struct uart_8250_port *up, int offset, int value)
528{
David Daney7d6a07d2009-01-02 13:49:47 +0000529 struct uart_port *p = &up->port;
530 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800531 case UPIO_MEM:
532 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800533 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000534 p->serial_out(p, offset, value);
535 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800536 break;
537 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000538 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800539 }
540}
541
David Daney7d6a07d2009-01-02 13:49:47 +0000542#define serial_in(up, offset) \
543 (up->port.serial_in(&(up)->port, (offset)))
544#define serial_out(up, offset, value) \
545 (up->port.serial_out(&(up)->port, (offset), (value)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/*
547 * We used to support using pause I/O for certain machines. We
548 * haven't supported this for a while, but just in case it's badly
549 * needed for certain old 386 machines, I've left these #define's
550 * in....
551 */
552#define serial_inp(up, offset) serial_in(up, offset)
553#define serial_outp(up, offset, value) serial_out(up, offset, value)
554
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100555/* Uart divisor latch read */
556static inline int _serial_dl_read(struct uart_8250_port *up)
557{
558 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
559}
560
561/* Uart divisor latch write */
562static inline void _serial_dl_write(struct uart_8250_port *up, int value)
563{
564 serial_outp(up, UART_DLL, value & 0xff);
565 serial_outp(up, UART_DLM, value >> 8 & 0xff);
566}
567
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200568#if defined(CONFIG_MIPS_ALCHEMY)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100569/* Au1x00 haven't got a standard divisor latch */
570static int serial_dl_read(struct uart_8250_port *up)
571{
572 if (up->port.iotype == UPIO_AU)
573 return __raw_readl(up->port.membase + 0x28);
574 else
575 return _serial_dl_read(up);
576}
577
578static void serial_dl_write(struct uart_8250_port *up, int value)
579{
580 if (up->port.iotype == UPIO_AU)
581 __raw_writel(value, up->port.membase + 0x28);
582 else
583 _serial_dl_write(up, value);
584}
Alan Cox6f803cd2008-02-08 04:18:52 -0800585#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700586static int serial_dl_read(struct uart_8250_port *up)
587{
588 return (up->port.iotype == UPIO_RM9000) ?
589 (((__raw_readl(up->port.membase + 0x10) << 8) |
590 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
591 _serial_dl_read(up);
592}
593
594static void serial_dl_write(struct uart_8250_port *up, int value)
595{
596 if (up->port.iotype == UPIO_RM9000) {
597 __raw_writel(value, up->port.membase + 0x08);
598 __raw_writel(value >> 8, up->port.membase + 0x10);
599 } else {
600 _serial_dl_write(up, value);
601 }
602}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100603#else
604#define serial_dl_read(up) _serial_dl_read(up)
605#define serial_dl_write(up, value) _serial_dl_write(up, value)
606#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608/*
609 * For the 16C950
610 */
611static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
612{
613 serial_out(up, UART_SCR, offset);
614 serial_out(up, UART_ICR, value);
615}
616
617static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
618{
619 unsigned int value;
620
621 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
622 serial_out(up, UART_SCR, offset);
623 value = serial_in(up, UART_ICR);
624 serial_icr_write(up, UART_ACR, up->acr);
625
626 return value;
627}
628
629/*
630 * FIFO support.
631 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100632static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 if (p->capabilities & UART_CAP_FIFO) {
635 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
636 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
637 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
638 serial_outp(p, UART_FCR, 0);
639 }
640}
641
642/*
643 * IER sleep support. UARTs which have EFRs need the "extended
644 * capability" bit enabled. Note that on XR16C850s, we need to
645 * reset LCR to write to IER.
646 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100647static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 if (p->capabilities & UART_CAP_SLEEP) {
650 if (p->capabilities & UART_CAP_EFR) {
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800651 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 serial_outp(p, UART_EFR, UART_EFR_ECB);
653 serial_outp(p, UART_LCR, 0);
654 }
655 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
656 if (p->capabilities & UART_CAP_EFR) {
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800657 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 serial_outp(p, UART_EFR, 0);
659 serial_outp(p, UART_LCR, 0);
660 }
661 }
662}
663
664#ifdef CONFIG_SERIAL_8250_RSA
665/*
666 * Attempts to turn on the RSA FIFO. Returns zero on failure.
667 * We set the port uart clock rate if we succeed.
668 */
669static int __enable_rsa(struct uart_8250_port *up)
670{
671 unsigned char mode;
672 int result;
673
674 mode = serial_inp(up, UART_RSA_MSR);
675 result = mode & UART_RSA_MSR_FIFO;
676
677 if (!result) {
678 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
679 mode = serial_inp(up, UART_RSA_MSR);
680 result = mode & UART_RSA_MSR_FIFO;
681 }
682
683 if (result)
684 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
685
686 return result;
687}
688
689static void enable_rsa(struct uart_8250_port *up)
690{
691 if (up->port.type == PORT_RSA) {
692 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
693 spin_lock_irq(&up->port.lock);
694 __enable_rsa(up);
695 spin_unlock_irq(&up->port.lock);
696 }
697 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
698 serial_outp(up, UART_RSA_FRR, 0);
699 }
700}
701
702/*
703 * Attempts to turn off the RSA FIFO. Returns zero on failure.
704 * It is unknown why interrupts were disabled in here. However,
705 * the caller is expected to preserve this behaviour by grabbing
706 * the spinlock before calling this function.
707 */
708static void disable_rsa(struct uart_8250_port *up)
709{
710 unsigned char mode;
711 int result;
712
713 if (up->port.type == PORT_RSA &&
714 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
715 spin_lock_irq(&up->port.lock);
716
717 mode = serial_inp(up, UART_RSA_MSR);
718 result = !(mode & UART_RSA_MSR_FIFO);
719
720 if (!result) {
721 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
722 mode = serial_inp(up, UART_RSA_MSR);
723 result = !(mode & UART_RSA_MSR_FIFO);
724 }
725
726 if (result)
727 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
728 spin_unlock_irq(&up->port.lock);
729 }
730}
731#endif /* CONFIG_SERIAL_8250_RSA */
732
733/*
734 * This is a quickie test to see how big the FIFO is.
735 * It doesn't work at all the time, more's the pity.
736 */
737static int size_fifo(struct uart_8250_port *up)
738{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100739 unsigned char old_fcr, old_mcr, old_lcr;
740 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 int count;
742
743 old_lcr = serial_inp(up, UART_LCR);
744 serial_outp(up, UART_LCR, 0);
745 old_fcr = serial_inp(up, UART_FCR);
746 old_mcr = serial_inp(up, UART_MCR);
747 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
748 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
749 serial_outp(up, UART_MCR, UART_MCR_LOOP);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800750 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100751 old_dl = serial_dl_read(up);
752 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 serial_outp(up, UART_LCR, 0x03);
754 for (count = 0; count < 256; count++)
755 serial_outp(up, UART_TX, count);
756 mdelay(20);/* FIXME - schedule_timeout */
757 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
758 (count < 256); count++)
759 serial_inp(up, UART_RX);
760 serial_outp(up, UART_FCR, old_fcr);
761 serial_outp(up, UART_MCR, old_mcr);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800762 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100763 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 serial_outp(up, UART_LCR, old_lcr);
765
766 return count;
767}
768
769/*
770 * Read UART ID using the divisor method - set DLL and DLM to zero
771 * and the revision will be in DLL and device type in DLM. We
772 * preserve the device state across this.
773 */
774static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
775{
776 unsigned char old_dll, old_dlm, old_lcr;
777 unsigned int id;
778
779 old_lcr = serial_inp(p, UART_LCR);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800780 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 old_dll = serial_inp(p, UART_DLL);
783 old_dlm = serial_inp(p, UART_DLM);
784
785 serial_outp(p, UART_DLL, 0);
786 serial_outp(p, UART_DLM, 0);
787
788 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
789
790 serial_outp(p, UART_DLL, old_dll);
791 serial_outp(p, UART_DLM, old_dlm);
792 serial_outp(p, UART_LCR, old_lcr);
793
794 return id;
795}
796
797/*
798 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
799 * When this function is called we know it is at least a StarTech
800 * 16650 V2, but it might be one of several StarTech UARTs, or one of
801 * its clones. (We treat the broken original StarTech 16650 V1 as a
802 * 16550, and why not? Startech doesn't seem to even acknowledge its
803 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700804 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * What evil have men's minds wrought...
806 */
807static void autoconfig_has_efr(struct uart_8250_port *up)
808{
809 unsigned int id1, id2, id3, rev;
810
811 /*
812 * Everything with an EFR has SLEEP
813 */
814 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
815
816 /*
817 * First we check to see if it's an Oxford Semiconductor UART.
818 *
819 * If we have to do this here because some non-National
820 * Semiconductor clone chips lock up if you try writing to the
821 * LSR register (which serial_icr_read does)
822 */
823
824 /*
825 * Check for Oxford Semiconductor 16C950.
826 *
827 * EFR [4] must be set else this test fails.
828 *
829 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
830 * claims that it's needed for 952 dual UART's (which are not
831 * recommended for new designs).
832 */
833 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800834 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 serial_out(up, UART_EFR, UART_EFR_ECB);
836 serial_out(up, UART_LCR, 0x00);
837 id1 = serial_icr_read(up, UART_ID1);
838 id2 = serial_icr_read(up, UART_ID2);
839 id3 = serial_icr_read(up, UART_ID3);
840 rev = serial_icr_read(up, UART_REV);
841
842 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
843
844 if (id1 == 0x16 && id2 == 0xC9 &&
845 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
846 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100847
848 /*
849 * Enable work around for the Oxford Semiconductor 952 rev B
850 * chip which causes it to seriously miscalculate baud rates
851 * when DLL is 0.
852 */
853 if (id3 == 0x52 && rev == 0x01)
854 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return;
856 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /*
859 * We check for a XR16C850 by setting DLL and DLM to 0, and then
860 * reading back DLL and DLM. The chip type depends on the DLM
861 * value read back:
862 * 0x10 - XR16C850 and the DLL contains the chip revision.
863 * 0x12 - XR16C2850.
864 * 0x14 - XR16C854.
865 */
866 id1 = autoconfig_read_divisor_id(up);
867 DEBUG_AUTOCONF("850id=%04x ", id1);
868
869 id2 = id1 >> 8;
870 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 up->port.type = PORT_16850;
872 return;
873 }
874
875 /*
876 * It wasn't an XR16C850.
877 *
878 * We distinguish between the '654 and the '650 by counting
879 * how many bytes are in the FIFO. I'm using this for now,
880 * since that's the technique that was sent to me in the
881 * serial driver update, but I'm not convinced this works.
882 * I've had problems doing this in the past. -TYT
883 */
884 if (size_fifo(up) == 64)
885 up->port.type = PORT_16654;
886 else
887 up->port.type = PORT_16650V2;
888}
889
890/*
891 * We detected a chip without a FIFO. Only two fall into
892 * this category - the original 8250 and the 16450. The
893 * 16450 has a scratch register (accessible with LCR=0)
894 */
895static void autoconfig_8250(struct uart_8250_port *up)
896{
897 unsigned char scratch, status1, status2;
898
899 up->port.type = PORT_8250;
900
901 scratch = serial_in(up, UART_SCR);
902 serial_outp(up, UART_SCR, 0xa5);
903 status1 = serial_in(up, UART_SCR);
904 serial_outp(up, UART_SCR, 0x5a);
905 status2 = serial_in(up, UART_SCR);
906 serial_outp(up, UART_SCR, scratch);
907
908 if (status1 == 0xa5 && status2 == 0x5a)
909 up->port.type = PORT_16450;
910}
911
912static int broken_efr(struct uart_8250_port *up)
913{
914 /*
915 * Exar ST16C2550 "A2" devices incorrectly detect as
916 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200917 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 */
919 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
920 return 1;
921
922 return 0;
923}
924
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800925static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
926{
927 unsigned char status;
928
929 status = serial_in(up, 0x04); /* EXCR2 */
930#define PRESL(x) ((x) & 0x30)
931 if (PRESL(status) == 0x10) {
932 /* already in high speed mode */
933 return 0;
934 } else {
935 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
936 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
937 serial_outp(up, 0x04, status);
938 }
939 return 1;
940}
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942/*
943 * We know that the chip has FIFOs. Does it have an EFR? The
944 * EFR is located in the same register position as the IIR and
945 * we know the top two bits of the IIR are currently set. The
946 * EFR should contain zero. Try to read the EFR.
947 */
948static void autoconfig_16550a(struct uart_8250_port *up)
949{
950 unsigned char status1, status2;
951 unsigned int iersave;
952
953 up->port.type = PORT_16550A;
954 up->capabilities |= UART_CAP_FIFO;
955
956 /*
957 * Check for presence of the EFR when DLAB is set.
958 * Only ST16C650V1 UARTs pass this test.
959 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800960 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (serial_in(up, UART_EFR) == 0) {
962 serial_outp(up, UART_EFR, 0xA8);
963 if (serial_in(up, UART_EFR) != 0) {
964 DEBUG_AUTOCONF("EFRv1 ");
965 up->port.type = PORT_16650;
966 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
967 } else {
968 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
969 }
970 serial_outp(up, UART_EFR, 0);
971 return;
972 }
973
974 /*
975 * Maybe it requires 0xbf to be written to the LCR.
976 * (other ST16C650V2 UARTs, TI16C752A, etc)
977 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800978 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
980 DEBUG_AUTOCONF("EFRv2 ");
981 autoconfig_has_efr(up);
982 return;
983 }
984
985 /*
986 * Check for a National Semiconductor SuperIO chip.
987 * Attempt to switch to bank 2, read the value of the LOOP bit
988 * from EXCR1. Switch back to bank 0, change it in MCR. Then
989 * switch back to bank 2, read it from EXCR1 again and check
990 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 */
992 serial_outp(up, UART_LCR, 0);
993 status1 = serial_in(up, UART_MCR);
994 serial_outp(up, UART_LCR, 0xE0);
995 status2 = serial_in(up, 0x02); /* EXCR1 */
996
997 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
998 serial_outp(up, UART_LCR, 0);
999 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
1000 serial_outp(up, UART_LCR, 0xE0);
1001 status2 = serial_in(up, 0x02); /* EXCR1 */
1002 serial_outp(up, UART_LCR, 0);
1003 serial_outp(up, UART_MCR, status1);
1004
1005 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +01001006 unsigned short quot;
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +01001009
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01001010 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +01001011 quot <<= 3;
1012
Yin Kangkai0d0389e2011-02-09 11:35:18 +08001013 if (ns16550a_goto_highspeed(up))
1014 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
David Woodhouse857dde22005-05-21 15:52:23 +01001016 serial_outp(up, UART_LCR, 0);
1017
1018 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 up->port.type = PORT_NS16550A;
1020 up->capabilities |= UART_NATSEMI;
1021 return;
1022 }
1023 }
1024
1025 /*
1026 * No EFR. Try to detect a TI16750, which only sets bit 5 of
1027 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1028 * Try setting it with and without DLAB set. Cheap clones
1029 * set bit 5 without DLAB set.
1030 */
1031 serial_outp(up, UART_LCR, 0);
1032 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1033 status1 = serial_in(up, UART_IIR) >> 5;
1034 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001035 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1037 status2 = serial_in(up, UART_IIR) >> 5;
1038 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1039 serial_outp(up, UART_LCR, 0);
1040
1041 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1042
1043 if (status1 == 6 && status2 == 7) {
1044 up->port.type = PORT_16750;
1045 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1046 return;
1047 }
1048
1049 /*
1050 * Try writing and reading the UART_IER_UUE bit (b6).
1051 * If it works, this is probably one of the Xscale platform's
1052 * internal UARTs.
1053 * We're going to explicitly set the UUE bit to 0 before
1054 * trying to write and read a 1 just to make sure it's not
1055 * already a 1 and maybe locked there before we even start start.
1056 */
1057 iersave = serial_in(up, UART_IER);
1058 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
1059 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1060 /*
1061 * OK it's in a known zero state, try writing and reading
1062 * without disturbing the current state of the other bits.
1063 */
1064 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
1065 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1066 /*
1067 * It's an Xscale.
1068 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1069 */
1070 DEBUG_AUTOCONF("Xscale ");
1071 up->port.type = PORT_XSCALE;
Stephen Warren55681812011-06-17 09:45:07 -06001072 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return;
1074 }
1075 } else {
1076 /*
1077 * If we got here we couldn't force the IER_UUE bit to 0.
1078 * Log it and continue.
1079 */
1080 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1081 }
1082 serial_outp(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001083
1084 /*
Søren Holm06315342011-09-02 22:55:37 +02001085 * Exar uarts have EFR in a weird location
1086 */
1087 if (up->port.flags & UPF_EXAR_EFR) {
1088 up->port.type = PORT_XR17D15X;
1089 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR;
1090 }
1091
1092 /*
Philippe Langlais235dae52010-07-29 17:13:57 +02001093 * We distinguish between 16550A and U6 16550A by counting
1094 * how many bytes are in the FIFO.
1095 */
1096 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1097 up->port.type = PORT_U6_16550A;
1098 up->capabilities |= UART_CAP_AFE;
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
1102/*
1103 * This routine is called by rs_init() to initialize a specific serial
1104 * port. It determines what type of UART chip this serial port is
1105 * using: 8250, 16450, 16550, 16550A. The important question is
1106 * whether or not this UART is a 16550A or not, since this will
1107 * determine whether or not we can use its FIFO features or not.
1108 */
1109static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1110{
1111 unsigned char status1, scratch, scratch2, scratch3;
1112 unsigned char save_lcr, save_mcr;
1113 unsigned long flags;
1114
1115 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
1116 return;
1117
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001118 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
David S. Miller84408382008-10-13 10:45:26 +01001119 serial_index(&up->port), up->port.iobase, up->port.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 /*
1122 * We really do need global IRQs disabled here - we're going to
1123 * be frobbing the chips IRQ enable register to see if it exists.
1124 */
1125 spin_lock_irqsave(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001128 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 if (!(up->port.flags & UPF_BUGGY_UART)) {
1131 /*
1132 * Do a simple existence test first; if we fail this,
1133 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001134 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 * 0x80 is used as a nonsense port to prevent against
1136 * false positives due to ISA bus float. The
1137 * assumption is that 0x80 is a non-existent port;
1138 * which should be safe since include/asm/io.h also
1139 * makes this assumption.
1140 *
1141 * Note: this is safe as long as MCR bit 4 is clear
1142 * and the device is in "PC" mode.
1143 */
1144 scratch = serial_inp(up, UART_IER);
1145 serial_outp(up, UART_IER, 0);
1146#ifdef __i386__
1147 outb(0xff, 0x080);
1148#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001149 /*
1150 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1151 * 16C754B) allow only to modify them if an EFR bit is set.
1152 */
1153 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 serial_outp(up, UART_IER, 0x0F);
1155#ifdef __i386__
1156 outb(0, 0x080);
1157#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001158 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 serial_outp(up, UART_IER, scratch);
1160 if (scratch2 != 0 || scratch3 != 0x0F) {
1161 /*
1162 * We failed; there's nothing here
1163 */
1164 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1165 scratch2, scratch3);
1166 goto out;
1167 }
1168 }
1169
1170 save_mcr = serial_in(up, UART_MCR);
1171 save_lcr = serial_in(up, UART_LCR);
1172
Thomas Koellerbd71c182007-05-06 14:48:47 -07001173 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 * Check to see if a UART is really there. Certain broken
1175 * internal modems based on the Rockwell chipset fail this
1176 * test, because they apparently don't implement the loopback
1177 * test mode. So this test is skipped on the COM 1 through
1178 * COM 4 ports. This *should* be safe, since no board
1179 * manufacturer would be stupid enough to design a board
1180 * that conflicts with COM 1-4 --- we hope!
1181 */
1182 if (!(up->port.flags & UPF_SKIP_TEST)) {
1183 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1184 status1 = serial_inp(up, UART_MSR) & 0xF0;
1185 serial_outp(up, UART_MCR, save_mcr);
1186 if (status1 != 0x90) {
1187 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1188 status1);
1189 goto out;
1190 }
1191 }
1192
1193 /*
1194 * We're pretty sure there's a port here. Lets find out what
1195 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001196 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 * determines what we test for next.
1198 *
1199 * We also initialise the EFR (if any) to zero for later. The
1200 * EFR occupies the same register location as the FCR and IIR.
1201 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001202 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 serial_outp(up, UART_EFR, 0);
1204 serial_outp(up, UART_LCR, 0);
1205
1206 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1207 scratch = serial_in(up, UART_IIR) >> 6;
1208
1209 DEBUG_AUTOCONF("iir=%d ", scratch);
1210
1211 switch (scratch) {
1212 case 0:
1213 autoconfig_8250(up);
1214 break;
1215 case 1:
1216 up->port.type = PORT_UNKNOWN;
1217 break;
1218 case 2:
1219 up->port.type = PORT_16550;
1220 break;
1221 case 3:
1222 autoconfig_16550a(up);
1223 break;
1224 }
1225
1226#ifdef CONFIG_SERIAL_8250_RSA
1227 /*
1228 * Only probe for RSA ports if we got the region.
1229 */
1230 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1231 int i;
1232
1233 for (i = 0 ; i < probe_rsa_count; ++i) {
1234 if (probe_rsa[i] == up->port.iobase &&
1235 __enable_rsa(up)) {
1236 up->port.type = PORT_RSA;
1237 break;
1238 }
1239 }
1240 }
1241#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 serial_outp(up, UART_LCR, save_lcr);
1244
1245 if (up->capabilities != uart_config[up->port.type].flags) {
1246 printk(KERN_WARNING
1247 "ttyS%d: detected caps %08x should be %08x\n",
David S. Miller84408382008-10-13 10:45:26 +01001248 serial_index(&up->port), up->capabilities,
1249 uart_config[up->port.type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251
1252 up->port.fifosize = uart_config[up->port.type].fifo_size;
1253 up->capabilities = uart_config[up->port.type].flags;
1254 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1255
1256 if (up->port.type == PORT_UNKNOWN)
1257 goto out;
1258
1259 /*
1260 * Reset the UART.
1261 */
1262#ifdef CONFIG_SERIAL_8250_RSA
1263 if (up->port.type == PORT_RSA)
1264 serial_outp(up, UART_RSA_FRR, 0);
1265#endif
1266 serial_outp(up, UART_MCR, save_mcr);
1267 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001268 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001269 if (up->capabilities & UART_CAP_UUE)
1270 serial_outp(up, UART_IER, UART_IER_UUE);
1271 else
1272 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Thomas Koellerbd71c182007-05-06 14:48:47 -07001274 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1277}
1278
1279static void autoconfig_irq(struct uart_8250_port *up)
1280{
1281 unsigned char save_mcr, save_ier;
1282 unsigned char save_ICP = 0;
1283 unsigned int ICP = 0;
1284 unsigned long irqs;
1285 int irq;
1286
1287 if (up->port.flags & UPF_FOURPORT) {
1288 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1289 save_ICP = inb_p(ICP);
1290 outb_p(0x80, ICP);
1291 (void) inb_p(ICP);
1292 }
1293
1294 /* forget possible initially masked and pending IRQ */
1295 probe_irq_off(probe_irq_on());
1296 save_mcr = serial_inp(up, UART_MCR);
1297 save_ier = serial_inp(up, UART_IER);
1298 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 irqs = probe_irq_on();
1301 serial_outp(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001302 udelay(10);
1303 if (up->port.flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 serial_outp(up, UART_MCR,
1305 UART_MCR_DTR | UART_MCR_RTS);
1306 } else {
1307 serial_outp(up, UART_MCR,
1308 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1309 }
1310 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1311 (void)serial_inp(up, UART_LSR);
1312 (void)serial_inp(up, UART_RX);
1313 (void)serial_inp(up, UART_IIR);
1314 (void)serial_inp(up, UART_MSR);
1315 serial_outp(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001316 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 irq = probe_irq_off(irqs);
1318
1319 serial_outp(up, UART_MCR, save_mcr);
1320 serial_outp(up, UART_IER, save_ier);
1321
1322 if (up->port.flags & UPF_FOURPORT)
1323 outb_p(save_ICP, ICP);
1324
1325 up->port.irq = (irq > 0) ? irq : 0;
1326}
1327
Russell Kinge763b902005-06-29 18:41:51 +01001328static inline void __stop_tx(struct uart_8250_port *p)
1329{
1330 if (p->ier & UART_IER_THRI) {
1331 p->ier &= ~UART_IER_THRI;
1332 serial_out(p, UART_IER, p->ier);
1333 }
1334}
1335
Russell Kingb129a8c2005-08-31 10:12:14 +01001336static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
Jamie Iles49d57412010-12-01 23:39:35 +00001338 struct uart_8250_port *up =
1339 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Russell Kinge763b902005-06-29 18:41:51 +01001341 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 /*
Russell Kinge763b902005-06-29 18:41:51 +01001344 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 */
Russell Kinge763b902005-06-29 18:41:51 +01001346 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 up->acr |= UART_ACR_TXDIS;
1348 serial_icr_write(up, UART_ACR, up->acr);
1349 }
1350}
1351
Russell King55d3b282005-06-23 15:05:41 +01001352static void transmit_chars(struct uart_8250_port *up);
1353
Russell Kingb129a8c2005-08-31 10:12:14 +01001354static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Jamie Iles49d57412010-12-01 23:39:35 +00001356 struct uart_8250_port *up =
1357 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 if (!(up->ier & UART_IER_THRI)) {
1360 up->ier |= UART_IER_THRI;
1361 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001362
Russell King67f76542005-06-23 22:26:43 +01001363 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001364 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001365 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001366 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Thomas Koellerbd71c182007-05-06 14:48:47 -07001367 if ((up->port.type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001368 (lsr & UART_LSR_THRE) :
1369 (lsr & UART_LSR_TEMT))
Russell King55d3b282005-06-23 15:05:41 +01001370 transmit_chars(up);
1371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 }
Russell Kinge763b902005-06-29 18:41:51 +01001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /*
Russell Kinge763b902005-06-29 18:41:51 +01001375 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 */
Russell Kinge763b902005-06-29 18:41:51 +01001377 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 up->acr &= ~UART_ACR_TXDIS;
1379 serial_icr_write(up, UART_ACR, up->acr);
1380 }
1381}
1382
1383static void serial8250_stop_rx(struct uart_port *port)
1384{
Jamie Iles49d57412010-12-01 23:39:35 +00001385 struct uart_8250_port *up =
1386 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 up->ier &= ~UART_IER_RLSI;
1389 up->port.read_status_mask &= ~UART_LSR_DR;
1390 serial_out(up, UART_IER, up->ier);
1391}
1392
1393static void serial8250_enable_ms(struct uart_port *port)
1394{
Jamie Iles49d57412010-12-01 23:39:35 +00001395 struct uart_8250_port *up =
1396 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001398 /* no MSR capabilities */
1399 if (up->bugs & UART_BUG_NOMSR)
1400 return;
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 up->ier |= UART_IER_MSI;
1403 serial_out(up, UART_IER, up->ier);
1404}
1405
Stephen Warren5f873ba2011-05-17 16:12:37 -06001406/*
1407 * Clear the Tegra rx fifo after a break
1408 *
1409 * FIXME: This needs to become a port specific callback once we have a
1410 * framework for this
1411 */
1412static void clear_rx_fifo(struct uart_8250_port *up)
1413{
1414 unsigned int status, tmout = 10000;
1415 do {
1416 status = serial_in(up, UART_LSR);
1417 if (status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS))
1418 status = serial_in(up, UART_RX);
1419 else
1420 break;
1421 if (--tmout == 0)
1422 break;
1423 udelay(1);
1424 } while (1);
1425}
1426
Russell Kingea8874d2006-01-04 19:43:24 +00001427static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001428receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001430 struct tty_struct *tty = up->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 unsigned char ch, lsr = *status;
1432 int max_count = 256;
1433 char flag;
1434
1435 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001436 if (likely(lsr & UART_LSR_DR))
1437 ch = serial_inp(up, UART_RX);
1438 else
1439 /*
1440 * Intel 82571 has a Serial Over Lan device that will
1441 * set UART_LSR_BI without setting UART_LSR_DR when
1442 * it receives a break. To avoid reading from the
1443 * receive buffer without UART_LSR_DR bit set, we
1444 * just force the read character to be 0
1445 */
1446 ch = 0;
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 flag = TTY_NORMAL;
1449 up->port.icount.rx++;
1450
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001451 lsr |= up->lsr_saved_flags;
1452 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001454 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /*
1456 * For statistics only
1457 */
1458 if (lsr & UART_LSR_BI) {
1459 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1460 up->port.icount.brk++;
1461 /*
Stephen Warren5f873ba2011-05-17 16:12:37 -06001462 * If tegra port then clear the rx fifo to
1463 * accept another break/character.
1464 */
1465 if (up->port.type == PORT_TEGRA)
1466 clear_rx_fifo(up);
1467
1468 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 * We do the SysRQ and SAK checking
1470 * here because otherwise the break
1471 * may get masked by ignore_status_mask
1472 * or read_status_mask.
1473 */
1474 if (uart_handle_break(&up->port))
1475 goto ignore_char;
1476 } else if (lsr & UART_LSR_PE)
1477 up->port.icount.parity++;
1478 else if (lsr & UART_LSR_FE)
1479 up->port.icount.frame++;
1480 if (lsr & UART_LSR_OE)
1481 up->port.icount.overrun++;
1482
1483 /*
Russell King23907eb2005-04-16 15:26:39 -07001484 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 */
1486 lsr &= up->port.read_status_mask;
1487
1488 if (lsr & UART_LSR_BI) {
1489 DEBUG_INTR("handling break....");
1490 flag = TTY_BREAK;
1491 } else if (lsr & UART_LSR_PE)
1492 flag = TTY_PARITY;
1493 else if (lsr & UART_LSR_FE)
1494 flag = TTY_FRAME;
1495 }
David Howells7d12e782006-10-05 14:55:46 +01001496 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001498
1499 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1500
Alan Cox6f803cd2008-02-08 04:18:52 -08001501ignore_char:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 lsr = serial_inp(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001503 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 spin_unlock(&up->port.lock);
1505 tty_flip_buffer_push(tty);
1506 spin_lock(&up->port.lock);
1507 *status = lsr;
1508}
1509
Russell Kingea8874d2006-01-04 19:43:24 +00001510static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001512 struct circ_buf *xmit = &up->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 int count;
1514
1515 if (up->port.x_char) {
1516 serial_outp(up, UART_TX, up->port.x_char);
1517 up->port.icount.tx++;
1518 up->port.x_char = 0;
1519 return;
1520 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001521 if (uart_tx_stopped(&up->port)) {
1522 serial8250_stop_tx(&up->port);
1523 return;
1524 }
1525 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001526 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return;
1528 }
1529
1530 count = up->tx_loadsz;
1531 do {
1532 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1533 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1534 up->port.icount.tx++;
1535 if (uart_circ_empty(xmit))
1536 break;
1537 } while (--count > 0);
1538
1539 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1540 uart_write_wakeup(&up->port);
1541
1542 DEBUG_INTR("THRE...");
1543
1544 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001545 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Russell King2af7cd62006-01-04 16:55:09 +00001548static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Russell King2af7cd62006-01-04 16:55:09 +00001550 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001552 status |= up->msr_saved_flags;
1553 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001554 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001555 up->port.state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001556 if (status & UART_MSR_TERI)
1557 up->port.icount.rng++;
1558 if (status & UART_MSR_DDSR)
1559 up->port.icount.dsr++;
1560 if (status & UART_MSR_DDCD)
1561 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1562 if (status & UART_MSR_DCTS)
1563 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Alan Coxbdc04e32009-09-19 13:13:31 -07001565 wake_up_interruptible(&up->port.state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Russell King2af7cd62006-01-04 16:55:09 +00001568 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
1571/*
1572 * This handles the interrupt from one port.
1573 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001574static void serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Russell King45e24602006-01-04 19:19:06 +00001576 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001577 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001578
Jiri Kosina4bf36312007-04-23 14:41:21 -07001579 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001580
1581 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 DEBUG_INTR("status = %x...", status);
1584
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001585 if (status & (UART_LSR_DR | UART_LSR_BI))
David Howells7d12e782006-10-05 14:55:46 +01001586 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 check_modem_status(up);
1588 if (status & UART_LSR_THRE)
1589 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001590
Jiri Kosina4bf36312007-04-23 14:41:21 -07001591 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
Jamie Iles583d28e2011-08-15 10:17:52 +01001594int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
1595{
1596 struct uart_8250_port *up =
1597 container_of(port, struct uart_8250_port, port);
1598
1599 if (!(iir & UART_IIR_NO_INT)) {
1600 serial8250_handle_port(up);
1601 return 1;
1602 }
1603
1604 return 0;
1605}
Jamie Ilesc7a1bdc2011-08-26 19:04:49 +01001606EXPORT_SYMBOL_GPL(serial8250_handle_irq);
Jamie Iles583d28e2011-08-15 10:17:52 +01001607
1608static int serial8250_default_handle_irq(struct uart_port *port)
1609{
1610 struct uart_8250_port *up =
1611 container_of(port, struct uart_8250_port, port);
1612 unsigned int iir = serial_in(up, UART_IIR);
1613
1614 return serial8250_handle_irq(port, iir);
1615}
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617/*
1618 * This is the serial driver's interrupt routine.
1619 *
1620 * Arjan thinks the old way was overly complex, so it got simplified.
1621 * Alan disagrees, saying that need the complexity to handle the weird
1622 * nature of ISA shared interrupts. (This is a special exception.)
1623 *
1624 * In order to handle ISA shared interrupts properly, we need to check
1625 * that all ports have been serviced, and therefore the ISA interrupt
1626 * line has been de-asserted.
1627 *
1628 * This means we need to loop through all ports. checking that they
1629 * don't have an interrupt pending.
1630 */
David Howells7d12e782006-10-05 14:55:46 +01001631static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
1633 struct irq_info *i = dev_id;
1634 struct list_head *l, *end = NULL;
1635 int pass_counter = 0, handled = 0;
1636
1637 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1638
1639 spin_lock(&i->lock);
1640
1641 l = i->head;
1642 do {
1643 struct uart_8250_port *up;
Jamie Iles583d28e2011-08-15 10:17:52 +01001644 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 up = list_entry(l, struct uart_8250_port, list);
Jamie Iles583d28e2011-08-15 10:17:52 +01001647 port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Jamie Iles583d28e2011-08-15 10:17:52 +01001649 if (port->handle_irq(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 handled = 1;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001651 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 } else if (end == NULL)
1653 end = l;
1654
1655 l = l->next;
1656
1657 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1658 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001659 printk_ratelimited(KERN_ERR
1660 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 break;
1662 }
1663 } while (l != end);
1664
1665 spin_unlock(&i->lock);
1666
1667 DEBUG_INTR("end.\n");
1668
1669 return IRQ_RETVAL(handled);
1670}
1671
1672/*
1673 * To support ISA shared interrupts, we need to have one interrupt
1674 * handler that ensures that the IRQ line has been deasserted
1675 * before returning. Failing to do this will result in the IRQ
1676 * line being stuck active, and, since ISA irqs are edge triggered,
1677 * no more IRQs will be seen.
1678 */
1679static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1680{
1681 spin_lock_irq(&i->lock);
1682
1683 if (!list_empty(i->head)) {
1684 if (i->head == &up->list)
1685 i->head = i->head->next;
1686 list_del(&up->list);
1687 } else {
1688 BUG_ON(i->head != &up->list);
1689 i->head = NULL;
1690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001692 /* List empty so throw away the hash node */
1693 if (i->head == NULL) {
1694 hlist_del(&i->node);
1695 kfree(i);
1696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
1699static int serial_link_irq_chain(struct uart_8250_port *up)
1700{
Alan Cox25db8ad2008-08-19 20:49:40 -07001701 struct hlist_head *h;
1702 struct hlist_node *n;
1703 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001704 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Alan Cox25db8ad2008-08-19 20:49:40 -07001706 mutex_lock(&hash_mutex);
1707
1708 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1709
1710 hlist_for_each(n, h) {
1711 i = hlist_entry(n, struct irq_info, node);
1712 if (i->irq == up->port.irq)
1713 break;
1714 }
1715
1716 if (n == NULL) {
1717 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1718 if (i == NULL) {
1719 mutex_unlock(&hash_mutex);
1720 return -ENOMEM;
1721 }
1722 spin_lock_init(&i->lock);
1723 i->irq = up->port.irq;
1724 hlist_add_head(&i->node, h);
1725 }
1726 mutex_unlock(&hash_mutex);
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 spin_lock_irq(&i->lock);
1729
1730 if (i->head) {
1731 list_add(&up->list, i->head);
1732 spin_unlock_irq(&i->lock);
1733
1734 ret = 0;
1735 } else {
1736 INIT_LIST_HEAD(&up->list);
1737 i->head = &up->list;
1738 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001739 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 ret = request_irq(up->port.irq, serial8250_interrupt,
1741 irq_flags, "serial", i);
1742 if (ret < 0)
1743 serial_do_unlink(i, up);
1744 }
1745
1746 return ret;
1747}
1748
1749static void serial_unlink_irq_chain(struct uart_8250_port *up)
1750{
Alan Cox25db8ad2008-08-19 20:49:40 -07001751 struct irq_info *i;
1752 struct hlist_node *n;
1753 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Alan Cox25db8ad2008-08-19 20:49:40 -07001755 mutex_lock(&hash_mutex);
1756
1757 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1758
1759 hlist_for_each(n, h) {
1760 i = hlist_entry(n, struct irq_info, node);
1761 if (i->irq == up->port.irq)
1762 break;
1763 }
1764
1765 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 BUG_ON(i->head == NULL);
1767
1768 if (list_empty(i->head))
1769 free_irq(up->port.irq, i);
1770
1771 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001772 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773}
1774
1775/*
1776 * This function is used to handle ports that do not have an
1777 * interrupt. This doesn't work very well for 16450's, but gives
1778 * barely passable results for a 16550A. (Although at the expense
1779 * of much CPU overhead).
1780 */
1781static void serial8250_timeout(unsigned long data)
1782{
1783 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 unsigned int iir;
1785
1786 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001787 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001788 serial8250_handle_port(up);
Anton Vorontsov54381062010-10-01 17:21:25 +04001789 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001790}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Alex Williamson40b36da2007-02-14 00:33:04 -08001792static void serial8250_backup_timeout(unsigned long data)
1793{
1794 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001795 unsigned int iir, ier = 0, lsr;
1796 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001797
1798 /*
1799 * Must disable interrupts or else we risk racing with the interrupt
1800 * based handler.
1801 */
1802 if (is_real_interrupt(up->port.irq)) {
1803 ier = serial_in(up, UART_IER);
1804 serial_out(up, UART_IER, 0);
1805 }
1806
1807 iir = serial_in(up, UART_IIR);
1808
1809 /*
1810 * This should be a safe test for anyone who doesn't trust the
1811 * IIR bits on their UART, but it's specifically designed for
1812 * the "Diva" UART used on the management processor on many HP
1813 * ia64 and parisc boxes.
1814 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001815 spin_lock_irqsave(&up->port.lock, flags);
1816 lsr = serial_in(up, UART_LSR);
1817 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1818 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001819 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001820 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001821 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001822 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1823 iir |= UART_IIR_THRI;
1824 }
1825
1826 if (!(iir & UART_IIR_NO_INT))
1827 serial8250_handle_port(up);
1828
1829 if (is_real_interrupt(up->port.irq))
1830 serial_out(up, UART_IER, ier);
1831
1832 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001833 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001834 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835}
1836
1837static unsigned int serial8250_tx_empty(struct uart_port *port)
1838{
Jamie Iles49d57412010-12-01 23:39:35 +00001839 struct uart_8250_port *up =
1840 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001842 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 spin_lock_irqsave(&up->port.lock, flags);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001845 lsr = serial_in(up, UART_LSR);
1846 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 spin_unlock_irqrestore(&up->port.lock, flags);
1848
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001849 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
1852static unsigned int serial8250_get_mctrl(struct uart_port *port)
1853{
Jamie Iles49d57412010-12-01 23:39:35 +00001854 struct uart_8250_port *up =
1855 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001856 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 unsigned int ret;
1858
Russell King2af7cd62006-01-04 16:55:09 +00001859 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 ret = 0;
1862 if (status & UART_MSR_DCD)
1863 ret |= TIOCM_CAR;
1864 if (status & UART_MSR_RI)
1865 ret |= TIOCM_RNG;
1866 if (status & UART_MSR_DSR)
1867 ret |= TIOCM_DSR;
1868 if (status & UART_MSR_CTS)
1869 ret |= TIOCM_CTS;
1870 return ret;
1871}
1872
1873static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1874{
Jamie Iles49d57412010-12-01 23:39:35 +00001875 struct uart_8250_port *up =
1876 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 unsigned char mcr = 0;
1878
1879 if (mctrl & TIOCM_RTS)
1880 mcr |= UART_MCR_RTS;
1881 if (mctrl & TIOCM_DTR)
1882 mcr |= UART_MCR_DTR;
1883 if (mctrl & TIOCM_OUT1)
1884 mcr |= UART_MCR_OUT1;
1885 if (mctrl & TIOCM_OUT2)
1886 mcr |= UART_MCR_OUT2;
1887 if (mctrl & TIOCM_LOOP)
1888 mcr |= UART_MCR_LOOP;
1889
1890 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1891
1892 serial_out(up, UART_MCR, mcr);
1893}
1894
1895static void serial8250_break_ctl(struct uart_port *port, int break_state)
1896{
Jamie Iles49d57412010-12-01 23:39:35 +00001897 struct uart_8250_port *up =
1898 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 unsigned long flags;
1900
1901 spin_lock_irqsave(&up->port.lock, flags);
1902 if (break_state == -1)
1903 up->lcr |= UART_LCR_SBC;
1904 else
1905 up->lcr &= ~UART_LCR_SBC;
1906 serial_out(up, UART_LCR, up->lcr);
1907 spin_unlock_irqrestore(&up->port.lock, flags);
1908}
1909
Alex Williamson40b36da2007-02-14 00:33:04 -08001910/*
1911 * Wait for transmitter & holding register to empty
1912 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001913static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001914{
1915 unsigned int status, tmout = 10000;
1916
1917 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001918 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001919 status = serial_in(up, UART_LSR);
1920
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001921 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001922
David Daney97d303b2010-10-05 11:40:07 -07001923 if ((status & bits) == bits)
1924 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001925 if (--tmout == 0)
1926 break;
1927 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001928 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001929
1930 /* Wait up to 1s for flow control if necessary */
1931 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001932 unsigned int tmout;
1933 for (tmout = 1000000; tmout; tmout--) {
1934 unsigned int msr = serial_in(up, UART_MSR);
1935 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1936 if (msr & UART_MSR_CTS)
1937 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001938 udelay(1);
1939 touch_nmi_watchdog();
1940 }
1941 }
1942}
1943
Jason Wesself2d937f2008-04-17 20:05:37 +02001944#ifdef CONFIG_CONSOLE_POLL
1945/*
1946 * Console polling routines for writing and reading from the uart while
1947 * in an interrupt or debug context.
1948 */
1949
1950static int serial8250_get_poll_char(struct uart_port *port)
1951{
Jamie Iles49d57412010-12-01 23:39:35 +00001952 struct uart_8250_port *up =
1953 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001954 unsigned char lsr = serial_inp(up, UART_LSR);
1955
Jason Wesself5316b42010-05-20 21:04:22 -05001956 if (!(lsr & UART_LSR_DR))
1957 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001958
1959 return serial_inp(up, UART_RX);
1960}
1961
1962
1963static void serial8250_put_poll_char(struct uart_port *port,
1964 unsigned char c)
1965{
1966 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001967 struct uart_8250_port *up =
1968 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001969
1970 /*
1971 * First save the IER then disable the interrupts
1972 */
1973 ier = serial_in(up, UART_IER);
1974 if (up->capabilities & UART_CAP_UUE)
1975 serial_out(up, UART_IER, UART_IER_UUE);
1976 else
1977 serial_out(up, UART_IER, 0);
1978
1979 wait_for_xmitr(up, BOTH_EMPTY);
1980 /*
1981 * Send the character out.
1982 * If a LF, also do CR...
1983 */
1984 serial_out(up, UART_TX, c);
1985 if (c == 10) {
1986 wait_for_xmitr(up, BOTH_EMPTY);
1987 serial_out(up, UART_TX, 13);
1988 }
1989
1990 /*
1991 * Finally, wait for transmitter to become empty
1992 * and restore the IER
1993 */
1994 wait_for_xmitr(up, BOTH_EMPTY);
1995 serial_out(up, UART_IER, ier);
1996}
1997
1998#endif /* CONFIG_CONSOLE_POLL */
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000static int serial8250_startup(struct uart_port *port)
2001{
Jamie Iles49d57412010-12-01 23:39:35 +00002002 struct uart_8250_port *up =
2003 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01002005 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 int retval;
2007
Ondrej Puzmane4f05af2010-12-04 21:17:38 +01002008 up->port.fifosize = uart_config[up->port.type].fifo_size;
2009 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 up->capabilities = uart_config[up->port.type].flags;
2011 up->mcr = 0;
2012
Alan Coxb8e7e402009-05-28 14:01:35 +01002013 if (up->port.iotype != up->cur_iotype)
2014 set_io_from_upio(port);
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if (up->port.type == PORT_16C950) {
2017 /* Wake up and initialize UART */
2018 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002019 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 serial_outp(up, UART_EFR, UART_EFR_ECB);
2021 serial_outp(up, UART_IER, 0);
2022 serial_outp(up, UART_LCR, 0);
2023 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
2024 serial_outp(up, UART_LCR, 0xBF);
2025 serial_outp(up, UART_EFR, UART_EFR_ECB);
2026 serial_outp(up, UART_LCR, 0);
2027 }
2028
2029#ifdef CONFIG_SERIAL_8250_RSA
2030 /*
2031 * If this is an RSA port, see if we can kick it up to the
2032 * higher speed clock.
2033 */
2034 enable_rsa(up);
2035#endif
2036
2037 /*
2038 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08002039 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 */
2041 serial8250_clear_fifos(up);
2042
2043 /*
2044 * Clear the interrupt registers.
2045 */
2046 (void) serial_inp(up, UART_LSR);
2047 (void) serial_inp(up, UART_RX);
2048 (void) serial_inp(up, UART_IIR);
2049 (void) serial_inp(up, UART_MSR);
2050
2051 /*
2052 * At this point, there's no way the LSR could still be 0xff;
2053 * if it is, then bail out, because there's likely no UART
2054 * here.
2055 */
2056 if (!(up->port.flags & UPF_BUGGY_UART) &&
2057 (serial_inp(up, UART_LSR) == 0xff)) {
David S. Miller84408382008-10-13 10:45:26 +01002058 printk(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
2059 serial_index(&up->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 return -ENODEV;
2061 }
2062
2063 /*
2064 * For a XR16C850, we need to set the trigger levels
2065 */
2066 if (up->port.type == PORT_16850) {
2067 unsigned char fctr;
2068
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002069 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
2072 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2073 serial_outp(up, UART_TRG, UART_TRG_96);
2074 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2075 serial_outp(up, UART_TRG, UART_TRG_96);
2076
2077 serial_outp(up, UART_LCR, 0);
2078 }
2079
Alex Williamson40b36da2007-02-14 00:33:04 -08002080 if (is_real_interrupt(up->port.irq)) {
Alex Williamson01c194d2008-04-28 02:14:09 -07002081 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08002082 /*
2083 * Test for UARTs that do not reassert THRE when the
2084 * transmitter is idle and the interrupt has already
2085 * been cleared. Real 16550s should always reassert
2086 * this interrupt whenever the transmitter is idle and
2087 * the interrupt is enabled. Delays are necessary to
2088 * allow register changes to become visible.
2089 */
Borislav Petkovc389d272008-07-29 22:33:32 -07002090 spin_lock_irqsave(&up->port.lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002091 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002092 disable_irq_nosync(up->port.irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002093
2094 wait_for_xmitr(up, UART_LSR_THRE);
2095 serial_out_sync(up, UART_IER, UART_IER_THRI);
2096 udelay(1); /* allow THRE to set */
Alex Williamson01c194d2008-04-28 02:14:09 -07002097 iir1 = serial_in(up, UART_IIR);
Alex Williamson40b36da2007-02-14 00:33:04 -08002098 serial_out(up, UART_IER, 0);
2099 serial_out_sync(up, UART_IER, UART_IER_THRI);
2100 udelay(1); /* allow a working UART time to re-assert THRE */
2101 iir = serial_in(up, UART_IIR);
2102 serial_out(up, UART_IER, 0);
2103
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002104 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002105 enable_irq(up->port.irq);
Borislav Petkovc389d272008-07-29 22:33:32 -07002106 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002107
2108 /*
2109 * If the interrupt is not reasserted, setup a timer to
2110 * kick the UART on a regular basis.
2111 */
Alex Williamson01c194d2008-04-28 02:14:09 -07002112 if (!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) {
Will Newton363f66f2008-09-02 14:35:44 -07002113 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002114 pr_debug("ttyS%d - using backup timer\n",
2115 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002116 }
2117 }
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 /*
Will Newton363f66f2008-09-02 14:35:44 -07002120 * The above check will only give an accurate result the first time
2121 * the port is opened so this value needs to be preserved.
2122 */
2123 if (up->bugs & UART_BUG_THRE) {
2124 up->timer.function = serial8250_backup_timeout;
2125 up->timer.data = (unsigned long)up;
2126 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002127 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002128 }
2129
2130 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 * If the "interrupt" for this port doesn't correspond with any
2132 * hardware interrupt, we use a timer-based system. The original
2133 * driver used to do this with IRQ0.
2134 */
2135 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002137 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 } else {
2139 retval = serial_link_irq_chain(up);
2140 if (retval)
2141 return retval;
2142 }
2143
2144 /*
2145 * Now, initialize the UART
2146 */
2147 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
2148
2149 spin_lock_irqsave(&up->port.lock, flags);
2150 if (up->port.flags & UPF_FOURPORT) {
2151 if (!is_real_interrupt(up->port.irq))
2152 up->port.mctrl |= TIOCM_OUT1;
2153 } else
2154 /*
2155 * Most PC uarts need OUT2 raised to enable interrupts.
2156 */
2157 if (is_real_interrupt(up->port.irq))
2158 up->port.mctrl |= TIOCM_OUT2;
2159
2160 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002161
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002162 /* Serial over Lan (SoL) hack:
2163 Intel 8257x Gigabit ethernet chips have a
2164 16550 emulation, to be used for Serial Over Lan.
2165 Those chips take a longer time than a normal
2166 serial device to signalize that a transmission
2167 data was queued. Due to that, the above test generally
2168 fails. One solution would be to delay the reading of
2169 iir. However, this is not reliable, since the timeout
2170 is variable. So, let's just don't test if we receive
2171 TX irq. This way, we'll never enable UART_BUG_TXEN.
2172 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002173 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002174 goto dont_test_tx_en;
2175
Russell King55d3b282005-06-23 15:05:41 +01002176 /*
2177 * Do a quick test to see if we receive an
2178 * interrupt when we enable the TX irq.
2179 */
2180 serial_outp(up, UART_IER, UART_IER_THRI);
2181 lsr = serial_in(up, UART_LSR);
2182 iir = serial_in(up, UART_IIR);
2183 serial_outp(up, UART_IER, 0);
2184
2185 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002186 if (!(up->bugs & UART_BUG_TXEN)) {
2187 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002188 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002189 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002190 }
2191 } else {
Russell King67f76542005-06-23 22:26:43 +01002192 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002193 }
2194
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002195dont_test_tx_en:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 spin_unlock_irqrestore(&up->port.lock, flags);
2197
2198 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002199 * Clear the interrupt registers again for luck, and clear the
2200 * saved flags to avoid getting false values from polling
2201 * routines or the previous session.
2202 */
2203 serial_inp(up, UART_LSR);
2204 serial_inp(up, UART_RX);
2205 serial_inp(up, UART_IIR);
2206 serial_inp(up, UART_MSR);
2207 up->lsr_saved_flags = 0;
2208 up->msr_saved_flags = 0;
2209
2210 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 * Finally, enable interrupts. Note: Modem status interrupts
2212 * are set via set_termios(), which will be occurring imminently
2213 * anyway, so we don't enable them here.
2214 */
2215 up->ier = UART_IER_RLSI | UART_IER_RDI;
2216 serial_outp(up, UART_IER, up->ier);
2217
2218 if (up->port.flags & UPF_FOURPORT) {
2219 unsigned int icp;
2220 /*
2221 * Enable interrupts on the AST Fourport board
2222 */
2223 icp = (up->port.iobase & 0xfe0) | 0x01f;
2224 outb_p(0x80, icp);
2225 (void) inb_p(icp);
2226 }
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 return 0;
2229}
2230
2231static void serial8250_shutdown(struct uart_port *port)
2232{
Jamie Iles49d57412010-12-01 23:39:35 +00002233 struct uart_8250_port *up =
2234 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 unsigned long flags;
2236
2237 /*
2238 * Disable interrupts from this port
2239 */
2240 up->ier = 0;
2241 serial_outp(up, UART_IER, 0);
2242
2243 spin_lock_irqsave(&up->port.lock, flags);
2244 if (up->port.flags & UPF_FOURPORT) {
2245 /* reset interrupts on the AST Fourport board */
2246 inb((up->port.iobase & 0xfe0) | 0x1f);
2247 up->port.mctrl |= TIOCM_OUT1;
2248 } else
2249 up->port.mctrl &= ~TIOCM_OUT2;
2250
2251 serial8250_set_mctrl(&up->port, up->port.mctrl);
2252 spin_unlock_irqrestore(&up->port.lock, flags);
2253
2254 /*
2255 * Disable break condition and FIFOs
2256 */
2257 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
2258 serial8250_clear_fifos(up);
2259
2260#ifdef CONFIG_SERIAL_8250_RSA
2261 /*
2262 * Reset the RSA board back to 115kbps compat mode.
2263 */
2264 disable_rsa(up);
2265#endif
2266
2267 /*
2268 * Read data port to reset things, and then unlink from
2269 * the IRQ chain.
2270 */
2271 (void) serial_in(up, UART_RX);
2272
Alex Williamson40b36da2007-02-14 00:33:04 -08002273 del_timer_sync(&up->timer);
2274 up->timer.function = serial8250_timeout;
2275 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 serial_unlink_irq_chain(up);
2277}
2278
2279static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2280{
2281 unsigned int quot;
2282
2283 /*
2284 * Handle magic divisors for baud rates above baud_base on
2285 * SMSC SuperIO chips.
2286 */
2287 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2288 baud == (port->uartclk/4))
2289 quot = 0x8001;
2290 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2291 baud == (port->uartclk/8))
2292 quot = 0x8002;
2293 else
2294 quot = uart_get_divisor(port, baud);
2295
2296 return quot;
2297}
2298
Philippe Langlais235dae52010-07-29 17:13:57 +02002299void
2300serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2301 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
Jamie Iles49d57412010-12-01 23:39:35 +00002303 struct uart_8250_port *up =
2304 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 unsigned char cval, fcr = 0;
2306 unsigned long flags;
2307 unsigned int baud, quot;
2308
2309 switch (termios->c_cflag & CSIZE) {
2310 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002311 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 break;
2313 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002314 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 break;
2316 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002317 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 break;
2319 default:
2320 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002321 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 break;
2323 }
2324
2325 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002326 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 if (termios->c_cflag & PARENB)
2328 cval |= UART_LCR_PARITY;
2329 if (!(termios->c_cflag & PARODD))
2330 cval |= UART_LCR_EPAR;
2331#ifdef CMSPAR
2332 if (termios->c_cflag & CMSPAR)
2333 cval |= UART_LCR_SPAR;
2334#endif
2335
2336 /*
2337 * Ask the core to calculate the divisor for us.
2338 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002339 baud = uart_get_baud_rate(port, termios, old,
2340 port->uartclk / 16 / 0xffff,
2341 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 quot = serial8250_get_divisor(port, baud);
2343
2344 /*
Russell King4ba5e352005-06-23 10:43:04 +01002345 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 */
Russell King4ba5e352005-06-23 10:43:04 +01002347 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002348 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2351 if (baud < 2400)
2352 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2353 else
2354 fcr = uart_config[up->port.type].fcr;
2355 }
2356
2357 /*
2358 * MCR-based auto flow control. When AFE is enabled, RTS will be
2359 * deasserted when the receive FIFO contains more characters than
2360 * the trigger, or the MCR RTS bit is cleared. In the case where
2361 * the remote UART is not using CTS auto flow control, we must
2362 * have sufficient FIFO entries for the latency of the remote
2363 * UART to respond. IOW, at least 32 bytes of FIFO.
2364 */
2365 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2366 up->mcr &= ~UART_MCR_AFE;
2367 if (termios->c_cflag & CRTSCTS)
2368 up->mcr |= UART_MCR_AFE;
2369 }
2370
2371 /*
2372 * Ok, we're now changing the port state. Do it with
2373 * interrupts disabled.
2374 */
2375 spin_lock_irqsave(&up->port.lock, flags);
2376
2377 /*
2378 * Update the per-port timeout.
2379 */
2380 uart_update_timeout(port, termios->c_cflag, baud);
2381
2382 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2383 if (termios->c_iflag & INPCK)
2384 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2385 if (termios->c_iflag & (BRKINT | PARMRK))
2386 up->port.read_status_mask |= UART_LSR_BI;
2387
2388 /*
2389 * Characteres to ignore
2390 */
2391 up->port.ignore_status_mask = 0;
2392 if (termios->c_iflag & IGNPAR)
2393 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2394 if (termios->c_iflag & IGNBRK) {
2395 up->port.ignore_status_mask |= UART_LSR_BI;
2396 /*
2397 * If we're ignoring parity and break indicators,
2398 * ignore overruns too (for real raw support).
2399 */
2400 if (termios->c_iflag & IGNPAR)
2401 up->port.ignore_status_mask |= UART_LSR_OE;
2402 }
2403
2404 /*
2405 * ignore all characters if CREAD is not set
2406 */
2407 if ((termios->c_cflag & CREAD) == 0)
2408 up->port.ignore_status_mask |= UART_LSR_DR;
2409
2410 /*
2411 * CTS flow control flag and modem status interrupts
2412 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002413 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002414 if (!(up->bugs & UART_BUG_NOMSR) &&
2415 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 up->ier |= UART_IER_MSI;
2417 if (up->capabilities & UART_CAP_UUE)
Stephen Warren4539c242011-05-17 16:12:36 -06002418 up->ier |= UART_IER_UUE;
2419 if (up->capabilities & UART_CAP_RTOIE)
2420 up->ier |= UART_IER_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 serial_out(up, UART_IER, up->ier);
2423
2424 if (up->capabilities & UART_CAP_EFR) {
2425 unsigned char efr = 0;
2426 /*
2427 * TI16C752/Startech hardware flow control. FIXME:
2428 * - TI16C752 requires control thresholds to be set.
2429 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2430 */
2431 if (termios->c_cflag & CRTSCTS)
2432 efr |= UART_EFR_CTS;
2433
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002434 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Søren Holm06315342011-09-02 22:55:37 +02002435 if (up->port.flags & UPF_EXAR_EFR)
2436 serial_outp(up, UART_XR_EFR, efr);
2437 else
2438 serial_outp(up, UART_EFR, efr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440
Russell Kingf2eda272008-09-01 21:47:59 +01002441#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002442 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002443 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002444 if (baud == 115200) {
2445 quot = 1;
2446 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2447 } else
2448 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2449 }
2450#endif
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (up->capabilities & UART_NATSEMI) {
2453 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2454 serial_outp(up, UART_LCR, 0xe0);
2455 } else {
2456 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2457 }
2458
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002459 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
2461 /*
2462 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2463 * is written without DLAB set, this mode will be disabled.
2464 */
2465 if (up->port.type == PORT_16750)
2466 serial_outp(up, UART_FCR, fcr);
2467
2468 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2469 up->lcr = cval; /* Save LCR */
2470 if (up->port.type != PORT_16750) {
2471 if (fcr & UART_FCR_ENABLE_FIFO) {
2472 /* emulated UARTs (Lucent Venus 167x) need two steps */
2473 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2474 }
2475 serial_outp(up, UART_FCR, fcr); /* set fcr */
2476 }
2477 serial8250_set_mctrl(&up->port, up->port.mctrl);
2478 spin_unlock_irqrestore(&up->port.lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002479 /* Don't rewrite B0 */
2480 if (tty_termios_baud_rate(termios))
2481 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482}
Philippe Langlais235dae52010-07-29 17:13:57 +02002483EXPORT_SYMBOL(serial8250_do_set_termios);
2484
2485static void
2486serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2487 struct ktermios *old)
2488{
2489 if (port->set_termios)
2490 port->set_termios(port, termios, old);
2491 else
2492 serial8250_do_set_termios(port, termios, old);
2493}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002496serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002497{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002498 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002499 port->flags |= UPF_HARDPPS_CD;
2500 serial8250_enable_ms(port);
2501 } else
2502 port->flags &= ~UPF_HARDPPS_CD;
2503}
2504
Manuel Laussc161afe2010-09-25 15:13:45 +02002505
2506void serial8250_do_pm(struct uart_port *port, unsigned int state,
2507 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Jamie Iles49d57412010-12-01 23:39:35 +00002509 struct uart_8250_port *p =
2510 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
2512 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002513}
2514EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Manuel Laussc161afe2010-09-25 15:13:45 +02002516static void
2517serial8250_pm(struct uart_port *port, unsigned int state,
2518 unsigned int oldstate)
2519{
2520 if (port->pm)
2521 port->pm(port, state, oldstate);
2522 else
2523 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524}
2525
Russell Kingf2eda272008-09-01 21:47:59 +01002526static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2527{
2528 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002529 return 0x1000;
Russell Kingf2eda272008-09-01 21:47:59 +01002530#ifdef CONFIG_ARCH_OMAP
2531 if (is_omap_port(pt))
2532 return 0x16 << pt->port.regshift;
2533#endif
2534 return 8 << pt->port.regshift;
2535}
2536
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537/*
2538 * Resource handling.
2539 */
2540static int serial8250_request_std_resource(struct uart_8250_port *up)
2541{
Russell Kingf2eda272008-09-01 21:47:59 +01002542 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 int ret = 0;
2544
2545 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002546 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002547 case UPIO_TSI:
2548 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 case UPIO_MEM:
2550 if (!up->port.mapbase)
2551 break;
2552
2553 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2554 ret = -EBUSY;
2555 break;
2556 }
2557
2558 if (up->port.flags & UPF_IOREMAP) {
Alan Cox6f441fe2008-05-01 04:34:59 -07002559 up->port.membase = ioremap_nocache(up->port.mapbase,
2560 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 if (!up->port.membase) {
2562 release_mem_region(up->port.mapbase, size);
2563 ret = -ENOMEM;
2564 }
2565 }
2566 break;
2567
2568 case UPIO_HUB6:
2569 case UPIO_PORT:
2570 if (!request_region(up->port.iobase, size, "serial"))
2571 ret = -EBUSY;
2572 break;
2573 }
2574 return ret;
2575}
2576
2577static void serial8250_release_std_resource(struct uart_8250_port *up)
2578{
Russell Kingf2eda272008-09-01 21:47:59 +01002579 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
2581 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002582 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002583 case UPIO_TSI:
2584 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 case UPIO_MEM:
2586 if (!up->port.mapbase)
2587 break;
2588
2589 if (up->port.flags & UPF_IOREMAP) {
2590 iounmap(up->port.membase);
2591 up->port.membase = NULL;
2592 }
2593
2594 release_mem_region(up->port.mapbase, size);
2595 break;
2596
2597 case UPIO_HUB6:
2598 case UPIO_PORT:
2599 release_region(up->port.iobase, size);
2600 break;
2601 }
2602}
2603
2604static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2605{
2606 unsigned long start = UART_RSA_BASE << up->port.regshift;
2607 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002608 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 case UPIO_HUB6:
2612 case UPIO_PORT:
2613 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002614 if (request_region(start, size, "serial-rsa"))
2615 ret = 0;
2616 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 ret = -EBUSY;
2618 break;
2619 }
2620
2621 return ret;
2622}
2623
2624static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2625{
2626 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2627 unsigned int size = 8 << up->port.regshift;
2628
2629 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 case UPIO_HUB6:
2631 case UPIO_PORT:
2632 release_region(up->port.iobase + offset, size);
2633 break;
2634 }
2635}
2636
2637static void serial8250_release_port(struct uart_port *port)
2638{
Jamie Iles49d57412010-12-01 23:39:35 +00002639 struct uart_8250_port *up =
2640 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642 serial8250_release_std_resource(up);
2643 if (up->port.type == PORT_RSA)
2644 serial8250_release_rsa_resource(up);
2645}
2646
2647static int serial8250_request_port(struct uart_port *port)
2648{
Jamie Iles49d57412010-12-01 23:39:35 +00002649 struct uart_8250_port *up =
2650 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 int ret = 0;
2652
2653 ret = serial8250_request_std_resource(up);
2654 if (ret == 0 && up->port.type == PORT_RSA) {
2655 ret = serial8250_request_rsa_resource(up);
2656 if (ret < 0)
2657 serial8250_release_std_resource(up);
2658 }
2659
2660 return ret;
2661}
2662
2663static void serial8250_config_port(struct uart_port *port, int flags)
2664{
Jamie Iles49d57412010-12-01 23:39:35 +00002665 struct uart_8250_port *up =
2666 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 int probeflags = PROBE_ANY;
2668 int ret;
2669
2670 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 * Find the region that we can probe for. This in turn
2672 * tells us whether we can probe for the type of port.
2673 */
2674 ret = serial8250_request_std_resource(up);
2675 if (ret < 0)
2676 return;
2677
2678 ret = serial8250_request_rsa_resource(up);
2679 if (ret < 0)
2680 probeflags &= ~PROBE_RSA;
2681
Alan Coxb8e7e402009-05-28 14:01:35 +01002682 if (up->port.iotype != up->cur_iotype)
2683 set_io_from_upio(port);
2684
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 if (flags & UART_CONFIG_TYPE)
2686 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002687
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002688 /* if access method is AU, it is a 16550 with a quirk */
2689 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
2690 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002691
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2693 autoconfig_irq(up);
2694
2695 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2696 serial8250_release_rsa_resource(up);
2697 if (up->port.type == PORT_UNKNOWN)
2698 serial8250_release_std_resource(up);
2699}
2700
2701static int
2702serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2703{
Yinghai Lua62c4132008-08-19 20:49:55 -07002704 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2706 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2707 ser->type == PORT_STARTECH)
2708 return -EINVAL;
2709 return 0;
2710}
2711
2712static const char *
2713serial8250_type(struct uart_port *port)
2714{
2715 int type = port->type;
2716
2717 if (type >= ARRAY_SIZE(uart_config))
2718 type = 0;
2719 return uart_config[type].name;
2720}
2721
2722static struct uart_ops serial8250_pops = {
2723 .tx_empty = serial8250_tx_empty,
2724 .set_mctrl = serial8250_set_mctrl,
2725 .get_mctrl = serial8250_get_mctrl,
2726 .stop_tx = serial8250_stop_tx,
2727 .start_tx = serial8250_start_tx,
2728 .stop_rx = serial8250_stop_rx,
2729 .enable_ms = serial8250_enable_ms,
2730 .break_ctl = serial8250_break_ctl,
2731 .startup = serial8250_startup,
2732 .shutdown = serial8250_shutdown,
2733 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002734 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 .pm = serial8250_pm,
2736 .type = serial8250_type,
2737 .release_port = serial8250_release_port,
2738 .request_port = serial8250_request_port,
2739 .config_port = serial8250_config_port,
2740 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002741#ifdef CONFIG_CONSOLE_POLL
2742 .poll_get_char = serial8250_get_poll_char,
2743 .poll_put_char = serial8250_put_poll_char,
2744#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745};
2746
2747static struct uart_8250_port serial8250_ports[UART_NR];
2748
Alan Coxaf7f3742010-10-18 11:38:02 -07002749static void (*serial8250_isa_config)(int port, struct uart_port *up,
2750 unsigned short *capabilities);
2751
2752void serial8250_set_isa_configurator(
2753 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2754{
2755 serial8250_isa_config = v;
2756}
2757EXPORT_SYMBOL(serial8250_set_isa_configurator);
2758
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759static void __init serial8250_isa_init_ports(void)
2760{
2761 struct uart_8250_port *up;
2762 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002763 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
2765 if (!first)
2766 return;
2767 first = 0;
2768
Dave Jonesa61c2d72006-01-07 23:18:19 +00002769 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 struct uart_8250_port *up = &serial8250_ports[i];
2771
2772 up->port.line = i;
2773 spin_lock_init(&up->port.lock);
2774
2775 init_timer(&up->timer);
2776 up->timer.function = serial8250_timeout;
2777
2778 /*
2779 * ALPHA_KLUDGE_MCR needs to be killed.
2780 */
2781 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2782 up->mcr_force = ALPHA_KLUDGE_MCR;
2783
2784 up->port.ops = &serial8250_pops;
2785 }
2786
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002787 if (share_irqs)
2788 irqflag = IRQF_SHARED;
2789
Russell King44454bc2005-06-30 22:41:22 +01002790 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002791 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 i++, up++) {
2793 up->port.iobase = old_serial_port[i].port;
2794 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002795 up->port.irqflags = old_serial_port[i].irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 up->port.uartclk = old_serial_port[i].baud_base * 16;
2797 up->port.flags = old_serial_port[i].flags;
2798 up->port.hub6 = old_serial_port[i].hub6;
2799 up->port.membase = old_serial_port[i].iomem_base;
2800 up->port.iotype = old_serial_port[i].io_type;
2801 up->port.regshift = old_serial_port[i].iomem_reg_shift;
David Daney7d6a07d2009-01-02 13:49:47 +00002802 set_io_from_upio(&up->port);
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002803 up->port.irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002804 if (serial8250_isa_config != NULL)
2805 serial8250_isa_config(i, &up->port, &up->capabilities);
2806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 }
2808}
2809
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002810static void
2811serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2812{
2813 up->port.type = type;
2814 up->port.fifosize = uart_config[type].fifo_size;
2815 up->capabilities = uart_config[type].flags;
2816 up->tx_loadsz = uart_config[type].tx_loadsz;
2817}
2818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819static void __init
2820serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2821{
2822 int i;
2823
Alan Coxb8e7e402009-05-28 14:01:35 +01002824 for (i = 0; i < nr_uarts; i++) {
2825 struct uart_8250_port *up = &serial8250_ports[i];
2826 up->cur_iotype = 0xFF;
2827 }
2828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 serial8250_isa_init_ports();
2830
Dave Jonesa61c2d72006-01-07 23:18:19 +00002831 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 struct uart_8250_port *up = &serial8250_ports[i];
2833
2834 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002835
2836 if (up->port.flags & UPF_FIXED_TYPE)
2837 serial8250_init_fixed_type_port(up, up->port.type);
2838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 uart_add_one_port(drv, &up->port);
2840 }
2841}
2842
2843#ifdef CONFIG_SERIAL_8250_CONSOLE
2844
Russell Kingd3587882006-03-20 20:00:09 +00002845static void serial8250_console_putchar(struct uart_port *port, int ch)
2846{
Jamie Iles49d57412010-12-01 23:39:35 +00002847 struct uart_8250_port *up =
2848 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002849
2850 wait_for_xmitr(up, UART_LSR_THRE);
2851 serial_out(up, UART_TX, ch);
2852}
2853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854/*
2855 * Print a string to the serial port trying not to disturb
2856 * any possible real use of the port...
2857 *
2858 * The console_lock must be held when we get here.
2859 */
2860static void
2861serial8250_console_write(struct console *co, const char *s, unsigned int count)
2862{
2863 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002864 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002866 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Andrew Morton78512ec2005-11-07 00:59:13 -08002868 touch_nmi_watchdog();
2869
Andrew Morton68aa2c02006-06-30 02:29:59 -07002870 local_irq_save(flags);
2871 if (up->port.sysrq) {
2872 /* serial8250_handle_port() already took the lock */
2873 locked = 0;
2874 } else if (oops_in_progress) {
2875 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002876 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002877 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002880 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 */
2882 ier = serial_in(up, UART_IER);
2883
2884 if (up->capabilities & UART_CAP_UUE)
2885 serial_out(up, UART_IER, UART_IER_UUE);
2886 else
2887 serial_out(up, UART_IER, 0);
2888
Russell Kingd3587882006-03-20 20:00:09 +00002889 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891 /*
2892 * Finally, wait for transmitter to become empty
2893 * and restore the IER
2894 */
Alan Coxf91a3712006-01-21 14:59:12 +00002895 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002896 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002897
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002898 /*
2899 * The receive handling will happen properly because the
2900 * receive ready bit will still be set; it is not cleared
2901 * on read. However, modem control will not, we must
2902 * call it if we have saved something in the saved flags
2903 * while processing with interrupts off.
2904 */
2905 if (up->msr_saved_flags)
2906 check_modem_status(up);
2907
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002908 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002909 spin_unlock(&up->port.lock);
2910 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911}
2912
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002913static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
2915 struct uart_port *port;
2916 int baud = 9600;
2917 int bits = 8;
2918 int parity = 'n';
2919 int flow = 'n';
2920
2921 /*
2922 * Check whether an invalid uart number has been specified, and
2923 * if so, search for the first available port that does have
2924 * console support.
2925 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002926 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 co->index = 0;
2928 port = &serial8250_ports[co->index].port;
2929 if (!port->iobase && !port->membase)
2930 return -ENODEV;
2931
2932 if (options)
2933 uart_parse_options(options, &baud, &parity, &bits, &flow);
2934
2935 return uart_set_options(port, co, baud, parity, bits, flow);
2936}
2937
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002938static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002939{
2940 return serial8250_find_port_for_earlycon();
2941}
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943static struct console serial8250_console = {
2944 .name = "ttyS",
2945 .write = serial8250_console_write,
2946 .device = uart_console_device,
2947 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002948 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002949 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 .index = -1,
2951 .data = &serial8250_reg,
2952};
2953
2954static int __init serial8250_console_init(void)
2955{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002956 if (nr_uarts > UART_NR)
2957 nr_uarts = UART_NR;
2958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 serial8250_isa_init_ports();
2960 register_console(&serial8250_console);
2961 return 0;
2962}
2963console_initcall(serial8250_console_init);
2964
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002965int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
2967 int line;
2968 struct uart_port *port;
2969
Dave Jonesa61c2d72006-01-07 23:18:19 +00002970 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002972 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 return line;
2974 }
2975 return -ENODEV;
2976}
2977
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978#define SERIAL8250_CONSOLE &serial8250_console
2979#else
2980#define SERIAL8250_CONSOLE NULL
2981#endif
2982
2983static struct uart_driver serial8250_reg = {
2984 .owner = THIS_MODULE,
2985 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 .dev_name = "ttyS",
2987 .major = TTY_MAJOR,
2988 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 .cons = SERIAL8250_CONSOLE,
2990};
2991
Russell Kingd856c662006-02-23 10:22:13 +00002992/*
2993 * early_serial_setup - early registration for 8250 ports
2994 *
2995 * Setup an 8250 port structure prior to console initialisation. Use
2996 * after console initialisation will cause undefined behaviour.
2997 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998int __init early_serial_setup(struct uart_port *port)
2999{
David Daneyb4304282009-01-02 13:49:41 +00003000 struct uart_port *p;
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (port->line >= ARRAY_SIZE(serial8250_ports))
3003 return -ENODEV;
3004
3005 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00003006 p = &serial8250_ports[port->line].port;
3007 p->iobase = port->iobase;
3008 p->membase = port->membase;
3009 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003010 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00003011 p->uartclk = port->uartclk;
3012 p->fifosize = port->fifosize;
3013 p->regshift = port->regshift;
3014 p->iotype = port->iotype;
3015 p->flags = port->flags;
3016 p->mapbase = port->mapbase;
3017 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01003018 p->type = port->type;
3019 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00003020
3021 set_io_from_upio(p);
3022 if (port->serial_in)
3023 p->serial_in = port->serial_in;
3024 if (port->serial_out)
3025 p->serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003026 if (port->handle_irq)
3027 p->handle_irq = port->handle_irq;
3028 else
3029 p->handle_irq = serial8250_default_handle_irq;
David Daney7d6a07d2009-01-02 13:49:47 +00003030
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return 0;
3032}
3033
3034/**
3035 * serial8250_suspend_port - suspend one serial port
3036 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 *
3038 * Suspend one serial port.
3039 */
3040void serial8250_suspend_port(int line)
3041{
3042 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
3043}
3044
3045/**
3046 * serial8250_resume_port - resume one serial port
3047 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 *
3049 * Resume one serial port.
3050 */
3051void serial8250_resume_port(int line)
3052{
David Woodhouseb5b82df2007-05-17 14:27:39 +08003053 struct uart_8250_port *up = &serial8250_ports[line];
3054
3055 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08003056 /* Ensure it's still in high speed mode */
3057 serial_outp(up, UART_LCR, 0xE0);
3058
Yin Kangkai0d0389e2011-02-09 11:35:18 +08003059 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08003060
3061 serial_outp(up, UART_LCR, 0);
Yin Kangkai95926d22011-02-09 11:34:20 +08003062 up->port.uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08003063 }
3064 uart_resume_port(&serial8250_reg, &up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065}
3066
3067/*
3068 * Register a set of serial devices attached to a platform device. The
3069 * list is terminated with a zero flags entry, which means we expect
3070 * all entries to have at least UPF_BOOT_AUTOCONF set.
3071 */
Russell King3ae5eae2005-11-09 22:32:44 +00003072static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
Russell King3ae5eae2005-11-09 22:32:44 +00003074 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 struct uart_port port;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003076 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
3078 memset(&port, 0, sizeof(struct uart_port));
3079
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003080 if (share_irqs)
3081 irqflag = IRQF_SHARED;
3082
Russell Kingec9f47c2005-06-27 11:12:54 +01003083 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08003084 port.iobase = p->iobase;
3085 port.membase = p->membase;
3086 port.irq = p->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003087 port.irqflags = p->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003088 port.uartclk = p->uartclk;
3089 port.regshift = p->regshift;
3090 port.iotype = p->iotype;
3091 port.flags = p->flags;
3092 port.mapbase = p->mapbase;
3093 port.hub6 = p->hub6;
3094 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00003095 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00003096 port.serial_in = p->serial_in;
3097 port.serial_out = p->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003098 port.handle_irq = p->handle_irq;
Philippe Langlais235dae52010-07-29 17:13:57 +02003099 port.set_termios = p->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003100 port.pm = p->pm;
Will Newton74a197412008-02-04 22:27:50 -08003101 port.dev = &dev->dev;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003102 port.irqflags |= irqflag;
Russell Kingec9f47c2005-06-27 11:12:54 +01003103 ret = serial8250_register_port(&port);
3104 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003105 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003106 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3107 p->iobase, (unsigned long long)p->mapbase,
3108 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 }
3111 return 0;
3112}
3113
3114/*
3115 * Remove serial ports registered against a platform device.
3116 */
Russell King3ae5eae2005-11-09 22:32:44 +00003117static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118{
3119 int i;
3120
Dave Jonesa61c2d72006-01-07 23:18:19 +00003121 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 struct uart_8250_port *up = &serial8250_ports[i];
3123
Russell King3ae5eae2005-11-09 22:32:44 +00003124 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 serial8250_unregister_port(i);
3126 }
3127 return 0;
3128}
3129
Russell King3ae5eae2005-11-09 22:32:44 +00003130static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131{
3132 int i;
3133
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 for (i = 0; i < UART_NR; i++) {
3135 struct uart_8250_port *up = &serial8250_ports[i];
3136
Russell King3ae5eae2005-11-09 22:32:44 +00003137 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 uart_suspend_port(&serial8250_reg, &up->port);
3139 }
3140
3141 return 0;
3142}
3143
Russell King3ae5eae2005-11-09 22:32:44 +00003144static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
3146 int i;
3147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 for (i = 0; i < UART_NR; i++) {
3149 struct uart_8250_port *up = &serial8250_ports[i];
3150
Russell King3ae5eae2005-11-09 22:32:44 +00003151 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003152 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 }
3154
3155 return 0;
3156}
3157
Russell King3ae5eae2005-11-09 22:32:44 +00003158static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 .probe = serial8250_probe,
3160 .remove = __devexit_p(serial8250_remove),
3161 .suspend = serial8250_suspend,
3162 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003163 .driver = {
3164 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003165 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003166 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167};
3168
3169/*
3170 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3171 * in the table in include/asm/serial.h
3172 */
3173static struct platform_device *serial8250_isa_devs;
3174
3175/*
3176 * serial8250_register_port and serial8250_unregister_port allows for
3177 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3178 * modems and PCI multiport cards.
3179 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003180static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
3182static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3183{
3184 int i;
3185
3186 /*
3187 * First, find a port entry which matches.
3188 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003189 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 if (uart_match_port(&serial8250_ports[i].port, port))
3191 return &serial8250_ports[i];
3192
3193 /*
3194 * We didn't find a matching entry, so look for the first
3195 * free entry. We look for one which hasn't been previously
3196 * used (indicated by zero iobase).
3197 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003198 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3200 serial8250_ports[i].port.iobase == 0)
3201 return &serial8250_ports[i];
3202
3203 /*
3204 * That also failed. Last resort is to find any entry which
3205 * doesn't have a real port associated with it.
3206 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003207 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3209 return &serial8250_ports[i];
3210
3211 return NULL;
3212}
3213
3214/**
3215 * serial8250_register_port - register a serial port
3216 * @port: serial port template
3217 *
3218 * Configure the serial port specified by the request. If the
3219 * port exists and is in use, it is hung up and unregistered
3220 * first.
3221 *
3222 * The port is then probed and if necessary the IRQ is autodetected
3223 * If this fails an error is returned.
3224 *
3225 * On success the port is ready to use and the line number is returned.
3226 */
3227int serial8250_register_port(struct uart_port *port)
3228{
3229 struct uart_8250_port *uart;
3230 int ret = -ENOSPC;
3231
3232 if (port->uartclk == 0)
3233 return -EINVAL;
3234
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003235 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
3237 uart = serial8250_find_match_or_unused(port);
3238 if (uart) {
3239 uart_remove_one_port(&serial8250_reg, &uart->port);
3240
Will Newton74a197412008-02-04 22:27:50 -08003241 uart->port.iobase = port->iobase;
3242 uart->port.membase = port->membase;
3243 uart->port.irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003244 uart->port.irqflags = port->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003245 uart->port.uartclk = port->uartclk;
3246 uart->port.fifosize = port->fifosize;
3247 uart->port.regshift = port->regshift;
3248 uart->port.iotype = port->iotype;
3249 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3250 uart->port.mapbase = port->mapbase;
3251 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 if (port->dev)
3253 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003254
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08003255 if (port->flags & UPF_FIXED_TYPE)
3256 serial8250_init_fixed_type_port(uart, port->type);
David Daney8e23fcc2009-01-02 13:49:54 +00003257
David Daney7d6a07d2009-01-02 13:49:47 +00003258 set_io_from_upio(&uart->port);
3259 /* Possibly override default I/O functions. */
3260 if (port->serial_in)
3261 uart->port.serial_in = port->serial_in;
3262 if (port->serial_out)
3263 uart->port.serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003264 if (port->handle_irq)
3265 uart->port.handle_irq = port->handle_irq;
Philippe Langlais235dae52010-07-29 17:13:57 +02003266 /* Possibly override set_termios call */
3267 if (port->set_termios)
3268 uart->port.set_termios = port->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003269 if (port->pm)
3270 uart->port.pm = port->pm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
Alan Coxaf7f3742010-10-18 11:38:02 -07003272 if (serial8250_isa_config != NULL)
3273 serial8250_isa_config(0, &uart->port,
3274 &uart->capabilities);
3275
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3277 if (ret == 0)
3278 ret = uart->port.line;
3279 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003280 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
3282 return ret;
3283}
3284EXPORT_SYMBOL(serial8250_register_port);
3285
3286/**
3287 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3288 * @line: serial line number
3289 *
3290 * Remove one serial port. This may not be called from interrupt
3291 * context. We hand the port back to the our control.
3292 */
3293void serial8250_unregister_port(int line)
3294{
3295 struct uart_8250_port *uart = &serial8250_ports[line];
3296
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003297 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 uart_remove_one_port(&serial8250_reg, &uart->port);
3299 if (serial8250_isa_devs) {
3300 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3301 uart->port.type = PORT_UNKNOWN;
3302 uart->port.dev = &serial8250_isa_devs->dev;
leitao@linux.vnet.ibm.comcb01ece2011-05-26 11:18:39 -03003303 uart->capabilities = uart_config[uart->port.type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 uart_add_one_port(&serial8250_reg, &uart->port);
3305 } else {
3306 uart->port.dev = NULL;
3307 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003308 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309}
3310EXPORT_SYMBOL(serial8250_unregister_port);
3311
3312static int __init serial8250_init(void)
3313{
Alan Cox25db8ad2008-08-19 20:49:40 -07003314 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
Dave Jonesa61c2d72006-01-07 23:18:19 +00003316 if (nr_uarts > UART_NR)
3317 nr_uarts = UART_NR;
3318
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003319 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003320 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 share_irqs ? "en" : "dis");
3322
David Millerb70ac772008-10-13 10:36:31 +01003323#ifdef CONFIG_SPARC
3324 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3325#else
3326 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003328#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 if (ret)
3330 goto out;
3331
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003332 serial8250_isa_devs = platform_device_alloc("serial8250",
3333 PLAT8250_DEV_LEGACY);
3334 if (!serial8250_isa_devs) {
3335 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003336 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 }
3338
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003339 ret = platform_device_add(serial8250_isa_devs);
3340 if (ret)
3341 goto put_dev;
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3344
Russell Kingbc965a72006-01-18 09:54:29 +00003345 ret = platform_driver_register(&serial8250_isa_driver);
3346 if (ret == 0)
3347 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
Russell Kingbc965a72006-01-18 09:54:29 +00003349 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003350put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003351 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003352unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003353#ifdef CONFIG_SPARC
3354 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3355#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003357#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003358out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 return ret;
3360}
3361
3362static void __exit serial8250_exit(void)
3363{
3364 struct platform_device *isa_dev = serial8250_isa_devs;
3365
3366 /*
3367 * This tells serial8250_unregister_port() not to re-register
3368 * the ports (thereby making serial8250_isa_driver permanently
3369 * in use.)
3370 */
3371 serial8250_isa_devs = NULL;
3372
Russell King3ae5eae2005-11-09 22:32:44 +00003373 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 platform_device_unregister(isa_dev);
3375
David Millerb70ac772008-10-13 10:36:31 +01003376#ifdef CONFIG_SPARC
3377 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3378#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003380#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381}
3382
3383module_init(serial8250_init);
3384module_exit(serial8250_exit);
3385
3386EXPORT_SYMBOL(serial8250_suspend_port);
3387EXPORT_SYMBOL(serial8250_resume_port);
3388
3389MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003390MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
3392module_param(share_irqs, uint, 0644);
3393MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3394 " (unsafe)");
3395
Dave Jonesa61c2d72006-01-07 23:18:19 +00003396module_param(nr_uarts, uint, 0644);
3397MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3398
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003399module_param(skip_txen_test, uint, 0644);
3400MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402#ifdef CONFIG_SERIAL_8250_RSA
3403module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3404MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3405#endif
3406MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);