blob: a5e290de8c935cd31561dd98b5d6c37179331a05 [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
84#define PASS_LIMIT 256
85
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 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312};
313
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200314#if defined(CONFIG_MIPS_ALCHEMY)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000315
316/* Au1x00 UART hardware has a weird register layout */
317static const u8 au_io_in_map[] = {
318 [UART_RX] = 0,
319 [UART_IER] = 2,
320 [UART_IIR] = 3,
321 [UART_LCR] = 5,
322 [UART_MCR] = 6,
323 [UART_LSR] = 7,
324 [UART_MSR] = 8,
325};
326
327static const u8 au_io_out_map[] = {
328 [UART_TX] = 1,
329 [UART_IER] = 2,
330 [UART_FCR] = 4,
331 [UART_LCR] = 5,
332 [UART_MCR] = 6,
333};
334
335/* sane hardware needs no mapping */
David Daney7d6a07d2009-01-02 13:49:47 +0000336static inline int map_8250_in_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000337{
David Daney7d6a07d2009-01-02 13:49:47 +0000338 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000339 return offset;
340 return au_io_in_map[offset];
341}
342
David Daney7d6a07d2009-01-02 13:49:47 +0000343static inline int map_8250_out_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_out_map[offset];
348}
349
Alan Cox6f803cd2008-02-08 04:18:52 -0800350#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700351
352static const u8
353 regmap_in[8] = {
354 [UART_RX] = 0x00,
355 [UART_IER] = 0x0c,
356 [UART_IIR] = 0x14,
357 [UART_LCR] = 0x1c,
358 [UART_MCR] = 0x20,
359 [UART_LSR] = 0x24,
360 [UART_MSR] = 0x28,
361 [UART_SCR] = 0x2c
362 },
363 regmap_out[8] = {
364 [UART_TX] = 0x04,
365 [UART_IER] = 0x0c,
366 [UART_FCR] = 0x18,
367 [UART_LCR] = 0x1c,
368 [UART_MCR] = 0x20,
369 [UART_LSR] = 0x24,
370 [UART_MSR] = 0x28,
371 [UART_SCR] = 0x2c
372 };
373
David Daney7d6a07d2009-01-02 13:49:47 +0000374static inline int map_8250_in_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700375{
David Daney7d6a07d2009-01-02 13:49:47 +0000376 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700377 return offset;
378 return regmap_in[offset];
379}
380
David Daney7d6a07d2009-01-02 13:49:47 +0000381static inline int map_8250_out_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_out[offset];
386}
387
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000388#else
389
390/* sane hardware needs no mapping */
391#define map_8250_in_reg(up, offset) (offset)
392#define map_8250_out_reg(up, offset) (offset)
393
394#endif
395
David Daney7d6a07d2009-01-02 13:49:47 +0000396static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
David Daney7d6a07d2009-01-02 13:49:47 +0000398 offset = map_8250_in_reg(p, offset) << p->regshift;
399 outb(p->hub6 - 1 + offset, p->iobase);
400 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
David Daney7d6a07d2009-01-02 13:49:47 +0000403static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
David Daney7d6a07d2009-01-02 13:49:47 +0000405 offset = map_8250_out_reg(p, offset) << p->regshift;
406 outb(p->hub6 - 1 + offset, p->iobase);
407 outb(value, p->iobase + 1);
408}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
David Daney7d6a07d2009-01-02 13:49:47 +0000410static unsigned int mem_serial_in(struct uart_port *p, int offset)
411{
412 offset = map_8250_in_reg(p, offset) << p->regshift;
413 return readb(p->membase + offset);
414}
415
416static void mem_serial_out(struct uart_port *p, int offset, int value)
417{
418 offset = map_8250_out_reg(p, offset) << p->regshift;
419 writeb(value, p->membase + offset);
420}
421
422static void mem32_serial_out(struct uart_port *p, int offset, int value)
423{
424 offset = map_8250_out_reg(p, offset) << p->regshift;
425 writel(value, p->membase + offset);
426}
427
428static unsigned int mem32_serial_in(struct uart_port *p, int offset)
429{
430 offset = map_8250_in_reg(p, offset) << p->regshift;
431 return readl(p->membase + offset);
432}
433
David Daney7d6a07d2009-01-02 13:49:47 +0000434static unsigned int au_serial_in(struct uart_port *p, int offset)
435{
436 offset = map_8250_in_reg(p, offset) << p->regshift;
437 return __raw_readl(p->membase + offset);
438}
439
440static void au_serial_out(struct uart_port *p, int offset, int value)
441{
442 offset = map_8250_out_reg(p, offset) << p->regshift;
443 __raw_writel(value, p->membase + offset);
444}
David Daney7d6a07d2009-01-02 13:49:47 +0000445
446static unsigned int tsi_serial_in(struct uart_port *p, int offset)
447{
448 unsigned int tmp;
449 offset = map_8250_in_reg(p, offset) << p->regshift;
450 if (offset == UART_IIR) {
451 tmp = readl(p->membase + (UART_IIR & ~3));
452 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
453 } else
454 return readb(p->membase + offset);
455}
456
457static void tsi_serial_out(struct uart_port *p, int offset, int value)
458{
459 offset = map_8250_out_reg(p, offset) << p->regshift;
460 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
461 writeb(value, p->membase + offset);
462}
463
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000464/* Save the LCR value so it can be re-written when a Busy Detect IRQ occurs. */
465static inline void dwapb_save_out_value(struct uart_port *p, int offset,
466 int value)
467{
468 struct uart_8250_port *up =
469 container_of(p, struct uart_8250_port, port);
470
471 if (offset == UART_LCR)
472 up->lcr = value;
473}
474
475/* Read the IER to ensure any interrupt is cleared before returning from ISR. */
476static inline void dwapb_check_clear_ier(struct uart_port *p, int offset)
477{
478 if (offset == UART_TX || offset == UART_IER)
479 p->serial_in(p, UART_IER);
480}
481
David Daney7d6a07d2009-01-02 13:49:47 +0000482static void dwapb_serial_out(struct uart_port *p, int offset, int value)
483{
484 int save_offset = offset;
485 offset = map_8250_out_reg(p, offset) << p->regshift;
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000486 dwapb_save_out_value(p, save_offset, value);
David Daney7d6a07d2009-01-02 13:49:47 +0000487 writeb(value, p->membase + offset);
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000488 dwapb_check_clear_ier(p, save_offset);
489}
490
491static void dwapb32_serial_out(struct uart_port *p, int offset, int value)
492{
493 int save_offset = offset;
494 offset = map_8250_out_reg(p, offset) << p->regshift;
495 dwapb_save_out_value(p, save_offset, value);
496 writel(value, p->membase + offset);
497 dwapb_check_clear_ier(p, save_offset);
David Daney7d6a07d2009-01-02 13:49:47 +0000498}
499
500static unsigned int io_serial_in(struct uart_port *p, int offset)
501{
502 offset = map_8250_in_reg(p, offset) << p->regshift;
503 return inb(p->iobase + offset);
504}
505
506static void io_serial_out(struct uart_port *p, int offset, int value)
507{
508 offset = map_8250_out_reg(p, offset) << p->regshift;
509 outb(value, p->iobase + offset);
510}
511
512static void set_io_from_upio(struct uart_port *p)
513{
Jamie Iles49d57412010-12-01 23:39:35 +0000514 struct uart_8250_port *up =
515 container_of(p, struct uart_8250_port, port);
David Daney7d6a07d2009-01-02 13:49:47 +0000516 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000518 p->serial_in = hub6_serial_in;
519 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521
522 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000523 p->serial_in = mem_serial_in;
524 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526
Thomas Koellerbd71c182007-05-06 14:48:47 -0700527 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000529 p->serial_in = mem32_serial_in;
530 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 break;
532
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000533 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000534 p->serial_in = au_serial_in;
535 p->serial_out = au_serial_out;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000536 break;
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200537
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700538 case UPIO_TSI:
David Daney7d6a07d2009-01-02 13:49:47 +0000539 p->serial_in = tsi_serial_in;
540 p->serial_out = tsi_serial_out;
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700541 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000542
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700543 case UPIO_DWAPB:
David Daney7d6a07d2009-01-02 13:49:47 +0000544 p->serial_in = mem_serial_in;
545 p->serial_out = dwapb_serial_out;
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700546 break;
547
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000548 case UPIO_DWAPB32:
549 p->serial_in = mem32_serial_in;
550 p->serial_out = dwapb32_serial_out;
551 break;
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000554 p->serial_in = io_serial_in;
555 p->serial_out = io_serial_out;
556 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100558 /* Remember loaded iotype */
559 up->cur_iotype = p->iotype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Alex Williamson40b36da2007-02-14 00:33:04 -0800562static void
563serial_out_sync(struct uart_8250_port *up, int offset, int value)
564{
David Daney7d6a07d2009-01-02 13:49:47 +0000565 struct uart_port *p = &up->port;
566 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800567 case UPIO_MEM:
568 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800569 case UPIO_AU:
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700570 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000571 case UPIO_DWAPB32:
David Daney7d6a07d2009-01-02 13:49:47 +0000572 p->serial_out(p, offset, value);
573 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800574 break;
575 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000576 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800577 }
578}
579
David Daney7d6a07d2009-01-02 13:49:47 +0000580#define serial_in(up, offset) \
581 (up->port.serial_in(&(up)->port, (offset)))
582#define serial_out(up, offset, value) \
583 (up->port.serial_out(&(up)->port, (offset), (value)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/*
585 * We used to support using pause I/O for certain machines. We
586 * haven't supported this for a while, but just in case it's badly
587 * needed for certain old 386 machines, I've left these #define's
588 * in....
589 */
590#define serial_inp(up, offset) serial_in(up, offset)
591#define serial_outp(up, offset, value) serial_out(up, offset, value)
592
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100593/* Uart divisor latch read */
594static inline int _serial_dl_read(struct uart_8250_port *up)
595{
596 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
597}
598
599/* Uart divisor latch write */
600static inline void _serial_dl_write(struct uart_8250_port *up, int value)
601{
602 serial_outp(up, UART_DLL, value & 0xff);
603 serial_outp(up, UART_DLM, value >> 8 & 0xff);
604}
605
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200606#if defined(CONFIG_MIPS_ALCHEMY)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100607/* Au1x00 haven't got a standard divisor latch */
608static int serial_dl_read(struct uart_8250_port *up)
609{
610 if (up->port.iotype == UPIO_AU)
611 return __raw_readl(up->port.membase + 0x28);
612 else
613 return _serial_dl_read(up);
614}
615
616static void serial_dl_write(struct uart_8250_port *up, int value)
617{
618 if (up->port.iotype == UPIO_AU)
619 __raw_writel(value, up->port.membase + 0x28);
620 else
621 _serial_dl_write(up, value);
622}
Alan Cox6f803cd2008-02-08 04:18:52 -0800623#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700624static int serial_dl_read(struct uart_8250_port *up)
625{
626 return (up->port.iotype == UPIO_RM9000) ?
627 (((__raw_readl(up->port.membase + 0x10) << 8) |
628 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
629 _serial_dl_read(up);
630}
631
632static void serial_dl_write(struct uart_8250_port *up, int value)
633{
634 if (up->port.iotype == UPIO_RM9000) {
635 __raw_writel(value, up->port.membase + 0x08);
636 __raw_writel(value >> 8, up->port.membase + 0x10);
637 } else {
638 _serial_dl_write(up, value);
639 }
640}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100641#else
642#define serial_dl_read(up) _serial_dl_read(up)
643#define serial_dl_write(up, value) _serial_dl_write(up, value)
644#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646/*
647 * For the 16C950
648 */
649static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
650{
651 serial_out(up, UART_SCR, offset);
652 serial_out(up, UART_ICR, value);
653}
654
655static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
656{
657 unsigned int value;
658
659 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
660 serial_out(up, UART_SCR, offset);
661 value = serial_in(up, UART_ICR);
662 serial_icr_write(up, UART_ACR, up->acr);
663
664 return value;
665}
666
667/*
668 * FIFO support.
669 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100670static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 if (p->capabilities & UART_CAP_FIFO) {
673 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
674 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
675 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
676 serial_outp(p, UART_FCR, 0);
677 }
678}
679
680/*
681 * IER sleep support. UARTs which have EFRs need the "extended
682 * capability" bit enabled. Note that on XR16C850s, we need to
683 * reset LCR to write to IER.
684 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100685static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 if (p->capabilities & UART_CAP_SLEEP) {
688 if (p->capabilities & UART_CAP_EFR) {
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800689 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 serial_outp(p, UART_EFR, UART_EFR_ECB);
691 serial_outp(p, UART_LCR, 0);
692 }
693 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
694 if (p->capabilities & UART_CAP_EFR) {
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800695 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 serial_outp(p, UART_EFR, 0);
697 serial_outp(p, UART_LCR, 0);
698 }
699 }
700}
701
702#ifdef CONFIG_SERIAL_8250_RSA
703/*
704 * Attempts to turn on the RSA FIFO. Returns zero on failure.
705 * We set the port uart clock rate if we succeed.
706 */
707static int __enable_rsa(struct uart_8250_port *up)
708{
709 unsigned char mode;
710 int result;
711
712 mode = serial_inp(up, UART_RSA_MSR);
713 result = mode & UART_RSA_MSR_FIFO;
714
715 if (!result) {
716 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
717 mode = serial_inp(up, UART_RSA_MSR);
718 result = mode & UART_RSA_MSR_FIFO;
719 }
720
721 if (result)
722 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
723
724 return result;
725}
726
727static void enable_rsa(struct uart_8250_port *up)
728{
729 if (up->port.type == PORT_RSA) {
730 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
731 spin_lock_irq(&up->port.lock);
732 __enable_rsa(up);
733 spin_unlock_irq(&up->port.lock);
734 }
735 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
736 serial_outp(up, UART_RSA_FRR, 0);
737 }
738}
739
740/*
741 * Attempts to turn off the RSA FIFO. Returns zero on failure.
742 * It is unknown why interrupts were disabled in here. However,
743 * the caller is expected to preserve this behaviour by grabbing
744 * the spinlock before calling this function.
745 */
746static void disable_rsa(struct uart_8250_port *up)
747{
748 unsigned char mode;
749 int result;
750
751 if (up->port.type == PORT_RSA &&
752 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
753 spin_lock_irq(&up->port.lock);
754
755 mode = serial_inp(up, UART_RSA_MSR);
756 result = !(mode & UART_RSA_MSR_FIFO);
757
758 if (!result) {
759 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
760 mode = serial_inp(up, UART_RSA_MSR);
761 result = !(mode & UART_RSA_MSR_FIFO);
762 }
763
764 if (result)
765 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
766 spin_unlock_irq(&up->port.lock);
767 }
768}
769#endif /* CONFIG_SERIAL_8250_RSA */
770
771/*
772 * This is a quickie test to see how big the FIFO is.
773 * It doesn't work at all the time, more's the pity.
774 */
775static int size_fifo(struct uart_8250_port *up)
776{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100777 unsigned char old_fcr, old_mcr, old_lcr;
778 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int count;
780
781 old_lcr = serial_inp(up, UART_LCR);
782 serial_outp(up, UART_LCR, 0);
783 old_fcr = serial_inp(up, UART_FCR);
784 old_mcr = serial_inp(up, UART_MCR);
785 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
786 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
787 serial_outp(up, UART_MCR, UART_MCR_LOOP);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800788 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100789 old_dl = serial_dl_read(up);
790 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 serial_outp(up, UART_LCR, 0x03);
792 for (count = 0; count < 256; count++)
793 serial_outp(up, UART_TX, count);
794 mdelay(20);/* FIXME - schedule_timeout */
795 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
796 (count < 256); count++)
797 serial_inp(up, UART_RX);
798 serial_outp(up, UART_FCR, old_fcr);
799 serial_outp(up, UART_MCR, old_mcr);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800800 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100801 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 serial_outp(up, UART_LCR, old_lcr);
803
804 return count;
805}
806
807/*
808 * Read UART ID using the divisor method - set DLL and DLM to zero
809 * and the revision will be in DLL and device type in DLM. We
810 * preserve the device state across this.
811 */
812static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
813{
814 unsigned char old_dll, old_dlm, old_lcr;
815 unsigned int id;
816
817 old_lcr = serial_inp(p, UART_LCR);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800818 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 old_dll = serial_inp(p, UART_DLL);
821 old_dlm = serial_inp(p, UART_DLM);
822
823 serial_outp(p, UART_DLL, 0);
824 serial_outp(p, UART_DLM, 0);
825
826 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
827
828 serial_outp(p, UART_DLL, old_dll);
829 serial_outp(p, UART_DLM, old_dlm);
830 serial_outp(p, UART_LCR, old_lcr);
831
832 return id;
833}
834
835/*
836 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
837 * When this function is called we know it is at least a StarTech
838 * 16650 V2, but it might be one of several StarTech UARTs, or one of
839 * its clones. (We treat the broken original StarTech 16650 V1 as a
840 * 16550, and why not? Startech doesn't seem to even acknowledge its
841 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700842 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 * What evil have men's minds wrought...
844 */
845static void autoconfig_has_efr(struct uart_8250_port *up)
846{
847 unsigned int id1, id2, id3, rev;
848
849 /*
850 * Everything with an EFR has SLEEP
851 */
852 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
853
854 /*
855 * First we check to see if it's an Oxford Semiconductor UART.
856 *
857 * If we have to do this here because some non-National
858 * Semiconductor clone chips lock up if you try writing to the
859 * LSR register (which serial_icr_read does)
860 */
861
862 /*
863 * Check for Oxford Semiconductor 16C950.
864 *
865 * EFR [4] must be set else this test fails.
866 *
867 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
868 * claims that it's needed for 952 dual UART's (which are not
869 * recommended for new designs).
870 */
871 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800872 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 serial_out(up, UART_EFR, UART_EFR_ECB);
874 serial_out(up, UART_LCR, 0x00);
875 id1 = serial_icr_read(up, UART_ID1);
876 id2 = serial_icr_read(up, UART_ID2);
877 id3 = serial_icr_read(up, UART_ID3);
878 rev = serial_icr_read(up, UART_REV);
879
880 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
881
882 if (id1 == 0x16 && id2 == 0xC9 &&
883 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
884 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100885
886 /*
887 * Enable work around for the Oxford Semiconductor 952 rev B
888 * chip which causes it to seriously miscalculate baud rates
889 * when DLL is 0.
890 */
891 if (id3 == 0x52 && rev == 0x01)
892 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return;
894 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 /*
897 * We check for a XR16C850 by setting DLL and DLM to 0, and then
898 * reading back DLL and DLM. The chip type depends on the DLM
899 * value read back:
900 * 0x10 - XR16C850 and the DLL contains the chip revision.
901 * 0x12 - XR16C2850.
902 * 0x14 - XR16C854.
903 */
904 id1 = autoconfig_read_divisor_id(up);
905 DEBUG_AUTOCONF("850id=%04x ", id1);
906
907 id2 = id1 >> 8;
908 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 up->port.type = PORT_16850;
910 return;
911 }
912
913 /*
914 * It wasn't an XR16C850.
915 *
916 * We distinguish between the '654 and the '650 by counting
917 * how many bytes are in the FIFO. I'm using this for now,
918 * since that's the technique that was sent to me in the
919 * serial driver update, but I'm not convinced this works.
920 * I've had problems doing this in the past. -TYT
921 */
922 if (size_fifo(up) == 64)
923 up->port.type = PORT_16654;
924 else
925 up->port.type = PORT_16650V2;
926}
927
928/*
929 * We detected a chip without a FIFO. Only two fall into
930 * this category - the original 8250 and the 16450. The
931 * 16450 has a scratch register (accessible with LCR=0)
932 */
933static void autoconfig_8250(struct uart_8250_port *up)
934{
935 unsigned char scratch, status1, status2;
936
937 up->port.type = PORT_8250;
938
939 scratch = serial_in(up, UART_SCR);
940 serial_outp(up, UART_SCR, 0xa5);
941 status1 = serial_in(up, UART_SCR);
942 serial_outp(up, UART_SCR, 0x5a);
943 status2 = serial_in(up, UART_SCR);
944 serial_outp(up, UART_SCR, scratch);
945
946 if (status1 == 0xa5 && status2 == 0x5a)
947 up->port.type = PORT_16450;
948}
949
950static int broken_efr(struct uart_8250_port *up)
951{
952 /*
953 * Exar ST16C2550 "A2" devices incorrectly detect as
954 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200955 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 */
957 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
958 return 1;
959
960 return 0;
961}
962
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800963static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
964{
965 unsigned char status;
966
967 status = serial_in(up, 0x04); /* EXCR2 */
968#define PRESL(x) ((x) & 0x30)
969 if (PRESL(status) == 0x10) {
970 /* already in high speed mode */
971 return 0;
972 } else {
973 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
974 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
975 serial_outp(up, 0x04, status);
976 }
977 return 1;
978}
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980/*
981 * We know that the chip has FIFOs. Does it have an EFR? The
982 * EFR is located in the same register position as the IIR and
983 * we know the top two bits of the IIR are currently set. The
984 * EFR should contain zero. Try to read the EFR.
985 */
986static void autoconfig_16550a(struct uart_8250_port *up)
987{
988 unsigned char status1, status2;
989 unsigned int iersave;
990
991 up->port.type = PORT_16550A;
992 up->capabilities |= UART_CAP_FIFO;
993
994 /*
995 * Check for presence of the EFR when DLAB is set.
996 * Only ST16C650V1 UARTs pass this test.
997 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800998 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (serial_in(up, UART_EFR) == 0) {
1000 serial_outp(up, UART_EFR, 0xA8);
1001 if (serial_in(up, UART_EFR) != 0) {
1002 DEBUG_AUTOCONF("EFRv1 ");
1003 up->port.type = PORT_16650;
1004 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
1005 } else {
1006 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
1007 }
1008 serial_outp(up, UART_EFR, 0);
1009 return;
1010 }
1011
1012 /*
1013 * Maybe it requires 0xbf to be written to the LCR.
1014 * (other ST16C650V2 UARTs, TI16C752A, etc)
1015 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001016 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
1018 DEBUG_AUTOCONF("EFRv2 ");
1019 autoconfig_has_efr(up);
1020 return;
1021 }
1022
1023 /*
1024 * Check for a National Semiconductor SuperIO chip.
1025 * Attempt to switch to bank 2, read the value of the LOOP bit
1026 * from EXCR1. Switch back to bank 0, change it in MCR. Then
1027 * switch back to bank 2, read it from EXCR1 again and check
1028 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
1030 serial_outp(up, UART_LCR, 0);
1031 status1 = serial_in(up, UART_MCR);
1032 serial_outp(up, UART_LCR, 0xE0);
1033 status2 = serial_in(up, 0x02); /* EXCR1 */
1034
1035 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
1036 serial_outp(up, UART_LCR, 0);
1037 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
1038 serial_outp(up, UART_LCR, 0xE0);
1039 status2 = serial_in(up, 0x02); /* EXCR1 */
1040 serial_outp(up, UART_LCR, 0);
1041 serial_outp(up, UART_MCR, status1);
1042
1043 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +01001044 unsigned short quot;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +01001047
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01001048 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +01001049 quot <<= 3;
1050
Yin Kangkai0d0389e2011-02-09 11:35:18 +08001051 if (ns16550a_goto_highspeed(up))
1052 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
David Woodhouse857dde22005-05-21 15:52:23 +01001054 serial_outp(up, UART_LCR, 0);
1055
1056 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 up->port.type = PORT_NS16550A;
1058 up->capabilities |= UART_NATSEMI;
1059 return;
1060 }
1061 }
1062
1063 /*
1064 * No EFR. Try to detect a TI16750, which only sets bit 5 of
1065 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1066 * Try setting it with and without DLAB set. Cheap clones
1067 * set bit 5 without DLAB set.
1068 */
1069 serial_outp(up, UART_LCR, 0);
1070 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1071 status1 = serial_in(up, UART_IIR) >> 5;
1072 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001073 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1075 status2 = serial_in(up, UART_IIR) >> 5;
1076 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1077 serial_outp(up, UART_LCR, 0);
1078
1079 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1080
1081 if (status1 == 6 && status2 == 7) {
1082 up->port.type = PORT_16750;
1083 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1084 return;
1085 }
1086
1087 /*
1088 * Try writing and reading the UART_IER_UUE bit (b6).
1089 * If it works, this is probably one of the Xscale platform's
1090 * internal UARTs.
1091 * We're going to explicitly set the UUE bit to 0 before
1092 * trying to write and read a 1 just to make sure it's not
1093 * already a 1 and maybe locked there before we even start start.
1094 */
1095 iersave = serial_in(up, UART_IER);
1096 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
1097 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1098 /*
1099 * OK it's in a known zero state, try writing and reading
1100 * without disturbing the current state of the other bits.
1101 */
1102 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
1103 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1104 /*
1105 * It's an Xscale.
1106 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1107 */
1108 DEBUG_AUTOCONF("Xscale ");
1109 up->port.type = PORT_XSCALE;
1110 up->capabilities |= UART_CAP_UUE;
1111 return;
1112 }
1113 } else {
1114 /*
1115 * If we got here we couldn't force the IER_UUE bit to 0.
1116 * Log it and continue.
1117 */
1118 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1119 }
1120 serial_outp(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001121
1122 /*
1123 * We distinguish between 16550A and U6 16550A by counting
1124 * how many bytes are in the FIFO.
1125 */
1126 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1127 up->port.type = PORT_U6_16550A;
1128 up->capabilities |= UART_CAP_AFE;
1129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132/*
1133 * This routine is called by rs_init() to initialize a specific serial
1134 * port. It determines what type of UART chip this serial port is
1135 * using: 8250, 16450, 16550, 16550A. The important question is
1136 * whether or not this UART is a 16550A or not, since this will
1137 * determine whether or not we can use its FIFO features or not.
1138 */
1139static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1140{
1141 unsigned char status1, scratch, scratch2, scratch3;
1142 unsigned char save_lcr, save_mcr;
1143 unsigned long flags;
1144
1145 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
1146 return;
1147
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001148 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
David S. Miller84408382008-10-13 10:45:26 +01001149 serial_index(&up->port), up->port.iobase, up->port.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 /*
1152 * We really do need global IRQs disabled here - we're going to
1153 * be frobbing the chips IRQ enable register to see if it exists.
1154 */
1155 spin_lock_irqsave(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001158 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 if (!(up->port.flags & UPF_BUGGY_UART)) {
1161 /*
1162 * Do a simple existence test first; if we fail this,
1163 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001164 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 * 0x80 is used as a nonsense port to prevent against
1166 * false positives due to ISA bus float. The
1167 * assumption is that 0x80 is a non-existent port;
1168 * which should be safe since include/asm/io.h also
1169 * makes this assumption.
1170 *
1171 * Note: this is safe as long as MCR bit 4 is clear
1172 * and the device is in "PC" mode.
1173 */
1174 scratch = serial_inp(up, UART_IER);
1175 serial_outp(up, UART_IER, 0);
1176#ifdef __i386__
1177 outb(0xff, 0x080);
1178#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001179 /*
1180 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1181 * 16C754B) allow only to modify them if an EFR bit is set.
1182 */
1183 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 serial_outp(up, UART_IER, 0x0F);
1185#ifdef __i386__
1186 outb(0, 0x080);
1187#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001188 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 serial_outp(up, UART_IER, scratch);
1190 if (scratch2 != 0 || scratch3 != 0x0F) {
1191 /*
1192 * We failed; there's nothing here
1193 */
1194 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1195 scratch2, scratch3);
1196 goto out;
1197 }
1198 }
1199
1200 save_mcr = serial_in(up, UART_MCR);
1201 save_lcr = serial_in(up, UART_LCR);
1202
Thomas Koellerbd71c182007-05-06 14:48:47 -07001203 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 * Check to see if a UART is really there. Certain broken
1205 * internal modems based on the Rockwell chipset fail this
1206 * test, because they apparently don't implement the loopback
1207 * test mode. So this test is skipped on the COM 1 through
1208 * COM 4 ports. This *should* be safe, since no board
1209 * manufacturer would be stupid enough to design a board
1210 * that conflicts with COM 1-4 --- we hope!
1211 */
1212 if (!(up->port.flags & UPF_SKIP_TEST)) {
1213 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1214 status1 = serial_inp(up, UART_MSR) & 0xF0;
1215 serial_outp(up, UART_MCR, save_mcr);
1216 if (status1 != 0x90) {
1217 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1218 status1);
1219 goto out;
1220 }
1221 }
1222
1223 /*
1224 * We're pretty sure there's a port here. Lets find out what
1225 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001226 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 * determines what we test for next.
1228 *
1229 * We also initialise the EFR (if any) to zero for later. The
1230 * EFR occupies the same register location as the FCR and IIR.
1231 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001232 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 serial_outp(up, UART_EFR, 0);
1234 serial_outp(up, UART_LCR, 0);
1235
1236 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1237 scratch = serial_in(up, UART_IIR) >> 6;
1238
1239 DEBUG_AUTOCONF("iir=%d ", scratch);
1240
1241 switch (scratch) {
1242 case 0:
1243 autoconfig_8250(up);
1244 break;
1245 case 1:
1246 up->port.type = PORT_UNKNOWN;
1247 break;
1248 case 2:
1249 up->port.type = PORT_16550;
1250 break;
1251 case 3:
1252 autoconfig_16550a(up);
1253 break;
1254 }
1255
1256#ifdef CONFIG_SERIAL_8250_RSA
1257 /*
1258 * Only probe for RSA ports if we got the region.
1259 */
1260 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1261 int i;
1262
1263 for (i = 0 ; i < probe_rsa_count; ++i) {
1264 if (probe_rsa[i] == up->port.iobase &&
1265 __enable_rsa(up)) {
1266 up->port.type = PORT_RSA;
1267 break;
1268 }
1269 }
1270 }
1271#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 serial_outp(up, UART_LCR, save_lcr);
1274
1275 if (up->capabilities != uart_config[up->port.type].flags) {
1276 printk(KERN_WARNING
1277 "ttyS%d: detected caps %08x should be %08x\n",
David S. Miller84408382008-10-13 10:45:26 +01001278 serial_index(&up->port), up->capabilities,
1279 uart_config[up->port.type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281
1282 up->port.fifosize = uart_config[up->port.type].fifo_size;
1283 up->capabilities = uart_config[up->port.type].flags;
1284 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1285
1286 if (up->port.type == PORT_UNKNOWN)
1287 goto out;
1288
1289 /*
1290 * Reset the UART.
1291 */
1292#ifdef CONFIG_SERIAL_8250_RSA
1293 if (up->port.type == PORT_RSA)
1294 serial_outp(up, UART_RSA_FRR, 0);
1295#endif
1296 serial_outp(up, UART_MCR, save_mcr);
1297 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001298 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001299 if (up->capabilities & UART_CAP_UUE)
1300 serial_outp(up, UART_IER, UART_IER_UUE);
1301 else
1302 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Thomas Koellerbd71c182007-05-06 14:48:47 -07001304 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1307}
1308
1309static void autoconfig_irq(struct uart_8250_port *up)
1310{
1311 unsigned char save_mcr, save_ier;
1312 unsigned char save_ICP = 0;
1313 unsigned int ICP = 0;
1314 unsigned long irqs;
1315 int irq;
1316
1317 if (up->port.flags & UPF_FOURPORT) {
1318 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1319 save_ICP = inb_p(ICP);
1320 outb_p(0x80, ICP);
1321 (void) inb_p(ICP);
1322 }
1323
1324 /* forget possible initially masked and pending IRQ */
1325 probe_irq_off(probe_irq_on());
1326 save_mcr = serial_inp(up, UART_MCR);
1327 save_ier = serial_inp(up, UART_IER);
1328 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 irqs = probe_irq_on();
1331 serial_outp(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001332 udelay(10);
1333 if (up->port.flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 serial_outp(up, UART_MCR,
1335 UART_MCR_DTR | UART_MCR_RTS);
1336 } else {
1337 serial_outp(up, UART_MCR,
1338 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1339 }
1340 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1341 (void)serial_inp(up, UART_LSR);
1342 (void)serial_inp(up, UART_RX);
1343 (void)serial_inp(up, UART_IIR);
1344 (void)serial_inp(up, UART_MSR);
1345 serial_outp(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001346 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 irq = probe_irq_off(irqs);
1348
1349 serial_outp(up, UART_MCR, save_mcr);
1350 serial_outp(up, UART_IER, save_ier);
1351
1352 if (up->port.flags & UPF_FOURPORT)
1353 outb_p(save_ICP, ICP);
1354
1355 up->port.irq = (irq > 0) ? irq : 0;
1356}
1357
Russell Kinge763b902005-06-29 18:41:51 +01001358static inline void __stop_tx(struct uart_8250_port *p)
1359{
1360 if (p->ier & UART_IER_THRI) {
1361 p->ier &= ~UART_IER_THRI;
1362 serial_out(p, UART_IER, p->ier);
1363 }
1364}
1365
Russell Kingb129a8c2005-08-31 10:12:14 +01001366static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Jamie Iles49d57412010-12-01 23:39:35 +00001368 struct uart_8250_port *up =
1369 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Russell Kinge763b902005-06-29 18:41:51 +01001371 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 /*
Russell Kinge763b902005-06-29 18:41:51 +01001374 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 */
Russell Kinge763b902005-06-29 18:41:51 +01001376 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 up->acr |= UART_ACR_TXDIS;
1378 serial_icr_write(up, UART_ACR, up->acr);
1379 }
1380}
1381
Russell King55d3b282005-06-23 15:05:41 +01001382static void transmit_chars(struct uart_8250_port *up);
1383
Russell Kingb129a8c2005-08-31 10:12:14 +01001384static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Jamie Iles49d57412010-12-01 23:39:35 +00001386 struct uart_8250_port *up =
1387 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 if (!(up->ier & UART_IER_THRI)) {
1390 up->ier |= UART_IER_THRI;
1391 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001392
Russell King67f76542005-06-23 22:26:43 +01001393 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001394 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001395 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001396 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Thomas Koellerbd71c182007-05-06 14:48:47 -07001397 if ((up->port.type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001398 (lsr & UART_LSR_THRE) :
1399 (lsr & UART_LSR_TEMT))
Russell King55d3b282005-06-23 15:05:41 +01001400 transmit_chars(up);
1401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
Russell Kinge763b902005-06-29 18:41:51 +01001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /*
Russell Kinge763b902005-06-29 18:41:51 +01001405 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 */
Russell Kinge763b902005-06-29 18:41:51 +01001407 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 up->acr &= ~UART_ACR_TXDIS;
1409 serial_icr_write(up, UART_ACR, up->acr);
1410 }
1411}
1412
1413static void serial8250_stop_rx(struct uart_port *port)
1414{
Jamie Iles49d57412010-12-01 23:39:35 +00001415 struct uart_8250_port *up =
1416 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 up->ier &= ~UART_IER_RLSI;
1419 up->port.read_status_mask &= ~UART_LSR_DR;
1420 serial_out(up, UART_IER, up->ier);
1421}
1422
1423static void serial8250_enable_ms(struct uart_port *port)
1424{
Jamie Iles49d57412010-12-01 23:39:35 +00001425 struct uart_8250_port *up =
1426 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001428 /* no MSR capabilities */
1429 if (up->bugs & UART_BUG_NOMSR)
1430 return;
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 up->ier |= UART_IER_MSI;
1433 serial_out(up, UART_IER, up->ier);
1434}
1435
Russell Kingea8874d2006-01-04 19:43:24 +00001436static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001437receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001439 struct tty_struct *tty = up->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 unsigned char ch, lsr = *status;
1441 int max_count = 256;
1442 char flag;
1443
1444 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001445 if (likely(lsr & UART_LSR_DR))
1446 ch = serial_inp(up, UART_RX);
1447 else
1448 /*
1449 * Intel 82571 has a Serial Over Lan device that will
1450 * set UART_LSR_BI without setting UART_LSR_DR when
1451 * it receives a break. To avoid reading from the
1452 * receive buffer without UART_LSR_DR bit set, we
1453 * just force the read character to be 0
1454 */
1455 ch = 0;
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 flag = TTY_NORMAL;
1458 up->port.icount.rx++;
1459
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001460 lsr |= up->lsr_saved_flags;
1461 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001463 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 /*
1465 * For statistics only
1466 */
1467 if (lsr & UART_LSR_BI) {
1468 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1469 up->port.icount.brk++;
1470 /*
1471 * We do the SysRQ and SAK checking
1472 * here because otherwise the break
1473 * may get masked by ignore_status_mask
1474 * or read_status_mask.
1475 */
1476 if (uart_handle_break(&up->port))
1477 goto ignore_char;
1478 } else if (lsr & UART_LSR_PE)
1479 up->port.icount.parity++;
1480 else if (lsr & UART_LSR_FE)
1481 up->port.icount.frame++;
1482 if (lsr & UART_LSR_OE)
1483 up->port.icount.overrun++;
1484
1485 /*
Russell King23907eb2005-04-16 15:26:39 -07001486 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 */
1488 lsr &= up->port.read_status_mask;
1489
1490 if (lsr & UART_LSR_BI) {
1491 DEBUG_INTR("handling break....");
1492 flag = TTY_BREAK;
1493 } else if (lsr & UART_LSR_PE)
1494 flag = TTY_PARITY;
1495 else if (lsr & UART_LSR_FE)
1496 flag = TTY_FRAME;
1497 }
David Howells7d12e782006-10-05 14:55:46 +01001498 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001500
1501 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1502
Alan Cox6f803cd2008-02-08 04:18:52 -08001503ignore_char:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 lsr = serial_inp(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001505 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 spin_unlock(&up->port.lock);
1507 tty_flip_buffer_push(tty);
1508 spin_lock(&up->port.lock);
1509 *status = lsr;
1510}
1511
Russell Kingea8874d2006-01-04 19:43:24 +00001512static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001514 struct circ_buf *xmit = &up->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 int count;
1516
1517 if (up->port.x_char) {
1518 serial_outp(up, UART_TX, up->port.x_char);
1519 up->port.icount.tx++;
1520 up->port.x_char = 0;
1521 return;
1522 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001523 if (uart_tx_stopped(&up->port)) {
1524 serial8250_stop_tx(&up->port);
1525 return;
1526 }
1527 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001528 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return;
1530 }
1531
1532 count = up->tx_loadsz;
1533 do {
1534 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1535 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1536 up->port.icount.tx++;
1537 if (uart_circ_empty(xmit))
1538 break;
1539 } while (--count > 0);
1540
1541 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1542 uart_write_wakeup(&up->port);
1543
1544 DEBUG_INTR("THRE...");
1545
1546 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001547 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Russell King2af7cd62006-01-04 16:55:09 +00001550static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Russell King2af7cd62006-01-04 16:55:09 +00001552 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001554 status |= up->msr_saved_flags;
1555 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001556 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001557 up->port.state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001558 if (status & UART_MSR_TERI)
1559 up->port.icount.rng++;
1560 if (status & UART_MSR_DDSR)
1561 up->port.icount.dsr++;
1562 if (status & UART_MSR_DDCD)
1563 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1564 if (status & UART_MSR_DCTS)
1565 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Alan Coxbdc04e32009-09-19 13:13:31 -07001567 wake_up_interruptible(&up->port.state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Russell King2af7cd62006-01-04 16:55:09 +00001570 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
1572
1573/*
1574 * This handles the interrupt from one port.
1575 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001576static void serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Russell King45e24602006-01-04 19:19:06 +00001578 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001579 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001580
Jiri Kosina4bf36312007-04-23 14:41:21 -07001581 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001582
1583 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 DEBUG_INTR("status = %x...", status);
1586
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001587 if (status & (UART_LSR_DR | UART_LSR_BI))
David Howells7d12e782006-10-05 14:55:46 +01001588 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 check_modem_status(up);
1590 if (status & UART_LSR_THRE)
1591 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001592
Jiri Kosina4bf36312007-04-23 14:41:21 -07001593 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596/*
1597 * This is the serial driver's interrupt routine.
1598 *
1599 * Arjan thinks the old way was overly complex, so it got simplified.
1600 * Alan disagrees, saying that need the complexity to handle the weird
1601 * nature of ISA shared interrupts. (This is a special exception.)
1602 *
1603 * In order to handle ISA shared interrupts properly, we need to check
1604 * that all ports have been serviced, and therefore the ISA interrupt
1605 * line has been de-asserted.
1606 *
1607 * This means we need to loop through all ports. checking that they
1608 * don't have an interrupt pending.
1609 */
David Howells7d12e782006-10-05 14:55:46 +01001610static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
1612 struct irq_info *i = dev_id;
1613 struct list_head *l, *end = NULL;
1614 int pass_counter = 0, handled = 0;
1615
1616 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1617
1618 spin_lock(&i->lock);
1619
1620 l = i->head;
1621 do {
1622 struct uart_8250_port *up;
1623 unsigned int iir;
1624
1625 up = list_entry(l, struct uart_8250_port, list);
1626
1627 iir = serial_in(up, UART_IIR);
1628 if (!(iir & UART_IIR_NO_INT)) {
David Howells7d12e782006-10-05 14:55:46 +01001629 serial8250_handle_port(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 handled = 1;
1632
1633 end = NULL;
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00001634 } else if ((up->port.iotype == UPIO_DWAPB ||
1635 up->port.iotype == UPIO_DWAPB32) &&
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001636 (iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
1637 /* The DesignWare APB UART has an Busy Detect (0x07)
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001638 * interrupt meaning an LCR write attempt occurred while the
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001639 * UART was busy. The interrupt must be cleared by reading
1640 * the UART status register (USR) and the LCR re-written. */
1641 unsigned int status;
1642 status = *(volatile u32 *)up->port.private_data;
1643 serial_out(up, UART_LCR, up->lcr);
1644
1645 handled = 1;
1646
1647 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 } else if (end == NULL)
1649 end = l;
1650
1651 l = l->next;
1652
1653 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1654 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001655 printk_ratelimited(KERN_ERR
1656 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 break;
1658 }
1659 } while (l != end);
1660
1661 spin_unlock(&i->lock);
1662
1663 DEBUG_INTR("end.\n");
1664
1665 return IRQ_RETVAL(handled);
1666}
1667
1668/*
1669 * To support ISA shared interrupts, we need to have one interrupt
1670 * handler that ensures that the IRQ line has been deasserted
1671 * before returning. Failing to do this will result in the IRQ
1672 * line being stuck active, and, since ISA irqs are edge triggered,
1673 * no more IRQs will be seen.
1674 */
1675static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1676{
1677 spin_lock_irq(&i->lock);
1678
1679 if (!list_empty(i->head)) {
1680 if (i->head == &up->list)
1681 i->head = i->head->next;
1682 list_del(&up->list);
1683 } else {
1684 BUG_ON(i->head != &up->list);
1685 i->head = NULL;
1686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001688 /* List empty so throw away the hash node */
1689 if (i->head == NULL) {
1690 hlist_del(&i->node);
1691 kfree(i);
1692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
1695static int serial_link_irq_chain(struct uart_8250_port *up)
1696{
Alan Cox25db8ad2008-08-19 20:49:40 -07001697 struct hlist_head *h;
1698 struct hlist_node *n;
1699 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001700 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Alan Cox25db8ad2008-08-19 20:49:40 -07001702 mutex_lock(&hash_mutex);
1703
1704 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1705
1706 hlist_for_each(n, h) {
1707 i = hlist_entry(n, struct irq_info, node);
1708 if (i->irq == up->port.irq)
1709 break;
1710 }
1711
1712 if (n == NULL) {
1713 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1714 if (i == NULL) {
1715 mutex_unlock(&hash_mutex);
1716 return -ENOMEM;
1717 }
1718 spin_lock_init(&i->lock);
1719 i->irq = up->port.irq;
1720 hlist_add_head(&i->node, h);
1721 }
1722 mutex_unlock(&hash_mutex);
1723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 spin_lock_irq(&i->lock);
1725
1726 if (i->head) {
1727 list_add(&up->list, i->head);
1728 spin_unlock_irq(&i->lock);
1729
1730 ret = 0;
1731 } else {
1732 INIT_LIST_HEAD(&up->list);
1733 i->head = &up->list;
1734 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001735 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 ret = request_irq(up->port.irq, serial8250_interrupt,
1737 irq_flags, "serial", i);
1738 if (ret < 0)
1739 serial_do_unlink(i, up);
1740 }
1741
1742 return ret;
1743}
1744
1745static void serial_unlink_irq_chain(struct uart_8250_port *up)
1746{
Alan Cox25db8ad2008-08-19 20:49:40 -07001747 struct irq_info *i;
1748 struct hlist_node *n;
1749 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Alan Cox25db8ad2008-08-19 20:49:40 -07001751 mutex_lock(&hash_mutex);
1752
1753 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1754
1755 hlist_for_each(n, h) {
1756 i = hlist_entry(n, struct irq_info, node);
1757 if (i->irq == up->port.irq)
1758 break;
1759 }
1760
1761 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 BUG_ON(i->head == NULL);
1763
1764 if (list_empty(i->head))
1765 free_irq(up->port.irq, i);
1766
1767 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001768 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
1770
1771/*
1772 * This function is used to handle ports that do not have an
1773 * interrupt. This doesn't work very well for 16450's, but gives
1774 * barely passable results for a 16550A. (Although at the expense
1775 * of much CPU overhead).
1776 */
1777static void serial8250_timeout(unsigned long data)
1778{
1779 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 unsigned int iir;
1781
1782 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001783 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001784 serial8250_handle_port(up);
Anton Vorontsov54381062010-10-01 17:21:25 +04001785 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001786}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Alex Williamson40b36da2007-02-14 00:33:04 -08001788static void serial8250_backup_timeout(unsigned long data)
1789{
1790 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001791 unsigned int iir, ier = 0, lsr;
1792 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001793
1794 /*
1795 * Must disable interrupts or else we risk racing with the interrupt
1796 * based handler.
1797 */
1798 if (is_real_interrupt(up->port.irq)) {
1799 ier = serial_in(up, UART_IER);
1800 serial_out(up, UART_IER, 0);
1801 }
1802
1803 iir = serial_in(up, UART_IIR);
1804
1805 /*
1806 * This should be a safe test for anyone who doesn't trust the
1807 * IIR bits on their UART, but it's specifically designed for
1808 * the "Diva" UART used on the management processor on many HP
1809 * ia64 and parisc boxes.
1810 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001811 spin_lock_irqsave(&up->port.lock, flags);
1812 lsr = serial_in(up, UART_LSR);
1813 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1814 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001815 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001816 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001817 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001818 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1819 iir |= UART_IIR_THRI;
1820 }
1821
1822 if (!(iir & UART_IIR_NO_INT))
1823 serial8250_handle_port(up);
1824
1825 if (is_real_interrupt(up->port.irq))
1826 serial_out(up, UART_IER, ier);
1827
1828 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001829 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001830 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
1833static unsigned int serial8250_tx_empty(struct uart_port *port)
1834{
Jamie Iles49d57412010-12-01 23:39:35 +00001835 struct uart_8250_port *up =
1836 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001838 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 spin_lock_irqsave(&up->port.lock, flags);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001841 lsr = serial_in(up, UART_LSR);
1842 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 spin_unlock_irqrestore(&up->port.lock, flags);
1844
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001845 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
1848static unsigned int serial8250_get_mctrl(struct uart_port *port)
1849{
Jamie Iles49d57412010-12-01 23:39:35 +00001850 struct uart_8250_port *up =
1851 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001852 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 unsigned int ret;
1854
Russell King2af7cd62006-01-04 16:55:09 +00001855 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 ret = 0;
1858 if (status & UART_MSR_DCD)
1859 ret |= TIOCM_CAR;
1860 if (status & UART_MSR_RI)
1861 ret |= TIOCM_RNG;
1862 if (status & UART_MSR_DSR)
1863 ret |= TIOCM_DSR;
1864 if (status & UART_MSR_CTS)
1865 ret |= TIOCM_CTS;
1866 return ret;
1867}
1868
1869static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1870{
Jamie Iles49d57412010-12-01 23:39:35 +00001871 struct uart_8250_port *up =
1872 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 unsigned char mcr = 0;
1874
1875 if (mctrl & TIOCM_RTS)
1876 mcr |= UART_MCR_RTS;
1877 if (mctrl & TIOCM_DTR)
1878 mcr |= UART_MCR_DTR;
1879 if (mctrl & TIOCM_OUT1)
1880 mcr |= UART_MCR_OUT1;
1881 if (mctrl & TIOCM_OUT2)
1882 mcr |= UART_MCR_OUT2;
1883 if (mctrl & TIOCM_LOOP)
1884 mcr |= UART_MCR_LOOP;
1885
1886 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1887
1888 serial_out(up, UART_MCR, mcr);
1889}
1890
1891static void serial8250_break_ctl(struct uart_port *port, int break_state)
1892{
Jamie Iles49d57412010-12-01 23:39:35 +00001893 struct uart_8250_port *up =
1894 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 unsigned long flags;
1896
1897 spin_lock_irqsave(&up->port.lock, flags);
1898 if (break_state == -1)
1899 up->lcr |= UART_LCR_SBC;
1900 else
1901 up->lcr &= ~UART_LCR_SBC;
1902 serial_out(up, UART_LCR, up->lcr);
1903 spin_unlock_irqrestore(&up->port.lock, flags);
1904}
1905
Alex Williamson40b36da2007-02-14 00:33:04 -08001906/*
1907 * Wait for transmitter & holding register to empty
1908 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001909static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001910{
1911 unsigned int status, tmout = 10000;
1912
1913 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001914 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001915 status = serial_in(up, UART_LSR);
1916
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001917 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001918
David Daney97d303b2010-10-05 11:40:07 -07001919 if ((status & bits) == bits)
1920 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001921 if (--tmout == 0)
1922 break;
1923 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001924 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001925
1926 /* Wait up to 1s for flow control if necessary */
1927 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001928 unsigned int tmout;
1929 for (tmout = 1000000; tmout; tmout--) {
1930 unsigned int msr = serial_in(up, UART_MSR);
1931 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1932 if (msr & UART_MSR_CTS)
1933 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001934 udelay(1);
1935 touch_nmi_watchdog();
1936 }
1937 }
1938}
1939
Jason Wesself2d937f2008-04-17 20:05:37 +02001940#ifdef CONFIG_CONSOLE_POLL
1941/*
1942 * Console polling routines for writing and reading from the uart while
1943 * in an interrupt or debug context.
1944 */
1945
1946static int serial8250_get_poll_char(struct uart_port *port)
1947{
Jamie Iles49d57412010-12-01 23:39:35 +00001948 struct uart_8250_port *up =
1949 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001950 unsigned char lsr = serial_inp(up, UART_LSR);
1951
Jason Wesself5316b42010-05-20 21:04:22 -05001952 if (!(lsr & UART_LSR_DR))
1953 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001954
1955 return serial_inp(up, UART_RX);
1956}
1957
1958
1959static void serial8250_put_poll_char(struct uart_port *port,
1960 unsigned char c)
1961{
1962 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001963 struct uart_8250_port *up =
1964 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001965
1966 /*
1967 * First save the IER then disable the interrupts
1968 */
1969 ier = serial_in(up, UART_IER);
1970 if (up->capabilities & UART_CAP_UUE)
1971 serial_out(up, UART_IER, UART_IER_UUE);
1972 else
1973 serial_out(up, UART_IER, 0);
1974
1975 wait_for_xmitr(up, BOTH_EMPTY);
1976 /*
1977 * Send the character out.
1978 * If a LF, also do CR...
1979 */
1980 serial_out(up, UART_TX, c);
1981 if (c == 10) {
1982 wait_for_xmitr(up, BOTH_EMPTY);
1983 serial_out(up, UART_TX, 13);
1984 }
1985
1986 /*
1987 * Finally, wait for transmitter to become empty
1988 * and restore the IER
1989 */
1990 wait_for_xmitr(up, BOTH_EMPTY);
1991 serial_out(up, UART_IER, ier);
1992}
1993
1994#endif /* CONFIG_CONSOLE_POLL */
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996static int serial8250_startup(struct uart_port *port)
1997{
Jamie Iles49d57412010-12-01 23:39:35 +00001998 struct uart_8250_port *up =
1999 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01002001 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 int retval;
2003
Ondrej Puzmane4f05af2010-12-04 21:17:38 +01002004 up->port.fifosize = uart_config[up->port.type].fifo_size;
2005 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 up->capabilities = uart_config[up->port.type].flags;
2007 up->mcr = 0;
2008
Alan Coxb8e7e402009-05-28 14:01:35 +01002009 if (up->port.iotype != up->cur_iotype)
2010 set_io_from_upio(port);
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 if (up->port.type == PORT_16C950) {
2013 /* Wake up and initialize UART */
2014 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002015 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 serial_outp(up, UART_EFR, UART_EFR_ECB);
2017 serial_outp(up, UART_IER, 0);
2018 serial_outp(up, UART_LCR, 0);
2019 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
2020 serial_outp(up, UART_LCR, 0xBF);
2021 serial_outp(up, UART_EFR, UART_EFR_ECB);
2022 serial_outp(up, UART_LCR, 0);
2023 }
2024
2025#ifdef CONFIG_SERIAL_8250_RSA
2026 /*
2027 * If this is an RSA port, see if we can kick it up to the
2028 * higher speed clock.
2029 */
2030 enable_rsa(up);
2031#endif
2032
2033 /*
2034 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08002035 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 */
2037 serial8250_clear_fifos(up);
2038
2039 /*
2040 * Clear the interrupt registers.
2041 */
2042 (void) serial_inp(up, UART_LSR);
2043 (void) serial_inp(up, UART_RX);
2044 (void) serial_inp(up, UART_IIR);
2045 (void) serial_inp(up, UART_MSR);
2046
2047 /*
2048 * At this point, there's no way the LSR could still be 0xff;
2049 * if it is, then bail out, because there's likely no UART
2050 * here.
2051 */
2052 if (!(up->port.flags & UPF_BUGGY_UART) &&
2053 (serial_inp(up, UART_LSR) == 0xff)) {
David S. Miller84408382008-10-13 10:45:26 +01002054 printk(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
2055 serial_index(&up->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return -ENODEV;
2057 }
2058
2059 /*
2060 * For a XR16C850, we need to set the trigger levels
2061 */
2062 if (up->port.type == PORT_16850) {
2063 unsigned char fctr;
2064
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002065 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
2068 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2069 serial_outp(up, UART_TRG, UART_TRG_96);
2070 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2071 serial_outp(up, UART_TRG, UART_TRG_96);
2072
2073 serial_outp(up, UART_LCR, 0);
2074 }
2075
Alex Williamson40b36da2007-02-14 00:33:04 -08002076 if (is_real_interrupt(up->port.irq)) {
Alex Williamson01c194d2008-04-28 02:14:09 -07002077 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08002078 /*
2079 * Test for UARTs that do not reassert THRE when the
2080 * transmitter is idle and the interrupt has already
2081 * been cleared. Real 16550s should always reassert
2082 * this interrupt whenever the transmitter is idle and
2083 * the interrupt is enabled. Delays are necessary to
2084 * allow register changes to become visible.
2085 */
Borislav Petkovc389d272008-07-29 22:33:32 -07002086 spin_lock_irqsave(&up->port.lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002087 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002088 disable_irq_nosync(up->port.irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002089
2090 wait_for_xmitr(up, UART_LSR_THRE);
2091 serial_out_sync(up, UART_IER, UART_IER_THRI);
2092 udelay(1); /* allow THRE to set */
Alex Williamson01c194d2008-04-28 02:14:09 -07002093 iir1 = serial_in(up, UART_IIR);
Alex Williamson40b36da2007-02-14 00:33:04 -08002094 serial_out(up, UART_IER, 0);
2095 serial_out_sync(up, UART_IER, UART_IER_THRI);
2096 udelay(1); /* allow a working UART time to re-assert THRE */
2097 iir = serial_in(up, UART_IIR);
2098 serial_out(up, UART_IER, 0);
2099
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002100 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002101 enable_irq(up->port.irq);
Borislav Petkovc389d272008-07-29 22:33:32 -07002102 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002103
2104 /*
2105 * If the interrupt is not reasserted, setup a timer to
2106 * kick the UART on a regular basis.
2107 */
Alex Williamson01c194d2008-04-28 02:14:09 -07002108 if (!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) {
Will Newton363f66f2008-09-02 14:35:44 -07002109 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002110 pr_debug("ttyS%d - using backup timer\n",
2111 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002112 }
2113 }
2114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 /*
Will Newton363f66f2008-09-02 14:35:44 -07002116 * The above check will only give an accurate result the first time
2117 * the port is opened so this value needs to be preserved.
2118 */
2119 if (up->bugs & UART_BUG_THRE) {
2120 up->timer.function = serial8250_backup_timeout;
2121 up->timer.data = (unsigned long)up;
2122 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002123 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002124 }
2125
2126 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 * If the "interrupt" for this port doesn't correspond with any
2128 * hardware interrupt, we use a timer-based system. The original
2129 * driver used to do this with IRQ0.
2130 */
2131 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002133 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 } else {
2135 retval = serial_link_irq_chain(up);
2136 if (retval)
2137 return retval;
2138 }
2139
2140 /*
2141 * Now, initialize the UART
2142 */
2143 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
2144
2145 spin_lock_irqsave(&up->port.lock, flags);
2146 if (up->port.flags & UPF_FOURPORT) {
2147 if (!is_real_interrupt(up->port.irq))
2148 up->port.mctrl |= TIOCM_OUT1;
2149 } else
2150 /*
2151 * Most PC uarts need OUT2 raised to enable interrupts.
2152 */
2153 if (is_real_interrupt(up->port.irq))
2154 up->port.mctrl |= TIOCM_OUT2;
2155
2156 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002157
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002158 /* Serial over Lan (SoL) hack:
2159 Intel 8257x Gigabit ethernet chips have a
2160 16550 emulation, to be used for Serial Over Lan.
2161 Those chips take a longer time than a normal
2162 serial device to signalize that a transmission
2163 data was queued. Due to that, the above test generally
2164 fails. One solution would be to delay the reading of
2165 iir. However, this is not reliable, since the timeout
2166 is variable. So, let's just don't test if we receive
2167 TX irq. This way, we'll never enable UART_BUG_TXEN.
2168 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002169 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002170 goto dont_test_tx_en;
2171
Russell King55d3b282005-06-23 15:05:41 +01002172 /*
2173 * Do a quick test to see if we receive an
2174 * interrupt when we enable the TX irq.
2175 */
2176 serial_outp(up, UART_IER, UART_IER_THRI);
2177 lsr = serial_in(up, UART_LSR);
2178 iir = serial_in(up, UART_IIR);
2179 serial_outp(up, UART_IER, 0);
2180
2181 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002182 if (!(up->bugs & UART_BUG_TXEN)) {
2183 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002184 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002185 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002186 }
2187 } else {
Russell King67f76542005-06-23 22:26:43 +01002188 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002189 }
2190
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002191dont_test_tx_en:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 spin_unlock_irqrestore(&up->port.lock, flags);
2193
2194 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002195 * Clear the interrupt registers again for luck, and clear the
2196 * saved flags to avoid getting false values from polling
2197 * routines or the previous session.
2198 */
2199 serial_inp(up, UART_LSR);
2200 serial_inp(up, UART_RX);
2201 serial_inp(up, UART_IIR);
2202 serial_inp(up, UART_MSR);
2203 up->lsr_saved_flags = 0;
2204 up->msr_saved_flags = 0;
2205
2206 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 * Finally, enable interrupts. Note: Modem status interrupts
2208 * are set via set_termios(), which will be occurring imminently
2209 * anyway, so we don't enable them here.
2210 */
2211 up->ier = UART_IER_RLSI | UART_IER_RDI;
2212 serial_outp(up, UART_IER, up->ier);
2213
2214 if (up->port.flags & UPF_FOURPORT) {
2215 unsigned int icp;
2216 /*
2217 * Enable interrupts on the AST Fourport board
2218 */
2219 icp = (up->port.iobase & 0xfe0) | 0x01f;
2220 outb_p(0x80, icp);
2221 (void) inb_p(icp);
2222 }
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 return 0;
2225}
2226
2227static void serial8250_shutdown(struct uart_port *port)
2228{
Jamie Iles49d57412010-12-01 23:39:35 +00002229 struct uart_8250_port *up =
2230 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 unsigned long flags;
2232
2233 /*
2234 * Disable interrupts from this port
2235 */
2236 up->ier = 0;
2237 serial_outp(up, UART_IER, 0);
2238
2239 spin_lock_irqsave(&up->port.lock, flags);
2240 if (up->port.flags & UPF_FOURPORT) {
2241 /* reset interrupts on the AST Fourport board */
2242 inb((up->port.iobase & 0xfe0) | 0x1f);
2243 up->port.mctrl |= TIOCM_OUT1;
2244 } else
2245 up->port.mctrl &= ~TIOCM_OUT2;
2246
2247 serial8250_set_mctrl(&up->port, up->port.mctrl);
2248 spin_unlock_irqrestore(&up->port.lock, flags);
2249
2250 /*
2251 * Disable break condition and FIFOs
2252 */
2253 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
2254 serial8250_clear_fifos(up);
2255
2256#ifdef CONFIG_SERIAL_8250_RSA
2257 /*
2258 * Reset the RSA board back to 115kbps compat mode.
2259 */
2260 disable_rsa(up);
2261#endif
2262
2263 /*
2264 * Read data port to reset things, and then unlink from
2265 * the IRQ chain.
2266 */
2267 (void) serial_in(up, UART_RX);
2268
Alex Williamson40b36da2007-02-14 00:33:04 -08002269 del_timer_sync(&up->timer);
2270 up->timer.function = serial8250_timeout;
2271 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 serial_unlink_irq_chain(up);
2273}
2274
2275static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2276{
2277 unsigned int quot;
2278
2279 /*
2280 * Handle magic divisors for baud rates above baud_base on
2281 * SMSC SuperIO chips.
2282 */
2283 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2284 baud == (port->uartclk/4))
2285 quot = 0x8001;
2286 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2287 baud == (port->uartclk/8))
2288 quot = 0x8002;
2289 else
2290 quot = uart_get_divisor(port, baud);
2291
2292 return quot;
2293}
2294
Philippe Langlais235dae52010-07-29 17:13:57 +02002295void
2296serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2297 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
Jamie Iles49d57412010-12-01 23:39:35 +00002299 struct uart_8250_port *up =
2300 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 unsigned char cval, fcr = 0;
2302 unsigned long flags;
2303 unsigned int baud, quot;
2304
2305 switch (termios->c_cflag & CSIZE) {
2306 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002307 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 break;
2309 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002310 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 break;
2312 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002313 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 break;
2315 default:
2316 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002317 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 break;
2319 }
2320
2321 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002322 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 if (termios->c_cflag & PARENB)
2324 cval |= UART_LCR_PARITY;
2325 if (!(termios->c_cflag & PARODD))
2326 cval |= UART_LCR_EPAR;
2327#ifdef CMSPAR
2328 if (termios->c_cflag & CMSPAR)
2329 cval |= UART_LCR_SPAR;
2330#endif
2331
2332 /*
2333 * Ask the core to calculate the divisor for us.
2334 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002335 baud = uart_get_baud_rate(port, termios, old,
2336 port->uartclk / 16 / 0xffff,
2337 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 quot = serial8250_get_divisor(port, baud);
2339
2340 /*
Russell King4ba5e352005-06-23 10:43:04 +01002341 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 */
Russell King4ba5e352005-06-23 10:43:04 +01002343 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002344 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2347 if (baud < 2400)
2348 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2349 else
2350 fcr = uart_config[up->port.type].fcr;
2351 }
2352
2353 /*
2354 * MCR-based auto flow control. When AFE is enabled, RTS will be
2355 * deasserted when the receive FIFO contains more characters than
2356 * the trigger, or the MCR RTS bit is cleared. In the case where
2357 * the remote UART is not using CTS auto flow control, we must
2358 * have sufficient FIFO entries for the latency of the remote
2359 * UART to respond. IOW, at least 32 bytes of FIFO.
2360 */
2361 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2362 up->mcr &= ~UART_MCR_AFE;
2363 if (termios->c_cflag & CRTSCTS)
2364 up->mcr |= UART_MCR_AFE;
2365 }
2366
2367 /*
2368 * Ok, we're now changing the port state. Do it with
2369 * interrupts disabled.
2370 */
2371 spin_lock_irqsave(&up->port.lock, flags);
2372
2373 /*
2374 * Update the per-port timeout.
2375 */
2376 uart_update_timeout(port, termios->c_cflag, baud);
2377
2378 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2379 if (termios->c_iflag & INPCK)
2380 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2381 if (termios->c_iflag & (BRKINT | PARMRK))
2382 up->port.read_status_mask |= UART_LSR_BI;
2383
2384 /*
2385 * Characteres to ignore
2386 */
2387 up->port.ignore_status_mask = 0;
2388 if (termios->c_iflag & IGNPAR)
2389 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2390 if (termios->c_iflag & IGNBRK) {
2391 up->port.ignore_status_mask |= UART_LSR_BI;
2392 /*
2393 * If we're ignoring parity and break indicators,
2394 * ignore overruns too (for real raw support).
2395 */
2396 if (termios->c_iflag & IGNPAR)
2397 up->port.ignore_status_mask |= UART_LSR_OE;
2398 }
2399
2400 /*
2401 * ignore all characters if CREAD is not set
2402 */
2403 if ((termios->c_cflag & CREAD) == 0)
2404 up->port.ignore_status_mask |= UART_LSR_DR;
2405
2406 /*
2407 * CTS flow control flag and modem status interrupts
2408 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002409 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002410 if (!(up->bugs & UART_BUG_NOMSR) &&
2411 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 up->ier |= UART_IER_MSI;
2413 if (up->capabilities & UART_CAP_UUE)
Stephen Warren4539c242011-05-17 16:12:36 -06002414 up->ier |= UART_IER_UUE;
2415 if (up->capabilities & UART_CAP_RTOIE)
2416 up->ier |= UART_IER_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
2418 serial_out(up, UART_IER, up->ier);
2419
2420 if (up->capabilities & UART_CAP_EFR) {
2421 unsigned char efr = 0;
2422 /*
2423 * TI16C752/Startech hardware flow control. FIXME:
2424 * - TI16C752 requires control thresholds to be set.
2425 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2426 */
2427 if (termios->c_cflag & CRTSCTS)
2428 efr |= UART_EFR_CTS;
2429
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002430 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 serial_outp(up, UART_EFR, efr);
2432 }
2433
Russell Kingf2eda272008-09-01 21:47:59 +01002434#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002435 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002436 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002437 if (baud == 115200) {
2438 quot = 1;
2439 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2440 } else
2441 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2442 }
2443#endif
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 if (up->capabilities & UART_NATSEMI) {
2446 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2447 serial_outp(up, UART_LCR, 0xe0);
2448 } else {
2449 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2450 }
2451
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002452 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
2454 /*
2455 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2456 * is written without DLAB set, this mode will be disabled.
2457 */
2458 if (up->port.type == PORT_16750)
2459 serial_outp(up, UART_FCR, fcr);
2460
2461 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2462 up->lcr = cval; /* Save LCR */
2463 if (up->port.type != PORT_16750) {
2464 if (fcr & UART_FCR_ENABLE_FIFO) {
2465 /* emulated UARTs (Lucent Venus 167x) need two steps */
2466 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2467 }
2468 serial_outp(up, UART_FCR, fcr); /* set fcr */
2469 }
2470 serial8250_set_mctrl(&up->port, up->port.mctrl);
2471 spin_unlock_irqrestore(&up->port.lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002472 /* Don't rewrite B0 */
2473 if (tty_termios_baud_rate(termios))
2474 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
Philippe Langlais235dae52010-07-29 17:13:57 +02002476EXPORT_SYMBOL(serial8250_do_set_termios);
2477
2478static void
2479serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2480 struct ktermios *old)
2481{
2482 if (port->set_termios)
2483 port->set_termios(port, termios, old);
2484 else
2485 serial8250_do_set_termios(port, termios, old);
2486}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
2488static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002489serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002490{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002491 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002492 port->flags |= UPF_HARDPPS_CD;
2493 serial8250_enable_ms(port);
2494 } else
2495 port->flags &= ~UPF_HARDPPS_CD;
2496}
2497
Manuel Laussc161afe2010-09-25 15:13:45 +02002498
2499void serial8250_do_pm(struct uart_port *port, unsigned int state,
2500 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
Jamie Iles49d57412010-12-01 23:39:35 +00002502 struct uart_8250_port *p =
2503 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
2505 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002506}
2507EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Manuel Laussc161afe2010-09-25 15:13:45 +02002509static void
2510serial8250_pm(struct uart_port *port, unsigned int state,
2511 unsigned int oldstate)
2512{
2513 if (port->pm)
2514 port->pm(port, state, oldstate);
2515 else
2516 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517}
2518
Russell Kingf2eda272008-09-01 21:47:59 +01002519static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2520{
2521 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002522 return 0x1000;
Russell Kingf2eda272008-09-01 21:47:59 +01002523#ifdef CONFIG_ARCH_OMAP
2524 if (is_omap_port(pt))
2525 return 0x16 << pt->port.regshift;
2526#endif
2527 return 8 << pt->port.regshift;
2528}
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530/*
2531 * Resource handling.
2532 */
2533static int serial8250_request_std_resource(struct uart_8250_port *up)
2534{
Russell Kingf2eda272008-09-01 21:47:59 +01002535 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 int ret = 0;
2537
2538 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002539 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002540 case UPIO_TSI:
2541 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002543 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00002544 case UPIO_DWAPB32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 if (!up->port.mapbase)
2546 break;
2547
2548 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2549 ret = -EBUSY;
2550 break;
2551 }
2552
2553 if (up->port.flags & UPF_IOREMAP) {
Alan Cox6f441fe2008-05-01 04:34:59 -07002554 up->port.membase = ioremap_nocache(up->port.mapbase,
2555 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (!up->port.membase) {
2557 release_mem_region(up->port.mapbase, size);
2558 ret = -ENOMEM;
2559 }
2560 }
2561 break;
2562
2563 case UPIO_HUB6:
2564 case UPIO_PORT:
2565 if (!request_region(up->port.iobase, size, "serial"))
2566 ret = -EBUSY;
2567 break;
2568 }
2569 return ret;
2570}
2571
2572static void serial8250_release_std_resource(struct uart_8250_port *up)
2573{
Russell Kingf2eda272008-09-01 21:47:59 +01002574 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
2576 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002577 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002578 case UPIO_TSI:
2579 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002581 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00002582 case UPIO_DWAPB32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 if (!up->port.mapbase)
2584 break;
2585
2586 if (up->port.flags & UPF_IOREMAP) {
2587 iounmap(up->port.membase);
2588 up->port.membase = NULL;
2589 }
2590
2591 release_mem_region(up->port.mapbase, size);
2592 break;
2593
2594 case UPIO_HUB6:
2595 case UPIO_PORT:
2596 release_region(up->port.iobase, size);
2597 break;
2598 }
2599}
2600
2601static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2602{
2603 unsigned long start = UART_RSA_BASE << up->port.regshift;
2604 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002605 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 case UPIO_HUB6:
2609 case UPIO_PORT:
2610 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002611 if (request_region(start, size, "serial-rsa"))
2612 ret = 0;
2613 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 ret = -EBUSY;
2615 break;
2616 }
2617
2618 return ret;
2619}
2620
2621static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2622{
2623 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2624 unsigned int size = 8 << up->port.regshift;
2625
2626 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 case UPIO_HUB6:
2628 case UPIO_PORT:
2629 release_region(up->port.iobase + offset, size);
2630 break;
2631 }
2632}
2633
2634static void serial8250_release_port(struct uart_port *port)
2635{
Jamie Iles49d57412010-12-01 23:39:35 +00002636 struct uart_8250_port *up =
2637 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 serial8250_release_std_resource(up);
2640 if (up->port.type == PORT_RSA)
2641 serial8250_release_rsa_resource(up);
2642}
2643
2644static int serial8250_request_port(struct uart_port *port)
2645{
Jamie Iles49d57412010-12-01 23:39:35 +00002646 struct uart_8250_port *up =
2647 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 int ret = 0;
2649
2650 ret = serial8250_request_std_resource(up);
2651 if (ret == 0 && up->port.type == PORT_RSA) {
2652 ret = serial8250_request_rsa_resource(up);
2653 if (ret < 0)
2654 serial8250_release_std_resource(up);
2655 }
2656
2657 return ret;
2658}
2659
2660static void serial8250_config_port(struct uart_port *port, int flags)
2661{
Jamie Iles49d57412010-12-01 23:39:35 +00002662 struct uart_8250_port *up =
2663 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 int probeflags = PROBE_ANY;
2665 int ret;
2666
2667 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 * Find the region that we can probe for. This in turn
2669 * tells us whether we can probe for the type of port.
2670 */
2671 ret = serial8250_request_std_resource(up);
2672 if (ret < 0)
2673 return;
2674
2675 ret = serial8250_request_rsa_resource(up);
2676 if (ret < 0)
2677 probeflags &= ~PROBE_RSA;
2678
Alan Coxb8e7e402009-05-28 14:01:35 +01002679 if (up->port.iotype != up->cur_iotype)
2680 set_io_from_upio(port);
2681
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 if (flags & UART_CONFIG_TYPE)
2683 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002684
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002685 /* if access method is AU, it is a 16550 with a quirk */
2686 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
2687 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2690 autoconfig_irq(up);
2691
2692 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2693 serial8250_release_rsa_resource(up);
2694 if (up->port.type == PORT_UNKNOWN)
2695 serial8250_release_std_resource(up);
2696}
2697
2698static int
2699serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2700{
Yinghai Lua62c4132008-08-19 20:49:55 -07002701 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2703 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2704 ser->type == PORT_STARTECH)
2705 return -EINVAL;
2706 return 0;
2707}
2708
2709static const char *
2710serial8250_type(struct uart_port *port)
2711{
2712 int type = port->type;
2713
2714 if (type >= ARRAY_SIZE(uart_config))
2715 type = 0;
2716 return uart_config[type].name;
2717}
2718
2719static struct uart_ops serial8250_pops = {
2720 .tx_empty = serial8250_tx_empty,
2721 .set_mctrl = serial8250_set_mctrl,
2722 .get_mctrl = serial8250_get_mctrl,
2723 .stop_tx = serial8250_stop_tx,
2724 .start_tx = serial8250_start_tx,
2725 .stop_rx = serial8250_stop_rx,
2726 .enable_ms = serial8250_enable_ms,
2727 .break_ctl = serial8250_break_ctl,
2728 .startup = serial8250_startup,
2729 .shutdown = serial8250_shutdown,
2730 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002731 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 .pm = serial8250_pm,
2733 .type = serial8250_type,
2734 .release_port = serial8250_release_port,
2735 .request_port = serial8250_request_port,
2736 .config_port = serial8250_config_port,
2737 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002738#ifdef CONFIG_CONSOLE_POLL
2739 .poll_get_char = serial8250_get_poll_char,
2740 .poll_put_char = serial8250_put_poll_char,
2741#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742};
2743
2744static struct uart_8250_port serial8250_ports[UART_NR];
2745
Alan Coxaf7f3742010-10-18 11:38:02 -07002746static void (*serial8250_isa_config)(int port, struct uart_port *up,
2747 unsigned short *capabilities);
2748
2749void serial8250_set_isa_configurator(
2750 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2751{
2752 serial8250_isa_config = v;
2753}
2754EXPORT_SYMBOL(serial8250_set_isa_configurator);
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756static void __init serial8250_isa_init_ports(void)
2757{
2758 struct uart_8250_port *up;
2759 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002760 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 if (!first)
2763 return;
2764 first = 0;
2765
Dave Jonesa61c2d72006-01-07 23:18:19 +00002766 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 struct uart_8250_port *up = &serial8250_ports[i];
2768
2769 up->port.line = i;
2770 spin_lock_init(&up->port.lock);
2771
2772 init_timer(&up->timer);
2773 up->timer.function = serial8250_timeout;
2774
2775 /*
2776 * ALPHA_KLUDGE_MCR needs to be killed.
2777 */
2778 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2779 up->mcr_force = ALPHA_KLUDGE_MCR;
2780
2781 up->port.ops = &serial8250_pops;
2782 }
2783
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002784 if (share_irqs)
2785 irqflag = IRQF_SHARED;
2786
Russell King44454bc2005-06-30 22:41:22 +01002787 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002788 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 i++, up++) {
2790 up->port.iobase = old_serial_port[i].port;
2791 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002792 up->port.irqflags = old_serial_port[i].irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 up->port.uartclk = old_serial_port[i].baud_base * 16;
2794 up->port.flags = old_serial_port[i].flags;
2795 up->port.hub6 = old_serial_port[i].hub6;
2796 up->port.membase = old_serial_port[i].iomem_base;
2797 up->port.iotype = old_serial_port[i].io_type;
2798 up->port.regshift = old_serial_port[i].iomem_reg_shift;
David Daney7d6a07d2009-01-02 13:49:47 +00002799 set_io_from_upio(&up->port);
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002800 up->port.irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002801 if (serial8250_isa_config != NULL)
2802 serial8250_isa_config(i, &up->port, &up->capabilities);
2803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 }
2805}
2806
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002807static void
2808serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2809{
2810 up->port.type = type;
2811 up->port.fifosize = uart_config[type].fifo_size;
2812 up->capabilities = uart_config[type].flags;
2813 up->tx_loadsz = uart_config[type].tx_loadsz;
2814}
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816static void __init
2817serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2818{
2819 int i;
2820
Alan Coxb8e7e402009-05-28 14:01:35 +01002821 for (i = 0; i < nr_uarts; i++) {
2822 struct uart_8250_port *up = &serial8250_ports[i];
2823 up->cur_iotype = 0xFF;
2824 }
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 serial8250_isa_init_ports();
2827
Dave Jonesa61c2d72006-01-07 23:18:19 +00002828 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 struct uart_8250_port *up = &serial8250_ports[i];
2830
2831 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002832
2833 if (up->port.flags & UPF_FIXED_TYPE)
2834 serial8250_init_fixed_type_port(up, up->port.type);
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 uart_add_one_port(drv, &up->port);
2837 }
2838}
2839
2840#ifdef CONFIG_SERIAL_8250_CONSOLE
2841
Russell Kingd3587882006-03-20 20:00:09 +00002842static void serial8250_console_putchar(struct uart_port *port, int ch)
2843{
Jamie Iles49d57412010-12-01 23:39:35 +00002844 struct uart_8250_port *up =
2845 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002846
2847 wait_for_xmitr(up, UART_LSR_THRE);
2848 serial_out(up, UART_TX, ch);
2849}
2850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851/*
2852 * Print a string to the serial port trying not to disturb
2853 * any possible real use of the port...
2854 *
2855 * The console_lock must be held when we get here.
2856 */
2857static void
2858serial8250_console_write(struct console *co, const char *s, unsigned int count)
2859{
2860 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002861 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002863 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Andrew Morton78512ec2005-11-07 00:59:13 -08002865 touch_nmi_watchdog();
2866
Andrew Morton68aa2c02006-06-30 02:29:59 -07002867 local_irq_save(flags);
2868 if (up->port.sysrq) {
2869 /* serial8250_handle_port() already took the lock */
2870 locked = 0;
2871 } else if (oops_in_progress) {
2872 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002873 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002874 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002877 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 */
2879 ier = serial_in(up, UART_IER);
2880
2881 if (up->capabilities & UART_CAP_UUE)
2882 serial_out(up, UART_IER, UART_IER_UUE);
2883 else
2884 serial_out(up, UART_IER, 0);
2885
Russell Kingd3587882006-03-20 20:00:09 +00002886 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888 /*
2889 * Finally, wait for transmitter to become empty
2890 * and restore the IER
2891 */
Alan Coxf91a3712006-01-21 14:59:12 +00002892 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002893 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002894
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002895 /*
2896 * The receive handling will happen properly because the
2897 * receive ready bit will still be set; it is not cleared
2898 * on read. However, modem control will not, we must
2899 * call it if we have saved something in the saved flags
2900 * while processing with interrupts off.
2901 */
2902 if (up->msr_saved_flags)
2903 check_modem_status(up);
2904
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002905 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002906 spin_unlock(&up->port.lock);
2907 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908}
2909
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002910static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911{
2912 struct uart_port *port;
2913 int baud = 9600;
2914 int bits = 8;
2915 int parity = 'n';
2916 int flow = 'n';
2917
2918 /*
2919 * Check whether an invalid uart number has been specified, and
2920 * if so, search for the first available port that does have
2921 * console support.
2922 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002923 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 co->index = 0;
2925 port = &serial8250_ports[co->index].port;
2926 if (!port->iobase && !port->membase)
2927 return -ENODEV;
2928
2929 if (options)
2930 uart_parse_options(options, &baud, &parity, &bits, &flow);
2931
2932 return uart_set_options(port, co, baud, parity, bits, flow);
2933}
2934
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002935static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002936{
2937 return serial8250_find_port_for_earlycon();
2938}
2939
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940static struct console serial8250_console = {
2941 .name = "ttyS",
2942 .write = serial8250_console_write,
2943 .device = uart_console_device,
2944 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002945 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002946 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 .index = -1,
2948 .data = &serial8250_reg,
2949};
2950
2951static int __init serial8250_console_init(void)
2952{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002953 if (nr_uarts > UART_NR)
2954 nr_uarts = UART_NR;
2955
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 serial8250_isa_init_ports();
2957 register_console(&serial8250_console);
2958 return 0;
2959}
2960console_initcall(serial8250_console_init);
2961
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002962int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
2964 int line;
2965 struct uart_port *port;
2966
Dave Jonesa61c2d72006-01-07 23:18:19 +00002967 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002969 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 return line;
2971 }
2972 return -ENODEV;
2973}
2974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975#define SERIAL8250_CONSOLE &serial8250_console
2976#else
2977#define SERIAL8250_CONSOLE NULL
2978#endif
2979
2980static struct uart_driver serial8250_reg = {
2981 .owner = THIS_MODULE,
2982 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 .dev_name = "ttyS",
2984 .major = TTY_MAJOR,
2985 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 .cons = SERIAL8250_CONSOLE,
2987};
2988
Russell Kingd856c662006-02-23 10:22:13 +00002989/*
2990 * early_serial_setup - early registration for 8250 ports
2991 *
2992 * Setup an 8250 port structure prior to console initialisation. Use
2993 * after console initialisation will cause undefined behaviour.
2994 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995int __init early_serial_setup(struct uart_port *port)
2996{
David Daneyb4304282009-01-02 13:49:41 +00002997 struct uart_port *p;
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 if (port->line >= ARRAY_SIZE(serial8250_ports))
3000 return -ENODEV;
3001
3002 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00003003 p = &serial8250_ports[port->line].port;
3004 p->iobase = port->iobase;
3005 p->membase = port->membase;
3006 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003007 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00003008 p->uartclk = port->uartclk;
3009 p->fifosize = port->fifosize;
3010 p->regshift = port->regshift;
3011 p->iotype = port->iotype;
3012 p->flags = port->flags;
3013 p->mapbase = port->mapbase;
3014 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01003015 p->type = port->type;
3016 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00003017
3018 set_io_from_upio(p);
3019 if (port->serial_in)
3020 p->serial_in = port->serial_in;
3021 if (port->serial_out)
3022 p->serial_out = port->serial_out;
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 return 0;
3025}
3026
3027/**
3028 * serial8250_suspend_port - suspend one serial port
3029 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 *
3031 * Suspend one serial port.
3032 */
3033void serial8250_suspend_port(int line)
3034{
3035 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
3036}
3037
3038/**
3039 * serial8250_resume_port - resume one serial port
3040 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 *
3042 * Resume one serial port.
3043 */
3044void serial8250_resume_port(int line)
3045{
David Woodhouseb5b82df2007-05-17 14:27:39 +08003046 struct uart_8250_port *up = &serial8250_ports[line];
3047
3048 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08003049 /* Ensure it's still in high speed mode */
3050 serial_outp(up, UART_LCR, 0xE0);
3051
Yin Kangkai0d0389e2011-02-09 11:35:18 +08003052 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08003053
3054 serial_outp(up, UART_LCR, 0);
Yin Kangkai95926d22011-02-09 11:34:20 +08003055 up->port.uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08003056 }
3057 uart_resume_port(&serial8250_reg, &up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
3060/*
3061 * Register a set of serial devices attached to a platform device. The
3062 * list is terminated with a zero flags entry, which means we expect
3063 * all entries to have at least UPF_BOOT_AUTOCONF set.
3064 */
Russell King3ae5eae2005-11-09 22:32:44 +00003065static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
Russell King3ae5eae2005-11-09 22:32:44 +00003067 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 struct uart_port port;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003069 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070
3071 memset(&port, 0, sizeof(struct uart_port));
3072
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003073 if (share_irqs)
3074 irqflag = IRQF_SHARED;
3075
Russell Kingec9f47c2005-06-27 11:12:54 +01003076 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08003077 port.iobase = p->iobase;
3078 port.membase = p->membase;
3079 port.irq = p->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003080 port.irqflags = p->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003081 port.uartclk = p->uartclk;
3082 port.regshift = p->regshift;
3083 port.iotype = p->iotype;
3084 port.flags = p->flags;
3085 port.mapbase = p->mapbase;
3086 port.hub6 = p->hub6;
3087 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00003088 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00003089 port.serial_in = p->serial_in;
3090 port.serial_out = p->serial_out;
Philippe Langlais235dae52010-07-29 17:13:57 +02003091 port.set_termios = p->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003092 port.pm = p->pm;
Will Newton74a197412008-02-04 22:27:50 -08003093 port.dev = &dev->dev;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003094 port.irqflags |= irqflag;
Russell Kingec9f47c2005-06-27 11:12:54 +01003095 ret = serial8250_register_port(&port);
3096 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003097 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003098 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3099 p->iobase, (unsigned long long)p->mapbase,
3100 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 }
3103 return 0;
3104}
3105
3106/*
3107 * Remove serial ports registered against a platform device.
3108 */
Russell King3ae5eae2005-11-09 22:32:44 +00003109static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110{
3111 int i;
3112
Dave Jonesa61c2d72006-01-07 23:18:19 +00003113 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 struct uart_8250_port *up = &serial8250_ports[i];
3115
Russell King3ae5eae2005-11-09 22:32:44 +00003116 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 serial8250_unregister_port(i);
3118 }
3119 return 0;
3120}
3121
Russell King3ae5eae2005-11-09 22:32:44 +00003122static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123{
3124 int i;
3125
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 for (i = 0; i < UART_NR; i++) {
3127 struct uart_8250_port *up = &serial8250_ports[i];
3128
Russell King3ae5eae2005-11-09 22:32:44 +00003129 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 uart_suspend_port(&serial8250_reg, &up->port);
3131 }
3132
3133 return 0;
3134}
3135
Russell King3ae5eae2005-11-09 22:32:44 +00003136static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
3138 int i;
3139
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 for (i = 0; i < UART_NR; i++) {
3141 struct uart_8250_port *up = &serial8250_ports[i];
3142
Russell King3ae5eae2005-11-09 22:32:44 +00003143 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003144 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 }
3146
3147 return 0;
3148}
3149
Russell King3ae5eae2005-11-09 22:32:44 +00003150static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 .probe = serial8250_probe,
3152 .remove = __devexit_p(serial8250_remove),
3153 .suspend = serial8250_suspend,
3154 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003155 .driver = {
3156 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003157 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003158 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159};
3160
3161/*
3162 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3163 * in the table in include/asm/serial.h
3164 */
3165static struct platform_device *serial8250_isa_devs;
3166
3167/*
3168 * serial8250_register_port and serial8250_unregister_port allows for
3169 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3170 * modems and PCI multiport cards.
3171 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003172static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
3174static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3175{
3176 int i;
3177
3178 /*
3179 * First, find a port entry which matches.
3180 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003181 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 if (uart_match_port(&serial8250_ports[i].port, port))
3183 return &serial8250_ports[i];
3184
3185 /*
3186 * We didn't find a matching entry, so look for the first
3187 * free entry. We look for one which hasn't been previously
3188 * used (indicated by zero iobase).
3189 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003190 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3192 serial8250_ports[i].port.iobase == 0)
3193 return &serial8250_ports[i];
3194
3195 /*
3196 * That also failed. Last resort is to find any entry which
3197 * doesn't have a real port associated with it.
3198 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003199 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3201 return &serial8250_ports[i];
3202
3203 return NULL;
3204}
3205
3206/**
3207 * serial8250_register_port - register a serial port
3208 * @port: serial port template
3209 *
3210 * Configure the serial port specified by the request. If the
3211 * port exists and is in use, it is hung up and unregistered
3212 * first.
3213 *
3214 * The port is then probed and if necessary the IRQ is autodetected
3215 * If this fails an error is returned.
3216 *
3217 * On success the port is ready to use and the line number is returned.
3218 */
3219int serial8250_register_port(struct uart_port *port)
3220{
3221 struct uart_8250_port *uart;
3222 int ret = -ENOSPC;
3223
3224 if (port->uartclk == 0)
3225 return -EINVAL;
3226
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003227 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229 uart = serial8250_find_match_or_unused(port);
3230 if (uart) {
3231 uart_remove_one_port(&serial8250_reg, &uart->port);
3232
Will Newton74a197412008-02-04 22:27:50 -08003233 uart->port.iobase = port->iobase;
3234 uart->port.membase = port->membase;
3235 uart->port.irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003236 uart->port.irqflags = port->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003237 uart->port.uartclk = port->uartclk;
3238 uart->port.fifosize = port->fifosize;
3239 uart->port.regshift = port->regshift;
3240 uart->port.iotype = port->iotype;
3241 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3242 uart->port.mapbase = port->mapbase;
3243 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 if (port->dev)
3245 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003246
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08003247 if (port->flags & UPF_FIXED_TYPE)
3248 serial8250_init_fixed_type_port(uart, port->type);
David Daney8e23fcc2009-01-02 13:49:54 +00003249
David Daney7d6a07d2009-01-02 13:49:47 +00003250 set_io_from_upio(&uart->port);
3251 /* Possibly override default I/O functions. */
3252 if (port->serial_in)
3253 uart->port.serial_in = port->serial_in;
3254 if (port->serial_out)
3255 uart->port.serial_out = port->serial_out;
Philippe Langlais235dae52010-07-29 17:13:57 +02003256 /* Possibly override set_termios call */
3257 if (port->set_termios)
3258 uart->port.set_termios = port->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003259 if (port->pm)
3260 uart->port.pm = port->pm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Alan Coxaf7f3742010-10-18 11:38:02 -07003262 if (serial8250_isa_config != NULL)
3263 serial8250_isa_config(0, &uart->port,
3264 &uart->capabilities);
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3267 if (ret == 0)
3268 ret = uart->port.line;
3269 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003270 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
3272 return ret;
3273}
3274EXPORT_SYMBOL(serial8250_register_port);
3275
3276/**
3277 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3278 * @line: serial line number
3279 *
3280 * Remove one serial port. This may not be called from interrupt
3281 * context. We hand the port back to the our control.
3282 */
3283void serial8250_unregister_port(int line)
3284{
3285 struct uart_8250_port *uart = &serial8250_ports[line];
3286
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003287 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 uart_remove_one_port(&serial8250_reg, &uart->port);
3289 if (serial8250_isa_devs) {
3290 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3291 uart->port.type = PORT_UNKNOWN;
3292 uart->port.dev = &serial8250_isa_devs->dev;
3293 uart_add_one_port(&serial8250_reg, &uart->port);
3294 } else {
3295 uart->port.dev = NULL;
3296 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003297 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298}
3299EXPORT_SYMBOL(serial8250_unregister_port);
3300
3301static int __init serial8250_init(void)
3302{
Alan Cox25db8ad2008-08-19 20:49:40 -07003303 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Dave Jonesa61c2d72006-01-07 23:18:19 +00003305 if (nr_uarts > UART_NR)
3306 nr_uarts = UART_NR;
3307
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003308 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003309 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 share_irqs ? "en" : "dis");
3311
David Millerb70ac772008-10-13 10:36:31 +01003312#ifdef CONFIG_SPARC
3313 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3314#else
3315 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003317#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 if (ret)
3319 goto out;
3320
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003321 serial8250_isa_devs = platform_device_alloc("serial8250",
3322 PLAT8250_DEV_LEGACY);
3323 if (!serial8250_isa_devs) {
3324 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003325 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 }
3327
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003328 ret = platform_device_add(serial8250_isa_devs);
3329 if (ret)
3330 goto put_dev;
3331
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3333
Russell Kingbc965a72006-01-18 09:54:29 +00003334 ret = platform_driver_register(&serial8250_isa_driver);
3335 if (ret == 0)
3336 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Russell Kingbc965a72006-01-18 09:54:29 +00003338 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003339put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003340 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003341unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003342#ifdef CONFIG_SPARC
3343 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3344#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003346#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003347out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 return ret;
3349}
3350
3351static void __exit serial8250_exit(void)
3352{
3353 struct platform_device *isa_dev = serial8250_isa_devs;
3354
3355 /*
3356 * This tells serial8250_unregister_port() not to re-register
3357 * the ports (thereby making serial8250_isa_driver permanently
3358 * in use.)
3359 */
3360 serial8250_isa_devs = NULL;
3361
Russell King3ae5eae2005-11-09 22:32:44 +00003362 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 platform_device_unregister(isa_dev);
3364
David Millerb70ac772008-10-13 10:36:31 +01003365#ifdef CONFIG_SPARC
3366 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3367#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003369#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370}
3371
3372module_init(serial8250_init);
3373module_exit(serial8250_exit);
3374
3375EXPORT_SYMBOL(serial8250_suspend_port);
3376EXPORT_SYMBOL(serial8250_resume_port);
3377
3378MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003379MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
3381module_param(share_irqs, uint, 0644);
3382MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3383 " (unsafe)");
3384
Dave Jonesa61c2d72006-01-07 23:18:19 +00003385module_param(nr_uarts, uint, 0644);
3386MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3387
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003388module_param(skip_txen_test, uint, 0644);
3389MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391#ifdef CONFIG_SERIAL_8250_RSA
3392module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3393MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3394#endif
3395MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);