serial-core: power up uart port early before we do set_termios when resuming
[deliverable/linux.git] / drivers / tty / serial / sh-sci.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * SuperH on-chip serial module support. (SCI with no FIFO / with FIFO)
3 *
f43dc23d 4 * Copyright (C) 2002 - 2011 Paul Mundt
3ea6bc3d 5 * Modified to support SH7720 SCIF. Markus Brunner, Mark Jonas (Jul 2007).
1da177e4
LT
6 *
7 * based off of the old drivers/char/sh-sci.c by:
8 *
9 * Copyright (C) 1999, 2000 Niibe Yutaka
10 * Copyright (C) 2000 Sugioka Toshinobu
11 * Modified to support multiple serial ports. Stuart Menefy (May 2000).
12 * Modified to support SecureEdge. David McCullough (2002)
13 * Modified to support SH7300 SCIF. Takashi Kusuda (Jun 2003).
d89ddd1c 14 * Removed SH7300 support (Jul 2007).
1da177e4
LT
15 *
16 * This file is subject to the terms and conditions of the GNU General Public
17 * License. See the file "COPYING" in the main directory of this archive
18 * for more details.
19 */
0b3d4ef6
PM
20#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
21#define SUPPORT_SYSRQ
22#endif
1da177e4
LT
23
24#undef DEBUG
25
1da177e4
LT
26#include <linux/module.h>
27#include <linux/errno.h>
1da177e4
LT
28#include <linux/timer.h>
29#include <linux/interrupt.h>
30#include <linux/tty.h>
31#include <linux/tty_flip.h>
32#include <linux/serial.h>
33#include <linux/major.h>
34#include <linux/string.h>
35#include <linux/sysrq.h>
1da177e4
LT
36#include <linux/ioport.h>
37#include <linux/mm.h>
1da177e4
LT
38#include <linux/init.h>
39#include <linux/delay.h>
40#include <linux/console.h>
e108b2ca 41#include <linux/platform_device.h>
96de1a8f 42#include <linux/serial_sci.h>
1da177e4 43#include <linux/notifier.h>
5e50d2d6 44#include <linux/pm_runtime.h>
1da177e4 45#include <linux/cpufreq.h>
85f094ec 46#include <linux/clk.h>
fa5da2f7 47#include <linux/ctype.h>
7ff731ae 48#include <linux/err.h>
73a19e4c
GL
49#include <linux/dmaengine.h>
50#include <linux/scatterlist.h>
5a0e3ad6 51#include <linux/slab.h>
85f094ec
PM
52
53#ifdef CONFIG_SUPERH
1da177e4
LT
54#include <asm/sh_bios.h>
55#endif
56
1da177e4
LT
57#include "sh-sci.h"
58
e108b2ca
PM
59struct sci_port {
60 struct uart_port port;
61
ce6738b6
PM
62 /* Platform configuration */
63 struct plat_sci_port *cfg;
e108b2ca 64
e108b2ca
PM
65 /* Break timer */
66 struct timer_list break_timer;
67 int break_flag;
1534a3b3 68
501b825d
MD
69 /* Interface clock */
70 struct clk *iclk;
c7ed1ab3
PM
71 /* Function clock */
72 struct clk *fclk;
edad1f20 73
9174fc8f
PM
74 char *irqstr[SCIx_NR_IRQS];
75
73a19e4c
GL
76 struct dma_chan *chan_tx;
77 struct dma_chan *chan_rx;
f43dc23d 78
73a19e4c 79#ifdef CONFIG_SERIAL_SH_SCI_DMA
73a19e4c
GL
80 struct dma_async_tx_descriptor *desc_tx;
81 struct dma_async_tx_descriptor *desc_rx[2];
82 dma_cookie_t cookie_tx;
83 dma_cookie_t cookie_rx[2];
84 dma_cookie_t active_rx;
85 struct scatterlist sg_tx;
86 unsigned int sg_len_tx;
87 struct scatterlist sg_rx[2];
88 size_t buf_len_rx;
89 struct sh_dmae_slave param_tx;
90 struct sh_dmae_slave param_rx;
91 struct work_struct work_tx;
92 struct work_struct work_rx;
93 struct timer_list rx_timer;
3089f381 94 unsigned int rx_timeout;
73a19e4c 95#endif
e552de24 96
d535a230 97 struct notifier_block freq_transition;
e108b2ca
PM
98};
99
1da177e4 100/* Function prototypes */
d535a230 101static void sci_start_tx(struct uart_port *port);
b129a8cc 102static void sci_stop_tx(struct uart_port *port);
d535a230 103static void sci_start_rx(struct uart_port *port);
1da177e4 104
e108b2ca 105#define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
b7a76e4b 106
e108b2ca
PM
107static struct sci_port sci_ports[SCI_NPORTS];
108static struct uart_driver sci_uart_driver;
1da177e4 109
e7c98dc7
MT
110static inline struct sci_port *
111to_sci_port(struct uart_port *uart)
112{
113 return container_of(uart, struct sci_port, port);
114}
115
61a6976b
PM
116struct plat_sci_reg {
117 u8 offset, size;
118};
119
120/* Helper for invalidating specific entries of an inherited map. */
121#define sci_reg_invalid { .offset = 0, .size = 0 }
122
123static struct plat_sci_reg sci_regmap[SCIx_NR_REGTYPES][SCIx_NR_REGS] = {
124 [SCIx_PROBE_REGTYPE] = {
125 [0 ... SCIx_NR_REGS - 1] = sci_reg_invalid,
126 },
127
128 /*
129 * Common SCI definitions, dependent on the port's regshift
130 * value.
131 */
132 [SCIx_SCI_REGTYPE] = {
133 [SCSMR] = { 0x00, 8 },
134 [SCBRR] = { 0x01, 8 },
135 [SCSCR] = { 0x02, 8 },
136 [SCxTDR] = { 0x03, 8 },
137 [SCxSR] = { 0x04, 8 },
138 [SCxRDR] = { 0x05, 8 },
139 [SCFCR] = sci_reg_invalid,
140 [SCFDR] = sci_reg_invalid,
141 [SCTFDR] = sci_reg_invalid,
142 [SCRFDR] = sci_reg_invalid,
143 [SCSPTR] = sci_reg_invalid,
144 [SCLSR] = sci_reg_invalid,
145 },
146
147 /*
148 * Common definitions for legacy IrDA ports, dependent on
149 * regshift value.
150 */
151 [SCIx_IRDA_REGTYPE] = {
152 [SCSMR] = { 0x00, 8 },
153 [SCBRR] = { 0x01, 8 },
154 [SCSCR] = { 0x02, 8 },
155 [SCxTDR] = { 0x03, 8 },
156 [SCxSR] = { 0x04, 8 },
157 [SCxRDR] = { 0x05, 8 },
158 [SCFCR] = { 0x06, 8 },
159 [SCFDR] = { 0x07, 16 },
160 [SCTFDR] = sci_reg_invalid,
161 [SCRFDR] = sci_reg_invalid,
162 [SCSPTR] = sci_reg_invalid,
163 [SCLSR] = sci_reg_invalid,
164 },
165
166 /*
167 * Common SCIFA definitions.
168 */
169 [SCIx_SCIFA_REGTYPE] = {
170 [SCSMR] = { 0x00, 16 },
171 [SCBRR] = { 0x04, 8 },
172 [SCSCR] = { 0x08, 16 },
173 [SCxTDR] = { 0x20, 8 },
174 [SCxSR] = { 0x14, 16 },
175 [SCxRDR] = { 0x24, 8 },
176 [SCFCR] = { 0x18, 16 },
177 [SCFDR] = { 0x1c, 16 },
178 [SCTFDR] = sci_reg_invalid,
179 [SCRFDR] = sci_reg_invalid,
180 [SCSPTR] = sci_reg_invalid,
181 [SCLSR] = sci_reg_invalid,
182 },
183
184 /*
185 * Common SCIFB definitions.
186 */
187 [SCIx_SCIFB_REGTYPE] = {
188 [SCSMR] = { 0x00, 16 },
189 [SCBRR] = { 0x04, 8 },
190 [SCSCR] = { 0x08, 16 },
191 [SCxTDR] = { 0x40, 8 },
192 [SCxSR] = { 0x14, 16 },
193 [SCxRDR] = { 0x60, 8 },
194 [SCFCR] = { 0x18, 16 },
195 [SCFDR] = { 0x1c, 16 },
196 [SCTFDR] = sci_reg_invalid,
197 [SCRFDR] = sci_reg_invalid,
198 [SCSPTR] = sci_reg_invalid,
199 [SCLSR] = sci_reg_invalid,
200 },
201
202 /*
203 * Common SH-3 SCIF definitions.
204 */
205 [SCIx_SH3_SCIF_REGTYPE] = {
206 [SCSMR] = { 0x00, 8 },
207 [SCBRR] = { 0x02, 8 },
208 [SCSCR] = { 0x04, 8 },
209 [SCxTDR] = { 0x06, 8 },
210 [SCxSR] = { 0x08, 16 },
211 [SCxRDR] = { 0x0a, 8 },
212 [SCFCR] = { 0x0c, 8 },
213 [SCFDR] = { 0x0e, 16 },
214 [SCTFDR] = sci_reg_invalid,
215 [SCRFDR] = sci_reg_invalid,
216 [SCSPTR] = sci_reg_invalid,
217 [SCLSR] = sci_reg_invalid,
218 },
219
220 /*
221 * Common SH-4(A) SCIF(B) definitions.
222 */
223 [SCIx_SH4_SCIF_REGTYPE] = {
224 [SCSMR] = { 0x00, 16 },
225 [SCBRR] = { 0x04, 8 },
226 [SCSCR] = { 0x08, 16 },
227 [SCxTDR] = { 0x0c, 8 },
228 [SCxSR] = { 0x10, 16 },
229 [SCxRDR] = { 0x14, 8 },
230 [SCFCR] = { 0x18, 16 },
231 [SCFDR] = { 0x1c, 16 },
232 [SCTFDR] = sci_reg_invalid,
233 [SCRFDR] = sci_reg_invalid,
234 [SCSPTR] = { 0x20, 16 },
235 [SCLSR] = { 0x24, 16 },
236 },
237
238 /*
239 * Common SH-4(A) SCIF(B) definitions for ports without an SCSPTR
240 * register.
241 */
242 [SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE] = {
243 [SCSMR] = { 0x00, 16 },
244 [SCBRR] = { 0x04, 8 },
245 [SCSCR] = { 0x08, 16 },
246 [SCxTDR] = { 0x0c, 8 },
247 [SCxSR] = { 0x10, 16 },
248 [SCxRDR] = { 0x14, 8 },
249 [SCFCR] = { 0x18, 16 },
250 [SCFDR] = { 0x1c, 16 },
251 [SCTFDR] = sci_reg_invalid,
252 [SCRFDR] = sci_reg_invalid,
253 [SCSPTR] = sci_reg_invalid,
254 [SCLSR] = { 0x24, 16 },
255 },
256
257 /*
258 * Common SH-4(A) SCIF(B) definitions for ports with FIFO data
259 * count registers.
260 */
261 [SCIx_SH4_SCIF_FIFODATA_REGTYPE] = {
262 [SCSMR] = { 0x00, 16 },
263 [SCBRR] = { 0x04, 8 },
264 [SCSCR] = { 0x08, 16 },
265 [SCxTDR] = { 0x0c, 8 },
266 [SCxSR] = { 0x10, 16 },
267 [SCxRDR] = { 0x14, 8 },
268 [SCFCR] = { 0x18, 16 },
269 [SCFDR] = { 0x1c, 16 },
270 [SCTFDR] = { 0x1c, 16 }, /* aliased to SCFDR */
271 [SCRFDR] = { 0x20, 16 },
272 [SCSPTR] = { 0x24, 16 },
273 [SCLSR] = { 0x28, 16 },
274 },
275
276 /*
277 * SH7705-style SCIF(B) ports, lacking both SCSPTR and SCLSR
278 * registers.
279 */
280 [SCIx_SH7705_SCIF_REGTYPE] = {
281 [SCSMR] = { 0x00, 16 },
282 [SCBRR] = { 0x04, 8 },
283 [SCSCR] = { 0x08, 16 },
284 [SCxTDR] = { 0x20, 8 },
285 [SCxSR] = { 0x14, 16 },
286 [SCxRDR] = { 0x24, 8 },
287 [SCFCR] = { 0x18, 16 },
288 [SCFDR] = { 0x1c, 16 },
289 [SCTFDR] = sci_reg_invalid,
290 [SCRFDR] = sci_reg_invalid,
291 [SCSPTR] = sci_reg_invalid,
292 [SCLSR] = sci_reg_invalid,
293 },
294};
295
72b294cf
PM
296#define sci_getreg(up, offset) (sci_regmap[to_sci_port(up)->cfg->regtype] + offset)
297
61a6976b
PM
298/*
299 * The "offset" here is rather misleading, in that it refers to an enum
300 * value relative to the port mapping rather than the fixed offset
301 * itself, which needs to be manually retrieved from the platform's
302 * register map for the given port.
303 */
304static unsigned int sci_serial_in(struct uart_port *p, int offset)
305{
72b294cf 306 struct plat_sci_reg *reg = sci_getreg(p, offset);
61a6976b
PM
307
308 if (reg->size == 8)
309 return ioread8(p->membase + (reg->offset << p->regshift));
310 else if (reg->size == 16)
311 return ioread16(p->membase + (reg->offset << p->regshift));
312 else
313 WARN(1, "Invalid register access\n");
314
315 return 0;
316}
317
318static void sci_serial_out(struct uart_port *p, int offset, int value)
319{
72b294cf 320 struct plat_sci_reg *reg = sci_getreg(p, offset);
61a6976b
PM
321
322 if (reg->size == 8)
323 iowrite8(value, p->membase + (reg->offset << p->regshift));
324 else if (reg->size == 16)
325 iowrite16(value, p->membase + (reg->offset << p->regshift));
326 else
327 WARN(1, "Invalid register access\n");
328}
329
330#define sci_in(up, offset) (up->serial_in(up, offset))
331#define sci_out(up, offset, value) (up->serial_out(up, offset, value))
332
333static int sci_probe_regmap(struct plat_sci_port *cfg)
334{
335 switch (cfg->type) {
336 case PORT_SCI:
337 cfg->regtype = SCIx_SCI_REGTYPE;
338 break;
339 case PORT_IRDA:
340 cfg->regtype = SCIx_IRDA_REGTYPE;
341 break;
342 case PORT_SCIFA:
343 cfg->regtype = SCIx_SCIFA_REGTYPE;
344 break;
345 case PORT_SCIFB:
346 cfg->regtype = SCIx_SCIFB_REGTYPE;
347 break;
348 case PORT_SCIF:
349 /*
350 * The SH-4 is a bit of a misnomer here, although that's
351 * where this particular port layout originated. This
352 * configuration (or some slight variation thereof)
353 * remains the dominant model for all SCIFs.
354 */
355 cfg->regtype = SCIx_SH4_SCIF_REGTYPE;
356 break;
357 default:
358 printk(KERN_ERR "Can't probe register map for given port\n");
359 return -EINVAL;
360 }
361
362 return 0;
363}
364
23241d43
PM
365static void sci_port_enable(struct sci_port *sci_port)
366{
367 if (!sci_port->port.dev)
368 return;
369
370 pm_runtime_get_sync(sci_port->port.dev);
371
372 clk_enable(sci_port->iclk);
373 sci_port->port.uartclk = clk_get_rate(sci_port->iclk);
374 clk_enable(sci_port->fclk);
375}
376
377static void sci_port_disable(struct sci_port *sci_port)
378{
379 if (!sci_port->port.dev)
380 return;
381
382 clk_disable(sci_port->fclk);
383 clk_disable(sci_port->iclk);
384
385 pm_runtime_put_sync(sci_port->port.dev);
386}
387
07d2a1a1 388#if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
1f6fd5c9
PM
389
390#ifdef CONFIG_CONSOLE_POLL
07d2a1a1 391static int sci_poll_get_char(struct uart_port *port)
1da177e4 392{
1da177e4
LT
393 unsigned short status;
394 int c;
395
e108b2ca 396 do {
1da177e4
LT
397 status = sci_in(port, SCxSR);
398 if (status & SCxSR_ERRORS(port)) {
94c8b6db 399 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
1da177e4
LT
400 continue;
401 }
3f255eb3
JW
402 break;
403 } while (1);
404
405 if (!(status & SCxSR_RDxF(port)))
406 return NO_POLL_CHAR;
07d2a1a1 407
1da177e4 408 c = sci_in(port, SCxRDR);
07d2a1a1 409
e7c98dc7
MT
410 /* Dummy read */
411 sci_in(port, SCxSR);
1da177e4 412 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
1da177e4
LT
413
414 return c;
415}
1f6fd5c9 416#endif
1da177e4 417
07d2a1a1 418static void sci_poll_put_char(struct uart_port *port, unsigned char c)
1da177e4 419{
1da177e4
LT
420 unsigned short status;
421
1da177e4
LT
422 do {
423 status = sci_in(port, SCxSR);
424 } while (!(status & SCxSR_TDxE(port)));
425
272966c0 426 sci_out(port, SCxTDR, c);
dd0a3e77 427 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port) & ~SCxSR_TEND(port));
1da177e4 428}
07d2a1a1 429#endif /* CONFIG_CONSOLE_POLL || CONFIG_SERIAL_SH_SCI_CONSOLE */
1da177e4 430
61a6976b 431static void sci_init_pins(struct uart_port *port, unsigned int cflag)
1da177e4 432{
61a6976b
PM
433 struct sci_port *s = to_sci_port(port);
434 struct plat_sci_reg *reg = sci_regmap[s->cfg->regtype] + SCSPTR;
1da177e4 435
61a6976b
PM
436 /*
437 * Use port-specific handler if provided.
438 */
439 if (s->cfg->ops && s->cfg->ops->init_pins) {
440 s->cfg->ops->init_pins(port, cflag);
441 return;
1da177e4 442 }
41504c39 443
61a6976b
PM
444 /*
445 * For the generic path SCSPTR is necessary. Bail out if that's
446 * unavailable, too.
447 */
448 if (!reg->size)
449 return;
41504c39 450
d5701647 451 if (!(cflag & CRTSCTS))
61a6976b 452 sci_out(port, SCSPTR, 0x0080); /* Set RTS = 1 */
d5701647 453}
e108b2ca 454
72b294cf 455static int sci_txfill(struct uart_port *port)
e108b2ca 456{
72b294cf 457 struct plat_sci_reg *reg;
e108b2ca 458
72b294cf
PM
459 reg = sci_getreg(port, SCTFDR);
460 if (reg->size)
73a19e4c 461 return sci_in(port, SCTFDR) & 0xff;
c63847a3 462
72b294cf
PM
463 reg = sci_getreg(port, SCFDR);
464 if (reg->size)
d1d4b10c 465 return sci_in(port, SCFDR) >> 8;
d1d4b10c 466
73a19e4c 467 return !(sci_in(port, SCxSR) & SCI_TDRE);
e108b2ca
PM
468}
469
73a19e4c
GL
470static int sci_txroom(struct uart_port *port)
471{
72b294cf 472 return port->fifosize - sci_txfill(port);
73a19e4c
GL
473}
474
475static int sci_rxfill(struct uart_port *port)
e108b2ca 476{
72b294cf
PM
477 struct plat_sci_reg *reg;
478
479 reg = sci_getreg(port, SCRFDR);
480 if (reg->size)
481 return sci_in(port, SCRFDR) & 0xff;
482
483 reg = sci_getreg(port, SCFDR);
484 if (reg->size)
485 return sci_in(port, SCFDR) & ((port->fifosize << 1) - 1);
486
e7c98dc7 487 return (sci_in(port, SCxSR) & SCxSR_RDxF(port)) != 0;
e108b2ca
PM
488}
489
514820eb
PM
490/*
491 * SCI helper for checking the state of the muxed port/RXD pins.
492 */
493static inline int sci_rxd_in(struct uart_port *port)
494{
495 struct sci_port *s = to_sci_port(port);
496
497 if (s->cfg->port_reg <= 0)
498 return 1;
499
500 return !!__raw_readb(s->cfg->port_reg);
501}
502
1da177e4
LT
503/* ********************************************************************** *
504 * the interrupt related routines *
505 * ********************************************************************** */
506
507static void sci_transmit_chars(struct uart_port *port)
508{
ebd2c8f6 509 struct circ_buf *xmit = &port->state->xmit;
1da177e4 510 unsigned int stopped = uart_tx_stopped(port);
1da177e4
LT
511 unsigned short status;
512 unsigned short ctrl;
e108b2ca 513 int count;
1da177e4
LT
514
515 status = sci_in(port, SCxSR);
516 if (!(status & SCxSR_TDxE(port))) {
1da177e4 517 ctrl = sci_in(port, SCSCR);
e7c98dc7 518 if (uart_circ_empty(xmit))
8e698614 519 ctrl &= ~SCSCR_TIE;
e7c98dc7 520 else
8e698614 521 ctrl |= SCSCR_TIE;
1da177e4 522 sci_out(port, SCSCR, ctrl);
1da177e4
LT
523 return;
524 }
525
72b294cf 526 count = sci_txroom(port);
1da177e4
LT
527
528 do {
529 unsigned char c;
530
531 if (port->x_char) {
532 c = port->x_char;
533 port->x_char = 0;
534 } else if (!uart_circ_empty(xmit) && !stopped) {
535 c = xmit->buf[xmit->tail];
536 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
537 } else {
538 break;
539 }
540
541 sci_out(port, SCxTDR, c);
542
543 port->icount.tx++;
544 } while (--count > 0);
545
546 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
547
548 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
549 uart_write_wakeup(port);
550 if (uart_circ_empty(xmit)) {
b129a8cc 551 sci_stop_tx(port);
1da177e4 552 } else {
1da177e4
LT
553 ctrl = sci_in(port, SCSCR);
554
1a22f08d 555 if (port->type != PORT_SCI) {
1da177e4
LT
556 sci_in(port, SCxSR); /* Dummy read */
557 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
558 }
1da177e4 559
8e698614 560 ctrl |= SCSCR_TIE;
1da177e4 561 sci_out(port, SCSCR, ctrl);
1da177e4
LT
562 }
563}
564
565/* On SH3, SCIF may read end-of-break as a space->mark char */
e7c98dc7 566#define STEPFN(c) ({int __c = (c); (((__c-1)|(__c)) == -1); })
1da177e4 567
94c8b6db 568static void sci_receive_chars(struct uart_port *port)
1da177e4 569{
e7c98dc7 570 struct sci_port *sci_port = to_sci_port(port);
ebd2c8f6 571 struct tty_struct *tty = port->state->port.tty;
1da177e4
LT
572 int i, count, copied = 0;
573 unsigned short status;
33f0f88f 574 unsigned char flag;
1da177e4
LT
575
576 status = sci_in(port, SCxSR);
577 if (!(status & SCxSR_RDxF(port)))
578 return;
579
580 while (1) {
1da177e4 581 /* Don't copy more bytes than there is room for in the buffer */
72b294cf 582 count = tty_buffer_request_room(tty, sci_rxfill(port));
1da177e4
LT
583
584 /* If for any reason we can't copy more data, we're done! */
585 if (count == 0)
586 break;
587
588 if (port->type == PORT_SCI) {
589 char c = sci_in(port, SCxRDR);
e7c98dc7
MT
590 if (uart_handle_sysrq_char(port, c) ||
591 sci_port->break_flag)
1da177e4 592 count = 0;
e7c98dc7 593 else
e108b2ca 594 tty_insert_flip_char(tty, c, TTY_NORMAL);
1da177e4 595 } else {
e7c98dc7 596 for (i = 0; i < count; i++) {
1da177e4
LT
597 char c = sci_in(port, SCxRDR);
598 status = sci_in(port, SCxSR);
599#if defined(CONFIG_CPU_SH3)
600 /* Skip "chars" during break */
e108b2ca 601 if (sci_port->break_flag) {
1da177e4
LT
602 if ((c == 0) &&
603 (status & SCxSR_FER(port))) {
604 count--; i--;
605 continue;
606 }
e108b2ca 607
1da177e4 608 /* Nonzero => end-of-break */
762c69e3 609 dev_dbg(port->dev, "debounce<%02x>\n", c);
e108b2ca
PM
610 sci_port->break_flag = 0;
611
1da177e4
LT
612 if (STEPFN(c)) {
613 count--; i--;
614 continue;
615 }
616 }
617#endif /* CONFIG_CPU_SH3 */
7d12e780 618 if (uart_handle_sysrq_char(port, c)) {
1da177e4
LT
619 count--; i--;
620 continue;
621 }
622
623 /* Store data and status */
73a19e4c 624 if (status & SCxSR_FER(port)) {
33f0f88f 625 flag = TTY_FRAME;
762c69e3 626 dev_notice(port->dev, "frame error\n");
73a19e4c 627 } else if (status & SCxSR_PER(port)) {
33f0f88f 628 flag = TTY_PARITY;
762c69e3 629 dev_notice(port->dev, "parity error\n");
33f0f88f
AC
630 } else
631 flag = TTY_NORMAL;
762c69e3 632
33f0f88f 633 tty_insert_flip_char(tty, c, flag);
1da177e4
LT
634 }
635 }
636
637 sci_in(port, SCxSR); /* dummy read */
638 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
639
1da177e4
LT
640 copied += count;
641 port->icount.rx += count;
642 }
643
644 if (copied) {
645 /* Tell the rest of the system the news. New characters! */
646 tty_flip_buffer_push(tty);
647 } else {
648 sci_in(port, SCxSR); /* dummy read */
649 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
650 }
651}
652
653#define SCI_BREAK_JIFFIES (HZ/20)
94c8b6db
PM
654
655/*
656 * The sci generates interrupts during the break,
1da177e4
LT
657 * 1 per millisecond or so during the break period, for 9600 baud.
658 * So dont bother disabling interrupts.
659 * But dont want more than 1 break event.
660 * Use a kernel timer to periodically poll the rx line until
661 * the break is finished.
662 */
94c8b6db 663static inline void sci_schedule_break_timer(struct sci_port *port)
1da177e4 664{
bc9b3f5c 665 mod_timer(&port->break_timer, jiffies + SCI_BREAK_JIFFIES);
1da177e4 666}
94c8b6db 667
1da177e4
LT
668/* Ensure that two consecutive samples find the break over. */
669static void sci_break_timer(unsigned long data)
670{
e108b2ca
PM
671 struct sci_port *port = (struct sci_port *)data;
672
23241d43 673 sci_port_enable(port);
5e50d2d6 674
e108b2ca 675 if (sci_rxd_in(&port->port) == 0) {
1da177e4 676 port->break_flag = 1;
e108b2ca
PM
677 sci_schedule_break_timer(port);
678 } else if (port->break_flag == 1) {
1da177e4
LT
679 /* break is over. */
680 port->break_flag = 2;
e108b2ca
PM
681 sci_schedule_break_timer(port);
682 } else
683 port->break_flag = 0;
5e50d2d6 684
23241d43 685 sci_port_disable(port);
1da177e4
LT
686}
687
94c8b6db 688static int sci_handle_errors(struct uart_port *port)
1da177e4
LT
689{
690 int copied = 0;
691 unsigned short status = sci_in(port, SCxSR);
ebd2c8f6 692 struct tty_struct *tty = port->state->port.tty;
debf9507 693 struct sci_port *s = to_sci_port(port);
1da177e4 694
debf9507
PM
695 /*
696 * Handle overruns, if supported.
697 */
698 if (s->cfg->overrun_bit != SCIx_NOT_SUPPORTED) {
699 if (status & (1 << s->cfg->overrun_bit)) {
700 /* overrun error */
701 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN))
702 copied++;
762c69e3 703
debf9507
PM
704 dev_notice(port->dev, "overrun error");
705 }
1da177e4
LT
706 }
707
e108b2ca 708 if (status & SCxSR_FER(port)) {
1da177e4
LT
709 if (sci_rxd_in(port) == 0) {
710 /* Notify of BREAK */
e7c98dc7 711 struct sci_port *sci_port = to_sci_port(port);
e108b2ca
PM
712
713 if (!sci_port->break_flag) {
714 sci_port->break_flag = 1;
715 sci_schedule_break_timer(sci_port);
716
1da177e4 717 /* Do sysrq handling. */
e108b2ca 718 if (uart_handle_break(port))
1da177e4 719 return 0;
762c69e3
PM
720
721 dev_dbg(port->dev, "BREAK detected\n");
722
e108b2ca 723 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
e7c98dc7
MT
724 copied++;
725 }
726
e108b2ca 727 } else {
1da177e4 728 /* frame error */
e108b2ca 729 if (tty_insert_flip_char(tty, 0, TTY_FRAME))
33f0f88f 730 copied++;
762c69e3
PM
731
732 dev_notice(port->dev, "frame error\n");
1da177e4
LT
733 }
734 }
735
e108b2ca 736 if (status & SCxSR_PER(port)) {
1da177e4 737 /* parity error */
e108b2ca
PM
738 if (tty_insert_flip_char(tty, 0, TTY_PARITY))
739 copied++;
762c69e3
PM
740
741 dev_notice(port->dev, "parity error");
1da177e4
LT
742 }
743
33f0f88f 744 if (copied)
1da177e4 745 tty_flip_buffer_push(tty);
1da177e4
LT
746
747 return copied;
748}
749
94c8b6db 750static int sci_handle_fifo_overrun(struct uart_port *port)
d830fa45 751{
ebd2c8f6 752 struct tty_struct *tty = port->state->port.tty;
debf9507 753 struct sci_port *s = to_sci_port(port);
4b8c59a3 754 struct plat_sci_reg *reg;
d830fa45
PM
755 int copied = 0;
756
4b8c59a3
PM
757 reg = sci_getreg(port, SCLSR);
758 if (!reg->size)
d830fa45
PM
759 return 0;
760
debf9507 761 if ((sci_in(port, SCLSR) & (1 << s->cfg->overrun_bit))) {
d830fa45
PM
762 sci_out(port, SCLSR, 0);
763
764 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
765 tty_flip_buffer_push(tty);
766
767 dev_notice(port->dev, "overrun error\n");
768 copied++;
769 }
770
771 return copied;
772}
773
94c8b6db 774static int sci_handle_breaks(struct uart_port *port)
1da177e4
LT
775{
776 int copied = 0;
777 unsigned short status = sci_in(port, SCxSR);
ebd2c8f6 778 struct tty_struct *tty = port->state->port.tty;
a5660ada 779 struct sci_port *s = to_sci_port(port);
1da177e4 780
0b3d4ef6
PM
781 if (uart_handle_break(port))
782 return 0;
783
b7a76e4b 784 if (!s->break_flag && status & SCxSR_BRK(port)) {
1da177e4
LT
785#if defined(CONFIG_CPU_SH3)
786 /* Debounce break */
787 s->break_flag = 1;
788#endif
789 /* Notify of BREAK */
e108b2ca 790 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
33f0f88f 791 copied++;
762c69e3
PM
792
793 dev_dbg(port->dev, "BREAK detected\n");
1da177e4
LT
794 }
795
33f0f88f 796 if (copied)
1da177e4 797 tty_flip_buffer_push(tty);
e108b2ca 798
d830fa45
PM
799 copied += sci_handle_fifo_overrun(port);
800
1da177e4
LT
801 return copied;
802}
803
73a19e4c 804static irqreturn_t sci_rx_interrupt(int irq, void *ptr)
1da177e4 805{
73a19e4c
GL
806#ifdef CONFIG_SERIAL_SH_SCI_DMA
807 struct uart_port *port = ptr;
808 struct sci_port *s = to_sci_port(port);
809
810 if (s->chan_rx) {
73a19e4c
GL
811 u16 scr = sci_in(port, SCSCR);
812 u16 ssr = sci_in(port, SCxSR);
813
814 /* Disable future Rx interrupts */
d1d4b10c 815 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
3089f381
GL
816 disable_irq_nosync(irq);
817 scr |= 0x4000;
818 } else {
f43dc23d 819 scr &= ~SCSCR_RIE;
3089f381
GL
820 }
821 sci_out(port, SCSCR, scr);
73a19e4c
GL
822 /* Clear current interrupt */
823 sci_out(port, SCxSR, ssr & ~(1 | SCxSR_RDxF(port)));
3089f381
GL
824 dev_dbg(port->dev, "Rx IRQ %lu: setup t-out in %u jiffies\n",
825 jiffies, s->rx_timeout);
826 mod_timer(&s->rx_timer, jiffies + s->rx_timeout);
73a19e4c
GL
827
828 return IRQ_HANDLED;
829 }
830#endif
831
1da177e4
LT
832 /* I think sci_receive_chars has to be called irrespective
833 * of whether the I_IXOFF is set, otherwise, how is the interrupt
834 * to be disabled?
835 */
73a19e4c 836 sci_receive_chars(ptr);
1da177e4
LT
837
838 return IRQ_HANDLED;
839}
840
7d12e780 841static irqreturn_t sci_tx_interrupt(int irq, void *ptr)
1da177e4
LT
842{
843 struct uart_port *port = ptr;
fd78a76a 844 unsigned long flags;
1da177e4 845
fd78a76a 846 spin_lock_irqsave(&port->lock, flags);
1da177e4 847 sci_transmit_chars(port);
fd78a76a 848 spin_unlock_irqrestore(&port->lock, flags);
1da177e4
LT
849
850 return IRQ_HANDLED;
851}
852
7d12e780 853static irqreturn_t sci_er_interrupt(int irq, void *ptr)
1da177e4
LT
854{
855 struct uart_port *port = ptr;
856
857 /* Handle errors */
858 if (port->type == PORT_SCI) {
859 if (sci_handle_errors(port)) {
860 /* discard character in rx buffer */
861 sci_in(port, SCxSR);
862 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
863 }
864 } else {
d830fa45 865 sci_handle_fifo_overrun(port);
7d12e780 866 sci_rx_interrupt(irq, ptr);
1da177e4
LT
867 }
868
869 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
870
871 /* Kick the transmission */
7d12e780 872 sci_tx_interrupt(irq, ptr);
1da177e4
LT
873
874 return IRQ_HANDLED;
875}
876
7d12e780 877static irqreturn_t sci_br_interrupt(int irq, void *ptr)
1da177e4
LT
878{
879 struct uart_port *port = ptr;
880
881 /* Handle BREAKs */
882 sci_handle_breaks(port);
883 sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
884
885 return IRQ_HANDLED;
886}
887
f43dc23d
PM
888static inline unsigned long port_rx_irq_mask(struct uart_port *port)
889{
890 /*
891 * Not all ports (such as SCIFA) will support REIE. Rather than
892 * special-casing the port type, we check the port initialization
893 * IRQ enable mask to see whether the IRQ is desired at all. If
894 * it's unset, it's logically inferred that there's no point in
895 * testing for it.
896 */
ce6738b6 897 return SCSCR_RIE | (to_sci_port(port)->cfg->scscr & SCSCR_REIE);
f43dc23d
PM
898}
899
7d12e780 900static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr)
1da177e4 901{
44e18e9e 902 unsigned short ssr_status, scr_status, err_enabled;
a8884e34 903 struct uart_port *port = ptr;
73a19e4c 904 struct sci_port *s = to_sci_port(port);
a8884e34 905 irqreturn_t ret = IRQ_NONE;
1da177e4 906
e7c98dc7
MT
907 ssr_status = sci_in(port, SCxSR);
908 scr_status = sci_in(port, SCSCR);
f43dc23d 909 err_enabled = scr_status & port_rx_irq_mask(port);
1da177e4
LT
910
911 /* Tx Interrupt */
f43dc23d 912 if ((ssr_status & SCxSR_TDxE(port)) && (scr_status & SCSCR_TIE) &&
73a19e4c 913 !s->chan_tx)
a8884e34 914 ret = sci_tx_interrupt(irq, ptr);
f43dc23d 915
73a19e4c
GL
916 /*
917 * Rx Interrupt: if we're using DMA, the DMA controller clears RDF /
918 * DR flags
919 */
920 if (((ssr_status & SCxSR_RDxF(port)) || s->chan_rx) &&
f43dc23d 921 (scr_status & SCSCR_RIE))
a8884e34 922 ret = sci_rx_interrupt(irq, ptr);
f43dc23d 923
1da177e4 924 /* Error Interrupt */
dd4da3a5 925 if ((ssr_status & SCxSR_ERRORS(port)) && err_enabled)
a8884e34 926 ret = sci_er_interrupt(irq, ptr);
f43dc23d 927
1da177e4 928 /* Break Interrupt */
dd4da3a5 929 if ((ssr_status & SCxSR_BRK(port)) && err_enabled)
a8884e34 930 ret = sci_br_interrupt(irq, ptr);
1da177e4 931
a8884e34 932 return ret;
1da177e4
LT
933}
934
1da177e4 935/*
25985edc 936 * Here we define a transition notifier so that we can update all of our
1da177e4
LT
937 * ports' baud rate when the peripheral clock changes.
938 */
e108b2ca
PM
939static int sci_notifier(struct notifier_block *self,
940 unsigned long phase, void *p)
1da177e4 941{
e552de24
MD
942 struct sci_port *sci_port;
943 unsigned long flags;
1da177e4 944
d535a230
PM
945 sci_port = container_of(self, struct sci_port, freq_transition);
946
1da177e4 947 if ((phase == CPUFREQ_POSTCHANGE) ||
e552de24 948 (phase == CPUFREQ_RESUMECHANGE)) {
d535a230 949 struct uart_port *port = &sci_port->port;
073e84c9 950
d535a230
PM
951 spin_lock_irqsave(&port->lock, flags);
952 port->uartclk = clk_get_rate(sci_port->iclk);
953 spin_unlock_irqrestore(&port->lock, flags);
e552de24 954 }
1da177e4 955
1da177e4
LT
956 return NOTIFY_OK;
957}
501b825d 958
9174fc8f
PM
959static struct sci_irq_desc {
960 const char *desc;
961 irq_handler_t handler;
962} sci_irq_desc[] = {
963 /*
964 * Split out handlers, the default case.
965 */
966 [SCIx_ERI_IRQ] = {
967 .desc = "rx err",
968 .handler = sci_er_interrupt,
969 },
970
971 [SCIx_RXI_IRQ] = {
972 .desc = "rx full",
973 .handler = sci_rx_interrupt,
974 },
975
976 [SCIx_TXI_IRQ] = {
977 .desc = "tx empty",
978 .handler = sci_tx_interrupt,
979 },
980
981 [SCIx_BRI_IRQ] = {
982 .desc = "break",
983 .handler = sci_br_interrupt,
984 },
985
986 /*
987 * Special muxed handler.
988 */
989 [SCIx_MUX_IRQ] = {
990 .desc = "mux",
991 .handler = sci_mpxed_interrupt,
992 },
993};
994
1da177e4
LT
995static int sci_request_irq(struct sci_port *port)
996{
9174fc8f
PM
997 struct uart_port *up = &port->port;
998 int i, j, ret = 0;
999
1000 for (i = j = 0; i < SCIx_NR_IRQS; i++, j++) {
1001 struct sci_irq_desc *desc;
1002 unsigned int irq;
1003
1004 if (SCIx_IRQ_IS_MUXED(port)) {
1005 i = SCIx_MUX_IRQ;
1006 irq = up->irq;
1007 } else
1008 irq = port->cfg->irqs[i];
1009
1010 desc = sci_irq_desc + i;
1011 port->irqstr[j] = kasprintf(GFP_KERNEL, "%s:%s",
1012 dev_name(up->dev), desc->desc);
1013 if (!port->irqstr[j]) {
1014 dev_err(up->dev, "Failed to allocate %s IRQ string\n",
1015 desc->desc);
1016 goto out_nomem;
1da177e4 1017 }
9174fc8f
PM
1018
1019 ret = request_irq(irq, desc->handler, up->irqflags,
1020 port->irqstr[j], port);
1021 if (unlikely(ret)) {
1022 dev_err(up->dev, "Can't allocate %s IRQ\n", desc->desc);
1023 goto out_noirq;
1da177e4
LT
1024 }
1025 }
1026
1027 return 0;
9174fc8f
PM
1028
1029out_noirq:
1030 while (--i >= 0)
1031 free_irq(port->cfg->irqs[i], port);
1032
1033out_nomem:
1034 while (--j >= 0)
1035 kfree(port->irqstr[j]);
1036
1037 return ret;
1da177e4
LT
1038}
1039
1040static void sci_free_irq(struct sci_port *port)
1041{
1042 int i;
1043
9174fc8f
PM
1044 /*
1045 * Intentionally in reverse order so we iterate over the muxed
1046 * IRQ first.
1047 */
1048 for (i = 0; i < SCIx_NR_IRQS; i++) {
1049 free_irq(port->cfg->irqs[i], port);
1050 kfree(port->irqstr[i]);
1da177e4 1051
9174fc8f
PM
1052 if (SCIx_IRQ_IS_MUXED(port)) {
1053 /* If there's only one IRQ, we're done. */
1054 return;
1da177e4
LT
1055 }
1056 }
1057}
1058
1059static unsigned int sci_tx_empty(struct uart_port *port)
1060{
b1516803 1061 unsigned short status = sci_in(port, SCxSR);
72b294cf 1062 unsigned short in_tx_fifo = sci_txfill(port);
73a19e4c
GL
1063
1064 return (status & SCxSR_TEND(port)) && !in_tx_fifo ? TIOCSER_TEMT : 0;
1da177e4
LT
1065}
1066
1067static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
1068{
1069 /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */
1070 /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */
1071 /* If you have signals for DTR and DCD, please implement here. */
1072}
1073
1074static unsigned int sci_get_mctrl(struct uart_port *port)
1075{
73a19e4c 1076 /* This routine is used for getting signals of: DTR, DCD, DSR, RI,
1da177e4
LT
1077 and CTS/RTS */
1078
1079 return TIOCM_DTR | TIOCM_RTS | TIOCM_DSR;
1080}
1081
73a19e4c
GL
1082#ifdef CONFIG_SERIAL_SH_SCI_DMA
1083static void sci_dma_tx_complete(void *arg)
1084{
1085 struct sci_port *s = arg;
1086 struct uart_port *port = &s->port;
1087 struct circ_buf *xmit = &port->state->xmit;
1088 unsigned long flags;
1089
1090 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1091
1092 spin_lock_irqsave(&port->lock, flags);
1093
f354a381 1094 xmit->tail += sg_dma_len(&s->sg_tx);
73a19e4c
GL
1095 xmit->tail &= UART_XMIT_SIZE - 1;
1096
f354a381 1097 port->icount.tx += sg_dma_len(&s->sg_tx);
73a19e4c
GL
1098
1099 async_tx_ack(s->desc_tx);
1100 s->cookie_tx = -EINVAL;
1101 s->desc_tx = NULL;
1102
73a19e4c
GL
1103 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1104 uart_write_wakeup(port);
1105
3089f381 1106 if (!uart_circ_empty(xmit)) {
73a19e4c 1107 schedule_work(&s->work_tx);
d1d4b10c 1108 } else if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
3089f381 1109 u16 ctrl = sci_in(port, SCSCR);
f43dc23d 1110 sci_out(port, SCSCR, ctrl & ~SCSCR_TIE);
3089f381
GL
1111 }
1112
1113 spin_unlock_irqrestore(&port->lock, flags);
73a19e4c
GL
1114}
1115
1116/* Locking: called with port lock held */
1117static int sci_dma_rx_push(struct sci_port *s, struct tty_struct *tty,
1118 size_t count)
1119{
1120 struct uart_port *port = &s->port;
1121 int i, active, room;
1122
1123 room = tty_buffer_request_room(tty, count);
1124
1125 if (s->active_rx == s->cookie_rx[0]) {
1126 active = 0;
1127 } else if (s->active_rx == s->cookie_rx[1]) {
1128 active = 1;
1129 } else {
1130 dev_err(port->dev, "cookie %d not found!\n", s->active_rx);
1131 return 0;
1132 }
1133
1134 if (room < count)
1135 dev_warn(port->dev, "Rx overrun: dropping %u bytes\n",
1136 count - room);
1137 if (!room)
1138 return room;
1139
1140 for (i = 0; i < room; i++)
1141 tty_insert_flip_char(tty, ((u8 *)sg_virt(&s->sg_rx[active]))[i],
1142 TTY_NORMAL);
1143
1144 port->icount.rx += room;
1145
1146 return room;
1147}
1148
1149static void sci_dma_rx_complete(void *arg)
1150{
1151 struct sci_port *s = arg;
1152 struct uart_port *port = &s->port;
1153 struct tty_struct *tty = port->state->port.tty;
1154 unsigned long flags;
1155 int count;
1156
3089f381 1157 dev_dbg(port->dev, "%s(%d) active #%d\n", __func__, port->line, s->active_rx);
73a19e4c
GL
1158
1159 spin_lock_irqsave(&port->lock, flags);
1160
1161 count = sci_dma_rx_push(s, tty, s->buf_len_rx);
1162
3089f381 1163 mod_timer(&s->rx_timer, jiffies + s->rx_timeout);
73a19e4c
GL
1164
1165 spin_unlock_irqrestore(&port->lock, flags);
1166
1167 if (count)
1168 tty_flip_buffer_push(tty);
1169
1170 schedule_work(&s->work_rx);
1171}
1172
73a19e4c
GL
1173static void sci_rx_dma_release(struct sci_port *s, bool enable_pio)
1174{
1175 struct dma_chan *chan = s->chan_rx;
1176 struct uart_port *port = &s->port;
73a19e4c
GL
1177
1178 s->chan_rx = NULL;
1179 s->cookie_rx[0] = s->cookie_rx[1] = -EINVAL;
1180 dma_release_channel(chan);
85b8e3ff
GL
1181 if (sg_dma_address(&s->sg_rx[0]))
1182 dma_free_coherent(port->dev, s->buf_len_rx * 2,
1183 sg_virt(&s->sg_rx[0]), sg_dma_address(&s->sg_rx[0]));
73a19e4c
GL
1184 if (enable_pio)
1185 sci_start_rx(port);
1186}
1187
1188static void sci_tx_dma_release(struct sci_port *s, bool enable_pio)
1189{
1190 struct dma_chan *chan = s->chan_tx;
1191 struct uart_port *port = &s->port;
73a19e4c
GL
1192
1193 s->chan_tx = NULL;
1194 s->cookie_tx = -EINVAL;
1195 dma_release_channel(chan);
1196 if (enable_pio)
1197 sci_start_tx(port);
1198}
1199
1200static void sci_submit_rx(struct sci_port *s)
1201{
1202 struct dma_chan *chan = s->chan_rx;
1203 int i;
1204
1205 for (i = 0; i < 2; i++) {
1206 struct scatterlist *sg = &s->sg_rx[i];
1207 struct dma_async_tx_descriptor *desc;
1208
1209 desc = chan->device->device_prep_slave_sg(chan,
1210 sg, 1, DMA_FROM_DEVICE, DMA_PREP_INTERRUPT);
1211
1212 if (desc) {
1213 s->desc_rx[i] = desc;
1214 desc->callback = sci_dma_rx_complete;
1215 desc->callback_param = s;
1216 s->cookie_rx[i] = desc->tx_submit(desc);
1217 }
1218
1219 if (!desc || s->cookie_rx[i] < 0) {
1220 if (i) {
1221 async_tx_ack(s->desc_rx[0]);
1222 s->cookie_rx[0] = -EINVAL;
1223 }
1224 if (desc) {
1225 async_tx_ack(desc);
1226 s->cookie_rx[i] = -EINVAL;
1227 }
1228 dev_warn(s->port.dev,
1229 "failed to re-start DMA, using PIO\n");
1230 sci_rx_dma_release(s, true);
1231 return;
1232 }
3089f381
GL
1233 dev_dbg(s->port.dev, "%s(): cookie %d to #%d\n", __func__,
1234 s->cookie_rx[i], i);
73a19e4c
GL
1235 }
1236
1237 s->active_rx = s->cookie_rx[0];
1238
1239 dma_async_issue_pending(chan);
1240}
1241
1242static void work_fn_rx(struct work_struct *work)
1243{
1244 struct sci_port *s = container_of(work, struct sci_port, work_rx);
1245 struct uart_port *port = &s->port;
1246 struct dma_async_tx_descriptor *desc;
1247 int new;
1248
1249 if (s->active_rx == s->cookie_rx[0]) {
1250 new = 0;
1251 } else if (s->active_rx == s->cookie_rx[1]) {
1252 new = 1;
1253 } else {
1254 dev_err(port->dev, "cookie %d not found!\n", s->active_rx);
1255 return;
1256 }
1257 desc = s->desc_rx[new];
1258
1259 if (dma_async_is_tx_complete(s->chan_rx, s->active_rx, NULL, NULL) !=
1260 DMA_SUCCESS) {
1261 /* Handle incomplete DMA receive */
1262 struct tty_struct *tty = port->state->port.tty;
1263 struct dma_chan *chan = s->chan_rx;
1264 struct sh_desc *sh_desc = container_of(desc, struct sh_desc,
1265 async_tx);
1266 unsigned long flags;
1267 int count;
1268
05827630 1269 chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
73a19e4c
GL
1270 dev_dbg(port->dev, "Read %u bytes with cookie %d\n",
1271 sh_desc->partial, sh_desc->cookie);
1272
1273 spin_lock_irqsave(&port->lock, flags);
1274 count = sci_dma_rx_push(s, tty, sh_desc->partial);
1275 spin_unlock_irqrestore(&port->lock, flags);
1276
1277 if (count)
1278 tty_flip_buffer_push(tty);
1279
1280 sci_submit_rx(s);
1281
1282 return;
1283 }
1284
1285 s->cookie_rx[new] = desc->tx_submit(desc);
1286 if (s->cookie_rx[new] < 0) {
1287 dev_warn(port->dev, "Failed submitting Rx DMA descriptor\n");
1288 sci_rx_dma_release(s, true);
1289 return;
1290 }
1291
73a19e4c 1292 s->active_rx = s->cookie_rx[!new];
3089f381
GL
1293
1294 dev_dbg(port->dev, "%s: cookie %d #%d, new active #%d\n", __func__,
1295 s->cookie_rx[new], new, s->active_rx);
73a19e4c
GL
1296}
1297
1298static void work_fn_tx(struct work_struct *work)
1299{
1300 struct sci_port *s = container_of(work, struct sci_port, work_tx);
1301 struct dma_async_tx_descriptor *desc;
1302 struct dma_chan *chan = s->chan_tx;
1303 struct uart_port *port = &s->port;
1304 struct circ_buf *xmit = &port->state->xmit;
1305 struct scatterlist *sg = &s->sg_tx;
1306
1307 /*
1308 * DMA is idle now.
1309 * Port xmit buffer is already mapped, and it is one page... Just adjust
1310 * offsets and lengths. Since it is a circular buffer, we have to
1311 * transmit till the end, and then the rest. Take the port lock to get a
1312 * consistent xmit buffer state.
1313 */
1314 spin_lock_irq(&port->lock);
1315 sg->offset = xmit->tail & (UART_XMIT_SIZE - 1);
f354a381 1316 sg_dma_address(sg) = (sg_dma_address(sg) & ~(UART_XMIT_SIZE - 1)) +
73a19e4c 1317 sg->offset;
f354a381 1318 sg_dma_len(sg) = min((int)CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE),
73a19e4c 1319 CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE));
73a19e4c
GL
1320 spin_unlock_irq(&port->lock);
1321
f354a381 1322 BUG_ON(!sg_dma_len(sg));
73a19e4c
GL
1323
1324 desc = chan->device->device_prep_slave_sg(chan,
1325 sg, s->sg_len_tx, DMA_TO_DEVICE,
1326 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1327 if (!desc) {
1328 /* switch to PIO */
1329 sci_tx_dma_release(s, true);
1330 return;
1331 }
1332
1333 dma_sync_sg_for_device(port->dev, sg, 1, DMA_TO_DEVICE);
1334
1335 spin_lock_irq(&port->lock);
1336 s->desc_tx = desc;
1337 desc->callback = sci_dma_tx_complete;
1338 desc->callback_param = s;
1339 spin_unlock_irq(&port->lock);
1340 s->cookie_tx = desc->tx_submit(desc);
1341 if (s->cookie_tx < 0) {
1342 dev_warn(port->dev, "Failed submitting Tx DMA descriptor\n");
1343 /* switch to PIO */
1344 sci_tx_dma_release(s, true);
1345 return;
1346 }
1347
1348 dev_dbg(port->dev, "%s: %p: %d...%d, cookie %d\n", __func__,
1349 xmit->buf, xmit->tail, xmit->head, s->cookie_tx);
1350
1351 dma_async_issue_pending(chan);
1352}
1353#endif
1354
b129a8cc 1355static void sci_start_tx(struct uart_port *port)
1da177e4 1356{
3089f381 1357 struct sci_port *s = to_sci_port(port);
e108b2ca 1358 unsigned short ctrl;
1da177e4 1359
73a19e4c 1360#ifdef CONFIG_SERIAL_SH_SCI_DMA
d1d4b10c 1361 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
3089f381
GL
1362 u16 new, scr = sci_in(port, SCSCR);
1363 if (s->chan_tx)
1364 new = scr | 0x8000;
1365 else
1366 new = scr & ~0x8000;
1367 if (new != scr)
1368 sci_out(port, SCSCR, new);
73a19e4c 1369 }
f43dc23d 1370
3089f381
GL
1371 if (s->chan_tx && !uart_circ_empty(&s->port.state->xmit) &&
1372 s->cookie_tx < 0)
1373 schedule_work(&s->work_tx);
73a19e4c 1374#endif
f43dc23d 1375
d1d4b10c 1376 if (!s->chan_tx || port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
3089f381
GL
1377 /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */
1378 ctrl = sci_in(port, SCSCR);
f43dc23d 1379 sci_out(port, SCSCR, ctrl | SCSCR_TIE);
3089f381 1380 }
1da177e4
LT
1381}
1382
b129a8cc 1383static void sci_stop_tx(struct uart_port *port)
1da177e4 1384{
1da177e4
LT
1385 unsigned short ctrl;
1386
1387 /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
1da177e4 1388 ctrl = sci_in(port, SCSCR);
f43dc23d 1389
d1d4b10c 1390 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
3089f381 1391 ctrl &= ~0x8000;
f43dc23d 1392
8e698614 1393 ctrl &= ~SCSCR_TIE;
f43dc23d 1394
1da177e4 1395 sci_out(port, SCSCR, ctrl);
1da177e4
LT
1396}
1397
73a19e4c 1398static void sci_start_rx(struct uart_port *port)
1da177e4 1399{
1da177e4
LT
1400 unsigned short ctrl;
1401
f43dc23d 1402 ctrl = sci_in(port, SCSCR) | port_rx_irq_mask(port);
1da177e4 1403
d1d4b10c 1404 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
3089f381 1405 ctrl &= ~0x4000;
f43dc23d 1406
1da177e4 1407 sci_out(port, SCSCR, ctrl);
1da177e4
LT
1408}
1409
1410static void sci_stop_rx(struct uart_port *port)
1411{
1da177e4
LT
1412 unsigned short ctrl;
1413
1da177e4 1414 ctrl = sci_in(port, SCSCR);
f43dc23d 1415
d1d4b10c 1416 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
3089f381 1417 ctrl &= ~0x4000;
f43dc23d
PM
1418
1419 ctrl &= ~port_rx_irq_mask(port);
1420
1da177e4 1421 sci_out(port, SCSCR, ctrl);
1da177e4
LT
1422}
1423
1424static void sci_enable_ms(struct uart_port *port)
1425{
1426 /* Nothing here yet .. */
1427}
1428
1429static void sci_break_ctl(struct uart_port *port, int break_state)
1430{
1431 /* Nothing here yet .. */
1432}
1433
73a19e4c
GL
1434#ifdef CONFIG_SERIAL_SH_SCI_DMA
1435static bool filter(struct dma_chan *chan, void *slave)
1436{
1437 struct sh_dmae_slave *param = slave;
1438
1439 dev_dbg(chan->device->dev, "%s: slave ID %d\n", __func__,
1440 param->slave_id);
1441
1442 if (param->dma_dev == chan->device->dev) {
1443 chan->private = param;
1444 return true;
1445 } else {
1446 return false;
1447 }
1448}
1449
1450static void rx_timer_fn(unsigned long arg)
1451{
1452 struct sci_port *s = (struct sci_port *)arg;
1453 struct uart_port *port = &s->port;
73a19e4c 1454 u16 scr = sci_in(port, SCSCR);
3089f381 1455
d1d4b10c 1456 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
3089f381 1457 scr &= ~0x4000;
ce6738b6 1458 enable_irq(s->cfg->irqs[1]);
3089f381 1459 }
f43dc23d 1460 sci_out(port, SCSCR, scr | SCSCR_RIE);
73a19e4c
GL
1461 dev_dbg(port->dev, "DMA Rx timed out\n");
1462 schedule_work(&s->work_rx);
1463}
1464
1465static void sci_request_dma(struct uart_port *port)
1466{
1467 struct sci_port *s = to_sci_port(port);
1468 struct sh_dmae_slave *param;
1469 struct dma_chan *chan;
1470 dma_cap_mask_t mask;
1471 int nent;
1472
1473 dev_dbg(port->dev, "%s: port %d DMA %p\n", __func__,
ce6738b6 1474 port->line, s->cfg->dma_dev);
73a19e4c 1475
ce6738b6 1476 if (!s->cfg->dma_dev)
73a19e4c
GL
1477 return;
1478
1479 dma_cap_zero(mask);
1480 dma_cap_set(DMA_SLAVE, mask);
1481
1482 param = &s->param_tx;
1483
1484 /* Slave ID, e.g., SHDMA_SLAVE_SCIF0_TX */
ce6738b6
PM
1485 param->slave_id = s->cfg->dma_slave_tx;
1486 param->dma_dev = s->cfg->dma_dev;
73a19e4c
GL
1487
1488 s->cookie_tx = -EINVAL;
1489 chan = dma_request_channel(mask, filter, param);
1490 dev_dbg(port->dev, "%s: TX: got channel %p\n", __func__, chan);
1491 if (chan) {
1492 s->chan_tx = chan;
1493 sg_init_table(&s->sg_tx, 1);
1494 /* UART circular tx buffer is an aligned page. */
1495 BUG_ON((int)port->state->xmit.buf & ~PAGE_MASK);
1496 sg_set_page(&s->sg_tx, virt_to_page(port->state->xmit.buf),
1497 UART_XMIT_SIZE, (int)port->state->xmit.buf & ~PAGE_MASK);
1498 nent = dma_map_sg(port->dev, &s->sg_tx, 1, DMA_TO_DEVICE);
1499 if (!nent)
1500 sci_tx_dma_release(s, false);
1501 else
1502 dev_dbg(port->dev, "%s: mapped %d@%p to %x\n", __func__,
1503 sg_dma_len(&s->sg_tx),
1504 port->state->xmit.buf, sg_dma_address(&s->sg_tx));
1505
1506 s->sg_len_tx = nent;
1507
1508 INIT_WORK(&s->work_tx, work_fn_tx);
1509 }
1510
1511 param = &s->param_rx;
1512
1513 /* Slave ID, e.g., SHDMA_SLAVE_SCIF0_RX */
ce6738b6
PM
1514 param->slave_id = s->cfg->dma_slave_rx;
1515 param->dma_dev = s->cfg->dma_dev;
73a19e4c
GL
1516
1517 chan = dma_request_channel(mask, filter, param);
1518 dev_dbg(port->dev, "%s: RX: got channel %p\n", __func__, chan);
1519 if (chan) {
1520 dma_addr_t dma[2];
1521 void *buf[2];
1522 int i;
1523
1524 s->chan_rx = chan;
1525
1526 s->buf_len_rx = 2 * max(16, (int)port->fifosize);
1527 buf[0] = dma_alloc_coherent(port->dev, s->buf_len_rx * 2,
1528 &dma[0], GFP_KERNEL);
1529
1530 if (!buf[0]) {
1531 dev_warn(port->dev,
1532 "failed to allocate dma buffer, using PIO\n");
1533 sci_rx_dma_release(s, true);
1534 return;
1535 }
1536
1537 buf[1] = buf[0] + s->buf_len_rx;
1538 dma[1] = dma[0] + s->buf_len_rx;
1539
1540 for (i = 0; i < 2; i++) {
1541 struct scatterlist *sg = &s->sg_rx[i];
1542
1543 sg_init_table(sg, 1);
1544 sg_set_page(sg, virt_to_page(buf[i]), s->buf_len_rx,
1545 (int)buf[i] & ~PAGE_MASK);
f354a381 1546 sg_dma_address(sg) = dma[i];
73a19e4c
GL
1547 }
1548
1549 INIT_WORK(&s->work_rx, work_fn_rx);
1550 setup_timer(&s->rx_timer, rx_timer_fn, (unsigned long)s);
1551
1552 sci_submit_rx(s);
1553 }
1554}
1555
1556static void sci_free_dma(struct uart_port *port)
1557{
1558 struct sci_port *s = to_sci_port(port);
1559
ce6738b6 1560 if (!s->cfg->dma_dev)
73a19e4c
GL
1561 return;
1562
1563 if (s->chan_tx)
1564 sci_tx_dma_release(s, false);
1565 if (s->chan_rx)
1566 sci_rx_dma_release(s, false);
1567}
27bd1075
PM
1568#else
1569static inline void sci_request_dma(struct uart_port *port)
1570{
1571}
1572
1573static inline void sci_free_dma(struct uart_port *port)
1574{
1575}
73a19e4c
GL
1576#endif
1577
1da177e4
LT
1578static int sci_startup(struct uart_port *port)
1579{
a5660ada 1580 struct sci_port *s = to_sci_port(port);
073e84c9 1581 int ret;
1da177e4 1582
73a19e4c
GL
1583 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1584
23241d43 1585 sci_port_enable(s);
1da177e4 1586
073e84c9
PM
1587 ret = sci_request_irq(s);
1588 if (unlikely(ret < 0))
1589 return ret;
1590
73a19e4c 1591 sci_request_dma(port);
073e84c9 1592
d656901b 1593 sci_start_tx(port);
73a19e4c 1594 sci_start_rx(port);
1da177e4
LT
1595
1596 return 0;
1597}
1598
1599static void sci_shutdown(struct uart_port *port)
1600{
a5660ada 1601 struct sci_port *s = to_sci_port(port);
1da177e4 1602
73a19e4c
GL
1603 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1604
1da177e4 1605 sci_stop_rx(port);
b129a8cc 1606 sci_stop_tx(port);
073e84c9 1607
73a19e4c 1608 sci_free_dma(port);
1da177e4
LT
1609 sci_free_irq(s);
1610
23241d43 1611 sci_port_disable(s);
1da177e4
LT
1612}
1613
26c92f37
PM
1614static unsigned int sci_scbrr_calc(unsigned int algo_id, unsigned int bps,
1615 unsigned long freq)
1616{
1617 switch (algo_id) {
1618 case SCBRR_ALGO_1:
1619 return ((freq + 16 * bps) / (16 * bps) - 1);
1620 case SCBRR_ALGO_2:
1621 return ((freq + 16 * bps) / (32 * bps) - 1);
1622 case SCBRR_ALGO_3:
1623 return (((freq * 2) + 16 * bps) / (16 * bps) - 1);
1624 case SCBRR_ALGO_4:
1625 return (((freq * 2) + 16 * bps) / (32 * bps) - 1);
1626 case SCBRR_ALGO_5:
1627 return (((freq * 1000 / 32) / bps) - 1);
1628 }
1629
1630 /* Warn, but use a safe default */
1631 WARN_ON(1);
e8183a6c 1632
26c92f37
PM
1633 return ((freq + 16 * bps) / (32 * bps) - 1);
1634}
1635
606d099c
AC
1636static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
1637 struct ktermios *old)
1da177e4 1638{
00b9de9c 1639 struct sci_port *s = to_sci_port(port);
154280fd 1640 unsigned int status, baud, smr_val, max_baud;
a2159b52 1641 int t = -1;
3089f381 1642 u16 scfcr = 0;
1da177e4 1643
154280fd
MD
1644 /*
1645 * earlyprintk comes here early on with port->uartclk set to zero.
1646 * the clock framework is not up and running at this point so here
1647 * we assume that 115200 is the maximum baud rate. please note that
1648 * the baud rate is not programmed during earlyprintk - it is assumed
1649 * that the previous boot loader has enabled required clocks and
1650 * setup the baud rate generator hardware for us already.
1651 */
1652 max_baud = port->uartclk ? port->uartclk / 16 : 115200;
1da177e4 1653
154280fd
MD
1654 baud = uart_get_baud_rate(port, termios, old, 0, max_baud);
1655 if (likely(baud && port->uartclk))
ce6738b6 1656 t = sci_scbrr_calc(s->cfg->scbrr_algo_id, baud, port->uartclk);
e108b2ca 1657
23241d43 1658 sci_port_enable(s);
36003386 1659
1da177e4
LT
1660 do {
1661 status = sci_in(port, SCxSR);
1662 } while (!(status & SCxSR_TEND(port)));
1663
1664 sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */
1665
1a22f08d 1666 if (port->type != PORT_SCI)
3089f381 1667 sci_out(port, SCFCR, scfcr | SCFCR_RFRST | SCFCR_TFRST);
1da177e4
LT
1668
1669 smr_val = sci_in(port, SCSMR) & 3;
e8183a6c 1670
1da177e4
LT
1671 if ((termios->c_cflag & CSIZE) == CS7)
1672 smr_val |= 0x40;
1673 if (termios->c_cflag & PARENB)
1674 smr_val |= 0x20;
1675 if (termios->c_cflag & PARODD)
1676 smr_val |= 0x30;
1677 if (termios->c_cflag & CSTOPB)
1678 smr_val |= 0x08;
1679
1680 uart_update_timeout(port, termios->c_cflag, baud);
1681
1682 sci_out(port, SCSMR, smr_val);
1683
73a19e4c 1684 dev_dbg(port->dev, "%s: SMR %x, t %x, SCSCR %x\n", __func__, smr_val, t,
ce6738b6 1685 s->cfg->scscr);
73a19e4c 1686
1da177e4 1687 if (t > 0) {
e7c98dc7 1688 if (t >= 256) {
1da177e4
LT
1689 sci_out(port, SCSMR, (sci_in(port, SCSMR) & ~3) | 1);
1690 t >>= 2;
e7c98dc7 1691 } else
1da177e4 1692 sci_out(port, SCSMR, sci_in(port, SCSMR) & ~3);
e7c98dc7 1693
1da177e4
LT
1694 sci_out(port, SCBRR, t);
1695 udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */
1696 }
1697
d5701647 1698 sci_init_pins(port, termios->c_cflag);
3089f381 1699 sci_out(port, SCFCR, scfcr | ((termios->c_cflag & CRTSCTS) ? SCFCR_MCE : 0));
b7a76e4b 1700
ce6738b6 1701 sci_out(port, SCSCR, s->cfg->scscr);
1da177e4 1702
3089f381
GL
1703#ifdef CONFIG_SERIAL_SH_SCI_DMA
1704 /*
1705 * Calculate delay for 1.5 DMA buffers: see
1706 * drivers/serial/serial_core.c::uart_update_timeout(). With 10 bits
1707 * (CS8), 250Hz, 115200 baud and 64 bytes FIFO, the above function
1708 * calculates 1 jiffie for the data plus 5 jiffies for the "slop(e)."
1709 * Then below we calculate 3 jiffies (12ms) for 1.5 DMA buffers (3 FIFO
1710 * sizes), but it has been found out experimentally, that this is not
1711 * enough: the driver too often needlessly runs on a DMA timeout. 20ms
1712 * as a minimum seem to work perfectly.
1713 */
1714 if (s->chan_rx) {
1715 s->rx_timeout = (port->timeout - HZ / 50) * s->buf_len_rx * 3 /
1716 port->fifosize / 2;
1717 dev_dbg(port->dev,
1718 "DMA Rx t-out %ums, tty t-out %u jiffies\n",
1719 s->rx_timeout * 1000 / HZ, port->timeout);
1720 if (s->rx_timeout < msecs_to_jiffies(20))
1721 s->rx_timeout = msecs_to_jiffies(20);
1722 }
1723#endif
1724
1da177e4 1725 if ((termios->c_cflag & CREAD) != 0)
73a19e4c 1726 sci_start_rx(port);
36003386 1727
23241d43 1728 sci_port_disable(s);
1da177e4
LT
1729}
1730
1731static const char *sci_type(struct uart_port *port)
1732{
1733 switch (port->type) {
e7c98dc7
MT
1734 case PORT_IRDA:
1735 return "irda";
1736 case PORT_SCI:
1737 return "sci";
1738 case PORT_SCIF:
1739 return "scif";
1740 case PORT_SCIFA:
1741 return "scifa";
d1d4b10c
GL
1742 case PORT_SCIFB:
1743 return "scifb";
1da177e4
LT
1744 }
1745
fa43972f 1746 return NULL;
1da177e4
LT
1747}
1748
e2651647 1749static inline unsigned long sci_port_size(struct uart_port *port)
1da177e4 1750{
e2651647
PM
1751 /*
1752 * Pick an arbitrary size that encapsulates all of the base
1753 * registers by default. This can be optimized later, or derived
1754 * from platform resource data at such a time that ports begin to
1755 * behave more erratically.
1756 */
1757 return 64;
1da177e4
LT
1758}
1759
f6e9495d
PM
1760static int sci_remap_port(struct uart_port *port)
1761{
1762 unsigned long size = sci_port_size(port);
1763
1764 /*
1765 * Nothing to do if there's already an established membase.
1766 */
1767 if (port->membase)
1768 return 0;
1769
1770 if (port->flags & UPF_IOREMAP) {
1771 port->membase = ioremap_nocache(port->mapbase, size);
1772 if (unlikely(!port->membase)) {
1773 dev_err(port->dev, "can't remap port#%d\n", port->line);
1774 return -ENXIO;
1775 }
1776 } else {
1777 /*
1778 * For the simple (and majority of) cases where we don't
1779 * need to do any remapping, just cast the cookie
1780 * directly.
1781 */
1782 port->membase = (void __iomem *)port->mapbase;
1783 }
1784
1785 return 0;
1786}
1787
e2651647 1788static void sci_release_port(struct uart_port *port)
1da177e4 1789{
e2651647
PM
1790 if (port->flags & UPF_IOREMAP) {
1791 iounmap(port->membase);
1792 port->membase = NULL;
1793 }
1794
1795 release_mem_region(port->mapbase, sci_port_size(port));
1da177e4
LT
1796}
1797
e2651647 1798static int sci_request_port(struct uart_port *port)
1da177e4 1799{
e2651647
PM
1800 unsigned long size = sci_port_size(port);
1801 struct resource *res;
f6e9495d 1802 int ret;
1da177e4 1803
1020520e 1804 res = request_mem_region(port->mapbase, size, dev_name(port->dev));
e2651647
PM
1805 if (unlikely(res == NULL))
1806 return -EBUSY;
1da177e4 1807
f6e9495d
PM
1808 ret = sci_remap_port(port);
1809 if (unlikely(ret != 0)) {
1810 release_resource(res);
1811 return ret;
7ff731ae 1812 }
e2651647
PM
1813
1814 return 0;
1815}
1816
1817static void sci_config_port(struct uart_port *port, int flags)
1818{
1819 if (flags & UART_CONFIG_TYPE) {
1820 struct sci_port *sport = to_sci_port(port);
1821
1822 port->type = sport->cfg->type;
1823 sci_request_port(port);
1824 }
1da177e4
LT
1825}
1826
1827static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
1828{
a5660ada 1829 struct sci_port *s = to_sci_port(port);
1da177e4 1830
ce6738b6 1831 if (ser->irq != s->cfg->irqs[SCIx_TXI_IRQ] || ser->irq > nr_irqs)
1da177e4
LT
1832 return -EINVAL;
1833 if (ser->baud_base < 2400)
1834 /* No paper tape reader for Mitch.. */
1835 return -EINVAL;
1836
1837 return 0;
1838}
1839
1840static struct uart_ops sci_uart_ops = {
1841 .tx_empty = sci_tx_empty,
1842 .set_mctrl = sci_set_mctrl,
1843 .get_mctrl = sci_get_mctrl,
1844 .start_tx = sci_start_tx,
1845 .stop_tx = sci_stop_tx,
1846 .stop_rx = sci_stop_rx,
1847 .enable_ms = sci_enable_ms,
1848 .break_ctl = sci_break_ctl,
1849 .startup = sci_startup,
1850 .shutdown = sci_shutdown,
1851 .set_termios = sci_set_termios,
1852 .type = sci_type,
1853 .release_port = sci_release_port,
1854 .request_port = sci_request_port,
1855 .config_port = sci_config_port,
1856 .verify_port = sci_verify_port,
07d2a1a1
PM
1857#ifdef CONFIG_CONSOLE_POLL
1858 .poll_get_char = sci_poll_get_char,
1859 .poll_put_char = sci_poll_put_char,
1860#endif
1da177e4
LT
1861};
1862
c7ed1ab3
PM
1863static int __devinit sci_init_single(struct platform_device *dev,
1864 struct sci_port *sci_port,
1865 unsigned int index,
1866 struct plat_sci_port *p)
e108b2ca 1867{
73a19e4c 1868 struct uart_port *port = &sci_port->port;
3127c6b2 1869 int ret;
e108b2ca 1870
73a19e4c
GL
1871 port->ops = &sci_uart_ops;
1872 port->iotype = UPIO_MEM;
1873 port->line = index;
75136d48
MP
1874
1875 switch (p->type) {
d1d4b10c
GL
1876 case PORT_SCIFB:
1877 port->fifosize = 256;
1878 break;
75136d48 1879 case PORT_SCIFA:
73a19e4c 1880 port->fifosize = 64;
75136d48
MP
1881 break;
1882 case PORT_SCIF:
73a19e4c 1883 port->fifosize = 16;
75136d48
MP
1884 break;
1885 default:
73a19e4c 1886 port->fifosize = 1;
75136d48
MP
1887 break;
1888 }
7b6fd3bf 1889
3127c6b2
PM
1890 if (p->regtype == SCIx_PROBE_REGTYPE) {
1891 ret = sci_probe_regmap(p);
fc97114b 1892 if (unlikely(ret))
3127c6b2
PM
1893 return ret;
1894 }
61a6976b 1895
7b6fd3bf 1896 if (dev) {
c7ed1ab3
PM
1897 sci_port->iclk = clk_get(&dev->dev, "sci_ick");
1898 if (IS_ERR(sci_port->iclk)) {
1899 sci_port->iclk = clk_get(&dev->dev, "peripheral_clk");
1900 if (IS_ERR(sci_port->iclk)) {
1901 dev_err(&dev->dev, "can't get iclk\n");
1902 return PTR_ERR(sci_port->iclk);
1903 }
1904 }
1905
1906 /*
1907 * The function clock is optional, ignore it if we can't
1908 * find it.
1909 */
1910 sci_port->fclk = clk_get(&dev->dev, "sci_fck");
1911 if (IS_ERR(sci_port->fclk))
1912 sci_port->fclk = NULL;
1913
73a19e4c 1914 port->dev = &dev->dev;
5e50d2d6
MD
1915
1916 pm_runtime_enable(&dev->dev);
7b6fd3bf 1917 }
e108b2ca 1918
7ed7e071
MD
1919 sci_port->break_timer.data = (unsigned long)sci_port;
1920 sci_port->break_timer.function = sci_break_timer;
1921 init_timer(&sci_port->break_timer);
1922
debf9507
PM
1923 /*
1924 * Establish some sensible defaults for the error detection.
1925 */
1926 if (!p->error_mask)
1927 p->error_mask = (p->type == PORT_SCI) ?
1928 SCI_DEFAULT_ERROR_MASK : SCIF_DEFAULT_ERROR_MASK;
1929
1930 /*
1931 * Establish sensible defaults for the overrun detection, unless
1932 * the part has explicitly disabled support for it.
1933 */
1934 if (p->overrun_bit != SCIx_NOT_SUPPORTED) {
1935 if (p->type == PORT_SCI)
1936 p->overrun_bit = 5;
1937 else if (p->scbrr_algo_id == SCBRR_ALGO_4)
1938 p->overrun_bit = 9;
1939 else
1940 p->overrun_bit = 0;
1941
1942 /*
1943 * Make the error mask inclusive of overrun detection, if
1944 * supported.
1945 */
1946 p->error_mask |= (1 << p->overrun_bit);
1947 }
1948
ce6738b6 1949 sci_port->cfg = p;
7ed7e071 1950
ce6738b6
PM
1951 port->mapbase = p->mapbase;
1952 port->type = p->type;
f43dc23d 1953 port->flags = p->flags;
61a6976b 1954 port->regshift = p->regshift;
73a19e4c 1955
ce6738b6 1956 /*
61a6976b 1957 * The UART port needs an IRQ value, so we peg this to the RX IRQ
ce6738b6
PM
1958 * for the multi-IRQ ports, which is where we are primarily
1959 * concerned with the shutdown path synchronization.
1960 *
1961 * For the muxed case there's nothing more to do.
1962 */
54aa89ea 1963 port->irq = p->irqs[SCIx_RXI_IRQ];
9174fc8f 1964 port->irqflags = IRQF_DISABLED;
73a19e4c 1965
61a6976b
PM
1966 port->serial_in = sci_serial_in;
1967 port->serial_out = sci_serial_out;
1968
ce6738b6
PM
1969 if (p->dma_dev)
1970 dev_dbg(port->dev, "DMA device %p, tx %d, rx %d\n",
1971 p->dma_dev, p->dma_slave_tx, p->dma_slave_rx);
7ed7e071 1972
c7ed1ab3 1973 return 0;
e108b2ca
PM
1974}
1975
1da177e4 1976#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
dc8e6f5b
MD
1977static void serial_console_putchar(struct uart_port *port, int ch)
1978{
1979 sci_poll_put_char(port, ch);
1980}
1981
1da177e4
LT
1982/*
1983 * Print a string to the serial port trying not to disturb
1984 * any possible real use of the port...
1985 */
1986static void serial_console_write(struct console *co, const char *s,
1987 unsigned count)
1988{
906b17dc
PM
1989 struct sci_port *sci_port = &sci_ports[co->index];
1990 struct uart_port *port = &sci_port->port;
973e5d52 1991 unsigned short bits;
07d2a1a1 1992
23241d43 1993 sci_port_enable(sci_port);
501b825d
MD
1994
1995 uart_console_write(port, s, count, serial_console_putchar);
973e5d52
MD
1996
1997 /* wait until fifo is empty and last bit has been transmitted */
1998 bits = SCxSR_TDxE(port) | SCxSR_TEND(port);
1999 while ((sci_in(port, SCxSR) & bits) != bits)
2000 cpu_relax();
501b825d 2001
23241d43 2002 sci_port_disable(sci_port);
1da177e4
LT
2003}
2004
7b6fd3bf 2005static int __devinit serial_console_setup(struct console *co, char *options)
1da177e4 2006{
dc8e6f5b 2007 struct sci_port *sci_port;
1da177e4
LT
2008 struct uart_port *port;
2009 int baud = 115200;
2010 int bits = 8;
2011 int parity = 'n';
2012 int flow = 'n';
2013 int ret;
2014
e108b2ca 2015 /*
906b17dc 2016 * Refuse to handle any bogus ports.
1da177e4 2017 */
906b17dc 2018 if (co->index < 0 || co->index >= SCI_NPORTS)
e108b2ca 2019 return -ENODEV;
e108b2ca 2020
906b17dc
PM
2021 sci_port = &sci_ports[co->index];
2022 port = &sci_port->port;
2023
b2267a6b
AC
2024 /*
2025 * Refuse to handle uninitialized ports.
2026 */
2027 if (!port->ops)
2028 return -ENODEV;
2029
f6e9495d
PM
2030 ret = sci_remap_port(port);
2031 if (unlikely(ret != 0))
2032 return ret;
e108b2ca 2033
23241d43 2034 sci_port_enable(sci_port);
b7a76e4b 2035
1da177e4
LT
2036 if (options)
2037 uart_parse_options(options, &baud, &parity, &bits, &flow);
2038
501b825d 2039 /* TODO: disable clock */
ab7cfb55 2040 return uart_set_options(port, co, baud, parity, bits, flow);
1da177e4
LT
2041}
2042
2043static struct console serial_console = {
2044 .name = "ttySC",
906b17dc 2045 .device = uart_console_device,
1da177e4
LT
2046 .write = serial_console_write,
2047 .setup = serial_console_setup,
fa5da2f7 2048 .flags = CON_PRINTBUFFER,
1da177e4 2049 .index = -1,
906b17dc 2050 .data = &sci_uart_driver,
1da177e4
LT
2051};
2052
7b6fd3bf
MD
2053static struct console early_serial_console = {
2054 .name = "early_ttySC",
2055 .write = serial_console_write,
2056 .flags = CON_PRINTBUFFER,
906b17dc 2057 .index = -1,
7b6fd3bf 2058};
ecdf8a46 2059
7b6fd3bf
MD
2060static char early_serial_buf[32];
2061
ecdf8a46
PM
2062static int __devinit sci_probe_earlyprintk(struct platform_device *pdev)
2063{
2064 struct plat_sci_port *cfg = pdev->dev.platform_data;
2065
2066 if (early_serial_console.data)
2067 return -EEXIST;
2068
2069 early_serial_console.index = pdev->id;
ecdf8a46 2070
906b17dc 2071 sci_init_single(NULL, &sci_ports[pdev->id], pdev->id, cfg);
ecdf8a46
PM
2072
2073 serial_console_setup(&early_serial_console, early_serial_buf);
2074
2075 if (!strstr(early_serial_buf, "keep"))
2076 early_serial_console.flags |= CON_BOOT;
2077
2078 register_console(&early_serial_console);
2079 return 0;
2080}
6a8c9799
NI
2081
2082#define SCI_CONSOLE (&serial_console)
2083
ecdf8a46
PM
2084#else
2085static inline int __devinit sci_probe_earlyprintk(struct platform_device *pdev)
2086{
2087 return -EINVAL;
2088}
1da177e4 2089
6a8c9799
NI
2090#define SCI_CONSOLE NULL
2091
2092#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
1da177e4
LT
2093
2094static char banner[] __initdata =
2095 KERN_INFO "SuperH SCI(F) driver initialized\n";
2096
2097static struct uart_driver sci_uart_driver = {
2098 .owner = THIS_MODULE,
2099 .driver_name = "sci",
1da177e4
LT
2100 .dev_name = "ttySC",
2101 .major = SCI_MAJOR,
2102 .minor = SCI_MINOR_START,
e108b2ca 2103 .nr = SCI_NPORTS,
1da177e4
LT
2104 .cons = SCI_CONSOLE,
2105};
2106
54507f6e 2107static int sci_remove(struct platform_device *dev)
e552de24 2108{
d535a230 2109 struct sci_port *port = platform_get_drvdata(dev);
e552de24 2110
d535a230
PM
2111 cpufreq_unregister_notifier(&port->freq_transition,
2112 CPUFREQ_TRANSITION_NOTIFIER);
e552de24 2113
d535a230
PM
2114 uart_remove_one_port(&sci_uart_driver, &port->port);
2115
2116 clk_put(port->iclk);
2117 clk_put(port->fclk);
e552de24 2118
5e50d2d6 2119 pm_runtime_disable(&dev->dev);
e552de24
MD
2120 return 0;
2121}
2122
0ee70712
MD
2123static int __devinit sci_probe_single(struct platform_device *dev,
2124 unsigned int index,
2125 struct plat_sci_port *p,
2126 struct sci_port *sciport)
2127{
0ee70712
MD
2128 int ret;
2129
2130 /* Sanity check */
2131 if (unlikely(index >= SCI_NPORTS)) {
2132 dev_notice(&dev->dev, "Attempting to register port "
2133 "%d when only %d are available.\n",
2134 index+1, SCI_NPORTS);
2135 dev_notice(&dev->dev, "Consider bumping "
2136 "CONFIG_SERIAL_SH_SCI_NR_UARTS!\n");
2137 return 0;
2138 }
2139
c7ed1ab3
PM
2140 ret = sci_init_single(dev, sciport, index, p);
2141 if (ret)
2142 return ret;
0ee70712 2143
d535a230 2144 return uart_add_one_port(&sci_uart_driver, &sciport->port);
0ee70712
MD
2145}
2146
e108b2ca 2147static int __devinit sci_probe(struct platform_device *dev)
1da177e4 2148{
e108b2ca 2149 struct plat_sci_port *p = dev->dev.platform_data;
d535a230 2150 struct sci_port *sp = &sci_ports[dev->id];
ecdf8a46 2151 int ret;
d535a230 2152
ecdf8a46
PM
2153 /*
2154 * If we've come here via earlyprintk initialization, head off to
2155 * the special early probe. We don't have sufficient device state
2156 * to make it beyond this yet.
2157 */
2158 if (is_early_platform_device(dev))
2159 return sci_probe_earlyprintk(dev);
7b6fd3bf 2160
d535a230 2161 platform_set_drvdata(dev, sp);
e552de24 2162
906b17dc 2163 ret = sci_probe_single(dev, dev->id, p, sp);
d535a230
PM
2164 if (ret)
2165 goto err_unreg;
e552de24 2166
d535a230 2167 sp->freq_transition.notifier_call = sci_notifier;
1da177e4 2168
d535a230
PM
2169 ret = cpufreq_register_notifier(&sp->freq_transition,
2170 CPUFREQ_TRANSITION_NOTIFIER);
2171 if (unlikely(ret < 0))
2172 goto err_unreg;
1da177e4
LT
2173
2174#ifdef CONFIG_SH_STANDARD_BIOS
2175 sh_bios_gdb_detach();
2176#endif
2177
e108b2ca 2178 return 0;
7ff731ae
PM
2179
2180err_unreg:
e552de24 2181 sci_remove(dev);
7ff731ae 2182 return ret;
1da177e4
LT
2183}
2184
6daa79b3 2185static int sci_suspend(struct device *dev)
1da177e4 2186{
d535a230 2187 struct sci_port *sport = dev_get_drvdata(dev);
e108b2ca 2188
d535a230
PM
2189 if (sport)
2190 uart_suspend_port(&sci_uart_driver, &sport->port);
1da177e4 2191
e108b2ca
PM
2192 return 0;
2193}
1da177e4 2194
6daa79b3 2195static int sci_resume(struct device *dev)
e108b2ca 2196{
d535a230 2197 struct sci_port *sport = dev_get_drvdata(dev);
e108b2ca 2198
d535a230
PM
2199 if (sport)
2200 uart_resume_port(&sci_uart_driver, &sport->port);
e108b2ca
PM
2201
2202 return 0;
2203}
2204
47145210 2205static const struct dev_pm_ops sci_dev_pm_ops = {
6daa79b3
PM
2206 .suspend = sci_suspend,
2207 .resume = sci_resume,
2208};
2209
e108b2ca
PM
2210static struct platform_driver sci_driver = {
2211 .probe = sci_probe,
b9e39c89 2212 .remove = sci_remove,
e108b2ca
PM
2213 .driver = {
2214 .name = "sh-sci",
2215 .owner = THIS_MODULE,
6daa79b3 2216 .pm = &sci_dev_pm_ops,
e108b2ca
PM
2217 },
2218};
2219
2220static int __init sci_init(void)
2221{
2222 int ret;
2223
2224 printk(banner);
2225
e108b2ca
PM
2226 ret = uart_register_driver(&sci_uart_driver);
2227 if (likely(ret == 0)) {
2228 ret = platform_driver_register(&sci_driver);
2229 if (unlikely(ret))
2230 uart_unregister_driver(&sci_uart_driver);
2231 }
2232
2233 return ret;
2234}
2235
2236static void __exit sci_exit(void)
2237{
2238 platform_driver_unregister(&sci_driver);
1da177e4
LT
2239 uart_unregister_driver(&sci_uart_driver);
2240}
2241
7b6fd3bf
MD
2242#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
2243early_platform_init_buffer("earlyprintk", &sci_driver,
2244 early_serial_buf, ARRAY_SIZE(early_serial_buf));
2245#endif
1da177e4
LT
2246module_init(sci_init);
2247module_exit(sci_exit);
2248
e108b2ca 2249MODULE_LICENSE("GPL");
e169c139 2250MODULE_ALIAS("platform:sh-sci");
7f405f9c
PM
2251MODULE_AUTHOR("Paul Mundt");
2252MODULE_DESCRIPTION("SuperH SCI(F) serial driver");
This page took 0.738105 seconds and 5 git commands to generate.