blob: b3b881bc4712f47983c84ac2069a6f5c0b07b55e [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,
Pavel Machekd0694e22011-01-09 08:38:48 +0100239 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
240 .flags = UART_CAP_FIFO | UART_CAP_SLEEP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 },
242 [PORT_16654] = {
243 .name = "ST16654",
244 .fifo_size = 64,
245 .tx_loadsz = 32,
246 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
247 UART_FCR_T_TRIG_10,
248 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
249 },
250 [PORT_16850] = {
251 .name = "XR16850",
252 .fifo_size = 128,
253 .tx_loadsz = 128,
254 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
255 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
256 },
257 [PORT_RSA] = {
258 .name = "RSA",
259 .fifo_size = 2048,
260 .tx_loadsz = 2048,
261 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
262 .flags = UART_CAP_FIFO,
263 },
264 [PORT_NS16550A] = {
265 .name = "NS16550A",
266 .fifo_size = 16,
267 .tx_loadsz = 16,
268 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
269 .flags = UART_CAP_FIFO | UART_NATSEMI,
270 },
271 [PORT_XSCALE] = {
272 .name = "XScale",
273 .fifo_size = 32,
274 .tx_loadsz = 32,
275 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
276 .flags = UART_CAP_FIFO | UART_CAP_UUE,
277 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700278 [PORT_RM9000] = {
279 .name = "RM9000",
280 .fifo_size = 16,
281 .tx_loadsz = 16,
282 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
283 .flags = UART_CAP_FIFO,
284 },
David Daney6b06f192009-01-02 13:50:00 +0000285 [PORT_OCTEON] = {
286 .name = "OCTEON",
287 .fifo_size = 64,
288 .tx_loadsz = 64,
289 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
290 .flags = UART_CAP_FIFO,
291 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100292 [PORT_AR7] = {
293 .name = "AR7",
294 .fifo_size = 16,
295 .tx_loadsz = 16,
296 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
297 .flags = UART_CAP_FIFO | UART_CAP_AFE,
298 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200299 [PORT_U6_16550A] = {
300 .name = "U6_16550A",
301 .fifo_size = 64,
302 .tx_loadsz = 64,
303 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
304 .flags = UART_CAP_FIFO | UART_CAP_AFE,
305 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306};
307
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200308#if defined(CONFIG_MIPS_ALCHEMY)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000309
310/* Au1x00 UART hardware has a weird register layout */
311static const u8 au_io_in_map[] = {
312 [UART_RX] = 0,
313 [UART_IER] = 2,
314 [UART_IIR] = 3,
315 [UART_LCR] = 5,
316 [UART_MCR] = 6,
317 [UART_LSR] = 7,
318 [UART_MSR] = 8,
319};
320
321static const u8 au_io_out_map[] = {
322 [UART_TX] = 1,
323 [UART_IER] = 2,
324 [UART_FCR] = 4,
325 [UART_LCR] = 5,
326 [UART_MCR] = 6,
327};
328
329/* sane hardware needs no mapping */
David Daney7d6a07d2009-01-02 13:49:47 +0000330static inline int map_8250_in_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000331{
David Daney7d6a07d2009-01-02 13:49:47 +0000332 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000333 return offset;
334 return au_io_in_map[offset];
335}
336
David Daney7d6a07d2009-01-02 13:49:47 +0000337static inline int map_8250_out_reg(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000338{
David Daney7d6a07d2009-01-02 13:49:47 +0000339 if (p->iotype != UPIO_AU)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000340 return offset;
341 return au_io_out_map[offset];
342}
343
Alan Cox6f803cd2008-02-08 04:18:52 -0800344#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700345
346static const u8
347 regmap_in[8] = {
348 [UART_RX] = 0x00,
349 [UART_IER] = 0x0c,
350 [UART_IIR] = 0x14,
351 [UART_LCR] = 0x1c,
352 [UART_MCR] = 0x20,
353 [UART_LSR] = 0x24,
354 [UART_MSR] = 0x28,
355 [UART_SCR] = 0x2c
356 },
357 regmap_out[8] = {
358 [UART_TX] = 0x04,
359 [UART_IER] = 0x0c,
360 [UART_FCR] = 0x18,
361 [UART_LCR] = 0x1c,
362 [UART_MCR] = 0x20,
363 [UART_LSR] = 0x24,
364 [UART_MSR] = 0x28,
365 [UART_SCR] = 0x2c
366 };
367
David Daney7d6a07d2009-01-02 13:49:47 +0000368static inline int map_8250_in_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700369{
David Daney7d6a07d2009-01-02 13:49:47 +0000370 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700371 return offset;
372 return regmap_in[offset];
373}
374
David Daney7d6a07d2009-01-02 13:49:47 +0000375static inline int map_8250_out_reg(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700376{
David Daney7d6a07d2009-01-02 13:49:47 +0000377 if (p->iotype != UPIO_RM9000)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700378 return offset;
379 return regmap_out[offset];
380}
381
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000382#else
383
384/* sane hardware needs no mapping */
385#define map_8250_in_reg(up, offset) (offset)
386#define map_8250_out_reg(up, offset) (offset)
387
388#endif
389
David Daney7d6a07d2009-01-02 13:49:47 +0000390static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
David Daney7d6a07d2009-01-02 13:49:47 +0000392 offset = map_8250_in_reg(p, offset) << p->regshift;
393 outb(p->hub6 - 1 + offset, p->iobase);
394 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
David Daney7d6a07d2009-01-02 13:49:47 +0000397static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
David Daney7d6a07d2009-01-02 13:49:47 +0000399 offset = map_8250_out_reg(p, offset) << p->regshift;
400 outb(p->hub6 - 1 + offset, p->iobase);
401 outb(value, p->iobase + 1);
402}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
David Daney7d6a07d2009-01-02 13:49:47 +0000404static unsigned int mem_serial_in(struct uart_port *p, int offset)
405{
406 offset = map_8250_in_reg(p, offset) << p->regshift;
407 return readb(p->membase + offset);
408}
409
410static void mem_serial_out(struct uart_port *p, int offset, int value)
411{
412 offset = map_8250_out_reg(p, offset) << p->regshift;
413 writeb(value, p->membase + offset);
414}
415
416static void mem32_serial_out(struct uart_port *p, int offset, int value)
417{
418 offset = map_8250_out_reg(p, offset) << p->regshift;
419 writel(value, p->membase + offset);
420}
421
422static unsigned int mem32_serial_in(struct uart_port *p, int offset)
423{
424 offset = map_8250_in_reg(p, offset) << p->regshift;
425 return readl(p->membase + offset);
426}
427
David Daney7d6a07d2009-01-02 13:49:47 +0000428static unsigned int au_serial_in(struct uart_port *p, int offset)
429{
430 offset = map_8250_in_reg(p, offset) << p->regshift;
431 return __raw_readl(p->membase + offset);
432}
433
434static void au_serial_out(struct uart_port *p, int offset, int value)
435{
436 offset = map_8250_out_reg(p, offset) << p->regshift;
437 __raw_writel(value, p->membase + offset);
438}
David Daney7d6a07d2009-01-02 13:49:47 +0000439
440static unsigned int tsi_serial_in(struct uart_port *p, int offset)
441{
442 unsigned int tmp;
443 offset = map_8250_in_reg(p, offset) << p->regshift;
444 if (offset == UART_IIR) {
445 tmp = readl(p->membase + (UART_IIR & ~3));
446 return (tmp >> 16) & 0xff; /* UART_IIR % 4 == 2 */
447 } else
448 return readb(p->membase + offset);
449}
450
451static void tsi_serial_out(struct uart_port *p, int offset, int value)
452{
453 offset = map_8250_out_reg(p, offset) << p->regshift;
454 if (!((offset == UART_IER) && (value & UART_IER_UUE)))
455 writeb(value, p->membase + offset);
456}
457
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000458/* Save the LCR value so it can be re-written when a Busy Detect IRQ occurs. */
459static inline void dwapb_save_out_value(struct uart_port *p, int offset,
460 int value)
461{
462 struct uart_8250_port *up =
463 container_of(p, struct uart_8250_port, port);
464
465 if (offset == UART_LCR)
466 up->lcr = value;
467}
468
469/* Read the IER to ensure any interrupt is cleared before returning from ISR. */
470static inline void dwapb_check_clear_ier(struct uart_port *p, int offset)
471{
472 if (offset == UART_TX || offset == UART_IER)
473 p->serial_in(p, UART_IER);
474}
475
David Daney7d6a07d2009-01-02 13:49:47 +0000476static void dwapb_serial_out(struct uart_port *p, int offset, int value)
477{
478 int save_offset = offset;
479 offset = map_8250_out_reg(p, offset) << p->regshift;
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000480 dwapb_save_out_value(p, save_offset, value);
David Daney7d6a07d2009-01-02 13:49:47 +0000481 writeb(value, p->membase + offset);
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000482 dwapb_check_clear_ier(p, save_offset);
483}
484
485static void dwapb32_serial_out(struct uart_port *p, int offset, int value)
486{
487 int save_offset = offset;
488 offset = map_8250_out_reg(p, offset) << p->regshift;
489 dwapb_save_out_value(p, save_offset, value);
490 writel(value, p->membase + offset);
491 dwapb_check_clear_ier(p, save_offset);
David Daney7d6a07d2009-01-02 13:49:47 +0000492}
493
494static unsigned int io_serial_in(struct uart_port *p, int offset)
495{
496 offset = map_8250_in_reg(p, offset) << p->regshift;
497 return inb(p->iobase + offset);
498}
499
500static void io_serial_out(struct uart_port *p, int offset, int value)
501{
502 offset = map_8250_out_reg(p, offset) << p->regshift;
503 outb(value, p->iobase + offset);
504}
505
506static void set_io_from_upio(struct uart_port *p)
507{
Jamie Iles49d57412010-12-01 23:39:35 +0000508 struct uart_8250_port *up =
509 container_of(p, struct uart_8250_port, port);
David Daney7d6a07d2009-01-02 13:49:47 +0000510 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000512 p->serial_in = hub6_serial_in;
513 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515
516 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000517 p->serial_in = mem_serial_in;
518 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 break;
520
Thomas Koellerbd71c182007-05-06 14:48:47 -0700521 case UPIO_RM9000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000523 p->serial_in = mem32_serial_in;
524 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000527 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000528 p->serial_in = au_serial_in;
529 p->serial_out = au_serial_out;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000530 break;
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200531
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700532 case UPIO_TSI:
David Daney7d6a07d2009-01-02 13:49:47 +0000533 p->serial_in = tsi_serial_in;
534 p->serial_out = tsi_serial_out;
Zang Roy-r619113be91ec2006-06-30 02:29:58 -0700535 break;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000536
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700537 case UPIO_DWAPB:
David Daney7d6a07d2009-01-02 13:49:47 +0000538 p->serial_in = mem_serial_in;
539 p->serial_out = dwapb_serial_out;
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700540 break;
541
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000542 case UPIO_DWAPB32:
543 p->serial_in = mem32_serial_in;
544 p->serial_out = dwapb32_serial_out;
545 break;
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000548 p->serial_in = io_serial_in;
549 p->serial_out = io_serial_out;
550 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100552 /* Remember loaded iotype */
553 up->cur_iotype = p->iotype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
Alex Williamson40b36da2007-02-14 00:33:04 -0800556static void
557serial_out_sync(struct uart_8250_port *up, int offset, int value)
558{
David Daney7d6a07d2009-01-02 13:49:47 +0000559 struct uart_port *p = &up->port;
560 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800561 case UPIO_MEM:
562 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800563 case UPIO_AU:
Marc St-Jeanbeab6972007-05-06 14:48:45 -0700564 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +0000565 case UPIO_DWAPB32:
David Daney7d6a07d2009-01-02 13:49:47 +0000566 p->serial_out(p, offset, value);
567 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800568 break;
569 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000570 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800571 }
572}
573
David Daney7d6a07d2009-01-02 13:49:47 +0000574#define serial_in(up, offset) \
575 (up->port.serial_in(&(up)->port, (offset)))
576#define serial_out(up, offset, value) \
577 (up->port.serial_out(&(up)->port, (offset), (value)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578/*
579 * We used to support using pause I/O for certain machines. We
580 * haven't supported this for a while, but just in case it's badly
581 * needed for certain old 386 machines, I've left these #define's
582 * in....
583 */
584#define serial_inp(up, offset) serial_in(up, offset)
585#define serial_outp(up, offset, value) serial_out(up, offset, value)
586
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100587/* Uart divisor latch read */
588static inline int _serial_dl_read(struct uart_8250_port *up)
589{
590 return serial_inp(up, UART_DLL) | serial_inp(up, UART_DLM) << 8;
591}
592
593/* Uart divisor latch write */
594static inline void _serial_dl_write(struct uart_8250_port *up, int value)
595{
596 serial_outp(up, UART_DLL, value & 0xff);
597 serial_outp(up, UART_DLM, value >> 8 & 0xff);
598}
599
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200600#if defined(CONFIG_MIPS_ALCHEMY)
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100601/* Au1x00 haven't got a standard divisor latch */
602static int serial_dl_read(struct uart_8250_port *up)
603{
604 if (up->port.iotype == UPIO_AU)
605 return __raw_readl(up->port.membase + 0x28);
606 else
607 return _serial_dl_read(up);
608}
609
610static void serial_dl_write(struct uart_8250_port *up, int value)
611{
612 if (up->port.iotype == UPIO_AU)
613 __raw_writel(value, up->port.membase + 0x28);
614 else
615 _serial_dl_write(up, value);
616}
Alan Cox6f803cd2008-02-08 04:18:52 -0800617#elif defined(CONFIG_SERIAL_8250_RM9K)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700618static int serial_dl_read(struct uart_8250_port *up)
619{
620 return (up->port.iotype == UPIO_RM9000) ?
621 (((__raw_readl(up->port.membase + 0x10) << 8) |
622 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff) :
623 _serial_dl_read(up);
624}
625
626static void serial_dl_write(struct uart_8250_port *up, int value)
627{
628 if (up->port.iotype == UPIO_RM9000) {
629 __raw_writel(value, up->port.membase + 0x08);
630 __raw_writel(value >> 8, up->port.membase + 0x10);
631 } else {
632 _serial_dl_write(up, value);
633 }
634}
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100635#else
636#define serial_dl_read(up) _serial_dl_read(up)
637#define serial_dl_write(up, value) _serial_dl_write(up, value)
638#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640/*
641 * For the 16C950
642 */
643static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
644{
645 serial_out(up, UART_SCR, offset);
646 serial_out(up, UART_ICR, value);
647}
648
649static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
650{
651 unsigned int value;
652
653 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
654 serial_out(up, UART_SCR, offset);
655 value = serial_in(up, UART_ICR);
656 serial_icr_write(up, UART_ACR, up->acr);
657
658 return value;
659}
660
661/*
662 * FIFO support.
663 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100664static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 if (p->capabilities & UART_CAP_FIFO) {
667 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO);
668 serial_outp(p, UART_FCR, UART_FCR_ENABLE_FIFO |
669 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
670 serial_outp(p, UART_FCR, 0);
671 }
672}
673
674/*
675 * IER sleep support. UARTs which have EFRs need the "extended
676 * capability" bit enabled. Note that on XR16C850s, we need to
677 * reset LCR to write to IER.
678 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100679static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 if (p->capabilities & UART_CAP_SLEEP) {
682 if (p->capabilities & UART_CAP_EFR) {
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800683 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 serial_outp(p, UART_EFR, UART_EFR_ECB);
685 serial_outp(p, UART_LCR, 0);
686 }
687 serial_outp(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
688 if (p->capabilities & UART_CAP_EFR) {
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800689 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 serial_outp(p, UART_EFR, 0);
691 serial_outp(p, UART_LCR, 0);
692 }
693 }
694}
695
696#ifdef CONFIG_SERIAL_8250_RSA
697/*
698 * Attempts to turn on the RSA FIFO. Returns zero on failure.
699 * We set the port uart clock rate if we succeed.
700 */
701static int __enable_rsa(struct uart_8250_port *up)
702{
703 unsigned char mode;
704 int result;
705
706 mode = serial_inp(up, UART_RSA_MSR);
707 result = mode & UART_RSA_MSR_FIFO;
708
709 if (!result) {
710 serial_outp(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
711 mode = serial_inp(up, UART_RSA_MSR);
712 result = mode & UART_RSA_MSR_FIFO;
713 }
714
715 if (result)
716 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
717
718 return result;
719}
720
721static void enable_rsa(struct uart_8250_port *up)
722{
723 if (up->port.type == PORT_RSA) {
724 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
725 spin_lock_irq(&up->port.lock);
726 __enable_rsa(up);
727 spin_unlock_irq(&up->port.lock);
728 }
729 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
730 serial_outp(up, UART_RSA_FRR, 0);
731 }
732}
733
734/*
735 * Attempts to turn off the RSA FIFO. Returns zero on failure.
736 * It is unknown why interrupts were disabled in here. However,
737 * the caller is expected to preserve this behaviour by grabbing
738 * the spinlock before calling this function.
739 */
740static void disable_rsa(struct uart_8250_port *up)
741{
742 unsigned char mode;
743 int result;
744
745 if (up->port.type == PORT_RSA &&
746 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
747 spin_lock_irq(&up->port.lock);
748
749 mode = serial_inp(up, UART_RSA_MSR);
750 result = !(mode & UART_RSA_MSR_FIFO);
751
752 if (!result) {
753 serial_outp(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
754 mode = serial_inp(up, UART_RSA_MSR);
755 result = !(mode & UART_RSA_MSR_FIFO);
756 }
757
758 if (result)
759 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
760 spin_unlock_irq(&up->port.lock);
761 }
762}
763#endif /* CONFIG_SERIAL_8250_RSA */
764
765/*
766 * This is a quickie test to see how big the FIFO is.
767 * It doesn't work at all the time, more's the pity.
768 */
769static int size_fifo(struct uart_8250_port *up)
770{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100771 unsigned char old_fcr, old_mcr, old_lcr;
772 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 int count;
774
775 old_lcr = serial_inp(up, UART_LCR);
776 serial_outp(up, UART_LCR, 0);
777 old_fcr = serial_inp(up, UART_FCR);
778 old_mcr = serial_inp(up, UART_MCR);
779 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO |
780 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
781 serial_outp(up, UART_MCR, UART_MCR_LOOP);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800782 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100783 old_dl = serial_dl_read(up);
784 serial_dl_write(up, 0x0001);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 serial_outp(up, UART_LCR, 0x03);
786 for (count = 0; count < 256; count++)
787 serial_outp(up, UART_TX, count);
788 mdelay(20);/* FIXME - schedule_timeout */
789 for (count = 0; (serial_inp(up, UART_LSR) & UART_LSR_DR) &&
790 (count < 256); count++)
791 serial_inp(up, UART_RX);
792 serial_outp(up, UART_FCR, old_fcr);
793 serial_outp(up, UART_MCR, old_mcr);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800794 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100795 serial_dl_write(up, old_dl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 serial_outp(up, UART_LCR, old_lcr);
797
798 return count;
799}
800
801/*
802 * Read UART ID using the divisor method - set DLL and DLM to zero
803 * and the revision will be in DLL and device type in DLM. We
804 * preserve the device state across this.
805 */
806static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
807{
808 unsigned char old_dll, old_dlm, old_lcr;
809 unsigned int id;
810
811 old_lcr = serial_inp(p, UART_LCR);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800812 serial_outp(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 old_dll = serial_inp(p, UART_DLL);
815 old_dlm = serial_inp(p, UART_DLM);
816
817 serial_outp(p, UART_DLL, 0);
818 serial_outp(p, UART_DLM, 0);
819
820 id = serial_inp(p, UART_DLL) | serial_inp(p, UART_DLM) << 8;
821
822 serial_outp(p, UART_DLL, old_dll);
823 serial_outp(p, UART_DLM, old_dlm);
824 serial_outp(p, UART_LCR, old_lcr);
825
826 return id;
827}
828
829/*
830 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
831 * When this function is called we know it is at least a StarTech
832 * 16650 V2, but it might be one of several StarTech UARTs, or one of
833 * its clones. (We treat the broken original StarTech 16650 V1 as a
834 * 16550, and why not? Startech doesn't seem to even acknowledge its
835 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700836 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * What evil have men's minds wrought...
838 */
839static void autoconfig_has_efr(struct uart_8250_port *up)
840{
841 unsigned int id1, id2, id3, rev;
842
843 /*
844 * Everything with an EFR has SLEEP
845 */
846 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
847
848 /*
849 * First we check to see if it's an Oxford Semiconductor UART.
850 *
851 * If we have to do this here because some non-National
852 * Semiconductor clone chips lock up if you try writing to the
853 * LSR register (which serial_icr_read does)
854 */
855
856 /*
857 * Check for Oxford Semiconductor 16C950.
858 *
859 * EFR [4] must be set else this test fails.
860 *
861 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
862 * claims that it's needed for 952 dual UART's (which are not
863 * recommended for new designs).
864 */
865 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800866 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 serial_out(up, UART_EFR, UART_EFR_ECB);
868 serial_out(up, UART_LCR, 0x00);
869 id1 = serial_icr_read(up, UART_ID1);
870 id2 = serial_icr_read(up, UART_ID2);
871 id3 = serial_icr_read(up, UART_ID3);
872 rev = serial_icr_read(up, UART_REV);
873
874 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
875
876 if (id1 == 0x16 && id2 == 0xC9 &&
877 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
878 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100879
880 /*
881 * Enable work around for the Oxford Semiconductor 952 rev B
882 * chip which causes it to seriously miscalculate baud rates
883 * when DLL is 0.
884 */
885 if (id3 == 0x52 && rev == 0x01)
886 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return;
888 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /*
891 * We check for a XR16C850 by setting DLL and DLM to 0, and then
892 * reading back DLL and DLM. The chip type depends on the DLM
893 * value read back:
894 * 0x10 - XR16C850 and the DLL contains the chip revision.
895 * 0x12 - XR16C2850.
896 * 0x14 - XR16C854.
897 */
898 id1 = autoconfig_read_divisor_id(up);
899 DEBUG_AUTOCONF("850id=%04x ", id1);
900
901 id2 = id1 >> 8;
902 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 up->port.type = PORT_16850;
904 return;
905 }
906
907 /*
908 * It wasn't an XR16C850.
909 *
910 * We distinguish between the '654 and the '650 by counting
911 * how many bytes are in the FIFO. I'm using this for now,
912 * since that's the technique that was sent to me in the
913 * serial driver update, but I'm not convinced this works.
914 * I've had problems doing this in the past. -TYT
915 */
916 if (size_fifo(up) == 64)
917 up->port.type = PORT_16654;
918 else
919 up->port.type = PORT_16650V2;
920}
921
922/*
923 * We detected a chip without a FIFO. Only two fall into
924 * this category - the original 8250 and the 16450. The
925 * 16450 has a scratch register (accessible with LCR=0)
926 */
927static void autoconfig_8250(struct uart_8250_port *up)
928{
929 unsigned char scratch, status1, status2;
930
931 up->port.type = PORT_8250;
932
933 scratch = serial_in(up, UART_SCR);
934 serial_outp(up, UART_SCR, 0xa5);
935 status1 = serial_in(up, UART_SCR);
936 serial_outp(up, UART_SCR, 0x5a);
937 status2 = serial_in(up, UART_SCR);
938 serial_outp(up, UART_SCR, scratch);
939
940 if (status1 == 0xa5 && status2 == 0x5a)
941 up->port.type = PORT_16450;
942}
943
944static int broken_efr(struct uart_8250_port *up)
945{
946 /*
947 * Exar ST16C2550 "A2" devices incorrectly detect as
948 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200949 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 */
951 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
952 return 1;
953
954 return 0;
955}
956
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800957static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
958{
959 unsigned char status;
960
961 status = serial_in(up, 0x04); /* EXCR2 */
962#define PRESL(x) ((x) & 0x30)
963 if (PRESL(status) == 0x10) {
964 /* already in high speed mode */
965 return 0;
966 } else {
967 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
968 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
969 serial_outp(up, 0x04, status);
970 }
971 return 1;
972}
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974/*
975 * We know that the chip has FIFOs. Does it have an EFR? The
976 * EFR is located in the same register position as the IIR and
977 * we know the top two bits of the IIR are currently set. The
978 * EFR should contain zero. Try to read the EFR.
979 */
980static void autoconfig_16550a(struct uart_8250_port *up)
981{
982 unsigned char status1, status2;
983 unsigned int iersave;
984
985 up->port.type = PORT_16550A;
986 up->capabilities |= UART_CAP_FIFO;
987
988 /*
989 * Check for presence of the EFR when DLAB is set.
990 * Only ST16C650V1 UARTs pass this test.
991 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800992 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (serial_in(up, UART_EFR) == 0) {
994 serial_outp(up, UART_EFR, 0xA8);
995 if (serial_in(up, UART_EFR) != 0) {
996 DEBUG_AUTOCONF("EFRv1 ");
997 up->port.type = PORT_16650;
998 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
999 } else {
1000 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
1001 }
1002 serial_outp(up, UART_EFR, 0);
1003 return;
1004 }
1005
1006 /*
1007 * Maybe it requires 0xbf to be written to the LCR.
1008 * (other ST16C650V2 UARTs, TI16C752A, etc)
1009 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001010 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
1012 DEBUG_AUTOCONF("EFRv2 ");
1013 autoconfig_has_efr(up);
1014 return;
1015 }
1016
1017 /*
1018 * Check for a National Semiconductor SuperIO chip.
1019 * Attempt to switch to bank 2, read the value of the LOOP bit
1020 * from EXCR1. Switch back to bank 0, change it in MCR. Then
1021 * switch back to bank 2, read it from EXCR1 again and check
1022 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 */
1024 serial_outp(up, UART_LCR, 0);
1025 status1 = serial_in(up, UART_MCR);
1026 serial_outp(up, UART_LCR, 0xE0);
1027 status2 = serial_in(up, 0x02); /* EXCR1 */
1028
1029 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
1030 serial_outp(up, UART_LCR, 0);
1031 serial_outp(up, UART_MCR, status1 ^ UART_MCR_LOOP);
1032 serial_outp(up, UART_LCR, 0xE0);
1033 status2 = serial_in(up, 0x02); /* EXCR1 */
1034 serial_outp(up, UART_LCR, 0);
1035 serial_outp(up, UART_MCR, status1);
1036
1037 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +01001038 unsigned short quot;
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 serial_outp(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +01001041
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01001042 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +01001043 quot <<= 3;
1044
Yin Kangkai0d0389e2011-02-09 11:35:18 +08001045 if (ns16550a_goto_highspeed(up))
1046 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
David Woodhouse857dde22005-05-21 15:52:23 +01001048 serial_outp(up, UART_LCR, 0);
1049
1050 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 up->port.type = PORT_NS16550A;
1052 up->capabilities |= UART_NATSEMI;
1053 return;
1054 }
1055 }
1056
1057 /*
1058 * No EFR. Try to detect a TI16750, which only sets bit 5 of
1059 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
1060 * Try setting it with and without DLAB set. Cheap clones
1061 * set bit 5 without DLAB set.
1062 */
1063 serial_outp(up, UART_LCR, 0);
1064 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1065 status1 = serial_in(up, UART_IIR) >> 5;
1066 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001067 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
1069 status2 = serial_in(up, UART_IIR) >> 5;
1070 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1071 serial_outp(up, UART_LCR, 0);
1072
1073 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
1074
1075 if (status1 == 6 && status2 == 7) {
1076 up->port.type = PORT_16750;
1077 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
1078 return;
1079 }
1080
1081 /*
1082 * Try writing and reading the UART_IER_UUE bit (b6).
1083 * If it works, this is probably one of the Xscale platform's
1084 * internal UARTs.
1085 * We're going to explicitly set the UUE bit to 0 before
1086 * trying to write and read a 1 just to make sure it's not
1087 * already a 1 and maybe locked there before we even start start.
1088 */
1089 iersave = serial_in(up, UART_IER);
1090 serial_outp(up, UART_IER, iersave & ~UART_IER_UUE);
1091 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
1092 /*
1093 * OK it's in a known zero state, try writing and reading
1094 * without disturbing the current state of the other bits.
1095 */
1096 serial_outp(up, UART_IER, iersave | UART_IER_UUE);
1097 if (serial_in(up, UART_IER) & UART_IER_UUE) {
1098 /*
1099 * It's an Xscale.
1100 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1101 */
1102 DEBUG_AUTOCONF("Xscale ");
1103 up->port.type = PORT_XSCALE;
1104 up->capabilities |= UART_CAP_UUE;
1105 return;
1106 }
1107 } else {
1108 /*
1109 * If we got here we couldn't force the IER_UUE bit to 0.
1110 * Log it and continue.
1111 */
1112 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1113 }
1114 serial_outp(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001115
1116 /*
1117 * We distinguish between 16550A and U6 16550A by counting
1118 * how many bytes are in the FIFO.
1119 */
1120 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1121 up->port.type = PORT_U6_16550A;
1122 up->capabilities |= UART_CAP_AFE;
1123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
1126/*
1127 * This routine is called by rs_init() to initialize a specific serial
1128 * port. It determines what type of UART chip this serial port is
1129 * using: 8250, 16450, 16550, 16550A. The important question is
1130 * whether or not this UART is a 16550A or not, since this will
1131 * determine whether or not we can use its FIFO features or not.
1132 */
1133static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1134{
1135 unsigned char status1, scratch, scratch2, scratch3;
1136 unsigned char save_lcr, save_mcr;
1137 unsigned long flags;
1138
1139 if (!up->port.iobase && !up->port.mapbase && !up->port.membase)
1140 return;
1141
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001142 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
David S. Miller84408382008-10-13 10:45:26 +01001143 serial_index(&up->port), up->port.iobase, up->port.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 /*
1146 * We really do need global IRQs disabled here - we're going to
1147 * be frobbing the chips IRQ enable register to see if it exists.
1148 */
1149 spin_lock_irqsave(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001152 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 if (!(up->port.flags & UPF_BUGGY_UART)) {
1155 /*
1156 * Do a simple existence test first; if we fail this,
1157 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001158 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 * 0x80 is used as a nonsense port to prevent against
1160 * false positives due to ISA bus float. The
1161 * assumption is that 0x80 is a non-existent port;
1162 * which should be safe since include/asm/io.h also
1163 * makes this assumption.
1164 *
1165 * Note: this is safe as long as MCR bit 4 is clear
1166 * and the device is in "PC" mode.
1167 */
1168 scratch = serial_inp(up, UART_IER);
1169 serial_outp(up, UART_IER, 0);
1170#ifdef __i386__
1171 outb(0xff, 0x080);
1172#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001173 /*
1174 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1175 * 16C754B) allow only to modify them if an EFR bit is set.
1176 */
1177 scratch2 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 serial_outp(up, UART_IER, 0x0F);
1179#ifdef __i386__
1180 outb(0, 0x080);
1181#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001182 scratch3 = serial_inp(up, UART_IER) & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 serial_outp(up, UART_IER, scratch);
1184 if (scratch2 != 0 || scratch3 != 0x0F) {
1185 /*
1186 * We failed; there's nothing here
1187 */
1188 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1189 scratch2, scratch3);
1190 goto out;
1191 }
1192 }
1193
1194 save_mcr = serial_in(up, UART_MCR);
1195 save_lcr = serial_in(up, UART_LCR);
1196
Thomas Koellerbd71c182007-05-06 14:48:47 -07001197 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 * Check to see if a UART is really there. Certain broken
1199 * internal modems based on the Rockwell chipset fail this
1200 * test, because they apparently don't implement the loopback
1201 * test mode. So this test is skipped on the COM 1 through
1202 * COM 4 ports. This *should* be safe, since no board
1203 * manufacturer would be stupid enough to design a board
1204 * that conflicts with COM 1-4 --- we hope!
1205 */
1206 if (!(up->port.flags & UPF_SKIP_TEST)) {
1207 serial_outp(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1208 status1 = serial_inp(up, UART_MSR) & 0xF0;
1209 serial_outp(up, UART_MCR, save_mcr);
1210 if (status1 != 0x90) {
1211 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1212 status1);
1213 goto out;
1214 }
1215 }
1216
1217 /*
1218 * We're pretty sure there's a port here. Lets find out what
1219 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001220 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 * determines what we test for next.
1222 *
1223 * We also initialise the EFR (if any) to zero for later. The
1224 * EFR occupies the same register location as the FCR and IIR.
1225 */
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08001226 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 serial_outp(up, UART_EFR, 0);
1228 serial_outp(up, UART_LCR, 0);
1229
1230 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
1231 scratch = serial_in(up, UART_IIR) >> 6;
1232
1233 DEBUG_AUTOCONF("iir=%d ", scratch);
1234
1235 switch (scratch) {
1236 case 0:
1237 autoconfig_8250(up);
1238 break;
1239 case 1:
1240 up->port.type = PORT_UNKNOWN;
1241 break;
1242 case 2:
1243 up->port.type = PORT_16550;
1244 break;
1245 case 3:
1246 autoconfig_16550a(up);
1247 break;
1248 }
1249
1250#ifdef CONFIG_SERIAL_8250_RSA
1251 /*
1252 * Only probe for RSA ports if we got the region.
1253 */
1254 if (up->port.type == PORT_16550A && probeflags & PROBE_RSA) {
1255 int i;
1256
1257 for (i = 0 ; i < probe_rsa_count; ++i) {
1258 if (probe_rsa[i] == up->port.iobase &&
1259 __enable_rsa(up)) {
1260 up->port.type = PORT_RSA;
1261 break;
1262 }
1263 }
1264 }
1265#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 serial_outp(up, UART_LCR, save_lcr);
1268
1269 if (up->capabilities != uart_config[up->port.type].flags) {
1270 printk(KERN_WARNING
1271 "ttyS%d: detected caps %08x should be %08x\n",
David S. Miller84408382008-10-13 10:45:26 +01001272 serial_index(&up->port), up->capabilities,
1273 uart_config[up->port.type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275
1276 up->port.fifosize = uart_config[up->port.type].fifo_size;
1277 up->capabilities = uart_config[up->port.type].flags;
1278 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
1279
1280 if (up->port.type == PORT_UNKNOWN)
1281 goto out;
1282
1283 /*
1284 * Reset the UART.
1285 */
1286#ifdef CONFIG_SERIAL_8250_RSA
1287 if (up->port.type == PORT_RSA)
1288 serial_outp(up, UART_RSA_FRR, 0);
1289#endif
1290 serial_outp(up, UART_MCR, save_mcr);
1291 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001292 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001293 if (up->capabilities & UART_CAP_UUE)
1294 serial_outp(up, UART_IER, UART_IER_UUE);
1295 else
1296 serial_outp(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Thomas Koellerbd71c182007-05-06 14:48:47 -07001298 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name);
1301}
1302
1303static void autoconfig_irq(struct uart_8250_port *up)
1304{
1305 unsigned char save_mcr, save_ier;
1306 unsigned char save_ICP = 0;
1307 unsigned int ICP = 0;
1308 unsigned long irqs;
1309 int irq;
1310
1311 if (up->port.flags & UPF_FOURPORT) {
1312 ICP = (up->port.iobase & 0xfe0) | 0x1f;
1313 save_ICP = inb_p(ICP);
1314 outb_p(0x80, ICP);
1315 (void) inb_p(ICP);
1316 }
1317
1318 /* forget possible initially masked and pending IRQ */
1319 probe_irq_off(probe_irq_on());
1320 save_mcr = serial_inp(up, UART_MCR);
1321 save_ier = serial_inp(up, UART_IER);
1322 serial_outp(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 irqs = probe_irq_on();
1325 serial_outp(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001326 udelay(10);
1327 if (up->port.flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 serial_outp(up, UART_MCR,
1329 UART_MCR_DTR | UART_MCR_RTS);
1330 } else {
1331 serial_outp(up, UART_MCR,
1332 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1333 }
1334 serial_outp(up, UART_IER, 0x0f); /* enable all intrs */
1335 (void)serial_inp(up, UART_LSR);
1336 (void)serial_inp(up, UART_RX);
1337 (void)serial_inp(up, UART_IIR);
1338 (void)serial_inp(up, UART_MSR);
1339 serial_outp(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001340 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 irq = probe_irq_off(irqs);
1342
1343 serial_outp(up, UART_MCR, save_mcr);
1344 serial_outp(up, UART_IER, save_ier);
1345
1346 if (up->port.flags & UPF_FOURPORT)
1347 outb_p(save_ICP, ICP);
1348
1349 up->port.irq = (irq > 0) ? irq : 0;
1350}
1351
Russell Kinge763b902005-06-29 18:41:51 +01001352static inline void __stop_tx(struct uart_8250_port *p)
1353{
1354 if (p->ier & UART_IER_THRI) {
1355 p->ier &= ~UART_IER_THRI;
1356 serial_out(p, UART_IER, p->ier);
1357 }
1358}
1359
Russell Kingb129a8c2005-08-31 10:12:14 +01001360static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Jamie Iles49d57412010-12-01 23:39:35 +00001362 struct uart_8250_port *up =
1363 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Russell Kinge763b902005-06-29 18:41:51 +01001365 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 /*
Russell Kinge763b902005-06-29 18:41:51 +01001368 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 */
Russell Kinge763b902005-06-29 18:41:51 +01001370 if (up->port.type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 up->acr |= UART_ACR_TXDIS;
1372 serial_icr_write(up, UART_ACR, up->acr);
1373 }
1374}
1375
Russell King55d3b282005-06-23 15:05:41 +01001376static void transmit_chars(struct uart_8250_port *up);
1377
Russell Kingb129a8c2005-08-31 10:12:14 +01001378static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Jamie Iles49d57412010-12-01 23:39:35 +00001380 struct uart_8250_port *up =
1381 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 if (!(up->ier & UART_IER_THRI)) {
1384 up->ier |= UART_IER_THRI;
1385 serial_out(up, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001386
Russell King67f76542005-06-23 22:26:43 +01001387 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001388 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001389 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001390 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Thomas Koellerbd71c182007-05-06 14:48:47 -07001391 if ((up->port.type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001392 (lsr & UART_LSR_THRE) :
1393 (lsr & UART_LSR_TEMT))
Russell King55d3b282005-06-23 15:05:41 +01001394 transmit_chars(up);
1395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
Russell Kinge763b902005-06-29 18:41:51 +01001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 /*
Russell Kinge763b902005-06-29 18:41:51 +01001399 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 */
Russell Kinge763b902005-06-29 18:41:51 +01001401 if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 up->acr &= ~UART_ACR_TXDIS;
1403 serial_icr_write(up, UART_ACR, up->acr);
1404 }
1405}
1406
1407static void serial8250_stop_rx(struct uart_port *port)
1408{
Jamie Iles49d57412010-12-01 23:39:35 +00001409 struct uart_8250_port *up =
1410 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 up->ier &= ~UART_IER_RLSI;
1413 up->port.read_status_mask &= ~UART_LSR_DR;
1414 serial_out(up, UART_IER, up->ier);
1415}
1416
1417static void serial8250_enable_ms(struct uart_port *port)
1418{
Jamie Iles49d57412010-12-01 23:39:35 +00001419 struct uart_8250_port *up =
1420 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001422 /* no MSR capabilities */
1423 if (up->bugs & UART_BUG_NOMSR)
1424 return;
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 up->ier |= UART_IER_MSI;
1427 serial_out(up, UART_IER, up->ier);
1428}
1429
Russell Kingea8874d2006-01-04 19:43:24 +00001430static void
Thomas Koellercc79aa92007-02-20 13:58:05 -08001431receive_chars(struct uart_8250_port *up, unsigned int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001433 struct tty_struct *tty = up->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 unsigned char ch, lsr = *status;
1435 int max_count = 256;
1436 char flag;
1437
1438 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001439 if (likely(lsr & UART_LSR_DR))
1440 ch = serial_inp(up, UART_RX);
1441 else
1442 /*
1443 * Intel 82571 has a Serial Over Lan device that will
1444 * set UART_LSR_BI without setting UART_LSR_DR when
1445 * it receives a break. To avoid reading from the
1446 * receive buffer without UART_LSR_DR bit set, we
1447 * just force the read character to be 0
1448 */
1449 ch = 0;
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 flag = TTY_NORMAL;
1452 up->port.icount.rx++;
1453
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001454 lsr |= up->lsr_saved_flags;
1455 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001457 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 /*
1459 * For statistics only
1460 */
1461 if (lsr & UART_LSR_BI) {
1462 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
1463 up->port.icount.brk++;
1464 /*
1465 * We do the SysRQ and SAK checking
1466 * here because otherwise the break
1467 * may get masked by ignore_status_mask
1468 * or read_status_mask.
1469 */
1470 if (uart_handle_break(&up->port))
1471 goto ignore_char;
1472 } else if (lsr & UART_LSR_PE)
1473 up->port.icount.parity++;
1474 else if (lsr & UART_LSR_FE)
1475 up->port.icount.frame++;
1476 if (lsr & UART_LSR_OE)
1477 up->port.icount.overrun++;
1478
1479 /*
Russell King23907eb2005-04-16 15:26:39 -07001480 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 */
1482 lsr &= up->port.read_status_mask;
1483
1484 if (lsr & UART_LSR_BI) {
1485 DEBUG_INTR("handling break....");
1486 flag = TTY_BREAK;
1487 } else if (lsr & UART_LSR_PE)
1488 flag = TTY_PARITY;
1489 else if (lsr & UART_LSR_FE)
1490 flag = TTY_FRAME;
1491 }
David Howells7d12e782006-10-05 14:55:46 +01001492 if (uart_handle_sysrq_char(&up->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001494
1495 uart_insert_char(&up->port, lsr, UART_LSR_OE, ch, flag);
1496
Alan Cox6f803cd2008-02-08 04:18:52 -08001497ignore_char:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 lsr = serial_inp(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001499 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 spin_unlock(&up->port.lock);
1501 tty_flip_buffer_push(tty);
1502 spin_lock(&up->port.lock);
1503 *status = lsr;
1504}
1505
Russell Kingea8874d2006-01-04 19:43:24 +00001506static void transmit_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001508 struct circ_buf *xmit = &up->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 int count;
1510
1511 if (up->port.x_char) {
1512 serial_outp(up, UART_TX, up->port.x_char);
1513 up->port.icount.tx++;
1514 up->port.x_char = 0;
1515 return;
1516 }
Russell Kingb129a8c2005-08-31 10:12:14 +01001517 if (uart_tx_stopped(&up->port)) {
1518 serial8250_stop_tx(&up->port);
1519 return;
1520 }
1521 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001522 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return;
1524 }
1525
1526 count = up->tx_loadsz;
1527 do {
1528 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1529 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1530 up->port.icount.tx++;
1531 if (uart_circ_empty(xmit))
1532 break;
1533 } while (--count > 0);
1534
1535 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1536 uart_write_wakeup(&up->port);
1537
1538 DEBUG_INTR("THRE...");
1539
1540 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001541 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
Russell King2af7cd62006-01-04 16:55:09 +00001544static unsigned int check_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Russell King2af7cd62006-01-04 16:55:09 +00001546 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001548 status |= up->msr_saved_flags;
1549 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001550 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001551 up->port.state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001552 if (status & UART_MSR_TERI)
1553 up->port.icount.rng++;
1554 if (status & UART_MSR_DDSR)
1555 up->port.icount.dsr++;
1556 if (status & UART_MSR_DDCD)
1557 uart_handle_dcd_change(&up->port, status & UART_MSR_DCD);
1558 if (status & UART_MSR_DCTS)
1559 uart_handle_cts_change(&up->port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Alan Coxbdc04e32009-09-19 13:13:31 -07001561 wake_up_interruptible(&up->port.state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Russell King2af7cd62006-01-04 16:55:09 +00001564 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
1567/*
1568 * This handles the interrupt from one port.
1569 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001570static void serial8250_handle_port(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Russell King45e24602006-01-04 19:19:06 +00001572 unsigned int status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001573 unsigned long flags;
Russell King45e24602006-01-04 19:19:06 +00001574
Jiri Kosina4bf36312007-04-23 14:41:21 -07001575 spin_lock_irqsave(&up->port.lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001576
1577 status = serial_inp(up, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 DEBUG_INTR("status = %x...", status);
1580
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001581 if (status & (UART_LSR_DR | UART_LSR_BI))
David Howells7d12e782006-10-05 14:55:46 +01001582 receive_chars(up, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 check_modem_status(up);
1584 if (status & UART_LSR_THRE)
1585 transmit_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001586
Jiri Kosina4bf36312007-04-23 14:41:21 -07001587 spin_unlock_irqrestore(&up->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
1590/*
1591 * This is the serial driver's interrupt routine.
1592 *
1593 * Arjan thinks the old way was overly complex, so it got simplified.
1594 * Alan disagrees, saying that need the complexity to handle the weird
1595 * nature of ISA shared interrupts. (This is a special exception.)
1596 *
1597 * In order to handle ISA shared interrupts properly, we need to check
1598 * that all ports have been serviced, and therefore the ISA interrupt
1599 * line has been de-asserted.
1600 *
1601 * This means we need to loop through all ports. checking that they
1602 * don't have an interrupt pending.
1603 */
David Howells7d12e782006-10-05 14:55:46 +01001604static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 struct irq_info *i = dev_id;
1607 struct list_head *l, *end = NULL;
1608 int pass_counter = 0, handled = 0;
1609
1610 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1611
1612 spin_lock(&i->lock);
1613
1614 l = i->head;
1615 do {
1616 struct uart_8250_port *up;
1617 unsigned int iir;
1618
1619 up = list_entry(l, struct uart_8250_port, list);
1620
1621 iir = serial_in(up, UART_IIR);
1622 if (!(iir & UART_IIR_NO_INT)) {
David Howells7d12e782006-10-05 14:55:46 +01001623 serial8250_handle_port(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 handled = 1;
1626
1627 end = NULL;
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00001628 } else if ((up->port.iotype == UPIO_DWAPB ||
1629 up->port.iotype == UPIO_DWAPB32) &&
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001630 (iir & UART_IIR_BUSY) == UART_IIR_BUSY) {
1631 /* The DesignWare APB UART has an Busy Detect (0x07)
1632 * interrupt meaning an LCR write attempt occured while the
1633 * UART was busy. The interrupt must be cleared by reading
1634 * the UART status register (USR) and the LCR re-written. */
1635 unsigned int status;
1636 status = *(volatile u32 *)up->port.private_data;
1637 serial_out(up, UART_LCR, up->lcr);
1638
1639 handled = 1;
1640
1641 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 } else if (end == NULL)
1643 end = l;
1644
1645 l = l->next;
1646
1647 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1648 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001649 printk_ratelimited(KERN_ERR
1650 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 break;
1652 }
1653 } while (l != end);
1654
1655 spin_unlock(&i->lock);
1656
1657 DEBUG_INTR("end.\n");
1658
1659 return IRQ_RETVAL(handled);
1660}
1661
1662/*
1663 * To support ISA shared interrupts, we need to have one interrupt
1664 * handler that ensures that the IRQ line has been deasserted
1665 * before returning. Failing to do this will result in the IRQ
1666 * line being stuck active, and, since ISA irqs are edge triggered,
1667 * no more IRQs will be seen.
1668 */
1669static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1670{
1671 spin_lock_irq(&i->lock);
1672
1673 if (!list_empty(i->head)) {
1674 if (i->head == &up->list)
1675 i->head = i->head->next;
1676 list_del(&up->list);
1677 } else {
1678 BUG_ON(i->head != &up->list);
1679 i->head = NULL;
1680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001682 /* List empty so throw away the hash node */
1683 if (i->head == NULL) {
1684 hlist_del(&i->node);
1685 kfree(i);
1686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
1689static int serial_link_irq_chain(struct uart_8250_port *up)
1690{
Alan Cox25db8ad2008-08-19 20:49:40 -07001691 struct hlist_head *h;
1692 struct hlist_node *n;
1693 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001694 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Alan Cox25db8ad2008-08-19 20:49:40 -07001696 mutex_lock(&hash_mutex);
1697
1698 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1699
1700 hlist_for_each(n, h) {
1701 i = hlist_entry(n, struct irq_info, node);
1702 if (i->irq == up->port.irq)
1703 break;
1704 }
1705
1706 if (n == NULL) {
1707 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1708 if (i == NULL) {
1709 mutex_unlock(&hash_mutex);
1710 return -ENOMEM;
1711 }
1712 spin_lock_init(&i->lock);
1713 i->irq = up->port.irq;
1714 hlist_add_head(&i->node, h);
1715 }
1716 mutex_unlock(&hash_mutex);
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 spin_lock_irq(&i->lock);
1719
1720 if (i->head) {
1721 list_add(&up->list, i->head);
1722 spin_unlock_irq(&i->lock);
1723
1724 ret = 0;
1725 } else {
1726 INIT_LIST_HEAD(&up->list);
1727 i->head = &up->list;
1728 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001729 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 ret = request_irq(up->port.irq, serial8250_interrupt,
1731 irq_flags, "serial", i);
1732 if (ret < 0)
1733 serial_do_unlink(i, up);
1734 }
1735
1736 return ret;
1737}
1738
1739static void serial_unlink_irq_chain(struct uart_8250_port *up)
1740{
Alan Cox25db8ad2008-08-19 20:49:40 -07001741 struct irq_info *i;
1742 struct hlist_node *n;
1743 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Alan Cox25db8ad2008-08-19 20:49:40 -07001745 mutex_lock(&hash_mutex);
1746
1747 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1748
1749 hlist_for_each(n, h) {
1750 i = hlist_entry(n, struct irq_info, node);
1751 if (i->irq == up->port.irq)
1752 break;
1753 }
1754
1755 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 BUG_ON(i->head == NULL);
1757
1758 if (list_empty(i->head))
1759 free_irq(up->port.irq, i);
1760
1761 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001762 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
1765/*
1766 * This function is used to handle ports that do not have an
1767 * interrupt. This doesn't work very well for 16450's, but gives
1768 * barely passable results for a 16550A. (Although at the expense
1769 * of much CPU overhead).
1770 */
1771static void serial8250_timeout(unsigned long data)
1772{
1773 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 unsigned int iir;
1775
1776 iir = serial_in(up, UART_IIR);
Russell King45e24602006-01-04 19:19:06 +00001777 if (!(iir & UART_IIR_NO_INT))
David Howells7d12e782006-10-05 14:55:46 +01001778 serial8250_handle_port(up);
Anton Vorontsov54381062010-10-01 17:21:25 +04001779 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001780}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Alex Williamson40b36da2007-02-14 00:33:04 -08001782static void serial8250_backup_timeout(unsigned long data)
1783{
1784 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001785 unsigned int iir, ier = 0, lsr;
1786 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001787
1788 /*
1789 * Must disable interrupts or else we risk racing with the interrupt
1790 * based handler.
1791 */
1792 if (is_real_interrupt(up->port.irq)) {
1793 ier = serial_in(up, UART_IER);
1794 serial_out(up, UART_IER, 0);
1795 }
1796
1797 iir = serial_in(up, UART_IIR);
1798
1799 /*
1800 * This should be a safe test for anyone who doesn't trust the
1801 * IIR bits on their UART, but it's specifically designed for
1802 * the "Diva" UART used on the management processor on many HP
1803 * ia64 and parisc boxes.
1804 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001805 spin_lock_irqsave(&up->port.lock, flags);
1806 lsr = serial_in(up, UART_LSR);
1807 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
1808 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08001809 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001810 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001811 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001812 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1813 iir |= UART_IIR_THRI;
1814 }
1815
1816 if (!(iir & UART_IIR_NO_INT))
1817 serial8250_handle_port(up);
1818
1819 if (is_real_interrupt(up->port.irq))
1820 serial_out(up, UART_IER, ier);
1821
1822 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001823 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001824 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
1827static unsigned int serial8250_tx_empty(struct uart_port *port)
1828{
Jamie Iles49d57412010-12-01 23:39:35 +00001829 struct uart_8250_port *up =
1830 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001832 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 spin_lock_irqsave(&up->port.lock, flags);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001835 lsr = serial_in(up, UART_LSR);
1836 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 spin_unlock_irqrestore(&up->port.lock, flags);
1838
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001839 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
1842static unsigned int serial8250_get_mctrl(struct uart_port *port)
1843{
Jamie Iles49d57412010-12-01 23:39:35 +00001844 struct uart_8250_port *up =
1845 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001846 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 unsigned int ret;
1848
Russell King2af7cd62006-01-04 16:55:09 +00001849 status = check_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 ret = 0;
1852 if (status & UART_MSR_DCD)
1853 ret |= TIOCM_CAR;
1854 if (status & UART_MSR_RI)
1855 ret |= TIOCM_RNG;
1856 if (status & UART_MSR_DSR)
1857 ret |= TIOCM_DSR;
1858 if (status & UART_MSR_CTS)
1859 ret |= TIOCM_CTS;
1860 return ret;
1861}
1862
1863static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1864{
Jamie Iles49d57412010-12-01 23:39:35 +00001865 struct uart_8250_port *up =
1866 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 unsigned char mcr = 0;
1868
1869 if (mctrl & TIOCM_RTS)
1870 mcr |= UART_MCR_RTS;
1871 if (mctrl & TIOCM_DTR)
1872 mcr |= UART_MCR_DTR;
1873 if (mctrl & TIOCM_OUT1)
1874 mcr |= UART_MCR_OUT1;
1875 if (mctrl & TIOCM_OUT2)
1876 mcr |= UART_MCR_OUT2;
1877 if (mctrl & TIOCM_LOOP)
1878 mcr |= UART_MCR_LOOP;
1879
1880 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1881
1882 serial_out(up, UART_MCR, mcr);
1883}
1884
1885static void serial8250_break_ctl(struct uart_port *port, int break_state)
1886{
Jamie Iles49d57412010-12-01 23:39:35 +00001887 struct uart_8250_port *up =
1888 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 unsigned long flags;
1890
1891 spin_lock_irqsave(&up->port.lock, flags);
1892 if (break_state == -1)
1893 up->lcr |= UART_LCR_SBC;
1894 else
1895 up->lcr &= ~UART_LCR_SBC;
1896 serial_out(up, UART_LCR, up->lcr);
1897 spin_unlock_irqrestore(&up->port.lock, flags);
1898}
1899
Alex Williamson40b36da2007-02-14 00:33:04 -08001900/*
1901 * Wait for transmitter & holding register to empty
1902 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001903static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001904{
1905 unsigned int status, tmout = 10000;
1906
1907 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001908 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001909 status = serial_in(up, UART_LSR);
1910
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001911 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001912
David Daney97d303b2010-10-05 11:40:07 -07001913 if ((status & bits) == bits)
1914 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001915 if (--tmout == 0)
1916 break;
1917 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001918 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001919
1920 /* Wait up to 1s for flow control if necessary */
1921 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001922 unsigned int tmout;
1923 for (tmout = 1000000; tmout; tmout--) {
1924 unsigned int msr = serial_in(up, UART_MSR);
1925 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1926 if (msr & UART_MSR_CTS)
1927 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001928 udelay(1);
1929 touch_nmi_watchdog();
1930 }
1931 }
1932}
1933
Jason Wesself2d937f2008-04-17 20:05:37 +02001934#ifdef CONFIG_CONSOLE_POLL
1935/*
1936 * Console polling routines for writing and reading from the uart while
1937 * in an interrupt or debug context.
1938 */
1939
1940static int serial8250_get_poll_char(struct uart_port *port)
1941{
Jamie Iles49d57412010-12-01 23:39:35 +00001942 struct uart_8250_port *up =
1943 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001944 unsigned char lsr = serial_inp(up, UART_LSR);
1945
Jason Wesself5316b42010-05-20 21:04:22 -05001946 if (!(lsr & UART_LSR_DR))
1947 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001948
1949 return serial_inp(up, UART_RX);
1950}
1951
1952
1953static void serial8250_put_poll_char(struct uart_port *port,
1954 unsigned char c)
1955{
1956 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001957 struct uart_8250_port *up =
1958 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001959
1960 /*
1961 * First save the IER then disable the interrupts
1962 */
1963 ier = serial_in(up, UART_IER);
1964 if (up->capabilities & UART_CAP_UUE)
1965 serial_out(up, UART_IER, UART_IER_UUE);
1966 else
1967 serial_out(up, UART_IER, 0);
1968
1969 wait_for_xmitr(up, BOTH_EMPTY);
1970 /*
1971 * Send the character out.
1972 * If a LF, also do CR...
1973 */
1974 serial_out(up, UART_TX, c);
1975 if (c == 10) {
1976 wait_for_xmitr(up, BOTH_EMPTY);
1977 serial_out(up, UART_TX, 13);
1978 }
1979
1980 /*
1981 * Finally, wait for transmitter to become empty
1982 * and restore the IER
1983 */
1984 wait_for_xmitr(up, BOTH_EMPTY);
1985 serial_out(up, UART_IER, ier);
1986}
1987
1988#endif /* CONFIG_CONSOLE_POLL */
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990static int serial8250_startup(struct uart_port *port)
1991{
Jamie Iles49d57412010-12-01 23:39:35 +00001992 struct uart_8250_port *up =
1993 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001995 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 int retval;
1997
Ondrej Puzmane4f05af2010-12-04 21:17:38 +01001998 up->port.fifosize = uart_config[up->port.type].fifo_size;
1999 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 up->capabilities = uart_config[up->port.type].flags;
2001 up->mcr = 0;
2002
Alan Coxb8e7e402009-05-28 14:01:35 +01002003 if (up->port.iotype != up->cur_iotype)
2004 set_io_from_upio(port);
2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (up->port.type == PORT_16C950) {
2007 /* Wake up and initialize UART */
2008 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002009 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 serial_outp(up, UART_EFR, UART_EFR_ECB);
2011 serial_outp(up, UART_IER, 0);
2012 serial_outp(up, UART_LCR, 0);
2013 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
2014 serial_outp(up, UART_LCR, 0xBF);
2015 serial_outp(up, UART_EFR, UART_EFR_ECB);
2016 serial_outp(up, UART_LCR, 0);
2017 }
2018
2019#ifdef CONFIG_SERIAL_8250_RSA
2020 /*
2021 * If this is an RSA port, see if we can kick it up to the
2022 * higher speed clock.
2023 */
2024 enable_rsa(up);
2025#endif
2026
2027 /*
2028 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08002029 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 */
2031 serial8250_clear_fifos(up);
2032
2033 /*
2034 * Clear the interrupt registers.
2035 */
2036 (void) serial_inp(up, UART_LSR);
2037 (void) serial_inp(up, UART_RX);
2038 (void) serial_inp(up, UART_IIR);
2039 (void) serial_inp(up, UART_MSR);
2040
2041 /*
2042 * At this point, there's no way the LSR could still be 0xff;
2043 * if it is, then bail out, because there's likely no UART
2044 * here.
2045 */
2046 if (!(up->port.flags & UPF_BUGGY_UART) &&
2047 (serial_inp(up, UART_LSR) == 0xff)) {
David S. Miller84408382008-10-13 10:45:26 +01002048 printk(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
2049 serial_index(&up->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 return -ENODEV;
2051 }
2052
2053 /*
2054 * For a XR16C850, we need to set the trigger levels
2055 */
2056 if (up->port.type == PORT_16850) {
2057 unsigned char fctr;
2058
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002059 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 fctr = serial_inp(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
2062 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_RX);
2063 serial_outp(up, UART_TRG, UART_TRG_96);
2064 serial_outp(up, UART_FCTR, fctr | UART_FCTR_TRGD | UART_FCTR_TX);
2065 serial_outp(up, UART_TRG, UART_TRG_96);
2066
2067 serial_outp(up, UART_LCR, 0);
2068 }
2069
Alex Williamson40b36da2007-02-14 00:33:04 -08002070 if (is_real_interrupt(up->port.irq)) {
Alex Williamson01c194d2008-04-28 02:14:09 -07002071 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08002072 /*
2073 * Test for UARTs that do not reassert THRE when the
2074 * transmitter is idle and the interrupt has already
2075 * been cleared. Real 16550s should always reassert
2076 * this interrupt whenever the transmitter is idle and
2077 * the interrupt is enabled. Delays are necessary to
2078 * allow register changes to become visible.
2079 */
Borislav Petkovc389d272008-07-29 22:33:32 -07002080 spin_lock_irqsave(&up->port.lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002081 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002082 disable_irq_nosync(up->port.irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08002083
2084 wait_for_xmitr(up, UART_LSR_THRE);
2085 serial_out_sync(up, UART_IER, UART_IER_THRI);
2086 udelay(1); /* allow THRE to set */
Alex Williamson01c194d2008-04-28 02:14:09 -07002087 iir1 = serial_in(up, UART_IIR);
Alex Williamson40b36da2007-02-14 00:33:04 -08002088 serial_out(up, UART_IER, 0);
2089 serial_out_sync(up, UART_IER, UART_IER_THRI);
2090 udelay(1); /* allow a working UART time to re-assert THRE */
2091 iir = serial_in(up, UART_IIR);
2092 serial_out(up, UART_IER, 0);
2093
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002094 if (up->port.irqflags & IRQF_SHARED)
Anton Vorontsov768aec02008-07-22 11:21:07 +01002095 enable_irq(up->port.irq);
Borislav Petkovc389d272008-07-29 22:33:32 -07002096 spin_unlock_irqrestore(&up->port.lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002097
2098 /*
2099 * If the interrupt is not reasserted, setup a timer to
2100 * kick the UART on a regular basis.
2101 */
Alex Williamson01c194d2008-04-28 02:14:09 -07002102 if (!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) {
Will Newton363f66f2008-09-02 14:35:44 -07002103 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002104 pr_debug("ttyS%d - using backup timer\n",
2105 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002106 }
2107 }
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 /*
Will Newton363f66f2008-09-02 14:35:44 -07002110 * The above check will only give an accurate result the first time
2111 * the port is opened so this value needs to be preserved.
2112 */
2113 if (up->bugs & UART_BUG_THRE) {
2114 up->timer.function = serial8250_backup_timeout;
2115 up->timer.data = (unsigned long)up;
2116 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002117 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002118 }
2119
2120 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 * If the "interrupt" for this port doesn't correspond with any
2122 * hardware interrupt, we use a timer-based system. The original
2123 * driver used to do this with IRQ0.
2124 */
2125 if (!is_real_interrupt(up->port.irq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002127 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 } else {
2129 retval = serial_link_irq_chain(up);
2130 if (retval)
2131 return retval;
2132 }
2133
2134 /*
2135 * Now, initialize the UART
2136 */
2137 serial_outp(up, UART_LCR, UART_LCR_WLEN8);
2138
2139 spin_lock_irqsave(&up->port.lock, flags);
2140 if (up->port.flags & UPF_FOURPORT) {
2141 if (!is_real_interrupt(up->port.irq))
2142 up->port.mctrl |= TIOCM_OUT1;
2143 } else
2144 /*
2145 * Most PC uarts need OUT2 raised to enable interrupts.
2146 */
2147 if (is_real_interrupt(up->port.irq))
2148 up->port.mctrl |= TIOCM_OUT2;
2149
2150 serial8250_set_mctrl(&up->port, up->port.mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002151
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002152 /* Serial over Lan (SoL) hack:
2153 Intel 8257x Gigabit ethernet chips have a
2154 16550 emulation, to be used for Serial Over Lan.
2155 Those chips take a longer time than a normal
2156 serial device to signalize that a transmission
2157 data was queued. Due to that, the above test generally
2158 fails. One solution would be to delay the reading of
2159 iir. However, this is not reliable, since the timeout
2160 is variable. So, let's just don't test if we receive
2161 TX irq. This way, we'll never enable UART_BUG_TXEN.
2162 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002163 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002164 goto dont_test_tx_en;
2165
Russell King55d3b282005-06-23 15:05:41 +01002166 /*
2167 * Do a quick test to see if we receive an
2168 * interrupt when we enable the TX irq.
2169 */
2170 serial_outp(up, UART_IER, UART_IER_THRI);
2171 lsr = serial_in(up, UART_LSR);
2172 iir = serial_in(up, UART_IIR);
2173 serial_outp(up, UART_IER, 0);
2174
2175 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002176 if (!(up->bugs & UART_BUG_TXEN)) {
2177 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002178 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002179 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002180 }
2181 } else {
Russell King67f76542005-06-23 22:26:43 +01002182 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002183 }
2184
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002185dont_test_tx_en:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 spin_unlock_irqrestore(&up->port.lock, flags);
2187
2188 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002189 * Clear the interrupt registers again for luck, and clear the
2190 * saved flags to avoid getting false values from polling
2191 * routines or the previous session.
2192 */
2193 serial_inp(up, UART_LSR);
2194 serial_inp(up, UART_RX);
2195 serial_inp(up, UART_IIR);
2196 serial_inp(up, UART_MSR);
2197 up->lsr_saved_flags = 0;
2198 up->msr_saved_flags = 0;
2199
2200 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 * Finally, enable interrupts. Note: Modem status interrupts
2202 * are set via set_termios(), which will be occurring imminently
2203 * anyway, so we don't enable them here.
2204 */
2205 up->ier = UART_IER_RLSI | UART_IER_RDI;
2206 serial_outp(up, UART_IER, up->ier);
2207
2208 if (up->port.flags & UPF_FOURPORT) {
2209 unsigned int icp;
2210 /*
2211 * Enable interrupts on the AST Fourport board
2212 */
2213 icp = (up->port.iobase & 0xfe0) | 0x01f;
2214 outb_p(0x80, icp);
2215 (void) inb_p(icp);
2216 }
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 return 0;
2219}
2220
2221static void serial8250_shutdown(struct uart_port *port)
2222{
Jamie Iles49d57412010-12-01 23:39:35 +00002223 struct uart_8250_port *up =
2224 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 unsigned long flags;
2226
2227 /*
2228 * Disable interrupts from this port
2229 */
2230 up->ier = 0;
2231 serial_outp(up, UART_IER, 0);
2232
2233 spin_lock_irqsave(&up->port.lock, flags);
2234 if (up->port.flags & UPF_FOURPORT) {
2235 /* reset interrupts on the AST Fourport board */
2236 inb((up->port.iobase & 0xfe0) | 0x1f);
2237 up->port.mctrl |= TIOCM_OUT1;
2238 } else
2239 up->port.mctrl &= ~TIOCM_OUT2;
2240
2241 serial8250_set_mctrl(&up->port, up->port.mctrl);
2242 spin_unlock_irqrestore(&up->port.lock, flags);
2243
2244 /*
2245 * Disable break condition and FIFOs
2246 */
2247 serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC);
2248 serial8250_clear_fifos(up);
2249
2250#ifdef CONFIG_SERIAL_8250_RSA
2251 /*
2252 * Reset the RSA board back to 115kbps compat mode.
2253 */
2254 disable_rsa(up);
2255#endif
2256
2257 /*
2258 * Read data port to reset things, and then unlink from
2259 * the IRQ chain.
2260 */
2261 (void) serial_in(up, UART_RX);
2262
Alex Williamson40b36da2007-02-14 00:33:04 -08002263 del_timer_sync(&up->timer);
2264 up->timer.function = serial8250_timeout;
2265 if (is_real_interrupt(up->port.irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 serial_unlink_irq_chain(up);
2267}
2268
2269static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2270{
2271 unsigned int quot;
2272
2273 /*
2274 * Handle magic divisors for baud rates above baud_base on
2275 * SMSC SuperIO chips.
2276 */
2277 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2278 baud == (port->uartclk/4))
2279 quot = 0x8001;
2280 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2281 baud == (port->uartclk/8))
2282 quot = 0x8002;
2283 else
2284 quot = uart_get_divisor(port, baud);
2285
2286 return quot;
2287}
2288
Philippe Langlais235dae52010-07-29 17:13:57 +02002289void
2290serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2291 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
Jamie Iles49d57412010-12-01 23:39:35 +00002293 struct uart_8250_port *up =
2294 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 unsigned char cval, fcr = 0;
2296 unsigned long flags;
2297 unsigned int baud, quot;
2298
2299 switch (termios->c_cflag & CSIZE) {
2300 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002301 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 break;
2303 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002304 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 break;
2306 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002307 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 break;
2309 default:
2310 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002311 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 break;
2313 }
2314
2315 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002316 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (termios->c_cflag & PARENB)
2318 cval |= UART_LCR_PARITY;
2319 if (!(termios->c_cflag & PARODD))
2320 cval |= UART_LCR_EPAR;
2321#ifdef CMSPAR
2322 if (termios->c_cflag & CMSPAR)
2323 cval |= UART_LCR_SPAR;
2324#endif
2325
2326 /*
2327 * Ask the core to calculate the divisor for us.
2328 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002329 baud = uart_get_baud_rate(port, termios, old,
2330 port->uartclk / 16 / 0xffff,
2331 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 quot = serial8250_get_divisor(port, baud);
2333
2334 /*
Russell King4ba5e352005-06-23 10:43:04 +01002335 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 */
Russell King4ba5e352005-06-23 10:43:04 +01002337 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002338 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
2340 if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) {
2341 if (baud < 2400)
2342 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1;
2343 else
2344 fcr = uart_config[up->port.type].fcr;
2345 }
2346
2347 /*
2348 * MCR-based auto flow control. When AFE is enabled, RTS will be
2349 * deasserted when the receive FIFO contains more characters than
2350 * the trigger, or the MCR RTS bit is cleared. In the case where
2351 * the remote UART is not using CTS auto flow control, we must
2352 * have sufficient FIFO entries for the latency of the remote
2353 * UART to respond. IOW, at least 32 bytes of FIFO.
2354 */
2355 if (up->capabilities & UART_CAP_AFE && up->port.fifosize >= 32) {
2356 up->mcr &= ~UART_MCR_AFE;
2357 if (termios->c_cflag & CRTSCTS)
2358 up->mcr |= UART_MCR_AFE;
2359 }
2360
2361 /*
2362 * Ok, we're now changing the port state. Do it with
2363 * interrupts disabled.
2364 */
2365 spin_lock_irqsave(&up->port.lock, flags);
2366
2367 /*
2368 * Update the per-port timeout.
2369 */
2370 uart_update_timeout(port, termios->c_cflag, baud);
2371
2372 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
2373 if (termios->c_iflag & INPCK)
2374 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
2375 if (termios->c_iflag & (BRKINT | PARMRK))
2376 up->port.read_status_mask |= UART_LSR_BI;
2377
2378 /*
2379 * Characteres to ignore
2380 */
2381 up->port.ignore_status_mask = 0;
2382 if (termios->c_iflag & IGNPAR)
2383 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
2384 if (termios->c_iflag & IGNBRK) {
2385 up->port.ignore_status_mask |= UART_LSR_BI;
2386 /*
2387 * If we're ignoring parity and break indicators,
2388 * ignore overruns too (for real raw support).
2389 */
2390 if (termios->c_iflag & IGNPAR)
2391 up->port.ignore_status_mask |= UART_LSR_OE;
2392 }
2393
2394 /*
2395 * ignore all characters if CREAD is not set
2396 */
2397 if ((termios->c_cflag & CREAD) == 0)
2398 up->port.ignore_status_mask |= UART_LSR_DR;
2399
2400 /*
2401 * CTS flow control flag and modem status interrupts
2402 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002403 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002404 if (!(up->bugs & UART_BUG_NOMSR) &&
2405 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 up->ier |= UART_IER_MSI;
2407 if (up->capabilities & UART_CAP_UUE)
2408 up->ier |= UART_IER_UUE | UART_IER_RTOIE;
2409
2410 serial_out(up, UART_IER, up->ier);
2411
2412 if (up->capabilities & UART_CAP_EFR) {
2413 unsigned char efr = 0;
2414 /*
2415 * TI16C752/Startech hardware flow control. FIXME:
2416 * - TI16C752 requires control thresholds to be set.
2417 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2418 */
2419 if (termios->c_cflag & CRTSCTS)
2420 efr |= UART_EFR_CTS;
2421
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -08002422 serial_outp(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 serial_outp(up, UART_EFR, efr);
2424 }
2425
Russell Kingf2eda272008-09-01 21:47:59 +01002426#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002427 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002428 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002429 if (baud == 115200) {
2430 quot = 1;
2431 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);
2432 } else
2433 serial_out(up, UART_OMAP_OSC_12M_SEL, 0);
2434 }
2435#endif
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 if (up->capabilities & UART_NATSEMI) {
2438 /* Switch to bank 2 not bank 1, to avoid resetting EXCR2 */
2439 serial_outp(up, UART_LCR, 0xe0);
2440 } else {
2441 serial_outp(up, UART_LCR, cval | UART_LCR_DLAB);/* set DLAB */
2442 }
2443
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002444 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 /*
2447 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2448 * is written without DLAB set, this mode will be disabled.
2449 */
2450 if (up->port.type == PORT_16750)
2451 serial_outp(up, UART_FCR, fcr);
2452
2453 serial_outp(up, UART_LCR, cval); /* reset DLAB */
2454 up->lcr = cval; /* Save LCR */
2455 if (up->port.type != PORT_16750) {
2456 if (fcr & UART_FCR_ENABLE_FIFO) {
2457 /* emulated UARTs (Lucent Venus 167x) need two steps */
2458 serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO);
2459 }
2460 serial_outp(up, UART_FCR, fcr); /* set fcr */
2461 }
2462 serial8250_set_mctrl(&up->port, up->port.mctrl);
2463 spin_unlock_irqrestore(&up->port.lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002464 /* Don't rewrite B0 */
2465 if (tty_termios_baud_rate(termios))
2466 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467}
Philippe Langlais235dae52010-07-29 17:13:57 +02002468EXPORT_SYMBOL(serial8250_do_set_termios);
2469
2470static void
2471serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2472 struct ktermios *old)
2473{
2474 if (port->set_termios)
2475 port->set_termios(port, termios, old);
2476 else
2477 serial8250_do_set_termios(port, termios, old);
2478}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002481serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002482{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002483 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002484 port->flags |= UPF_HARDPPS_CD;
2485 serial8250_enable_ms(port);
2486 } else
2487 port->flags &= ~UPF_HARDPPS_CD;
2488}
2489
Manuel Laussc161afe2010-09-25 15:13:45 +02002490
2491void serial8250_do_pm(struct uart_port *port, unsigned int state,
2492 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
Jamie Iles49d57412010-12-01 23:39:35 +00002494 struct uart_8250_port *p =
2495 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002498}
2499EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Manuel Laussc161afe2010-09-25 15:13:45 +02002501static void
2502serial8250_pm(struct uart_port *port, unsigned int state,
2503 unsigned int oldstate)
2504{
2505 if (port->pm)
2506 port->pm(port, state, oldstate);
2507 else
2508 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509}
2510
Russell Kingf2eda272008-09-01 21:47:59 +01002511static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2512{
2513 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002514 return 0x1000;
Russell Kingf2eda272008-09-01 21:47:59 +01002515#ifdef CONFIG_ARCH_OMAP
2516 if (is_omap_port(pt))
2517 return 0x16 << pt->port.regshift;
2518#endif
2519 return 8 << pt->port.regshift;
2520}
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522/*
2523 * Resource handling.
2524 */
2525static int serial8250_request_std_resource(struct uart_8250_port *up)
2526{
Russell Kingf2eda272008-09-01 21:47:59 +01002527 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 int ret = 0;
2529
2530 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002531 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002532 case UPIO_TSI:
2533 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002535 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00002536 case UPIO_DWAPB32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (!up->port.mapbase)
2538 break;
2539
2540 if (!request_mem_region(up->port.mapbase, size, "serial")) {
2541 ret = -EBUSY;
2542 break;
2543 }
2544
2545 if (up->port.flags & UPF_IOREMAP) {
Alan Cox6f441fe2008-05-01 04:34:59 -07002546 up->port.membase = ioremap_nocache(up->port.mapbase,
2547 size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (!up->port.membase) {
2549 release_mem_region(up->port.mapbase, size);
2550 ret = -ENOMEM;
2551 }
2552 }
2553 break;
2554
2555 case UPIO_HUB6:
2556 case UPIO_PORT:
2557 if (!request_region(up->port.iobase, size, "serial"))
2558 ret = -EBUSY;
2559 break;
2560 }
2561 return ret;
2562}
2563
2564static void serial8250_release_std_resource(struct uart_8250_port *up)
2565{
Russell Kingf2eda272008-09-01 21:47:59 +01002566 unsigned int size = serial8250_port_size(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
2568 switch (up->port.iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002569 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002570 case UPIO_TSI:
2571 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 case UPIO_MEM:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002573 case UPIO_DWAPB:
Jamie Ilesa3ae0fc2010-12-01 23:39:36 +00002574 case UPIO_DWAPB32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 if (!up->port.mapbase)
2576 break;
2577
2578 if (up->port.flags & UPF_IOREMAP) {
2579 iounmap(up->port.membase);
2580 up->port.membase = NULL;
2581 }
2582
2583 release_mem_region(up->port.mapbase, size);
2584 break;
2585
2586 case UPIO_HUB6:
2587 case UPIO_PORT:
2588 release_region(up->port.iobase, size);
2589 break;
2590 }
2591}
2592
2593static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2594{
2595 unsigned long start = UART_RSA_BASE << up->port.regshift;
2596 unsigned int size = 8 << up->port.regshift;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002597 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 case UPIO_HUB6:
2601 case UPIO_PORT:
2602 start += up->port.iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002603 if (request_region(start, size, "serial-rsa"))
2604 ret = 0;
2605 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 ret = -EBUSY;
2607 break;
2608 }
2609
2610 return ret;
2611}
2612
2613static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2614{
2615 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2616 unsigned int size = 8 << up->port.regshift;
2617
2618 switch (up->port.iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 case UPIO_HUB6:
2620 case UPIO_PORT:
2621 release_region(up->port.iobase + offset, size);
2622 break;
2623 }
2624}
2625
2626static void serial8250_release_port(struct uart_port *port)
2627{
Jamie Iles49d57412010-12-01 23:39:35 +00002628 struct uart_8250_port *up =
2629 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
2631 serial8250_release_std_resource(up);
2632 if (up->port.type == PORT_RSA)
2633 serial8250_release_rsa_resource(up);
2634}
2635
2636static int serial8250_request_port(struct uart_port *port)
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 ret = 0;
2641
2642 ret = serial8250_request_std_resource(up);
2643 if (ret == 0 && up->port.type == PORT_RSA) {
2644 ret = serial8250_request_rsa_resource(up);
2645 if (ret < 0)
2646 serial8250_release_std_resource(up);
2647 }
2648
2649 return ret;
2650}
2651
2652static void serial8250_config_port(struct uart_port *port, int flags)
2653{
Jamie Iles49d57412010-12-01 23:39:35 +00002654 struct uart_8250_port *up =
2655 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 int probeflags = PROBE_ANY;
2657 int ret;
2658
2659 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 * Find the region that we can probe for. This in turn
2661 * tells us whether we can probe for the type of port.
2662 */
2663 ret = serial8250_request_std_resource(up);
2664 if (ret < 0)
2665 return;
2666
2667 ret = serial8250_request_rsa_resource(up);
2668 if (ret < 0)
2669 probeflags &= ~PROBE_RSA;
2670
Alan Coxb8e7e402009-05-28 14:01:35 +01002671 if (up->port.iotype != up->cur_iotype)
2672 set_io_from_upio(port);
2673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 if (flags & UART_CONFIG_TYPE)
2675 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002676
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002677 /* if access method is AU, it is a 16550 with a quirk */
2678 if (up->port.type == PORT_16550A && up->port.iotype == UPIO_AU)
2679 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 if (up->port.type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
2682 autoconfig_irq(up);
2683
2684 if (up->port.type != PORT_RSA && probeflags & PROBE_RSA)
2685 serial8250_release_rsa_resource(up);
2686 if (up->port.type == PORT_UNKNOWN)
2687 serial8250_release_std_resource(up);
2688}
2689
2690static int
2691serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2692{
Yinghai Lua62c4132008-08-19 20:49:55 -07002693 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2695 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2696 ser->type == PORT_STARTECH)
2697 return -EINVAL;
2698 return 0;
2699}
2700
2701static const char *
2702serial8250_type(struct uart_port *port)
2703{
2704 int type = port->type;
2705
2706 if (type >= ARRAY_SIZE(uart_config))
2707 type = 0;
2708 return uart_config[type].name;
2709}
2710
2711static struct uart_ops serial8250_pops = {
2712 .tx_empty = serial8250_tx_empty,
2713 .set_mctrl = serial8250_set_mctrl,
2714 .get_mctrl = serial8250_get_mctrl,
2715 .stop_tx = serial8250_stop_tx,
2716 .start_tx = serial8250_start_tx,
2717 .stop_rx = serial8250_stop_rx,
2718 .enable_ms = serial8250_enable_ms,
2719 .break_ctl = serial8250_break_ctl,
2720 .startup = serial8250_startup,
2721 .shutdown = serial8250_shutdown,
2722 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002723 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 .pm = serial8250_pm,
2725 .type = serial8250_type,
2726 .release_port = serial8250_release_port,
2727 .request_port = serial8250_request_port,
2728 .config_port = serial8250_config_port,
2729 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002730#ifdef CONFIG_CONSOLE_POLL
2731 .poll_get_char = serial8250_get_poll_char,
2732 .poll_put_char = serial8250_put_poll_char,
2733#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734};
2735
2736static struct uart_8250_port serial8250_ports[UART_NR];
2737
Alan Coxaf7f3742010-10-18 11:38:02 -07002738static void (*serial8250_isa_config)(int port, struct uart_port *up,
2739 unsigned short *capabilities);
2740
2741void serial8250_set_isa_configurator(
2742 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2743{
2744 serial8250_isa_config = v;
2745}
2746EXPORT_SYMBOL(serial8250_set_isa_configurator);
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748static void __init serial8250_isa_init_ports(void)
2749{
2750 struct uart_8250_port *up;
2751 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002752 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 if (!first)
2755 return;
2756 first = 0;
2757
Dave Jonesa61c2d72006-01-07 23:18:19 +00002758 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 struct uart_8250_port *up = &serial8250_ports[i];
2760
2761 up->port.line = i;
2762 spin_lock_init(&up->port.lock);
2763
2764 init_timer(&up->timer);
2765 up->timer.function = serial8250_timeout;
2766
2767 /*
2768 * ALPHA_KLUDGE_MCR needs to be killed.
2769 */
2770 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2771 up->mcr_force = ALPHA_KLUDGE_MCR;
2772
2773 up->port.ops = &serial8250_pops;
2774 }
2775
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002776 if (share_irqs)
2777 irqflag = IRQF_SHARED;
2778
Russell King44454bc2005-06-30 22:41:22 +01002779 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002780 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 i++, up++) {
2782 up->port.iobase = old_serial_port[i].port;
2783 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002784 up->port.irqflags = old_serial_port[i].irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 up->port.uartclk = old_serial_port[i].baud_base * 16;
2786 up->port.flags = old_serial_port[i].flags;
2787 up->port.hub6 = old_serial_port[i].hub6;
2788 up->port.membase = old_serial_port[i].iomem_base;
2789 up->port.iotype = old_serial_port[i].io_type;
2790 up->port.regshift = old_serial_port[i].iomem_reg_shift;
David Daney7d6a07d2009-01-02 13:49:47 +00002791 set_io_from_upio(&up->port);
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002792 up->port.irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002793 if (serial8250_isa_config != NULL)
2794 serial8250_isa_config(i, &up->port, &up->capabilities);
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 }
2797}
2798
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002799static void
2800serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2801{
2802 up->port.type = type;
2803 up->port.fifosize = uart_config[type].fifo_size;
2804 up->capabilities = uart_config[type].flags;
2805 up->tx_loadsz = uart_config[type].tx_loadsz;
2806}
2807
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808static void __init
2809serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2810{
2811 int i;
2812
Alan Coxb8e7e402009-05-28 14:01:35 +01002813 for (i = 0; i < nr_uarts; i++) {
2814 struct uart_8250_port *up = &serial8250_ports[i];
2815 up->cur_iotype = 0xFF;
2816 }
2817
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 serial8250_isa_init_ports();
2819
Dave Jonesa61c2d72006-01-07 23:18:19 +00002820 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 struct uart_8250_port *up = &serial8250_ports[i];
2822
2823 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002824
2825 if (up->port.flags & UPF_FIXED_TYPE)
2826 serial8250_init_fixed_type_port(up, up->port.type);
2827
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 uart_add_one_port(drv, &up->port);
2829 }
2830}
2831
2832#ifdef CONFIG_SERIAL_8250_CONSOLE
2833
Russell Kingd3587882006-03-20 20:00:09 +00002834static void serial8250_console_putchar(struct uart_port *port, int ch)
2835{
Jamie Iles49d57412010-12-01 23:39:35 +00002836 struct uart_8250_port *up =
2837 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002838
2839 wait_for_xmitr(up, UART_LSR_THRE);
2840 serial_out(up, UART_TX, ch);
2841}
2842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843/*
2844 * Print a string to the serial port trying not to disturb
2845 * any possible real use of the port...
2846 *
2847 * The console_lock must be held when we get here.
2848 */
2849static void
2850serial8250_console_write(struct console *co, const char *s, unsigned int count)
2851{
2852 struct uart_8250_port *up = &serial8250_ports[co->index];
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002853 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002855 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
Andrew Morton78512ec2005-11-07 00:59:13 -08002857 touch_nmi_watchdog();
2858
Andrew Morton68aa2c02006-06-30 02:29:59 -07002859 local_irq_save(flags);
2860 if (up->port.sysrq) {
2861 /* serial8250_handle_port() already took the lock */
2862 locked = 0;
2863 } else if (oops_in_progress) {
2864 locked = spin_trylock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002865 } else
Andrew Morton68aa2c02006-06-30 02:29:59 -07002866 spin_lock(&up->port.lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002869 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 */
2871 ier = serial_in(up, UART_IER);
2872
2873 if (up->capabilities & UART_CAP_UUE)
2874 serial_out(up, UART_IER, UART_IER_UUE);
2875 else
2876 serial_out(up, UART_IER, 0);
2877
Russell Kingd3587882006-03-20 20:00:09 +00002878 uart_console_write(&up->port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
2880 /*
2881 * Finally, wait for transmitter to become empty
2882 * and restore the IER
2883 */
Alan Coxf91a3712006-01-21 14:59:12 +00002884 wait_for_xmitr(up, BOTH_EMPTY);
Russell Kinga88d75b2006-04-30 11:30:15 +01002885 serial_out(up, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002886
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002887 /*
2888 * The receive handling will happen properly because the
2889 * receive ready bit will still be set; it is not cleared
2890 * on read. However, modem control will not, we must
2891 * call it if we have saved something in the saved flags
2892 * while processing with interrupts off.
2893 */
2894 if (up->msr_saved_flags)
2895 check_modem_status(up);
2896
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002897 if (locked)
Andrew Morton68aa2c02006-06-30 02:29:59 -07002898 spin_unlock(&up->port.lock);
2899 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900}
2901
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002902static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903{
2904 struct uart_port *port;
2905 int baud = 9600;
2906 int bits = 8;
2907 int parity = 'n';
2908 int flow = 'n';
2909
2910 /*
2911 * Check whether an invalid uart number has been specified, and
2912 * if so, search for the first available port that does have
2913 * console support.
2914 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002915 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 co->index = 0;
2917 port = &serial8250_ports[co->index].port;
2918 if (!port->iobase && !port->membase)
2919 return -ENODEV;
2920
2921 if (options)
2922 uart_parse_options(options, &baud, &parity, &bits, &flow);
2923
2924 return uart_set_options(port, co, baud, parity, bits, flow);
2925}
2926
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002927static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002928{
2929 return serial8250_find_port_for_earlycon();
2930}
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932static struct console serial8250_console = {
2933 .name = "ttyS",
2934 .write = serial8250_console_write,
2935 .device = uart_console_device,
2936 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002937 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002938 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 .index = -1,
2940 .data = &serial8250_reg,
2941};
2942
2943static int __init serial8250_console_init(void)
2944{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002945 if (nr_uarts > UART_NR)
2946 nr_uarts = UART_NR;
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 serial8250_isa_init_ports();
2949 register_console(&serial8250_console);
2950 return 0;
2951}
2952console_initcall(serial8250_console_init);
2953
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002954int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955{
2956 int line;
2957 struct uart_port *port;
2958
Dave Jonesa61c2d72006-01-07 23:18:19 +00002959 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002961 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 return line;
2963 }
2964 return -ENODEV;
2965}
2966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967#define SERIAL8250_CONSOLE &serial8250_console
2968#else
2969#define SERIAL8250_CONSOLE NULL
2970#endif
2971
2972static struct uart_driver serial8250_reg = {
2973 .owner = THIS_MODULE,
2974 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 .dev_name = "ttyS",
2976 .major = TTY_MAJOR,
2977 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 .cons = SERIAL8250_CONSOLE,
2979};
2980
Russell Kingd856c662006-02-23 10:22:13 +00002981/*
2982 * early_serial_setup - early registration for 8250 ports
2983 *
2984 * Setup an 8250 port structure prior to console initialisation. Use
2985 * after console initialisation will cause undefined behaviour.
2986 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987int __init early_serial_setup(struct uart_port *port)
2988{
David Daneyb4304282009-01-02 13:49:41 +00002989 struct uart_port *p;
2990
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (port->line >= ARRAY_SIZE(serial8250_ports))
2992 return -ENODEV;
2993
2994 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00002995 p = &serial8250_ports[port->line].port;
2996 p->iobase = port->iobase;
2997 p->membase = port->membase;
2998 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002999 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00003000 p->uartclk = port->uartclk;
3001 p->fifosize = port->fifosize;
3002 p->regshift = port->regshift;
3003 p->iotype = port->iotype;
3004 p->flags = port->flags;
3005 p->mapbase = port->mapbase;
3006 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01003007 p->type = port->type;
3008 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00003009
3010 set_io_from_upio(p);
3011 if (port->serial_in)
3012 p->serial_in = port->serial_in;
3013 if (port->serial_out)
3014 p->serial_out = port->serial_out;
3015
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 return 0;
3017}
3018
3019/**
3020 * serial8250_suspend_port - suspend one serial port
3021 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 *
3023 * Suspend one serial port.
3024 */
3025void serial8250_suspend_port(int line)
3026{
3027 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
3028}
3029
3030/**
3031 * serial8250_resume_port - resume one serial port
3032 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 *
3034 * Resume one serial port.
3035 */
3036void serial8250_resume_port(int line)
3037{
David Woodhouseb5b82df2007-05-17 14:27:39 +08003038 struct uart_8250_port *up = &serial8250_ports[line];
3039
3040 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08003041 /* Ensure it's still in high speed mode */
3042 serial_outp(up, UART_LCR, 0xE0);
3043
Yin Kangkai0d0389e2011-02-09 11:35:18 +08003044 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08003045
3046 serial_outp(up, UART_LCR, 0);
Yin Kangkai95926d22011-02-09 11:34:20 +08003047 up->port.uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08003048 }
3049 uart_resume_port(&serial8250_reg, &up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050}
3051
3052/*
3053 * Register a set of serial devices attached to a platform device. The
3054 * list is terminated with a zero flags entry, which means we expect
3055 * all entries to have at least UPF_BOOT_AUTOCONF set.
3056 */
Russell King3ae5eae2005-11-09 22:32:44 +00003057static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
Russell King3ae5eae2005-11-09 22:32:44 +00003059 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 struct uart_port port;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003061 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
3063 memset(&port, 0, sizeof(struct uart_port));
3064
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003065 if (share_irqs)
3066 irqflag = IRQF_SHARED;
3067
Russell Kingec9f47c2005-06-27 11:12:54 +01003068 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08003069 port.iobase = p->iobase;
3070 port.membase = p->membase;
3071 port.irq = p->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003072 port.irqflags = p->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003073 port.uartclk = p->uartclk;
3074 port.regshift = p->regshift;
3075 port.iotype = p->iotype;
3076 port.flags = p->flags;
3077 port.mapbase = p->mapbase;
3078 port.hub6 = p->hub6;
3079 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00003080 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00003081 port.serial_in = p->serial_in;
3082 port.serial_out = p->serial_out;
Philippe Langlais235dae52010-07-29 17:13:57 +02003083 port.set_termios = p->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003084 port.pm = p->pm;
Will Newton74a197412008-02-04 22:27:50 -08003085 port.dev = &dev->dev;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003086 port.irqflags |= irqflag;
Russell Kingec9f47c2005-06-27 11:12:54 +01003087 ret = serial8250_register_port(&port);
3088 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003089 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003090 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3091 p->iobase, (unsigned long long)p->mapbase,
3092 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 }
3095 return 0;
3096}
3097
3098/*
3099 * Remove serial ports registered against a platform device.
3100 */
Russell King3ae5eae2005-11-09 22:32:44 +00003101static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
3103 int i;
3104
Dave Jonesa61c2d72006-01-07 23:18:19 +00003105 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 struct uart_8250_port *up = &serial8250_ports[i];
3107
Russell King3ae5eae2005-11-09 22:32:44 +00003108 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 serial8250_unregister_port(i);
3110 }
3111 return 0;
3112}
3113
Russell King3ae5eae2005-11-09 22:32:44 +00003114static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115{
3116 int i;
3117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 for (i = 0; i < UART_NR; i++) {
3119 struct uart_8250_port *up = &serial8250_ports[i];
3120
Russell King3ae5eae2005-11-09 22:32:44 +00003121 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 uart_suspend_port(&serial8250_reg, &up->port);
3123 }
3124
3125 return 0;
3126}
3127
Russell King3ae5eae2005-11-09 22:32:44 +00003128static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129{
3130 int i;
3131
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 for (i = 0; i < UART_NR; i++) {
3133 struct uart_8250_port *up = &serial8250_ports[i];
3134
Russell King3ae5eae2005-11-09 22:32:44 +00003135 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003136 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 }
3138
3139 return 0;
3140}
3141
Russell King3ae5eae2005-11-09 22:32:44 +00003142static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 .probe = serial8250_probe,
3144 .remove = __devexit_p(serial8250_remove),
3145 .suspend = serial8250_suspend,
3146 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003147 .driver = {
3148 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003149 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003150 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151};
3152
3153/*
3154 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3155 * in the table in include/asm/serial.h
3156 */
3157static struct platform_device *serial8250_isa_devs;
3158
3159/*
3160 * serial8250_register_port and serial8250_unregister_port allows for
3161 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3162 * modems and PCI multiport cards.
3163 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003164static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3167{
3168 int i;
3169
3170 /*
3171 * First, find a port entry which matches.
3172 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003173 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 if (uart_match_port(&serial8250_ports[i].port, port))
3175 return &serial8250_ports[i];
3176
3177 /*
3178 * We didn't find a matching entry, so look for the first
3179 * free entry. We look for one which hasn't been previously
3180 * used (indicated by zero iobase).
3181 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003182 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3184 serial8250_ports[i].port.iobase == 0)
3185 return &serial8250_ports[i];
3186
3187 /*
3188 * That also failed. Last resort is to find any entry which
3189 * doesn't have a real port associated with it.
3190 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003191 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3193 return &serial8250_ports[i];
3194
3195 return NULL;
3196}
3197
3198/**
3199 * serial8250_register_port - register a serial port
3200 * @port: serial port template
3201 *
3202 * Configure the serial port specified by the request. If the
3203 * port exists and is in use, it is hung up and unregistered
3204 * first.
3205 *
3206 * The port is then probed and if necessary the IRQ is autodetected
3207 * If this fails an error is returned.
3208 *
3209 * On success the port is ready to use and the line number is returned.
3210 */
3211int serial8250_register_port(struct uart_port *port)
3212{
3213 struct uart_8250_port *uart;
3214 int ret = -ENOSPC;
3215
3216 if (port->uartclk == 0)
3217 return -EINVAL;
3218
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003219 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221 uart = serial8250_find_match_or_unused(port);
3222 if (uart) {
3223 uart_remove_one_port(&serial8250_reg, &uart->port);
3224
Will Newton74a197412008-02-04 22:27:50 -08003225 uart->port.iobase = port->iobase;
3226 uart->port.membase = port->membase;
3227 uart->port.irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003228 uart->port.irqflags = port->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003229 uart->port.uartclk = port->uartclk;
3230 uart->port.fifosize = port->fifosize;
3231 uart->port.regshift = port->regshift;
3232 uart->port.iotype = port->iotype;
3233 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3234 uart->port.mapbase = port->mapbase;
3235 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 if (port->dev)
3237 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003238
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08003239 if (port->flags & UPF_FIXED_TYPE)
3240 serial8250_init_fixed_type_port(uart, port->type);
David Daney8e23fcc2009-01-02 13:49:54 +00003241
David Daney7d6a07d2009-01-02 13:49:47 +00003242 set_io_from_upio(&uart->port);
3243 /* Possibly override default I/O functions. */
3244 if (port->serial_in)
3245 uart->port.serial_in = port->serial_in;
3246 if (port->serial_out)
3247 uart->port.serial_out = port->serial_out;
Philippe Langlais235dae52010-07-29 17:13:57 +02003248 /* Possibly override set_termios call */
3249 if (port->set_termios)
3250 uart->port.set_termios = port->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003251 if (port->pm)
3252 uart->port.pm = port->pm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Alan Coxaf7f3742010-10-18 11:38:02 -07003254 if (serial8250_isa_config != NULL)
3255 serial8250_isa_config(0, &uart->port,
3256 &uart->capabilities);
3257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3259 if (ret == 0)
3260 ret = uart->port.line;
3261 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003262 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
3264 return ret;
3265}
3266EXPORT_SYMBOL(serial8250_register_port);
3267
3268/**
3269 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3270 * @line: serial line number
3271 *
3272 * Remove one serial port. This may not be called from interrupt
3273 * context. We hand the port back to the our control.
3274 */
3275void serial8250_unregister_port(int line)
3276{
3277 struct uart_8250_port *uart = &serial8250_ports[line];
3278
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003279 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 uart_remove_one_port(&serial8250_reg, &uart->port);
3281 if (serial8250_isa_devs) {
3282 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3283 uart->port.type = PORT_UNKNOWN;
3284 uart->port.dev = &serial8250_isa_devs->dev;
3285 uart_add_one_port(&serial8250_reg, &uart->port);
3286 } else {
3287 uart->port.dev = NULL;
3288 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003289 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291EXPORT_SYMBOL(serial8250_unregister_port);
3292
3293static int __init serial8250_init(void)
3294{
Alan Cox25db8ad2008-08-19 20:49:40 -07003295 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Dave Jonesa61c2d72006-01-07 23:18:19 +00003297 if (nr_uarts > UART_NR)
3298 nr_uarts = UART_NR;
3299
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003300 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003301 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 share_irqs ? "en" : "dis");
3303
David Millerb70ac772008-10-13 10:36:31 +01003304#ifdef CONFIG_SPARC
3305 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3306#else
3307 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003309#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 if (ret)
3311 goto out;
3312
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003313 serial8250_isa_devs = platform_device_alloc("serial8250",
3314 PLAT8250_DEV_LEGACY);
3315 if (!serial8250_isa_devs) {
3316 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003317 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 }
3319
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003320 ret = platform_device_add(serial8250_isa_devs);
3321 if (ret)
3322 goto put_dev;
3323
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3325
Russell Kingbc965a72006-01-18 09:54:29 +00003326 ret = platform_driver_register(&serial8250_isa_driver);
3327 if (ret == 0)
3328 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
Russell Kingbc965a72006-01-18 09:54:29 +00003330 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003331put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003332 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003333unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003334#ifdef CONFIG_SPARC
3335 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3336#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003338#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003339out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 return ret;
3341}
3342
3343static void __exit serial8250_exit(void)
3344{
3345 struct platform_device *isa_dev = serial8250_isa_devs;
3346
3347 /*
3348 * This tells serial8250_unregister_port() not to re-register
3349 * the ports (thereby making serial8250_isa_driver permanently
3350 * in use.)
3351 */
3352 serial8250_isa_devs = NULL;
3353
Russell King3ae5eae2005-11-09 22:32:44 +00003354 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 platform_device_unregister(isa_dev);
3356
David Millerb70ac772008-10-13 10:36:31 +01003357#ifdef CONFIG_SPARC
3358 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3359#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003361#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362}
3363
3364module_init(serial8250_init);
3365module_exit(serial8250_exit);
3366
3367EXPORT_SYMBOL(serial8250_suspend_port);
3368EXPORT_SYMBOL(serial8250_resume_port);
3369
3370MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003371MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
3373module_param(share_irqs, uint, 0644);
3374MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3375 " (unsafe)");
3376
Dave Jonesa61c2d72006-01-07 23:18:19 +00003377module_param(nr_uarts, uint, 0644);
3378MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3379
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003380module_param(skip_txen_test, uint, 0644);
3381MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3382
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383#ifdef CONFIG_SERIAL_8250_RSA
3384module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3385MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3386#endif
3387MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);