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