blob: cc398b1bcebf0e617a2b07746ee660dc5677ab1b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for 8250/16550-type serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright (C) 2001 Russell King.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * A note about mapbase / membase
14 *
15 * mapbase is the physical address of the IO port.
16 * membase is an 'ioremapped' cookie.
17 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#if defined(CONFIG_SERIAL_8250_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
20#define SUPPORT_SYSRQ
21#endif
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/ioport.h>
26#include <linux/init.h>
27#include <linux/console.h>
28#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010030#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/tty.h>
Daniel Drakecd3ecad2010-10-20 16:00:48 -070032#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/tty_flip.h>
34#include <linux/serial_reg.h>
35#include <linux/serial_core.h>
36#include <linux/serial.h>
37#include <linux/serial_8250.h>
Andrew Morton78512ec2005-11-07 00:59:13 -080038#include <linux/nmi.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000039#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Paul Gortmaker68163832012-02-09 18:48:19 -050041#ifdef CONFIG_SPARC
42#include <linux/sunserialcore.h>
43#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/io.h>
46#include <asm/irq.h>
47
48#include "8250.h"
49
50/*
51 * Configuration:
Thomas Gleixner40663cc2006-07-01 19:29:43 -070052 * share_irqs - whether we pass IRQF_SHARED to request_irq(). This option
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * is unsafe when used on edge-triggered interrupts.
54 */
Adrian Bunk408b6642005-05-01 08:59:29 -070055static unsigned int share_irqs = SERIAL8250_SHARE_IRQS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Dave Jonesa61c2d72006-01-07 23:18:19 +000057static unsigned int nr_uarts = CONFIG_SERIAL_8250_RUNTIME_UARTS;
58
David S. Miller84408382008-10-13 10:45:26 +010059static struct uart_driver serial8250_reg;
60
61static int serial_index(struct uart_port *port)
62{
63 return (serial8250_reg.minor - 64) + port->line;
64}
65
Chuck Ebbertd41a4b52009-10-01 15:44:26 -070066static unsigned int skip_txen_test; /* force skip of txen test at init time */
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
69 * Debugging.
70 */
71#if 0
72#define DEBUG_AUTOCONF(fmt...) printk(fmt)
73#else
74#define DEBUG_AUTOCONF(fmt...) do { } while (0)
75#endif
76
77#if 0
78#define DEBUG_INTR(fmt...) printk(fmt)
79#else
80#define DEBUG_INTR(fmt...) do { } while (0)
81#endif
82
Jiri Slabye7328ae2011-06-05 22:51:49 +020083#define PASS_LIMIT 512
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Dick Hollenbeckbca47612009-12-09 12:31:34 -080085#define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE)
86
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#ifdef CONFIG_SERIAL_8250_DETECT_IRQ
89#define CONFIG_SERIAL_DETECT_IRQ 1
90#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#ifdef CONFIG_SERIAL_8250_MANY_PORTS
92#define CONFIG_SERIAL_MANY_PORTS 1
93#endif
94
95/*
96 * HUB6 is always on. This will be removed once the header
97 * files have been cleaned.
98 */
99#define CONFIG_HUB6 1
100
Bryan Wua4ed1e42008-05-31 16:10:04 +0800101#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*
103 * SERIAL_PORT_DFNS tells us about built-in ports that have no
104 * standard enumeration mechanism. Platforms that can find all
105 * serial ports via mechanisms like ACPI or PCI need not supply it.
106 */
107#ifndef SERIAL_PORT_DFNS
108#define SERIAL_PORT_DFNS
109#endif
110
Arjan van de Vencb3592b2005-11-28 21:04:11 +0000111static const struct old_serial_port old_serial_port[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 SERIAL_PORT_DFNS /* defined in asm/serial.h */
113};
114
Russell King026d02a2005-06-29 18:45:19 +0100115#define UART_NR CONFIG_SERIAL_8250_NR_UARTS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117#ifdef CONFIG_SERIAL_8250_RSA
118
119#define PORT_RSA_MAX 4
120static unsigned long probe_rsa[PORT_RSA_MAX];
121static unsigned int probe_rsa_count;
122#endif /* CONFIG_SERIAL_8250_RSA */
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124struct irq_info {
Alan Cox25db8ad2008-08-19 20:49:40 -0700125 struct hlist_node node;
126 int irq;
127 spinlock_t lock; /* Protects list not the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct list_head *head;
129};
130
Alan Cox25db8ad2008-08-19 20:49:40 -0700131#define NR_IRQ_HASH 32 /* Can be adjusted later */
132static struct hlist_head irq_lists[NR_IRQ_HASH];
133static DEFINE_MUTEX(hash_mutex); /* Used to walk the hash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135/*
136 * Here we define the default xmit fifo size used for each type of UART.
137 */
138static const struct serial8250_config uart_config[] = {
139 [PORT_UNKNOWN] = {
140 .name = "unknown",
141 .fifo_size = 1,
142 .tx_loadsz = 1,
143 },
144 [PORT_8250] = {
145 .name = "8250",
146 .fifo_size = 1,
147 .tx_loadsz = 1,
148 },
149 [PORT_16450] = {
150 .name = "16450",
151 .fifo_size = 1,
152 .tx_loadsz = 1,
153 },
154 [PORT_16550] = {
155 .name = "16550",
156 .fifo_size = 1,
157 .tx_loadsz = 1,
158 },
159 [PORT_16550A] = {
160 .name = "16550A",
161 .fifo_size = 16,
162 .tx_loadsz = 16,
163 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
164 .flags = UART_CAP_FIFO,
165 },
166 [PORT_CIRRUS] = {
167 .name = "Cirrus",
168 .fifo_size = 1,
169 .tx_loadsz = 1,
170 },
171 [PORT_16650] = {
172 .name = "ST16650",
173 .fifo_size = 1,
174 .tx_loadsz = 1,
175 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
176 },
177 [PORT_16650V2] = {
178 .name = "ST16650V2",
179 .fifo_size = 32,
180 .tx_loadsz = 16,
181 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
182 UART_FCR_T_TRIG_00,
183 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
184 },
185 [PORT_16750] = {
186 .name = "TI16750",
187 .fifo_size = 64,
188 .tx_loadsz = 64,
189 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 |
190 UART_FCR7_64BYTE,
191 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE,
192 },
193 [PORT_STARTECH] = {
194 .name = "Startech",
195 .fifo_size = 1,
196 .tx_loadsz = 1,
197 },
198 [PORT_16C950] = {
199 .name = "16C950/954",
200 .fifo_size = 128,
201 .tx_loadsz = 128,
202 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Pavel Machekd0694e22011-01-09 08:38:48 +0100203 /* UART_CAP_EFR breaks billionon CF bluetooth card. */
204 .flags = UART_CAP_FIFO | UART_CAP_SLEEP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 },
206 [PORT_16654] = {
207 .name = "ST16654",
208 .fifo_size = 64,
209 .tx_loadsz = 32,
210 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
211 UART_FCR_T_TRIG_10,
212 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
213 },
214 [PORT_16850] = {
215 .name = "XR16850",
216 .fifo_size = 128,
217 .tx_loadsz = 128,
218 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
219 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP,
220 },
221 [PORT_RSA] = {
222 .name = "RSA",
223 .fifo_size = 2048,
224 .tx_loadsz = 2048,
225 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11,
226 .flags = UART_CAP_FIFO,
227 },
228 [PORT_NS16550A] = {
229 .name = "NS16550A",
230 .fifo_size = 16,
231 .tx_loadsz = 16,
232 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
233 .flags = UART_CAP_FIFO | UART_NATSEMI,
234 },
235 [PORT_XSCALE] = {
236 .name = "XScale",
237 .fifo_size = 32,
238 .tx_loadsz = 32,
239 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
Stephen Warren4539c242011-05-17 16:12:36 -0600240 .flags = UART_CAP_FIFO | UART_CAP_UUE | UART_CAP_RTOIE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 },
Thomas Koellerbd71c182007-05-06 14:48:47 -0700242 [PORT_RM9000] = {
243 .name = "RM9000",
244 .fifo_size = 16,
245 .tx_loadsz = 16,
246 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
247 .flags = UART_CAP_FIFO,
248 },
David Daney6b06f192009-01-02 13:50:00 +0000249 [PORT_OCTEON] = {
250 .name = "OCTEON",
251 .fifo_size = 64,
252 .tx_loadsz = 64,
253 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
254 .flags = UART_CAP_FIFO,
255 },
Florian Fainelli08e09922009-06-11 13:21:24 +0100256 [PORT_AR7] = {
257 .name = "AR7",
258 .fifo_size = 16,
259 .tx_loadsz = 16,
260 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00,
261 .flags = UART_CAP_FIFO | UART_CAP_AFE,
262 },
Philippe Langlais235dae52010-07-29 17:13:57 +0200263 [PORT_U6_16550A] = {
264 .name = "U6_16550A",
265 .fifo_size = 64,
266 .tx_loadsz = 64,
267 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
268 .flags = UART_CAP_FIFO | UART_CAP_AFE,
269 },
Stephen Warren4539c242011-05-17 16:12:36 -0600270 [PORT_TEGRA] = {
271 .name = "Tegra",
272 .fifo_size = 32,
273 .tx_loadsz = 8,
274 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 |
275 UART_FCR_T_TRIG_01,
276 .flags = UART_CAP_FIFO | UART_CAP_RTOIE,
277 },
Søren Holm06315342011-09-02 22:55:37 +0200278 [PORT_XR17D15X] = {
279 .name = "XR17D15X",
280 .fifo_size = 64,
281 .tx_loadsz = 64,
282 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10,
283 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR,
284 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
Magnus Dammcc419fa02012-05-02 21:46:51 +0900287/* Uart divisor latch read */
288static int default_dl_read(struct uart_8250_port *up)
289{
290 return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8;
291}
292
293/* Uart divisor latch write */
294static void default_dl_write(struct uart_8250_port *up, int value)
295{
296 serial_out(up, UART_DLL, value & 0xff);
297 serial_out(up, UART_DLM, value >> 8 & 0xff);
298}
299
Magnus Dammcc419fa02012-05-02 21:46:51 +0900300static int _serial_dl_read(struct uart_8250_port *up)
301{
302 return default_dl_read(up);
303}
304
305static void _serial_dl_write(struct uart_8250_port *up, int value)
306{
307 default_dl_write(up, value);
308}
Magnus Dammcc419fa02012-05-02 21:46:51 +0900309
Magnus Damm6b416032012-05-02 21:47:00 +0900310#ifdef CONFIG_MIPS_ALCHEMY
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000311
312/* Au1x00 UART hardware has a weird register layout */
313static const u8 au_io_in_map[] = {
314 [UART_RX] = 0,
315 [UART_IER] = 2,
316 [UART_IIR] = 3,
317 [UART_LCR] = 5,
318 [UART_MCR] = 6,
319 [UART_LSR] = 7,
320 [UART_MSR] = 8,
321};
322
323static const u8 au_io_out_map[] = {
324 [UART_TX] = 1,
325 [UART_IER] = 2,
326 [UART_FCR] = 4,
327 [UART_LCR] = 5,
328 [UART_MCR] = 6,
329};
330
Magnus Damm6b416032012-05-02 21:47:00 +0900331static unsigned int au_serial_in(struct uart_port *p, int offset)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000332{
Magnus Damm6b416032012-05-02 21:47:00 +0900333 offset = au_io_in_map[offset] << p->regshift;
334 return __raw_readl(p->membase + offset);
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000335}
336
Magnus Damm6b416032012-05-02 21:47:00 +0900337static void au_serial_out(struct uart_port *p, int offset, int value)
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000338{
Magnus Damm6b416032012-05-02 21:47:00 +0900339 offset = au_io_out_map[offset] << p->regshift;
340 __raw_writel(value, p->membase + offset);
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000341}
342
Magnus Damm6b416032012-05-02 21:47:00 +0900343/* Au1x00 haven't got a standard divisor latch */
344static int au_serial_dl_read(struct uart_8250_port *up)
345{
346 return __raw_readl(up->port.membase + 0x28);
347}
348
349static void au_serial_dl_write(struct uart_8250_port *up, int value)
350{
351 __raw_writel(value, up->port.membase + 0x28);
352}
353
354#endif
355
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900356#ifdef CONFIG_SERIAL_8250_RM9K
Thomas Koellerbd71c182007-05-06 14:48:47 -0700357
358static const u8
359 regmap_in[8] = {
360 [UART_RX] = 0x00,
361 [UART_IER] = 0x0c,
362 [UART_IIR] = 0x14,
363 [UART_LCR] = 0x1c,
364 [UART_MCR] = 0x20,
365 [UART_LSR] = 0x24,
366 [UART_MSR] = 0x28,
367 [UART_SCR] = 0x2c
368 },
369 regmap_out[8] = {
370 [UART_TX] = 0x04,
371 [UART_IER] = 0x0c,
372 [UART_FCR] = 0x18,
373 [UART_LCR] = 0x1c,
374 [UART_MCR] = 0x20,
375 [UART_LSR] = 0x24,
376 [UART_MSR] = 0x28,
377 [UART_SCR] = 0x2c
378 };
379
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900380static unsigned int rm9k_serial_in(struct uart_port *p, int offset)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700381{
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900382 offset = regmap_in[offset] << p->regshift;
383 return readl(p->membase + offset);
Thomas Koellerbd71c182007-05-06 14:48:47 -0700384}
385
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900386static void rm9k_serial_out(struct uart_port *p, int offset, int value)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700387{
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900388 offset = regmap_out[offset] << p->regshift;
389 writel(value, p->membase + offset);
Thomas Koellerbd71c182007-05-06 14:48:47 -0700390}
391
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900392static int rm9k_serial_dl_read(struct uart_8250_port *up)
393{
394 return ((__raw_readl(up->port.membase + 0x10) << 8) |
395 (__raw_readl(up->port.membase + 0x08) & 0xff)) & 0xffff;
396}
397
398static void rm9k_serial_dl_write(struct uart_8250_port *up, int value)
399{
400 __raw_writel(value, up->port.membase + 0x08);
401 __raw_writel(value >> 8, up->port.membase + 0x10);
402}
403
404#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000405
406/* sane hardware needs no mapping */
407#define map_8250_in_reg(up, offset) (offset)
408#define map_8250_out_reg(up, offset) (offset)
409
David Daney7d6a07d2009-01-02 13:49:47 +0000410static unsigned int hub6_serial_in(struct uart_port *p, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
David Daney7d6a07d2009-01-02 13:49:47 +0000412 offset = map_8250_in_reg(p, offset) << p->regshift;
413 outb(p->hub6 - 1 + offset, p->iobase);
414 return inb(p->iobase + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
David Daney7d6a07d2009-01-02 13:49:47 +0000417static void hub6_serial_out(struct uart_port *p, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
David Daney7d6a07d2009-01-02 13:49:47 +0000419 offset = map_8250_out_reg(p, offset) << p->regshift;
420 outb(p->hub6 - 1 + offset, p->iobase);
421 outb(value, p->iobase + 1);
422}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
David Daney7d6a07d2009-01-02 13:49:47 +0000424static unsigned int mem_serial_in(struct uart_port *p, int offset)
425{
426 offset = map_8250_in_reg(p, offset) << p->regshift;
427 return readb(p->membase + offset);
428}
429
430static void mem_serial_out(struct uart_port *p, int offset, int value)
431{
432 offset = map_8250_out_reg(p, offset) << p->regshift;
433 writeb(value, p->membase + offset);
434}
435
436static void mem32_serial_out(struct uart_port *p, int offset, int value)
437{
438 offset = map_8250_out_reg(p, offset) << p->regshift;
439 writel(value, p->membase + offset);
440}
441
442static unsigned int mem32_serial_in(struct uart_port *p, int offset)
443{
444 offset = map_8250_in_reg(p, offset) << p->regshift;
445 return readl(p->membase + offset);
446}
447
David Daney7d6a07d2009-01-02 13:49:47 +0000448static unsigned int io_serial_in(struct uart_port *p, int offset)
449{
450 offset = map_8250_in_reg(p, offset) << p->regshift;
451 return inb(p->iobase + offset);
452}
453
454static void io_serial_out(struct uart_port *p, int offset, int value)
455{
456 offset = map_8250_out_reg(p, offset) << p->regshift;
457 outb(value, p->iobase + offset);
458}
459
Jamie Iles583d28e2011-08-15 10:17:52 +0100460static int serial8250_default_handle_irq(struct uart_port *port);
461
David Daney7d6a07d2009-01-02 13:49:47 +0000462static void set_io_from_upio(struct uart_port *p)
463{
Jamie Iles49d57412010-12-01 23:39:35 +0000464 struct uart_8250_port *up =
465 container_of(p, struct uart_8250_port, port);
Magnus Dammcc419fa02012-05-02 21:46:51 +0900466
467 up->dl_read = _serial_dl_read;
468 up->dl_write = _serial_dl_write;
469
David Daney7d6a07d2009-01-02 13:49:47 +0000470 switch (p->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 case UPIO_HUB6:
David Daney7d6a07d2009-01-02 13:49:47 +0000472 p->serial_in = hub6_serial_in;
473 p->serial_out = hub6_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 break;
475
476 case UPIO_MEM:
David Daney7d6a07d2009-01-02 13:49:47 +0000477 p->serial_in = mem_serial_in;
478 p->serial_out = mem_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 break;
480
481 case UPIO_MEM32:
David Daney7d6a07d2009-01-02 13:49:47 +0000482 p->serial_in = mem32_serial_in;
483 p->serial_out = mem32_serial_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 break;
485
Magnus Damm28bf4cf2012-05-02 21:47:09 +0900486#ifdef CONFIG_SERIAL_8250_RM9K
487 case UPIO_RM9000:
488 p->serial_in = rm9k_serial_in;
489 p->serial_out = rm9k_serial_out;
490 up->dl_read = rm9k_serial_dl_read;
491 up->dl_write = rm9k_serial_dl_write;
492 break;
493#endif
494
Magnus Damm6b416032012-05-02 21:47:00 +0900495#ifdef CONFIG_MIPS_ALCHEMY
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000496 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000497 p->serial_in = au_serial_in;
498 p->serial_out = au_serial_out;
Magnus Damm6b416032012-05-02 21:47:00 +0900499 up->dl_read = au_serial_dl_read;
500 up->dl_write = au_serial_dl_write;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +0000501 break;
Magnus Damm6b416032012-05-02 21:47:00 +0900502#endif
Manuel Lauss12bf3f22010-07-15 21:45:05 +0200503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000505 p->serial_in = io_serial_in;
506 p->serial_out = io_serial_out;
507 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
Alan Coxb8e7e402009-05-28 14:01:35 +0100509 /* Remember loaded iotype */
510 up->cur_iotype = p->iotype;
Jamie Iles583d28e2011-08-15 10:17:52 +0100511 p->handle_irq = serial8250_default_handle_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Alex Williamson40b36da2007-02-14 00:33:04 -0800514static void
Paul Gortmaker55e40162012-03-08 19:12:14 -0500515serial_port_out_sync(struct uart_port *p, int offset, int value)
Alex Williamson40b36da2007-02-14 00:33:04 -0800516{
David Daney7d6a07d2009-01-02 13:49:47 +0000517 switch (p->iotype) {
Alex Williamson40b36da2007-02-14 00:33:04 -0800518 case UPIO_MEM:
519 case UPIO_MEM32:
Alex Williamson40b36da2007-02-14 00:33:04 -0800520 case UPIO_AU:
David Daney7d6a07d2009-01-02 13:49:47 +0000521 p->serial_out(p, offset, value);
522 p->serial_in(p, UART_LCR); /* safe, no side-effects */
Alex Williamson40b36da2007-02-14 00:33:04 -0800523 break;
524 default:
David Daney7d6a07d2009-01-02 13:49:47 +0000525 p->serial_out(p, offset, value);
Alex Williamson40b36da2007-02-14 00:33:04 -0800526 }
527}
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529/*
530 * For the 16C950
531 */
532static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
533{
534 serial_out(up, UART_SCR, offset);
535 serial_out(up, UART_ICR, value);
536}
537
538static unsigned int serial_icr_read(struct uart_8250_port *up, int offset)
539{
540 unsigned int value;
541
542 serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
543 serial_out(up, UART_SCR, offset);
544 value = serial_in(up, UART_ICR);
545 serial_icr_write(up, UART_ACR, up->acr);
546
547 return value;
548}
549
550/*
551 * FIFO support.
552 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100553static void serial8250_clear_fifos(struct uart_8250_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
555 if (p->capabilities & UART_CAP_FIFO) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500556 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO);
557 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500559 serial_out(p, UART_FCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
561}
562
Sudhakar Mamillapalli0ad372b2012-04-10 14:10:58 -0700563void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p)
564{
565 unsigned char fcr;
566
567 serial8250_clear_fifos(p);
568 fcr = uart_config[p->port.type].fcr;
569 serial_out(p, UART_FCR, fcr);
570}
571EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos);
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573/*
574 * IER sleep support. UARTs which have EFRs need the "extended
575 * capability" bit enabled. Note that on XR16C850s, we need to
576 * reset LCR to write to IER.
577 */
Will Newtonb5d674a2008-10-13 10:36:21 +0100578static void serial8250_set_sleep(struct uart_8250_port *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 if (p->capabilities & UART_CAP_SLEEP) {
581 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500582 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
583 serial_out(p, UART_EFR, UART_EFR_ECB);
584 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500586 serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (p->capabilities & UART_CAP_EFR) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500588 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B);
589 serial_out(p, UART_EFR, 0);
590 serial_out(p, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592 }
593}
594
595#ifdef CONFIG_SERIAL_8250_RSA
596/*
597 * Attempts to turn on the RSA FIFO. Returns zero on failure.
598 * We set the port uart clock rate if we succeed.
599 */
600static int __enable_rsa(struct uart_8250_port *up)
601{
602 unsigned char mode;
603 int result;
604
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500605 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 result = mode & UART_RSA_MSR_FIFO;
607
608 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500609 serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO);
610 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 result = mode & UART_RSA_MSR_FIFO;
612 }
613
614 if (result)
615 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16;
616
617 return result;
618}
619
620static void enable_rsa(struct uart_8250_port *up)
621{
622 if (up->port.type == PORT_RSA) {
623 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) {
624 spin_lock_irq(&up->port.lock);
625 __enable_rsa(up);
626 spin_unlock_irq(&up->port.lock);
627 }
628 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500629 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631}
632
633/*
634 * Attempts to turn off the RSA FIFO. Returns zero on failure.
635 * It is unknown why interrupts were disabled in here. However,
636 * the caller is expected to preserve this behaviour by grabbing
637 * the spinlock before calling this function.
638 */
639static void disable_rsa(struct uart_8250_port *up)
640{
641 unsigned char mode;
642 int result;
643
644 if (up->port.type == PORT_RSA &&
645 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) {
646 spin_lock_irq(&up->port.lock);
647
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500648 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 result = !(mode & UART_RSA_MSR_FIFO);
650
651 if (!result) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500652 serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO);
653 mode = serial_in(up, UART_RSA_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 result = !(mode & UART_RSA_MSR_FIFO);
655 }
656
657 if (result)
658 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16;
659 spin_unlock_irq(&up->port.lock);
660 }
661}
662#endif /* CONFIG_SERIAL_8250_RSA */
663
664/*
665 * This is a quickie test to see how big the FIFO is.
666 * It doesn't work at all the time, more's the pity.
667 */
668static int size_fifo(struct uart_8250_port *up)
669{
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100670 unsigned char old_fcr, old_mcr, old_lcr;
671 unsigned short old_dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 int count;
673
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500674 old_lcr = serial_in(up, UART_LCR);
675 serial_out(up, UART_LCR, 0);
676 old_fcr = serial_in(up, UART_FCR);
677 old_mcr = serial_in(up, UART_MCR);
678 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500680 serial_out(up, UART_MCR, UART_MCR_LOOP);
681 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100682 old_dl = serial_dl_read(up);
683 serial_dl_write(up, 0x0001);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500684 serial_out(up, UART_LCR, 0x03);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 for (count = 0; count < 256; count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500686 serial_out(up, UART_TX, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 mdelay(20);/* FIXME - schedule_timeout */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500688 for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 (count < 256); count++)
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500690 serial_in(up, UART_RX);
691 serial_out(up, UART_FCR, old_fcr);
692 serial_out(up, UART_MCR, old_mcr);
693 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100694 serial_dl_write(up, old_dl);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500695 serial_out(up, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 return count;
698}
699
700/*
701 * Read UART ID using the divisor method - set DLL and DLM to zero
702 * and the revision will be in DLL and device type in DLM. We
703 * preserve the device state across this.
704 */
705static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p)
706{
707 unsigned char old_dll, old_dlm, old_lcr;
708 unsigned int id;
709
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500710 old_lcr = serial_in(p, UART_LCR);
711 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500713 old_dll = serial_in(p, UART_DLL);
714 old_dlm = serial_in(p, UART_DLM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500716 serial_out(p, UART_DLL, 0);
717 serial_out(p, UART_DLM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500719 id = serial_in(p, UART_DLL) | serial_in(p, UART_DLM) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500721 serial_out(p, UART_DLL, old_dll);
722 serial_out(p, UART_DLM, old_dlm);
723 serial_out(p, UART_LCR, old_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 return id;
726}
727
728/*
729 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's.
730 * When this function is called we know it is at least a StarTech
731 * 16650 V2, but it might be one of several StarTech UARTs, or one of
732 * its clones. (We treat the broken original StarTech 16650 V1 as a
733 * 16550, and why not? Startech doesn't seem to even acknowledge its
734 * existence.)
Thomas Koellerbd71c182007-05-06 14:48:47 -0700735 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * What evil have men's minds wrought...
737 */
738static void autoconfig_has_efr(struct uart_8250_port *up)
739{
740 unsigned int id1, id2, id3, rev;
741
742 /*
743 * Everything with an EFR has SLEEP
744 */
745 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
746
747 /*
748 * First we check to see if it's an Oxford Semiconductor UART.
749 *
750 * If we have to do this here because some non-National
751 * Semiconductor clone chips lock up if you try writing to the
752 * LSR register (which serial_icr_read does)
753 */
754
755 /*
756 * Check for Oxford Semiconductor 16C950.
757 *
758 * EFR [4] must be set else this test fails.
759 *
760 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca)
761 * claims that it's needed for 952 dual UART's (which are not
762 * recommended for new designs).
763 */
764 up->acr = 0;
Andrei Emeltchenko662b083a2010-11-30 14:11:49 -0800765 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 serial_out(up, UART_EFR, UART_EFR_ECB);
767 serial_out(up, UART_LCR, 0x00);
768 id1 = serial_icr_read(up, UART_ID1);
769 id2 = serial_icr_read(up, UART_ID2);
770 id3 = serial_icr_read(up, UART_ID3);
771 rev = serial_icr_read(up, UART_REV);
772
773 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev);
774
775 if (id1 == 0x16 && id2 == 0xC9 &&
776 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) {
777 up->port.type = PORT_16C950;
Russell King4ba5e352005-06-23 10:43:04 +0100778
779 /*
780 * Enable work around for the Oxford Semiconductor 952 rev B
781 * chip which causes it to seriously miscalculate baud rates
782 * when DLL is 0.
783 */
784 if (id3 == 0x52 && rev == 0x01)
785 up->bugs |= UART_BUG_QUOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return;
787 }
Thomas Koellerbd71c182007-05-06 14:48:47 -0700788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 /*
790 * We check for a XR16C850 by setting DLL and DLM to 0, and then
791 * reading back DLL and DLM. The chip type depends on the DLM
792 * value read back:
793 * 0x10 - XR16C850 and the DLL contains the chip revision.
794 * 0x12 - XR16C2850.
795 * 0x14 - XR16C854.
796 */
797 id1 = autoconfig_read_divisor_id(up);
798 DEBUG_AUTOCONF("850id=%04x ", id1);
799
800 id2 = id1 >> 8;
801 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 up->port.type = PORT_16850;
803 return;
804 }
805
806 /*
807 * It wasn't an XR16C850.
808 *
809 * We distinguish between the '654 and the '650 by counting
810 * how many bytes are in the FIFO. I'm using this for now,
811 * since that's the technique that was sent to me in the
812 * serial driver update, but I'm not convinced this works.
813 * I've had problems doing this in the past. -TYT
814 */
815 if (size_fifo(up) == 64)
816 up->port.type = PORT_16654;
817 else
818 up->port.type = PORT_16650V2;
819}
820
821/*
822 * We detected a chip without a FIFO. Only two fall into
823 * this category - the original 8250 and the 16450. The
824 * 16450 has a scratch register (accessible with LCR=0)
825 */
826static void autoconfig_8250(struct uart_8250_port *up)
827{
828 unsigned char scratch, status1, status2;
829
830 up->port.type = PORT_8250;
831
832 scratch = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500833 serial_out(up, UART_SCR, 0xa5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 status1 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500835 serial_out(up, UART_SCR, 0x5a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 status2 = serial_in(up, UART_SCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500837 serial_out(up, UART_SCR, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 if (status1 == 0xa5 && status2 == 0x5a)
840 up->port.type = PORT_16450;
841}
842
843static int broken_efr(struct uart_8250_port *up)
844{
845 /*
846 * Exar ST16C2550 "A2" devices incorrectly detect as
847 * having an EFR, and report an ID of 0x0201. See
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200848 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 */
850 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16)
851 return 1;
852
853 return 0;
854}
855
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800856static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
857{
858 unsigned char status;
859
860 status = serial_in(up, 0x04); /* EXCR2 */
861#define PRESL(x) ((x) & 0x30)
862 if (PRESL(status) == 0x10) {
863 /* already in high speed mode */
864 return 0;
865 } else {
866 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
867 status |= 0x10; /* 1.625 divisor for baud_base --> 921600 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500868 serial_out(up, 0x04, status);
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800869 }
870 return 1;
871}
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873/*
874 * We know that the chip has FIFOs. Does it have an EFR? The
875 * EFR is located in the same register position as the IIR and
876 * we know the top two bits of the IIR are currently set. The
877 * EFR should contain zero. Try to read the EFR.
878 */
879static void autoconfig_16550a(struct uart_8250_port *up)
880{
881 unsigned char status1, status2;
882 unsigned int iersave;
883
884 up->port.type = PORT_16550A;
885 up->capabilities |= UART_CAP_FIFO;
886
887 /*
888 * Check for presence of the EFR when DLAB is set.
889 * Only ST16C650V1 UARTs pass this test.
890 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500891 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (serial_in(up, UART_EFR) == 0) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500893 serial_out(up, UART_EFR, 0xA8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (serial_in(up, UART_EFR) != 0) {
895 DEBUG_AUTOCONF("EFRv1 ");
896 up->port.type = PORT_16650;
897 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP;
898 } else {
899 DEBUG_AUTOCONF("Motorola 8xxx DUART ");
900 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500901 serial_out(up, UART_EFR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return;
903 }
904
905 /*
906 * Maybe it requires 0xbf to be written to the LCR.
907 * (other ST16C650V2 UARTs, TI16C752A, etc)
908 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500909 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) {
911 DEBUG_AUTOCONF("EFRv2 ");
912 autoconfig_has_efr(up);
913 return;
914 }
915
916 /*
917 * Check for a National Semiconductor SuperIO chip.
918 * Attempt to switch to bank 2, read the value of the LOOP bit
919 * from EXCR1. Switch back to bank 0, change it in MCR. Then
920 * switch back to bank 2, read it from EXCR1 again and check
921 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500923 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 status1 = serial_in(up, UART_MCR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500925 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 status2 = serial_in(up, 0x02); /* EXCR1 */
927
928 if (!((status2 ^ status1) & UART_MCR_LOOP)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500929 serial_out(up, UART_LCR, 0);
930 serial_out(up, UART_MCR, status1 ^ UART_MCR_LOOP);
931 serial_out(up, UART_LCR, 0xE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 status2 = serial_in(up, 0x02); /* EXCR1 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500933 serial_out(up, UART_LCR, 0);
934 serial_out(up, UART_MCR, status1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 if ((status2 ^ status1) & UART_MCR_LOOP) {
David Woodhouse857dde22005-05-21 15:52:23 +0100937 unsigned short quot;
938
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500939 serial_out(up, UART_LCR, 0xE0);
David Woodhouse857dde22005-05-21 15:52:23 +0100940
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +0100941 quot = serial_dl_read(up);
David Woodhouse857dde22005-05-21 15:52:23 +0100942 quot <<= 3;
943
Yin Kangkai0d0389e2011-02-09 11:35:18 +0800944 if (ns16550a_goto_highspeed(up))
945 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500947 serial_out(up, UART_LCR, 0);
David Woodhouse857dde22005-05-21 15:52:23 +0100948
949 up->port.uartclk = 921600*16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 up->port.type = PORT_NS16550A;
951 up->capabilities |= UART_NATSEMI;
952 return;
953 }
954 }
955
956 /*
957 * No EFR. Try to detect a TI16750, which only sets bit 5 of
958 * the IIR when 64 byte FIFO mode is enabled when DLAB is set.
959 * Try setting it with and without DLAB set. Cheap clones
960 * set bit 5 without DLAB set.
961 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500962 serial_out(up, UART_LCR, 0);
963 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 status1 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500965 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
966 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A);
967 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 status2 = serial_in(up, UART_IIR) >> 5;
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500969 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
970 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2);
973
974 if (status1 == 6 && status2 == 7) {
975 up->port.type = PORT_16750;
976 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP;
977 return;
978 }
979
980 /*
981 * Try writing and reading the UART_IER_UUE bit (b6).
982 * If it works, this is probably one of the Xscale platform's
983 * internal UARTs.
984 * We're going to explicitly set the UUE bit to 0 before
985 * trying to write and read a 1 just to make sure it's not
986 * already a 1 and maybe locked there before we even start start.
987 */
988 iersave = serial_in(up, UART_IER);
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500989 serial_out(up, UART_IER, iersave & ~UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) {
991 /*
992 * OK it's in a known zero state, try writing and reading
993 * without disturbing the current state of the other bits.
994 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -0500995 serial_out(up, UART_IER, iersave | UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (serial_in(up, UART_IER) & UART_IER_UUE) {
997 /*
998 * It's an Xscale.
999 * We'll leave the UART_IER_UUE bit set to 1 (enabled).
1000 */
1001 DEBUG_AUTOCONF("Xscale ");
1002 up->port.type = PORT_XSCALE;
Stephen Warren55681812011-06-17 09:45:07 -06001003 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return;
1005 }
1006 } else {
1007 /*
1008 * If we got here we couldn't force the IER_UUE bit to 0.
1009 * Log it and continue.
1010 */
1011 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 ");
1012 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001013 serial_out(up, UART_IER, iersave);
Philippe Langlais235dae52010-07-29 17:13:57 +02001014
1015 /*
Søren Holm06315342011-09-02 22:55:37 +02001016 * Exar uarts have EFR in a weird location
1017 */
1018 if (up->port.flags & UPF_EXAR_EFR) {
1019 up->port.type = PORT_XR17D15X;
1020 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR;
1021 }
1022
1023 /*
Philippe Langlais235dae52010-07-29 17:13:57 +02001024 * We distinguish between 16550A and U6 16550A by counting
1025 * how many bytes are in the FIFO.
1026 */
1027 if (up->port.type == PORT_16550A && size_fifo(up) == 64) {
1028 up->port.type = PORT_U6_16550A;
1029 up->capabilities |= UART_CAP_AFE;
1030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
1033/*
1034 * This routine is called by rs_init() to initialize a specific serial
1035 * port. It determines what type of UART chip this serial port is
1036 * using: 8250, 16450, 16550, 16550A. The important question is
1037 * whether or not this UART is a 16550A or not, since this will
1038 * determine whether or not we can use its FIFO features or not.
1039 */
1040static void autoconfig(struct uart_8250_port *up, unsigned int probeflags)
1041{
1042 unsigned char status1, scratch, scratch2, scratch3;
1043 unsigned char save_lcr, save_mcr;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001044 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 unsigned long flags;
1046
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001047 if (!port->iobase && !port->mapbase && !port->membase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return;
1049
Lennert Buytenhek80647b92009-11-11 14:26:41 -08001050 DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001051 serial_index(port), port->iobase, port->membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 /*
1054 * We really do need global IRQs disabled here - we're going to
1055 * be frobbing the chips IRQ enable register to see if it exists.
1056 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001057 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 up->capabilities = 0;
Russell King4ba5e352005-06-23 10:43:04 +01001060 up->bugs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001062 if (!(port->flags & UPF_BUGGY_UART)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /*
1064 * Do a simple existence test first; if we fail this,
1065 * there's no point trying anything else.
Thomas Koellerbd71c182007-05-06 14:48:47 -07001066 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 * 0x80 is used as a nonsense port to prevent against
1068 * false positives due to ISA bus float. The
1069 * assumption is that 0x80 is a non-existent port;
1070 * which should be safe since include/asm/io.h also
1071 * makes this assumption.
1072 *
1073 * Note: this is safe as long as MCR bit 4 is clear
1074 * and the device is in "PC" mode.
1075 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001076 scratch = serial_in(up, UART_IER);
1077 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078#ifdef __i386__
1079 outb(0xff, 0x080);
1080#endif
Thomas Hoehn48212002007-02-10 01:46:05 -08001081 /*
1082 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL
1083 * 16C754B) allow only to modify them if an EFR bit is set.
1084 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001085 scratch2 = serial_in(up, UART_IER) & 0x0f;
1086 serial_out(up, UART_IER, 0x0F);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087#ifdef __i386__
1088 outb(0, 0x080);
1089#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001090 scratch3 = serial_in(up, UART_IER) & 0x0f;
1091 serial_out(up, UART_IER, scratch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (scratch2 != 0 || scratch3 != 0x0F) {
1093 /*
1094 * We failed; there's nothing here
1095 */
1096 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ",
1097 scratch2, scratch3);
1098 goto out;
1099 }
1100 }
1101
1102 save_mcr = serial_in(up, UART_MCR);
1103 save_lcr = serial_in(up, UART_LCR);
1104
Thomas Koellerbd71c182007-05-06 14:48:47 -07001105 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 * Check to see if a UART is really there. Certain broken
1107 * internal modems based on the Rockwell chipset fail this
1108 * test, because they apparently don't implement the loopback
1109 * test mode. So this test is skipped on the COM 1 through
1110 * COM 4 ports. This *should* be safe, since no board
1111 * manufacturer would be stupid enough to design a board
1112 * that conflicts with COM 1-4 --- we hope!
1113 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001114 if (!(port->flags & UPF_SKIP_TEST)) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001115 serial_out(up, UART_MCR, UART_MCR_LOOP | 0x0A);
1116 status1 = serial_in(up, UART_MSR) & 0xF0;
1117 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (status1 != 0x90) {
1119 DEBUG_AUTOCONF("LOOP test failed (%02x) ",
1120 status1);
1121 goto out;
1122 }
1123 }
1124
1125 /*
1126 * We're pretty sure there's a port here. Lets find out what
1127 * type of port it is. The IIR top two bits allows us to find
Russell King6f0d6182005-09-09 16:17:58 +01001128 * out if it's 8250 or 16450, 16550, 16550A or later. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * determines what we test for next.
1130 *
1131 * We also initialise the EFR (if any) to zero for later. The
1132 * EFR occupies the same register location as the FCR and IIR.
1133 */
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001134 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
1135 serial_out(up, UART_EFR, 0);
1136 serial_out(up, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001138 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 scratch = serial_in(up, UART_IIR) >> 6;
1140
1141 DEBUG_AUTOCONF("iir=%d ", scratch);
1142
1143 switch (scratch) {
1144 case 0:
1145 autoconfig_8250(up);
1146 break;
1147 case 1:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001148 port->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break;
1150 case 2:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001151 port->type = PORT_16550;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 break;
1153 case 3:
1154 autoconfig_16550a(up);
1155 break;
1156 }
1157
1158#ifdef CONFIG_SERIAL_8250_RSA
1159 /*
1160 * Only probe for RSA ports if we got the region.
1161 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001162 if (port->type == PORT_16550A && probeflags & PROBE_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 int i;
1164
1165 for (i = 0 ; i < probe_rsa_count; ++i) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001166 if (probe_rsa[i] == port->iobase && __enable_rsa(up)) {
1167 port->type = PORT_RSA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 break;
1169 }
1170 }
1171 }
1172#endif
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001173
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001174 serial_out(up, UART_LCR, save_lcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001176 if (up->capabilities != uart_config[port->type].flags) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 printk(KERN_WARNING
1178 "ttyS%d: detected caps %08x should be %08x\n",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001179 serial_index(port), up->capabilities,
1180 uart_config[port->type].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
1182
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001183 port->fifosize = uart_config[up->port.type].fifo_size;
1184 up->capabilities = uart_config[port->type].flags;
1185 up->tx_loadsz = uart_config[port->type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001187 if (port->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 goto out;
1189
1190 /*
1191 * Reset the UART.
1192 */
1193#ifdef CONFIG_SERIAL_8250_RSA
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001194 if (port->type == PORT_RSA)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001195 serial_out(up, UART_RSA_FRR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196#endif
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001197 serial_out(up, UART_MCR, save_mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 serial8250_clear_fifos(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001199 serial_in(up, UART_RX);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001200 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001201 serial_out(up, UART_IER, UART_IER_UUE);
Lennert Buytenhek5c8c7552005-11-12 21:58:05 +00001202 else
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001203 serial_out(up, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Thomas Koellerbd71c182007-05-06 14:48:47 -07001205 out:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001206 spin_unlock_irqrestore(&port->lock, flags);
1207 DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
1210static void autoconfig_irq(struct uart_8250_port *up)
1211{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001212 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 unsigned char save_mcr, save_ier;
1214 unsigned char save_ICP = 0;
1215 unsigned int ICP = 0;
1216 unsigned long irqs;
1217 int irq;
1218
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001219 if (port->flags & UPF_FOURPORT) {
1220 ICP = (port->iobase & 0xfe0) | 0x1f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 save_ICP = inb_p(ICP);
1222 outb_p(0x80, ICP);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001223 inb_p(ICP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225
1226 /* forget possible initially masked and pending IRQ */
1227 probe_irq_off(probe_irq_on());
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001228 save_mcr = serial_in(up, UART_MCR);
1229 save_ier = serial_in(up, UART_IER);
1230 serial_out(up, UART_MCR, UART_MCR_OUT1 | UART_MCR_OUT2);
Thomas Koellerbd71c182007-05-06 14:48:47 -07001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 irqs = probe_irq_on();
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001233 serial_out(up, UART_MCR, 0);
Alan Cox6f803cd2008-02-08 04:18:52 -08001234 udelay(10);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001235 if (port->flags & UPF_FOURPORT) {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001236 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 UART_MCR_DTR | UART_MCR_RTS);
1238 } else {
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001239 serial_out(up, UART_MCR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2);
1241 }
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001242 serial_out(up, UART_IER, 0x0f); /* enable all intrs */
Paul Gortmaker0d263a22012-03-08 19:12:10 -05001243 serial_in(up, UART_LSR);
1244 serial_in(up, UART_RX);
1245 serial_in(up, UART_IIR);
1246 serial_in(up, UART_MSR);
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001247 serial_out(up, UART_TX, 0xFF);
Alan Cox6f803cd2008-02-08 04:18:52 -08001248 udelay(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 irq = probe_irq_off(irqs);
1250
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001251 serial_out(up, UART_MCR, save_mcr);
1252 serial_out(up, UART_IER, save_ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001254 if (port->flags & UPF_FOURPORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 outb_p(save_ICP, ICP);
1256
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001257 port->irq = (irq > 0) ? irq : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Russell Kinge763b902005-06-29 18:41:51 +01001260static inline void __stop_tx(struct uart_8250_port *p)
1261{
1262 if (p->ier & UART_IER_THRI) {
1263 p->ier &= ~UART_IER_THRI;
1264 serial_out(p, UART_IER, p->ier);
1265 }
1266}
1267
Russell Kingb129a8c2005-08-31 10:12:14 +01001268static void serial8250_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Jamie Iles49d57412010-12-01 23:39:35 +00001270 struct uart_8250_port *up =
1271 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Russell Kinge763b902005-06-29 18:41:51 +01001273 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 /*
Russell Kinge763b902005-06-29 18:41:51 +01001276 * We really want to stop the transmitter from sending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001278 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 up->acr |= UART_ACR_TXDIS;
1280 serial_icr_write(up, UART_ACR, up->acr);
1281 }
1282}
1283
Russell Kingb129a8c2005-08-31 10:12:14 +01001284static void serial8250_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
Jamie Iles49d57412010-12-01 23:39:35 +00001286 struct uart_8250_port *up =
1287 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 if (!(up->ier & UART_IER_THRI)) {
1290 up->ier |= UART_IER_THRI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001291 serial_port_out(port, UART_IER, up->ier);
Russell King55d3b282005-06-23 15:05:41 +01001292
Russell King67f76542005-06-23 22:26:43 +01001293 if (up->bugs & UART_BUG_TXEN) {
Ian Jackson68cb4f82009-11-18 11:08:11 +01001294 unsigned char lsr;
Russell King55d3b282005-06-23 15:05:41 +01001295 lsr = serial_in(up, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001296 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001297 if ((port->type == PORT_RM9000) ?
Ian Jackson68cb4f82009-11-18 11:08:11 +01001298 (lsr & UART_LSR_THRE) :
1299 (lsr & UART_LSR_TEMT))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001300 serial8250_tx_chars(up);
Russell King55d3b282005-06-23 15:05:41 +01001301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
Russell Kinge763b902005-06-29 18:41:51 +01001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /*
Russell Kinge763b902005-06-29 18:41:51 +01001305 * Re-enable the transmitter if we disabled it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001307 if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 up->acr &= ~UART_ACR_TXDIS;
1309 serial_icr_write(up, UART_ACR, up->acr);
1310 }
1311}
1312
1313static void serial8250_stop_rx(struct uart_port *port)
1314{
Jamie Iles49d57412010-12-01 23:39:35 +00001315 struct uart_8250_port *up =
1316 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 up->ier &= ~UART_IER_RLSI;
1319 up->port.read_status_mask &= ~UART_LSR_DR;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001320 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323static void serial8250_enable_ms(struct uart_port *port)
1324{
Jamie Iles49d57412010-12-01 23:39:35 +00001325 struct uart_8250_port *up =
1326 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00001328 /* no MSR capabilities */
1329 if (up->bugs & UART_BUG_NOMSR)
1330 return;
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 up->ier |= UART_IER_MSI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001333 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
Stephen Warren5f873ba2011-05-17 16:12:37 -06001336/*
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001337 * serial8250_rx_chars: processes according to the passed in LSR
Paul Gortmaker0690f412011-12-04 18:42:19 -05001338 * value, and returns the remaining LSR bits not handled
1339 * by this Rx routine.
1340 */
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001341unsigned char
1342serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001344 struct uart_port *port = &up->port;
1345 struct tty_struct *tty = port->state->port.tty;
Paul Gortmaker0690f412011-12-04 18:42:19 -05001346 unsigned char ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 int max_count = 256;
1348 char flag;
1349
1350 do {
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001351 if (likely(lsr & UART_LSR_DR))
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001352 ch = serial_in(up, UART_RX);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001353 else
1354 /*
1355 * Intel 82571 has a Serial Over Lan device that will
1356 * set UART_LSR_BI without setting UART_LSR_DR when
1357 * it receives a break. To avoid reading from the
1358 * receive buffer without UART_LSR_DR bit set, we
1359 * just force the read character to be 0
1360 */
1361 ch = 0;
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 flag = TTY_NORMAL;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001364 port->icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001366 lsr |= up->lsr_saved_flags;
1367 up->lsr_saved_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001369 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (lsr & UART_LSR_BI) {
1371 lsr &= ~(UART_LSR_FE | UART_LSR_PE);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001372 port->icount.brk++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 /*
1374 * We do the SysRQ and SAK checking
1375 * here because otherwise the break
1376 * may get masked by ignore_status_mask
1377 * or read_status_mask.
1378 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001379 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 goto ignore_char;
1381 } else if (lsr & UART_LSR_PE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001382 port->icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 else if (lsr & UART_LSR_FE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001384 port->icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (lsr & UART_LSR_OE)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001386 port->icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 /*
Russell King23907eb2005-04-16 15:26:39 -07001389 * Mask off conditions which should be ignored.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001391 lsr &= port->read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 if (lsr & UART_LSR_BI) {
1394 DEBUG_INTR("handling break....");
1395 flag = TTY_BREAK;
1396 } else if (lsr & UART_LSR_PE)
1397 flag = TTY_PARITY;
1398 else if (lsr & UART_LSR_FE)
1399 flag = TTY_FRAME;
1400 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001401 if (uart_handle_sysrq_char(port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 goto ignore_char;
Russell King05ab3012005-05-09 23:21:59 +01001403
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001404 uart_insert_char(port, lsr, UART_LSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +01001405
Alan Cox6f803cd2008-02-08 04:18:52 -08001406ignore_char:
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001407 lsr = serial_in(up, UART_LSR);
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001408 } while ((lsr & (UART_LSR_DR | UART_LSR_BI)) && (max_count-- > 0));
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001409 spin_unlock(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 tty_flip_buffer_push(tty);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001411 spin_lock(&port->lock);
Paul Gortmaker0690f412011-12-04 18:42:19 -05001412 return lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001414EXPORT_SYMBOL_GPL(serial8250_rx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001416void serial8250_tx_chars(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001418 struct uart_port *port = &up->port;
1419 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 int count;
1421
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001422 if (port->x_char) {
1423 serial_out(up, UART_TX, port->x_char);
1424 port->icount.tx++;
1425 port->x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return;
1427 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001428 if (uart_tx_stopped(port)) {
1429 serial8250_stop_tx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +01001430 return;
1431 }
1432 if (uart_circ_empty(xmit)) {
Russell Kinge763b902005-06-29 18:41:51 +01001433 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return;
1435 }
1436
1437 count = up->tx_loadsz;
1438 do {
1439 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
1440 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001441 port->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (uart_circ_empty(xmit))
1443 break;
1444 } while (--count > 0);
1445
1446 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001447 uart_write_wakeup(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 DEBUG_INTR("THRE...");
1450
1451 if (uart_circ_empty(xmit))
Russell Kinge763b902005-06-29 18:41:51 +01001452 __stop_tx(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001454EXPORT_SYMBOL_GPL(serial8250_tx_chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001456unsigned int serial8250_modem_status(struct uart_8250_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001458 struct uart_port *port = &up->port;
Russell King2af7cd62006-01-04 16:55:09 +00001459 unsigned int status = serial_in(up, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001461 status |= up->msr_saved_flags;
1462 up->msr_saved_flags = 0;
Taku Izumifdc30b32007-04-23 14:41:00 -07001463 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI &&
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001464 port->state != NULL) {
Russell King2af7cd62006-01-04 16:55:09 +00001465 if (status & UART_MSR_TERI)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001466 port->icount.rng++;
Russell King2af7cd62006-01-04 16:55:09 +00001467 if (status & UART_MSR_DDSR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001468 port->icount.dsr++;
Russell King2af7cd62006-01-04 16:55:09 +00001469 if (status & UART_MSR_DDCD)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001470 uart_handle_dcd_change(port, status & UART_MSR_DCD);
Russell King2af7cd62006-01-04 16:55:09 +00001471 if (status & UART_MSR_DCTS)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001472 uart_handle_cts_change(port, status & UART_MSR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001474 wake_up_interruptible(&port->state->port.delta_msr_wait);
Russell King2af7cd62006-01-04 16:55:09 +00001475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Russell King2af7cd62006-01-04 16:55:09 +00001477 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001479EXPORT_SYMBOL_GPL(serial8250_modem_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481/*
1482 * This handles the interrupt from one port.
1483 */
Paul Gortmaker86b21192011-12-04 18:42:22 -05001484int serial8250_handle_irq(struct uart_port *port, unsigned int iir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
Paul Gortmaker0690f412011-12-04 18:42:19 -05001486 unsigned char status;
Jiri Kosina4bf36312007-04-23 14:41:21 -07001487 unsigned long flags;
Paul Gortmaker86b21192011-12-04 18:42:22 -05001488 struct uart_8250_port *up =
1489 container_of(port, struct uart_8250_port, port);
1490
1491 if (iir & UART_IIR_NO_INT)
1492 return 0;
Russell King45e24602006-01-04 19:19:06 +00001493
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001494 spin_lock_irqsave(&port->lock, flags);
Russell King45e24602006-01-04 19:19:06 +00001495
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001496 status = serial_port_in(port, UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 DEBUG_INTR("status = %x...", status);
1499
Aristeu Rozanski7500b1f2008-07-23 21:29:45 -07001500 if (status & (UART_LSR_DR | UART_LSR_BI))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001501 status = serial8250_rx_chars(up, status);
1502 serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (status & UART_LSR_THRE)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001504 serial8250_tx_chars(up);
Russell King45e24602006-01-04 19:19:06 +00001505
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001506 spin_unlock_irqrestore(&port->lock, flags);
Paul Gortmaker86b21192011-12-04 18:42:22 -05001507 return 1;
Jamie Iles583d28e2011-08-15 10:17:52 +01001508}
Jamie Ilesc7a1bdc2011-08-26 19:04:49 +01001509EXPORT_SYMBOL_GPL(serial8250_handle_irq);
Jamie Iles583d28e2011-08-15 10:17:52 +01001510
1511static int serial8250_default_handle_irq(struct uart_port *port)
1512{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001513 unsigned int iir = serial_port_in(port, UART_IIR);
Jamie Iles583d28e2011-08-15 10:17:52 +01001514
1515 return serial8250_handle_irq(port, iir);
1516}
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518/*
1519 * This is the serial driver's interrupt routine.
1520 *
1521 * Arjan thinks the old way was overly complex, so it got simplified.
1522 * Alan disagrees, saying that need the complexity to handle the weird
1523 * nature of ISA shared interrupts. (This is a special exception.)
1524 *
1525 * In order to handle ISA shared interrupts properly, we need to check
1526 * that all ports have been serviced, and therefore the ISA interrupt
1527 * line has been de-asserted.
1528 *
1529 * This means we need to loop through all ports. checking that they
1530 * don't have an interrupt pending.
1531 */
David Howells7d12e782006-10-05 14:55:46 +01001532static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
1534 struct irq_info *i = dev_id;
1535 struct list_head *l, *end = NULL;
1536 int pass_counter = 0, handled = 0;
1537
1538 DEBUG_INTR("serial8250_interrupt(%d)...", irq);
1539
1540 spin_lock(&i->lock);
1541
1542 l = i->head;
1543 do {
1544 struct uart_8250_port *up;
Jamie Iles583d28e2011-08-15 10:17:52 +01001545 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 up = list_entry(l, struct uart_8250_port, list);
Jamie Iles583d28e2011-08-15 10:17:52 +01001548 port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Dan Williams49b532f2012-04-06 11:49:44 -07001550 if (port->handle_irq(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 handled = 1;
Marc St-Jeanbeab6972007-05-06 14:48:45 -07001552 end = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 } else if (end == NULL)
1554 end = l;
1555
1556 l = l->next;
1557
1558 if (l == i->head && pass_counter++ > PASS_LIMIT) {
1559 /* If we hit this, we're dead. */
Daniel Drakecd3ecad2010-10-20 16:00:48 -07001560 printk_ratelimited(KERN_ERR
1561 "serial8250: too much work for irq%d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 break;
1563 }
1564 } while (l != end);
1565
1566 spin_unlock(&i->lock);
1567
1568 DEBUG_INTR("end.\n");
1569
1570 return IRQ_RETVAL(handled);
1571}
1572
1573/*
1574 * To support ISA shared interrupts, we need to have one interrupt
1575 * handler that ensures that the IRQ line has been deasserted
1576 * before returning. Failing to do this will result in the IRQ
1577 * line being stuck active, and, since ISA irqs are edge triggered,
1578 * no more IRQs will be seen.
1579 */
1580static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up)
1581{
1582 spin_lock_irq(&i->lock);
1583
1584 if (!list_empty(i->head)) {
1585 if (i->head == &up->list)
1586 i->head = i->head->next;
1587 list_del(&up->list);
1588 } else {
1589 BUG_ON(i->head != &up->list);
1590 i->head = NULL;
1591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 spin_unlock_irq(&i->lock);
Alan Cox25db8ad2008-08-19 20:49:40 -07001593 /* List empty so throw away the hash node */
1594 if (i->head == NULL) {
1595 hlist_del(&i->node);
1596 kfree(i);
1597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
1599
1600static int serial_link_irq_chain(struct uart_8250_port *up)
1601{
Alan Cox25db8ad2008-08-19 20:49:40 -07001602 struct hlist_head *h;
1603 struct hlist_node *n;
1604 struct irq_info *i;
Thomas Gleixner40663cc2006-07-01 19:29:43 -07001605 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Alan Cox25db8ad2008-08-19 20:49:40 -07001607 mutex_lock(&hash_mutex);
1608
1609 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1610
1611 hlist_for_each(n, h) {
1612 i = hlist_entry(n, struct irq_info, node);
1613 if (i->irq == up->port.irq)
1614 break;
1615 }
1616
1617 if (n == NULL) {
1618 i = kzalloc(sizeof(struct irq_info), GFP_KERNEL);
1619 if (i == NULL) {
1620 mutex_unlock(&hash_mutex);
1621 return -ENOMEM;
1622 }
1623 spin_lock_init(&i->lock);
1624 i->irq = up->port.irq;
1625 hlist_add_head(&i->node, h);
1626 }
1627 mutex_unlock(&hash_mutex);
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 spin_lock_irq(&i->lock);
1630
1631 if (i->head) {
1632 list_add(&up->list, i->head);
1633 spin_unlock_irq(&i->lock);
1634
1635 ret = 0;
1636 } else {
1637 INIT_LIST_HEAD(&up->list);
1638 i->head = &up->list;
1639 spin_unlock_irq(&i->lock);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001640 irq_flags |= up->port.irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 ret = request_irq(up->port.irq, serial8250_interrupt,
1642 irq_flags, "serial", i);
1643 if (ret < 0)
1644 serial_do_unlink(i, up);
1645 }
1646
1647 return ret;
1648}
1649
1650static void serial_unlink_irq_chain(struct uart_8250_port *up)
1651{
Alan Cox25db8ad2008-08-19 20:49:40 -07001652 struct irq_info *i;
1653 struct hlist_node *n;
1654 struct hlist_head *h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Alan Cox25db8ad2008-08-19 20:49:40 -07001656 mutex_lock(&hash_mutex);
1657
1658 h = &irq_lists[up->port.irq % NR_IRQ_HASH];
1659
1660 hlist_for_each(n, h) {
1661 i = hlist_entry(n, struct irq_info, node);
1662 if (i->irq == up->port.irq)
1663 break;
1664 }
1665
1666 BUG_ON(n == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 BUG_ON(i->head == NULL);
1668
1669 if (list_empty(i->head))
1670 free_irq(up->port.irq, i);
1671
1672 serial_do_unlink(i, up);
Alan Cox25db8ad2008-08-19 20:49:40 -07001673 mutex_unlock(&hash_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
1676/*
1677 * This function is used to handle ports that do not have an
1678 * interrupt. This doesn't work very well for 16450's, but gives
1679 * barely passable results for a 16550A. (Although at the expense
1680 * of much CPU overhead).
1681 */
1682static void serial8250_timeout(unsigned long data)
1683{
1684 struct uart_8250_port *up = (struct uart_8250_port *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Paul Gortmakera0431472011-12-04 18:42:21 -05001686 up->port.handle_irq(&up->port);
Anton Vorontsov54381062010-10-01 17:21:25 +04001687 mod_timer(&up->timer, jiffies + uart_poll_timeout(&up->port));
Alex Williamson40b36da2007-02-14 00:33:04 -08001688}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Alex Williamson40b36da2007-02-14 00:33:04 -08001690static void serial8250_backup_timeout(unsigned long data)
1691{
1692 struct uart_8250_port *up = (struct uart_8250_port *)data;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001693 unsigned int iir, ier = 0, lsr;
1694 unsigned long flags;
Alex Williamson40b36da2007-02-14 00:33:04 -08001695
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001696 spin_lock_irqsave(&up->port.lock, flags);
1697
Alex Williamson40b36da2007-02-14 00:33:04 -08001698 /*
1699 * Must disable interrupts or else we risk racing with the interrupt
1700 * based handler.
1701 */
Alan Coxd4e33fa2012-01-26 17:44:09 +00001702 if (up->port.irq) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001703 ier = serial_in(up, UART_IER);
1704 serial_out(up, UART_IER, 0);
1705 }
1706
1707 iir = serial_in(up, UART_IIR);
1708
1709 /*
1710 * This should be a safe test for anyone who doesn't trust the
1711 * IIR bits on their UART, but it's specifically designed for
1712 * the "Diva" UART used on the management processor on many HP
1713 * ia64 and parisc boxes.
1714 */
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001715 lsr = serial_in(up, UART_LSR);
1716 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001717 if ((iir & UART_IIR_NO_INT) && (up->ier & UART_IER_THRI) &&
Alan Coxebd2c8f2009-09-19 13:13:28 -07001718 (!uart_circ_empty(&up->port.state->xmit) || up->port.x_char) &&
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001719 (lsr & UART_LSR_THRE)) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001720 iir &= ~(UART_IIR_ID | UART_IIR_NO_INT);
1721 iir |= UART_IIR_THRI;
1722 }
1723
1724 if (!(iir & UART_IIR_NO_INT))
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001725 serial8250_tx_chars(up);
Alex Williamson40b36da2007-02-14 00:33:04 -08001726
Alan Coxd4e33fa2012-01-26 17:44:09 +00001727 if (up->port.irq)
Alex Williamson40b36da2007-02-14 00:33:04 -08001728 serial_out(up, UART_IER, ier);
1729
Al Cooperdbb3b1c2011-07-25 16:19:52 -04001730 spin_unlock_irqrestore(&up->port.lock, flags);
1731
Alex Williamson40b36da2007-02-14 00:33:04 -08001732 /* Standard timer interval plus 0.2s to keep the port running */
Alan Cox6f803cd2008-02-08 04:18:52 -08001733 mod_timer(&up->timer,
Anton Vorontsov54381062010-10-01 17:21:25 +04001734 jiffies + uart_poll_timeout(&up->port) + HZ / 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
1737static unsigned int serial8250_tx_empty(struct uart_port *port)
1738{
Jamie Iles49d57412010-12-01 23:39:35 +00001739 struct uart_8250_port *up =
1740 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 unsigned long flags;
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001742 unsigned int lsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001744 spin_lock_irqsave(&port->lock, flags);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001745 lsr = serial_port_in(port, UART_LSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001746 up->lsr_saved_flags |= lsr & LSR_SAVE_FLAGS;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001747 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Dick Hollenbeckbca47612009-12-09 12:31:34 -08001749 return (lsr & BOTH_EMPTY) == BOTH_EMPTY ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
1752static unsigned int serial8250_get_mctrl(struct uart_port *port)
1753{
Jamie Iles49d57412010-12-01 23:39:35 +00001754 struct uart_8250_port *up =
1755 container_of(port, struct uart_8250_port, port);
Russell King2af7cd62006-01-04 16:55:09 +00001756 unsigned int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 unsigned int ret;
1758
Paul Gortmaker3986fb22011-12-04 18:42:20 -05001759 status = serial8250_modem_status(up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 ret = 0;
1762 if (status & UART_MSR_DCD)
1763 ret |= TIOCM_CAR;
1764 if (status & UART_MSR_RI)
1765 ret |= TIOCM_RNG;
1766 if (status & UART_MSR_DSR)
1767 ret |= TIOCM_DSR;
1768 if (status & UART_MSR_CTS)
1769 ret |= TIOCM_CTS;
1770 return ret;
1771}
1772
1773static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
1774{
Jamie Iles49d57412010-12-01 23:39:35 +00001775 struct uart_8250_port *up =
1776 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 unsigned char mcr = 0;
1778
1779 if (mctrl & TIOCM_RTS)
1780 mcr |= UART_MCR_RTS;
1781 if (mctrl & TIOCM_DTR)
1782 mcr |= UART_MCR_DTR;
1783 if (mctrl & TIOCM_OUT1)
1784 mcr |= UART_MCR_OUT1;
1785 if (mctrl & TIOCM_OUT2)
1786 mcr |= UART_MCR_OUT2;
1787 if (mctrl & TIOCM_LOOP)
1788 mcr |= UART_MCR_LOOP;
1789
1790 mcr = (mcr & up->mcr_mask) | up->mcr_force | up->mcr;
1791
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001792 serial_port_out(port, UART_MCR, mcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793}
1794
1795static void serial8250_break_ctl(struct uart_port *port, int break_state)
1796{
Jamie Iles49d57412010-12-01 23:39:35 +00001797 struct uart_8250_port *up =
1798 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 unsigned long flags;
1800
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001801 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 if (break_state == -1)
1803 up->lcr |= UART_LCR_SBC;
1804 else
1805 up->lcr &= ~UART_LCR_SBC;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001806 serial_port_out(port, UART_LCR, up->lcr);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001807 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
Alex Williamson40b36da2007-02-14 00:33:04 -08001810/*
1811 * Wait for transmitter & holding register to empty
1812 */
Will Newtonb5d674a2008-10-13 10:36:21 +01001813static void wait_for_xmitr(struct uart_8250_port *up, int bits)
Alex Williamson40b36da2007-02-14 00:33:04 -08001814{
1815 unsigned int status, tmout = 10000;
1816
1817 /* Wait up to 10ms for the character(s) to be sent. */
David Daney97d303b2010-10-05 11:40:07 -07001818 for (;;) {
Alex Williamson40b36da2007-02-14 00:33:04 -08001819 status = serial_in(up, UART_LSR);
1820
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001821 up->lsr_saved_flags |= status & LSR_SAVE_FLAGS;
Alex Williamson40b36da2007-02-14 00:33:04 -08001822
David Daney97d303b2010-10-05 11:40:07 -07001823 if ((status & bits) == bits)
1824 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001825 if (--tmout == 0)
1826 break;
1827 udelay(1);
David Daney97d303b2010-10-05 11:40:07 -07001828 }
Alex Williamson40b36da2007-02-14 00:33:04 -08001829
1830 /* Wait up to 1s for flow control if necessary */
1831 if (up->port.flags & UPF_CONS_FLOW) {
Corey Minyardad4c2aa2007-08-22 14:01:18 -07001832 unsigned int tmout;
1833 for (tmout = 1000000; tmout; tmout--) {
1834 unsigned int msr = serial_in(up, UART_MSR);
1835 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS;
1836 if (msr & UART_MSR_CTS)
1837 break;
Alex Williamson40b36da2007-02-14 00:33:04 -08001838 udelay(1);
1839 touch_nmi_watchdog();
1840 }
1841 }
1842}
1843
Jason Wesself2d937f2008-04-17 20:05:37 +02001844#ifdef CONFIG_CONSOLE_POLL
1845/*
1846 * Console polling routines for writing and reading from the uart while
1847 * in an interrupt or debug context.
1848 */
1849
1850static int serial8250_get_poll_char(struct uart_port *port)
1851{
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001852 unsigned char lsr = serial_port_in(port, UART_LSR);
Jason Wesself2d937f2008-04-17 20:05:37 +02001853
Jason Wesself5316b42010-05-20 21:04:22 -05001854 if (!(lsr & UART_LSR_DR))
1855 return NO_POLL_CHAR;
Jason Wesself2d937f2008-04-17 20:05:37 +02001856
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001857 return serial_port_in(port, UART_RX);
Jason Wesself2d937f2008-04-17 20:05:37 +02001858}
1859
1860
1861static void serial8250_put_poll_char(struct uart_port *port,
1862 unsigned char c)
1863{
1864 unsigned int ier;
Jamie Iles49d57412010-12-01 23:39:35 +00001865 struct uart_8250_port *up =
1866 container_of(port, struct uart_8250_port, port);
Jason Wesself2d937f2008-04-17 20:05:37 +02001867
1868 /*
1869 * First save the IER then disable the interrupts
1870 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001871 ier = serial_port_in(port, UART_IER);
Jason Wesself2d937f2008-04-17 20:05:37 +02001872 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001873 serial_port_out(port, UART_IER, UART_IER_UUE);
Jason Wesself2d937f2008-04-17 20:05:37 +02001874 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001875 serial_port_out(port, UART_IER, 0);
Jason Wesself2d937f2008-04-17 20:05:37 +02001876
1877 wait_for_xmitr(up, BOTH_EMPTY);
1878 /*
1879 * Send the character out.
1880 * If a LF, also do CR...
1881 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001882 serial_port_out(port, UART_TX, c);
Jason Wesself2d937f2008-04-17 20:05:37 +02001883 if (c == 10) {
1884 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001885 serial_port_out(port, UART_TX, 13);
Jason Wesself2d937f2008-04-17 20:05:37 +02001886 }
1887
1888 /*
1889 * Finally, wait for transmitter to become empty
1890 * and restore the IER
1891 */
1892 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001893 serial_port_out(port, UART_IER, ier);
Jason Wesself2d937f2008-04-17 20:05:37 +02001894}
1895
1896#endif /* CONFIG_CONSOLE_POLL */
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898static int serial8250_startup(struct uart_port *port)
1899{
Jamie Iles49d57412010-12-01 23:39:35 +00001900 struct uart_8250_port *up =
1901 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 unsigned long flags;
Russell King55d3b282005-06-23 15:05:41 +01001903 unsigned char lsr, iir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 int retval;
1905
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001906 port->fifosize = uart_config[up->port.type].fifo_size;
Ondrej Puzmane4f05af2010-12-04 21:17:38 +01001907 up->tx_loadsz = uart_config[up->port.type].tx_loadsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 up->capabilities = uart_config[up->port.type].flags;
1909 up->mcr = 0;
1910
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001911 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01001912 set_io_from_upio(port);
1913
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001914 if (port->type == PORT_16C950) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 /* Wake up and initialize UART */
1916 up->acr = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001917 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1918 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1919 serial_port_out(port, UART_IER, 0);
1920 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001922 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
1923 serial_port_out(port, UART_EFR, UART_EFR_ECB);
1924 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
1926
1927#ifdef CONFIG_SERIAL_8250_RSA
1928 /*
1929 * If this is an RSA port, see if we can kick it up to the
1930 * higher speed clock.
1931 */
1932 enable_rsa(up);
1933#endif
1934
1935 /*
1936 * Clear the FIFO buffers and disable them.
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001937 * (they will be reenabled in set_termios())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 */
1939 serial8250_clear_fifos(up);
1940
1941 /*
1942 * Clear the interrupt registers.
1943 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001944 serial_port_in(port, UART_LSR);
1945 serial_port_in(port, UART_RX);
1946 serial_port_in(port, UART_IIR);
1947 serial_port_in(port, UART_MSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 /*
1950 * At this point, there's no way the LSR could still be 0xff;
1951 * if it is, then bail out, because there's likely no UART
1952 * here.
1953 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001954 if (!(port->flags & UPF_BUGGY_UART) &&
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001955 (serial_port_in(port, UART_LSR) == 0xff)) {
Konrad Rzeszutek Wilk7808a4c2011-09-26 09:14:34 -04001956 printk_ratelimited(KERN_INFO "ttyS%d: LSR safety check engaged!\n",
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001957 serial_index(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return -ENODEV;
1959 }
1960
1961 /*
1962 * For a XR16C850, we need to set the trigger levels
1963 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001964 if (port->type == PORT_16850) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 unsigned char fctr;
1966
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001967 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Paul Gortmaker0acf5192012-03-08 19:12:08 -05001969 fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001970 serial_port_out(port, UART_FCTR,
1971 fctr | UART_FCTR_TRGD | UART_FCTR_RX);
1972 serial_port_out(port, UART_TRG, UART_TRG_96);
1973 serial_port_out(port, UART_FCTR,
1974 fctr | UART_FCTR_TRGD | UART_FCTR_TX);
1975 serial_port_out(port, UART_TRG, UART_TRG_96);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001977 serial_port_out(port, UART_LCR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
1979
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001980 if (port->irq) {
Alex Williamson01c194d2008-04-28 02:14:09 -07001981 unsigned char iir1;
Alex Williamson40b36da2007-02-14 00:33:04 -08001982 /*
1983 * Test for UARTs that do not reassert THRE when the
1984 * transmitter is idle and the interrupt has already
1985 * been cleared. Real 16550s should always reassert
1986 * this interrupt whenever the transmitter is idle and
1987 * the interrupt is enabled. Delays are necessary to
1988 * allow register changes to become visible.
1989 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001990 spin_lock_irqsave(&port->lock, flags);
Vikram Pandita1c2f0492009-09-19 13:13:19 -07001991 if (up->port.irqflags & IRQF_SHARED)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05001992 disable_irq_nosync(port->irq);
Alex Williamson40b36da2007-02-14 00:33:04 -08001993
1994 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker55e40162012-03-08 19:12:14 -05001995 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08001996 udelay(1); /* allow THRE to set */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05001997 iir1 = serial_port_in(port, UART_IIR);
1998 serial_port_out(port, UART_IER, 0);
Paul Gortmaker55e40162012-03-08 19:12:14 -05001999 serial_port_out_sync(port, UART_IER, UART_IER_THRI);
Alex Williamson40b36da2007-02-14 00:33:04 -08002000 udelay(1); /* allow a working UART time to re-assert THRE */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002001 iir = serial_port_in(port, UART_IIR);
2002 serial_port_out(port, UART_IER, 0);
Alex Williamson40b36da2007-02-14 00:33:04 -08002003
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002004 if (port->irqflags & IRQF_SHARED)
2005 enable_irq(port->irq);
2006 spin_unlock_irqrestore(&port->lock, flags);
Alex Williamson40b36da2007-02-14 00:33:04 -08002007
2008 /*
Dan Williamsbc02d152012-04-06 11:49:50 -07002009 * If the interrupt is not reasserted, or we otherwise
2010 * don't trust the iir, setup a timer to kick the UART
2011 * on a regular basis.
Alex Williamson40b36da2007-02-14 00:33:04 -08002012 */
Dan Williamsbc02d152012-04-06 11:49:50 -07002013 if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) ||
2014 up->port.flags & UPF_BUG_THRE) {
Will Newton363f66f2008-09-02 14:35:44 -07002015 up->bugs |= UART_BUG_THRE;
David S. Miller84408382008-10-13 10:45:26 +01002016 pr_debug("ttyS%d - using backup timer\n",
2017 serial_index(port));
Alex Williamson40b36da2007-02-14 00:33:04 -08002018 }
2019 }
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 /*
Will Newton363f66f2008-09-02 14:35:44 -07002022 * The above check will only give an accurate result the first time
2023 * the port is opened so this value needs to be preserved.
2024 */
2025 if (up->bugs & UART_BUG_THRE) {
2026 up->timer.function = serial8250_backup_timeout;
2027 up->timer.data = (unsigned long)up;
2028 mod_timer(&up->timer, jiffies +
Anton Vorontsov54381062010-10-01 17:21:25 +04002029 uart_poll_timeout(port) + HZ / 5);
Will Newton363f66f2008-09-02 14:35:44 -07002030 }
2031
2032 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 * If the "interrupt" for this port doesn't correspond with any
2034 * hardware interrupt, we use a timer-based system. The original
2035 * driver used to do this with IRQ0.
2036 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002037 if (!port->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 up->timer.data = (unsigned long)up;
Anton Vorontsov54381062010-10-01 17:21:25 +04002039 mod_timer(&up->timer, jiffies + uart_poll_timeout(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 } else {
2041 retval = serial_link_irq_chain(up);
2042 if (retval)
2043 return retval;
2044 }
2045
2046 /*
2047 * Now, initialize the UART
2048 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002049 serial_port_out(port, UART_LCR, UART_LCR_WLEN8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002051 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 if (up->port.flags & UPF_FOURPORT) {
Alan Coxd4e33fa2012-01-26 17:44:09 +00002053 if (!up->port.irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 up->port.mctrl |= TIOCM_OUT1;
2055 } else
2056 /*
2057 * Most PC uarts need OUT2 raised to enable interrupts.
2058 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002059 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 up->port.mctrl |= TIOCM_OUT2;
2061
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002062 serial8250_set_mctrl(port, port->mctrl);
Russell King55d3b282005-06-23 15:05:41 +01002063
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002064 /* Serial over Lan (SoL) hack:
2065 Intel 8257x Gigabit ethernet chips have a
2066 16550 emulation, to be used for Serial Over Lan.
2067 Those chips take a longer time than a normal
2068 serial device to signalize that a transmission
2069 data was queued. Due to that, the above test generally
2070 fails. One solution would be to delay the reading of
2071 iir. However, this is not reliable, since the timeout
2072 is variable. So, let's just don't test if we receive
2073 TX irq. This way, we'll never enable UART_BUG_TXEN.
2074 */
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07002075 if (skip_txen_test || up->port.flags & UPF_NO_TXEN_TEST)
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002076 goto dont_test_tx_en;
2077
Russell King55d3b282005-06-23 15:05:41 +01002078 /*
2079 * Do a quick test to see if we receive an
2080 * interrupt when we enable the TX irq.
2081 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002082 serial_port_out(port, UART_IER, UART_IER_THRI);
2083 lsr = serial_port_in(port, UART_LSR);
2084 iir = serial_port_in(port, UART_IIR);
2085 serial_port_out(port, UART_IER, 0);
Russell King55d3b282005-06-23 15:05:41 +01002086
2087 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) {
Russell King67f76542005-06-23 22:26:43 +01002088 if (!(up->bugs & UART_BUG_TXEN)) {
2089 up->bugs |= UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002090 pr_debug("ttyS%d - enabling bad tx status workarounds\n",
David S. Miller84408382008-10-13 10:45:26 +01002091 serial_index(port));
Russell King55d3b282005-06-23 15:05:41 +01002092 }
2093 } else {
Russell King67f76542005-06-23 22:26:43 +01002094 up->bugs &= ~UART_BUG_TXEN;
Russell King55d3b282005-06-23 15:05:41 +01002095 }
2096
Mauro Carvalho Chehabb6adea32009-02-20 15:38:52 -08002097dont_test_tx_en:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002098 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 /*
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002101 * Clear the interrupt registers again for luck, and clear the
2102 * saved flags to avoid getting false values from polling
2103 * routines or the previous session.
2104 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002105 serial_port_in(port, UART_LSR);
2106 serial_port_in(port, UART_RX);
2107 serial_port_in(port, UART_IIR);
2108 serial_port_in(port, UART_MSR);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002109 up->lsr_saved_flags = 0;
2110 up->msr_saved_flags = 0;
2111
2112 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 * Finally, enable interrupts. Note: Modem status interrupts
2114 * are set via set_termios(), which will be occurring imminently
2115 * anyway, so we don't enable them here.
2116 */
2117 up->ier = UART_IER_RLSI | UART_IER_RDI;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002118 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002120 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 unsigned int icp;
2122 /*
2123 * Enable interrupts on the AST Fourport board
2124 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002125 icp = (port->iobase & 0xfe0) | 0x01f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 outb_p(0x80, icp);
Paul Gortmaker0d263a22012-03-08 19:12:10 -05002127 inb_p(icp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return 0;
2131}
2132
2133static void serial8250_shutdown(struct uart_port *port)
2134{
Jamie Iles49d57412010-12-01 23:39:35 +00002135 struct uart_8250_port *up =
2136 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 unsigned long flags;
2138
2139 /*
2140 * Disable interrupts from this port
2141 */
2142 up->ier = 0;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002143 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002145 spin_lock_irqsave(&port->lock, flags);
2146 if (port->flags & UPF_FOURPORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 /* reset interrupts on the AST Fourport board */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002148 inb((port->iobase & 0xfe0) | 0x1f);
2149 port->mctrl |= TIOCM_OUT1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002151 port->mctrl &= ~TIOCM_OUT2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002153 serial8250_set_mctrl(port, port->mctrl);
2154 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 /*
2157 * Disable break condition and FIFOs
2158 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002159 serial_port_out(port, UART_LCR,
2160 serial_port_in(port, UART_LCR) & ~UART_LCR_SBC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 serial8250_clear_fifos(up);
2162
2163#ifdef CONFIG_SERIAL_8250_RSA
2164 /*
2165 * Reset the RSA board back to 115kbps compat mode.
2166 */
2167 disable_rsa(up);
2168#endif
2169
2170 /*
2171 * Read data port to reset things, and then unlink from
2172 * the IRQ chain.
2173 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002174 serial_port_in(port, UART_RX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Alex Williamson40b36da2007-02-14 00:33:04 -08002176 del_timer_sync(&up->timer);
2177 up->timer.function = serial8250_timeout;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002178 if (port->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 serial_unlink_irq_chain(up);
2180}
2181
2182static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud)
2183{
2184 unsigned int quot;
2185
2186 /*
2187 * Handle magic divisors for baud rates above baud_base on
2188 * SMSC SuperIO chips.
2189 */
2190 if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2191 baud == (port->uartclk/4))
2192 quot = 0x8001;
2193 else if ((port->flags & UPF_MAGIC_MULTIPLIER) &&
2194 baud == (port->uartclk/8))
2195 quot = 0x8002;
2196 else
2197 quot = uart_get_divisor(port, baud);
2198
2199 return quot;
2200}
2201
Philippe Langlais235dae52010-07-29 17:13:57 +02002202void
2203serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios,
2204 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
Jamie Iles49d57412010-12-01 23:39:35 +00002206 struct uart_8250_port *up =
2207 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 unsigned char cval, fcr = 0;
2209 unsigned long flags;
2210 unsigned int baud, quot;
2211
2212 switch (termios->c_cflag & CSIZE) {
2213 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +01002214 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 break;
2216 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +01002217 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 break;
2219 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +01002220 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 break;
2222 default:
2223 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +01002224 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 break;
2226 }
2227
2228 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +01002229 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 if (termios->c_cflag & PARENB)
2231 cval |= UART_LCR_PARITY;
2232 if (!(termios->c_cflag & PARODD))
2233 cval |= UART_LCR_EPAR;
2234#ifdef CMSPAR
2235 if (termios->c_cflag & CMSPAR)
2236 cval |= UART_LCR_SPAR;
2237#endif
2238
2239 /*
2240 * Ask the core to calculate the divisor for us.
2241 */
Anton Vorontsov24d481e2009-09-19 13:13:20 -07002242 baud = uart_get_baud_rate(port, termios, old,
2243 port->uartclk / 16 / 0xffff,
2244 port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 quot = serial8250_get_divisor(port, baud);
2246
2247 /*
Russell King4ba5e352005-06-23 10:43:04 +01002248 * Oxford Semi 952 rev B workaround
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 */
Russell King4ba5e352005-06-23 10:43:04 +01002250 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0)
Alan Cox3e8d4e22008-02-04 22:27:53 -08002251 quot++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002253 if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) {
Christian Melkif9a91112012-04-30 11:21:26 +02002254 fcr = uart_config[port->type].fcr;
2255 if (baud < 2400) {
2256 fcr &= ~UART_FCR_TRIGGER_MASK;
2257 fcr |= UART_FCR_TRIGGER_1;
2258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 }
2260
2261 /*
2262 * MCR-based auto flow control. When AFE is enabled, RTS will be
2263 * deasserted when the receive FIFO contains more characters than
2264 * the trigger, or the MCR RTS bit is cleared. In the case where
2265 * the remote UART is not using CTS auto flow control, we must
2266 * have sufficient FIFO entries for the latency of the remote
2267 * UART to respond. IOW, at least 32 bytes of FIFO.
2268 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002269 if (up->capabilities & UART_CAP_AFE && port->fifosize >= 32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 up->mcr &= ~UART_MCR_AFE;
2271 if (termios->c_cflag & CRTSCTS)
2272 up->mcr |= UART_MCR_AFE;
2273 }
2274
2275 /*
2276 * Ok, we're now changing the port state. Do it with
2277 * interrupts disabled.
2278 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002279 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 /*
2282 * Update the per-port timeout.
2283 */
2284 uart_update_timeout(port, termios->c_cflag, baud);
2285
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002286 port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (termios->c_iflag & INPCK)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002288 port->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 if (termios->c_iflag & (BRKINT | PARMRK))
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002290 port->read_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 /*
2293 * Characteres to ignore
2294 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002295 port->ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002297 port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 if (termios->c_iflag & IGNBRK) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002299 port->ignore_status_mask |= UART_LSR_BI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 /*
2301 * If we're ignoring parity and break indicators,
2302 * ignore overruns too (for real raw support).
2303 */
2304 if (termios->c_iflag & IGNPAR)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002305 port->ignore_status_mask |= UART_LSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307
2308 /*
2309 * ignore all characters if CREAD is not set
2310 */
2311 if ((termios->c_cflag & CREAD) == 0)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002312 port->ignore_status_mask |= UART_LSR_DR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
2314 /*
2315 * CTS flow control flag and modem status interrupts
2316 */
Ingo Molnarf8b372a2010-11-13 16:21:58 +01002317 up->ier &= ~UART_IER_MSI;
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002318 if (!(up->bugs & UART_BUG_NOMSR) &&
2319 UART_ENABLE_MS(&up->port, termios->c_cflag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 up->ier |= UART_IER_MSI;
2321 if (up->capabilities & UART_CAP_UUE)
Stephen Warren4539c242011-05-17 16:12:36 -06002322 up->ier |= UART_IER_UUE;
2323 if (up->capabilities & UART_CAP_RTOIE)
2324 up->ier |= UART_IER_RTOIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002326 serial_port_out(port, UART_IER, up->ier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328 if (up->capabilities & UART_CAP_EFR) {
2329 unsigned char efr = 0;
2330 /*
2331 * TI16C752/Startech hardware flow control. FIXME:
2332 * - TI16C752 requires control thresholds to be set.
2333 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled.
2334 */
2335 if (termios->c_cflag & CRTSCTS)
2336 efr |= UART_EFR_CTS;
2337
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002338 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002339 if (port->flags & UPF_EXAR_EFR)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002340 serial_port_out(port, UART_XR_EFR, efr);
Søren Holm06315342011-09-02 22:55:37 +02002341 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002342 serial_port_out(port, UART_EFR, efr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
2344
Russell Kingf2eda272008-09-01 21:47:59 +01002345#ifdef CONFIG_ARCH_OMAP
Jonathan McDowell255341c2006-08-14 23:05:32 -07002346 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
Russell King56685452008-09-01 21:25:33 +01002347 if (cpu_is_omap1510() && is_omap_port(up)) {
Jonathan McDowell255341c2006-08-14 23:05:32 -07002348 if (baud == 115200) {
2349 quot = 1;
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002350 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002351 } else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002352 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0);
Jonathan McDowell255341c2006-08-14 23:05:32 -07002353 }
2354#endif
2355
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002356 /*
2357 * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2,
2358 * otherwise just set DLAB
2359 */
2360 if (up->capabilities & UART_NATSEMI)
2361 serial_port_out(port, UART_LCR, 0xe0);
2362 else
2363 serial_port_out(port, UART_LCR, cval | UART_LCR_DLAB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Jon Anders Haugumb32b19b2006-04-30 11:20:56 +01002365 serial_dl_write(up, quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 /*
2368 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR
2369 * is written without DLAB set, this mode will be disabled.
2370 */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002371 if (port->type == PORT_16750)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002372 serial_port_out(port, UART_FCR, fcr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002374 serial_port_out(port, UART_LCR, cval); /* reset DLAB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 up->lcr = cval; /* Save LCR */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002376 if (port->type != PORT_16750) {
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002377 /* emulated UARTs (Lucent Venus 167x) need two steps */
2378 if (fcr & UART_FCR_ENABLE_FIFO)
2379 serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);
2380 serial_port_out(port, UART_FCR, fcr); /* set fcr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002382 serial8250_set_mctrl(port, port->mctrl);
2383 spin_unlock_irqrestore(&port->lock, flags);
Alan Coxe991a2b2008-04-28 02:14:06 -07002384 /* Don't rewrite B0 */
2385 if (tty_termios_baud_rate(termios))
2386 tty_termios_encode_baud_rate(termios, baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387}
Philippe Langlais235dae52010-07-29 17:13:57 +02002388EXPORT_SYMBOL(serial8250_do_set_termios);
2389
2390static void
2391serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2392 struct ktermios *old)
2393{
2394 if (port->set_termios)
2395 port->set_termios(port, termios, old);
2396 else
2397 serial8250_do_set_termios(port, termios, old);
2398}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400static void
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002401serial8250_set_ldisc(struct uart_port *port, int new)
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002402{
Arnd Bergmanna0821df2010-06-01 22:53:11 +02002403 if (new == N_PPS) {
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002404 port->flags |= UPF_HARDPPS_CD;
2405 serial8250_enable_ms(port);
2406 } else
2407 port->flags &= ~UPF_HARDPPS_CD;
2408}
2409
Manuel Laussc161afe2010-09-25 15:13:45 +02002410
2411void serial8250_do_pm(struct uart_port *port, unsigned int state,
2412 unsigned int oldstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
Jamie Iles49d57412010-12-01 23:39:35 +00002414 struct uart_8250_port *p =
2415 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 serial8250_set_sleep(p, state != 0);
Manuel Laussc161afe2010-09-25 15:13:45 +02002418}
2419EXPORT_SYMBOL(serial8250_do_pm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Manuel Laussc161afe2010-09-25 15:13:45 +02002421static void
2422serial8250_pm(struct uart_port *port, unsigned int state,
2423 unsigned int oldstate)
2424{
2425 if (port->pm)
2426 port->pm(port, state, oldstate);
2427 else
2428 serial8250_do_pm(port, state, oldstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
2430
Russell Kingf2eda272008-09-01 21:47:59 +01002431static unsigned int serial8250_port_size(struct uart_8250_port *pt)
2432{
2433 if (pt->port.iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002434 return 0x1000;
Russell Kingf2eda272008-09-01 21:47:59 +01002435#ifdef CONFIG_ARCH_OMAP
2436 if (is_omap_port(pt))
2437 return 0x16 << pt->port.regshift;
2438#endif
2439 return 8 << pt->port.regshift;
2440}
2441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442/*
2443 * Resource handling.
2444 */
2445static int serial8250_request_std_resource(struct uart_8250_port *up)
2446{
Russell Kingf2eda272008-09-01 21:47:59 +01002447 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002448 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 int ret = 0;
2450
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002451 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002452 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002453 case UPIO_TSI:
2454 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002456 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 break;
2458
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002459 if (!request_mem_region(port->mapbase, size, "serial")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 ret = -EBUSY;
2461 break;
2462 }
2463
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002464 if (port->flags & UPF_IOREMAP) {
2465 port->membase = ioremap_nocache(port->mapbase, size);
2466 if (!port->membase) {
2467 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 ret = -ENOMEM;
2469 }
2470 }
2471 break;
2472
2473 case UPIO_HUB6:
2474 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002475 if (!request_region(port->iobase, size, "serial"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 ret = -EBUSY;
2477 break;
2478 }
2479 return ret;
2480}
2481
2482static void serial8250_release_std_resource(struct uart_8250_port *up)
2483{
Russell Kingf2eda272008-09-01 21:47:59 +01002484 unsigned int size = serial8250_port_size(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002485 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002487 switch (port->iotype) {
Sergei Shtylyov85835f42006-04-30 11:15:58 +01002488 case UPIO_AU:
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002489 case UPIO_TSI:
2490 case UPIO_MEM32:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 case UPIO_MEM:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002492 if (!port->mapbase)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 break;
2494
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002495 if (port->flags & UPF_IOREMAP) {
2496 iounmap(port->membase);
2497 port->membase = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 }
2499
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002500 release_mem_region(port->mapbase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 break;
2502
2503 case UPIO_HUB6:
2504 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002505 release_region(port->iobase, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 break;
2507 }
2508}
2509
2510static int serial8250_request_rsa_resource(struct uart_8250_port *up)
2511{
2512 unsigned long start = UART_RSA_BASE << up->port.regshift;
2513 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002514 struct uart_port *port = &up->port;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002515 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002517 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 case UPIO_HUB6:
2519 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002520 start += port->iobase;
Sergei Shtylyov0b30d662006-09-09 22:23:56 +04002521 if (request_region(start, size, "serial-rsa"))
2522 ret = 0;
2523 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 ret = -EBUSY;
2525 break;
2526 }
2527
2528 return ret;
2529}
2530
2531static void serial8250_release_rsa_resource(struct uart_8250_port *up)
2532{
2533 unsigned long offset = UART_RSA_BASE << up->port.regshift;
2534 unsigned int size = 8 << up->port.regshift;
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002535 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002537 switch (port->iotype) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 case UPIO_HUB6:
2539 case UPIO_PORT:
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002540 release_region(port->iobase + offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 break;
2542 }
2543}
2544
2545static void serial8250_release_port(struct uart_port *port)
2546{
Jamie Iles49d57412010-12-01 23:39:35 +00002547 struct uart_8250_port *up =
2548 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550 serial8250_release_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002551 if (port->type == PORT_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 serial8250_release_rsa_resource(up);
2553}
2554
2555static int serial8250_request_port(struct uart_port *port)
2556{
Jamie Iles49d57412010-12-01 23:39:35 +00002557 struct uart_8250_port *up =
2558 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 int ret = 0;
2560
2561 ret = serial8250_request_std_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002562 if (ret == 0 && port->type == PORT_RSA) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 ret = serial8250_request_rsa_resource(up);
2564 if (ret < 0)
2565 serial8250_release_std_resource(up);
2566 }
2567
2568 return ret;
2569}
2570
2571static void serial8250_config_port(struct uart_port *port, int flags)
2572{
Jamie Iles49d57412010-12-01 23:39:35 +00002573 struct uart_8250_port *up =
2574 container_of(port, struct uart_8250_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 int probeflags = PROBE_ANY;
2576 int ret;
2577
2578 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 * Find the region that we can probe for. This in turn
2580 * tells us whether we can probe for the type of port.
2581 */
2582 ret = serial8250_request_std_resource(up);
2583 if (ret < 0)
2584 return;
2585
2586 ret = serial8250_request_rsa_resource(up);
2587 if (ret < 0)
2588 probeflags &= ~PROBE_RSA;
2589
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002590 if (port->iotype != up->cur_iotype)
Alan Coxb8e7e402009-05-28 14:01:35 +01002591 set_io_from_upio(port);
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 if (flags & UART_CONFIG_TYPE)
2594 autoconfig(up, probeflags);
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002595
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002596 /* if access method is AU, it is a 16550 with a quirk */
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002597 if (port->type == PORT_16550A && port->iotype == UPIO_AU)
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002598 up->bugs |= UART_BUG_NOMSR;
Manuel Laussb2b13cd2009-10-28 21:37:28 +01002599
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002600 if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 autoconfig_irq(up);
2602
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002603 if (port->type != PORT_RSA && probeflags & PROBE_RSA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 serial8250_release_rsa_resource(up);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002605 if (port->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 serial8250_release_std_resource(up);
2607}
2608
2609static int
2610serial8250_verify_port(struct uart_port *port, struct serial_struct *ser)
2611{
Yinghai Lua62c4132008-08-19 20:49:55 -07002612 if (ser->irq >= nr_irqs || ser->irq < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
2614 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS ||
2615 ser->type == PORT_STARTECH)
2616 return -EINVAL;
2617 return 0;
2618}
2619
2620static const char *
2621serial8250_type(struct uart_port *port)
2622{
2623 int type = port->type;
2624
2625 if (type >= ARRAY_SIZE(uart_config))
2626 type = 0;
2627 return uart_config[type].name;
2628}
2629
2630static struct uart_ops serial8250_pops = {
2631 .tx_empty = serial8250_tx_empty,
2632 .set_mctrl = serial8250_set_mctrl,
2633 .get_mctrl = serial8250_get_mctrl,
2634 .stop_tx = serial8250_stop_tx,
2635 .start_tx = serial8250_start_tx,
2636 .stop_rx = serial8250_stop_rx,
2637 .enable_ms = serial8250_enable_ms,
2638 .break_ctl = serial8250_break_ctl,
2639 .startup = serial8250_startup,
2640 .shutdown = serial8250_shutdown,
2641 .set_termios = serial8250_set_termios,
Rodolfo Giomettidc77f162010-03-10 15:23:48 -08002642 .set_ldisc = serial8250_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 .pm = serial8250_pm,
2644 .type = serial8250_type,
2645 .release_port = serial8250_release_port,
2646 .request_port = serial8250_request_port,
2647 .config_port = serial8250_config_port,
2648 .verify_port = serial8250_verify_port,
Jason Wesself2d937f2008-04-17 20:05:37 +02002649#ifdef CONFIG_CONSOLE_POLL
2650 .poll_get_char = serial8250_get_poll_char,
2651 .poll_put_char = serial8250_put_poll_char,
2652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653};
2654
2655static struct uart_8250_port serial8250_ports[UART_NR];
2656
Alan Coxaf7f3742010-10-18 11:38:02 -07002657static void (*serial8250_isa_config)(int port, struct uart_port *up,
2658 unsigned short *capabilities);
2659
2660void serial8250_set_isa_configurator(
2661 void (*v)(int port, struct uart_port *up, unsigned short *capabilities))
2662{
2663 serial8250_isa_config = v;
2664}
2665EXPORT_SYMBOL(serial8250_set_isa_configurator);
2666
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667static void __init serial8250_isa_init_ports(void)
2668{
2669 struct uart_8250_port *up;
2670 static int first = 1;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002671 int i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 if (!first)
2674 return;
2675 first = 0;
2676
Dave Jonesa61c2d72006-01-07 23:18:19 +00002677 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 struct uart_8250_port *up = &serial8250_ports[i];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002679 struct uart_port *port = &up->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002681 port->line = i;
2682 spin_lock_init(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 init_timer(&up->timer);
2685 up->timer.function = serial8250_timeout;
2686
2687 /*
2688 * ALPHA_KLUDGE_MCR needs to be killed.
2689 */
2690 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
2691 up->mcr_force = ALPHA_KLUDGE_MCR;
2692
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002693 port->ops = &serial8250_pops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 }
2695
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002696 if (share_irqs)
2697 irqflag = IRQF_SHARED;
2698
Russell King44454bc2005-06-30 22:41:22 +01002699 for (i = 0, up = serial8250_ports;
Dave Jonesa61c2d72006-01-07 23:18:19 +00002700 i < ARRAY_SIZE(old_serial_port) && i < nr_uarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 i++, up++) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002702 struct uart_port *port = &up->port;
2703
2704 port->iobase = old_serial_port[i].port;
2705 port->irq = irq_canonicalize(old_serial_port[i].irq);
2706 port->irqflags = old_serial_port[i].irqflags;
2707 port->uartclk = old_serial_port[i].baud_base * 16;
2708 port->flags = old_serial_port[i].flags;
2709 port->hub6 = old_serial_port[i].hub6;
2710 port->membase = old_serial_port[i].iomem_base;
2711 port->iotype = old_serial_port[i].io_type;
2712 port->regshift = old_serial_port[i].iomem_reg_shift;
2713 set_io_from_upio(port);
2714 port->irqflags |= irqflag;
Alan Coxaf7f3742010-10-18 11:38:02 -07002715 if (serial8250_isa_config != NULL)
2716 serial8250_isa_config(i, &up->port, &up->capabilities);
2717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 }
2719}
2720
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002721static void
2722serial8250_init_fixed_type_port(struct uart_8250_port *up, unsigned int type)
2723{
2724 up->port.type = type;
2725 up->port.fifosize = uart_config[type].fifo_size;
2726 up->capabilities = uart_config[type].flags;
2727 up->tx_loadsz = uart_config[type].tx_loadsz;
2728}
2729
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730static void __init
2731serial8250_register_ports(struct uart_driver *drv, struct device *dev)
2732{
2733 int i;
2734
Alan Coxb8e7e402009-05-28 14:01:35 +01002735 for (i = 0; i < nr_uarts; i++) {
2736 struct uart_8250_port *up = &serial8250_ports[i];
2737 up->cur_iotype = 0xFF;
2738 }
2739
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 serial8250_isa_init_ports();
2741
Dave Jonesa61c2d72006-01-07 23:18:19 +00002742 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 struct uart_8250_port *up = &serial8250_ports[i];
2744
2745 up->port.dev = dev;
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08002746
2747 if (up->port.flags & UPF_FIXED_TYPE)
2748 serial8250_init_fixed_type_port(up, up->port.type);
2749
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 uart_add_one_port(drv, &up->port);
2751 }
2752}
2753
2754#ifdef CONFIG_SERIAL_8250_CONSOLE
2755
Russell Kingd3587882006-03-20 20:00:09 +00002756static void serial8250_console_putchar(struct uart_port *port, int ch)
2757{
Jamie Iles49d57412010-12-01 23:39:35 +00002758 struct uart_8250_port *up =
2759 container_of(port, struct uart_8250_port, port);
Russell Kingd3587882006-03-20 20:00:09 +00002760
2761 wait_for_xmitr(up, UART_LSR_THRE);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002762 serial_port_out(port, UART_TX, ch);
Russell Kingd3587882006-03-20 20:00:09 +00002763}
2764
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765/*
2766 * Print a string to the serial port trying not to disturb
2767 * any possible real use of the port...
2768 *
2769 * The console_lock must be held when we get here.
2770 */
2771static void
2772serial8250_console_write(struct console *co, const char *s, unsigned int count)
2773{
2774 struct uart_8250_port *up = &serial8250_ports[co->index];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002775 struct uart_port *port = &up->port;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002776 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 unsigned int ier;
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002778 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Andrew Morton78512ec2005-11-07 00:59:13 -08002780 touch_nmi_watchdog();
2781
Andrew Morton68aa2c02006-06-30 02:29:59 -07002782 local_irq_save(flags);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002783 if (port->sysrq) {
Paul Gortmaker86b21192011-12-04 18:42:22 -05002784 /* serial8250_handle_irq() already took the lock */
Andrew Morton68aa2c02006-06-30 02:29:59 -07002785 locked = 0;
2786 } else if (oops_in_progress) {
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002787 locked = spin_trylock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002788 } else
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002789 spin_lock(&port->lock);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 /*
Ralf Baechledc7bf132006-02-15 09:59:47 +00002792 * First save the IER then disable the interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002794 ier = serial_port_in(port, UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
2796 if (up->capabilities & UART_CAP_UUE)
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002797 serial_port_out(port, UART_IER, UART_IER_UUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 else
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002799 serial_port_out(port, UART_IER, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002801 uart_console_write(port, s, count, serial8250_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 /*
2804 * Finally, wait for transmitter to become empty
2805 * and restore the IER
2806 */
Alan Coxf91a3712006-01-21 14:59:12 +00002807 wait_for_xmitr(up, BOTH_EMPTY);
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002808 serial_port_out(port, UART_IER, ier);
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002809
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002810 /*
2811 * The receive handling will happen properly because the
2812 * receive ready bit will still be set; it is not cleared
2813 * on read. However, modem control will not, we must
2814 * call it if we have saved something in the saved flags
2815 * while processing with interrupts off.
2816 */
2817 if (up->msr_saved_flags)
Paul Gortmaker3986fb22011-12-04 18:42:20 -05002818 serial8250_modem_status(up);
Corey Minyardad4c2aa2007-08-22 14:01:18 -07002819
Russell Kingd8a5a8d2006-05-02 16:04:29 +01002820 if (locked)
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002821 spin_unlock(&port->lock);
Andrew Morton68aa2c02006-06-30 02:29:59 -07002822 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
2824
Vivek Goyal118c0ac2007-01-11 01:52:44 +01002825static int __init serial8250_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
2827 struct uart_port *port;
2828 int baud = 9600;
2829 int bits = 8;
2830 int parity = 'n';
2831 int flow = 'n';
2832
2833 /*
2834 * Check whether an invalid uart number has been specified, and
2835 * if so, search for the first available port that does have
2836 * console support.
2837 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00002838 if (co->index >= nr_uarts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 co->index = 0;
2840 port = &serial8250_ports[co->index].port;
2841 if (!port->iobase && !port->membase)
2842 return -ENODEV;
2843
2844 if (options)
2845 uart_parse_options(options, &baud, &parity, &bits, &flow);
2846
2847 return uart_set_options(port, co, baud, parity, bits, flow);
2848}
2849
Daniel Ritzb6b1d872007-08-03 16:07:43 +02002850static int serial8250_console_early_setup(void)
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002851{
2852 return serial8250_find_port_for_earlycon();
2853}
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855static struct console serial8250_console = {
2856 .name = "ttyS",
2857 .write = serial8250_console_write,
2858 .device = uart_console_device,
2859 .setup = serial8250_console_setup,
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002860 .early_setup = serial8250_console_early_setup,
Peter Zijlstraa80c49d2010-11-15 21:11:12 +01002861 .flags = CON_PRINTBUFFER | CON_ANYTIME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 .index = -1,
2863 .data = &serial8250_reg,
2864};
2865
2866static int __init serial8250_console_init(void)
2867{
Eric W. Biederman05d81d22008-07-12 13:47:53 -07002868 if (nr_uarts > UART_NR)
2869 nr_uarts = UART_NR;
2870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 serial8250_isa_init_ports();
2872 register_console(&serial8250_console);
2873 return 0;
2874}
2875console_initcall(serial8250_console_init);
2876
Yinghai Lu18a8bd92007-07-15 23:37:59 -07002877int serial8250_find_port(struct uart_port *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878{
2879 int line;
2880 struct uart_port *port;
2881
Dave Jonesa61c2d72006-01-07 23:18:19 +00002882 for (line = 0; line < nr_uarts; line++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 port = &serial8250_ports[line].port;
Russell King50aec3b52006-01-04 18:13:03 +00002884 if (uart_match_port(p, port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 return line;
2886 }
2887 return -ENODEV;
2888}
2889
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890#define SERIAL8250_CONSOLE &serial8250_console
2891#else
2892#define SERIAL8250_CONSOLE NULL
2893#endif
2894
2895static struct uart_driver serial8250_reg = {
2896 .owner = THIS_MODULE,
2897 .driver_name = "serial",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 .dev_name = "ttyS",
2899 .major = TTY_MAJOR,
2900 .minor = 64,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 .cons = SERIAL8250_CONSOLE,
2902};
2903
Russell Kingd856c662006-02-23 10:22:13 +00002904/*
2905 * early_serial_setup - early registration for 8250 ports
2906 *
2907 * Setup an 8250 port structure prior to console initialisation. Use
2908 * after console initialisation will cause undefined behaviour.
2909 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910int __init early_serial_setup(struct uart_port *port)
2911{
David Daneyb4304282009-01-02 13:49:41 +00002912 struct uart_port *p;
2913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 if (port->line >= ARRAY_SIZE(serial8250_ports))
2915 return -ENODEV;
2916
2917 serial8250_isa_init_ports();
David Daneyb4304282009-01-02 13:49:41 +00002918 p = &serial8250_ports[port->line].port;
2919 p->iobase = port->iobase;
2920 p->membase = port->membase;
2921 p->irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07002922 p->irqflags = port->irqflags;
David Daneyb4304282009-01-02 13:49:41 +00002923 p->uartclk = port->uartclk;
2924 p->fifosize = port->fifosize;
2925 p->regshift = port->regshift;
2926 p->iotype = port->iotype;
2927 p->flags = port->flags;
2928 p->mapbase = port->mapbase;
2929 p->private_data = port->private_data;
Helge Deller125c97d2009-01-13 22:51:07 +01002930 p->type = port->type;
2931 p->line = port->line;
David Daney7d6a07d2009-01-02 13:49:47 +00002932
2933 set_io_from_upio(p);
2934 if (port->serial_in)
2935 p->serial_in = port->serial_in;
2936 if (port->serial_out)
2937 p->serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01002938 if (port->handle_irq)
2939 p->handle_irq = port->handle_irq;
2940 else
2941 p->handle_irq = serial8250_default_handle_irq;
David Daney7d6a07d2009-01-02 13:49:47 +00002942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 return 0;
2944}
2945
2946/**
2947 * serial8250_suspend_port - suspend one serial port
2948 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 *
2950 * Suspend one serial port.
2951 */
2952void serial8250_suspend_port(int line)
2953{
2954 uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port);
2955}
2956
2957/**
2958 * serial8250_resume_port - resume one serial port
2959 * @line: serial line number
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 *
2961 * Resume one serial port.
2962 */
2963void serial8250_resume_port(int line)
2964{
David Woodhouseb5b82df2007-05-17 14:27:39 +08002965 struct uart_8250_port *up = &serial8250_ports[line];
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002966 struct uart_port *port = &up->port;
David Woodhouseb5b82df2007-05-17 14:27:39 +08002967
2968 if (up->capabilities & UART_NATSEMI) {
David Woodhouseb5b82df2007-05-17 14:27:39 +08002969 /* Ensure it's still in high speed mode */
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002970 serial_port_out(port, UART_LCR, 0xE0);
David Woodhouseb5b82df2007-05-17 14:27:39 +08002971
Yin Kangkai0d0389e2011-02-09 11:35:18 +08002972 ns16550a_goto_highspeed(up);
David Woodhouseb5b82df2007-05-17 14:27:39 +08002973
Paul Gortmaker4fd996a2012-03-08 19:12:13 -05002974 serial_port_out(port, UART_LCR, 0);
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002975 port->uartclk = 921600*16;
David Woodhouseb5b82df2007-05-17 14:27:39 +08002976 }
Paul Gortmakerdfe42442012-03-08 19:12:11 -05002977 uart_resume_port(&serial8250_reg, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978}
2979
2980/*
2981 * Register a set of serial devices attached to a platform device. The
2982 * list is terminated with a zero flags entry, which means we expect
2983 * all entries to have at least UPF_BOOT_AUTOCONF set.
2984 */
Russell King3ae5eae2005-11-09 22:32:44 +00002985static int __devinit serial8250_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986{
Russell King3ae5eae2005-11-09 22:32:44 +00002987 struct plat_serial8250_port *p = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 struct uart_port port;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002989 int ret, i, irqflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991 memset(&port, 0, sizeof(struct uart_port));
2992
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02002993 if (share_irqs)
2994 irqflag = IRQF_SHARED;
2995
Russell Kingec9f47c2005-06-27 11:12:54 +01002996 for (i = 0; p && p->flags != 0; p++, i++) {
Will Newton74a197412008-02-04 22:27:50 -08002997 port.iobase = p->iobase;
2998 port.membase = p->membase;
2999 port.irq = p->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003000 port.irqflags = p->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003001 port.uartclk = p->uartclk;
3002 port.regshift = p->regshift;
3003 port.iotype = p->iotype;
3004 port.flags = p->flags;
3005 port.mapbase = p->mapbase;
3006 port.hub6 = p->hub6;
3007 port.private_data = p->private_data;
David Daney8e23fcc2009-01-02 13:49:54 +00003008 port.type = p->type;
David Daney7d6a07d2009-01-02 13:49:47 +00003009 port.serial_in = p->serial_in;
3010 port.serial_out = p->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003011 port.handle_irq = p->handle_irq;
Dan Williamsbf03f652012-04-10 14:10:53 -07003012 port.handle_break = p->handle_break;
Philippe Langlais235dae52010-07-29 17:13:57 +02003013 port.set_termios = p->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003014 port.pm = p->pm;
Will Newton74a197412008-02-04 22:27:50 -08003015 port.dev = &dev->dev;
André Goddard Rosa4c0ebb82009-10-25 12:01:34 -02003016 port.irqflags |= irqflag;
Russell Kingec9f47c2005-06-27 11:12:54 +01003017 ret = serial8250_register_port(&port);
3018 if (ret < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00003019 dev_err(&dev->dev, "unable to register port at index %d "
Josh Boyer4f640ef2007-07-23 18:43:44 -07003020 "(IO%lx MEM%llx IRQ%d): %d\n", i,
3021 p->iobase, (unsigned long long)p->mapbase,
3022 p->irq, ret);
Russell Kingec9f47c2005-06-27 11:12:54 +01003023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
3025 return 0;
3026}
3027
3028/*
3029 * Remove serial ports registered against a platform device.
3030 */
Russell King3ae5eae2005-11-09 22:32:44 +00003031static int __devexit serial8250_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032{
3033 int i;
3034
Dave Jonesa61c2d72006-01-07 23:18:19 +00003035 for (i = 0; i < nr_uarts; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 struct uart_8250_port *up = &serial8250_ports[i];
3037
Russell King3ae5eae2005-11-09 22:32:44 +00003038 if (up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 serial8250_unregister_port(i);
3040 }
3041 return 0;
3042}
3043
Russell King3ae5eae2005-11-09 22:32:44 +00003044static int serial8250_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045{
3046 int i;
3047
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 for (i = 0; i < UART_NR; i++) {
3049 struct uart_8250_port *up = &serial8250_ports[i];
3050
Russell King3ae5eae2005-11-09 22:32:44 +00003051 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 uart_suspend_port(&serial8250_reg, &up->port);
3053 }
3054
3055 return 0;
3056}
3057
Russell King3ae5eae2005-11-09 22:32:44 +00003058static int serial8250_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059{
3060 int i;
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 for (i = 0; i < UART_NR; i++) {
3063 struct uart_8250_port *up = &serial8250_ports[i];
3064
Russell King3ae5eae2005-11-09 22:32:44 +00003065 if (up->port.type != PORT_UNKNOWN && up->port.dev == &dev->dev)
David Woodhouseb5b82df2007-05-17 14:27:39 +08003066 serial8250_resume_port(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 }
3068
3069 return 0;
3070}
3071
Russell King3ae5eae2005-11-09 22:32:44 +00003072static struct platform_driver serial8250_isa_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 .probe = serial8250_probe,
3074 .remove = __devexit_p(serial8250_remove),
3075 .suspend = serial8250_suspend,
3076 .resume = serial8250_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00003077 .driver = {
3078 .name = "serial8250",
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003079 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003080 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081};
3082
3083/*
3084 * This "device" covers _all_ ISA 8250-compatible serial devices listed
3085 * in the table in include/asm/serial.h
3086 */
3087static struct platform_device *serial8250_isa_devs;
3088
3089/*
3090 * serial8250_register_port and serial8250_unregister_port allows for
3091 * 16x50 serial ports to be configured at run-time, to support PCMCIA
3092 * modems and PCI multiport cards.
3093 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003094static DEFINE_MUTEX(serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
3096static struct uart_8250_port *serial8250_find_match_or_unused(struct uart_port *port)
3097{
3098 int i;
3099
3100 /*
3101 * First, find a port entry which matches.
3102 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003103 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 if (uart_match_port(&serial8250_ports[i].port, port))
3105 return &serial8250_ports[i];
3106
3107 /*
3108 * We didn't find a matching entry, so look for the first
3109 * free entry. We look for one which hasn't been previously
3110 * used (indicated by zero iobase).
3111 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003112 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 if (serial8250_ports[i].port.type == PORT_UNKNOWN &&
3114 serial8250_ports[i].port.iobase == 0)
3115 return &serial8250_ports[i];
3116
3117 /*
3118 * That also failed. Last resort is to find any entry which
3119 * doesn't have a real port associated with it.
3120 */
Dave Jonesa61c2d72006-01-07 23:18:19 +00003121 for (i = 0; i < nr_uarts; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 if (serial8250_ports[i].port.type == PORT_UNKNOWN)
3123 return &serial8250_ports[i];
3124
3125 return NULL;
3126}
3127
3128/**
3129 * serial8250_register_port - register a serial port
3130 * @port: serial port template
3131 *
3132 * Configure the serial port specified by the request. If the
3133 * port exists and is in use, it is hung up and unregistered
3134 * first.
3135 *
3136 * The port is then probed and if necessary the IRQ is autodetected
3137 * If this fails an error is returned.
3138 *
3139 * On success the port is ready to use and the line number is returned.
3140 */
3141int serial8250_register_port(struct uart_port *port)
3142{
3143 struct uart_8250_port *uart;
3144 int ret = -ENOSPC;
3145
3146 if (port->uartclk == 0)
3147 return -EINVAL;
3148
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003149 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151 uart = serial8250_find_match_or_unused(port);
3152 if (uart) {
3153 uart_remove_one_port(&serial8250_reg, &uart->port);
3154
Will Newton74a197412008-02-04 22:27:50 -08003155 uart->port.iobase = port->iobase;
3156 uart->port.membase = port->membase;
3157 uart->port.irq = port->irq;
Vikram Pandita1c2f0492009-09-19 13:13:19 -07003158 uart->port.irqflags = port->irqflags;
Will Newton74a197412008-02-04 22:27:50 -08003159 uart->port.uartclk = port->uartclk;
3160 uart->port.fifosize = port->fifosize;
3161 uart->port.regshift = port->regshift;
3162 uart->port.iotype = port->iotype;
3163 uart->port.flags = port->flags | UPF_BOOT_AUTOCONF;
3164 uart->port.mapbase = port->mapbase;
3165 uart->port.private_data = port->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 if (port->dev)
3167 uart->port.dev = port->dev;
David Daney8e23fcc2009-01-02 13:49:54 +00003168
Shmulik Ladkanib5d228c2009-12-09 12:31:29 -08003169 if (port->flags & UPF_FIXED_TYPE)
3170 serial8250_init_fixed_type_port(uart, port->type);
David Daney8e23fcc2009-01-02 13:49:54 +00003171
David Daney7d6a07d2009-01-02 13:49:47 +00003172 set_io_from_upio(&uart->port);
3173 /* Possibly override default I/O functions. */
3174 if (port->serial_in)
3175 uart->port.serial_in = port->serial_in;
3176 if (port->serial_out)
3177 uart->port.serial_out = port->serial_out;
Jamie Iles583d28e2011-08-15 10:17:52 +01003178 if (port->handle_irq)
3179 uart->port.handle_irq = port->handle_irq;
Philippe Langlais235dae52010-07-29 17:13:57 +02003180 /* Possibly override set_termios call */
3181 if (port->set_termios)
3182 uart->port.set_termios = port->set_termios;
Manuel Laussc161afe2010-09-25 15:13:45 +02003183 if (port->pm)
3184 uart->port.pm = port->pm;
Dan Williamsbf03f652012-04-10 14:10:53 -07003185 if (port->handle_break)
3186 uart->port.handle_break = port->handle_break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
Alan Coxaf7f3742010-10-18 11:38:02 -07003188 if (serial8250_isa_config != NULL)
3189 serial8250_isa_config(0, &uart->port,
3190 &uart->capabilities);
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 ret = uart_add_one_port(&serial8250_reg, &uart->port);
3193 if (ret == 0)
3194 ret = uart->port.line;
3195 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003196 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
3198 return ret;
3199}
3200EXPORT_SYMBOL(serial8250_register_port);
3201
3202/**
3203 * serial8250_unregister_port - remove a 16x50 serial port at runtime
3204 * @line: serial line number
3205 *
3206 * Remove one serial port. This may not be called from interrupt
3207 * context. We hand the port back to the our control.
3208 */
3209void serial8250_unregister_port(int line)
3210{
3211 struct uart_8250_port *uart = &serial8250_ports[line];
3212
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003213 mutex_lock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 uart_remove_one_port(&serial8250_reg, &uart->port);
3215 if (serial8250_isa_devs) {
3216 uart->port.flags &= ~UPF_BOOT_AUTOCONF;
3217 uart->port.type = PORT_UNKNOWN;
3218 uart->port.dev = &serial8250_isa_devs->dev;
leitao@linux.vnet.ibm.comcb01ece2011-05-26 11:18:39 -03003219 uart->capabilities = uart_config[uart->port.type].flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 uart_add_one_port(&serial8250_reg, &uart->port);
3221 } else {
3222 uart->port.dev = NULL;
3223 }
Arjan van de Venf392ecf2006-01-12 18:44:32 +00003224 mutex_unlock(&serial_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225}
3226EXPORT_SYMBOL(serial8250_unregister_port);
3227
3228static int __init serial8250_init(void)
3229{
Alan Cox25db8ad2008-08-19 20:49:40 -07003230 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Dave Jonesa61c2d72006-01-07 23:18:19 +00003232 if (nr_uarts > UART_NR)
3233 nr_uarts = UART_NR;
3234
Paul Bollef1fb9bb2008-12-30 14:06:43 +01003235 printk(KERN_INFO "Serial: 8250/16550 driver, "
Dave Jonesa61c2d72006-01-07 23:18:19 +00003236 "%d ports, IRQ sharing %sabled\n", nr_uarts,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 share_irqs ? "en" : "dis");
3238
David Millerb70ac772008-10-13 10:36:31 +01003239#ifdef CONFIG_SPARC
3240 ret = sunserial_register_minors(&serial8250_reg, UART_NR);
3241#else
3242 serial8250_reg.nr = UART_NR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 ret = uart_register_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003244#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 if (ret)
3246 goto out;
3247
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003248 serial8250_isa_devs = platform_device_alloc("serial8250",
3249 PLAT8250_DEV_LEGACY);
3250 if (!serial8250_isa_devs) {
3251 ret = -ENOMEM;
Russell Kingbc965a72006-01-18 09:54:29 +00003252 goto unreg_uart_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 }
3254
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003255 ret = platform_device_add(serial8250_isa_devs);
3256 if (ret)
3257 goto put_dev;
3258
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 serial8250_register_ports(&serial8250_reg, &serial8250_isa_devs->dev);
3260
Russell Kingbc965a72006-01-18 09:54:29 +00003261 ret = platform_driver_register(&serial8250_isa_driver);
3262 if (ret == 0)
3263 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Russell Kingbc965a72006-01-18 09:54:29 +00003265 platform_device_del(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003266put_dev:
Dmitry Torokhov7493a312006-01-13 22:06:43 +00003267 platform_device_put(serial8250_isa_devs);
Alan Cox25db8ad2008-08-19 20:49:40 -07003268unreg_uart_drv:
David Millerb70ac772008-10-13 10:36:31 +01003269#ifdef CONFIG_SPARC
3270 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3271#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003273#endif
Alan Cox25db8ad2008-08-19 20:49:40 -07003274out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 return ret;
3276}
3277
3278static void __exit serial8250_exit(void)
3279{
3280 struct platform_device *isa_dev = serial8250_isa_devs;
3281
3282 /*
3283 * This tells serial8250_unregister_port() not to re-register
3284 * the ports (thereby making serial8250_isa_driver permanently
3285 * in use.)
3286 */
3287 serial8250_isa_devs = NULL;
3288
Russell King3ae5eae2005-11-09 22:32:44 +00003289 platform_driver_unregister(&serial8250_isa_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 platform_device_unregister(isa_dev);
3291
David Millerb70ac772008-10-13 10:36:31 +01003292#ifdef CONFIG_SPARC
3293 sunserial_unregister_minors(&serial8250_reg, UART_NR);
3294#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 uart_unregister_driver(&serial8250_reg);
David Millerb70ac772008-10-13 10:36:31 +01003296#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297}
3298
3299module_init(serial8250_init);
3300module_exit(serial8250_exit);
3301
3302EXPORT_SYMBOL(serial8250_suspend_port);
3303EXPORT_SYMBOL(serial8250_resume_port);
3304
3305MODULE_LICENSE("GPL");
Adrian Bunkd87a6d92008-07-16 21:53:31 +01003306MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
3308module_param(share_irqs, uint, 0644);
3309MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
3310 " (unsafe)");
3311
Dave Jonesa61c2d72006-01-07 23:18:19 +00003312module_param(nr_uarts, uint, 0644);
3313MODULE_PARM_DESC(nr_uarts, "Maximum number of UARTs supported. (1-" __MODULE_STRING(CONFIG_SERIAL_8250_NR_UARTS) ")");
3314
Chuck Ebbertd41a4b52009-10-01 15:44:26 -07003315module_param(skip_txen_test, uint, 0644);
3316MODULE_PARM_DESC(skip_txen_test, "Skip checking for the TXEN bug at init time");
3317
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318#ifdef CONFIG_SERIAL_8250_RSA
3319module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
3320MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
3321#endif
3322MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR);