blob: 4b17f845f5cde24955fad09afd672a0b4ae91125 [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) */
65 unsigned int irqs[SCIx_NR_IRQS];
66
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;
80};
81
82#ifdef CONFIG_SH_KGDB
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static struct sci_port *kgdb_sci_port;
Paul Mundte108b2c2006-09-27 16:32:13 +090084#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
Paul Mundte108b2c2006-09-27 16:32:13 +090087static struct sci_port *serial_console_port;
88#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90/* Function prototypes */
Russell Kingb129a8c2005-08-31 10:12:14 +010091static void sci_stop_tx(struct uart_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Paul Mundte108b2c2006-09-27 16:32:13 +090093#define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
94
95static struct sci_port sci_ports[SCI_NPORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static struct uart_driver sci_uart_driver;
97
Paul Mundte108b2c2006-09-27 16:32:13 +090098#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && \
99 defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
100static inline void handle_error(struct uart_port *port)
101{
102 /* Clear error flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
104}
105
106static int get_char(struct uart_port *port)
107{
108 unsigned long flags;
109 unsigned short status;
110 int c;
111
Paul Mundte108b2c2006-09-27 16:32:13 +0900112 spin_lock_irqsave(&port->lock, flags);
113 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 status = sci_in(port, SCxSR);
115 if (status & SCxSR_ERRORS(port)) {
116 handle_error(port);
117 continue;
118 }
119 } while (!(status & SCxSR_RDxF(port)));
120 c = sci_in(port, SCxRDR);
121 sci_in(port, SCxSR); /* Dummy read */
122 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Paul Mundte108b2c2006-09-27 16:32:13 +0900123 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 return c;
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
128
Paul Mundte108b2c2006-09-27 16:32:13 +0900129#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) || defined(CONFIG_SH_KGDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static void put_char(struct uart_port *port, char c)
131{
132 unsigned long flags;
133 unsigned short status;
134
Paul Mundte108b2c2006-09-27 16:32:13 +0900135 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 do {
138 status = sci_in(port, SCxSR);
139 } while (!(status & SCxSR_TDxE(port)));
140
141 sci_out(port, SCxTDR, c);
142 sci_in(port, SCxSR); /* Dummy read */
143 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
144
Paul Mundte108b2c2006-09-27 16:32:13 +0900145 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
Paul Mundte108b2c2006-09-27 16:32:13 +0900147#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Paul Mundte108b2c2006-09-27 16:32:13 +0900149#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static void put_string(struct sci_port *sci_port, const char *buffer, int count)
151{
152 struct uart_port *port = &sci_port->port;
153 const unsigned char *p = buffer;
154 int i;
155
156#if defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
157 int checksum;
158 int usegdb=0;
159
160#ifdef CONFIG_SH_STANDARD_BIOS
Paul Mundtb7a76e42006-02-01 03:06:06 -0800161 /* This call only does a trap the first time it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * called, and so is safe to do here unconditionally
163 */
164 usegdb |= sh_bios_in_gdb_mode();
165#endif
166#ifdef CONFIG_SH_KGDB
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900167 usegdb |= (kgdb_in_gdb_mode && (sci_port == kgdb_sci_port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168#endif
169
170 if (usegdb) {
171 /* $<packet info>#<checksum>. */
172 do {
173 unsigned char c;
174 put_char(port, '$');
175 put_char(port, 'O'); /* 'O'utput to console */
176 checksum = 'O';
177
178 for (i=0; i<count; i++) { /* Don't use run length encoding */
179 int h, l;
180
181 c = *p++;
182 h = highhex(c);
183 l = lowhex(c);
184 put_char(port, h);
185 put_char(port, l);
186 checksum += h + l;
187 }
188 put_char(port, '#');
189 put_char(port, highhex(checksum));
190 put_char(port, lowhex(checksum));
191 } while (get_char(port) != '+');
192 } else
193#endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
194 for (i=0; i<count; i++) {
195 if (*p == 10)
196 put_char(port, '\r');
197 put_char(port, *p++);
198 }
199}
200#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#ifdef CONFIG_SH_KGDB
Paul Mundte108b2c2006-09-27 16:32:13 +0900203static int kgdb_sci_getchar(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 int c;
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* Keep trying to read a character, this could be neater */
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900208 while ((c = get_char(&kgdb_sci_port->port)) < 0)
Paul Mundte108b2c2006-09-27 16:32:13 +0900209 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 return c;
212}
213
Paul Mundte108b2c2006-09-27 16:32:13 +0900214static inline void kgdb_sci_putchar(int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900216 put_char(&kgdb_sci_port->port, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218#endif /* CONFIG_SH_KGDB */
219
220#if defined(__H8300S__)
221enum { sci_disable, sci_enable };
222
Paul Mundte108b2c2006-09-27 16:32:13 +0900223static void h8300_sci_config(struct uart_port* port, unsigned int ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 volatile unsigned char *mstpcrl=(volatile unsigned char *)MSTPCRL;
226 int ch = (port->mapbase - SMR0) >> 3;
227 unsigned char mask = 1 << (ch+1);
228
229 if (ctrl == sci_disable) {
230 *mstpcrl |= mask;
231 } else {
232 *mstpcrl &= ~mask;
233 }
234}
Paul Mundte108b2c2006-09-27 16:32:13 +0900235
236static inline void h8300_sci_enable(struct uart_port *port)
237{
238 h8300_sci_config(port, sci_enable);
239}
240
241static inline void h8300_sci_disable(struct uart_port *port)
242{
243 h8300_sci_config(port, sci_disable);
244}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245#endif
246
Paul Mundte108b2c2006-09-27 16:32:13 +0900247#if defined(SCI_ONLY) || defined(SCI_AND_SCIF) && \
248 defined(__H8300H__) || defined(__H8300S__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249static void sci_init_pins_sci(struct uart_port* port, unsigned int cflag)
250{
251 int ch = (port->mapbase - SMR0) >> 3;
252
253 /* set DDR regs */
Paul Mundte108b2c2006-09-27 16:32:13 +0900254 H8300_GPIO_DDR(h8300_sci_pins[ch].port,
255 h8300_sci_pins[ch].rx,
256 H8300_GPIO_INPUT);
257 H8300_GPIO_DDR(h8300_sci_pins[ch].port,
258 h8300_sci_pins[ch].tx,
259 H8300_GPIO_OUTPUT);
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* tx mark output*/
262 H8300_SCI_DR(ch) |= h8300_sci_pins[ch].tx;
263}
Paul Mundte108b2c2006-09-27 16:32:13 +0900264#else
265#define sci_init_pins_sci NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266#endif
Paul Mundte108b2c2006-09-27 16:32:13 +0900267
268#if defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709)
269static void sci_init_pins_irda(struct uart_port *port, unsigned int cflag)
270{
271 unsigned int fcr_val = 0;
272
273 if (cflag & CRTSCTS)
274 fcr_val |= SCFCR_MCE;
275
276 sci_out(port, SCFCR, fcr_val);
277}
278#else
279#define sci_init_pins_irda NULL
280#endif
281
282#ifdef SCI_ONLY
283#define sci_init_pins_scif NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284#endif
285
286#if defined(SCIF_ONLY) || defined(SCI_AND_SCIF)
Paul Mundte108b2c2006-09-27 16:32:13 +0900287#if defined(CONFIG_CPU_SUBTYPE_SH7300) || defined(CONFIG_CPU_SUBTYPE_SH7710)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800288/* SH7300 doesn't use RTS/CTS */
289static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
290{
291 sci_out(port, SCFCR, 0);
292}
293#elif defined(CONFIG_CPU_SH3)
Paul Mundte108b2c2006-09-27 16:32:13 +0900294/* For SH7705, SH7706, SH7707, SH7709, SH7709A, SH7729 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
296{
297 unsigned int fcr_val = 0;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800298 unsigned short data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Paul Mundtb7a76e42006-02-01 03:06:06 -0800300 /* We need to set SCPCR to enable RTS/CTS */
301 data = ctrl_inw(SCPCR);
302 /* Clear out SCP7MD1,0, SCP6MD1,0, SCP4MD1,0*/
303 ctrl_outw(data & 0x0fcf, SCPCR);
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (cflag & CRTSCTS)
306 fcr_val |= SCFCR_MCE;
307 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* We need to set SCPCR to enable RTS/CTS */
309 data = ctrl_inw(SCPCR);
310 /* Clear out SCP7MD1,0, SCP4MD1,0,
311 Set SCP6MD1,0 = {01} (output) */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800312 ctrl_outw((data & 0x0fcf) | 0x1000, SCPCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 data = ctrl_inb(SCPDR);
315 /* Set /RTS2 (bit6) = 0 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800316 ctrl_outb(data & 0xbf, SCPDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
Paul Mundtb7a76e42006-02-01 03:06:06 -0800318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 sci_out(port, SCFCR, fcr_val);
320}
Paul Mundt41504c32006-12-11 20:28:03 +0900321#elif defined(CONFIG_CPU_SUBTYPE_SH7722)
322static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
323{
324 unsigned int fcr_val = 0;
325
326 if (cflag & CRTSCTS) {
327 fcr_val |= SCFCR_MCE;
328
329 ctrl_outw(0x0000, PORT_PSCR);
330 } else {
331 unsigned short data;
332
333 data = ctrl_inw(PORT_PSCR);
334 data &= 0x033f;
335 data |= 0x0400;
336 ctrl_outw(data, PORT_PSCR);
337
338 ctrl_outw(ctrl_inw(SCSPTR0) & 0x17, SCSPTR0);
339 }
340
341 sci_out(port, SCFCR, fcr_val);
342}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/* For SH7750 */
345static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
346{
347 unsigned int fcr_val = 0;
348
349 if (cflag & CRTSCTS) {
350 fcr_val |= SCFCR_MCE;
351 } else {
Paul Mundte108b2c2006-09-27 16:32:13 +0900352#ifdef CONFIG_CPU_SUBTYPE_SH7343
353 /* Nothing */
354#elif defined(CONFIG_CPU_SUBTYPE_SH7780)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800355 ctrl_outw(0x0080, SCSPTR0); /* Set RTS = 1 */
356#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 ctrl_outw(0x0080, SCSPTR2); /* Set RTS = 1 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800358#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360 sci_out(port, SCFCR, fcr_val);
361}
Paul Mundte108b2c2006-09-27 16:32:13 +0900362#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Paul Mundte108b2c2006-09-27 16:32:13 +0900364#if defined(CONFIG_CPU_SUBTYPE_SH7760) || defined(CONFIG_CPU_SUBTYPE_SH7780)
365static inline int scif_txroom(struct uart_port *port)
366{
367 return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0x7f);
368}
369
370static inline int scif_rxroom(struct uart_port *port)
371{
372 return sci_in(port, SCRFDR) & 0x7f;
373}
374#else
375static inline int scif_txroom(struct uart_port *port)
376{
377 return SCIF_TXROOM_MAX - (sci_in(port, SCFDR) >> 8);
378}
379
380static inline int scif_rxroom(struct uart_port *port)
381{
382 return sci_in(port, SCFDR) & SCIF_RFDC_MASK;
383}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#endif
385#endif /* SCIF_ONLY || SCI_AND_SCIF */
386
Paul Mundte108b2c2006-09-27 16:32:13 +0900387static inline int sci_txroom(struct uart_port *port)
388{
389 return ((sci_in(port, SCxSR) & SCI_TDRE) != 0);
390}
391
392static inline int sci_rxroom(struct uart_port *port)
393{
394 return ((sci_in(port, SCxSR) & SCxSR_RDxF(port)) != 0);
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/* ********************************************************************** *
398 * the interrupt related routines *
399 * ********************************************************************** */
400
401static void sci_transmit_chars(struct uart_port *port)
402{
403 struct circ_buf *xmit = &port->info->xmit;
404 unsigned int stopped = uart_tx_stopped(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 unsigned short status;
406 unsigned short ctrl;
Paul Mundte108b2c2006-09-27 16:32:13 +0900407 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 status = sci_in(port, SCxSR);
410 if (!(status & SCxSR_TDxE(port))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 ctrl = sci_in(port, SCSCR);
412 if (uart_circ_empty(xmit)) {
413 ctrl &= ~SCI_CTRL_FLAGS_TIE;
414 } else {
415 ctrl |= SCI_CTRL_FLAGS_TIE;
416 }
417 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return;
419 }
420
Paul Mundte108b2c2006-09-27 16:32:13 +0900421#ifndef SCI_ONLY
422 if (port->type == PORT_SCIF)
423 count = scif_txroom(port);
424 else
Paul Mundtb7a76e42006-02-01 03:06:06 -0800425#endif
Paul Mundte108b2c2006-09-27 16:32:13 +0900426 count = sci_txroom(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 do {
429 unsigned char c;
430
431 if (port->x_char) {
432 c = port->x_char;
433 port->x_char = 0;
434 } else if (!uart_circ_empty(xmit) && !stopped) {
435 c = xmit->buf[xmit->tail];
436 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
437 } else {
438 break;
439 }
440
441 sci_out(port, SCxTDR, c);
442
443 port->icount.tx++;
444 } while (--count > 0);
445
446 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
447
448 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
449 uart_write_wakeup(port);
450 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100451 sci_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 ctrl = sci_in(port, SCSCR);
454
455#if !defined(SCI_ONLY)
456 if (port->type == PORT_SCIF) {
457 sci_in(port, SCxSR); /* Dummy read */
458 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
459 }
460#endif
461
462 ctrl |= SCI_CTRL_FLAGS_TIE;
463 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465}
466
467/* On SH3, SCIF may read end-of-break as a space->mark char */
468#define STEPFN(c) ({int __c=(c); (((__c-1)|(__c)) == -1); })
469
David Howells7d12e782006-10-05 14:55:46 +0100470static inline void sci_receive_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Paul Mundte108b2c2006-09-27 16:32:13 +0900472 struct sci_port *sci_port = (struct sci_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct tty_struct *tty = port->info->tty;
474 int i, count, copied = 0;
475 unsigned short status;
Alan Cox33f0f882006-01-09 20:54:13 -0800476 unsigned char flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 status = sci_in(port, SCxSR);
479 if (!(status & SCxSR_RDxF(port)))
480 return;
481
482 while (1) {
483#if !defined(SCI_ONLY)
Paul Mundte108b2c2006-09-27 16:32:13 +0900484 if (port->type == PORT_SCIF)
485 count = scif_rxroom(port);
486 else
Paul Mundtb7a76e42006-02-01 03:06:06 -0800487#endif
Paul Mundte108b2c2006-09-27 16:32:13 +0900488 count = sci_rxroom(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /* Don't copy more bytes than there is room for in the buffer */
Alan Cox33f0f882006-01-09 20:54:13 -0800491 count = tty_buffer_request_room(tty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 /* If for any reason we can't copy more data, we're done! */
494 if (count == 0)
495 break;
496
497 if (port->type == PORT_SCI) {
498 char c = sci_in(port, SCxRDR);
David Howells7d12e782006-10-05 14:55:46 +0100499 if (uart_handle_sysrq_char(port, c) || sci_port->break_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 count = 0;
Paul Mundte108b2c2006-09-27 16:32:13 +0900501 else {
502 tty_insert_flip_char(tty, c, TTY_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 } else {
505 for (i=0; i<count; i++) {
506 char c = sci_in(port, SCxRDR);
507 status = sci_in(port, SCxSR);
508#if defined(CONFIG_CPU_SH3)
509 /* Skip "chars" during break */
Paul Mundte108b2c2006-09-27 16:32:13 +0900510 if (sci_port->break_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if ((c == 0) &&
512 (status & SCxSR_FER(port))) {
513 count--; i--;
514 continue;
515 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* Nonzero => end-of-break */
518 pr_debug("scif: debounce<%02x>\n", c);
Paul Mundte108b2c2006-09-27 16:32:13 +0900519 sci_port->break_flag = 0;
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (STEPFN(c)) {
522 count--; i--;
523 continue;
524 }
525 }
526#endif /* CONFIG_CPU_SH3 */
David Howells7d12e782006-10-05 14:55:46 +0100527 if (uart_handle_sysrq_char(port, c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 count--; i--;
529 continue;
530 }
531
532 /* Store data and status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (status&SCxSR_FER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800534 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 pr_debug("sci: frame error\n");
536 } else if (status&SCxSR_PER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800537 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 pr_debug("sci: parity error\n");
Alan Cox33f0f882006-01-09 20:54:13 -0800539 } else
540 flag = TTY_NORMAL;
541 tty_insert_flip_char(tty, c, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543 }
544
545 sci_in(port, SCxSR); /* dummy read */
546 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 copied += count;
549 port->icount.rx += count;
550 }
551
552 if (copied) {
553 /* Tell the rest of the system the news. New characters! */
554 tty_flip_buffer_push(tty);
555 } else {
556 sci_in(port, SCxSR); /* dummy read */
557 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
558 }
559}
560
561#define SCI_BREAK_JIFFIES (HZ/20)
562/* The sci generates interrupts during the break,
563 * 1 per millisecond or so during the break period, for 9600 baud.
564 * So dont bother disabling interrupts.
565 * But dont want more than 1 break event.
566 * Use a kernel timer to periodically poll the rx line until
567 * the break is finished.
568 */
569static void sci_schedule_break_timer(struct sci_port *port)
570{
571 port->break_timer.expires = jiffies + SCI_BREAK_JIFFIES;
572 add_timer(&port->break_timer);
573}
574/* Ensure that two consecutive samples find the break over. */
575static void sci_break_timer(unsigned long data)
576{
Paul Mundte108b2c2006-09-27 16:32:13 +0900577 struct sci_port *port = (struct sci_port *)data;
578
579 if (sci_rxd_in(&port->port) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 port->break_flag = 1;
Paul Mundte108b2c2006-09-27 16:32:13 +0900581 sci_schedule_break_timer(port);
582 } else if (port->break_flag == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* break is over. */
584 port->break_flag = 2;
Paul Mundte108b2c2006-09-27 16:32:13 +0900585 sci_schedule_break_timer(port);
586 } else
587 port->break_flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590static inline int sci_handle_errors(struct uart_port *port)
591{
592 int copied = 0;
593 unsigned short status = sci_in(port, SCxSR);
594 struct tty_struct *tty = port->info->tty;
595
Paul Mundte108b2c2006-09-27 16:32:13 +0900596 if (status & SCxSR_ORER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* overrun error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900598 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN))
Alan Cox33f0f882006-01-09 20:54:13 -0800599 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 pr_debug("sci: overrun error\n");
601 }
602
Paul Mundte108b2c2006-09-27 16:32:13 +0900603 if (status & SCxSR_FER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (sci_rxd_in(port) == 0) {
605 /* Notify of BREAK */
Paul Mundte108b2c2006-09-27 16:32:13 +0900606 struct sci_port *sci_port = (struct sci_port *)port;
607
608 if (!sci_port->break_flag) {
609 sci_port->break_flag = 1;
610 sci_schedule_break_timer(sci_port);
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /* Do sysrq handling. */
Paul Mundte108b2c2006-09-27 16:32:13 +0900613 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 pr_debug("sci: BREAK detected\n");
Paul Mundte108b2c2006-09-27 16:32:13 +0900616 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
Alan Cox33f0f882006-01-09 20:54:13 -0800617 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900619 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* frame error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900621 if (tty_insert_flip_char(tty, 0, TTY_FRAME))
Alan Cox33f0f882006-01-09 20:54:13 -0800622 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 pr_debug("sci: frame error\n");
624 }
625 }
626
Paul Mundte108b2c2006-09-27 16:32:13 +0900627 if (status & SCxSR_PER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* parity error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900629 if (tty_insert_flip_char(tty, 0, TTY_PARITY))
630 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 pr_debug("sci: parity error\n");
632 }
633
Alan Cox33f0f882006-01-09 20:54:13 -0800634 if (copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 return copied;
638}
639
640static inline int sci_handle_breaks(struct uart_port *port)
641{
642 int copied = 0;
643 unsigned short status = sci_in(port, SCxSR);
644 struct tty_struct *tty = port->info->tty;
645 struct sci_port *s = &sci_ports[port->line];
646
Paul Mundt0b3d4ef2007-03-14 13:22:37 +0900647 if (uart_handle_break(port))
648 return 0;
649
Paul Mundtb7a76e42006-02-01 03:06:06 -0800650 if (!s->break_flag && status & SCxSR_BRK(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651#if defined(CONFIG_CPU_SH3)
652 /* Debounce break */
653 s->break_flag = 1;
654#endif
655 /* Notify of BREAK */
Paul Mundte108b2c2006-09-27 16:32:13 +0900656 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
Alan Cox33f0f882006-01-09 20:54:13 -0800657 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 pr_debug("sci: BREAK detected\n");
659 }
660
661#if defined(SCIF_ORER)
662 /* XXX: Handle SCIF overrun error */
663 if (port->type == PORT_SCIF && (sci_in(port, SCLSR) & SCIF_ORER) != 0) {
664 sci_out(port, SCLSR, 0);
Paul Mundte108b2c2006-09-27 16:32:13 +0900665 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 pr_debug("sci: overrun error\n");
668 }
669 }
670#endif
671
Alan Cox33f0f882006-01-09 20:54:13 -0800672 if (copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 tty_flip_buffer_push(tty);
Paul Mundte108b2c2006-09-27 16:32:13 +0900674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return copied;
676}
677
David Howells7d12e782006-10-05 14:55:46 +0100678static irqreturn_t sci_rx_interrupt(int irq, void *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 /* I think sci_receive_chars has to be called irrespective
681 * of whether the I_IXOFF is set, otherwise, how is the interrupt
682 * to be disabled?
683 */
David Howells7d12e782006-10-05 14:55:46 +0100684 sci_receive_chars(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 return IRQ_HANDLED;
687}
688
David Howells7d12e782006-10-05 14:55:46 +0100689static irqreturn_t sci_tx_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 struct uart_port *port = ptr;
692
Paul Mundte108b2c2006-09-27 16:32:13 +0900693 spin_lock_irq(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 sci_transmit_chars(port);
Paul Mundte108b2c2006-09-27 16:32:13 +0900695 spin_unlock_irq(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 return IRQ_HANDLED;
698}
699
David Howells7d12e782006-10-05 14:55:46 +0100700static irqreturn_t sci_er_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 struct uart_port *port = ptr;
703
704 /* Handle errors */
705 if (port->type == PORT_SCI) {
706 if (sci_handle_errors(port)) {
707 /* discard character in rx buffer */
708 sci_in(port, SCxSR);
709 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
710 }
711 } else {
712#if defined(SCIF_ORER)
713 if((sci_in(port, SCLSR) & SCIF_ORER) != 0) {
714 struct tty_struct *tty = port->info->tty;
715
716 sci_out(port, SCLSR, 0);
Alan Cox33f0f882006-01-09 20:54:13 -0800717 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
718 tty_flip_buffer_push(tty);
719 pr_debug("scif: overrun error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721#endif
David Howells7d12e782006-10-05 14:55:46 +0100722 sci_rx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
724
725 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
726
727 /* Kick the transmission */
David Howells7d12e782006-10-05 14:55:46 +0100728 sci_tx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 return IRQ_HANDLED;
731}
732
David Howells7d12e782006-10-05 14:55:46 +0100733static irqreturn_t sci_br_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 struct uart_port *port = ptr;
736
737 /* Handle BREAKs */
738 sci_handle_breaks(port);
Paul Mundte108b2c2006-09-27 16:32:13 +0900739
740#ifdef CONFIG_SH_KGDB
741 /* Break into the debugger if a break is detected */
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900742 breakpoint();
Paul Mundte108b2c2006-09-27 16:32:13 +0900743#endif
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
746
747 return IRQ_HANDLED;
748}
749
David Howells7d12e782006-10-05 14:55:46 +0100750static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 unsigned short ssr_status, scr_status;
753 struct uart_port *port = ptr;
754
755 ssr_status = sci_in(port,SCxSR);
756 scr_status = sci_in(port,SCSCR);
757
758 /* Tx Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900759 if ((ssr_status & 0x0020) && (scr_status & 0x0080))
David Howells7d12e782006-10-05 14:55:46 +0100760 sci_tx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* Rx Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900762 if ((ssr_status & 0x0002) && (scr_status & 0x0040))
David Howells7d12e782006-10-05 14:55:46 +0100763 sci_rx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 /* Error Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900765 if ((ssr_status & 0x0080) && (scr_status & 0x0400))
David Howells7d12e782006-10-05 14:55:46 +0100766 sci_er_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /* Break Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900768 if ((ssr_status & 0x0010) && (scr_status & 0x0200))
David Howells7d12e782006-10-05 14:55:46 +0100769 sci_br_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 return IRQ_HANDLED;
772}
773
774#ifdef CONFIG_CPU_FREQ
775/*
776 * Here we define a transistion notifier so that we can update all of our
777 * ports' baud rate when the peripheral clock changes.
778 */
Paul Mundte108b2c2006-09-27 16:32:13 +0900779static int sci_notifier(struct notifier_block *self,
780 unsigned long phase, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 struct cpufreq_freqs *freqs = p;
783 int i;
784
785 if ((phase == CPUFREQ_POSTCHANGE) ||
786 (phase == CPUFREQ_RESUMECHANGE)){
787 for (i = 0; i < SCI_NPORTS; i++) {
788 struct uart_port *port = &sci_ports[i].port;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800789 struct clk *clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 /*
792 * Update the uartclk per-port if frequency has
793 * changed, since it will no longer necessarily be
794 * consistent with the old frequency.
795 *
796 * Really we want to be able to do something like
797 * uart_change_speed() or something along those lines
798 * here to implicitly reset the per-port baud rate..
799 *
800 * Clean this up later..
801 */
Paul Mundt1d118562006-12-01 13:15:14 +0900802 clk = clk_get(NULL, "module_clk");
Paul Mundtb7a76e42006-02-01 03:06:06 -0800803 port->uartclk = clk_get_rate(clk) * 16;
804 clk_put(clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806
Paul Mundte108b2c2006-09-27 16:32:13 +0900807 printk(KERN_INFO "%s: got a postchange notification "
808 "for cpu %d (old %d, new %d)\n",
809 __FUNCTION__, freqs->cpu, freqs->old, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811
812 return NOTIFY_OK;
813}
814
815static struct notifier_block sci_nb = { &sci_notifier, NULL, 0 };
816#endif /* CONFIG_CPU_FREQ */
817
818static int sci_request_irq(struct sci_port *port)
819{
820 int i;
David Howells7d12e782006-10-05 14:55:46 +0100821 irqreturn_t (*handlers[4])(int irq, void *ptr) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 sci_er_interrupt, sci_rx_interrupt, sci_tx_interrupt,
823 sci_br_interrupt,
824 };
825 const char *desc[] = { "SCI Receive Error", "SCI Receive Data Full",
826 "SCI Transmit Data Empty", "SCI Break" };
827
828 if (port->irqs[0] == port->irqs[1]) {
829 if (!port->irqs[0]) {
830 printk(KERN_ERR "sci: Cannot allocate irq.(IRQ=0)\n");
831 return -ENODEV;
832 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900833
834 if (request_irq(port->irqs[0], sci_mpxed_interrupt,
Paul Mundt35f3c512006-10-06 15:31:16 +0900835 IRQF_DISABLED, "sci", port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 printk(KERN_ERR "sci: Cannot allocate irq.\n");
837 return -ENODEV;
838 }
839 } else {
840 for (i = 0; i < ARRAY_SIZE(handlers); i++) {
841 if (!port->irqs[i])
842 continue;
Paul Mundte108b2c2006-09-27 16:32:13 +0900843 if (request_irq(port->irqs[i], handlers[i],
Paul Mundt35f3c512006-10-06 15:31:16 +0900844 IRQF_DISABLED, desc[i], port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 printk(KERN_ERR "sci: Cannot allocate irq.\n");
846 return -ENODEV;
847 }
848 }
849 }
850
851 return 0;
852}
853
854static void sci_free_irq(struct sci_port *port)
855{
856 int i;
857
858 if (port->irqs[0] == port->irqs[1]) {
859 if (!port->irqs[0])
860 printk("sci: sci_free_irq error\n");
861 else
862 free_irq(port->irqs[0], port);
863 } else {
864 for (i = 0; i < ARRAY_SIZE(port->irqs); i++) {
865 if (!port->irqs[i])
866 continue;
867
868 free_irq(port->irqs[i], port);
869 }
870 }
871}
872
873static unsigned int sci_tx_empty(struct uart_port *port)
874{
875 /* Can't detect */
876 return TIOCSER_TEMT;
877}
878
879static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
880{
881 /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */
882 /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */
883 /* If you have signals for DTR and DCD, please implement here. */
884}
885
886static unsigned int sci_get_mctrl(struct uart_port *port)
887{
888 /* This routine is used for geting signals of: DTR, DCD, DSR, RI,
889 and CTS/RTS */
890
891 return TIOCM_DTR | TIOCM_RTS | TIOCM_DSR;
892}
893
Russell Kingb129a8c2005-08-31 10:12:14 +0100894static void sci_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Paul Mundte108b2c2006-09-27 16:32:13 +0900896 unsigned short ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Paul Mundte108b2c2006-09-27 16:32:13 +0900898 /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */
899 ctrl = sci_in(port, SCSCR);
900 ctrl |= SCI_CTRL_FLAGS_TIE;
901 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Russell Kingb129a8c2005-08-31 10:12:14 +0100904static void sci_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 unsigned short ctrl;
907
908 /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 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
914static void sci_start_rx(struct uart_port *port, unsigned int tty_start)
915{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 unsigned short ctrl;
917
918 /* Set RIE (Receive Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 ctrl = sci_in(port, SCSCR);
920 ctrl |= SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE;
921 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
924static void sci_stop_rx(struct uart_port *port)
925{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 unsigned short ctrl;
927
928 /* Clear 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_enable_ms(struct uart_port *port)
935{
936 /* Nothing here yet .. */
937}
938
939static void sci_break_ctl(struct uart_port *port, int break_state)
940{
941 /* Nothing here yet .. */
942}
943
944static int sci_startup(struct uart_port *port)
945{
946 struct sci_port *s = &sci_ports[port->line];
947
Paul Mundte108b2c2006-09-27 16:32:13 +0900948 if (s->enable)
949 s->enable(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 sci_request_irq(s);
Yoshinori Satod6569012005-10-14 15:59:12 -0700952 sci_start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 sci_start_rx(port, 1);
954
955 return 0;
956}
957
958static void sci_shutdown(struct uart_port *port)
959{
960 struct sci_port *s = &sci_ports[port->line];
961
962 sci_stop_rx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +0100963 sci_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 sci_free_irq(s);
965
Paul Mundte108b2c2006-09-27 16:32:13 +0900966 if (s->disable)
967 s->disable(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Alan Cox606d0992006-12-08 02:38:45 -0800970static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
971 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 struct sci_port *s = &sci_ports[port->line];
974 unsigned int status, baud, smr_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 int t;
976
977 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 switch (baud) {
Paul Mundtb7a76e42006-02-01 03:06:06 -0800980 case 0:
981 t = -1;
982 break;
983 default:
984 {
985#if defined(CONFIG_SUPERH) && !defined(CONFIG_SUPERH64)
Paul Mundt1d118562006-12-01 13:15:14 +0900986 struct clk *clk = clk_get(NULL, "module_clk");
Paul Mundtb7a76e42006-02-01 03:06:06 -0800987 t = SCBRR_VALUE(baud, clk_get_rate(clk));
988 clk_put(clk);
989#else
990 t = SCBRR_VALUE(baud);
991#endif
Paul Mundtb7a76e42006-02-01 03:06:06 -0800992 break;
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995
Paul Mundte108b2c2006-09-27 16:32:13 +0900996 do {
997 status = sci_in(port, SCxSR);
998 } while (!(status & SCxSR_TEND(port)));
999
1000 sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */
1001
1002#if !defined(SCI_ONLY)
1003 if (port->type == PORT_SCIF)
1004 sci_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST);
1005#endif
1006
1007 smr_val = sci_in(port, SCSMR) & 3;
1008 if ((termios->c_cflag & CSIZE) == CS7)
1009 smr_val |= 0x40;
1010 if (termios->c_cflag & PARENB)
1011 smr_val |= 0x20;
1012 if (termios->c_cflag & PARODD)
1013 smr_val |= 0x30;
1014 if (termios->c_cflag & CSTOPB)
1015 smr_val |= 0x08;
1016
1017 uart_update_timeout(port, termios->c_cflag, baud);
1018
1019 sci_out(port, SCSMR, smr_val);
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (t > 0) {
1022 if(t >= 256) {
1023 sci_out(port, SCSMR, (sci_in(port, SCSMR) & ~3) | 1);
1024 t >>= 2;
1025 } else {
1026 sci_out(port, SCSMR, sci_in(port, SCSMR) & ~3);
1027 }
1028 sci_out(port, SCBRR, t);
1029 udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */
1030 }
1031
Paul Mundtb7a76e42006-02-01 03:06:06 -08001032 if (likely(s->init_pins))
1033 s->init_pins(port, termios->c_cflag);
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 sci_out(port, SCSCR, SCSCR_INIT(port));
1036
1037 if ((termios->c_cflag & CREAD) != 0)
1038 sci_start_rx(port,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
1041static const char *sci_type(struct uart_port *port)
1042{
1043 switch (port->type) {
1044 case PORT_SCI: return "sci";
1045 case PORT_SCIF: return "scif";
1046 case PORT_IRDA: return "irda";
1047 }
1048
1049 return 0;
1050}
1051
1052static void sci_release_port(struct uart_port *port)
1053{
1054 /* Nothing here yet .. */
1055}
1056
1057static int sci_request_port(struct uart_port *port)
1058{
1059 /* Nothing here yet .. */
1060 return 0;
1061}
1062
1063static void sci_config_port(struct uart_port *port, int flags)
1064{
1065 struct sci_port *s = &sci_ports[port->line];
1066
1067 port->type = s->type;
1068
Paul Mundte108b2c2006-09-27 16:32:13 +09001069 switch (port->type) {
1070 case PORT_SCI:
1071 s->init_pins = sci_init_pins_sci;
1072 break;
1073 case PORT_SCIF:
1074 s->init_pins = sci_init_pins_scif;
1075 break;
1076 case PORT_IRDA:
1077 s->init_pins = sci_init_pins_irda;
1078 break;
1079 }
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081#if defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
1082 if (port->mapbase == 0)
1083 port->mapbase = onchip_remap(SCIF_ADDR_SH5, 1024, "SCIF");
1084
Paul Mundte108b2c2006-09-27 16:32:13 +09001085 port->membase = (void __iomem *)port->mapbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086#endif
1087}
1088
1089static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
1090{
1091 struct sci_port *s = &sci_ports[port->line];
1092
1093 if (ser->irq != s->irqs[SCIx_TXI_IRQ] || ser->irq > NR_IRQS)
1094 return -EINVAL;
1095 if (ser->baud_base < 2400)
1096 /* No paper tape reader for Mitch.. */
1097 return -EINVAL;
1098
1099 return 0;
1100}
1101
1102static struct uart_ops sci_uart_ops = {
1103 .tx_empty = sci_tx_empty,
1104 .set_mctrl = sci_set_mctrl,
1105 .get_mctrl = sci_get_mctrl,
1106 .start_tx = sci_start_tx,
1107 .stop_tx = sci_stop_tx,
1108 .stop_rx = sci_stop_rx,
1109 .enable_ms = sci_enable_ms,
1110 .break_ctl = sci_break_ctl,
1111 .startup = sci_startup,
1112 .shutdown = sci_shutdown,
1113 .set_termios = sci_set_termios,
1114 .type = sci_type,
1115 .release_port = sci_release_port,
1116 .request_port = sci_request_port,
1117 .config_port = sci_config_port,
1118 .verify_port = sci_verify_port,
1119};
1120
Paul Mundte108b2c2006-09-27 16:32:13 +09001121static void __init sci_init_ports(void)
1122{
1123 static int first = 1;
1124 int i;
1125
1126 if (!first)
1127 return;
1128
1129 first = 0;
1130
1131 for (i = 0; i < SCI_NPORTS; i++) {
1132 sci_ports[i].port.ops = &sci_uart_ops;
1133 sci_ports[i].port.iotype = UPIO_MEM;
1134 sci_ports[i].port.line = i;
1135 sci_ports[i].port.fifosize = 1;
1136
1137#if defined(__H8300H__) || defined(__H8300S__)
1138#ifdef __H8300S__
1139 sci_ports[i].enable = h8300_sci_enable;
1140 sci_ports[i].disable = h8300_sci_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141#endif
Paul Mundte108b2c2006-09-27 16:32:13 +09001142 sci_ports[i].port.uartclk = CONFIG_CPU_CLOCK;
1143#elif defined(CONFIG_SUPERH64)
1144 sci_ports[i].port.uartclk = current_cpu_data.module_clock * 16;
1145#else
1146 /*
1147 * XXX: We should use a proper SCI/SCIF clock
1148 */
1149 {
Paul Mundt1d118562006-12-01 13:15:14 +09001150 struct clk *clk = clk_get(NULL, "module_clk");
Paul Mundte108b2c2006-09-27 16:32:13 +09001151 sci_ports[i].port.uartclk = clk_get_rate(clk) * 16;
1152 clk_put(clk);
1153 }
1154#endif
1155
1156 sci_ports[i].break_timer.data = (unsigned long)&sci_ports[i];
1157 sci_ports[i].break_timer.function = sci_break_timer;
1158
1159 init_timer(&sci_ports[i].break_timer);
1160 }
1161}
1162
1163int __init early_sci_setup(struct uart_port *port)
1164{
1165 if (unlikely(port->line > SCI_NPORTS))
1166 return -ENODEV;
1167
1168 sci_init_ports();
1169
1170 sci_ports[port->line].port.membase = port->membase;
1171 sci_ports[port->line].port.mapbase = port->mapbase;
1172 sci_ports[port->line].port.type = port->type;
1173
1174 return 0;
1175}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
1178/*
1179 * Print a string to the serial port trying not to disturb
1180 * any possible real use of the port...
1181 */
1182static void serial_console_write(struct console *co, const char *s,
1183 unsigned count)
1184{
1185 put_string(serial_console_port, s, count);
1186}
1187
1188static int __init serial_console_setup(struct console *co, char *options)
1189{
1190 struct uart_port *port;
1191 int baud = 115200;
1192 int bits = 8;
1193 int parity = 'n';
1194 int flow = 'n';
1195 int ret;
1196
Paul Mundte108b2c2006-09-27 16:32:13 +09001197 /*
1198 * Check whether an invalid uart number has been specified, and
1199 * if so, search for the first available port that does have
1200 * console support.
1201 */
1202 if (co->index >= SCI_NPORTS)
1203 co->index = 0;
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 serial_console_port = &sci_ports[co->index];
1206 port = &serial_console_port->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /*
Paul Mundte108b2c2006-09-27 16:32:13 +09001209 * Also need to check port->type, we don't actually have any
1210 * UPIO_PORT ports, but uart_report_port() handily misreports
1211 * it anyways if we don't have a port available by the time this is
1212 * called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 */
Paul Mundte108b2c2006-09-27 16:32:13 +09001214 if (!port->type)
1215 return -ENODEV;
1216 if (!port->membase || !port->mapbase)
1217 return -ENODEV;
Paul Mundtb7a76e42006-02-01 03:06:06 -08001218
Paul Mundte108b2c2006-09-27 16:32:13 +09001219 port->type = serial_console_port->type;
1220
1221 if (port->flags & UPF_IOREMAP)
1222 sci_config_port(port, 0);
1223
1224 if (serial_console_port->enable)
1225 serial_console_port->enable(port);
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (options)
1228 uart_parse_options(options, &baud, &parity, &bits, &flow);
1229
1230 ret = uart_set_options(port, co, baud, parity, bits, flow);
1231#if defined(__H8300H__) || defined(__H8300S__)
1232 /* disable rx interrupt */
1233 if (ret == 0)
1234 sci_stop_rx(port);
1235#endif
1236 return ret;
1237}
1238
1239static struct console serial_console = {
1240 .name = "ttySC",
1241 .device = uart_console_device,
1242 .write = serial_console_write,
1243 .setup = serial_console_setup,
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001244 .flags = CON_PRINTBUFFER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 .index = -1,
1246 .data = &sci_uart_driver,
1247};
1248
1249static int __init sci_console_init(void)
1250{
Paul Mundte108b2c2006-09-27 16:32:13 +09001251 sci_init_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 register_console(&serial_console);
1253 return 0;
1254}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255console_initcall(sci_console_init);
1256#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
1257
1258#ifdef CONFIG_SH_KGDB
1259/*
1260 * FIXME: Most of this can go away.. at the moment, we rely on
1261 * arch/sh/kernel/setup.c to do the command line parsing for kgdb, though
1262 * most of that can easily be done here instead.
1263 *
1264 * For the time being, just accept the values that were parsed earlier..
1265 */
1266static void __init kgdb_console_get_options(struct uart_port *port, int *baud,
1267 int *parity, int *bits)
1268{
1269 *baud = kgdb_baud;
1270 *parity = tolower(kgdb_parity);
1271 *bits = kgdb_bits - '0';
1272}
1273
1274/*
1275 * The naming here is somewhat misleading, since kgdb_console_setup() takes
1276 * care of the early-on initialization for kgdb, regardless of whether we
1277 * actually use kgdb as a console or not.
1278 *
1279 * On the plus side, this lets us kill off the old kgdb_sci_setup() nonsense.
1280 */
1281int __init kgdb_console_setup(struct console *co, char *options)
1282{
1283 struct uart_port *port = &sci_ports[kgdb_portnum].port;
1284 int baud = 38400;
1285 int bits = 8;
1286 int parity = 'n';
1287 int flow = 'n';
1288
Paul Mundtb7a76e42006-02-01 03:06:06 -08001289 if (co->index != kgdb_portnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 co->index = kgdb_portnum;
1291
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001292 kgdb_sci_port = &sci_ports[co->index];
1293 port = &kgdb_sci_port->port;
1294
1295 /*
1296 * Also need to check port->type, we don't actually have any
1297 * UPIO_PORT ports, but uart_report_port() handily misreports
1298 * it anyways if we don't have a port available by the time this is
1299 * called.
1300 */
1301 if (!port->type)
1302 return -ENODEV;
1303 if (!port->membase || !port->mapbase)
1304 return -ENODEV;
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (options)
1307 uart_parse_options(options, &baud, &parity, &bits, &flow);
1308 else
1309 kgdb_console_get_options(port, &baud, &parity, &bits);
1310
1311 kgdb_getchar = kgdb_sci_getchar;
1312 kgdb_putchar = kgdb_sci_putchar;
1313
1314 return uart_set_options(port, co, baud, parity, bits, flow);
1315}
1316#endif /* CONFIG_SH_KGDB */
1317
1318#ifdef CONFIG_SH_KGDB_CONSOLE
1319static struct console kgdb_console = {
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001320 .name = "ttySC",
1321 .device = uart_console_device,
1322 .write = kgdb_console_write,
1323 .setup = kgdb_console_setup,
1324 .flags = CON_PRINTBUFFER,
1325 .index = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 .data = &sci_uart_driver,
1327};
1328
1329/* Register the KGDB console so we get messages (d'oh!) */
1330static int __init kgdb_console_init(void)
1331{
Paul Mundte108b2c2006-09-27 16:32:13 +09001332 sci_init_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 register_console(&kgdb_console);
1334 return 0;
1335}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336console_initcall(kgdb_console_init);
1337#endif /* CONFIG_SH_KGDB_CONSOLE */
1338
1339#if defined(CONFIG_SH_KGDB_CONSOLE)
1340#define SCI_CONSOLE &kgdb_console
1341#elif defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
1342#define SCI_CONSOLE &serial_console
1343#else
Paul Mundtb7a76e42006-02-01 03:06:06 -08001344#define SCI_CONSOLE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345#endif
1346
1347static char banner[] __initdata =
1348 KERN_INFO "SuperH SCI(F) driver initialized\n";
1349
1350static struct uart_driver sci_uart_driver = {
1351 .owner = THIS_MODULE,
1352 .driver_name = "sci",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 .dev_name = "ttySC",
1354 .major = SCI_MAJOR,
1355 .minor = SCI_MINOR_START,
Paul Mundte108b2c2006-09-27 16:32:13 +09001356 .nr = SCI_NPORTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 .cons = SCI_CONSOLE,
1358};
1359
Paul Mundte108b2c2006-09-27 16:32:13 +09001360/*
1361 * Register a set of serial devices attached to a platform device. The
1362 * list is terminated with a zero flags entry, which means we expect
1363 * all entries to have at least UPF_BOOT_AUTOCONF set. Platforms that need
1364 * remapping (such as sh64) should also set UPF_IOREMAP.
1365 */
1366static int __devinit sci_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Paul Mundte108b2c2006-09-27 16:32:13 +09001368 struct plat_sci_port *p = dev->dev.platform_data;
1369 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Paul Mundte108b2c2006-09-27 16:32:13 +09001371 for (i = 0; p && p->flags != 0 && i < SCI_NPORTS; p++, i++) {
1372 struct sci_port *sciport = &sci_ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Paul Mundte108b2c2006-09-27 16:32:13 +09001374 sciport->port.mapbase = p->mapbase;
Paul Mundtb7a76e42006-02-01 03:06:06 -08001375
Paul Mundte108b2c2006-09-27 16:32:13 +09001376 /*
1377 * For the simple (and majority of) cases where we don't need
1378 * to do any remapping, just cast the cookie directly.
1379 */
1380 if (p->mapbase && !p->membase && !(p->flags & UPF_IOREMAP))
1381 p->membase = (void __iomem *)p->mapbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Paul Mundte108b2c2006-09-27 16:32:13 +09001383 sciport->port.membase = p->membase;
1384
1385 sciport->port.irq = p->irqs[SCIx_TXI_IRQ];
1386 sciport->port.flags = p->flags;
1387 sciport->port.dev = &dev->dev;
1388
1389 sciport->type = sciport->port.type = p->type;
1390
1391 memcpy(&sciport->irqs, &p->irqs, sizeof(p->irqs));
1392
1393 uart_add_one_port(&sci_uart_driver, &sciport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001396#if defined(CONFIG_SH_KGDB) && !defined(CONFIG_SH_KGDB_CONSOLE)
1397 kgdb_sci_port = &sci_ports[kgdb_portnum];
1398 kgdb_getchar = kgdb_sci_getchar;
1399 kgdb_putchar = kgdb_sci_putchar;
1400#endif
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402#ifdef CONFIG_CPU_FREQ
1403 cpufreq_register_notifier(&sci_nb, CPUFREQ_TRANSITION_NOTIFIER);
Paul Mundte108b2c2006-09-27 16:32:13 +09001404 dev_info(&dev->dev, "sci: CPU frequency notifier registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405#endif
1406
1407#ifdef CONFIG_SH_STANDARD_BIOS
1408 sh_bios_gdb_detach();
1409#endif
1410
Paul Mundte108b2c2006-09-27 16:32:13 +09001411 return 0;
1412}
1413
1414static int __devexit sci_remove(struct platform_device *dev)
1415{
1416 int i;
1417
1418 for (i = 0; i < SCI_NPORTS; i++)
1419 uart_remove_one_port(&sci_uart_driver, &sci_ports[i].port);
1420
1421 return 0;
1422}
1423
1424static int sci_suspend(struct platform_device *dev, pm_message_t state)
1425{
1426 int i;
1427
1428 for (i = 0; i < SCI_NPORTS; i++) {
1429 struct sci_port *p = &sci_ports[i];
1430
1431 if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev)
1432 uart_suspend_port(&sci_uart_driver, &p->port);
1433 }
1434
1435 return 0;
1436}
1437
1438static int sci_resume(struct platform_device *dev)
1439{
1440 int i;
1441
1442 for (i = 0; i < SCI_NPORTS; i++) {
1443 struct sci_port *p = &sci_ports[i];
1444
1445 if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev)
1446 uart_resume_port(&sci_uart_driver, &p->port);
1447 }
1448
1449 return 0;
1450}
1451
1452static struct platform_driver sci_driver = {
1453 .probe = sci_probe,
1454 .remove = __devexit_p(sci_remove),
1455 .suspend = sci_suspend,
1456 .resume = sci_resume,
1457 .driver = {
1458 .name = "sh-sci",
1459 .owner = THIS_MODULE,
1460 },
1461};
1462
1463static int __init sci_init(void)
1464{
1465 int ret;
1466
1467 printk(banner);
1468
1469 sci_init_ports();
1470
1471 ret = uart_register_driver(&sci_uart_driver);
1472 if (likely(ret == 0)) {
1473 ret = platform_driver_register(&sci_driver);
1474 if (unlikely(ret))
1475 uart_unregister_driver(&sci_uart_driver);
1476 }
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return ret;
1479}
1480
1481static void __exit sci_exit(void)
1482{
Paul Mundte108b2c2006-09-27 16:32:13 +09001483 platform_driver_unregister(&sci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 uart_unregister_driver(&sci_uart_driver);
1485}
1486
1487module_init(sci_init);
1488module_exit(sci_exit);
1489
Paul Mundte108b2c2006-09-27 16:32:13 +09001490MODULE_LICENSE("GPL");