serial: sh-sci: Codestyle cleanup patch.
[pandora-kernel.git] / drivers / serial / sh-sci.c
1 /*
2  * drivers/serial/sh-sci.c
3  *
4  * SuperH on-chip serial module support.  (SCI with no FIFO / with FIFO)
5  *
6  *  Copyright (C) 2002 - 2008  Paul Mundt
7  *  Modified to support SH7720 SCIF. Markus Brunner, Mark Jonas (Jul 2007).
8  *
9  * based off of the old drivers/char/sh-sci.c by:
10  *
11  *   Copyright (C) 1999, 2000  Niibe Yutaka
12  *   Copyright (C) 2000  Sugioka Toshinobu
13  *   Modified to support multiple serial ports. Stuart Menefy (May 2000).
14  *   Modified to support SecureEdge. David McCullough (2002)
15  *   Modified to support SH7300 SCIF. Takashi Kusuda (Jun 2003).
16  *   Removed SH7300 support (Jul 2007).
17  *
18  * This file is subject to the terms and conditions of the GNU General Public
19  * License.  See the file "COPYING" in the main directory of this archive
20  * for more details.
21  */
22 #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
23 #define SUPPORT_SYSRQ
24 #endif
25
26 #undef DEBUG
27
28 #include <linux/module.h>
29 #include <linux/errno.h>
30 #include <linux/timer.h>
31 #include <linux/interrupt.h>
32 #include <linux/tty.h>
33 #include <linux/tty_flip.h>
34 #include <linux/serial.h>
35 #include <linux/major.h>
36 #include <linux/string.h>
37 #include <linux/sysrq.h>
38 #include <linux/ioport.h>
39 #include <linux/mm.h>
40 #include <linux/init.h>
41 #include <linux/delay.h>
42 #include <linux/console.h>
43 #include <linux/platform_device.h>
44 #include <linux/serial_sci.h>
45 #include <linux/notifier.h>
46 #include <linux/cpufreq.h>
47 #include <linux/clk.h>
48 #include <linux/ctype.h>
49 #include <linux/err.h>
50
51 #ifdef CONFIG_SUPERH
52 #include <asm/clock.h>
53 #include <asm/sh_bios.h>
54 #include <asm/kgdb.h>
55 #endif
56
57 #include "sh-sci.h"
58
59 struct sci_port {
60         struct uart_port        port;
61
62         /* Port type */
63         unsigned int            type;
64
65         /* Port IRQs: ERI, RXI, TXI, BRI (optional) */
66         unsigned int            irqs[SCIx_NR_IRQS];
67
68         /* Port pin configuration */
69         void                    (*init_pins)(struct uart_port *port,
70                                              unsigned int cflag);
71
72         /* Port enable callback */
73         void                    (*enable)(struct uart_port *port);
74
75         /* Port disable callback */
76         void                    (*disable)(struct uart_port *port);
77
78         /* Break timer */
79         struct timer_list       break_timer;
80         int                     break_flag;
81
82 #ifdef CONFIG_HAVE_CLK
83         /* Port clock */
84         struct clk              *clk;
85 #endif
86 };
87
88 #ifdef CONFIG_SH_KGDB
89 static struct sci_port *kgdb_sci_port;
90 #endif
91
92 #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
93 static struct sci_port *serial_console_port;
94 #endif
95
96 /* Function prototypes */
97 static void sci_stop_tx(struct uart_port *port);
98
99 #define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
100
101 static struct sci_port sci_ports[SCI_NPORTS];
102 static struct uart_driver sci_uart_driver;
103
104 static inline struct sci_port *
105 to_sci_port(struct uart_port *uart)
106 {
107         return container_of(uart, struct sci_port, port);
108 }
109
110 #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && \
111     defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
112 static inline void handle_error(struct uart_port *port)
113 {
114         /* Clear error flags */
115         sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
116 }
117
118 static int get_char(struct uart_port *port)
119 {
120         unsigned long flags;
121         unsigned short status;
122         int c;
123
124         spin_lock_irqsave(&port->lock, flags);
125         do {
126                 status = sci_in(port, SCxSR);
127                 if (status & SCxSR_ERRORS(port)) {
128                         handle_error(port);
129                         continue;
130                 }
131         } while (!(status & SCxSR_RDxF(port)));
132         c = sci_in(port, SCxRDR);
133         /* Dummy read */
134         sci_in(port, SCxSR);
135         sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
136         spin_unlock_irqrestore(&port->lock, flags);
137
138         return c;
139 }
140 #endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
141
142 #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) || defined(CONFIG_SH_KGDB)
143 static void put_char(struct uart_port *port, char c)
144 {
145         unsigned long flags;
146         unsigned short status;
147
148         spin_lock_irqsave(&port->lock, flags);
149
150         do {
151                 status = sci_in(port, SCxSR);
152         } while (!(status & SCxSR_TDxE(port)));
153
154         sci_in(port, SCxSR);            /* Dummy read */
155         sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
156         sci_out(port, SCxTDR, c);
157
158         spin_unlock_irqrestore(&port->lock, flags);
159 }
160 #endif
161
162 #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
163 static void put_string(struct sci_port *sci_port, const char *buffer, int count)
164 {
165         struct uart_port *port = &sci_port->port;
166         const unsigned char *p = buffer;
167         int i;
168
169 #if defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
170         int checksum;
171         int usegdb = 0;
172
173 #ifdef CONFIG_SH_STANDARD_BIOS
174         /* This call only does a trap the first time it is
175          * called, and so is safe to do here unconditionally
176          */
177         usegdb |= sh_bios_in_gdb_mode();
178 #endif
179 #ifdef CONFIG_SH_KGDB
180         usegdb |= (kgdb_in_gdb_mode && (sci_port == kgdb_sci_port));
181 #endif
182
183         if (usegdb) {
184             /*  $<packet info>#<checksum>. */
185             do {
186                 unsigned char c;
187                 put_char(port, '$');
188                 put_char(port, 'O'); /* 'O'utput to console */
189                 checksum = 'O';
190
191                 /* Don't use run length encoding */
192                 for (i = 0; i < count; i++) {
193                         int h, l;
194
195                         c = *p++;
196                         h = hex_asc_hi(c);
197                         l = hex_asc_lo(c);
198                         put_char(port, h);
199                         put_char(port, l);
200                         checksum += h + l;
201                 }
202                 put_char(port, '#');
203                 put_char(port, hex_asc_hi(checksum));
204                 put_char(port, hex_asc_lo(checksum));
205             } while  (get_char(port) != '+');
206         } else
207 #endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
208         for (i = 0; i < count; i++) {
209                 if (*p == 10)
210                         put_char(port, '\r');
211                 put_char(port, *p++);
212         }
213 }
214 #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
215
216 #ifdef CONFIG_SH_KGDB
217 static int kgdb_sci_getchar(void)
218 {
219         int c;
220
221         /* Keep trying to read a character, this could be neater */
222         while ((c = get_char(&kgdb_sci_port->port)) < 0)
223                 cpu_relax();
224
225         return c;
226 }
227
228 static inline void kgdb_sci_putchar(int c)
229 {
230         put_char(&kgdb_sci_port->port, c);
231 }
232 #endif /* CONFIG_SH_KGDB */
233
234 #if defined(__H8300S__)
235 enum { sci_disable, sci_enable };
236
237 static void h8300_sci_config(struct uart_port *port, unsigned int ctrl)
238 {
239         volatile unsigned char *mstpcrl = (volatile unsigned char *)MSTPCRL;
240         int ch = (port->mapbase  - SMR0) >> 3;
241         unsigned char mask = 1 << (ch+1);
242
243         if (ctrl == sci_disable)
244                 *mstpcrl |= mask;
245         else
246                 *mstpcrl &= ~mask;
247 }
248
249 static inline void h8300_sci_enable(struct uart_port *port)
250 {
251         h8300_sci_config(port, sci_enable);
252 }
253
254 static inline void h8300_sci_disable(struct uart_port *port)
255 {
256         h8300_sci_config(port, sci_disable);
257 }
258 #endif
259
260 #if defined(__H8300H__) || defined(__H8300S__)
261 static void sci_init_pins_sci(struct uart_port *port, unsigned int cflag)
262 {
263         int ch = (port->mapbase - SMR0) >> 3;
264
265         /* set DDR regs */
266         H8300_GPIO_DDR(h8300_sci_pins[ch].port,
267                        h8300_sci_pins[ch].rx,
268                        H8300_GPIO_INPUT);
269         H8300_GPIO_DDR(h8300_sci_pins[ch].port,
270                        h8300_sci_pins[ch].tx,
271                        H8300_GPIO_OUTPUT);
272
273         /* tx mark output*/
274         H8300_SCI_DR(ch) |= h8300_sci_pins[ch].tx;
275 }
276 #else
277 #define sci_init_pins_sci NULL
278 #endif
279
280 #if defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709)
281 static void sci_init_pins_irda(struct uart_port *port, unsigned int cflag)
282 {
283         unsigned int fcr_val = 0;
284
285         if (cflag & CRTSCTS)
286                 fcr_val |= SCFCR_MCE;
287
288         sci_out(port, SCFCR, fcr_val);
289 }
290 #else
291 #define sci_init_pins_irda NULL
292 #endif
293
294 #if defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
295 static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
296 {
297         unsigned int fcr_val = 0;
298
299         set_sh771x_scif_pfc(port);
300         if (cflag & CRTSCTS)
301                 fcr_val |= SCFCR_MCE;
302         sci_out(port, SCFCR, fcr_val);
303 }
304 #elif defined(CONFIG_CPU_SUBTYPE_SH7720) || defined(CONFIG_CPU_SUBTYPE_SH7721)
305 static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
306 {
307         unsigned int fcr_val = 0;
308         unsigned short data;
309
310         if (cflag & CRTSCTS) {
311                 /* enable RTS/CTS */
312                 if (port->mapbase == 0xa4430000) { /* SCIF0 */
313                         /* Clear PTCR bit 9-2; enable all scif pins but sck */
314                         data = ctrl_inw(PORT_PTCR);
315                         ctrl_outw((data & 0xfc03), PORT_PTCR);
316                 } else if (port->mapbase == 0xa4438000) { /* SCIF1 */
317                         /* Clear PVCR bit 9-2 */
318                         data = ctrl_inw(PORT_PVCR);
319                         ctrl_outw((data & 0xfc03), PORT_PVCR);
320                 }
321                 fcr_val |= SCFCR_MCE;
322         } else {
323                 if (port->mapbase == 0xa4430000) { /* SCIF0 */
324                         /* Clear PTCR bit 5-2; enable only tx and rx  */
325                         data = ctrl_inw(PORT_PTCR);
326                         ctrl_outw((data & 0xffc3), PORT_PTCR);
327                 } else if (port->mapbase == 0xa4438000) { /* SCIF1 */
328                         /* Clear PVCR bit 5-2 */
329                         data = ctrl_inw(PORT_PVCR);
330                         ctrl_outw((data & 0xffc3), PORT_PVCR);
331                 }
332         }
333         sci_out(port, SCFCR, fcr_val);
334 }
335 #elif defined(CONFIG_CPU_SH3)
336 /* For SH7705, SH7706, SH7707, SH7709, SH7709A, SH7729 */
337 static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
338 {
339         unsigned int fcr_val = 0;
340         unsigned short data;
341
342         /* We need to set SCPCR to enable RTS/CTS */
343         data = ctrl_inw(SCPCR);
344         /* Clear out SCP7MD1,0, SCP6MD1,0, SCP4MD1,0*/
345         ctrl_outw(data & 0x0fcf, SCPCR);
346
347         if (cflag & CRTSCTS)
348                 fcr_val |= SCFCR_MCE;
349         else {
350                 /* We need to set SCPCR to enable RTS/CTS */
351                 data = ctrl_inw(SCPCR);
352                 /* Clear out SCP7MD1,0, SCP4MD1,0,
353                    Set SCP6MD1,0 = {01} (output)  */
354                 ctrl_outw((data & 0x0fcf) | 0x1000, SCPCR);
355
356                 data = ctrl_inb(SCPDR);
357                 /* Set /RTS2 (bit6) = 0 */
358                 ctrl_outb(data & 0xbf, SCPDR);
359         }
360
361         sci_out(port, SCFCR, fcr_val);
362 }
363 #elif defined(CONFIG_CPU_SUBTYPE_SH7722)
364 static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
365 {
366         unsigned int fcr_val = 0;
367         unsigned short data;
368
369         if (port->mapbase == 0xffe00000) {
370                 data = ctrl_inw(PSCR);
371                 data &= ~0x03cf;
372                 if (cflag & CRTSCTS)
373                         fcr_val |= SCFCR_MCE;
374                 else
375                         data |= 0x0340;
376
377                 ctrl_outw(data, PSCR);
378         }
379         /* SCIF1 and SCIF2 should be setup by board code */
380
381         sci_out(port, SCFCR, fcr_val);
382 }
383 #elif defined(CONFIG_CPU_SUBTYPE_SH7723)
384 static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
385 {
386         /* Nothing to do here.. */
387         sci_out(port, SCFCR, 0);
388 }
389 #else
390 /* For SH7750 */
391 static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
392 {
393         unsigned int fcr_val = 0;
394
395         if (cflag & CRTSCTS) {
396                 fcr_val |= SCFCR_MCE;
397         } else {
398 #if defined(CONFIG_CPU_SUBTYPE_SH7343) || defined(CONFIG_CPU_SUBTYPE_SH7366)
399                 /* Nothing */
400 #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \
401       defined(CONFIG_CPU_SUBTYPE_SH7780) || \
402       defined(CONFIG_CPU_SUBTYPE_SH7785) || \
403       defined(CONFIG_CPU_SUBTYPE_SHX3)
404                 ctrl_outw(0x0080, SCSPTR0); /* Set RTS = 1 */
405 #else
406                 ctrl_outw(0x0080, SCSPTR2); /* Set RTS = 1 */
407 #endif
408         }
409         sci_out(port, SCFCR, fcr_val);
410 }
411 #endif
412
413 #if defined(CONFIG_CPU_SUBTYPE_SH7760) || \
414     defined(CONFIG_CPU_SUBTYPE_SH7780) || \
415     defined(CONFIG_CPU_SUBTYPE_SH7785)
416 static inline int scif_txroom(struct uart_port *port)
417 {
418         return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0xff);
419 }
420
421 static inline int scif_rxroom(struct uart_port *port)
422 {
423         return sci_in(port, SCRFDR) & 0xff;
424 }
425 #elif defined(CONFIG_CPU_SUBTYPE_SH7763)
426 static inline int scif_txroom(struct uart_port *port)
427 {
428         if ((port->mapbase == 0xffe00000) ||
429             (port->mapbase == 0xffe08000)) {
430                 /* SCIF0/1*/
431                 return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0xff);
432         } else {
433                 /* SCIF2 */
434                 return SCIF2_TXROOM_MAX - (sci_in(port, SCFDR) >> 8);
435         }
436 }
437
438 static inline int scif_rxroom(struct uart_port *port)
439 {
440         if ((port->mapbase == 0xffe00000) ||
441             (port->mapbase == 0xffe08000)) {
442                 /* SCIF0/1*/
443                 return sci_in(port, SCRFDR) & 0xff;
444         } else {
445                 /* SCIF2 */
446                 return sci_in(port, SCFDR) & SCIF2_RFDC_MASK;
447         }
448 }
449 #else
450 static inline int scif_txroom(struct uart_port *port)
451 {
452         return SCIF_TXROOM_MAX - (sci_in(port, SCFDR) >> 8);
453 }
454
455 static inline int scif_rxroom(struct uart_port *port)
456 {
457         return sci_in(port, SCFDR) & SCIF_RFDC_MASK;
458 }
459 #endif
460
461 static inline int sci_txroom(struct uart_port *port)
462 {
463         return (sci_in(port, SCxSR) & SCI_TDRE) != 0;
464 }
465
466 static inline int sci_rxroom(struct uart_port *port)
467 {
468         return (sci_in(port, SCxSR) & SCxSR_RDxF(port)) != 0;
469 }
470
471 /* ********************************************************************** *
472  *                   the interrupt related routines                       *
473  * ********************************************************************** */
474
475 static void sci_transmit_chars(struct uart_port *port)
476 {
477         struct circ_buf *xmit = &port->info->xmit;
478         unsigned int stopped = uart_tx_stopped(port);
479         unsigned short status;
480         unsigned short ctrl;
481         int count;
482
483         status = sci_in(port, SCxSR);
484         if (!(status & SCxSR_TDxE(port))) {
485                 ctrl = sci_in(port, SCSCR);
486                 if (uart_circ_empty(xmit))
487                         ctrl &= ~SCI_CTRL_FLAGS_TIE;
488                 else
489                         ctrl |= SCI_CTRL_FLAGS_TIE;
490                 sci_out(port, SCSCR, ctrl);
491                 return;
492         }
493
494         if (port->type == PORT_SCI)
495                 count = sci_txroom(port);
496         else
497                 count = scif_txroom(port);
498
499         do {
500                 unsigned char c;
501
502                 if (port->x_char) {
503                         c = port->x_char;
504                         port->x_char = 0;
505                 } else if (!uart_circ_empty(xmit) && !stopped) {
506                         c = xmit->buf[xmit->tail];
507                         xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
508                 } else {
509                         break;
510                 }
511
512                 sci_out(port, SCxTDR, c);
513
514                 port->icount.tx++;
515         } while (--count > 0);
516
517         sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
518
519         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
520                 uart_write_wakeup(port);
521         if (uart_circ_empty(xmit)) {
522                 sci_stop_tx(port);
523         } else {
524                 ctrl = sci_in(port, SCSCR);
525
526                 if (port->type != PORT_SCI) {
527                         sci_in(port, SCxSR); /* Dummy read */
528                         sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
529                 }
530
531                 ctrl |= SCI_CTRL_FLAGS_TIE;
532                 sci_out(port, SCSCR, ctrl);
533         }
534 }
535
536 /* On SH3, SCIF may read end-of-break as a space->mark char */
537 #define STEPFN(c)  ({int __c = (c); (((__c-1)|(__c)) == -1); })
538
539 static inline void sci_receive_chars(struct uart_port *port)
540 {
541         struct sci_port *sci_port = to_sci_port(port);
542         struct tty_struct *tty = port->info->port.tty;
543         int i, count, copied = 0;
544         unsigned short status;
545         unsigned char flag;
546
547         status = sci_in(port, SCxSR);
548         if (!(status & SCxSR_RDxF(port)))
549                 return;
550
551         while (1) {
552                 if (port->type == PORT_SCI)
553                         count = sci_rxroom(port);
554                 else
555                         count = scif_rxroom(port);
556
557                 /* Don't copy more bytes than there is room for in the buffer */
558                 count = tty_buffer_request_room(tty, count);
559
560                 /* If for any reason we can't copy more data, we're done! */
561                 if (count == 0)
562                         break;
563
564                 if (port->type == PORT_SCI) {
565                         char c = sci_in(port, SCxRDR);
566                         if (uart_handle_sysrq_char(port, c) ||
567                             sci_port->break_flag)
568                                 count = 0;
569                         else
570                                 tty_insert_flip_char(tty, c, TTY_NORMAL);
571                 } else {
572                         for (i = 0; i < count; i++) {
573                                 char c = sci_in(port, SCxRDR);
574                                 status = sci_in(port, SCxSR);
575 #if defined(CONFIG_CPU_SH3)
576                                 /* Skip "chars" during break */
577                                 if (sci_port->break_flag) {
578                                         if ((c == 0) &&
579                                             (status & SCxSR_FER(port))) {
580                                                 count--; i--;
581                                                 continue;
582                                         }
583
584                                         /* Nonzero => end-of-break */
585                                         pr_debug("scif: debounce<%02x>\n", c);
586                                         sci_port->break_flag = 0;
587
588                                         if (STEPFN(c)) {
589                                                 count--; i--;
590                                                 continue;
591                                         }
592                                 }
593 #endif /* CONFIG_CPU_SH3 */
594                                 if (uart_handle_sysrq_char(port, c)) {
595                                         count--; i--;
596                                         continue;
597                                 }
598
599                                 /* Store data and status */
600                                 if (status&SCxSR_FER(port)) {
601                                         flag = TTY_FRAME;
602                                         pr_debug("sci: frame error\n");
603                                 } else if (status&SCxSR_PER(port)) {
604                                         flag = TTY_PARITY;
605                                         pr_debug("sci: parity error\n");
606                                 } else
607                                         flag = TTY_NORMAL;
608                                 tty_insert_flip_char(tty, c, flag);
609                         }
610                 }
611
612                 sci_in(port, SCxSR); /* dummy read */
613                 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
614
615                 copied += count;
616                 port->icount.rx += count;
617         }
618
619         if (copied) {
620                 /* Tell the rest of the system the news. New characters! */
621                 tty_flip_buffer_push(tty);
622         } else {
623                 sci_in(port, SCxSR); /* dummy read */
624                 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
625         }
626 }
627
628 #define SCI_BREAK_JIFFIES (HZ/20)
629 /* The sci generates interrupts during the break,
630  * 1 per millisecond or so during the break period, for 9600 baud.
631  * So dont bother disabling interrupts.
632  * But dont want more than 1 break event.
633  * Use a kernel timer to periodically poll the rx line until
634  * the break is finished.
635  */
636 static void sci_schedule_break_timer(struct sci_port *port)
637 {
638         port->break_timer.expires = jiffies + SCI_BREAK_JIFFIES;
639         add_timer(&port->break_timer);
640 }
641 /* Ensure that two consecutive samples find the break over. */
642 static void sci_break_timer(unsigned long data)
643 {
644         struct sci_port *port = (struct sci_port *)data;
645
646         if (sci_rxd_in(&port->port) == 0) {
647                 port->break_flag = 1;
648                 sci_schedule_break_timer(port);
649         } else if (port->break_flag == 1) {
650                 /* break is over. */
651                 port->break_flag = 2;
652                 sci_schedule_break_timer(port);
653         } else
654                 port->break_flag = 0;
655 }
656
657 static inline int sci_handle_errors(struct uart_port *port)
658 {
659         int copied = 0;
660         unsigned short status = sci_in(port, SCxSR);
661         struct tty_struct *tty = port->info->port.tty;
662
663         if (status & SCxSR_ORER(port)) {
664                 /* overrun error */
665                 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN))
666                         copied++;
667                 pr_debug("sci: overrun error\n");
668         }
669
670         if (status & SCxSR_FER(port)) {
671                 if (sci_rxd_in(port) == 0) {
672                         /* Notify of BREAK */
673                         struct sci_port *sci_port = to_sci_port(port);
674
675                         if (!sci_port->break_flag) {
676                                 sci_port->break_flag = 1;
677                                 sci_schedule_break_timer(sci_port);
678
679                                 /* Do sysrq handling. */
680                                 if (uart_handle_break(port))
681                                         return 0;
682                                 pr_debug("sci: BREAK detected\n");
683                                 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
684                                         copied++;
685                         }
686
687                 } else {
688                         /* frame error */
689                         if (tty_insert_flip_char(tty, 0, TTY_FRAME))
690                                 copied++;
691                         pr_debug("sci: frame error\n");
692                 }
693         }
694
695         if (status & SCxSR_PER(port)) {
696                 /* parity error */
697                 if (tty_insert_flip_char(tty, 0, TTY_PARITY))
698                         copied++;
699                 pr_debug("sci: parity error\n");
700         }
701
702         if (copied)
703                 tty_flip_buffer_push(tty);
704
705         return copied;
706 }
707
708 static inline int sci_handle_breaks(struct uart_port *port)
709 {
710         int copied = 0;
711         unsigned short status = sci_in(port, SCxSR);
712         struct tty_struct *tty = port->info->port.tty;
713         struct sci_port *s = &sci_ports[port->line];
714
715         if (uart_handle_break(port))
716                 return 0;
717
718         if (!s->break_flag && status & SCxSR_BRK(port)) {
719 #if defined(CONFIG_CPU_SH3)
720                 /* Debounce break */
721                 s->break_flag = 1;
722 #endif
723                 /* Notify of BREAK */
724                 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
725                         copied++;
726                 pr_debug("sci: BREAK detected\n");
727         }
728
729 #if defined(SCIF_ORER)
730         /* XXX: Handle SCIF overrun error */
731         if (port->type != PORT_SCI && (sci_in(port, SCLSR) & SCIF_ORER) != 0) {
732                 sci_out(port, SCLSR, 0);
733                 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN)) {
734                         copied++;
735                         pr_debug("sci: overrun error\n");
736                 }
737         }
738 #endif
739
740         if (copied)
741                 tty_flip_buffer_push(tty);
742
743         return copied;
744 }
745
746 static irqreturn_t sci_rx_interrupt(int irq, void *port)
747 {
748         /* I think sci_receive_chars has to be called irrespective
749          * of whether the I_IXOFF is set, otherwise, how is the interrupt
750          * to be disabled?
751          */
752         sci_receive_chars(port);
753
754         return IRQ_HANDLED;
755 }
756
757 static irqreturn_t sci_tx_interrupt(int irq, void *ptr)
758 {
759         struct uart_port *port = ptr;
760
761         spin_lock_irq(&port->lock);
762         sci_transmit_chars(port);
763         spin_unlock_irq(&port->lock);
764
765         return IRQ_HANDLED;
766 }
767
768 static irqreturn_t sci_er_interrupt(int irq, void *ptr)
769 {
770         struct uart_port *port = ptr;
771
772         /* Handle errors */
773         if (port->type == PORT_SCI) {
774                 if (sci_handle_errors(port)) {
775                         /* discard character in rx buffer */
776                         sci_in(port, SCxSR);
777                         sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
778                 }
779         } else {
780 #if defined(SCIF_ORER)
781                 if ((sci_in(port, SCLSR) & SCIF_ORER) != 0) {
782                         struct tty_struct *tty = port->info->port.tty;
783
784                         sci_out(port, SCLSR, 0);
785                         tty_insert_flip_char(tty, 0, TTY_OVERRUN);
786                         tty_flip_buffer_push(tty);
787                         pr_debug("scif: overrun error\n");
788                 }
789 #endif
790                 sci_rx_interrupt(irq, ptr);
791         }
792
793         sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
794
795         /* Kick the transmission */
796         sci_tx_interrupt(irq, ptr);
797
798         return IRQ_HANDLED;
799 }
800
801 static irqreturn_t sci_br_interrupt(int irq, void *ptr)
802 {
803         struct uart_port *port = ptr;
804
805         /* Handle BREAKs */
806         sci_handle_breaks(port);
807         sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
808
809         return IRQ_HANDLED;
810 }
811
812 static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr)
813 {
814         unsigned short ssr_status, scr_status;
815         struct uart_port *port = ptr;
816         irqreturn_t ret = IRQ_NONE;
817
818         ssr_status = sci_in(port, SCxSR);
819         scr_status = sci_in(port, SCSCR);
820
821         /* Tx Interrupt */
822         if ((ssr_status & 0x0020) && (scr_status & SCI_CTRL_FLAGS_TIE))
823                 ret = sci_tx_interrupt(irq, ptr);
824         /* Rx Interrupt */
825         if ((ssr_status & 0x0002) && (scr_status & SCI_CTRL_FLAGS_RIE))
826                 ret = sci_rx_interrupt(irq, ptr);
827         /* Error Interrupt */
828         if ((ssr_status & 0x0080) && (scr_status & SCI_CTRL_FLAGS_REIE))
829                 ret = sci_er_interrupt(irq, ptr);
830         /* Break Interrupt */
831         if ((ssr_status & 0x0010) && (scr_status & SCI_CTRL_FLAGS_REIE))
832                 ret = sci_br_interrupt(irq, ptr);
833
834         return ret;
835 }
836
837 #if defined(CONFIG_CPU_FREQ) && defined(CONFIG_HAVE_CLK)
838 /*
839  * Here we define a transistion notifier so that we can update all of our
840  * ports' baud rate when the peripheral clock changes.
841  */
842 static int sci_notifier(struct notifier_block *self,
843                         unsigned long phase, void *p)
844 {
845         struct cpufreq_freqs *freqs = p;
846         int i;
847
848         if ((phase == CPUFREQ_POSTCHANGE) ||
849             (phase == CPUFREQ_RESUMECHANGE)) {
850                 for (i = 0; i < SCI_NPORTS; i++) {
851                         struct uart_port *port = &sci_ports[i].port;
852                         struct clk *clk;
853
854                         /*
855                          * Update the uartclk per-port if frequency has
856                          * changed, since it will no longer necessarily be
857                          * consistent with the old frequency.
858                          *
859                          * Really we want to be able to do something like
860                          * uart_change_speed() or something along those lines
861                          * here to implicitly reset the per-port baud rate..
862                          *
863                          * Clean this up later..
864                          */
865                         clk = clk_get(NULL, "module_clk");
866                         port->uartclk = clk_get_rate(clk);
867                         clk_put(clk);
868                 }
869
870                 printk(KERN_INFO "%s: got a postchange notification "
871                        "for cpu %d (old %d, new %d)\n",
872                        __func__, freqs->cpu, freqs->old, freqs->new);
873         }
874
875         return NOTIFY_OK;
876 }
877
878 static struct notifier_block sci_nb = { &sci_notifier, NULL, 0 };
879 #endif /* CONFIG_CPU_FREQ && CONFIG_HAVE_CLK */
880
881 static int sci_request_irq(struct sci_port *port)
882 {
883         int i;
884         irqreturn_t (*handlers[4])(int irq, void *ptr) = {
885                 sci_er_interrupt, sci_rx_interrupt, sci_tx_interrupt,
886                 sci_br_interrupt,
887         };
888         const char *desc[] = { "SCI Receive Error", "SCI Receive Data Full",
889                                "SCI Transmit Data Empty", "SCI Break" };
890
891         if (port->irqs[0] == port->irqs[1]) {
892                 if (!port->irqs[0]) {
893                         printk(KERN_ERR "sci: Cannot allocate irq.(IRQ=0)\n");
894                         return -ENODEV;
895                 }
896
897                 if (request_irq(port->irqs[0], sci_mpxed_interrupt,
898                                 IRQF_DISABLED, "sci", port)) {
899                         printk(KERN_ERR "sci: Cannot allocate irq.\n");
900                         return -ENODEV;
901                 }
902         } else {
903                 for (i = 0; i < ARRAY_SIZE(handlers); i++) {
904                         if (!port->irqs[i])
905                                 continue;
906                         if (request_irq(port->irqs[i], handlers[i],
907                                         IRQF_DISABLED, desc[i], port)) {
908                                 printk(KERN_ERR "sci: Cannot allocate irq.\n");
909                                 return -ENODEV;
910                         }
911                 }
912         }
913
914         return 0;
915 }
916
917 static void sci_free_irq(struct sci_port *port)
918 {
919         int i;
920
921         if (port->irqs[0] == port->irqs[1]) {
922                 if (!port->irqs[0])
923                         printk(KERN_ERR "sci: sci_free_irq error\n");
924                 else
925                         free_irq(port->irqs[0], port);
926         } else {
927                 for (i = 0; i < ARRAY_SIZE(port->irqs); i++) {
928                         if (!port->irqs[i])
929                                 continue;
930
931                         free_irq(port->irqs[i], port);
932                 }
933         }
934 }
935
936 static unsigned int sci_tx_empty(struct uart_port *port)
937 {
938         /* Can't detect */
939         return TIOCSER_TEMT;
940 }
941
942 static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
943 {
944         /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */
945         /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */
946         /* If you have signals for DTR and DCD, please implement here. */
947 }
948
949 static unsigned int sci_get_mctrl(struct uart_port *port)
950 {
951         /* This routine is used for geting signals of: DTR, DCD, DSR, RI,
952            and CTS/RTS */
953
954         return TIOCM_DTR | TIOCM_RTS | TIOCM_DSR;
955 }
956
957 static void sci_start_tx(struct uart_port *port)
958 {
959         unsigned short ctrl;
960
961         /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */
962         ctrl = sci_in(port, SCSCR);
963         ctrl |= SCI_CTRL_FLAGS_TIE;
964         sci_out(port, SCSCR, ctrl);
965 }
966
967 static void sci_stop_tx(struct uart_port *port)
968 {
969         unsigned short ctrl;
970
971         /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
972         ctrl = sci_in(port, SCSCR);
973         ctrl &= ~SCI_CTRL_FLAGS_TIE;
974         sci_out(port, SCSCR, ctrl);
975 }
976
977 static void sci_start_rx(struct uart_port *port, unsigned int tty_start)
978 {
979         unsigned short ctrl;
980
981         /* Set RIE (Receive Interrupt Enable) bit in SCSCR */
982         ctrl = sci_in(port, SCSCR);
983         ctrl |= SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE;
984         sci_out(port, SCSCR, ctrl);
985 }
986
987 static void sci_stop_rx(struct uart_port *port)
988 {
989         unsigned short ctrl;
990
991         /* Clear RIE (Receive Interrupt Enable) bit in SCSCR */
992         ctrl = sci_in(port, SCSCR);
993         ctrl &= ~(SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE);
994         sci_out(port, SCSCR, ctrl);
995 }
996
997 static void sci_enable_ms(struct uart_port *port)
998 {
999         /* Nothing here yet .. */
1000 }
1001
1002 static void sci_break_ctl(struct uart_port *port, int break_state)
1003 {
1004         /* Nothing here yet .. */
1005 }
1006
1007 static int sci_startup(struct uart_port *port)
1008 {
1009         struct sci_port *s = &sci_ports[port->line];
1010
1011         if (s->enable)
1012                 s->enable(port);
1013
1014 #ifdef CONFIG_HAVE_CLK
1015         s->clk = clk_get(NULL, "module_clk");
1016 #endif
1017
1018         sci_request_irq(s);
1019         sci_start_tx(port);
1020         sci_start_rx(port, 1);
1021
1022         return 0;
1023 }
1024
1025 static void sci_shutdown(struct uart_port *port)
1026 {
1027         struct sci_port *s = &sci_ports[port->line];
1028
1029         sci_stop_rx(port);
1030         sci_stop_tx(port);
1031         sci_free_irq(s);
1032
1033         if (s->disable)
1034                 s->disable(port);
1035
1036 #ifdef CONFIG_HAVE_CLK
1037         clk_put(s->clk);
1038         s->clk = NULL;
1039 #endif
1040 }
1041
1042 static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
1043                             struct ktermios *old)
1044 {
1045         struct sci_port *s = &sci_ports[port->line];
1046         unsigned int status, baud, smr_val;
1047         int t = -1;
1048
1049         baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
1050         if (likely(baud))
1051                 t = SCBRR_VALUE(baud, port->uartclk);
1052
1053         do {
1054                 status = sci_in(port, SCxSR);
1055         } while (!(status & SCxSR_TEND(port)));
1056
1057         sci_out(port, SCSCR, 0x00);     /* TE=0, RE=0, CKE1=0 */
1058
1059         if (port->type != PORT_SCI)
1060                 sci_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST);
1061
1062         smr_val = sci_in(port, SCSMR) & 3;
1063         if ((termios->c_cflag & CSIZE) == CS7)
1064                 smr_val |= 0x40;
1065         if (termios->c_cflag & PARENB)
1066                 smr_val |= 0x20;
1067         if (termios->c_cflag & PARODD)
1068                 smr_val |= 0x30;
1069         if (termios->c_cflag & CSTOPB)
1070                 smr_val |= 0x08;
1071
1072         uart_update_timeout(port, termios->c_cflag, baud);
1073
1074         sci_out(port, SCSMR, smr_val);
1075
1076         if (t > 0) {
1077                 if (t >= 256) {
1078                         sci_out(port, SCSMR, (sci_in(port, SCSMR) & ~3) | 1);
1079                         t >>= 2;
1080                 } else
1081                         sci_out(port, SCSMR, sci_in(port, SCSMR) & ~3);
1082
1083                 sci_out(port, SCBRR, t);
1084                 udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */
1085         }
1086
1087         if (likely(s->init_pins))
1088                 s->init_pins(port, termios->c_cflag);
1089
1090         sci_out(port, SCSCR, SCSCR_INIT(port));
1091
1092         if ((termios->c_cflag & CREAD) != 0)
1093                 sci_start_rx(port, 0);
1094 }
1095
1096 static const char *sci_type(struct uart_port *port)
1097 {
1098         switch (port->type) {
1099         case PORT_IRDA:
1100                 return "irda";
1101         case PORT_SCI:
1102                 return "sci";
1103         case PORT_SCIF:
1104                 return "scif";
1105         case PORT_SCIFA:
1106                 return "scifa";
1107         }
1108
1109         return NULL;
1110 }
1111
1112 static void sci_release_port(struct uart_port *port)
1113 {
1114         /* Nothing here yet .. */
1115 }
1116
1117 static int sci_request_port(struct uart_port *port)
1118 {
1119         /* Nothing here yet .. */
1120         return 0;
1121 }
1122
1123 static void sci_config_port(struct uart_port *port, int flags)
1124 {
1125         struct sci_port *s = &sci_ports[port->line];
1126
1127         port->type = s->type;
1128
1129         switch (port->type) {
1130         case PORT_SCI:
1131                 s->init_pins = sci_init_pins_sci;
1132                 break;
1133         case PORT_SCIF:
1134         case PORT_SCIFA:
1135                 s->init_pins = sci_init_pins_scif;
1136                 break;
1137         case PORT_IRDA:
1138                 s->init_pins = sci_init_pins_irda;
1139                 break;
1140         }
1141
1142         if (port->flags & UPF_IOREMAP && !port->membase) {
1143 #if defined(CONFIG_SUPERH64)
1144                 port->mapbase = onchip_remap(SCIF_ADDR_SH5, 1024, "SCIF");
1145                 port->membase = (void __iomem *)port->mapbase;
1146 #else
1147                 port->membase = ioremap_nocache(port->mapbase, 0x40);
1148 #endif
1149
1150                 printk(KERN_ERR "sci: can't remap port#%d\n", port->line);
1151         }
1152 }
1153
1154 static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
1155 {
1156         struct sci_port *s = &sci_ports[port->line];
1157
1158         if (ser->irq != s->irqs[SCIx_TXI_IRQ] || ser->irq > nr_irqs)
1159                 return -EINVAL;
1160         if (ser->baud_base < 2400)
1161                 /* No paper tape reader for Mitch.. */
1162                 return -EINVAL;
1163
1164         return 0;
1165 }
1166
1167 static struct uart_ops sci_uart_ops = {
1168         .tx_empty       = sci_tx_empty,
1169         .set_mctrl      = sci_set_mctrl,
1170         .get_mctrl      = sci_get_mctrl,
1171         .start_tx       = sci_start_tx,
1172         .stop_tx        = sci_stop_tx,
1173         .stop_rx        = sci_stop_rx,
1174         .enable_ms      = sci_enable_ms,
1175         .break_ctl      = sci_break_ctl,
1176         .startup        = sci_startup,
1177         .shutdown       = sci_shutdown,
1178         .set_termios    = sci_set_termios,
1179         .type           = sci_type,
1180         .release_port   = sci_release_port,
1181         .request_port   = sci_request_port,
1182         .config_port    = sci_config_port,
1183         .verify_port    = sci_verify_port,
1184 };
1185
1186 static void __init sci_init_ports(void)
1187 {
1188         static int first = 1;
1189         int i;
1190
1191         if (!first)
1192                 return;
1193
1194         first = 0;
1195
1196         for (i = 0; i < SCI_NPORTS; i++) {
1197                 sci_ports[i].port.ops           = &sci_uart_ops;
1198                 sci_ports[i].port.iotype        = UPIO_MEM;
1199                 sci_ports[i].port.line          = i;
1200                 sci_ports[i].port.fifosize      = 1;
1201
1202 #if defined(__H8300H__) || defined(__H8300S__)
1203 #ifdef __H8300S__
1204                 sci_ports[i].enable     = h8300_sci_enable;
1205                 sci_ports[i].disable    = h8300_sci_disable;
1206 #endif
1207                 sci_ports[i].port.uartclk = CONFIG_CPU_CLOCK;
1208 #elif defined(CONFIG_HAVE_CLK)
1209                 /*
1210                  * XXX: We should use a proper SCI/SCIF clock
1211                  */
1212                 {
1213                         struct clk *clk = clk_get(NULL, "module_clk");
1214                         sci_ports[i].port.uartclk = clk_get_rate(clk);
1215                         clk_put(clk);
1216                 }
1217 #else
1218 #error "Need a valid uartclk"
1219 #endif
1220
1221                 sci_ports[i].break_timer.data = (unsigned long)&sci_ports[i];
1222                 sci_ports[i].break_timer.function = sci_break_timer;
1223
1224                 init_timer(&sci_ports[i].break_timer);
1225         }
1226 }
1227
1228 int __init early_sci_setup(struct uart_port *port)
1229 {
1230         if (unlikely(port->line > SCI_NPORTS))
1231                 return -ENODEV;
1232
1233         sci_init_ports();
1234
1235         sci_ports[port->line].port.membase      = port->membase;
1236         sci_ports[port->line].port.mapbase      = port->mapbase;
1237         sci_ports[port->line].port.type         = port->type;
1238
1239         return 0;
1240 }
1241
1242 #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
1243 /*
1244  *      Print a string to the serial port trying not to disturb
1245  *      any possible real use of the port...
1246  */
1247 static void serial_console_write(struct console *co, const char *s,
1248                                  unsigned count)
1249 {
1250         put_string(serial_console_port, s, count);
1251 }
1252
1253 static int __init serial_console_setup(struct console *co, char *options)
1254 {
1255         struct uart_port *port;
1256         int baud = 115200;
1257         int bits = 8;
1258         int parity = 'n';
1259         int flow = 'n';
1260         int ret;
1261
1262         /*
1263          * Check whether an invalid uart number has been specified, and
1264          * if so, search for the first available port that does have
1265          * console support.
1266          */
1267         if (co->index >= SCI_NPORTS)
1268                 co->index = 0;
1269
1270         serial_console_port = &sci_ports[co->index];
1271         port = &serial_console_port->port;
1272
1273         /*
1274          * Also need to check port->type, we don't actually have any
1275          * UPIO_PORT ports, but uart_report_port() handily misreports
1276          * it anyways if we don't have a port available by the time this is
1277          * called.
1278          */
1279         if (!port->type)
1280                 return -ENODEV;
1281         if (!port->membase || !port->mapbase)
1282                 return -ENODEV;
1283
1284         port->type = serial_console_port->type;
1285
1286 #ifdef CONFIG_HAVE_CLK
1287         if (!serial_console_port->clk)
1288                 serial_console_port->clk = clk_get(NULL, "module_clk");
1289 #endif
1290
1291         if (port->flags & UPF_IOREMAP)
1292                 sci_config_port(port, 0);
1293
1294         if (serial_console_port->enable)
1295                 serial_console_port->enable(port);
1296
1297         if (options)
1298                 uart_parse_options(options, &baud, &parity, &bits, &flow);
1299
1300         ret = uart_set_options(port, co, baud, parity, bits, flow);
1301 #if defined(__H8300H__) || defined(__H8300S__)
1302         /* disable rx interrupt */
1303         if (ret == 0)
1304                 sci_stop_rx(port);
1305 #endif
1306         return ret;
1307 }
1308
1309 static struct console serial_console = {
1310         .name           = "ttySC",
1311         .device         = uart_console_device,
1312         .write          = serial_console_write,
1313         .setup          = serial_console_setup,
1314         .flags          = CON_PRINTBUFFER,
1315         .index          = -1,
1316         .data           = &sci_uart_driver,
1317 };
1318
1319 static int __init sci_console_init(void)
1320 {
1321         sci_init_ports();
1322         register_console(&serial_console);
1323         return 0;
1324 }
1325 console_initcall(sci_console_init);
1326 #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
1327
1328 #ifdef CONFIG_SH_KGDB_CONSOLE
1329 /*
1330  * FIXME: Most of this can go away.. at the moment, we rely on
1331  * arch/sh/kernel/setup.c to do the command line parsing for kgdb, though
1332  * most of that can easily be done here instead.
1333  *
1334  * For the time being, just accept the values that were parsed earlier..
1335  */
1336 static void __init kgdb_console_get_options(struct uart_port *port, int *baud,
1337                                             int *parity, int *bits)
1338 {
1339         *baud = kgdb_baud;
1340         *parity = tolower(kgdb_parity);
1341         *bits = kgdb_bits - '0';
1342 }
1343
1344 /*
1345  * The naming here is somewhat misleading, since kgdb_console_setup() takes
1346  * care of the early-on initialization for kgdb, regardless of whether we
1347  * actually use kgdb as a console or not.
1348  *
1349  * On the plus side, this lets us kill off the old kgdb_sci_setup() nonsense.
1350  */
1351 int __init kgdb_console_setup(struct console *co, char *options)
1352 {
1353         struct uart_port *port = &sci_ports[kgdb_portnum].port;
1354         int baud = 38400;
1355         int bits = 8;
1356         int parity = 'n';
1357         int flow = 'n';
1358
1359         if (co->index != kgdb_portnum)
1360                 co->index = kgdb_portnum;
1361
1362         kgdb_sci_port = &sci_ports[co->index];
1363         port = &kgdb_sci_port->port;
1364
1365         /*
1366          * Also need to check port->type, we don't actually have any
1367          * UPIO_PORT ports, but uart_report_port() handily misreports
1368          * it anyways if we don't have a port available by the time this is
1369          * called.
1370          */
1371         if (!port->type)
1372                 return -ENODEV;
1373         if (!port->membase || !port->mapbase)
1374                 return -ENODEV;
1375
1376         if (options)
1377                 uart_parse_options(options, &baud, &parity, &bits, &flow);
1378         else
1379                 kgdb_console_get_options(port, &baud, &parity, &bits);
1380
1381         kgdb_getchar = kgdb_sci_getchar;
1382         kgdb_putchar = kgdb_sci_putchar;
1383
1384         return uart_set_options(port, co, baud, parity, bits, flow);
1385 }
1386
1387 static struct console kgdb_console = {
1388         .name           = "ttySC",
1389         .device         = uart_console_device,
1390         .write          = kgdb_console_write,
1391         .setup          = kgdb_console_setup,
1392         .flags          = CON_PRINTBUFFER,
1393         .index          = -1,
1394         .data           = &sci_uart_driver,
1395 };
1396
1397 /* Register the KGDB console so we get messages (d'oh!) */
1398 static int __init kgdb_console_init(void)
1399 {
1400         sci_init_ports();
1401         register_console(&kgdb_console);
1402         return 0;
1403 }
1404 console_initcall(kgdb_console_init);
1405 #endif /* CONFIG_SH_KGDB_CONSOLE */
1406
1407 #if defined(CONFIG_SH_KGDB_CONSOLE)
1408 #define SCI_CONSOLE     (&kgdb_console)
1409 #elif defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
1410 #define SCI_CONSOLE     (&serial_console)
1411 #else
1412 #define SCI_CONSOLE     0
1413 #endif
1414
1415 static char banner[] __initdata =
1416         KERN_INFO "SuperH SCI(F) driver initialized\n";
1417
1418 static struct uart_driver sci_uart_driver = {
1419         .owner          = THIS_MODULE,
1420         .driver_name    = "sci",
1421         .dev_name       = "ttySC",
1422         .major          = SCI_MAJOR,
1423         .minor          = SCI_MINOR_START,
1424         .nr             = SCI_NPORTS,
1425         .cons           = SCI_CONSOLE,
1426 };
1427
1428 /*
1429  * Register a set of serial devices attached to a platform device.  The
1430  * list is terminated with a zero flags entry, which means we expect
1431  * all entries to have at least UPF_BOOT_AUTOCONF set. Platforms that need
1432  * remapping (such as sh64) should also set UPF_IOREMAP.
1433  */
1434 static int __devinit sci_probe(struct platform_device *dev)
1435 {
1436         struct plat_sci_port *p = dev->dev.platform_data;
1437         int i, ret = -EINVAL;
1438
1439         for (i = 0; p && p->flags != 0; p++, i++) {
1440                 struct sci_port *sciport = &sci_ports[i];
1441
1442                 /* Sanity check */
1443                 if (unlikely(i == SCI_NPORTS)) {
1444                         dev_notice(&dev->dev, "Attempting to register port "
1445                                    "%d when only %d are available.\n",
1446                                    i+1, SCI_NPORTS);
1447                         dev_notice(&dev->dev, "Consider bumping "
1448                                    "CONFIG_SERIAL_SH_SCI_NR_UARTS!\n");
1449                         break;
1450                 }
1451
1452                 sciport->port.mapbase   = p->mapbase;
1453
1454                 if (p->mapbase && !p->membase) {
1455                         if (p->flags & UPF_IOREMAP) {
1456                                 p->membase = ioremap_nocache(p->mapbase, 0x40);
1457                                 if (IS_ERR(p->membase)) {
1458                                         ret = PTR_ERR(p->membase);
1459                                         goto err_unreg;
1460                                 }
1461                         } else {
1462                                 /*
1463                                  * For the simple (and majority of) cases
1464                                  * where we don't need to do any remapping,
1465                                  * just cast the cookie directly.
1466                                  */
1467                                 p->membase = (void __iomem *)p->mapbase;
1468                         }
1469                 }
1470
1471                 sciport->port.membase   = p->membase;
1472
1473                 sciport->port.irq       = p->irqs[SCIx_TXI_IRQ];
1474                 sciport->port.flags     = p->flags;
1475                 sciport->port.dev       = &dev->dev;
1476
1477                 sciport->type           = sciport->port.type = p->type;
1478
1479                 memcpy(&sciport->irqs, &p->irqs, sizeof(p->irqs));
1480
1481                 uart_add_one_port(&sci_uart_driver, &sciport->port);
1482         }
1483
1484 #if defined(CONFIG_SH_KGDB) && !defined(CONFIG_SH_KGDB_CONSOLE)
1485         kgdb_sci_port   = &sci_ports[kgdb_portnum];
1486         kgdb_getchar    = kgdb_sci_getchar;
1487         kgdb_putchar    = kgdb_sci_putchar;
1488 #endif
1489
1490 #if defined(CONFIG_CPU_FREQ) && defined(CONFIG_HAVE_CLK)
1491         cpufreq_register_notifier(&sci_nb, CPUFREQ_TRANSITION_NOTIFIER);
1492         dev_info(&dev->dev, "CPU frequency notifier registered\n");
1493 #endif
1494
1495 #ifdef CONFIG_SH_STANDARD_BIOS
1496         sh_bios_gdb_detach();
1497 #endif
1498
1499         return 0;
1500
1501 err_unreg:
1502         for (i = i - 1; i >= 0; i--)
1503                 uart_remove_one_port(&sci_uart_driver, &sci_ports[i].port);
1504
1505         return ret;
1506 }
1507
1508 static int __devexit sci_remove(struct platform_device *dev)
1509 {
1510         int i;
1511
1512         for (i = 0; i < SCI_NPORTS; i++)
1513                 uart_remove_one_port(&sci_uart_driver, &sci_ports[i].port);
1514
1515         return 0;
1516 }
1517
1518 static int sci_suspend(struct platform_device *dev, pm_message_t state)
1519 {
1520         int i;
1521
1522         for (i = 0; i < SCI_NPORTS; i++) {
1523                 struct sci_port *p = &sci_ports[i];
1524
1525                 if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev)
1526                         uart_suspend_port(&sci_uart_driver, &p->port);
1527         }
1528
1529         return 0;
1530 }
1531
1532 static int sci_resume(struct platform_device *dev)
1533 {
1534         int i;
1535
1536         for (i = 0; i < SCI_NPORTS; i++) {
1537                 struct sci_port *p = &sci_ports[i];
1538
1539                 if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev)
1540                         uart_resume_port(&sci_uart_driver, &p->port);
1541         }
1542
1543         return 0;
1544 }
1545
1546 static struct platform_driver sci_driver = {
1547         .probe          = sci_probe,
1548         .remove         = __devexit_p(sci_remove),
1549         .suspend        = sci_suspend,
1550         .resume         = sci_resume,
1551         .driver         = {
1552                 .name   = "sh-sci",
1553                 .owner  = THIS_MODULE,
1554         },
1555 };
1556
1557 static int __init sci_init(void)
1558 {
1559         int ret;
1560
1561         printk(banner);
1562
1563         sci_init_ports();
1564
1565         ret = uart_register_driver(&sci_uart_driver);
1566         if (likely(ret == 0)) {
1567                 ret = platform_driver_register(&sci_driver);
1568                 if (unlikely(ret))
1569                         uart_unregister_driver(&sci_uart_driver);
1570         }
1571
1572         return ret;
1573 }
1574
1575 static void __exit sci_exit(void)
1576 {
1577         platform_driver_unregister(&sci_driver);
1578         uart_unregister_driver(&sci_uart_driver);
1579 }
1580
1581 module_init(sci_init);
1582 module_exit(sci_exit);
1583
1584 MODULE_LICENSE("GPL");
1585 MODULE_ALIAS("platform:sh-sci");