blob: e5cf57f482cf1aa0a83f4fad095d293d35a311d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/serial/sh-sci.c
3 *
4 * SuperH on-chip serial module support. (SCI with no FIFO / with FIFO)
5 *
Paul Mundte108b2c2006-09-27 16:32:13 +09006 * Copyright (C) 2002 - 2006 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * based off of the old drivers/char/sh-sci.c by:
9 *
10 * Copyright (C) 1999, 2000 Niibe Yutaka
11 * Copyright (C) 2000 Sugioka Toshinobu
12 * Modified to support multiple serial ports. Stuart Menefy (May 2000).
13 * Modified to support SecureEdge. David McCullough (2002)
14 * Modified to support SH7300 SCIF. Takashi Kusuda (Jun 2003).
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 */
Paul Mundt0b3d4ef2007-03-14 13:22:37 +090020#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
21#define SUPPORT_SYSRQ
22#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#undef DEBUG
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/ioport.h>
37#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/init.h>
39#include <linux/delay.h>
40#include <linux/console.h>
Paul Mundte108b2c2006-09-27 16:32:13 +090041#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#ifdef CONFIG_CPU_FREQ
44#include <linux/notifier.h>
45#include <linux/cpufreq.h>
46#endif
47
Paul Mundtb7a76e42006-02-01 03:06:06 -080048#if defined(CONFIG_SUPERH) && !defined(CONFIG_SUPERH64)
Paul Mundtfa5da2f2007-03-08 17:27:37 +090049#include <linux/ctype.h>
Paul Mundtb7a76e42006-02-01 03:06:06 -080050#include <asm/clock.h>
Paul Mundte108b2c2006-09-27 16:32:13 +090051#include <asm/sh_bios.h>
52#include <asm/kgdb.h>
Paul Mundtb7a76e42006-02-01 03:06:06 -080053#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Paul Mundte108b2c2006-09-27 16:32:13 +090055#include <asm/sci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include "sh-sci.h"
57
Paul Mundte108b2c2006-09-27 16:32:13 +090058struct sci_port {
59 struct uart_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Paul Mundte108b2c2006-09-27 16:32:13 +090061 /* Port type */
62 unsigned int type;
63
64 /* Port IRQs: ERI, RXI, TXI, BRI (optional) */
Paul Mundt32351a22007-03-12 14:38:59 +090065 unsigned int irqs[SCIx_NR_IRQS];
Paul Mundte108b2c2006-09-27 16:32:13 +090066
67 /* Port pin configuration */
68 void (*init_pins)(struct uart_port *port,
69 unsigned int cflag);
70
71 /* Port enable callback */
72 void (*enable)(struct uart_port *port);
73
74 /* Port disable callback */
75 void (*disable)(struct uart_port *port);
76
77 /* Break timer */
78 struct timer_list break_timer;
79 int break_flag;
dmitry pervushin1534a3b2007-04-24 13:41:12 +090080
81 /* Port clock */
82 struct clk *clk;
Paul Mundte108b2c2006-09-27 16:32:13 +090083};
84
85#ifdef CONFIG_SH_KGDB
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static struct sci_port *kgdb_sci_port;
Paul Mundte108b2c2006-09-27 16:32:13 +090087#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
Paul Mundte108b2c2006-09-27 16:32:13 +090090static struct sci_port *serial_console_port;
91#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/* Function prototypes */
Russell Kingb129a8c2005-08-31 10:12:14 +010094static void sci_stop_tx(struct uart_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Paul Mundte108b2c2006-09-27 16:32:13 +090096#define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
97
98static struct sci_port sci_ports[SCI_NPORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static struct uart_driver sci_uart_driver;
100
Paul Mundte108b2c2006-09-27 16:32:13 +0900101#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && \
102 defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
103static inline void handle_error(struct uart_port *port)
104{
105 /* Clear error flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
107}
108
109static int get_char(struct uart_port *port)
110{
111 unsigned long flags;
112 unsigned short status;
113 int c;
114
Paul Mundte108b2c2006-09-27 16:32:13 +0900115 spin_lock_irqsave(&port->lock, flags);
116 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 status = sci_in(port, SCxSR);
118 if (status & SCxSR_ERRORS(port)) {
119 handle_error(port);
120 continue;
121 }
122 } while (!(status & SCxSR_RDxF(port)));
123 c = sci_in(port, SCxRDR);
124 sci_in(port, SCxSR); /* Dummy read */
125 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Paul Mundte108b2c2006-09-27 16:32:13 +0900126 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 return c;
129}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
131
Paul Mundte108b2c2006-09-27 16:32:13 +0900132#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) || defined(CONFIG_SH_KGDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static void put_char(struct uart_port *port, char c)
134{
135 unsigned long flags;
136 unsigned short status;
137
Paul Mundte108b2c2006-09-27 16:32:13 +0900138 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 do {
141 status = sci_in(port, SCxSR);
142 } while (!(status & SCxSR_TDxE(port)));
143
144 sci_out(port, SCxTDR, c);
145 sci_in(port, SCxSR); /* Dummy read */
146 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
147
Paul Mundte108b2c2006-09-27 16:32:13 +0900148 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
Paul Mundte108b2c2006-09-27 16:32:13 +0900150#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Paul Mundte108b2c2006-09-27 16:32:13 +0900152#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static void put_string(struct sci_port *sci_port, const char *buffer, int count)
154{
155 struct uart_port *port = &sci_port->port;
156 const unsigned char *p = buffer;
157 int i;
158
159#if defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
160 int checksum;
161 int usegdb=0;
162
163#ifdef CONFIG_SH_STANDARD_BIOS
Paul Mundtb7a76e42006-02-01 03:06:06 -0800164 /* This call only does a trap the first time it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * called, and so is safe to do here unconditionally
166 */
167 usegdb |= sh_bios_in_gdb_mode();
168#endif
169#ifdef CONFIG_SH_KGDB
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900170 usegdb |= (kgdb_in_gdb_mode && (sci_port == kgdb_sci_port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#endif
172
173 if (usegdb) {
174 /* $<packet info>#<checksum>. */
175 do {
176 unsigned char c;
177 put_char(port, '$');
178 put_char(port, 'O'); /* 'O'utput to console */
179 checksum = 'O';
180
181 for (i=0; i<count; i++) { /* Don't use run length encoding */
182 int h, l;
183
184 c = *p++;
185 h = highhex(c);
186 l = lowhex(c);
187 put_char(port, h);
188 put_char(port, l);
189 checksum += h + l;
190 }
191 put_char(port, '#');
192 put_char(port, highhex(checksum));
193 put_char(port, lowhex(checksum));
194 } while (get_char(port) != '+');
195 } else
196#endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
197 for (i=0; i<count; i++) {
198 if (*p == 10)
199 put_char(port, '\r');
200 put_char(port, *p++);
201 }
202}
203#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#ifdef CONFIG_SH_KGDB
Paul Mundte108b2c2006-09-27 16:32:13 +0900206static int kgdb_sci_getchar(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 int c;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Keep trying to read a character, this could be neater */
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900211 while ((c = get_char(&kgdb_sci_port->port)) < 0)
Paul Mundte108b2c2006-09-27 16:32:13 +0900212 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 return c;
215}
216
Paul Mundte108b2c2006-09-27 16:32:13 +0900217static inline void kgdb_sci_putchar(int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900219 put_char(&kgdb_sci_port->port, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#endif /* CONFIG_SH_KGDB */
222
223#if defined(__H8300S__)
224enum { sci_disable, sci_enable };
225
Paul Mundte108b2c2006-09-27 16:32:13 +0900226static void h8300_sci_config(struct uart_port* port, unsigned int ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 volatile unsigned char *mstpcrl=(volatile unsigned char *)MSTPCRL;
229 int ch = (port->mapbase - SMR0) >> 3;
230 unsigned char mask = 1 << (ch+1);
231
232 if (ctrl == sci_disable) {
233 *mstpcrl |= mask;
234 } else {
235 *mstpcrl &= ~mask;
236 }
237}
Paul Mundte108b2c2006-09-27 16:32:13 +0900238
239static inline void h8300_sci_enable(struct uart_port *port)
240{
241 h8300_sci_config(port, sci_enable);
242}
243
244static inline void h8300_sci_disable(struct uart_port *port)
245{
246 h8300_sci_config(port, sci_disable);
247}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#endif
249
Paul Mundte108b2c2006-09-27 16:32:13 +0900250#if defined(SCI_ONLY) || defined(SCI_AND_SCIF) && \
251 defined(__H8300H__) || defined(__H8300S__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252static void sci_init_pins_sci(struct uart_port* port, unsigned int cflag)
253{
254 int ch = (port->mapbase - SMR0) >> 3;
255
256 /* set DDR regs */
Paul Mundte108b2c2006-09-27 16:32:13 +0900257 H8300_GPIO_DDR(h8300_sci_pins[ch].port,
258 h8300_sci_pins[ch].rx,
259 H8300_GPIO_INPUT);
260 H8300_GPIO_DDR(h8300_sci_pins[ch].port,
261 h8300_sci_pins[ch].tx,
262 H8300_GPIO_OUTPUT);
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* tx mark output*/
265 H8300_SCI_DR(ch) |= h8300_sci_pins[ch].tx;
266}
Paul Mundte108b2c2006-09-27 16:32:13 +0900267#else
268#define sci_init_pins_sci NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269#endif
Paul Mundte108b2c2006-09-27 16:32:13 +0900270
271#if defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709)
272static void sci_init_pins_irda(struct uart_port *port, unsigned int cflag)
273{
274 unsigned int fcr_val = 0;
275
276 if (cflag & CRTSCTS)
277 fcr_val |= SCFCR_MCE;
278
279 sci_out(port, SCFCR, fcr_val);
280}
281#else
282#define sci_init_pins_irda NULL
283#endif
284
285#ifdef SCI_ONLY
286#define sci_init_pins_scif NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287#endif
288
289#if defined(SCIF_ONLY) || defined(SCI_AND_SCIF)
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900290#if defined(CONFIG_CPU_SUBTYPE_SH7300)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800291/* SH7300 doesn't use RTS/CTS */
292static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
293{
294 sci_out(port, SCFCR, 0);
295}
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900296#elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
297static void sci_init_pins_scif(struct uart_port* port, unsigned int cflag)
298{
299 unsigned int fcr_val = 0;
300
301 set_sh771x_scif_pfc(port);
302 if (cflag & CRTSCTS) {
303 fcr_val |= SCFCR_MCE;
304 }
305 sci_out(port, SCFCR, fcr_val);
306}
Paul Mundtb7a76e42006-02-01 03:06:06 -0800307#elif defined(CONFIG_CPU_SH3)
Paul Mundte108b2c2006-09-27 16:32:13 +0900308/* For SH7705, SH7706, SH7707, SH7709, SH7709A, SH7729 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
310{
311 unsigned int fcr_val = 0;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800312 unsigned short data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Paul Mundtb7a76e42006-02-01 03:06:06 -0800314 /* We need to set SCPCR to enable RTS/CTS */
315 data = ctrl_inw(SCPCR);
316 /* Clear out SCP7MD1,0, SCP6MD1,0, SCP4MD1,0*/
317 ctrl_outw(data & 0x0fcf, SCPCR);
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (cflag & CRTSCTS)
320 fcr_val |= SCFCR_MCE;
321 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 /* We need to set SCPCR to enable RTS/CTS */
323 data = ctrl_inw(SCPCR);
324 /* Clear out SCP7MD1,0, SCP4MD1,0,
325 Set SCP6MD1,0 = {01} (output) */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800326 ctrl_outw((data & 0x0fcf) | 0x1000, SCPCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 data = ctrl_inb(SCPDR);
329 /* Set /RTS2 (bit6) = 0 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800330 ctrl_outb(data & 0xbf, SCPDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
Paul Mundtb7a76e42006-02-01 03:06:06 -0800332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 sci_out(port, SCFCR, fcr_val);
334}
Paul Mundt41504c32006-12-11 20:28:03 +0900335#elif defined(CONFIG_CPU_SUBTYPE_SH7722)
336static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
337{
338 unsigned int fcr_val = 0;
339
340 if (cflag & CRTSCTS) {
341 fcr_val |= SCFCR_MCE;
342
343 ctrl_outw(0x0000, PORT_PSCR);
344 } else {
345 unsigned short data;
346
347 data = ctrl_inw(PORT_PSCR);
348 data &= 0x033f;
349 data |= 0x0400;
350 ctrl_outw(data, PORT_PSCR);
351
352 ctrl_outw(ctrl_inw(SCSPTR0) & 0x17, SCSPTR0);
353 }
354
355 sci_out(port, SCFCR, fcr_val);
356}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358/* For SH7750 */
359static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
360{
361 unsigned int fcr_val = 0;
362
363 if (cflag & CRTSCTS) {
364 fcr_val |= SCFCR_MCE;
365 } else {
Paul Mundte108b2c2006-09-27 16:32:13 +0900366#ifdef CONFIG_CPU_SUBTYPE_SH7343
367 /* Nothing */
Paul Mundt32351a22007-03-12 14:38:59 +0900368#elif defined(CONFIG_CPU_SUBTYPE_SH7780) || defined(CONFIG_CPU_SUBTYPE_SH7785)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800369 ctrl_outw(0x0080, SCSPTR0); /* Set RTS = 1 */
370#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 ctrl_outw(0x0080, SCSPTR2); /* Set RTS = 1 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374 sci_out(port, SCFCR, fcr_val);
375}
Paul Mundte108b2c2006-09-27 16:32:13 +0900376#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Paul Mundt32351a22007-03-12 14:38:59 +0900378#if defined(CONFIG_CPU_SUBTYPE_SH7760) || \
379 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
380 defined(CONFIG_CPU_SUBTYPE_SH7785)
Paul Mundte108b2c2006-09-27 16:32:13 +0900381static inline int scif_txroom(struct uart_port *port)
382{
383 return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0x7f);
384}
385
386static inline int scif_rxroom(struct uart_port *port)
387{
388 return sci_in(port, SCRFDR) & 0x7f;
389}
390#else
391static inline int scif_txroom(struct uart_port *port)
392{
393 return SCIF_TXROOM_MAX - (sci_in(port, SCFDR) >> 8);
394}
395
396static inline int scif_rxroom(struct uart_port *port)
397{
398 return sci_in(port, SCFDR) & SCIF_RFDC_MASK;
399}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400#endif
401#endif /* SCIF_ONLY || SCI_AND_SCIF */
402
Paul Mundte108b2c2006-09-27 16:32:13 +0900403static inline int sci_txroom(struct uart_port *port)
404{
405 return ((sci_in(port, SCxSR) & SCI_TDRE) != 0);
406}
407
408static inline int sci_rxroom(struct uart_port *port)
409{
410 return ((sci_in(port, SCxSR) & SCxSR_RDxF(port)) != 0);
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/* ********************************************************************** *
414 * the interrupt related routines *
415 * ********************************************************************** */
416
417static void sci_transmit_chars(struct uart_port *port)
418{
419 struct circ_buf *xmit = &port->info->xmit;
420 unsigned int stopped = uart_tx_stopped(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 unsigned short status;
422 unsigned short ctrl;
Paul Mundte108b2c2006-09-27 16:32:13 +0900423 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 status = sci_in(port, SCxSR);
426 if (!(status & SCxSR_TDxE(port))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 ctrl = sci_in(port, SCSCR);
428 if (uart_circ_empty(xmit)) {
429 ctrl &= ~SCI_CTRL_FLAGS_TIE;
430 } else {
431 ctrl |= SCI_CTRL_FLAGS_TIE;
432 }
433 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return;
435 }
436
Paul Mundte108b2c2006-09-27 16:32:13 +0900437#ifndef SCI_ONLY
438 if (port->type == PORT_SCIF)
439 count = scif_txroom(port);
440 else
Paul Mundtb7a76e42006-02-01 03:06:06 -0800441#endif
Paul Mundte108b2c2006-09-27 16:32:13 +0900442 count = sci_txroom(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 do {
445 unsigned char c;
446
447 if (port->x_char) {
448 c = port->x_char;
449 port->x_char = 0;
450 } else if (!uart_circ_empty(xmit) && !stopped) {
451 c = xmit->buf[xmit->tail];
452 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
453 } else {
454 break;
455 }
456
457 sci_out(port, SCxTDR, c);
458
459 port->icount.tx++;
460 } while (--count > 0);
461
462 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
463
464 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
465 uart_write_wakeup(port);
466 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100467 sci_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 ctrl = sci_in(port, SCSCR);
470
471#if !defined(SCI_ONLY)
472 if (port->type == PORT_SCIF) {
473 sci_in(port, SCxSR); /* Dummy read */
474 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
475 }
476#endif
477
478 ctrl |= SCI_CTRL_FLAGS_TIE;
479 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481}
482
483/* On SH3, SCIF may read end-of-break as a space->mark char */
484#define STEPFN(c) ({int __c=(c); (((__c-1)|(__c)) == -1); })
485
David Howells7d12e782006-10-05 14:55:46 +0100486static inline void sci_receive_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Paul Mundte108b2c2006-09-27 16:32:13 +0900488 struct sci_port *sci_port = (struct sci_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct tty_struct *tty = port->info->tty;
490 int i, count, copied = 0;
491 unsigned short status;
Alan Cox33f0f882006-01-09 20:54:13 -0800492 unsigned char flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 status = sci_in(port, SCxSR);
495 if (!(status & SCxSR_RDxF(port)))
496 return;
497
498 while (1) {
499#if !defined(SCI_ONLY)
Paul Mundte108b2c2006-09-27 16:32:13 +0900500 if (port->type == PORT_SCIF)
501 count = scif_rxroom(port);
502 else
Paul Mundtb7a76e42006-02-01 03:06:06 -0800503#endif
Paul Mundte108b2c2006-09-27 16:32:13 +0900504 count = sci_rxroom(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /* Don't copy more bytes than there is room for in the buffer */
Alan Cox33f0f882006-01-09 20:54:13 -0800507 count = tty_buffer_request_room(tty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 /* If for any reason we can't copy more data, we're done! */
510 if (count == 0)
511 break;
512
513 if (port->type == PORT_SCI) {
514 char c = sci_in(port, SCxRDR);
David Howells7d12e782006-10-05 14:55:46 +0100515 if (uart_handle_sysrq_char(port, c) || sci_port->break_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 count = 0;
Paul Mundte108b2c2006-09-27 16:32:13 +0900517 else {
518 tty_insert_flip_char(tty, c, TTY_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 } else {
521 for (i=0; i<count; i++) {
522 char c = sci_in(port, SCxRDR);
523 status = sci_in(port, SCxSR);
524#if defined(CONFIG_CPU_SH3)
525 /* Skip "chars" during break */
Paul Mundte108b2c2006-09-27 16:32:13 +0900526 if (sci_port->break_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if ((c == 0) &&
528 (status & SCxSR_FER(port))) {
529 count--; i--;
530 continue;
531 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /* Nonzero => end-of-break */
534 pr_debug("scif: debounce<%02x>\n", c);
Paul Mundte108b2c2006-09-27 16:32:13 +0900535 sci_port->break_flag = 0;
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (STEPFN(c)) {
538 count--; i--;
539 continue;
540 }
541 }
542#endif /* CONFIG_CPU_SH3 */
David Howells7d12e782006-10-05 14:55:46 +0100543 if (uart_handle_sysrq_char(port, c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 count--; i--;
545 continue;
546 }
547
548 /* Store data and status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (status&SCxSR_FER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800550 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 pr_debug("sci: frame error\n");
552 } else if (status&SCxSR_PER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800553 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 pr_debug("sci: parity error\n");
Alan Cox33f0f882006-01-09 20:54:13 -0800555 } else
556 flag = TTY_NORMAL;
557 tty_insert_flip_char(tty, c, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 }
560
561 sci_in(port, SCxSR); /* dummy read */
562 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 copied += count;
565 port->icount.rx += count;
566 }
567
568 if (copied) {
569 /* Tell the rest of the system the news. New characters! */
570 tty_flip_buffer_push(tty);
571 } else {
572 sci_in(port, SCxSR); /* dummy read */
573 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
574 }
575}
576
577#define SCI_BREAK_JIFFIES (HZ/20)
578/* The sci generates interrupts during the break,
579 * 1 per millisecond or so during the break period, for 9600 baud.
580 * So dont bother disabling interrupts.
581 * But dont want more than 1 break event.
582 * Use a kernel timer to periodically poll the rx line until
583 * the break is finished.
584 */
585static void sci_schedule_break_timer(struct sci_port *port)
586{
587 port->break_timer.expires = jiffies + SCI_BREAK_JIFFIES;
588 add_timer(&port->break_timer);
589}
590/* Ensure that two consecutive samples find the break over. */
591static void sci_break_timer(unsigned long data)
592{
Paul Mundte108b2c2006-09-27 16:32:13 +0900593 struct sci_port *port = (struct sci_port *)data;
594
595 if (sci_rxd_in(&port->port) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 port->break_flag = 1;
Paul Mundte108b2c2006-09-27 16:32:13 +0900597 sci_schedule_break_timer(port);
598 } else if (port->break_flag == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* break is over. */
600 port->break_flag = 2;
Paul Mundte108b2c2006-09-27 16:32:13 +0900601 sci_schedule_break_timer(port);
602 } else
603 port->break_flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606static inline int sci_handle_errors(struct uart_port *port)
607{
608 int copied = 0;
609 unsigned short status = sci_in(port, SCxSR);
610 struct tty_struct *tty = port->info->tty;
611
Paul Mundte108b2c2006-09-27 16:32:13 +0900612 if (status & SCxSR_ORER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* overrun error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900614 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN))
Alan Cox33f0f882006-01-09 20:54:13 -0800615 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 pr_debug("sci: overrun error\n");
617 }
618
Paul Mundte108b2c2006-09-27 16:32:13 +0900619 if (status & SCxSR_FER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (sci_rxd_in(port) == 0) {
621 /* Notify of BREAK */
Paul Mundte108b2c2006-09-27 16:32:13 +0900622 struct sci_port *sci_port = (struct sci_port *)port;
623
624 if (!sci_port->break_flag) {
625 sci_port->break_flag = 1;
626 sci_schedule_break_timer(sci_port);
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* Do sysrq handling. */
Paul Mundte108b2c2006-09-27 16:32:13 +0900629 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 pr_debug("sci: BREAK detected\n");
Paul Mundte108b2c2006-09-27 16:32:13 +0900632 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
Alan Cox33f0f882006-01-09 20:54:13 -0800633 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900635 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /* frame error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900637 if (tty_insert_flip_char(tty, 0, TTY_FRAME))
Alan Cox33f0f882006-01-09 20:54:13 -0800638 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 pr_debug("sci: frame error\n");
640 }
641 }
642
Paul Mundte108b2c2006-09-27 16:32:13 +0900643 if (status & SCxSR_PER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* parity error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900645 if (tty_insert_flip_char(tty, 0, TTY_PARITY))
646 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 pr_debug("sci: parity error\n");
648 }
649
Alan Cox33f0f882006-01-09 20:54:13 -0800650 if (copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 return copied;
654}
655
656static inline int sci_handle_breaks(struct uart_port *port)
657{
658 int copied = 0;
659 unsigned short status = sci_in(port, SCxSR);
660 struct tty_struct *tty = port->info->tty;
661 struct sci_port *s = &sci_ports[port->line];
662
Paul Mundt0b3d4ef2007-03-14 13:22:37 +0900663 if (uart_handle_break(port))
664 return 0;
665
Paul Mundtb7a76e42006-02-01 03:06:06 -0800666 if (!s->break_flag && status & SCxSR_BRK(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#if defined(CONFIG_CPU_SH3)
668 /* Debounce break */
669 s->break_flag = 1;
670#endif
671 /* Notify of BREAK */
Paul Mundte108b2c2006-09-27 16:32:13 +0900672 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
Alan Cox33f0f882006-01-09 20:54:13 -0800673 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 pr_debug("sci: BREAK detected\n");
675 }
676
677#if defined(SCIF_ORER)
678 /* XXX: Handle SCIF overrun error */
679 if (port->type == PORT_SCIF && (sci_in(port, SCLSR) & SCIF_ORER) != 0) {
680 sci_out(port, SCLSR, 0);
Paul Mundte108b2c2006-09-27 16:32:13 +0900681 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 pr_debug("sci: overrun error\n");
684 }
685 }
686#endif
687
Alan Cox33f0f882006-01-09 20:54:13 -0800688 if (copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 tty_flip_buffer_push(tty);
Paul Mundte108b2c2006-09-27 16:32:13 +0900690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return copied;
692}
693
David Howells7d12e782006-10-05 14:55:46 +0100694static irqreturn_t sci_rx_interrupt(int irq, void *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /* I think sci_receive_chars has to be called irrespective
697 * of whether the I_IXOFF is set, otherwise, how is the interrupt
698 * to be disabled?
699 */
David Howells7d12e782006-10-05 14:55:46 +0100700 sci_receive_chars(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 return IRQ_HANDLED;
703}
704
David Howells7d12e782006-10-05 14:55:46 +0100705static irqreturn_t sci_tx_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 struct uart_port *port = ptr;
708
Paul Mundte108b2c2006-09-27 16:32:13 +0900709 spin_lock_irq(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 sci_transmit_chars(port);
Paul Mundte108b2c2006-09-27 16:32:13 +0900711 spin_unlock_irq(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 return IRQ_HANDLED;
714}
715
David Howells7d12e782006-10-05 14:55:46 +0100716static irqreturn_t sci_er_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 struct uart_port *port = ptr;
719
720 /* Handle errors */
721 if (port->type == PORT_SCI) {
722 if (sci_handle_errors(port)) {
723 /* discard character in rx buffer */
724 sci_in(port, SCxSR);
725 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
726 }
727 } else {
728#if defined(SCIF_ORER)
729 if((sci_in(port, SCLSR) & SCIF_ORER) != 0) {
730 struct tty_struct *tty = port->info->tty;
731
732 sci_out(port, SCLSR, 0);
Alan Cox33f0f882006-01-09 20:54:13 -0800733 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
734 tty_flip_buffer_push(tty);
735 pr_debug("scif: overrun error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737#endif
David Howells7d12e782006-10-05 14:55:46 +0100738 sci_rx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740
741 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
742
743 /* Kick the transmission */
David Howells7d12e782006-10-05 14:55:46 +0100744 sci_tx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 return IRQ_HANDLED;
747}
748
David Howells7d12e782006-10-05 14:55:46 +0100749static irqreturn_t sci_br_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 struct uart_port *port = ptr;
752
753 /* Handle BREAKs */
754 sci_handle_breaks(port);
755 sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
756
757 return IRQ_HANDLED;
758}
759
David Howells7d12e782006-10-05 14:55:46 +0100760static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 unsigned short ssr_status, scr_status;
763 struct uart_port *port = ptr;
764
765 ssr_status = sci_in(port,SCxSR);
766 scr_status = sci_in(port,SCSCR);
767
768 /* Tx Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900769 if ((ssr_status & 0x0020) && (scr_status & 0x0080))
David Howells7d12e782006-10-05 14:55:46 +0100770 sci_tx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /* Rx Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900772 if ((ssr_status & 0x0002) && (scr_status & 0x0040))
David Howells7d12e782006-10-05 14:55:46 +0100773 sci_rx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /* Error Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900775 if ((ssr_status & 0x0080) && (scr_status & 0x0400))
David Howells7d12e782006-10-05 14:55:46 +0100776 sci_er_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /* Break Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900778 if ((ssr_status & 0x0010) && (scr_status & 0x0200))
David Howells7d12e782006-10-05 14:55:46 +0100779 sci_br_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 return IRQ_HANDLED;
782}
783
784#ifdef CONFIG_CPU_FREQ
785/*
786 * Here we define a transistion notifier so that we can update all of our
787 * ports' baud rate when the peripheral clock changes.
788 */
Paul Mundte108b2c2006-09-27 16:32:13 +0900789static int sci_notifier(struct notifier_block *self,
790 unsigned long phase, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 struct cpufreq_freqs *freqs = p;
793 int i;
794
795 if ((phase == CPUFREQ_POSTCHANGE) ||
796 (phase == CPUFREQ_RESUMECHANGE)){
797 for (i = 0; i < SCI_NPORTS; i++) {
798 struct uart_port *port = &sci_ports[i].port;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800799 struct clk *clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /*
802 * Update the uartclk per-port if frequency has
803 * changed, since it will no longer necessarily be
804 * consistent with the old frequency.
805 *
806 * Really we want to be able to do something like
807 * uart_change_speed() or something along those lines
808 * here to implicitly reset the per-port baud rate..
809 *
810 * Clean this up later..
811 */
Paul Mundt1d118562006-12-01 13:15:14 +0900812 clk = clk_get(NULL, "module_clk");
Paul Mundtb7a76e42006-02-01 03:06:06 -0800813 port->uartclk = clk_get_rate(clk) * 16;
814 clk_put(clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816
Paul Mundte108b2c2006-09-27 16:32:13 +0900817 printk(KERN_INFO "%s: got a postchange notification "
818 "for cpu %d (old %d, new %d)\n",
819 __FUNCTION__, freqs->cpu, freqs->old, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
822 return NOTIFY_OK;
823}
824
825static struct notifier_block sci_nb = { &sci_notifier, NULL, 0 };
826#endif /* CONFIG_CPU_FREQ */
827
828static int sci_request_irq(struct sci_port *port)
829{
830 int i;
David Howells7d12e782006-10-05 14:55:46 +0100831 irqreturn_t (*handlers[4])(int irq, void *ptr) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 sci_er_interrupt, sci_rx_interrupt, sci_tx_interrupt,
833 sci_br_interrupt,
834 };
835 const char *desc[] = { "SCI Receive Error", "SCI Receive Data Full",
836 "SCI Transmit Data Empty", "SCI Break" };
837
838 if (port->irqs[0] == port->irqs[1]) {
839 if (!port->irqs[0]) {
840 printk(KERN_ERR "sci: Cannot allocate irq.(IRQ=0)\n");
841 return -ENODEV;
842 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900843
844 if (request_irq(port->irqs[0], sci_mpxed_interrupt,
Paul Mundt35f3c512006-10-06 15:31:16 +0900845 IRQF_DISABLED, "sci", port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 printk(KERN_ERR "sci: Cannot allocate irq.\n");
847 return -ENODEV;
848 }
849 } else {
850 for (i = 0; i < ARRAY_SIZE(handlers); i++) {
851 if (!port->irqs[i])
852 continue;
Paul Mundte108b2c2006-09-27 16:32:13 +0900853 if (request_irq(port->irqs[i], handlers[i],
Paul Mundt35f3c512006-10-06 15:31:16 +0900854 IRQF_DISABLED, desc[i], port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 printk(KERN_ERR "sci: Cannot allocate irq.\n");
856 return -ENODEV;
857 }
858 }
859 }
860
861 return 0;
862}
863
864static void sci_free_irq(struct sci_port *port)
865{
866 int i;
867
868 if (port->irqs[0] == port->irqs[1]) {
869 if (!port->irqs[0])
870 printk("sci: sci_free_irq error\n");
871 else
872 free_irq(port->irqs[0], port);
873 } else {
874 for (i = 0; i < ARRAY_SIZE(port->irqs); i++) {
875 if (!port->irqs[i])
876 continue;
877
878 free_irq(port->irqs[i], port);
879 }
880 }
881}
882
883static unsigned int sci_tx_empty(struct uart_port *port)
884{
885 /* Can't detect */
886 return TIOCSER_TEMT;
887}
888
889static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
890{
891 /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */
892 /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */
893 /* If you have signals for DTR and DCD, please implement here. */
894}
895
896static unsigned int sci_get_mctrl(struct uart_port *port)
897{
898 /* This routine is used for geting signals of: DTR, DCD, DSR, RI,
899 and CTS/RTS */
900
901 return TIOCM_DTR | TIOCM_RTS | TIOCM_DSR;
902}
903
Russell Kingb129a8c2005-08-31 10:12:14 +0100904static void sci_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Paul Mundte108b2c2006-09-27 16:32:13 +0900906 unsigned short ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Paul Mundte108b2c2006-09-27 16:32:13 +0900908 /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */
909 ctrl = sci_in(port, SCSCR);
910 ctrl |= SCI_CTRL_FLAGS_TIE;
911 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Russell Kingb129a8c2005-08-31 10:12:14 +0100914static void sci_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 unsigned short ctrl;
917
918 /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 ctrl = sci_in(port, SCSCR);
920 ctrl &= ~SCI_CTRL_FLAGS_TIE;
921 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
924static void sci_start_rx(struct uart_port *port, unsigned int tty_start)
925{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 unsigned short ctrl;
927
928 /* Set RIE (Receive Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 ctrl = sci_in(port, SCSCR);
930 ctrl |= SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE;
931 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934static void sci_stop_rx(struct uart_port *port)
935{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 unsigned short ctrl;
937
938 /* Clear RIE (Receive Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 ctrl = sci_in(port, SCSCR);
940 ctrl &= ~(SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE);
941 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
944static void sci_enable_ms(struct uart_port *port)
945{
946 /* Nothing here yet .. */
947}
948
949static void sci_break_ctl(struct uart_port *port, int break_state)
950{
951 /* Nothing here yet .. */
952}
953
954static int sci_startup(struct uart_port *port)
955{
956 struct sci_port *s = &sci_ports[port->line];
957
Paul Mundte108b2c2006-09-27 16:32:13 +0900958 if (s->enable)
959 s->enable(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
dmitry pervushin1534a3b2007-04-24 13:41:12 +0900961 s->clk = clk_get(NULL, "module_clk");
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 sci_request_irq(s);
Yoshinori Satod6569012005-10-14 15:59:12 -0700964 sci_start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 sci_start_rx(port, 1);
966
967 return 0;
968}
969
970static void sci_shutdown(struct uart_port *port)
971{
972 struct sci_port *s = &sci_ports[port->line];
973
974 sci_stop_rx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +0100975 sci_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 sci_free_irq(s);
977
Paul Mundte108b2c2006-09-27 16:32:13 +0900978 if (s->disable)
979 s->disable(port);
dmitry pervushin1534a3b2007-04-24 13:41:12 +0900980
981 clk_put(s->clk);
982 s->clk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
Alan Cox606d0992006-12-08 02:38:45 -0800985static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
986 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct sci_port *s = &sci_ports[port->line];
989 unsigned int status, baud, smr_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 int t;
991
992 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 switch (baud) {
Paul Mundtb7a76e42006-02-01 03:06:06 -0800995 case 0:
996 t = -1;
997 break;
998 default:
999 {
1000#if defined(CONFIG_SUPERH) && !defined(CONFIG_SUPERH64)
dmitry pervushin1534a3b2007-04-24 13:41:12 +09001001 t = SCBRR_VALUE(baud, clk_get_rate(s->clk));
Paul Mundtb7a76e42006-02-01 03:06:06 -08001002#else
1003 t = SCBRR_VALUE(baud);
1004#endif
Paul Mundtb7a76e42006-02-01 03:06:06 -08001005 break;
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008
Paul Mundte108b2c2006-09-27 16:32:13 +09001009 do {
1010 status = sci_in(port, SCxSR);
1011 } while (!(status & SCxSR_TEND(port)));
1012
1013 sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */
1014
1015#if !defined(SCI_ONLY)
1016 if (port->type == PORT_SCIF)
1017 sci_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST);
1018#endif
1019
1020 smr_val = sci_in(port, SCSMR) & 3;
1021 if ((termios->c_cflag & CSIZE) == CS7)
1022 smr_val |= 0x40;
1023 if (termios->c_cflag & PARENB)
1024 smr_val |= 0x20;
1025 if (termios->c_cflag & PARODD)
1026 smr_val |= 0x30;
1027 if (termios->c_cflag & CSTOPB)
1028 smr_val |= 0x08;
1029
1030 uart_update_timeout(port, termios->c_cflag, baud);
1031
1032 sci_out(port, SCSMR, smr_val);
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (t > 0) {
1035 if(t >= 256) {
1036 sci_out(port, SCSMR, (sci_in(port, SCSMR) & ~3) | 1);
1037 t >>= 2;
1038 } else {
1039 sci_out(port, SCSMR, sci_in(port, SCSMR) & ~3);
1040 }
1041 sci_out(port, SCBRR, t);
1042 udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */
1043 }
1044
Paul Mundtb7a76e42006-02-01 03:06:06 -08001045 if (likely(s->init_pins))
1046 s->init_pins(port, termios->c_cflag);
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 sci_out(port, SCSCR, SCSCR_INIT(port));
1049
1050 if ((termios->c_cflag & CREAD) != 0)
1051 sci_start_rx(port,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
1053
1054static const char *sci_type(struct uart_port *port)
1055{
1056 switch (port->type) {
1057 case PORT_SCI: return "sci";
1058 case PORT_SCIF: return "scif";
1059 case PORT_IRDA: return "irda";
1060 }
1061
1062 return 0;
1063}
1064
1065static void sci_release_port(struct uart_port *port)
1066{
1067 /* Nothing here yet .. */
1068}
1069
1070static int sci_request_port(struct uart_port *port)
1071{
1072 /* Nothing here yet .. */
1073 return 0;
1074}
1075
1076static void sci_config_port(struct uart_port *port, int flags)
1077{
1078 struct sci_port *s = &sci_ports[port->line];
1079
1080 port->type = s->type;
1081
Paul Mundte108b2c2006-09-27 16:32:13 +09001082 switch (port->type) {
1083 case PORT_SCI:
1084 s->init_pins = sci_init_pins_sci;
1085 break;
1086 case PORT_SCIF:
1087 s->init_pins = sci_init_pins_scif;
1088 break;
1089 case PORT_IRDA:
1090 s->init_pins = sci_init_pins_irda;
1091 break;
1092 }
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094#if defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
1095 if (port->mapbase == 0)
1096 port->mapbase = onchip_remap(SCIF_ADDR_SH5, 1024, "SCIF");
1097
Paul Mundte108b2c2006-09-27 16:32:13 +09001098 port->membase = (void __iomem *)port->mapbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099#endif
1100}
1101
1102static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
1103{
1104 struct sci_port *s = &sci_ports[port->line];
1105
1106 if (ser->irq != s->irqs[SCIx_TXI_IRQ] || ser->irq > NR_IRQS)
1107 return -EINVAL;
1108 if (ser->baud_base < 2400)
1109 /* No paper tape reader for Mitch.. */
1110 return -EINVAL;
1111
1112 return 0;
1113}
1114
1115static struct uart_ops sci_uart_ops = {
1116 .tx_empty = sci_tx_empty,
1117 .set_mctrl = sci_set_mctrl,
1118 .get_mctrl = sci_get_mctrl,
1119 .start_tx = sci_start_tx,
1120 .stop_tx = sci_stop_tx,
1121 .stop_rx = sci_stop_rx,
1122 .enable_ms = sci_enable_ms,
1123 .break_ctl = sci_break_ctl,
1124 .startup = sci_startup,
1125 .shutdown = sci_shutdown,
1126 .set_termios = sci_set_termios,
1127 .type = sci_type,
1128 .release_port = sci_release_port,
1129 .request_port = sci_request_port,
1130 .config_port = sci_config_port,
1131 .verify_port = sci_verify_port,
1132};
1133
Paul Mundte108b2c2006-09-27 16:32:13 +09001134static void __init sci_init_ports(void)
1135{
1136 static int first = 1;
1137 int i;
1138
1139 if (!first)
1140 return;
1141
1142 first = 0;
1143
1144 for (i = 0; i < SCI_NPORTS; i++) {
1145 sci_ports[i].port.ops = &sci_uart_ops;
1146 sci_ports[i].port.iotype = UPIO_MEM;
1147 sci_ports[i].port.line = i;
1148 sci_ports[i].port.fifosize = 1;
1149
1150#if defined(__H8300H__) || defined(__H8300S__)
1151#ifdef __H8300S__
1152 sci_ports[i].enable = h8300_sci_enable;
1153 sci_ports[i].disable = h8300_sci_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154#endif
Paul Mundte108b2c2006-09-27 16:32:13 +09001155 sci_ports[i].port.uartclk = CONFIG_CPU_CLOCK;
1156#elif defined(CONFIG_SUPERH64)
1157 sci_ports[i].port.uartclk = current_cpu_data.module_clock * 16;
1158#else
1159 /*
1160 * XXX: We should use a proper SCI/SCIF clock
1161 */
1162 {
Paul Mundt1d118562006-12-01 13:15:14 +09001163 struct clk *clk = clk_get(NULL, "module_clk");
Paul Mundte108b2c2006-09-27 16:32:13 +09001164 sci_ports[i].port.uartclk = clk_get_rate(clk) * 16;
1165 clk_put(clk);
1166 }
1167#endif
1168
1169 sci_ports[i].break_timer.data = (unsigned long)&sci_ports[i];
1170 sci_ports[i].break_timer.function = sci_break_timer;
1171
1172 init_timer(&sci_ports[i].break_timer);
1173 }
1174}
1175
1176int __init early_sci_setup(struct uart_port *port)
1177{
1178 if (unlikely(port->line > SCI_NPORTS))
1179 return -ENODEV;
1180
1181 sci_init_ports();
1182
1183 sci_ports[port->line].port.membase = port->membase;
1184 sci_ports[port->line].port.mapbase = port->mapbase;
1185 sci_ports[port->line].port.type = port->type;
1186
1187 return 0;
1188}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
1191/*
1192 * Print a string to the serial port trying not to disturb
1193 * any possible real use of the port...
1194 */
1195static void serial_console_write(struct console *co, const char *s,
1196 unsigned count)
1197{
1198 put_string(serial_console_port, s, count);
1199}
1200
1201static int __init serial_console_setup(struct console *co, char *options)
1202{
1203 struct uart_port *port;
1204 int baud = 115200;
1205 int bits = 8;
1206 int parity = 'n';
1207 int flow = 'n';
1208 int ret;
1209
Paul Mundte108b2c2006-09-27 16:32:13 +09001210 /*
1211 * Check whether an invalid uart number has been specified, and
1212 * if so, search for the first available port that does have
1213 * console support.
1214 */
1215 if (co->index >= SCI_NPORTS)
1216 co->index = 0;
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 serial_console_port = &sci_ports[co->index];
1219 port = &serial_console_port->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 /*
Paul Mundte108b2c2006-09-27 16:32:13 +09001222 * Also need to check port->type, we don't actually have any
1223 * UPIO_PORT ports, but uart_report_port() handily misreports
1224 * it anyways if we don't have a port available by the time this is
1225 * called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 */
Paul Mundte108b2c2006-09-27 16:32:13 +09001227 if (!port->type)
1228 return -ENODEV;
1229 if (!port->membase || !port->mapbase)
1230 return -ENODEV;
Paul Mundtb7a76e42006-02-01 03:06:06 -08001231
Paul Mundte108b2c2006-09-27 16:32:13 +09001232 port->type = serial_console_port->type;
1233
1234 if (port->flags & UPF_IOREMAP)
1235 sci_config_port(port, 0);
1236
1237 if (serial_console_port->enable)
1238 serial_console_port->enable(port);
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (options)
1241 uart_parse_options(options, &baud, &parity, &bits, &flow);
1242
1243 ret = uart_set_options(port, co, baud, parity, bits, flow);
1244#if defined(__H8300H__) || defined(__H8300S__)
1245 /* disable rx interrupt */
1246 if (ret == 0)
1247 sci_stop_rx(port);
1248#endif
1249 return ret;
1250}
1251
1252static struct console serial_console = {
1253 .name = "ttySC",
1254 .device = uart_console_device,
1255 .write = serial_console_write,
1256 .setup = serial_console_setup,
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001257 .flags = CON_PRINTBUFFER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 .index = -1,
1259 .data = &sci_uart_driver,
1260};
1261
1262static int __init sci_console_init(void)
1263{
Paul Mundte108b2c2006-09-27 16:32:13 +09001264 sci_init_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 register_console(&serial_console);
1266 return 0;
1267}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268console_initcall(sci_console_init);
1269#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
1270
1271#ifdef CONFIG_SH_KGDB
1272/*
1273 * FIXME: Most of this can go away.. at the moment, we rely on
1274 * arch/sh/kernel/setup.c to do the command line parsing for kgdb, though
1275 * most of that can easily be done here instead.
1276 *
1277 * For the time being, just accept the values that were parsed earlier..
1278 */
1279static void __init kgdb_console_get_options(struct uart_port *port, int *baud,
1280 int *parity, int *bits)
1281{
1282 *baud = kgdb_baud;
1283 *parity = tolower(kgdb_parity);
1284 *bits = kgdb_bits - '0';
1285}
1286
1287/*
1288 * The naming here is somewhat misleading, since kgdb_console_setup() takes
1289 * care of the early-on initialization for kgdb, regardless of whether we
1290 * actually use kgdb as a console or not.
1291 *
1292 * On the plus side, this lets us kill off the old kgdb_sci_setup() nonsense.
1293 */
1294int __init kgdb_console_setup(struct console *co, char *options)
1295{
1296 struct uart_port *port = &sci_ports[kgdb_portnum].port;
1297 int baud = 38400;
1298 int bits = 8;
1299 int parity = 'n';
1300 int flow = 'n';
1301
Paul Mundtb7a76e42006-02-01 03:06:06 -08001302 if (co->index != kgdb_portnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 co->index = kgdb_portnum;
1304
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001305 kgdb_sci_port = &sci_ports[co->index];
1306 port = &kgdb_sci_port->port;
1307
1308 /*
1309 * Also need to check port->type, we don't actually have any
1310 * UPIO_PORT ports, but uart_report_port() handily misreports
1311 * it anyways if we don't have a port available by the time this is
1312 * called.
1313 */
1314 if (!port->type)
1315 return -ENODEV;
1316 if (!port->membase || !port->mapbase)
1317 return -ENODEV;
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (options)
1320 uart_parse_options(options, &baud, &parity, &bits, &flow);
1321 else
1322 kgdb_console_get_options(port, &baud, &parity, &bits);
1323
1324 kgdb_getchar = kgdb_sci_getchar;
1325 kgdb_putchar = kgdb_sci_putchar;
1326
1327 return uart_set_options(port, co, baud, parity, bits, flow);
1328}
1329#endif /* CONFIG_SH_KGDB */
1330
1331#ifdef CONFIG_SH_KGDB_CONSOLE
1332static struct console kgdb_console = {
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001333 .name = "ttySC",
1334 .device = uart_console_device,
1335 .write = kgdb_console_write,
1336 .setup = kgdb_console_setup,
1337 .flags = CON_PRINTBUFFER,
1338 .index = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 .data = &sci_uart_driver,
1340};
1341
1342/* Register the KGDB console so we get messages (d'oh!) */
1343static int __init kgdb_console_init(void)
1344{
Paul Mundte108b2c2006-09-27 16:32:13 +09001345 sci_init_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 register_console(&kgdb_console);
1347 return 0;
1348}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349console_initcall(kgdb_console_init);
1350#endif /* CONFIG_SH_KGDB_CONSOLE */
1351
1352#if defined(CONFIG_SH_KGDB_CONSOLE)
1353#define SCI_CONSOLE &kgdb_console
1354#elif defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
1355#define SCI_CONSOLE &serial_console
1356#else
Paul Mundtb7a76e42006-02-01 03:06:06 -08001357#define SCI_CONSOLE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358#endif
1359
1360static char banner[] __initdata =
1361 KERN_INFO "SuperH SCI(F) driver initialized\n";
1362
1363static struct uart_driver sci_uart_driver = {
1364 .owner = THIS_MODULE,
1365 .driver_name = "sci",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 .dev_name = "ttySC",
1367 .major = SCI_MAJOR,
1368 .minor = SCI_MINOR_START,
Paul Mundte108b2c2006-09-27 16:32:13 +09001369 .nr = SCI_NPORTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 .cons = SCI_CONSOLE,
1371};
1372
Paul Mundte108b2c2006-09-27 16:32:13 +09001373/*
1374 * Register a set of serial devices attached to a platform device. The
1375 * list is terminated with a zero flags entry, which means we expect
1376 * all entries to have at least UPF_BOOT_AUTOCONF set. Platforms that need
1377 * remapping (such as sh64) should also set UPF_IOREMAP.
1378 */
1379static int __devinit sci_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Paul Mundte108b2c2006-09-27 16:32:13 +09001381 struct plat_sci_port *p = dev->dev.platform_data;
1382 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Paul Mundt32351a22007-03-12 14:38:59 +09001384 for (i = 0; p && p->flags != 0; p++, i++) {
Paul Mundte108b2c2006-09-27 16:32:13 +09001385 struct sci_port *sciport = &sci_ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Paul Mundt32351a22007-03-12 14:38:59 +09001387 /* Sanity check */
1388 if (unlikely(i == SCI_NPORTS)) {
1389 dev_notice(&dev->dev, "Attempting to register port "
1390 "%d when only %d are available.\n",
1391 i+1, SCI_NPORTS);
1392 dev_notice(&dev->dev, "Consider bumping "
1393 "CONFIG_SERIAL_SH_SCI_NR_UARTS!\n");
1394 break;
1395 }
1396
Paul Mundte108b2c2006-09-27 16:32:13 +09001397 sciport->port.mapbase = p->mapbase;
Paul Mundtb7a76e42006-02-01 03:06:06 -08001398
Paul Mundte108b2c2006-09-27 16:32:13 +09001399 /*
1400 * For the simple (and majority of) cases where we don't need
1401 * to do any remapping, just cast the cookie directly.
1402 */
1403 if (p->mapbase && !p->membase && !(p->flags & UPF_IOREMAP))
1404 p->membase = (void __iomem *)p->mapbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Paul Mundte108b2c2006-09-27 16:32:13 +09001406 sciport->port.membase = p->membase;
1407
1408 sciport->port.irq = p->irqs[SCIx_TXI_IRQ];
1409 sciport->port.flags = p->flags;
1410 sciport->port.dev = &dev->dev;
1411
1412 sciport->type = sciport->port.type = p->type;
1413
1414 memcpy(&sciport->irqs, &p->irqs, sizeof(p->irqs));
1415
1416 uart_add_one_port(&sci_uart_driver, &sciport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001419#if defined(CONFIG_SH_KGDB) && !defined(CONFIG_SH_KGDB_CONSOLE)
1420 kgdb_sci_port = &sci_ports[kgdb_portnum];
1421 kgdb_getchar = kgdb_sci_getchar;
1422 kgdb_putchar = kgdb_sci_putchar;
1423#endif
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425#ifdef CONFIG_CPU_FREQ
1426 cpufreq_register_notifier(&sci_nb, CPUFREQ_TRANSITION_NOTIFIER);
Paul Mundte108b2c2006-09-27 16:32:13 +09001427 dev_info(&dev->dev, "sci: CPU frequency notifier registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428#endif
1429
1430#ifdef CONFIG_SH_STANDARD_BIOS
1431 sh_bios_gdb_detach();
1432#endif
1433
Paul Mundte108b2c2006-09-27 16:32:13 +09001434 return 0;
1435}
1436
1437static int __devexit sci_remove(struct platform_device *dev)
1438{
1439 int i;
1440
1441 for (i = 0; i < SCI_NPORTS; i++)
1442 uart_remove_one_port(&sci_uart_driver, &sci_ports[i].port);
1443
1444 return 0;
1445}
1446
1447static int sci_suspend(struct platform_device *dev, pm_message_t state)
1448{
1449 int i;
1450
1451 for (i = 0; i < SCI_NPORTS; i++) {
1452 struct sci_port *p = &sci_ports[i];
1453
1454 if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev)
1455 uart_suspend_port(&sci_uart_driver, &p->port);
1456 }
1457
1458 return 0;
1459}
1460
1461static int sci_resume(struct platform_device *dev)
1462{
1463 int i;
1464
1465 for (i = 0; i < SCI_NPORTS; i++) {
1466 struct sci_port *p = &sci_ports[i];
1467
1468 if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev)
1469 uart_resume_port(&sci_uart_driver, &p->port);
1470 }
1471
1472 return 0;
1473}
1474
1475static struct platform_driver sci_driver = {
1476 .probe = sci_probe,
1477 .remove = __devexit_p(sci_remove),
1478 .suspend = sci_suspend,
1479 .resume = sci_resume,
1480 .driver = {
1481 .name = "sh-sci",
1482 .owner = THIS_MODULE,
1483 },
1484};
1485
1486static int __init sci_init(void)
1487{
1488 int ret;
1489
1490 printk(banner);
1491
1492 sci_init_ports();
1493
1494 ret = uart_register_driver(&sci_uart_driver);
1495 if (likely(ret == 0)) {
1496 ret = platform_driver_register(&sci_driver);
1497 if (unlikely(ret))
1498 uart_unregister_driver(&sci_uart_driver);
1499 }
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 return ret;
1502}
1503
1504static void __exit sci_exit(void)
1505{
Paul Mundte108b2c2006-09-27 16:32:13 +09001506 platform_driver_unregister(&sci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 uart_unregister_driver(&sci_uart_driver);
1508}
1509
1510module_init(sci_init);
1511module_exit(sci_exit);
1512
Paul Mundte108b2c2006-09-27 16:32:13 +09001513MODULE_LICENSE("GPL");