blob: 9839199c1d1d06160dfa062e8e5e77ce069b397e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/8250.c
3 *
4 * Driver for 8250/16550-type serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * Copyright (C) 2001 Russell King.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * A note about mapbase / membase
16 *
17 * mapbase is the physical address of the IO port.
18 * membase is an 'ioremapped' cookie.
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
22#define SUPPORT_SYSRQ
23#endif
24
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/ioport.h>
28#include <linux/init.h>
29#include <linux/console.h>
30#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010032#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/tty.h>
Daniel Drakecd3ecad2010-10-20 16:00:48 -070034#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/tty_flip.h>
36#include <linux/serial_reg.h>
37#include <linux/serial_core.h>
38#include <linux/serial.h>
39#include <linux/serial_8250.h>
Andrew Morton78512ec2005-11-07 00:59:13 -080040#include <linux/nmi.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000041#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/io.h>
45#include <asm/irq.h>
46
47#include "8250.h"
48
David Millerb70ac772008-10-13 10:36:31 +010049#ifdef CONFIG_SPARC
50#include "suncore.h"
51#endif
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * Configuration:
Thomas Gleixner40663cc2006-07-01 19:29:43 -070055 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * is unsafe when used on edge-triggered interrupts.
57 */
Adrian Bunk408b6642005-05-01 08:59:29 -070058static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Dave Jonesa61c2d72006-01-07 23:18:19 +000060static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
61
David S. Miller84408382008-10-13 10:45:26 +010062static struct uart_driver serial8250_reg;
63
64static int serial_index(struct uart_port *port)
65{
66 return (serial8250_reg.minor - 64) + port->line;
67}
68
Chuck Ebbertd41a4b52009-10-01 15:44:26 -070069static unsigned int skip_txen_test; /* force skip of txen test at init time */
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
72 * Debugging.
73 */
74#if 0
75#define DEBUG_AUTOCONF(fmt...) printk(fmt)
76#else
77#define DEBUG_AUTOCONF(fmt...) do { } while (0)
78#endif
79
80#if 0
81#define DEBUG_INTR(fmt...) printk(fmt)
82#else
83#define DEBUG_INTR(fmt...) do { } while (0)
84#endif
85
86#define PASS_LIMIT 256
87
Dick Hollenbeckbca47612009-12-09 12:31:34 -080088#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
89
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/*
92 * We default to IRQ0 for the "no irq" hack. Some
93 * machine types want others as well - they're free
94 * to redefine this in their header file.
95 */
96#define is_real_interrupt(irq) ((irq) != 0)
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
99#define CONFIG_SERIAL_DETECT_IRQ 1
100#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#ifdef CONFIG_SERIAL_8250_MANY_PORTS
102#define CONFIG_SERIAL_MANY_PORTS 1
103#endif
104
105/*
106 * HUB6 is always on. This will be removed once the header
107 * files have been cleaned.
108 */
109#define CONFIG_HUB6 1
110
Bryan Wua4ed1e42008-05-31 16:10:04 +0800111#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * SERIAL_PORT_DFNS tells us about built-in ports that have no
114 * standard enumeration mechanism. Platforms that can find all
115 * serial ports via mechanisms like ACPI or PCI need not supply it.
116 */
117#ifndef SERIAL_PORT_DFNS
118#define SERIAL_PORT_DFNS
119#endif
120
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000121static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 SERIAL_PORT_DFNS /* defined in asm/serial.h */
123};
124
Russell King026d02a2005-06-29 18:45:19 +0100125#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127#ifdef CONFIG_SERIAL_8250_RSA
128
129#define PORT_RSA_MAX 4
130static unsigned long probe_rsa[PORT_RSA_MAX];
131static unsigned int probe_rsa_count;
132#endif /* CONFIG_SERIAL_8250_RSA */
133
134struct uart_8250_port {
135 struct uart_port port;
136 struct timer_list timer; /* "no irq" timer */
137 struct list_head list; /* ports on this IRQ */
Russell King4ba5e352005-06-23 10:43:04 +0100138 unsigned short capabilities; /* port capabilities */
139 unsigned short bugs; /* port bugs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 unsigned int tx_loadsz; /* transmit fifo load size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 unsigned char acr;
142 unsigned char ier;
143 unsigned char lcr;
144 unsigned char mcr;
145 unsigned char mcr_mask; /* mask of user bits */
146 unsigned char mcr_force; /* mask of forced bits */
Alan Coxb8e7e402009-05-28 14:01:35 +0100147 unsigned char cur_iotype; /* Running I/O type */
Corey Minyardad4c2aa2007-08-22 14:01:18 -0700148
149 /*
150 * Some bits in registers are cleared on a read, so they must
151 * be saved whenever the register is read but the bits will not
152 * be immediately processed.
153 */
154#define LSR_SAVE_FLAGS UART_LSR_BRK_ERROR_BITS
155 unsigned char lsr_saved_flags;
156#define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
157 unsigned char msr_saved_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158};
159
160struct irq_info {
Alan Cox25db8ad2008-08-19 20:49:40 -0700161 struct hlist_node node;
162 int irq;
163 spinlock_t lock; /* Protects list not the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 struct list_head *head;
165};
166
Alan Cox25db8ad2008-08-19 20:49:40 -0700167#define NR_IRQ_HASH 32 /* Can be adjusted later */
168static struct hlist_head irq_lists[NR_IRQ_HASH];
169static DEFINE_MUTEX(hash_mutex); /* Used to walk the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*
172 * Here we define the default xmit fifo size used for each type of UART.
173 */
174static const struct serial8250_config uart_config[] = {
175 [PORT_UNKNOWN] = {
176 .name = "unknown",
177 .fifo_size = 1,
178 .tx_loadsz = 1,
179 },
180 [PORT_8250] = {
181 .name = "8250",
182 .fifo_size = 1,
183 .tx_loadsz = 1,
184 },
185 [PORT_16450] = {
186 .name = "16450",
187 .fifo_size = 1,
188 .tx_loadsz = 1,
189 },
190 [PORT_16550] = {
191 .name = "16550",
192 .fifo_size = 1,
193 .tx_loadsz = 1,
194 },
195 [PORT_16550A] = {
196 .name = "16550A",
197 .fifo_size = 16,
198 .tx_loadsz = 16,
199 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
200 .flags = UART_CAP_FIFO,
201 },
202 [PORT_CIRRUS] = {
203 .name = "Cirrus",
204 .fifo_size = 1,
205 .tx_loadsz = 1,
206 },
207 [PORT_16650] = {
208 .name = "ST16650",
209 .fifo_size = 1,
210 .tx_loadsz = 1,
211 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
212 },
213 [PORT_16650V2] = {
214 .name = "ST16650V2",
215 .fifo_size = 32,
216 .tx_loadsz = 16,
217 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
218 UART_FCR_T_TRIG_00,
219 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
220 },
221 [PORT_16750] = {
222 .name = "TI16750",
223 .fifo_size = 64,
224 .tx_loadsz = 64,
225 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
226 UART_FCR7_64BYTE,
227 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
228 },
229 [PORT_STARTECH] = {
230 .name = "Startech",
231 .fifo_size = 1,
232 .tx_loadsz = 1,
233 },
234 [PORT_16C950] = {
235 .name = "16C950/954",
236 .fifo_size = 128,
237 .tx_loadsz = 128,
238 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Yegor Yefremov7a56aa42010-06-16 16:29:55 +0200239 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 },
241 [PORT_16654] = {
242 .name = "ST16654",
243 .fifo_size = 64,
244 .tx_loadsz = 32,
245 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
246 UART_FCR_T_TRIG_10,
247 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
248 },
249 [PORT_16850] = {
250 .name = "XR16850",
251 .fifo_size = 128,
252 .tx_loadsz = 128,
253 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
254 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
255 },
256 [PORT_RSA] = {
257 .name = "RSA",
258 .fifo_size = 2048,
259 .tx_loadsz = 2048,
260 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
261 .flags = UART_CAP_FIFO,
262 },
263 [PORT_NS16550A] = {
264 .name = "NS16550A",
265 .fifo_size = 16,
266 .tx_loadsz = 16,
267 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
268 .flags = UART_CAP_FIFO | UART_NATSEMI,
269 },
270 [PORT_XSCALE] = {
271 .name = "XScale",
272 .fifo_size = 32,
273 .tx_loadsz = 32,
274 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
275 .flags = UART_CAP_FIFO | UART_CAP_UUE,
276 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700277 [PORT_RM9000] = {
278 .name = "RM9000",
279 .fifo_size = 16,
280 .tx_loadsz = 16,
281 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
282 .flags = UART_CAP_FIFO,
283 },
David Daney6b06f192009-01-02 13:50:00 +0000284 [PORT_OCTEON] = {
285 .name = "OCTEON",
286 .fifo_size = 64,
287 .tx_loadsz = 64,
288 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
289 .flags = UART_CAP_FIFO,
290 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100291 [PORT_AR7] = {
292 .name = "AR7",
293 .fifo_size = 16,
294 .tx_loadsz = 16,
295 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
296 .flags = UART_CAP_FIFO | UART_CAP_AFE,
297 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200298 [PORT_U6_16550A] = {
299 .name = "U6_16550A",
300 .fifo_size = 64,
301 .tx_loadsz = 64,
302 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
303 .flags = UART_CAP_FIFO | UART_CAP_AFE,
304 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200307#if defined(CONFIG_MIPS_ALCHEMY)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000308
309/* Au1x00 UART hardware has a weird register layout */
310static const u8 au_io_in_map[] = {
311 [UART_RX] = 0,
312 [UART_IER] = 2,
313 [UART_IIR] = 3,
314 [UART_LCR] = 5,
315 [UART_MCR] = 6,
316 [UART_LSR] = 7,
317 [UART_MSR] = 8,
318};
319
320static const u8 au_io_out_map[] = {
321 [UART_TX] = 1,
322 [UART_IER] = 2,
323 [UART_FCR] = 4,
324 [UART_LCR] = 5,
325 [UART_MCR] = 6,
326};
327
328/* sane hardware needs no mapping */
David Daney7d6a07d2009-01-02 13:49:47 +0000329static inline int map_8250_in_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000330{
David Daney7d6a07d2009-01-02 13:49:47 +0000331 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000332 return offset;
333 return au_io_in_map[offset];
334}
335
David Daney7d6a07d2009-01-02 13:49:47 +0000336static inline int map_8250_out_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_out_map[offset];
341}
342
Alan Cox6f803cd2008-02-08 04:18:52 -0800343#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700344
345static const u8
346 regmap_in[8] = {
347 [UART_RX] = 0x00,
348 [UART_IER] = 0x0c,
349 [UART_IIR] = 0x14,
350 [UART_LCR] = 0x1c,
351 [UART_MCR] = 0x20,
352 [UART_LSR] = 0x24,
353 [UART_MSR] = 0x28,
354 [UART_SCR] = 0x2c
355 },
356 regmap_out[8] = {
357 [UART_TX] = 0x04,
358 [UART_IER] = 0x0c,
359 [UART_FCR] = 0x18,
360 [UART_LCR] = 0x1c,
361 [UART_MCR] = 0x20,
362 [UART_LSR] = 0x24,
363 [UART_MSR] = 0x28,
364 [UART_SCR] = 0x2c
365 };
366
David Daney7d6a07d2009-01-02 13:49:47 +0000367static inline int map_8250_in_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700368{
David Daney7d6a07d2009-01-02 13:49:47 +0000369 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700370 return offset;
371 return regmap_in[offset];
372}
373
David Daney7d6a07d2009-01-02 13:49:47 +0000374static inline int map_8250_out_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_out[offset];
379}
380
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000381#else
382
383/* sane hardware needs no mapping */
384#define map_8250_in_reg(up, offset) (offset)
385#define map_8250_out_reg(up, offset) (offset)
386
387#endif
388
David Daney7d6a07d2009-01-02 13:49:47 +0000389static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
David Daney7d6a07d2009-01-02 13:49:47 +0000391 offset = map_8250_in_reg(p, offset) << p->regshift;
392 outb(p->hub6 - 1 + offset, p->iobase);
393 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
David Daney7d6a07d2009-01-02 13:49:47 +0000396static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
David Daney7d6a07d2009-01-02 13:49:47 +0000398 offset = map_8250_out_reg(p, offset) << p->regshift;
399 outb(p->hub6 - 1 + offset, p->iobase);
400 outb(value, p->iobase + 1);
401}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
David Daney7d6a07d2009-01-02 13:49:47 +0000403static unsigned int mem_serial_in(struct uart_port *p, int offset)
404{
405 offset = map_8250_in_reg(p, offset) << p->regshift;
406 return readb(p->membase + offset);
407}
408
409static void mem_serial_out(struct uart_port *p, int offset, int value)
410{
411 offset = map_8250_out_reg(p, offset) << p->regshift;
412 writeb(value, p->membase + offset);
413}
414
415static void mem32_serial_out(struct uart_port *p, int offset, int value)
416{
417 offset = map_8250_out_reg(p, offset) << p->regshift;
418 writel(value, p->membase + offset);
419}
420
421static unsigned int mem32_serial_in(struct uart_port *p, int offset)
422{
423 offset = map_8250_in_reg(p, offset) << p->regshift;
424 return readl(p->membase + offset);
425}
426
David Daney7d6a07d2009-01-02 13:49:47 +0000427static unsigned int au_serial_in(struct uart_port *p, int offset)
428{
429 offset = map_8250_in_reg(p, offset) << p->regshift;
430 return __raw_readl(p->membase + offset);
431}
432
433static void au_serial_out(struct uart_port *p, int offset, int value)
434{
435 offset = map_8250_out_reg(p, offset) << p->regshift;
436 __raw_writel(value, p->membase + offset);
437}
David Daney7d6a07d2009-01-02 13:49:47 +0000438
439static unsigned int tsi_serial_in(struct uart_port *p, int offset)
440{
441 unsigned int tmp;
442 offset = map_8250_in_reg(p, offset) << p->regshift;
443 if (offset == UART_IIR) {
444 tmp = readl(p->membase + (UART_IIR & ~3));
445 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
446 } else
447 return readb(p->membase + offset);
448}
449
450static void tsi_serial_out(struct uart_port *p, int offset, int value)
451{
452 offset = map_8250_out_reg(p, offset) << p->regshift;
453 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
454 writeb(value, p->membase + offset);
455}
456
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000457/* Save the LCR value so it can be re-written when a Busy Detect IRQ occurs. */
458static inline void dwapb_save_out_value(struct uart_port *p, int offset,
459 int value)
460{
461 struct uart_8250_port *up =
462 container_of(p, struct uart_8250_port, port);
463
464 if (offset == UART_LCR)
465 up->lcr = value;
466}
467
468/* Read the IER to ensure any interrupt is cleared before returning from ISR. */
469static inline void dwapb_check_clear_ier(struct uart_port *p, int offset)
470{
471 if (offset == UART_TX || offset == UART_IER)
472 p->serial_in(p, UART_IER);
473}
474
David Daney7d6a07d2009-01-02 13:49:47 +0000475static void dwapb_serial_out(struct uart_port *p, int offset, int value)
476{
477 int save_offset = offset;
478 offset = map_8250_out_reg(p, offset) << p->regshift;
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000479 dwapb_save_out_value(p, save_offset, value);
David Daney7d6a07d2009-01-02 13:49:47 +0000480 writeb(value, p->membase + offset);
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000481 dwapb_check_clear_ier(p, save_offset);
482}
483
484static void dwapb32_serial_out(struct uart_port *p, int offset, int value)
485{
486 int save_offset = offset;
487 offset = map_8250_out_reg(p, offset) << p->regshift;
488 dwapb_save_out_value(p, save_offset, value);
489 writel(value, p->membase + offset);
490 dwapb_check_clear_ier(p, save_offset);
David Daney7d6a07d2009-01-02 13:49:47 +0000491}
492
493static unsigned int io_serial_in(struct uart_port *p, int offset)
494{
495 offset = map_8250_in_reg(p, offset) << p->regshift;
496 return inb(p->iobase + offset);
497}
498
499static void io_serial_out(struct uart_port *p, int offset, int value)
500{
501 offset = map_8250_out_reg(p, offset) << p->regshift;
502 outb(value, p->iobase + offset);
503}
504
505static void set_io_from_upio(struct uart_port *p)
506{
Jamie Iles49d57412010-12-01 23:39:35 +0000507 struct uart_8250_port *up =
508 container_of(p, struct uart_8250_port, port);
David Daney7d6a07d2009-01-02 13:49:47 +0000509 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000511 p->serial_in = hub6_serial_in;
512 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 break;
514
515 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000516 p->serial_in = mem_serial_in;
517 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 break;
519
Thomas Koellerbd71c182007-05-06 14:48:47 -0700520 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000522 p->serial_in = mem32_serial_in;
523 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 break;
525
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000526 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000527 p->serial_in = au_serial_in;
528 p->serial_out = au_serial_out;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000529 break;
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200530
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700531 case UPIO_TSI:
David Daney7d6a07d2009-01-02 13:49:47 +0000532 p->serial_in = tsi_serial_in;
533 p->serial_out = tsi_serial_out;
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700534 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000535
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700536 case UPIO_DWAPB:
David Daney7d6a07d2009-01-02 13:49:47 +0000537 p->serial_in = mem_serial_in;
538 p->serial_out = dwapb_serial_out;
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700539 break;
540
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000541 case UPIO_DWAPB32:
542 p->serial_in = mem32_serial_in;
543 p->serial_out = dwapb32_serial_out;
544 break;
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000547 p->serial_in = io_serial_in;
548 p->serial_out = io_serial_out;
549 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100551 /* Remember loaded iotype */
552 up->cur_iotype = p->iotype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Alex Williamson40b36da2007-02-14 00:33:04 -0800555static void
556serial_out_sync(struct uart_8250_port *up, int offset, int value)
557{
David Daney7d6a07d2009-01-02 13:49:47 +0000558 struct uart_port *p = &up->port;
559 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800560 case UPIO_MEM:
561 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800562 case UPIO_AU:
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700563 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000564 case UPIO_DWAPB32:
David Daney7d6a07d2009-01-02 13:49:47 +0000565 p->serial_out(p, offset, value);
566 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800567 break;
568 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000569 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800570 }
571}
572
David Daney7d6a07d2009-01-02 13:49:47 +0000573#define serial_in(up, offset) \
574 (up->port.serial_in(&(up)->port, (offset)))
575#define serial_out(up, offset, value) \
576 (up->port.serial_out(&(up)->port, (offset), (value)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/*
578 * We used to support using pause I/O for certain machines. We
579 * haven't supported this for a while, but just in case it's badly
580 * needed for certain old 386 machines, I've left these #define's
581 * in....
582 */
583#define serial_inp(up, offset) serial_in(up, offset)
584#define serial_outp(up, offset, value) serial_out(up, offset, value)
585
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100586/* Uart divisor latch read */
587static inline int _serial_dl_read(struct uart_8250_port *up)
588{
589 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
590}
591
592/* Uart divisor latch write */
593static inline void _serial_dl_write(struct uart_8250_port *up, int value)
594{
595 serial_outp(up, UART_DLL, value & 0xff);
596 serial_outp(up, UART_DLM, value >> 8 & 0xff);
597}
598
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200599#if defined(CONFIG_MIPS_ALCHEMY)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100600/* Au1x00 haven't got a standard divisor latch */
601static int serial_dl_read(struct uart_8250_port *up)
602{
603 if (up->port.iotype == UPIO_AU)
604 return __raw_readl(up->port.membase + 0x28);
605 else
606 return _serial_dl_read(up);
607}
608
609static void serial_dl_write(struct uart_8250_port *up, int value)
610{
611 if (up->port.iotype == UPIO_AU)
612 __raw_writel(value, up->port.membase + 0x28);
613 else
614 _serial_dl_write(up, value);
615}
Alan Cox6f803cd2008-02-08 04:18:52 -0800616#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700617static int serial_dl_read(struct uart_8250_port *up)
618{
619 return (up->port.iotype == UPIO_RM9000) ?
620 (((__raw_readl(up->port.membase + 0x10) << 8) |
621 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
622 _serial_dl_read(up);
623}
624
625static void serial_dl_write(struct uart_8250_port *up, int value)
626{
627 if (up->port.iotype == UPIO_RM9000) {
628 __raw_writel(value, up->port.membase + 0x08);
629 __raw_writel(value >> 8, up->port.membase + 0x10);
630 } else {
631 _serial_dl_write(up, value);
632 }
633}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100634#else
635#define serial_dl_read(up) _serial_dl_read(up)
636#define serial_dl_write(up, value) _serial_dl_write(up, value)
637#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639/*
640 * For the 16C950
641 */
642static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
643{
644 serial_out(up, UART_SCR, offset);
645 serial_out(up, UART_ICR, value);
646}
647
648static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
649{
650 unsigned int value;
651
652 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
653 serial_out(up, UART_SCR, offset);
654 value = serial_in(up, UART_ICR);
655 serial_icr_write(up, UART_ACR, up->acr);
656
657 return value;
658}
659
660/*
661 * FIFO support.
662 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100663static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 if (p->capabilities & UART_CAP_FIFO) {
666 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
667 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
668 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
669 serial_outp(p, UART_FCR, 0);
670 }
671}
672
673/*
674 * IER sleep support. UARTs which have EFRs need the "extended
675 * capability" bit enabled. Note that on XR16C850s, we need to
676 * reset LCR to write to IER.
677 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100678static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 if (p->capabilities & UART_CAP_SLEEP) {
681 if (p->capabilities & UART_CAP_EFR) {
682 serial_outp(p, UART_LCR, 0xBF);
683 serial_outp(p, UART_EFR, UART_EFR_ECB);
684 serial_outp(p, UART_LCR, 0);
685 }
686 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
687 if (p->capabilities & UART_CAP_EFR) {
688 serial_outp(p, UART_LCR, 0xBF);
689 serial_outp(p, UART_EFR, 0);
690 serial_outp(p, UART_LCR, 0);
691 }
692 }
693}
694
695#ifdef CONFIG_SERIAL_8250_RSA
696/*
697 * Attempts to turn on the RSA FIFO. Returns zero on failure.
698 * We set the port uart clock rate if we succeed.
699 */
700static int __enable_rsa(struct uart_8250_port *up)
701{
702 unsigned char mode;
703 int result;
704
705 mode = serial_inp(up, UART_RSA_MSR);
706 result = mode & UART_RSA_MSR_FIFO;
707
708 if (!result) {
709 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
710 mode = serial_inp(up, UART_RSA_MSR);
711 result = mode & UART_RSA_MSR_FIFO;
712 }
713
714 if (result)
715 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
716
717 return result;
718}
719
720static void enable_rsa(struct uart_8250_port *up)
721{
722 if (up->port.type == PORT_RSA) {
723 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
724 spin_lock_irq(&up->port.lock);
725 __enable_rsa(up);
726 spin_unlock_irq(&up->port.lock);
727 }
728 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
729 serial_outp(up, UART_RSA_FRR, 0);
730 }
731}
732
733/*
734 * Attempts to turn off the RSA FIFO. Returns zero on failure.
735 * It is unknown why interrupts were disabled in here. However,
736 * the caller is expected to preserve this behaviour by grabbing
737 * the spinlock before calling this function.
738 */
739static void disable_rsa(struct uart_8250_port *up)
740{
741 unsigned char mode;
742 int result;
743
744 if (up->port.type == PORT_RSA &&
745 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
746 spin_lock_irq(&up->port.lock);
747
748 mode = serial_inp(up, UART_RSA_MSR);
749 result = !(mode & UART_RSA_MSR_FIFO);
750
751 if (!result) {
752 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
753 mode = serial_inp(up, UART_RSA_MSR);
754 result = !(mode & UART_RSA_MSR_FIFO);
755 }
756
757 if (result)
758 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
759 spin_unlock_irq(&up->port.lock);
760 }
761}
762#endif /* CONFIG_SERIAL_8250_RSA */
763
764/*
765 * This is a quickie test to see how big the FIFO is.
766 * It doesn't work at all the time, more's the pity.
767 */
768static int size_fifo(struct uart_8250_port *up)
769{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100770 unsigned char old_fcr, old_mcr, old_lcr;
771 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 int count;
773
774 old_lcr = serial_inp(up, UART_LCR);
775 serial_outp(up, UART_LCR, 0);
776 old_fcr = serial_inp(up, UART_FCR);
777 old_mcr = serial_inp(up, UART_MCR);
778 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
779 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
780 serial_outp(up, UART_MCR, UART_MCR_LOOP);
781 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100782 old_dl = serial_dl_read(up);
783 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 serial_outp(up, UART_LCR, 0x03);
785 for (count = 0; count < 256; count++)
786 serial_outp(up, UART_TX, count);
787 mdelay(20);/* FIXME - schedule_timeout */
788 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
789 (count < 256); count++)
790 serial_inp(up, UART_RX);
791 serial_outp(up, UART_FCR, old_fcr);
792 serial_outp(up, UART_MCR, old_mcr);
793 serial_outp(up, UART_LCR, UART_LCR_DLAB);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100794 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 serial_outp(up, UART_LCR, old_lcr);
796
797 return count;
798}
799
800/*
801 * Read UART ID using the divisor method - set DLL and DLM to zero
802 * and the revision will be in DLL and device type in DLM. We
803 * preserve the device state across this.
804 */
805static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
806{
807 unsigned char old_dll, old_dlm, old_lcr;
808 unsigned int id;
809
810 old_lcr = serial_inp(p, UART_LCR);
811 serial_outp(p, UART_LCR, UART_LCR_DLAB);
812
813 old_dll = serial_inp(p, UART_DLL);
814 old_dlm = serial_inp(p, UART_DLM);
815
816 serial_outp(p, UART_DLL, 0);
817 serial_outp(p, UART_DLM, 0);
818
819 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
820
821 serial_outp(p, UART_DLL, old_dll);
822 serial_outp(p, UART_DLM, old_dlm);
823 serial_outp(p, UART_LCR, old_lcr);
824
825 return id;
826}
827
828/*
829 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
830 * When this function is called we know it is at least a StarTech
831 * 16650 V2, but it might be one of several StarTech UARTs, or one of
832 * its clones. (We treat the broken original StarTech 16650 V1 as a
833 * 16550, and why not? Startech doesn't seem to even acknowledge its
834 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700835 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 * What evil have men's minds wrought...
837 */
838static void autoconfig_has_efr(struct uart_8250_port *up)
839{
840 unsigned int id1, id2, id3, rev;
841
842 /*
843 * Everything with an EFR has SLEEP
844 */
845 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
846
847 /*
848 * First we check to see if it's an Oxford Semiconductor UART.
849 *
850 * If we have to do this here because some non-National
851 * Semiconductor clone chips lock up if you try writing to the
852 * LSR register (which serial_icr_read does)
853 */
854
855 /*
856 * Check for Oxford Semiconductor 16C950.
857 *
858 * EFR [4] must be set else this test fails.
859 *
860 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
861 * claims that it's needed for 952 dual UART's (which are not
862 * recommended for new designs).
863 */
864 up->acr = 0;
865 serial_out(up, UART_LCR, 0xBF);
866 serial_out(up, UART_EFR, UART_EFR_ECB);
867 serial_out(up, UART_LCR, 0x00);
868 id1 = serial_icr_read(up, UART_ID1);
869 id2 = serial_icr_read(up, UART_ID2);
870 id3 = serial_icr_read(up, UART_ID3);
871 rev = serial_icr_read(up, UART_REV);
872
873 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
874
875 if (id1 == 0x16 && id2 == 0xC9 &&
876 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
877 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100878
879 /*
880 * Enable work around for the Oxford Semiconductor 952 rev B
881 * chip which causes it to seriously miscalculate baud rates
882 * when DLL is 0.
883 */
884 if (id3 == 0x52 && rev == 0x01)
885 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return;
887 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /*
890 * We check for a XR16C850 by setting DLL and DLM to 0, and then
891 * reading back DLL and DLM. The chip type depends on the DLM
892 * value read back:
893 * 0x10 - XR16C850 and the DLL contains the chip revision.
894 * 0x12 - XR16C2850.
895 * 0x14 - XR16C854.
896 */
897 id1 = autoconfig_read_divisor_id(up);
898 DEBUG_AUTOCONF("850id=%04x ", id1);
899
900 id2 = id1 >> 8;
901 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 up->port.type = PORT_16850;
903 return;
904 }
905
906 /*
907 * It wasn't an XR16C850.
908 *
909 * We distinguish between the '654 and the '650 by counting
910 * how many bytes are in the FIFO. I'm using this for now,
911 * since that's the technique that was sent to me in the
912 * serial driver update, but I'm not convinced this works.
913 * I've had problems doing this in the past. -TYT
914 */
915 if (size_fifo(up) == 64)
916 up->port.type = PORT_16654;
917 else
918 up->port.type = PORT_16650V2;
919}
920
921/*
922 * We detected a chip without a FIFO. Only two fall into
923 * this category - the original 8250 and the 16450. The
924 * 16450 has a scratch register (accessible with LCR=0)
925 */
926static void autoconfig_8250(struct uart_8250_port *up)
927{
928 unsigned char scratch, status1, status2;
929
930 up->port.type = PORT_8250;
931
932 scratch = serial_in(up, UART_SCR);
933 serial_outp(up, UART_SCR, 0xa5);
934 status1 = serial_in(up, UART_SCR);
935 serial_outp(up, UART_SCR, 0x5a);
936 status2 = serial_in(up, UART_SCR);
937 serial_outp(up, UART_SCR, scratch);
938
939 if (status1 == 0xa5 && status2 == 0x5a)
940 up->port.type = PORT_16450;
941}
942
943static int broken_efr(struct uart_8250_port *up)
944{
945 /*
946 * Exar ST16C2550 "A2" devices incorrectly detect as
947 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200948 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 */
950 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
951 return 1;
952
953 return 0;
954}
955
956/*
957 * We know that the chip has FIFOs. Does it have an EFR? The
958 * EFR is located in the same register position as the IIR and
959 * we know the top two bits of the IIR are currently set. The
960 * EFR should contain zero. Try to read the EFR.
961 */
962static void autoconfig_16550a(struct uart_8250_port *up)
963{
964 unsigned char status1, status2;
965 unsigned int iersave;
966
967 up->port.type = PORT_16550A;
968 up->capabilities |= UART_CAP_FIFO;
969
970 /*
971 * Check for presence of the EFR when DLAB is set.
972 * Only ST16C650V1 UARTs pass this test.
973 */
974 serial_outp(up, UART_LCR, UART_LCR_DLAB);
975 if (serial_in(up, UART_EFR) == 0) {
976 serial_outp(up, UART_EFR, 0xA8);
977 if (serial_in(up, UART_EFR) != 0) {
978 DEBUG_AUTOCONF("EFRv1 ");
979 up->port.type = PORT_16650;
980 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
981 } else {
982 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
983 }
984 serial_outp(up, UART_EFR, 0);
985 return;
986 }
987
988 /*
989 * Maybe it requires 0xbf to be written to the LCR.
990 * (other ST16C650V2 UARTs, TI16C752A, etc)
991 */
992 serial_outp(up, UART_LCR, 0xBF);
993 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
994 DEBUG_AUTOCONF("EFRv2 ");
995 autoconfig_has_efr(up);
996 return;
997 }
998
999 /*
1000 * Check for a National Semiconductor SuperIO chip.
1001 * Attempt to switch to bank 2, read the value of the LOOP bit
1002 * from EXCR1. Switch back to bank 0, change it in MCR. Then
1003 * switch back to bank 2, read it from EXCR1 again and check
1004 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 */
1006 serial_outp(up, UART_LCR, 0);
1007 status1 = serial_in(up, UART_MCR);
1008 serial_outp(up, UART_LCR, 0xE0);
1009 status2 = serial_in(up, 0x02); /* EXCR1 */
1010
1011 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
1012 serial_outp(up, UART_LCR, 0);
1013 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
1014 serial_outp(up, UART_LCR, 0xE0);
1015 status2 = serial_in(up, 0x02); /* EXCR1 */
1016 serial_outp(up, UART_LCR, 0);
1017 serial_outp(up, UART_MCR, status1);
1018
1019 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +01001020 unsigned short quot;
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +01001023
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01001024 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +01001025 quot <<= 3;
1026
David Woodhouseb5b82df2007-05-17 14:27:39 +08001027 status1 = serial_in(up, 0x04); /* EXCR2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 status1 &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
1029 status1 |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
1030 serial_outp(up, 0x04, status1);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001031
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01001032 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
David Woodhouse857dde22005-05-21 15:52:23 +01001034 serial_outp(up, UART_LCR, 0);
1035
1036 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 up->port.type = PORT_NS16550A;
1038 up->capabilities |= UART_NATSEMI;
1039 return;
1040 }
1041 }
1042
1043 /*
1044 * No EFR. Try to detect a TI16750, which only sets bit 5 of
1045 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1046 * Try setting it with and without DLAB set. Cheap clones
1047 * set bit 5 without DLAB set.
1048 */
1049 serial_outp(up, UART_LCR, 0);
1050 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1051 status1 = serial_in(up, UART_IIR) >> 5;
1052 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1053 serial_outp(up, UART_LCR, UART_LCR_DLAB);
1054 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1055 status2 = serial_in(up, UART_IIR) >> 5;
1056 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1057 serial_outp(up, UART_LCR, 0);
1058
1059 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1060
1061 if (status1 == 6 && status2 == 7) {
1062 up->port.type = PORT_16750;
1063 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1064 return;
1065 }
1066
1067 /*
1068 * Try writing and reading the UART_IER_UUE bit (b6).
1069 * If it works, this is probably one of the Xscale platform's
1070 * internal UARTs.
1071 * We're going to explicitly set the UUE bit to 0 before
1072 * trying to write and read a 1 just to make sure it's not
1073 * already a 1 and maybe locked there before we even start start.
1074 */
1075 iersave = serial_in(up, UART_IER);
1076 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
1077 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1078 /*
1079 * OK it's in a known zero state, try writing and reading
1080 * without disturbing the current state of the other bits.
1081 */
1082 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
1083 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1084 /*
1085 * It's an Xscale.
1086 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1087 */
1088 DEBUG_AUTOCONF("Xscale ");
1089 up->port.type = PORT_XSCALE;
1090 up->capabilities |= UART_CAP_UUE;
1091 return;
1092 }
1093 } else {
1094 /*
1095 * If we got here we couldn't force the IER_UUE bit to 0.
1096 * Log it and continue.
1097 */
1098 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1099 }
1100 serial_outp(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001101
1102 /*
1103 * We distinguish between 16550A and U6 16550A by counting
1104 * how many bytes are in the FIFO.
1105 */
1106 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1107 up->port.type = PORT_U6_16550A;
1108 up->capabilities |= UART_CAP_AFE;
1109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
1112/*
1113 * This routine is called by rs_init() to initialize a specific serial
1114 * port. It determines what type of UART chip this serial port is
1115 * using: 8250, 16450, 16550, 16550A. The important question is
1116 * whether or not this UART is a 16550A or not, since this will
1117 * determine whether or not we can use its FIFO features or not.
1118 */
1119static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1120{
1121 unsigned char status1, scratch, scratch2, scratch3;
1122 unsigned char save_lcr, save_mcr;
1123 unsigned long flags;
1124
1125 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
1126 return;
1127
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001128 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
David S. Miller84408382008-10-13 10:45:26 +01001129 serial_index(&up->port), up->port.iobase, up->port.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 /*
1132 * We really do need global IRQs disabled here - we're going to
1133 * be frobbing the chips IRQ enable register to see if it exists.
1134 */
1135 spin_lock_irqsave(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001138 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 if (!(up->port.flags & UPF_BUGGY_UART)) {
1141 /*
1142 * Do a simple existence test first; if we fail this,
1143 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001144 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 * 0x80 is used as a nonsense port to prevent against
1146 * false positives due to ISA bus float. The
1147 * assumption is that 0x80 is a non-existent port;
1148 * which should be safe since include/asm/io.h also
1149 * makes this assumption.
1150 *
1151 * Note: this is safe as long as MCR bit 4 is clear
1152 * and the device is in "PC" mode.
1153 */
1154 scratch = serial_inp(up, UART_IER);
1155 serial_outp(up, UART_IER, 0);
1156#ifdef __i386__
1157 outb(0xff, 0x080);
1158#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001159 /*
1160 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1161 * 16C754B) allow only to modify them if an EFR bit is set.
1162 */
1163 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 serial_outp(up, UART_IER, 0x0F);
1165#ifdef __i386__
1166 outb(0, 0x080);
1167#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001168 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 serial_outp(up, UART_IER, scratch);
1170 if (scratch2 != 0 || scratch3 != 0x0F) {
1171 /*
1172 * We failed; there's nothing here
1173 */
1174 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1175 scratch2, scratch3);
1176 goto out;
1177 }
1178 }
1179
1180 save_mcr = serial_in(up, UART_MCR);
1181 save_lcr = serial_in(up, UART_LCR);
1182
Thomas Koellerbd71c182007-05-06 14:48:47 -07001183 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 * Check to see if a UART is really there. Certain broken
1185 * internal modems based on the Rockwell chipset fail this
1186 * test, because they apparently don't implement the loopback
1187 * test mode. So this test is skipped on the COM 1 through
1188 * COM 4 ports. This *should* be safe, since no board
1189 * manufacturer would be stupid enough to design a board
1190 * that conflicts with COM 1-4 --- we hope!
1191 */
1192 if (!(up->port.flags & UPF_SKIP_TEST)) {
1193 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1194 status1 = serial_inp(up, UART_MSR) & 0xF0;
1195 serial_outp(up, UART_MCR, save_mcr);
1196 if (status1 != 0x90) {
1197 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1198 status1);
1199 goto out;
1200 }
1201 }
1202
1203 /*
1204 * We're pretty sure there's a port here. Lets find out what
1205 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001206 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * determines what we test for next.
1208 *
1209 * We also initialise the EFR (if any) to zero for later. The
1210 * EFR occupies the same register location as the FCR and IIR.
1211 */
1212 serial_outp(up, UART_LCR, 0xBF);
1213 serial_outp(up, UART_EFR, 0);
1214 serial_outp(up, UART_LCR, 0);
1215
1216 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1217 scratch = serial_in(up, UART_IIR) >> 6;
1218
1219 DEBUG_AUTOCONF("iir=%d ", scratch);
1220
1221 switch (scratch) {
1222 case 0:
1223 autoconfig_8250(up);
1224 break;
1225 case 1:
1226 up->port.type = PORT_UNKNOWN;
1227 break;
1228 case 2:
1229 up->port.type = PORT_16550;
1230 break;
1231 case 3:
1232 autoconfig_16550a(up);
1233 break;
1234 }
1235
1236#ifdef CONFIG_SERIAL_8250_RSA
1237 /*
1238 * Only probe for RSA ports if we got the region.
1239 */
1240 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1241 int i;
1242
1243 for (i = 0 ; i < probe_rsa_count; ++i) {
1244 if (probe_rsa[i] == up->port.iobase &&
1245 __enable_rsa(up)) {
1246 up->port.type = PORT_RSA;
1247 break;
1248 }
1249 }
1250 }
1251#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 serial_outp(up, UART_LCR, save_lcr);
1254
1255 if (up->capabilities != uart_config[up->port.type].flags) {
1256 printk(KERN_WARNING
1257 "ttyS%d: detected caps %08x should be %08x\n",
David S. Miller84408382008-10-13 10:45:26 +01001258 serial_index(&up->port), up->capabilities,
1259 uart_config[up->port.type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261
1262 up->port.fifosize = uart_config[up->port.type].fifo_size;
1263 up->capabilities = uart_config[up->port.type].flags;
1264 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1265
1266 if (up->port.type == PORT_UNKNOWN)
1267 goto out;
1268
1269 /*
1270 * Reset the UART.
1271 */
1272#ifdef CONFIG_SERIAL_8250_RSA
1273 if (up->port.type == PORT_RSA)
1274 serial_outp(up, UART_RSA_FRR, 0);
1275#endif
1276 serial_outp(up, UART_MCR, save_mcr);
1277 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001278 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001279 if (up->capabilities & UART_CAP_UUE)
1280 serial_outp(up, UART_IER, UART_IER_UUE);
1281 else
1282 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Thomas Koellerbd71c182007-05-06 14:48:47 -07001284 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1287}
1288
1289static void autoconfig_irq(struct uart_8250_port *up)
1290{
1291 unsigned char save_mcr, save_ier;
1292 unsigned char save_ICP = 0;
1293 unsigned int ICP = 0;
1294 unsigned long irqs;
1295 int irq;
1296
1297 if (up->port.flags & UPF_FOURPORT) {
1298 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1299 save_ICP = inb_p(ICP);
1300 outb_p(0x80, ICP);
1301 (void) inb_p(ICP);
1302 }
1303
1304 /* forget possible initially masked and pending IRQ */
1305 probe_irq_off(probe_irq_on());
1306 save_mcr = serial_inp(up, UART_MCR);
1307 save_ier = serial_inp(up, UART_IER);
1308 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 irqs = probe_irq_on();
1311 serial_outp(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001312 udelay(10);
1313 if (up->port.flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 serial_outp(up, UART_MCR,
1315 UART_MCR_DTR | UART_MCR_RTS);
1316 } else {
1317 serial_outp(up, UART_MCR,
1318 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1319 }
1320 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1321 (void)serial_inp(up, UART_LSR);
1322 (void)serial_inp(up, UART_RX);
1323 (void)serial_inp(up, UART_IIR);
1324 (void)serial_inp(up, UART_MSR);
1325 serial_outp(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001326 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 irq = probe_irq_off(irqs);
1328
1329 serial_outp(up, UART_MCR, save_mcr);
1330 serial_outp(up, UART_IER, save_ier);
1331
1332 if (up->port.flags & UPF_FOURPORT)
1333 outb_p(save_ICP, ICP);
1334
1335 up->port.irq = (irq > 0) ? irq : 0;
1336}
1337
Russell Kinge763b902005-06-29 18:41:51 +01001338static inline void __stop_tx(struct uart_8250_port *p)
1339{
1340 if (p->ier & UART_IER_THRI) {
1341 p->ier &= ~UART_IER_THRI;
1342 serial_out(p, UART_IER, p->ier);
1343 }
1344}
1345
Russell Kingb129a8c2005-08-31 10:12:14 +01001346static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Jamie Iles49d57412010-12-01 23:39:35 +00001348 struct uart_8250_port *up =
1349 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Russell Kinge763b902005-06-29 18:41:51 +01001351 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 /*
Russell Kinge763b902005-06-29 18:41:51 +01001354 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 */
Russell Kinge763b902005-06-29 18:41:51 +01001356 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 up->acr |= UART_ACR_TXDIS;
1358 serial_icr_write(up, UART_ACR, up->acr);
1359 }
1360}
1361
Russell King55d3b282005-06-23 15:05:41 +01001362static void transmit_chars(struct uart_8250_port *up);
1363
Russell Kingb129a8c2005-08-31 10:12:14 +01001364static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Jamie Iles49d57412010-12-01 23:39:35 +00001366 struct uart_8250_port *up =
1367 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 if (!(up->ier & UART_IER_THRI)) {
1370 up->ier |= UART_IER_THRI;
1371 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001372
Russell King67f76542005-06-23 22:26:43 +01001373 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001374 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001375 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001376 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Thomas Koellerbd71c182007-05-06 14:48:47 -07001377 if ((up->port.type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001378 (lsr & UART_LSR_THRE) :
1379 (lsr & UART_LSR_TEMT))
Russell King55d3b282005-06-23 15:05:41 +01001380 transmit_chars(up);
1381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
Russell Kinge763b902005-06-29 18:41:51 +01001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 /*
Russell Kinge763b902005-06-29 18:41:51 +01001385 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 */
Russell Kinge763b902005-06-29 18:41:51 +01001387 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 up->acr &= ~UART_ACR_TXDIS;
1389 serial_icr_write(up, UART_ACR, up->acr);
1390 }
1391}
1392
1393static void serial8250_stop_rx(struct uart_port *port)
1394{
Jamie Iles49d57412010-12-01 23:39:35 +00001395 struct uart_8250_port *up =
1396 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 up->ier &= ~UART_IER_RLSI;
1399 up->port.read_status_mask &= ~UART_LSR_DR;
1400 serial_out(up, UART_IER, up->ier);
1401}
1402
1403static void serial8250_enable_ms(struct uart_port *port)
1404{
Jamie Iles49d57412010-12-01 23:39:35 +00001405 struct uart_8250_port *up =
1406 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001408 /* no MSR capabilities */
1409 if (up->bugs & UART_BUG_NOMSR)
1410 return;
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 up->ier |= UART_IER_MSI;
1413 serial_out(up, UART_IER, up->ier);
1414}
1415
Russell Kingea8874d2006-01-04 19:43:24 +00001416static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001417receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001419 struct tty_struct *tty = up->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 unsigned char ch, lsr = *status;
1421 int max_count = 256;
1422 char flag;
1423
1424 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001425 if (likely(lsr & UART_LSR_DR))
1426 ch = serial_inp(up, UART_RX);
1427 else
1428 /*
1429 * Intel 82571 has a Serial Over Lan device that will
1430 * set UART_LSR_BI without setting UART_LSR_DR when
1431 * it receives a break. To avoid reading from the
1432 * receive buffer without UART_LSR_DR bit set, we
1433 * just force the read character to be 0
1434 */
1435 ch = 0;
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 flag = TTY_NORMAL;
1438 up->port.icount.rx++;
1439
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001440 lsr |= up->lsr_saved_flags;
1441 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001443 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 /*
1445 * For statistics only
1446 */
1447 if (lsr & UART_LSR_BI) {
1448 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1449 up->port.icount.brk++;
1450 /*
1451 * We do the SysRQ and SAK checking
1452 * here because otherwise the break
1453 * may get masked by ignore_status_mask
1454 * or read_status_mask.
1455 */
1456 if (uart_handle_break(&up->port))
1457 goto ignore_char;
1458 } else if (lsr & UART_LSR_PE)
1459 up->port.icount.parity++;
1460 else if (lsr & UART_LSR_FE)
1461 up->port.icount.frame++;
1462 if (lsr & UART_LSR_OE)
1463 up->port.icount.overrun++;
1464
1465 /*
Russell King23907eb2005-04-16 15:26:39 -07001466 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 */
1468 lsr &= up->port.read_status_mask;
1469
1470 if (lsr & UART_LSR_BI) {
1471 DEBUG_INTR("handling break....");
1472 flag = TTY_BREAK;
1473 } else if (lsr & UART_LSR_PE)
1474 flag = TTY_PARITY;
1475 else if (lsr & UART_LSR_FE)
1476 flag = TTY_FRAME;
1477 }
David Howells7d12e782006-10-05 14:55:46 +01001478 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001480
1481 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1482
Alan Cox6f803cd2008-02-08 04:18:52 -08001483ignore_char:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 lsr = serial_inp(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001485 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 spin_unlock(&up->port.lock);
1487 tty_flip_buffer_push(tty);
1488 spin_lock(&up->port.lock);
1489 *status = lsr;
1490}
1491
Russell Kingea8874d2006-01-04 19:43:24 +00001492static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001494 struct circ_buf *xmit = &up->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 int count;
1496
1497 if (up->port.x_char) {
1498 serial_outp(up, UART_TX, up->port.x_char);
1499 up->port.icount.tx++;
1500 up->port.x_char = 0;
1501 return;
1502 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001503 if (uart_tx_stopped(&up->port)) {
1504 serial8250_stop_tx(&up->port);
1505 return;
1506 }
1507 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001508 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 return;
1510 }
1511
1512 count = up->tx_loadsz;
1513 do {
1514 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1515 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1516 up->port.icount.tx++;
1517 if (uart_circ_empty(xmit))
1518 break;
1519 } while (--count > 0);
1520
1521 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1522 uart_write_wakeup(&up->port);
1523
1524 DEBUG_INTR("THRE...");
1525
1526 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001527 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
Russell King2af7cd62006-01-04 16:55:09 +00001530static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Russell King2af7cd62006-01-04 16:55:09 +00001532 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001534 status |= up->msr_saved_flags;
1535 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001536 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001537 up->port.state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001538 if (status & UART_MSR_TERI)
1539 up->port.icount.rng++;
1540 if (status & UART_MSR_DDSR)
1541 up->port.icount.dsr++;
1542 if (status & UART_MSR_DDCD)
1543 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1544 if (status & UART_MSR_DCTS)
1545 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Alan Coxbdc04e32009-09-19 13:13:31 -07001547 wake_up_interruptible(&up->port.state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Russell King2af7cd62006-01-04 16:55:09 +00001550 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552
1553/*
1554 * This handles the interrupt from one port.
1555 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001556static void serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Russell King45e24602006-01-04 19:19:06 +00001558 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001559 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001560
Jiri Kosina4bf36312007-04-23 14:41:21 -07001561 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001562
1563 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 DEBUG_INTR("status = %x...", status);
1566
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001567 if (status & (UART_LSR_DR | UART_LSR_BI))
David Howells7d12e782006-10-05 14:55:46 +01001568 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 check_modem_status(up);
1570 if (status & UART_LSR_THRE)
1571 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001572
Jiri Kosina4bf36312007-04-23 14:41:21 -07001573 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
1576/*
1577 * This is the serial driver's interrupt routine.
1578 *
1579 * Arjan thinks the old way was overly complex, so it got simplified.
1580 * Alan disagrees, saying that need the complexity to handle the weird
1581 * nature of ISA shared interrupts. (This is a special exception.)
1582 *
1583 * In order to handle ISA shared interrupts properly, we need to check
1584 * that all ports have been serviced, and therefore the ISA interrupt
1585 * line has been de-asserted.
1586 *
1587 * This means we need to loop through all ports. checking that they
1588 * don't have an interrupt pending.
1589 */
David Howells7d12e782006-10-05 14:55:46 +01001590static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 struct irq_info *i = dev_id;
1593 struct list_head *l, *end = NULL;
1594 int pass_counter = 0, handled = 0;
1595
1596 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1597
1598 spin_lock(&i->lock);
1599
1600 l = i->head;
1601 do {
1602 struct uart_8250_port *up;
1603 unsigned int iir;
1604
1605 up = list_entry(l, struct uart_8250_port, list);
1606
1607 iir = serial_in(up, UART_IIR);
1608 if (!(iir & UART_IIR_NO_INT)) {
David Howells7d12e782006-10-05 14:55:46 +01001609 serial8250_handle_port(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 handled = 1;
1612
1613 end = NULL;
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00001614 } else if ((up->port.iotype == UPIO_DWAPB ||
1615 up->port.iotype == UPIO_DWAPB32) &&
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001616 (iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
1617 /* The DesignWare APB UART has an Busy Detect (0x07)
1618 * interrupt meaning an LCR write attempt occured while the
1619 * UART was busy. The interrupt must be cleared by reading
1620 * the UART status register (USR) and the LCR re-written. */
1621 unsigned int status;
1622 status = *(volatile u32 *)up->port.private_data;
1623 serial_out(up, UART_LCR, up->lcr);
1624
1625 handled = 1;
1626
1627 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 } else if (end == NULL)
1629 end = l;
1630
1631 l = l->next;
1632
1633 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1634 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001635 printk_ratelimited(KERN_ERR
1636 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 break;
1638 }
1639 } while (l != end);
1640
1641 spin_unlock(&i->lock);
1642
1643 DEBUG_INTR("end.\n");
1644
1645 return IRQ_RETVAL(handled);
1646}
1647
1648/*
1649 * To support ISA shared interrupts, we need to have one interrupt
1650 * handler that ensures that the IRQ line has been deasserted
1651 * before returning. Failing to do this will result in the IRQ
1652 * line being stuck active, and, since ISA irqs are edge triggered,
1653 * no more IRQs will be seen.
1654 */
1655static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1656{
1657 spin_lock_irq(&i->lock);
1658
1659 if (!list_empty(i->head)) {
1660 if (i->head == &up->list)
1661 i->head = i->head->next;
1662 list_del(&up->list);
1663 } else {
1664 BUG_ON(i->head != &up->list);
1665 i->head = NULL;
1666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001668 /* List empty so throw away the hash node */
1669 if (i->head == NULL) {
1670 hlist_del(&i->node);
1671 kfree(i);
1672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674
1675static int serial_link_irq_chain(struct uart_8250_port *up)
1676{
Alan Cox25db8ad2008-08-19 20:49:40 -07001677 struct hlist_head *h;
1678 struct hlist_node *n;
1679 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001680 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Alan Cox25db8ad2008-08-19 20:49:40 -07001682 mutex_lock(&hash_mutex);
1683
1684 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1685
1686 hlist_for_each(n, h) {
1687 i = hlist_entry(n, struct irq_info, node);
1688 if (i->irq == up->port.irq)
1689 break;
1690 }
1691
1692 if (n == NULL) {
1693 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1694 if (i == NULL) {
1695 mutex_unlock(&hash_mutex);
1696 return -ENOMEM;
1697 }
1698 spin_lock_init(&i->lock);
1699 i->irq = up->port.irq;
1700 hlist_add_head(&i->node, h);
1701 }
1702 mutex_unlock(&hash_mutex);
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 spin_lock_irq(&i->lock);
1705
1706 if (i->head) {
1707 list_add(&up->list, i->head);
1708 spin_unlock_irq(&i->lock);
1709
1710 ret = 0;
1711 } else {
1712 INIT_LIST_HEAD(&up->list);
1713 i->head = &up->list;
1714 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001715 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 ret = request_irq(up->port.irq, serial8250_interrupt,
1717 irq_flags, "serial", i);
1718 if (ret < 0)
1719 serial_do_unlink(i, up);
1720 }
1721
1722 return ret;
1723}
1724
1725static void serial_unlink_irq_chain(struct uart_8250_port *up)
1726{
Alan Cox25db8ad2008-08-19 20:49:40 -07001727 struct irq_info *i;
1728 struct hlist_node *n;
1729 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Alan Cox25db8ad2008-08-19 20:49:40 -07001731 mutex_lock(&hash_mutex);
1732
1733 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1734
1735 hlist_for_each(n, h) {
1736 i = hlist_entry(n, struct irq_info, node);
1737 if (i->irq == up->port.irq)
1738 break;
1739 }
1740
1741 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 BUG_ON(i->head == NULL);
1743
1744 if (list_empty(i->head))
1745 free_irq(up->port.irq, i);
1746
1747 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001748 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749}
1750
1751/*
1752 * This function is used to handle ports that do not have an
1753 * interrupt. This doesn't work very well for 16450's, but gives
1754 * barely passable results for a 16550A. (Although at the expense
1755 * of much CPU overhead).
1756 */
1757static void serial8250_timeout(unsigned long data)
1758{
1759 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 unsigned int iir;
1761
1762 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001763 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001764 serial8250_handle_port(up);
Anton Vorontsov54381062010-10-01 17:21:25 +04001765 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001766}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Alex Williamson40b36da2007-02-14 00:33:04 -08001768static void serial8250_backup_timeout(unsigned long data)
1769{
1770 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001771 unsigned int iir, ier = 0, lsr;
1772 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001773
1774 /*
1775 * Must disable interrupts or else we risk racing with the interrupt
1776 * based handler.
1777 */
1778 if (is_real_interrupt(up->port.irq)) {
1779 ier = serial_in(up, UART_IER);
1780 serial_out(up, UART_IER, 0);
1781 }
1782
1783 iir = serial_in(up, UART_IIR);
1784
1785 /*
1786 * This should be a safe test for anyone who doesn't trust the
1787 * IIR bits on their UART, but it's specifically designed for
1788 * the "Diva" UART used on the management processor on many HP
1789 * ia64 and parisc boxes.
1790 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001791 spin_lock_irqsave(&up->port.lock, flags);
1792 lsr = serial_in(up, UART_LSR);
1793 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1794 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001795 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001796 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001797 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001798 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1799 iir |= UART_IIR_THRI;
1800 }
1801
1802 if (!(iir & UART_IIR_NO_INT))
1803 serial8250_handle_port(up);
1804
1805 if (is_real_interrupt(up->port.irq))
1806 serial_out(up, UART_IER, ier);
1807
1808 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001809 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001810 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
1813static unsigned int serial8250_tx_empty(struct uart_port *port)
1814{
Jamie Iles49d57412010-12-01 23:39:35 +00001815 struct uart_8250_port *up =
1816 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001818 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 spin_lock_irqsave(&up->port.lock, flags);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001821 lsr = serial_in(up, UART_LSR);
1822 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 spin_unlock_irqrestore(&up->port.lock, flags);
1824
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001825 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826}
1827
1828static unsigned int serial8250_get_mctrl(struct uart_port *port)
1829{
Jamie Iles49d57412010-12-01 23:39:35 +00001830 struct uart_8250_port *up =
1831 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001832 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 unsigned int ret;
1834
Russell King2af7cd62006-01-04 16:55:09 +00001835 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837 ret = 0;
1838 if (status & UART_MSR_DCD)
1839 ret |= TIOCM_CAR;
1840 if (status & UART_MSR_RI)
1841 ret |= TIOCM_RNG;
1842 if (status & UART_MSR_DSR)
1843 ret |= TIOCM_DSR;
1844 if (status & UART_MSR_CTS)
1845 ret |= TIOCM_CTS;
1846 return ret;
1847}
1848
1849static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1850{
Jamie Iles49d57412010-12-01 23:39:35 +00001851 struct uart_8250_port *up =
1852 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 unsigned char mcr = 0;
1854
1855 if (mctrl & TIOCM_RTS)
1856 mcr |= UART_MCR_RTS;
1857 if (mctrl & TIOCM_DTR)
1858 mcr |= UART_MCR_DTR;
1859 if (mctrl & TIOCM_OUT1)
1860 mcr |= UART_MCR_OUT1;
1861 if (mctrl & TIOCM_OUT2)
1862 mcr |= UART_MCR_OUT2;
1863 if (mctrl & TIOCM_LOOP)
1864 mcr |= UART_MCR_LOOP;
1865
1866 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1867
1868 serial_out(up, UART_MCR, mcr);
1869}
1870
1871static void serial8250_break_ctl(struct uart_port *port, int break_state)
1872{
Jamie Iles49d57412010-12-01 23:39:35 +00001873 struct uart_8250_port *up =
1874 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 unsigned long flags;
1876
1877 spin_lock_irqsave(&up->port.lock, flags);
1878 if (break_state == -1)
1879 up->lcr |= UART_LCR_SBC;
1880 else
1881 up->lcr &= ~UART_LCR_SBC;
1882 serial_out(up, UART_LCR, up->lcr);
1883 spin_unlock_irqrestore(&up->port.lock, flags);
1884}
1885
Alex Williamson40b36da2007-02-14 00:33:04 -08001886/*
1887 * Wait for transmitter & holding register to empty
1888 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001889static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001890{
1891 unsigned int status, tmout = 10000;
1892
1893 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001894 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001895 status = serial_in(up, UART_LSR);
1896
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001897 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001898
David Daney97d303b2010-10-05 11:40:07 -07001899 if ((status & bits) == bits)
1900 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001901 if (--tmout == 0)
1902 break;
1903 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001904 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001905
1906 /* Wait up to 1s for flow control if necessary */
1907 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001908 unsigned int tmout;
1909 for (tmout = 1000000; tmout; tmout--) {
1910 unsigned int msr = serial_in(up, UART_MSR);
1911 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1912 if (msr & UART_MSR_CTS)
1913 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001914 udelay(1);
1915 touch_nmi_watchdog();
1916 }
1917 }
1918}
1919
Jason Wesself2d937f2008-04-17 20:05:37 +02001920#ifdef CONFIG_CONSOLE_POLL
1921/*
1922 * Console polling routines for writing and reading from the uart while
1923 * in an interrupt or debug context.
1924 */
1925
1926static int serial8250_get_poll_char(struct uart_port *port)
1927{
Jamie Iles49d57412010-12-01 23:39:35 +00001928 struct uart_8250_port *up =
1929 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001930 unsigned char lsr = serial_inp(up, UART_LSR);
1931
Jason Wesself5316b42010-05-20 21:04:22 -05001932 if (!(lsr & UART_LSR_DR))
1933 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001934
1935 return serial_inp(up, UART_RX);
1936}
1937
1938
1939static void serial8250_put_poll_char(struct uart_port *port,
1940 unsigned char c)
1941{
1942 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001943 struct uart_8250_port *up =
1944 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001945
1946 /*
1947 * First save the IER then disable the interrupts
1948 */
1949 ier = serial_in(up, UART_IER);
1950 if (up->capabilities & UART_CAP_UUE)
1951 serial_out(up, UART_IER, UART_IER_UUE);
1952 else
1953 serial_out(up, UART_IER, 0);
1954
1955 wait_for_xmitr(up, BOTH_EMPTY);
1956 /*
1957 * Send the character out.
1958 * If a LF, also do CR...
1959 */
1960 serial_out(up, UART_TX, c);
1961 if (c == 10) {
1962 wait_for_xmitr(up, BOTH_EMPTY);
1963 serial_out(up, UART_TX, 13);
1964 }
1965
1966 /*
1967 * Finally, wait for transmitter to become empty
1968 * and restore the IER
1969 */
1970 wait_for_xmitr(up, BOTH_EMPTY);
1971 serial_out(up, UART_IER, ier);
1972}
1973
1974#endif /* CONFIG_CONSOLE_POLL */
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976static int serial8250_startup(struct uart_port *port)
1977{
Jamie Iles49d57412010-12-01 23:39:35 +00001978 struct uart_8250_port *up =
1979 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001981 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 int retval;
1983
1984 up->capabilities = uart_config[up->port.type].flags;
1985 up->mcr = 0;
1986
Alan Coxb8e7e402009-05-28 14:01:35 +01001987 if (up->port.iotype != up->cur_iotype)
1988 set_io_from_upio(port);
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 if (up->port.type == PORT_16C950) {
1991 /* Wake up and initialize UART */
1992 up->acr = 0;
1993 serial_outp(up, UART_LCR, 0xBF);
1994 serial_outp(up, UART_EFR, UART_EFR_ECB);
1995 serial_outp(up, UART_IER, 0);
1996 serial_outp(up, UART_LCR, 0);
1997 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
1998 serial_outp(up, UART_LCR, 0xBF);
1999 serial_outp(up, UART_EFR, UART_EFR_ECB);
2000 serial_outp(up, UART_LCR, 0);
2001 }
2002
2003#ifdef CONFIG_SERIAL_8250_RSA
2004 /*
2005 * If this is an RSA port, see if we can kick it up to the
2006 * higher speed clock.
2007 */
2008 enable_rsa(up);
2009#endif
2010
2011 /*
2012 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08002013 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 */
2015 serial8250_clear_fifos(up);
2016
2017 /*
2018 * Clear the interrupt registers.
2019 */
2020 (void) serial_inp(up, UART_LSR);
2021 (void) serial_inp(up, UART_RX);
2022 (void) serial_inp(up, UART_IIR);
2023 (void) serial_inp(up, UART_MSR);
2024
2025 /*
2026 * At this point, there's no way the LSR could still be 0xff;
2027 * if it is, then bail out, because there's likely no UART
2028 * here.
2029 */
2030 if (!(up->port.flags & UPF_BUGGY_UART) &&
2031 (serial_inp(up, UART_LSR) == 0xff)) {
David S. Miller84408382008-10-13 10:45:26 +01002032 printk(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
2033 serial_index(&up->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return -ENODEV;
2035 }
2036
2037 /*
2038 * For a XR16C850, we need to set the trigger levels
2039 */
2040 if (up->port.type == PORT_16850) {
2041 unsigned char fctr;
2042
2043 serial_outp(up, UART_LCR, 0xbf);
2044
2045 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
2046 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2047 serial_outp(up, UART_TRG, UART_TRG_96);
2048 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2049 serial_outp(up, UART_TRG, UART_TRG_96);
2050
2051 serial_outp(up, UART_LCR, 0);
2052 }
2053
Alex Williamson40b36da2007-02-14 00:33:04 -08002054 if (is_real_interrupt(up->port.irq)) {
Alex Williamson01c194d2008-04-28 02:14:09 -07002055 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08002056 /*
2057 * Test for UARTs that do not reassert THRE when the
2058 * transmitter is idle and the interrupt has already
2059 * been cleared. Real 16550s should always reassert
2060 * this interrupt whenever the transmitter is idle and
2061 * the interrupt is enabled. Delays are necessary to
2062 * allow register changes to become visible.
2063 */
Borislav Petkovc389d272008-07-29 22:33:32 -07002064 spin_lock_irqsave(&up->port.lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002065 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002066 disable_irq_nosync(up->port.irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002067
2068 wait_for_xmitr(up, UART_LSR_THRE);
2069 serial_out_sync(up, UART_IER, UART_IER_THRI);
2070 udelay(1); /* allow THRE to set */
Alex Williamson01c194d2008-04-28 02:14:09 -07002071 iir1 = serial_in(up, UART_IIR);
Alex Williamson40b36da2007-02-14 00:33:04 -08002072 serial_out(up, UART_IER, 0);
2073 serial_out_sync(up, UART_IER, UART_IER_THRI);
2074 udelay(1); /* allow a working UART time to re-assert THRE */
2075 iir = serial_in(up, UART_IIR);
2076 serial_out(up, UART_IER, 0);
2077
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002078 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002079 enable_irq(up->port.irq);
Borislav Petkovc389d272008-07-29 22:33:32 -07002080 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002081
2082 /*
2083 * If the interrupt is not reasserted, setup a timer to
2084 * kick the UART on a regular basis.
2085 */
Alex Williamson01c194d2008-04-28 02:14:09 -07002086 if (!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) {
Will Newton363f66f2008-09-02 14:35:44 -07002087 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002088 pr_debug("ttyS%d - using backup timer\n",
2089 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002090 }
2091 }
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 /*
Will Newton363f66f2008-09-02 14:35:44 -07002094 * The above check will only give an accurate result the first time
2095 * the port is opened so this value needs to be preserved.
2096 */
2097 if (up->bugs & UART_BUG_THRE) {
2098 up->timer.function = serial8250_backup_timeout;
2099 up->timer.data = (unsigned long)up;
2100 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002101 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002102 }
2103
2104 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 * If the "interrupt" for this port doesn't correspond with any
2106 * hardware interrupt, we use a timer-based system. The original
2107 * driver used to do this with IRQ0.
2108 */
2109 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002111 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 } else {
2113 retval = serial_link_irq_chain(up);
2114 if (retval)
2115 return retval;
2116 }
2117
2118 /*
2119 * Now, initialize the UART
2120 */
2121 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
2122
2123 spin_lock_irqsave(&up->port.lock, flags);
2124 if (up->port.flags & UPF_FOURPORT) {
2125 if (!is_real_interrupt(up->port.irq))
2126 up->port.mctrl |= TIOCM_OUT1;
2127 } else
2128 /*
2129 * Most PC uarts need OUT2 raised to enable interrupts.
2130 */
2131 if (is_real_interrupt(up->port.irq))
2132 up->port.mctrl |= TIOCM_OUT2;
2133
2134 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002135
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002136 /* Serial over Lan (SoL) hack:
2137 Intel 8257x Gigabit ethernet chips have a
2138 16550 emulation, to be used for Serial Over Lan.
2139 Those chips take a longer time than a normal
2140 serial device to signalize that a transmission
2141 data was queued. Due to that, the above test generally
2142 fails. One solution would be to delay the reading of
2143 iir. However, this is not reliable, since the timeout
2144 is variable. So, let's just don't test if we receive
2145 TX irq. This way, we'll never enable UART_BUG_TXEN.
2146 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002147 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002148 goto dont_test_tx_en;
2149
Russell King55d3b282005-06-23 15:05:41 +01002150 /*
2151 * Do a quick test to see if we receive an
2152 * interrupt when we enable the TX irq.
2153 */
2154 serial_outp(up, UART_IER, UART_IER_THRI);
2155 lsr = serial_in(up, UART_LSR);
2156 iir = serial_in(up, UART_IIR);
2157 serial_outp(up, UART_IER, 0);
2158
2159 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002160 if (!(up->bugs & UART_BUG_TXEN)) {
2161 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002162 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002163 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002164 }
2165 } else {
Russell King67f76542005-06-23 22:26:43 +01002166 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002167 }
2168
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002169dont_test_tx_en:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 spin_unlock_irqrestore(&up->port.lock, flags);
2171
2172 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002173 * Clear the interrupt registers again for luck, and clear the
2174 * saved flags to avoid getting false values from polling
2175 * routines or the previous session.
2176 */
2177 serial_inp(up, UART_LSR);
2178 serial_inp(up, UART_RX);
2179 serial_inp(up, UART_IIR);
2180 serial_inp(up, UART_MSR);
2181 up->lsr_saved_flags = 0;
2182 up->msr_saved_flags = 0;
2183
2184 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 * Finally, enable interrupts. Note: Modem status interrupts
2186 * are set via set_termios(), which will be occurring imminently
2187 * anyway, so we don't enable them here.
2188 */
2189 up->ier = UART_IER_RLSI | UART_IER_RDI;
2190 serial_outp(up, UART_IER, up->ier);
2191
2192 if (up->port.flags & UPF_FOURPORT) {
2193 unsigned int icp;
2194 /*
2195 * Enable interrupts on the AST Fourport board
2196 */
2197 icp = (up->port.iobase & 0xfe0) | 0x01f;
2198 outb_p(0x80, icp);
2199 (void) inb_p(icp);
2200 }
2201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return 0;
2203}
2204
2205static void serial8250_shutdown(struct uart_port *port)
2206{
Jamie Iles49d57412010-12-01 23:39:35 +00002207 struct uart_8250_port *up =
2208 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 unsigned long flags;
2210
2211 /*
2212 * Disable interrupts from this port
2213 */
2214 up->ier = 0;
2215 serial_outp(up, UART_IER, 0);
2216
2217 spin_lock_irqsave(&up->port.lock, flags);
2218 if (up->port.flags & UPF_FOURPORT) {
2219 /* reset interrupts on the AST Fourport board */
2220 inb((up->port.iobase & 0xfe0) | 0x1f);
2221 up->port.mctrl |= TIOCM_OUT1;
2222 } else
2223 up->port.mctrl &= ~TIOCM_OUT2;
2224
2225 serial8250_set_mctrl(&up->port, up->port.mctrl);
2226 spin_unlock_irqrestore(&up->port.lock, flags);
2227
2228 /*
2229 * Disable break condition and FIFOs
2230 */
2231 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
2232 serial8250_clear_fifos(up);
2233
2234#ifdef CONFIG_SERIAL_8250_RSA
2235 /*
2236 * Reset the RSA board back to 115kbps compat mode.
2237 */
2238 disable_rsa(up);
2239#endif
2240
2241 /*
2242 * Read data port to reset things, and then unlink from
2243 * the IRQ chain.
2244 */
2245 (void) serial_in(up, UART_RX);
2246
Alex Williamson40b36da2007-02-14 00:33:04 -08002247 del_timer_sync(&up->timer);
2248 up->timer.function = serial8250_timeout;
2249 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 serial_unlink_irq_chain(up);
2251}
2252
2253static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2254{
2255 unsigned int quot;
2256
2257 /*
2258 * Handle magic divisors for baud rates above baud_base on
2259 * SMSC SuperIO chips.
2260 */
2261 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2262 baud == (port->uartclk/4))
2263 quot = 0x8001;
2264 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2265 baud == (port->uartclk/8))
2266 quot = 0x8002;
2267 else
2268 quot = uart_get_divisor(port, baud);
2269
2270 return quot;
2271}
2272
Philippe Langlais235dae52010-07-29 17:13:57 +02002273void
2274serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2275 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
Jamie Iles49d57412010-12-01 23:39:35 +00002277 struct uart_8250_port *up =
2278 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 unsigned char cval, fcr = 0;
2280 unsigned long flags;
2281 unsigned int baud, quot;
2282
2283 switch (termios->c_cflag & CSIZE) {
2284 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002285 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 break;
2287 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002288 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 break;
2290 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002291 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 break;
2293 default:
2294 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002295 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 break;
2297 }
2298
2299 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002300 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 if (termios->c_cflag & PARENB)
2302 cval |= UART_LCR_PARITY;
2303 if (!(termios->c_cflag & PARODD))
2304 cval |= UART_LCR_EPAR;
2305#ifdef CMSPAR
2306 if (termios->c_cflag & CMSPAR)
2307 cval |= UART_LCR_SPAR;
2308#endif
2309
2310 /*
2311 * Ask the core to calculate the divisor for us.
2312 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002313 baud = uart_get_baud_rate(port, termios, old,
2314 port->uartclk / 16 / 0xffff,
2315 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 quot = serial8250_get_divisor(port, baud);
2317
2318 /*
Russell King4ba5e352005-06-23 10:43:04 +01002319 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 */
Russell King4ba5e352005-06-23 10:43:04 +01002321 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002322 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2325 if (baud < 2400)
2326 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2327 else
2328 fcr = uart_config[up->port.type].fcr;
2329 }
2330
2331 /*
2332 * MCR-based auto flow control. When AFE is enabled, RTS will be
2333 * deasserted when the receive FIFO contains more characters than
2334 * the trigger, or the MCR RTS bit is cleared. In the case where
2335 * the remote UART is not using CTS auto flow control, we must
2336 * have sufficient FIFO entries for the latency of the remote
2337 * UART to respond. IOW, at least 32 bytes of FIFO.
2338 */
2339 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2340 up->mcr &= ~UART_MCR_AFE;
2341 if (termios->c_cflag & CRTSCTS)
2342 up->mcr |= UART_MCR_AFE;
2343 }
2344
2345 /*
2346 * Ok, we're now changing the port state. Do it with
2347 * interrupts disabled.
2348 */
2349 spin_lock_irqsave(&up->port.lock, flags);
2350
2351 /*
2352 * Update the per-port timeout.
2353 */
2354 uart_update_timeout(port, termios->c_cflag, baud);
2355
2356 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2357 if (termios->c_iflag & INPCK)
2358 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2359 if (termios->c_iflag & (BRKINT | PARMRK))
2360 up->port.read_status_mask |= UART_LSR_BI;
2361
2362 /*
2363 * Characteres to ignore
2364 */
2365 up->port.ignore_status_mask = 0;
2366 if (termios->c_iflag & IGNPAR)
2367 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2368 if (termios->c_iflag & IGNBRK) {
2369 up->port.ignore_status_mask |= UART_LSR_BI;
2370 /*
2371 * If we're ignoring parity and break indicators,
2372 * ignore overruns too (for real raw support).
2373 */
2374 if (termios->c_iflag & IGNPAR)
2375 up->port.ignore_status_mask |= UART_LSR_OE;
2376 }
2377
2378 /*
2379 * ignore all characters if CREAD is not set
2380 */
2381 if ((termios->c_cflag & CREAD) == 0)
2382 up->port.ignore_status_mask |= UART_LSR_DR;
2383
2384 /*
2385 * CTS flow control flag and modem status interrupts
2386 */
2387 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002388 if (!(up->bugs & UART_BUG_NOMSR) &&
2389 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 up->ier |= UART_IER_MSI;
2391 if (up->capabilities & UART_CAP_UUE)
2392 up->ier |= UART_IER_UUE | UART_IER_RTOIE;
2393
2394 serial_out(up, UART_IER, up->ier);
2395
2396 if (up->capabilities & UART_CAP_EFR) {
2397 unsigned char efr = 0;
2398 /*
2399 * TI16C752/Startech hardware flow control. FIXME:
2400 * - TI16C752 requires control thresholds to be set.
2401 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2402 */
2403 if (termios->c_cflag & CRTSCTS)
2404 efr |= UART_EFR_CTS;
2405
2406 serial_outp(up, UART_LCR, 0xBF);
2407 serial_outp(up, UART_EFR, efr);
2408 }
2409
Russell Kingf2eda272008-09-01 21:47:59 +01002410#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002411 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002412 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002413 if (baud == 115200) {
2414 quot = 1;
2415 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2416 } else
2417 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2418 }
2419#endif
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 if (up->capabilities & UART_NATSEMI) {
2422 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2423 serial_outp(up, UART_LCR, 0xe0);
2424 } else {
2425 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2426 }
2427
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002428 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 /*
2431 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2432 * is written without DLAB set, this mode will be disabled.
2433 */
2434 if (up->port.type == PORT_16750)
2435 serial_outp(up, UART_FCR, fcr);
2436
2437 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2438 up->lcr = cval; /* Save LCR */
2439 if (up->port.type != PORT_16750) {
2440 if (fcr & UART_FCR_ENABLE_FIFO) {
2441 /* emulated UARTs (Lucent Venus 167x) need two steps */
2442 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2443 }
2444 serial_outp(up, UART_FCR, fcr); /* set fcr */
2445 }
2446 serial8250_set_mctrl(&up->port, up->port.mctrl);
2447 spin_unlock_irqrestore(&up->port.lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002448 /* Don't rewrite B0 */
2449 if (tty_termios_baud_rate(termios))
2450 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451}
Philippe Langlais235dae52010-07-29 17:13:57 +02002452EXPORT_SYMBOL(serial8250_do_set_termios);
2453
2454static void
2455serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2456 struct ktermios *old)
2457{
2458 if (port->set_termios)
2459 port->set_termios(port, termios, old);
2460 else
2461 serial8250_do_set_termios(port, termios, old);
2462}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
2464static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002465serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002466{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002467 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002468 port->flags |= UPF_HARDPPS_CD;
2469 serial8250_enable_ms(port);
2470 } else
2471 port->flags &= ~UPF_HARDPPS_CD;
2472}
2473
Manuel Laussc161afe2010-09-25 15:13:45 +02002474
2475void serial8250_do_pm(struct uart_port *port, unsigned int state,
2476 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477{
Jamie Iles49d57412010-12-01 23:39:35 +00002478 struct uart_8250_port *p =
2479 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002482}
2483EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Manuel Laussc161afe2010-09-25 15:13:45 +02002485static void
2486serial8250_pm(struct uart_port *port, unsigned int state,
2487 unsigned int oldstate)
2488{
2489 if (port->pm)
2490 port->pm(port, state, oldstate);
2491 else
2492 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
Russell Kingf2eda272008-09-01 21:47:59 +01002495static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2496{
2497 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002498 return 0x1000;
Russell Kingf2eda272008-09-01 21:47:59 +01002499#ifdef CONFIG_ARCH_OMAP
2500 if (is_omap_port(pt))
2501 return 0x16 << pt->port.regshift;
2502#endif
2503 return 8 << pt->port.regshift;
2504}
2505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506/*
2507 * Resource handling.
2508 */
2509static int serial8250_request_std_resource(struct uart_8250_port *up)
2510{
Russell Kingf2eda272008-09-01 21:47:59 +01002511 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 int ret = 0;
2513
2514 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002515 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002516 case UPIO_TSI:
2517 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002519 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00002520 case UPIO_DWAPB32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 if (!up->port.mapbase)
2522 break;
2523
2524 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2525 ret = -EBUSY;
2526 break;
2527 }
2528
2529 if (up->port.flags & UPF_IOREMAP) {
Alan Cox6f441fe2008-05-01 04:34:59 -07002530 up->port.membase = ioremap_nocache(up->port.mapbase,
2531 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (!up->port.membase) {
2533 release_mem_region(up->port.mapbase, size);
2534 ret = -ENOMEM;
2535 }
2536 }
2537 break;
2538
2539 case UPIO_HUB6:
2540 case UPIO_PORT:
2541 if (!request_region(up->port.iobase, size, "serial"))
2542 ret = -EBUSY;
2543 break;
2544 }
2545 return ret;
2546}
2547
2548static void serial8250_release_std_resource(struct uart_8250_port *up)
2549{
Russell Kingf2eda272008-09-01 21:47:59 +01002550 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002553 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002554 case UPIO_TSI:
2555 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002557 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00002558 case UPIO_DWAPB32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 if (!up->port.mapbase)
2560 break;
2561
2562 if (up->port.flags & UPF_IOREMAP) {
2563 iounmap(up->port.membase);
2564 up->port.membase = NULL;
2565 }
2566
2567 release_mem_region(up->port.mapbase, size);
2568 break;
2569
2570 case UPIO_HUB6:
2571 case UPIO_PORT:
2572 release_region(up->port.iobase, size);
2573 break;
2574 }
2575}
2576
2577static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2578{
2579 unsigned long start = UART_RSA_BASE << up->port.regshift;
2580 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002581 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
2583 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 case UPIO_HUB6:
2585 case UPIO_PORT:
2586 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002587 if (request_region(start, size, "serial-rsa"))
2588 ret = 0;
2589 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 ret = -EBUSY;
2591 break;
2592 }
2593
2594 return ret;
2595}
2596
2597static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2598{
2599 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2600 unsigned int size = 8 << up->port.regshift;
2601
2602 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 case UPIO_HUB6:
2604 case UPIO_PORT:
2605 release_region(up->port.iobase + offset, size);
2606 break;
2607 }
2608}
2609
2610static void serial8250_release_port(struct uart_port *port)
2611{
Jamie Iles49d57412010-12-01 23:39:35 +00002612 struct uart_8250_port *up =
2613 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
2615 serial8250_release_std_resource(up);
2616 if (up->port.type == PORT_RSA)
2617 serial8250_release_rsa_resource(up);
2618}
2619
2620static int serial8250_request_port(struct uart_port *port)
2621{
Jamie Iles49d57412010-12-01 23:39:35 +00002622 struct uart_8250_port *up =
2623 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 int ret = 0;
2625
2626 ret = serial8250_request_std_resource(up);
2627 if (ret == 0 && up->port.type == PORT_RSA) {
2628 ret = serial8250_request_rsa_resource(up);
2629 if (ret < 0)
2630 serial8250_release_std_resource(up);
2631 }
2632
2633 return ret;
2634}
2635
2636static void serial8250_config_port(struct uart_port *port, int flags)
2637{
Jamie Iles49d57412010-12-01 23:39:35 +00002638 struct uart_8250_port *up =
2639 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 int probeflags = PROBE_ANY;
2641 int ret;
2642
2643 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 * Find the region that we can probe for. This in turn
2645 * tells us whether we can probe for the type of port.
2646 */
2647 ret = serial8250_request_std_resource(up);
2648 if (ret < 0)
2649 return;
2650
2651 ret = serial8250_request_rsa_resource(up);
2652 if (ret < 0)
2653 probeflags &= ~PROBE_RSA;
2654
Alan Coxb8e7e402009-05-28 14:01:35 +01002655 if (up->port.iotype != up->cur_iotype)
2656 set_io_from_upio(port);
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 if (flags & UART_CONFIG_TYPE)
2659 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002660
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002661 /* if access method is AU, it is a 16550 with a quirk */
2662 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
2663 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2666 autoconfig_irq(up);
2667
2668 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2669 serial8250_release_rsa_resource(up);
2670 if (up->port.type == PORT_UNKNOWN)
2671 serial8250_release_std_resource(up);
2672}
2673
2674static int
2675serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2676{
Yinghai Lua62c4132008-08-19 20:49:55 -07002677 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2679 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2680 ser->type == PORT_STARTECH)
2681 return -EINVAL;
2682 return 0;
2683}
2684
2685static const char *
2686serial8250_type(struct uart_port *port)
2687{
2688 int type = port->type;
2689
2690 if (type >= ARRAY_SIZE(uart_config))
2691 type = 0;
2692 return uart_config[type].name;
2693}
2694
2695static struct uart_ops serial8250_pops = {
2696 .tx_empty = serial8250_tx_empty,
2697 .set_mctrl = serial8250_set_mctrl,
2698 .get_mctrl = serial8250_get_mctrl,
2699 .stop_tx = serial8250_stop_tx,
2700 .start_tx = serial8250_start_tx,
2701 .stop_rx = serial8250_stop_rx,
2702 .enable_ms = serial8250_enable_ms,
2703 .break_ctl = serial8250_break_ctl,
2704 .startup = serial8250_startup,
2705 .shutdown = serial8250_shutdown,
2706 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002707 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 .pm = serial8250_pm,
2709 .type = serial8250_type,
2710 .release_port = serial8250_release_port,
2711 .request_port = serial8250_request_port,
2712 .config_port = serial8250_config_port,
2713 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002714#ifdef CONFIG_CONSOLE_POLL
2715 .poll_get_char = serial8250_get_poll_char,
2716 .poll_put_char = serial8250_put_poll_char,
2717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718};
2719
2720static struct uart_8250_port serial8250_ports[UART_NR];
2721
Alan Coxaf7f3742010-10-18 11:38:02 -07002722static void (*serial8250_isa_config)(int port, struct uart_port *up,
2723 unsigned short *capabilities);
2724
2725void serial8250_set_isa_configurator(
2726 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2727{
2728 serial8250_isa_config = v;
2729}
2730EXPORT_SYMBOL(serial8250_set_isa_configurator);
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732static void __init serial8250_isa_init_ports(void)
2733{
2734 struct uart_8250_port *up;
2735 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002736 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738 if (!first)
2739 return;
2740 first = 0;
2741
Dave Jonesa61c2d72006-01-07 23:18:19 +00002742 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 struct uart_8250_port *up = &serial8250_ports[i];
2744
2745 up->port.line = i;
2746 spin_lock_init(&up->port.lock);
2747
2748 init_timer(&up->timer);
2749 up->timer.function = serial8250_timeout;
2750
2751 /*
2752 * ALPHA_KLUDGE_MCR needs to be killed.
2753 */
2754 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2755 up->mcr_force = ALPHA_KLUDGE_MCR;
2756
2757 up->port.ops = &serial8250_pops;
2758 }
2759
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002760 if (share_irqs)
2761 irqflag = IRQF_SHARED;
2762
Russell King44454bc2005-06-30 22:41:22 +01002763 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002764 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 i++, up++) {
2766 up->port.iobase = old_serial_port[i].port;
2767 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002768 up->port.irqflags = old_serial_port[i].irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 up->port.uartclk = old_serial_port[i].baud_base * 16;
2770 up->port.flags = old_serial_port[i].flags;
2771 up->port.hub6 = old_serial_port[i].hub6;
2772 up->port.membase = old_serial_port[i].iomem_base;
2773 up->port.iotype = old_serial_port[i].io_type;
2774 up->port.regshift = old_serial_port[i].iomem_reg_shift;
David Daney7d6a07d2009-01-02 13:49:47 +00002775 set_io_from_upio(&up->port);
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002776 up->port.irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002777 if (serial8250_isa_config != NULL)
2778 serial8250_isa_config(i, &up->port, &up->capabilities);
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 }
2781}
2782
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002783static void
2784serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2785{
2786 up->port.type = type;
2787 up->port.fifosize = uart_config[type].fifo_size;
2788 up->capabilities = uart_config[type].flags;
2789 up->tx_loadsz = uart_config[type].tx_loadsz;
2790}
2791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792static void __init
2793serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2794{
2795 int i;
2796
Alan Coxb8e7e402009-05-28 14:01:35 +01002797 for (i = 0; i < nr_uarts; i++) {
2798 struct uart_8250_port *up = &serial8250_ports[i];
2799 up->cur_iotype = 0xFF;
2800 }
2801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 serial8250_isa_init_ports();
2803
Dave Jonesa61c2d72006-01-07 23:18:19 +00002804 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 struct uart_8250_port *up = &serial8250_ports[i];
2806
2807 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002808
2809 if (up->port.flags & UPF_FIXED_TYPE)
2810 serial8250_init_fixed_type_port(up, up->port.type);
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 uart_add_one_port(drv, &up->port);
2813 }
2814}
2815
2816#ifdef CONFIG_SERIAL_8250_CONSOLE
2817
Russell Kingd3587882006-03-20 20:00:09 +00002818static void serial8250_console_putchar(struct uart_port *port, int ch)
2819{
Jamie Iles49d57412010-12-01 23:39:35 +00002820 struct uart_8250_port *up =
2821 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002822
2823 wait_for_xmitr(up, UART_LSR_THRE);
2824 serial_out(up, UART_TX, ch);
2825}
2826
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827/*
2828 * Print a string to the serial port trying not to disturb
2829 * any possible real use of the port...
2830 *
2831 * The console_lock must be held when we get here.
2832 */
2833static void
2834serial8250_console_write(struct console *co, const char *s, unsigned int count)
2835{
2836 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002837 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002839 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Andrew Morton78512ec2005-11-07 00:59:13 -08002841 touch_nmi_watchdog();
2842
Andrew Morton68aa2c02006-06-30 02:29:59 -07002843 local_irq_save(flags);
2844 if (up->port.sysrq) {
2845 /* serial8250_handle_port() already took the lock */
2846 locked = 0;
2847 } else if (oops_in_progress) {
2848 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002849 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002850 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002853 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 */
2855 ier = serial_in(up, UART_IER);
2856
2857 if (up->capabilities & UART_CAP_UUE)
2858 serial_out(up, UART_IER, UART_IER_UUE);
2859 else
2860 serial_out(up, UART_IER, 0);
2861
Russell Kingd3587882006-03-20 20:00:09 +00002862 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864 /*
2865 * Finally, wait for transmitter to become empty
2866 * and restore the IER
2867 */
Alan Coxf91a3712006-01-21 14:59:12 +00002868 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002869 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002870
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002871 /*
2872 * The receive handling will happen properly because the
2873 * receive ready bit will still be set; it is not cleared
2874 * on read. However, modem control will not, we must
2875 * call it if we have saved something in the saved flags
2876 * while processing with interrupts off.
2877 */
2878 if (up->msr_saved_flags)
2879 check_modem_status(up);
2880
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002881 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002882 spin_unlock(&up->port.lock);
2883 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884}
2885
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002886static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
2888 struct uart_port *port;
2889 int baud = 9600;
2890 int bits = 8;
2891 int parity = 'n';
2892 int flow = 'n';
2893
2894 /*
2895 * Check whether an invalid uart number has been specified, and
2896 * if so, search for the first available port that does have
2897 * console support.
2898 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002899 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 co->index = 0;
2901 port = &serial8250_ports[co->index].port;
2902 if (!port->iobase && !port->membase)
2903 return -ENODEV;
2904
2905 if (options)
2906 uart_parse_options(options, &baud, &parity, &bits, &flow);
2907
2908 return uart_set_options(port, co, baud, parity, bits, flow);
2909}
2910
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002911static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002912{
2913 return serial8250_find_port_for_earlycon();
2914}
2915
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916static struct console serial8250_console = {
2917 .name = "ttyS",
2918 .write = serial8250_console_write,
2919 .device = uart_console_device,
2920 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002921 .early_setup = serial8250_console_early_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 .flags = CON_PRINTBUFFER,
2923 .index = -1,
2924 .data = &serial8250_reg,
2925};
2926
2927static int __init serial8250_console_init(void)
2928{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002929 if (nr_uarts > UART_NR)
2930 nr_uarts = UART_NR;
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 serial8250_isa_init_ports();
2933 register_console(&serial8250_console);
2934 return 0;
2935}
2936console_initcall(serial8250_console_init);
2937
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002938int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939{
2940 int line;
2941 struct uart_port *port;
2942
Dave Jonesa61c2d72006-01-07 23:18:19 +00002943 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002945 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return line;
2947 }
2948 return -ENODEV;
2949}
2950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951#define SERIAL8250_CONSOLE &serial8250_console
2952#else
2953#define SERIAL8250_CONSOLE NULL
2954#endif
2955
2956static struct uart_driver serial8250_reg = {
2957 .owner = THIS_MODULE,
2958 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 .dev_name = "ttyS",
2960 .major = TTY_MAJOR,
2961 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 .cons = SERIAL8250_CONSOLE,
2963};
2964
Russell Kingd856c662006-02-23 10:22:13 +00002965/*
2966 * early_serial_setup - early registration for 8250 ports
2967 *
2968 * Setup an 8250 port structure prior to console initialisation. Use
2969 * after console initialisation will cause undefined behaviour.
2970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971int __init early_serial_setup(struct uart_port *port)
2972{
David Daneyb4304282009-01-02 13:49:41 +00002973 struct uart_port *p;
2974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 if (port->line >= ARRAY_SIZE(serial8250_ports))
2976 return -ENODEV;
2977
2978 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00002979 p = &serial8250_ports[port->line].port;
2980 p->iobase = port->iobase;
2981 p->membase = port->membase;
2982 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002983 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00002984 p->uartclk = port->uartclk;
2985 p->fifosize = port->fifosize;
2986 p->regshift = port->regshift;
2987 p->iotype = port->iotype;
2988 p->flags = port->flags;
2989 p->mapbase = port->mapbase;
2990 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01002991 p->type = port->type;
2992 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00002993
2994 set_io_from_upio(p);
2995 if (port->serial_in)
2996 p->serial_in = port->serial_in;
2997 if (port->serial_out)
2998 p->serial_out = port->serial_out;
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 return 0;
3001}
3002
3003/**
3004 * serial8250_suspend_port - suspend one serial port
3005 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 *
3007 * Suspend one serial port.
3008 */
3009void serial8250_suspend_port(int line)
3010{
3011 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
3012}
3013
3014/**
3015 * serial8250_resume_port - resume one serial port
3016 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 *
3018 * Resume one serial port.
3019 */
3020void serial8250_resume_port(int line)
3021{
David Woodhouseb5b82df2007-05-17 14:27:39 +08003022 struct uart_8250_port *up = &serial8250_ports[line];
3023
3024 if (up->capabilities & UART_NATSEMI) {
3025 unsigned char tmp;
3026
3027 /* Ensure it's still in high speed mode */
3028 serial_outp(up, UART_LCR, 0xE0);
3029
3030 tmp = serial_in(up, 0x04); /* EXCR2 */
3031 tmp &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
3032 tmp |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
3033 serial_outp(up, 0x04, tmp);
3034
3035 serial_outp(up, UART_LCR, 0);
3036 }
3037 uart_resume_port(&serial8250_reg, &up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038}
3039
3040/*
3041 * Register a set of serial devices attached to a platform device. The
3042 * list is terminated with a zero flags entry, which means we expect
3043 * all entries to have at least UPF_BOOT_AUTOCONF set.
3044 */
Russell King3ae5eae2005-11-09 22:32:44 +00003045static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046{
Russell King3ae5eae2005-11-09 22:32:44 +00003047 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 struct uart_port port;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003049 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051 memset(&port, 0, sizeof(struct uart_port));
3052
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003053 if (share_irqs)
3054 irqflag = IRQF_SHARED;
3055
Russell Kingec9f47c2005-06-27 11:12:54 +01003056 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08003057 port.iobase = p->iobase;
3058 port.membase = p->membase;
3059 port.irq = p->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003060 port.irqflags = p->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003061 port.uartclk = p->uartclk;
3062 port.regshift = p->regshift;
3063 port.iotype = p->iotype;
3064 port.flags = p->flags;
3065 port.mapbase = p->mapbase;
3066 port.hub6 = p->hub6;
3067 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00003068 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00003069 port.serial_in = p->serial_in;
3070 port.serial_out = p->serial_out;
Philippe Langlais235dae52010-07-29 17:13:57 +02003071 port.set_termios = p->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003072 port.pm = p->pm;
Will Newton74a197412008-02-04 22:27:50 -08003073 port.dev = &dev->dev;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003074 port.irqflags |= irqflag;
Russell Kingec9f47c2005-06-27 11:12:54 +01003075 ret = serial8250_register_port(&port);
3076 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003077 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003078 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3079 p->iobase, (unsigned long long)p->mapbase,
3080 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
3083 return 0;
3084}
3085
3086/*
3087 * Remove serial ports registered against a platform device.
3088 */
Russell King3ae5eae2005-11-09 22:32:44 +00003089static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090{
3091 int i;
3092
Dave Jonesa61c2d72006-01-07 23:18:19 +00003093 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 struct uart_8250_port *up = &serial8250_ports[i];
3095
Russell King3ae5eae2005-11-09 22:32:44 +00003096 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 serial8250_unregister_port(i);
3098 }
3099 return 0;
3100}
3101
Russell King3ae5eae2005-11-09 22:32:44 +00003102static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103{
3104 int i;
3105
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 for (i = 0; i < UART_NR; i++) {
3107 struct uart_8250_port *up = &serial8250_ports[i];
3108
Russell King3ae5eae2005-11-09 22:32:44 +00003109 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 uart_suspend_port(&serial8250_reg, &up->port);
3111 }
3112
3113 return 0;
3114}
3115
Russell King3ae5eae2005-11-09 22:32:44 +00003116static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117{
3118 int i;
3119
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 for (i = 0; i < UART_NR; i++) {
3121 struct uart_8250_port *up = &serial8250_ports[i];
3122
Russell King3ae5eae2005-11-09 22:32:44 +00003123 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003124 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 }
3126
3127 return 0;
3128}
3129
Russell King3ae5eae2005-11-09 22:32:44 +00003130static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 .probe = serial8250_probe,
3132 .remove = __devexit_p(serial8250_remove),
3133 .suspend = serial8250_suspend,
3134 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003135 .driver = {
3136 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003137 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003138 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139};
3140
3141/*
3142 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3143 * in the table in include/asm/serial.h
3144 */
3145static struct platform_device *serial8250_isa_devs;
3146
3147/*
3148 * serial8250_register_port and serial8250_unregister_port allows for
3149 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3150 * modems and PCI multiport cards.
3151 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003152static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3155{
3156 int i;
3157
3158 /*
3159 * First, find a port entry which matches.
3160 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003161 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 if (uart_match_port(&serial8250_ports[i].port, port))
3163 return &serial8250_ports[i];
3164
3165 /*
3166 * We didn't find a matching entry, so look for the first
3167 * free entry. We look for one which hasn't been previously
3168 * used (indicated by zero iobase).
3169 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003170 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3172 serial8250_ports[i].port.iobase == 0)
3173 return &serial8250_ports[i];
3174
3175 /*
3176 * That also failed. Last resort is to find any entry which
3177 * doesn't have a real port associated with it.
3178 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003179 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3181 return &serial8250_ports[i];
3182
3183 return NULL;
3184}
3185
3186/**
3187 * serial8250_register_port - register a serial port
3188 * @port: serial port template
3189 *
3190 * Configure the serial port specified by the request. If the
3191 * port exists and is in use, it is hung up and unregistered
3192 * first.
3193 *
3194 * The port is then probed and if necessary the IRQ is autodetected
3195 * If this fails an error is returned.
3196 *
3197 * On success the port is ready to use and the line number is returned.
3198 */
3199int serial8250_register_port(struct uart_port *port)
3200{
3201 struct uart_8250_port *uart;
3202 int ret = -ENOSPC;
3203
3204 if (port->uartclk == 0)
3205 return -EINVAL;
3206
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003207 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
3209 uart = serial8250_find_match_or_unused(port);
3210 if (uart) {
3211 uart_remove_one_port(&serial8250_reg, &uart->port);
3212
Will Newton74a197412008-02-04 22:27:50 -08003213 uart->port.iobase = port->iobase;
3214 uart->port.membase = port->membase;
3215 uart->port.irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003216 uart->port.irqflags = port->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003217 uart->port.uartclk = port->uartclk;
3218 uart->port.fifosize = port->fifosize;
3219 uart->port.regshift = port->regshift;
3220 uart->port.iotype = port->iotype;
3221 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3222 uart->port.mapbase = port->mapbase;
3223 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 if (port->dev)
3225 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003226
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08003227 if (port->flags & UPF_FIXED_TYPE)
3228 serial8250_init_fixed_type_port(uart, port->type);
David Daney8e23fcc2009-01-02 13:49:54 +00003229
David Daney7d6a07d2009-01-02 13:49:47 +00003230 set_io_from_upio(&uart->port);
3231 /* Possibly override default I/O functions. */
3232 if (port->serial_in)
3233 uart->port.serial_in = port->serial_in;
3234 if (port->serial_out)
3235 uart->port.serial_out = port->serial_out;
Philippe Langlais235dae52010-07-29 17:13:57 +02003236 /* Possibly override set_termios call */
3237 if (port->set_termios)
3238 uart->port.set_termios = port->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003239 if (port->pm)
3240 uart->port.pm = port->pm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Alan Coxaf7f3742010-10-18 11:38:02 -07003242 if (serial8250_isa_config != NULL)
3243 serial8250_isa_config(0, &uart->port,
3244 &uart->capabilities);
3245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3247 if (ret == 0)
3248 ret = uart->port.line;
3249 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003250 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
3252 return ret;
3253}
3254EXPORT_SYMBOL(serial8250_register_port);
3255
3256/**
3257 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3258 * @line: serial line number
3259 *
3260 * Remove one serial port. This may not be called from interrupt
3261 * context. We hand the port back to the our control.
3262 */
3263void serial8250_unregister_port(int line)
3264{
3265 struct uart_8250_port *uart = &serial8250_ports[line];
3266
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003267 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 uart_remove_one_port(&serial8250_reg, &uart->port);
3269 if (serial8250_isa_devs) {
3270 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3271 uart->port.type = PORT_UNKNOWN;
3272 uart->port.dev = &serial8250_isa_devs->dev;
3273 uart_add_one_port(&serial8250_reg, &uart->port);
3274 } else {
3275 uart->port.dev = NULL;
3276 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003277 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278}
3279EXPORT_SYMBOL(serial8250_unregister_port);
3280
3281static int __init serial8250_init(void)
3282{
Alan Cox25db8ad2008-08-19 20:49:40 -07003283 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
Dave Jonesa61c2d72006-01-07 23:18:19 +00003285 if (nr_uarts > UART_NR)
3286 nr_uarts = UART_NR;
3287
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003288 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003289 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 share_irqs ? "en" : "dis");
3291
David Millerb70ac772008-10-13 10:36:31 +01003292#ifdef CONFIG_SPARC
3293 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3294#else
3295 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003297#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 if (ret)
3299 goto out;
3300
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003301 serial8250_isa_devs = platform_device_alloc("serial8250",
3302 PLAT8250_DEV_LEGACY);
3303 if (!serial8250_isa_devs) {
3304 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003305 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 }
3307
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003308 ret = platform_device_add(serial8250_isa_devs);
3309 if (ret)
3310 goto put_dev;
3311
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3313
Russell Kingbc965a72006-01-18 09:54:29 +00003314 ret = platform_driver_register(&serial8250_isa_driver);
3315 if (ret == 0)
3316 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
Russell Kingbc965a72006-01-18 09:54:29 +00003318 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003319put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003320 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003321unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003322#ifdef CONFIG_SPARC
3323 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3324#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003326#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003327out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 return ret;
3329}
3330
3331static void __exit serial8250_exit(void)
3332{
3333 struct platform_device *isa_dev = serial8250_isa_devs;
3334
3335 /*
3336 * This tells serial8250_unregister_port() not to re-register
3337 * the ports (thereby making serial8250_isa_driver permanently
3338 * in use.)
3339 */
3340 serial8250_isa_devs = NULL;
3341
Russell King3ae5eae2005-11-09 22:32:44 +00003342 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 platform_device_unregister(isa_dev);
3344
David Millerb70ac772008-10-13 10:36:31 +01003345#ifdef CONFIG_SPARC
3346 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3347#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003349#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350}
3351
3352module_init(serial8250_init);
3353module_exit(serial8250_exit);
3354
3355EXPORT_SYMBOL(serial8250_suspend_port);
3356EXPORT_SYMBOL(serial8250_resume_port);
3357
3358MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003359MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
3361module_param(share_irqs, uint, 0644);
3362MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3363 " (unsafe)");
3364
Dave Jonesa61c2d72006-01-07 23:18:19 +00003365module_param(nr_uarts, uint, 0644);
3366MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3367
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003368module_param(skip_txen_test, uint, 0644);
3369MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371#ifdef CONFIG_SERIAL_8250_RSA
3372module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3373MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3374#endif
3375MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);