blob: 6a5132f840363178ac718aa41dd4ee9df433ffca [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 Mundt7ff731a2008-10-01 15:46:58 +09006 * Copyright (C) 2002 - 2008 Paul Mundt
Markus Brunner3ea6bc32007-08-20 08:59:33 +09007 * Modified to support SH7720 SCIF. Markus Brunner, Mark Jonas (Jul 2007).
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * based off of the old drivers/char/sh-sci.c by:
10 *
11 * Copyright (C) 1999, 2000 Niibe Yutaka
12 * Copyright (C) 2000 Sugioka Toshinobu
13 * Modified to support multiple serial ports. Stuart Menefy (May 2000).
14 * Modified to support SecureEdge. David McCullough (2002)
15 * Modified to support SH7300 SCIF. Takashi Kusuda (Jun 2003).
Magnus Dammd89ddd12007-07-25 11:42:56 +090016 * Removed SH7300 support (Jul 2007).
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 * This file is subject to the terms and conditions of the GNU General Public
19 * License. See the file "COPYING" in the main directory of this archive
20 * for more details.
21 */
Paul Mundt0b3d4ef2007-03-14 13:22:37 +090022#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
23#define SUPPORT_SYSRQ
24#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#undef DEBUG
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/timer.h>
31#include <linux/interrupt.h>
32#include <linux/tty.h>
33#include <linux/tty_flip.h>
34#include <linux/serial.h>
35#include <linux/major.h>
36#include <linux/string.h>
37#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/ioport.h>
39#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/init.h>
41#include <linux/delay.h>
42#include <linux/console.h>
Paul Mundte108b2c2006-09-27 16:32:13 +090043#include <linux/platform_device.h>
Paul Mundt96de1a82008-02-26 14:52:45 +090044#include <linux/serial_sci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/notifier.h>
46#include <linux/cpufreq.h>
Paul Mundt85f094e2008-04-25 16:04:20 +090047#include <linux/clk.h>
Paul Mundtfa5da2f2007-03-08 17:27:37 +090048#include <linux/ctype.h>
Paul Mundt7ff731a2008-10-01 15:46:58 +090049#include <linux/err.h>
Paul Mundt85f094e2008-04-25 16:04:20 +090050
51#ifdef CONFIG_SUPERH
Paul Mundtb7a76e42006-02-01 03:06:06 -080052#include <asm/clock.h>
Paul Mundte108b2c2006-09-27 16:32:13 +090053#include <asm/sh_bios.h>
54#include <asm/kgdb.h>
Paul Mundtb7a76e42006-02-01 03:06:06 -080055#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include "sh-sci.h"
58
Paul Mundte108b2c2006-09-27 16:32:13 +090059struct sci_port {
60 struct uart_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Paul Mundte108b2c2006-09-27 16:32:13 +090062 /* Port type */
63 unsigned int type;
64
65 /* Port IRQs: ERI, RXI, TXI, BRI (optional) */
Paul Mundt32351a22007-03-12 14:38:59 +090066 unsigned int irqs[SCIx_NR_IRQS];
Paul Mundte108b2c2006-09-27 16:32:13 +090067
68 /* Port pin configuration */
69 void (*init_pins)(struct uart_port *port,
70 unsigned int cflag);
71
72 /* Port enable callback */
73 void (*enable)(struct uart_port *port);
74
75 /* Port disable callback */
76 void (*disable)(struct uart_port *port);
77
78 /* Break timer */
79 struct timer_list break_timer;
80 int break_flag;
dmitry pervushin1534a3b2007-04-24 13:41:12 +090081
Paul Mundta2159b52008-10-02 19:09:13 +090082#ifdef CONFIG_HAVE_CLK
dmitry pervushin1534a3b2007-04-24 13:41:12 +090083 /* Port clock */
84 struct clk *clk;
Paul Mundt005a3362007-04-26 11:45:32 +090085#endif
Paul Mundte108b2c2006-09-27 16:32:13 +090086};
87
88#ifdef CONFIG_SH_KGDB
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static struct sci_port *kgdb_sci_port;
Paul Mundte108b2c2006-09-27 16:32:13 +090090#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
Paul Mundte108b2c2006-09-27 16:32:13 +090093static struct sci_port *serial_console_port;
94#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/* Function prototypes */
Russell Kingb129a8c2005-08-31 10:12:14 +010097static void sci_stop_tx(struct uart_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Paul Mundte108b2c2006-09-27 16:32:13 +090099#define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
100
101static struct sci_port sci_ports[SCI_NPORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static struct uart_driver sci_uart_driver;
103
Paul Mundte108b2c2006-09-27 16:32:13 +0900104#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && \
105 defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
106static inline void handle_error(struct uart_port *port)
107{
108 /* Clear error flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
110}
111
112static int get_char(struct uart_port *port)
113{
114 unsigned long flags;
115 unsigned short status;
116 int c;
117
Paul Mundte108b2c2006-09-27 16:32:13 +0900118 spin_lock_irqsave(&port->lock, flags);
119 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 status = sci_in(port, SCxSR);
121 if (status & SCxSR_ERRORS(port)) {
122 handle_error(port);
123 continue;
124 }
125 } while (!(status & SCxSR_RDxF(port)));
126 c = sci_in(port, SCxRDR);
127 sci_in(port, SCxSR); /* Dummy read */
128 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Paul Mundte108b2c2006-09-27 16:32:13 +0900129 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 return c;
132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
134
Paul Mundte108b2c2006-09-27 16:32:13 +0900135#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) || defined(CONFIG_SH_KGDB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static void put_char(struct uart_port *port, char c)
137{
138 unsigned long flags;
139 unsigned short status;
140
Paul Mundte108b2c2006-09-27 16:32:13 +0900141 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 do {
144 status = sci_in(port, SCxSR);
145 } while (!(status & SCxSR_TDxE(port)));
146
147 sci_out(port, SCxTDR, c);
148 sci_in(port, SCxSR); /* Dummy read */
149 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
150
Paul Mundte108b2c2006-09-27 16:32:13 +0900151 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
Paul Mundte108b2c2006-09-27 16:32:13 +0900153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Paul Mundte108b2c2006-09-27 16:32:13 +0900155#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static void put_string(struct sci_port *sci_port, const char *buffer, int count)
157{
158 struct uart_port *port = &sci_port->port;
159 const unsigned char *p = buffer;
160 int i;
161
162#if defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
163 int checksum;
164 int usegdb=0;
165
166#ifdef CONFIG_SH_STANDARD_BIOS
Paul Mundtb7a76e42006-02-01 03:06:06 -0800167 /* This call only does a trap the first time it is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * called, and so is safe to do here unconditionally
169 */
170 usegdb |= sh_bios_in_gdb_mode();
171#endif
172#ifdef CONFIG_SH_KGDB
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900173 usegdb |= (kgdb_in_gdb_mode && (sci_port == kgdb_sci_port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#endif
175
176 if (usegdb) {
177 /* $<packet info>#<checksum>. */
178 do {
179 unsigned char c;
180 put_char(port, '$');
181 put_char(port, 'O'); /* 'O'utput to console */
182 checksum = 'O';
183
184 for (i=0; i<count; i++) { /* Don't use run length encoding */
185 int h, l;
186
187 c = *p++;
Harvey Harrisonbfd3c7a2008-05-12 12:05:43 -0700188 h = hex_asc_hi(c);
189 l = hex_asc_lo(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 put_char(port, h);
191 put_char(port, l);
192 checksum += h + l;
193 }
194 put_char(port, '#');
Harvey Harrisonbfd3c7a2008-05-12 12:05:43 -0700195 put_char(port, hex_asc_hi(checksum));
196 put_char(port, hex_asc_lo(checksum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 } while (get_char(port) != '+');
198 } else
199#endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
200 for (i=0; i<count; i++) {
201 if (*p == 10)
202 put_char(port, '\r');
203 put_char(port, *p++);
204 }
205}
206#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208#ifdef CONFIG_SH_KGDB
Paul Mundte108b2c2006-09-27 16:32:13 +0900209static int kgdb_sci_getchar(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 int c;
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /* Keep trying to read a character, this could be neater */
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900214 while ((c = get_char(&kgdb_sci_port->port)) < 0)
Paul Mundte108b2c2006-09-27 16:32:13 +0900215 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 return c;
218}
219
Paul Mundte108b2c2006-09-27 16:32:13 +0900220static inline void kgdb_sci_putchar(int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Paul Mundtfa5da2f2007-03-08 17:27:37 +0900222 put_char(&kgdb_sci_port->port, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224#endif /* CONFIG_SH_KGDB */
225
226#if defined(__H8300S__)
227enum { sci_disable, sci_enable };
228
Paul Mundte108b2c2006-09-27 16:32:13 +0900229static void h8300_sci_config(struct uart_port* port, unsigned int ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 volatile unsigned char *mstpcrl=(volatile unsigned char *)MSTPCRL;
232 int ch = (port->mapbase - SMR0) >> 3;
233 unsigned char mask = 1 << (ch+1);
234
235 if (ctrl == sci_disable) {
236 *mstpcrl |= mask;
237 } else {
238 *mstpcrl &= ~mask;
239 }
240}
Paul Mundte108b2c2006-09-27 16:32:13 +0900241
242static inline void h8300_sci_enable(struct uart_port *port)
243{
244 h8300_sci_config(port, sci_enable);
245}
246
247static inline void h8300_sci_disable(struct uart_port *port)
248{
249 h8300_sci_config(port, sci_disable);
250}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#endif
252
Paul Mundt15c73aa2008-10-02 19:47:12 +0900253#if defined(__H8300H__) || defined(__H8300S__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254static void sci_init_pins_sci(struct uart_port* port, unsigned int cflag)
255{
256 int ch = (port->mapbase - SMR0) >> 3;
257
258 /* set DDR regs */
Paul Mundte108b2c2006-09-27 16:32:13 +0900259 H8300_GPIO_DDR(h8300_sci_pins[ch].port,
260 h8300_sci_pins[ch].rx,
261 H8300_GPIO_INPUT);
262 H8300_GPIO_DDR(h8300_sci_pins[ch].port,
263 h8300_sci_pins[ch].tx,
264 H8300_GPIO_OUTPUT);
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /* tx mark output*/
267 H8300_SCI_DR(ch) |= h8300_sci_pins[ch].tx;
268}
Paul Mundte108b2c2006-09-27 16:32:13 +0900269#else
270#define sci_init_pins_sci NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#endif
Paul Mundte108b2c2006-09-27 16:32:13 +0900272
273#if defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709)
274static void sci_init_pins_irda(struct uart_port *port, unsigned int cflag)
275{
276 unsigned int fcr_val = 0;
277
278 if (cflag & CRTSCTS)
279 fcr_val |= SCFCR_MCE;
280
281 sci_out(port, SCFCR, fcr_val);
282}
283#else
284#define sci_init_pins_irda NULL
285#endif
286
Magnus Dammd89ddd12007-07-25 11:42:56 +0900287#if defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900288static void sci_init_pins_scif(struct uart_port* port, unsigned int cflag)
289{
290 unsigned int fcr_val = 0;
291
292 set_sh771x_scif_pfc(port);
293 if (cflag & CRTSCTS) {
294 fcr_val |= SCFCR_MCE;
295 }
296 sci_out(port, SCFCR, fcr_val);
297}
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900298#elif defined(CONFIG_CPU_SUBTYPE_SH7720) || defined(CONFIG_CPU_SUBTYPE_SH7721)
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900299static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
300{
301 unsigned int fcr_val = 0;
302 unsigned short data;
303
304 if (cflag & CRTSCTS) {
305 /* enable RTS/CTS */
306 if (port->mapbase == 0xa4430000) { /* SCIF0 */
307 /* Clear PTCR bit 9-2; enable all scif pins but sck */
308 data = ctrl_inw(PORT_PTCR);
309 ctrl_outw((data & 0xfc03), PORT_PTCR);
310 } else if (port->mapbase == 0xa4438000) { /* SCIF1 */
311 /* Clear PVCR bit 9-2 */
312 data = ctrl_inw(PORT_PVCR);
313 ctrl_outw((data & 0xfc03), PORT_PVCR);
314 }
315 fcr_val |= SCFCR_MCE;
316 } else {
317 if (port->mapbase == 0xa4430000) { /* SCIF0 */
318 /* Clear PTCR bit 5-2; enable only tx and rx */
319 data = ctrl_inw(PORT_PTCR);
320 ctrl_outw((data & 0xffc3), PORT_PTCR);
321 } else if (port->mapbase == 0xa4438000) { /* SCIF1 */
322 /* Clear PVCR bit 5-2 */
323 data = ctrl_inw(PORT_PVCR);
324 ctrl_outw((data & 0xffc3), PORT_PVCR);
325 }
326 }
327 sci_out(port, SCFCR, fcr_val);
328}
Paul Mundtb7a76e42006-02-01 03:06:06 -0800329#elif defined(CONFIG_CPU_SH3)
Paul Mundte108b2c2006-09-27 16:32:13 +0900330/* For SH7705, SH7706, SH7707, SH7709, SH7709A, SH7729 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
332{
333 unsigned int fcr_val = 0;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800334 unsigned short data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Paul Mundtb7a76e42006-02-01 03:06:06 -0800336 /* We need to set SCPCR to enable RTS/CTS */
337 data = ctrl_inw(SCPCR);
338 /* Clear out SCP7MD1,0, SCP6MD1,0, SCP4MD1,0*/
339 ctrl_outw(data & 0x0fcf, SCPCR);
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (cflag & CRTSCTS)
342 fcr_val |= SCFCR_MCE;
343 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /* We need to set SCPCR to enable RTS/CTS */
345 data = ctrl_inw(SCPCR);
346 /* Clear out SCP7MD1,0, SCP4MD1,0,
347 Set SCP6MD1,0 = {01} (output) */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800348 ctrl_outw((data & 0x0fcf) | 0x1000, SCPCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 data = ctrl_inb(SCPDR);
351 /* Set /RTS2 (bit6) = 0 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800352 ctrl_outb(data & 0xbf, SCPDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Paul Mundtb7a76e42006-02-01 03:06:06 -0800354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 sci_out(port, SCFCR, fcr_val);
356}
Paul Mundt41504c32006-12-11 20:28:03 +0900357#elif defined(CONFIG_CPU_SUBTYPE_SH7722)
358static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
359{
360 unsigned int fcr_val = 0;
Magnus Damm346b7462008-04-23 21:25:29 +0900361 unsigned short data;
Paul Mundt41504c32006-12-11 20:28:03 +0900362
Magnus Damm346b7462008-04-23 21:25:29 +0900363 if (port->mapbase == 0xffe00000) {
364 data = ctrl_inw(PSCR);
365 data &= ~0x03cf;
366 if (cflag & CRTSCTS)
367 fcr_val |= SCFCR_MCE;
368 else
369 data |= 0x0340;
Paul Mundt41504c32006-12-11 20:28:03 +0900370
Magnus Damm346b7462008-04-23 21:25:29 +0900371 ctrl_outw(data, PSCR);
Paul Mundt41504c32006-12-11 20:28:03 +0900372 }
Magnus Damm346b7462008-04-23 21:25:29 +0900373 /* SCIF1 and SCIF2 should be setup by board code */
Paul Mundt41504c32006-12-11 20:28:03 +0900374
375 sci_out(port, SCFCR, fcr_val);
376}
Paul Mundt178dd0c2008-04-09 17:56:18 +0900377#elif defined(CONFIG_CPU_SUBTYPE_SH7723)
378static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
379{
380 /* Nothing to do here.. */
381 sci_out(port, SCFCR, 0);
382}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/* For SH7750 */
385static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
386{
387 unsigned int fcr_val = 0;
388
389 if (cflag & CRTSCTS) {
390 fcr_val |= SCFCR_MCE;
391 } else {
Magnus Damm9109a302008-02-08 17:31:24 +0900392#if defined(CONFIG_CPU_SUBTYPE_SH7343) || defined(CONFIG_CPU_SUBTYPE_SH7366)
Paul Mundte108b2c2006-09-27 16:32:13 +0900393 /* Nothing */
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900394#elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \
395 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900396 defined(CONFIG_CPU_SUBTYPE_SH7785) || \
397 defined(CONFIG_CPU_SUBTYPE_SHX3)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800398 ctrl_outw(0x0080, SCSPTR0); /* Set RTS = 1 */
399#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 ctrl_outw(0x0080, SCSPTR2); /* Set RTS = 1 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800401#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403 sci_out(port, SCFCR, fcr_val);
404}
Paul Mundte108b2c2006-09-27 16:32:13 +0900405#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Paul Mundt32351a22007-03-12 14:38:59 +0900407#if defined(CONFIG_CPU_SUBTYPE_SH7760) || \
408 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
409 defined(CONFIG_CPU_SUBTYPE_SH7785)
Paul Mundte108b2c2006-09-27 16:32:13 +0900410static inline int scif_txroom(struct uart_port *port)
411{
Yutaro Ebiharacae167d2008-03-11 13:58:50 +0900412 return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0xff);
Paul Mundte108b2c2006-09-27 16:32:13 +0900413}
414
415static inline int scif_rxroom(struct uart_port *port)
416{
Yutaro Ebiharacae167d2008-03-11 13:58:50 +0900417 return sci_in(port, SCRFDR) & 0xff;
Paul Mundte108b2c2006-09-27 16:32:13 +0900418}
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900419#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
420static inline int scif_txroom(struct uart_port *port)
421{
422 if((port->mapbase == 0xffe00000) || (port->mapbase == 0xffe08000)) /* SCIF0/1*/
423 return SCIF_TXROOM_MAX - (sci_in(port, SCTFDR) & 0xff);
424 else /* SCIF2 */
425 return SCIF2_TXROOM_MAX - (sci_in(port, SCFDR) >> 8);
426}
427
428static inline int scif_rxroom(struct uart_port *port)
429{
430 if((port->mapbase == 0xffe00000) || (port->mapbase == 0xffe08000)) /* SCIF0/1*/
431 return sci_in(port, SCRFDR) & 0xff;
432 else /* SCIF2 */
433 return sci_in(port, SCFDR) & SCIF2_RFDC_MASK;
434}
Paul Mundte108b2c2006-09-27 16:32:13 +0900435#else
436static inline int scif_txroom(struct uart_port *port)
437{
438 return SCIF_TXROOM_MAX - (sci_in(port, SCFDR) >> 8);
439}
440
441static inline int scif_rxroom(struct uart_port *port)
442{
443 return sci_in(port, SCFDR) & SCIF_RFDC_MASK;
444}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Paul Mundte108b2c2006-09-27 16:32:13 +0900447static inline int sci_txroom(struct uart_port *port)
448{
449 return ((sci_in(port, SCxSR) & SCI_TDRE) != 0);
450}
451
452static inline int sci_rxroom(struct uart_port *port)
453{
454 return ((sci_in(port, SCxSR) & SCxSR_RDxF(port)) != 0);
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/* ********************************************************************** *
458 * the interrupt related routines *
459 * ********************************************************************** */
460
461static void sci_transmit_chars(struct uart_port *port)
462{
463 struct circ_buf *xmit = &port->info->xmit;
464 unsigned int stopped = uart_tx_stopped(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 unsigned short status;
466 unsigned short ctrl;
Paul Mundte108b2c2006-09-27 16:32:13 +0900467 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 status = sci_in(port, SCxSR);
470 if (!(status & SCxSR_TDxE(port))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 ctrl = sci_in(port, SCSCR);
472 if (uart_circ_empty(xmit)) {
473 ctrl &= ~SCI_CTRL_FLAGS_TIE;
474 } else {
475 ctrl |= SCI_CTRL_FLAGS_TIE;
476 }
477 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return;
479 }
480
Paul Mundte108b2c2006-09-27 16:32:13 +0900481 if (port->type == PORT_SCIF)
482 count = scif_txroom(port);
483 else
Paul Mundte108b2c2006-09-27 16:32:13 +0900484 count = sci_txroom(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 do {
487 unsigned char c;
488
489 if (port->x_char) {
490 c = port->x_char;
491 port->x_char = 0;
492 } else if (!uart_circ_empty(xmit) && !stopped) {
493 c = xmit->buf[xmit->tail];
494 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
495 } else {
496 break;
497 }
498
499 sci_out(port, SCxTDR, c);
500
501 port->icount.tx++;
502 } while (--count > 0);
503
504 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
505
506 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
507 uart_write_wakeup(port);
508 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100509 sci_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 ctrl = sci_in(port, SCSCR);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (port->type == PORT_SCIF) {
514 sci_in(port, SCxSR); /* Dummy read */
515 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 ctrl |= SCI_CTRL_FLAGS_TIE;
519 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521}
522
523/* On SH3, SCIF may read end-of-break as a space->mark char */
524#define STEPFN(c) ({int __c=(c); (((__c-1)|(__c)) == -1); })
525
David Howells7d12e782006-10-05 14:55:46 +0100526static inline void sci_receive_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Paul Mundte108b2c2006-09-27 16:32:13 +0900528 struct sci_port *sci_port = (struct sci_port *)port;
Takashi Iwaia88487c2008-07-16 21:54:42 +0100529 struct tty_struct *tty = port->info->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 int i, count, copied = 0;
531 unsigned short status;
Alan Cox33f0f882006-01-09 20:54:13 -0800532 unsigned char flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 status = sci_in(port, SCxSR);
535 if (!(status & SCxSR_RDxF(port)))
536 return;
537
538 while (1) {
Paul Mundte108b2c2006-09-27 16:32:13 +0900539 if (port->type == PORT_SCIF)
540 count = scif_rxroom(port);
541 else
Paul Mundte108b2c2006-09-27 16:32:13 +0900542 count = sci_rxroom(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* Don't copy more bytes than there is room for in the buffer */
Alan Cox33f0f882006-01-09 20:54:13 -0800545 count = tty_buffer_request_room(tty, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* If for any reason we can't copy more data, we're done! */
548 if (count == 0)
549 break;
550
551 if (port->type == PORT_SCI) {
552 char c = sci_in(port, SCxRDR);
David Howells7d12e782006-10-05 14:55:46 +0100553 if (uart_handle_sysrq_char(port, c) || sci_port->break_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 count = 0;
Paul Mundte108b2c2006-09-27 16:32:13 +0900555 else {
556 tty_insert_flip_char(tty, c, TTY_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 } else {
559 for (i=0; i<count; i++) {
560 char c = sci_in(port, SCxRDR);
561 status = sci_in(port, SCxSR);
562#if defined(CONFIG_CPU_SH3)
563 /* Skip "chars" during break */
Paul Mundte108b2c2006-09-27 16:32:13 +0900564 if (sci_port->break_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if ((c == 0) &&
566 (status & SCxSR_FER(port))) {
567 count--; i--;
568 continue;
569 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* Nonzero => end-of-break */
572 pr_debug("scif: debounce<%02x>\n", c);
Paul Mundte108b2c2006-09-27 16:32:13 +0900573 sci_port->break_flag = 0;
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (STEPFN(c)) {
576 count--; i--;
577 continue;
578 }
579 }
580#endif /* CONFIG_CPU_SH3 */
David Howells7d12e782006-10-05 14:55:46 +0100581 if (uart_handle_sysrq_char(port, c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 count--; i--;
583 continue;
584 }
585
586 /* Store data and status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (status&SCxSR_FER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800588 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 pr_debug("sci: frame error\n");
590 } else if (status&SCxSR_PER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800591 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 pr_debug("sci: parity error\n");
Alan Cox33f0f882006-01-09 20:54:13 -0800593 } else
594 flag = TTY_NORMAL;
595 tty_insert_flip_char(tty, c, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597 }
598
599 sci_in(port, SCxSR); /* dummy read */
600 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 copied += count;
603 port->icount.rx += count;
604 }
605
606 if (copied) {
607 /* Tell the rest of the system the news. New characters! */
608 tty_flip_buffer_push(tty);
609 } else {
610 sci_in(port, SCxSR); /* dummy read */
611 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
612 }
613}
614
615#define SCI_BREAK_JIFFIES (HZ/20)
616/* The sci generates interrupts during the break,
617 * 1 per millisecond or so during the break period, for 9600 baud.
618 * So dont bother disabling interrupts.
619 * But dont want more than 1 break event.
620 * Use a kernel timer to periodically poll the rx line until
621 * the break is finished.
622 */
623static void sci_schedule_break_timer(struct sci_port *port)
624{
625 port->break_timer.expires = jiffies + SCI_BREAK_JIFFIES;
626 add_timer(&port->break_timer);
627}
628/* Ensure that two consecutive samples find the break over. */
629static void sci_break_timer(unsigned long data)
630{
Paul Mundte108b2c2006-09-27 16:32:13 +0900631 struct sci_port *port = (struct sci_port *)data;
632
633 if (sci_rxd_in(&port->port) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 port->break_flag = 1;
Paul Mundte108b2c2006-09-27 16:32:13 +0900635 sci_schedule_break_timer(port);
636 } else if (port->break_flag == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* break is over. */
638 port->break_flag = 2;
Paul Mundte108b2c2006-09-27 16:32:13 +0900639 sci_schedule_break_timer(port);
640 } else
641 port->break_flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644static inline int sci_handle_errors(struct uart_port *port)
645{
646 int copied = 0;
647 unsigned short status = sci_in(port, SCxSR);
Takashi Iwaia88487c2008-07-16 21:54:42 +0100648 struct tty_struct *tty = port->info->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Paul Mundte108b2c2006-09-27 16:32:13 +0900650 if (status & SCxSR_ORER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* overrun error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900652 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN))
Alan Cox33f0f882006-01-09 20:54:13 -0800653 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 pr_debug("sci: overrun error\n");
655 }
656
Paul Mundte108b2c2006-09-27 16:32:13 +0900657 if (status & SCxSR_FER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (sci_rxd_in(port) == 0) {
659 /* Notify of BREAK */
Paul Mundte108b2c2006-09-27 16:32:13 +0900660 struct sci_port *sci_port = (struct sci_port *)port;
661
662 if (!sci_port->break_flag) {
663 sci_port->break_flag = 1;
664 sci_schedule_break_timer(sci_port);
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* Do sysrq handling. */
Paul Mundte108b2c2006-09-27 16:32:13 +0900667 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 pr_debug("sci: BREAK detected\n");
Paul Mundte108b2c2006-09-27 16:32:13 +0900670 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
Alan Cox33f0f882006-01-09 20:54:13 -0800671 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900673 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /* frame error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900675 if (tty_insert_flip_char(tty, 0, TTY_FRAME))
Alan Cox33f0f882006-01-09 20:54:13 -0800676 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 pr_debug("sci: frame error\n");
678 }
679 }
680
Paul Mundte108b2c2006-09-27 16:32:13 +0900681 if (status & SCxSR_PER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /* parity error */
Paul Mundte108b2c2006-09-27 16:32:13 +0900683 if (tty_insert_flip_char(tty, 0, TTY_PARITY))
684 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 pr_debug("sci: parity error\n");
686 }
687
Alan Cox33f0f882006-01-09 20:54:13 -0800688 if (copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 return copied;
692}
693
694static inline int sci_handle_breaks(struct uart_port *port)
695{
696 int copied = 0;
697 unsigned short status = sci_in(port, SCxSR);
Takashi Iwaia88487c2008-07-16 21:54:42 +0100698 struct tty_struct *tty = port->info->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 struct sci_port *s = &sci_ports[port->line];
700
Paul Mundt0b3d4ef2007-03-14 13:22:37 +0900701 if (uart_handle_break(port))
702 return 0;
703
Paul Mundtb7a76e42006-02-01 03:06:06 -0800704 if (!s->break_flag && status & SCxSR_BRK(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705#if defined(CONFIG_CPU_SH3)
706 /* Debounce break */
707 s->break_flag = 1;
708#endif
709 /* Notify of BREAK */
Paul Mundte108b2c2006-09-27 16:32:13 +0900710 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
Alan Cox33f0f882006-01-09 20:54:13 -0800711 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 pr_debug("sci: BREAK detected\n");
713 }
714
715#if defined(SCIF_ORER)
716 /* XXX: Handle SCIF overrun error */
717 if (port->type == PORT_SCIF && (sci_in(port, SCLSR) & SCIF_ORER) != 0) {
718 sci_out(port, SCLSR, 0);
Paul Mundte108b2c2006-09-27 16:32:13 +0900719 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 pr_debug("sci: overrun error\n");
722 }
723 }
724#endif
725
Alan Cox33f0f882006-01-09 20:54:13 -0800726 if (copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 tty_flip_buffer_push(tty);
Paul Mundte108b2c2006-09-27 16:32:13 +0900728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return copied;
730}
731
David Howells7d12e782006-10-05 14:55:46 +0100732static irqreturn_t sci_rx_interrupt(int irq, void *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 /* I think sci_receive_chars has to be called irrespective
735 * of whether the I_IXOFF is set, otherwise, how is the interrupt
736 * to be disabled?
737 */
David Howells7d12e782006-10-05 14:55:46 +0100738 sci_receive_chars(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 return IRQ_HANDLED;
741}
742
David Howells7d12e782006-10-05 14:55:46 +0100743static irqreturn_t sci_tx_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
745 struct uart_port *port = ptr;
746
Paul Mundte108b2c2006-09-27 16:32:13 +0900747 spin_lock_irq(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 sci_transmit_chars(port);
Paul Mundte108b2c2006-09-27 16:32:13 +0900749 spin_unlock_irq(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 return IRQ_HANDLED;
752}
753
David Howells7d12e782006-10-05 14:55:46 +0100754static irqreturn_t sci_er_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 struct uart_port *port = ptr;
757
758 /* Handle errors */
759 if (port->type == PORT_SCI) {
760 if (sci_handle_errors(port)) {
761 /* discard character in rx buffer */
762 sci_in(port, SCxSR);
763 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
764 }
765 } else {
766#if defined(SCIF_ORER)
767 if((sci_in(port, SCLSR) & SCIF_ORER) != 0) {
Takashi Iwaia88487c2008-07-16 21:54:42 +0100768 struct tty_struct *tty = port->info->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 sci_out(port, SCLSR, 0);
Alan Cox33f0f882006-01-09 20:54:13 -0800771 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
772 tty_flip_buffer_push(tty);
773 pr_debug("scif: overrun error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775#endif
David Howells7d12e782006-10-05 14:55:46 +0100776 sci_rx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
779 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
780
781 /* Kick the transmission */
David Howells7d12e782006-10-05 14:55:46 +0100782 sci_tx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 return IRQ_HANDLED;
785}
786
David Howells7d12e782006-10-05 14:55:46 +0100787static irqreturn_t sci_br_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
789 struct uart_port *port = ptr;
790
791 /* Handle BREAKs */
792 sci_handle_breaks(port);
793 sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
794
795 return IRQ_HANDLED;
796}
797
David Howells7d12e782006-10-05 14:55:46 +0100798static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 unsigned short ssr_status, scr_status;
801 struct uart_port *port = ptr;
802
803 ssr_status = sci_in(port,SCxSR);
804 scr_status = sci_in(port,SCSCR);
805
806 /* Tx Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900807 if ((ssr_status & 0x0020) && (scr_status & 0x0080))
David Howells7d12e782006-10-05 14:55:46 +0100808 sci_tx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /* Rx Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900810 if ((ssr_status & 0x0002) && (scr_status & 0x0040))
David Howells7d12e782006-10-05 14:55:46 +0100811 sci_rx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /* Error Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900813 if ((ssr_status & 0x0080) && (scr_status & 0x0400))
David Howells7d12e782006-10-05 14:55:46 +0100814 sci_er_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /* Break Interrupt */
Paul Mundte108b2c2006-09-27 16:32:13 +0900816 if ((ssr_status & 0x0010) && (scr_status & 0x0200))
David Howells7d12e782006-10-05 14:55:46 +0100817 sci_br_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 return IRQ_HANDLED;
820}
821
Paul Mundta2159b52008-10-02 19:09:13 +0900822#if defined(CONFIG_CPU_FREQ) && defined(CONFIG_HAVE_CLK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823/*
824 * Here we define a transistion notifier so that we can update all of our
825 * ports' baud rate when the peripheral clock changes.
826 */
Paul Mundte108b2c2006-09-27 16:32:13 +0900827static int sci_notifier(struct notifier_block *self,
828 unsigned long phase, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 struct cpufreq_freqs *freqs = p;
831 int i;
832
833 if ((phase == CPUFREQ_POSTCHANGE) ||
834 (phase == CPUFREQ_RESUMECHANGE)){
835 for (i = 0; i < SCI_NPORTS; i++) {
836 struct uart_port *port = &sci_ports[i].port;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800837 struct clk *clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 /*
840 * Update the uartclk per-port if frequency has
841 * changed, since it will no longer necessarily be
842 * consistent with the old frequency.
843 *
844 * Really we want to be able to do something like
845 * uart_change_speed() or something along those lines
846 * here to implicitly reset the per-port baud rate..
847 *
848 * Clean this up later..
849 */
Paul Mundt1d118562006-12-01 13:15:14 +0900850 clk = clk_get(NULL, "module_clk");
Paul Mundta2159b52008-10-02 19:09:13 +0900851 port->uartclk = clk_get_rate(clk);
Paul Mundtb7a76e42006-02-01 03:06:06 -0800852 clk_put(clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
Paul Mundte108b2c2006-09-27 16:32:13 +0900855 printk(KERN_INFO "%s: got a postchange notification "
856 "for cpu %d (old %d, new %d)\n",
Harvey Harrison71cc2c22008-04-30 00:55:10 -0700857 __func__, freqs->cpu, freqs->old, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859
860 return NOTIFY_OK;
861}
862
863static struct notifier_block sci_nb = { &sci_notifier, NULL, 0 };
Paul Mundta2159b52008-10-02 19:09:13 +0900864#endif /* CONFIG_CPU_FREQ && CONFIG_HAVE_CLK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866static int sci_request_irq(struct sci_port *port)
867{
868 int i;
David Howells7d12e782006-10-05 14:55:46 +0100869 irqreturn_t (*handlers[4])(int irq, void *ptr) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 sci_er_interrupt, sci_rx_interrupt, sci_tx_interrupt,
871 sci_br_interrupt,
872 };
873 const char *desc[] = { "SCI Receive Error", "SCI Receive Data Full",
874 "SCI Transmit Data Empty", "SCI Break" };
875
876 if (port->irqs[0] == port->irqs[1]) {
877 if (!port->irqs[0]) {
878 printk(KERN_ERR "sci: Cannot allocate irq.(IRQ=0)\n");
879 return -ENODEV;
880 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900881
882 if (request_irq(port->irqs[0], sci_mpxed_interrupt,
Paul Mundt35f3c512006-10-06 15:31:16 +0900883 IRQF_DISABLED, "sci", port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 printk(KERN_ERR "sci: Cannot allocate irq.\n");
885 return -ENODEV;
886 }
887 } else {
888 for (i = 0; i < ARRAY_SIZE(handlers); i++) {
889 if (!port->irqs[i])
890 continue;
Paul Mundte108b2c2006-09-27 16:32:13 +0900891 if (request_irq(port->irqs[i], handlers[i],
Paul Mundt35f3c512006-10-06 15:31:16 +0900892 IRQF_DISABLED, desc[i], port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 printk(KERN_ERR "sci: Cannot allocate irq.\n");
894 return -ENODEV;
895 }
896 }
897 }
898
899 return 0;
900}
901
902static void sci_free_irq(struct sci_port *port)
903{
904 int i;
905
906 if (port->irqs[0] == port->irqs[1]) {
907 if (!port->irqs[0])
908 printk("sci: sci_free_irq error\n");
909 else
910 free_irq(port->irqs[0], port);
911 } else {
912 for (i = 0; i < ARRAY_SIZE(port->irqs); i++) {
913 if (!port->irqs[i])
914 continue;
915
916 free_irq(port->irqs[i], port);
917 }
918 }
919}
920
921static unsigned int sci_tx_empty(struct uart_port *port)
922{
923 /* Can't detect */
924 return TIOCSER_TEMT;
925}
926
927static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
928{
929 /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */
930 /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */
931 /* If you have signals for DTR and DCD, please implement here. */
932}
933
934static unsigned int sci_get_mctrl(struct uart_port *port)
935{
936 /* This routine is used for geting signals of: DTR, DCD, DSR, RI,
937 and CTS/RTS */
938
939 return TIOCM_DTR | TIOCM_RTS | TIOCM_DSR;
940}
941
Russell Kingb129a8c2005-08-31 10:12:14 +0100942static void sci_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Paul Mundte108b2c2006-09-27 16:32:13 +0900944 unsigned short ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Paul Mundte108b2c2006-09-27 16:32:13 +0900946 /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */
947 ctrl = sci_in(port, SCSCR);
948 ctrl |= SCI_CTRL_FLAGS_TIE;
949 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Russell Kingb129a8c2005-08-31 10:12:14 +0100952static void sci_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 unsigned short ctrl;
955
956 /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 ctrl = sci_in(port, SCSCR);
958 ctrl &= ~SCI_CTRL_FLAGS_TIE;
959 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
962static void sci_start_rx(struct uart_port *port, unsigned int tty_start)
963{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 unsigned short ctrl;
965
966 /* Set RIE (Receive Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 ctrl = sci_in(port, SCSCR);
968 ctrl |= SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE;
969 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
972static void sci_stop_rx(struct uart_port *port)
973{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 unsigned short ctrl;
975
976 /* Clear RIE (Receive Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 ctrl = sci_in(port, SCSCR);
978 ctrl &= ~(SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE);
979 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
982static void sci_enable_ms(struct uart_port *port)
983{
984 /* Nothing here yet .. */
985}
986
987static void sci_break_ctl(struct uart_port *port, int break_state)
988{
989 /* Nothing here yet .. */
990}
991
992static int sci_startup(struct uart_port *port)
993{
994 struct sci_port *s = &sci_ports[port->line];
995
Paul Mundte108b2c2006-09-27 16:32:13 +0900996 if (s->enable)
997 s->enable(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Paul Mundta2159b52008-10-02 19:09:13 +0900999#ifdef CONFIG_HAVE_CLK
dmitry pervushin1534a3b2007-04-24 13:41:12 +09001000 s->clk = clk_get(NULL, "module_clk");
Paul Mundt005a3362007-04-26 11:45:32 +09001001#endif
dmitry pervushin1534a3b2007-04-24 13:41:12 +09001002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 sci_request_irq(s);
Yoshinori Satod6569012005-10-14 15:59:12 -07001004 sci_start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 sci_start_rx(port, 1);
1006
1007 return 0;
1008}
1009
1010static void sci_shutdown(struct uart_port *port)
1011{
1012 struct sci_port *s = &sci_ports[port->line];
1013
1014 sci_stop_rx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +01001015 sci_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 sci_free_irq(s);
1017
Paul Mundte108b2c2006-09-27 16:32:13 +09001018 if (s->disable)
1019 s->disable(port);
dmitry pervushin1534a3b2007-04-24 13:41:12 +09001020
Paul Mundta2159b52008-10-02 19:09:13 +09001021#ifdef CONFIG_HAVE_CLK
dmitry pervushin1534a3b2007-04-24 13:41:12 +09001022 clk_put(s->clk);
1023 s->clk = NULL;
Paul Mundt005a3362007-04-26 11:45:32 +09001024#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
Alan Cox606d0992006-12-08 02:38:45 -08001027static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
1028 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 struct sci_port *s = &sci_ports[port->line];
1031 unsigned int status, baud, smr_val;
Paul Mundta2159b52008-10-02 19:09:13 +09001032 int t = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
Paul Mundta2159b52008-10-02 19:09:13 +09001035 if (likely(baud))
1036 t = SCBRR_VALUE(baud, port->uartclk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Paul Mundte108b2c2006-09-27 16:32:13 +09001038 do {
1039 status = sci_in(port, SCxSR);
1040 } while (!(status & SCxSR_TEND(port)));
1041
1042 sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */
1043
Paul Mundte108b2c2006-09-27 16:32:13 +09001044 if (port->type == PORT_SCIF)
1045 sci_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST);
Paul Mundte108b2c2006-09-27 16:32:13 +09001046
1047 smr_val = sci_in(port, SCSMR) & 3;
1048 if ((termios->c_cflag & CSIZE) == CS7)
1049 smr_val |= 0x40;
1050 if (termios->c_cflag & PARENB)
1051 smr_val |= 0x20;
1052 if (termios->c_cflag & PARODD)
1053 smr_val |= 0x30;
1054 if (termios->c_cflag & CSTOPB)
1055 smr_val |= 0x08;
1056
1057 uart_update_timeout(port, termios->c_cflag, baud);
1058
1059 sci_out(port, SCSMR, smr_val);
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (t > 0) {
1062 if(t >= 256) {
1063 sci_out(port, SCSMR, (sci_in(port, SCSMR) & ~3) | 1);
1064 t >>= 2;
1065 } else {
1066 sci_out(port, SCSMR, sci_in(port, SCSMR) & ~3);
1067 }
1068 sci_out(port, SCBRR, t);
1069 udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */
1070 }
1071
Paul Mundtb7a76e42006-02-01 03:06:06 -08001072 if (likely(s->init_pins))
1073 s->init_pins(port, termios->c_cflag);
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 sci_out(port, SCSCR, SCSCR_INIT(port));
1076
1077 if ((termios->c_cflag & CREAD) != 0)
1078 sci_start_rx(port,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
1081static const char *sci_type(struct uart_port *port)
1082{
1083 switch (port->type) {
1084 case PORT_SCI: return "sci";
1085 case PORT_SCIF: return "scif";
1086 case PORT_IRDA: return "irda";
1087 }
1088
Paul Mundtfa439722008-09-04 18:53:58 +09001089 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
1092static void sci_release_port(struct uart_port *port)
1093{
1094 /* Nothing here yet .. */
1095}
1096
1097static int sci_request_port(struct uart_port *port)
1098{
1099 /* Nothing here yet .. */
1100 return 0;
1101}
1102
1103static void sci_config_port(struct uart_port *port, int flags)
1104{
1105 struct sci_port *s = &sci_ports[port->line];
1106
1107 port->type = s->type;
1108
Paul Mundte108b2c2006-09-27 16:32:13 +09001109 switch (port->type) {
1110 case PORT_SCI:
1111 s->init_pins = sci_init_pins_sci;
1112 break;
1113 case PORT_SCIF:
1114 s->init_pins = sci_init_pins_scif;
1115 break;
1116 case PORT_IRDA:
1117 s->init_pins = sci_init_pins_irda;
1118 break;
1119 }
1120
Paul Mundt7ff731a2008-10-01 15:46:58 +09001121 if (port->flags & UPF_IOREMAP && !port->membase) {
1122#if defined(CONFIG_SUPERH64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 port->mapbase = onchip_remap(SCIF_ADDR_SH5, 1024, "SCIF");
Paul Mundt7ff731a2008-10-01 15:46:58 +09001124 port->membase = (void __iomem *)port->mapbase;
1125#else
1126 port->membase = ioremap_nocache(port->mapbase, 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127#endif
Paul Mundt7ff731a2008-10-01 15:46:58 +09001128
1129 printk(KERN_ERR "sci: can't remap port#%d\n", port->line);
1130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
1134{
1135 struct sci_port *s = &sci_ports[port->line];
1136
1137 if (ser->irq != s->irqs[SCIx_TXI_IRQ] || ser->irq > NR_IRQS)
1138 return -EINVAL;
1139 if (ser->baud_base < 2400)
1140 /* No paper tape reader for Mitch.. */
1141 return -EINVAL;
1142
1143 return 0;
1144}
1145
1146static struct uart_ops sci_uart_ops = {
1147 .tx_empty = sci_tx_empty,
1148 .set_mctrl = sci_set_mctrl,
1149 .get_mctrl = sci_get_mctrl,
1150 .start_tx = sci_start_tx,
1151 .stop_tx = sci_stop_tx,
1152 .stop_rx = sci_stop_rx,
1153 .enable_ms = sci_enable_ms,
1154 .break_ctl = sci_break_ctl,
1155 .startup = sci_startup,
1156 .shutdown = sci_shutdown,
1157 .set_termios = sci_set_termios,
1158 .type = sci_type,
1159 .release_port = sci_release_port,
1160 .request_port = sci_request_port,
1161 .config_port = sci_config_port,
1162 .verify_port = sci_verify_port,
1163};
1164
Paul Mundte108b2c2006-09-27 16:32:13 +09001165static void __init sci_init_ports(void)
1166{
1167 static int first = 1;
1168 int i;
1169
1170 if (!first)
1171 return;
1172
1173 first = 0;
1174
1175 for (i = 0; i < SCI_NPORTS; i++) {
1176 sci_ports[i].port.ops = &sci_uart_ops;
1177 sci_ports[i].port.iotype = UPIO_MEM;
1178 sci_ports[i].port.line = i;
1179 sci_ports[i].port.fifosize = 1;
1180
1181#if defined(__H8300H__) || defined(__H8300S__)
1182#ifdef __H8300S__
1183 sci_ports[i].enable = h8300_sci_enable;
1184 sci_ports[i].disable = h8300_sci_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185#endif
Paul Mundte108b2c2006-09-27 16:32:13 +09001186 sci_ports[i].port.uartclk = CONFIG_CPU_CLOCK;
Paul Mundta2159b52008-10-02 19:09:13 +09001187#elif defined(CONFIG_HAVE_CLK)
Paul Mundte108b2c2006-09-27 16:32:13 +09001188 /*
1189 * XXX: We should use a proper SCI/SCIF clock
1190 */
1191 {
Paul Mundt1d118562006-12-01 13:15:14 +09001192 struct clk *clk = clk_get(NULL, "module_clk");
Paul Mundta2159b52008-10-02 19:09:13 +09001193 sci_ports[i].port.uartclk = clk_get_rate(clk);
Paul Mundte108b2c2006-09-27 16:32:13 +09001194 clk_put(clk);
1195 }
Paul Mundta2159b52008-10-02 19:09:13 +09001196#else
1197#error "Need a valid uartclk"
Paul Mundte108b2c2006-09-27 16:32:13 +09001198#endif
1199
1200 sci_ports[i].break_timer.data = (unsigned long)&sci_ports[i];
1201 sci_ports[i].break_timer.function = sci_break_timer;
1202
1203 init_timer(&sci_ports[i].break_timer);
1204 }
1205}
1206
1207int __init early_sci_setup(struct uart_port *port)
1208{
1209 if (unlikely(port->line > SCI_NPORTS))
1210 return -ENODEV;
1211
1212 sci_init_ports();
1213
1214 sci_ports[port->line].port.membase = port->membase;
1215 sci_ports[port->line].port.mapbase = port->mapbase;
1216 sci_ports[port->line].port.type = port->type;
1217
1218 return 0;
1219}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
1222/*
1223 * Print a string to the serial port trying not to disturb
1224 * any possible real use of the port...
1225 */
1226static void serial_console_write(struct console *co, const char *s,
1227 unsigned count)
1228{
1229 put_string(serial_console_port, s, count);
1230}
1231
1232static int __init serial_console_setup(struct console *co, char *options)
1233{
1234 struct uart_port *port;
1235 int baud = 115200;
1236 int bits = 8;
1237 int parity = 'n';
1238 int flow = 'n';
1239 int ret;
1240
Paul Mundte108b2c2006-09-27 16:32:13 +09001241 /*
1242 * Check whether an invalid uart number has been specified, and
1243 * if so, search for the first available port that does have
1244 * console support.
1245 */
1246 if (co->index >= SCI_NPORTS)
1247 co->index = 0;
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 serial_console_port = &sci_ports[co->index];
1250 port = &serial_console_port->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 /*
Paul Mundte108b2c2006-09-27 16:32:13 +09001253 * Also need to check port->type, we don't actually have any
1254 * UPIO_PORT ports, but uart_report_port() handily misreports
1255 * it anyways if we don't have a port available by the time this is
1256 * called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 */
Paul Mundte108b2c2006-09-27 16:32:13 +09001258 if (!port->type)
1259 return -ENODEV;
1260 if (!port->membase || !port->mapbase)
1261 return -ENODEV;
Paul Mundtb7a76e42006-02-01 03:06:06 -08001262
Paul Mundte108b2c2006-09-27 16:32:13 +09001263 port->type = serial_console_port->type;
1264
Paul Mundta2159b52008-10-02 19:09:13 +09001265#ifdef CONFIG_HAVE_CLK
Paul Mundt005a3362007-04-26 11:45:32 +09001266 if (!serial_console_port->clk)
1267 serial_console_port->clk = clk_get(NULL, "module_clk");
1268#endif
1269
Paul Mundte108b2c2006-09-27 16:32:13 +09001270 if (port->flags & UPF_IOREMAP)
1271 sci_config_port(port, 0);
1272
1273 if (serial_console_port->enable)
1274 serial_console_port->enable(port);
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (options)
1277 uart_parse_options(options, &baud, &parity, &bits, &flow);
1278
1279 ret = uart_set_options(port, co, baud, parity, bits, flow);
1280#if defined(__H8300H__) || defined(__H8300S__)
1281 /* disable rx interrupt */
1282 if (ret == 0)
1283 sci_stop_rx(port);
1284#endif
1285 return ret;
1286}
1287
1288static struct console serial_console = {
1289 .name = "ttySC",
1290 .device = uart_console_device,
1291 .write = serial_console_write,
1292 .setup = serial_console_setup,
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001293 .flags = CON_PRINTBUFFER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 .index = -1,
1295 .data = &sci_uart_driver,
1296};
1297
1298static int __init sci_console_init(void)
1299{
Paul Mundte108b2c2006-09-27 16:32:13 +09001300 sci_init_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 register_console(&serial_console);
1302 return 0;
1303}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304console_initcall(sci_console_init);
1305#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
1306
Paul Mundt68362e02007-09-11 15:27:29 +09001307#ifdef CONFIG_SH_KGDB_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308/*
1309 * FIXME: Most of this can go away.. at the moment, we rely on
1310 * arch/sh/kernel/setup.c to do the command line parsing for kgdb, though
1311 * most of that can easily be done here instead.
1312 *
1313 * For the time being, just accept the values that were parsed earlier..
1314 */
1315static void __init kgdb_console_get_options(struct uart_port *port, int *baud,
1316 int *parity, int *bits)
1317{
1318 *baud = kgdb_baud;
1319 *parity = tolower(kgdb_parity);
1320 *bits = kgdb_bits - '0';
1321}
1322
1323/*
1324 * The naming here is somewhat misleading, since kgdb_console_setup() takes
1325 * care of the early-on initialization for kgdb, regardless of whether we
1326 * actually use kgdb as a console or not.
1327 *
1328 * On the plus side, this lets us kill off the old kgdb_sci_setup() nonsense.
1329 */
1330int __init kgdb_console_setup(struct console *co, char *options)
1331{
1332 struct uart_port *port = &sci_ports[kgdb_portnum].port;
1333 int baud = 38400;
1334 int bits = 8;
1335 int parity = 'n';
1336 int flow = 'n';
1337
Paul Mundtb7a76e42006-02-01 03:06:06 -08001338 if (co->index != kgdb_portnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 co->index = kgdb_portnum;
1340
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001341 kgdb_sci_port = &sci_ports[co->index];
1342 port = &kgdb_sci_port->port;
1343
1344 /*
1345 * Also need to check port->type, we don't actually have any
1346 * UPIO_PORT ports, but uart_report_port() handily misreports
1347 * it anyways if we don't have a port available by the time this is
1348 * called.
1349 */
1350 if (!port->type)
1351 return -ENODEV;
1352 if (!port->membase || !port->mapbase)
1353 return -ENODEV;
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (options)
1356 uart_parse_options(options, &baud, &parity, &bits, &flow);
1357 else
1358 kgdb_console_get_options(port, &baud, &parity, &bits);
1359
1360 kgdb_getchar = kgdb_sci_getchar;
1361 kgdb_putchar = kgdb_sci_putchar;
1362
1363 return uart_set_options(port, co, baud, parity, bits, flow);
1364}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366static struct console kgdb_console = {
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001367 .name = "ttySC",
1368 .device = uart_console_device,
1369 .write = kgdb_console_write,
1370 .setup = kgdb_console_setup,
1371 .flags = CON_PRINTBUFFER,
1372 .index = -1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 .data = &sci_uart_driver,
1374};
1375
1376/* Register the KGDB console so we get messages (d'oh!) */
1377static int __init kgdb_console_init(void)
1378{
Paul Mundte108b2c2006-09-27 16:32:13 +09001379 sci_init_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 register_console(&kgdb_console);
1381 return 0;
1382}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383console_initcall(kgdb_console_init);
1384#endif /* CONFIG_SH_KGDB_CONSOLE */
1385
1386#if defined(CONFIG_SH_KGDB_CONSOLE)
1387#define SCI_CONSOLE &kgdb_console
1388#elif defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
1389#define SCI_CONSOLE &serial_console
1390#else
Paul Mundtb7a76e42006-02-01 03:06:06 -08001391#define SCI_CONSOLE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392#endif
1393
1394static char banner[] __initdata =
1395 KERN_INFO "SuperH SCI(F) driver initialized\n";
1396
1397static struct uart_driver sci_uart_driver = {
1398 .owner = THIS_MODULE,
1399 .driver_name = "sci",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 .dev_name = "ttySC",
1401 .major = SCI_MAJOR,
1402 .minor = SCI_MINOR_START,
Paul Mundte108b2c2006-09-27 16:32:13 +09001403 .nr = SCI_NPORTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 .cons = SCI_CONSOLE,
1405};
1406
Paul Mundte108b2c2006-09-27 16:32:13 +09001407/*
1408 * Register a set of serial devices attached to a platform device. The
1409 * list is terminated with a zero flags entry, which means we expect
1410 * all entries to have at least UPF_BOOT_AUTOCONF set. Platforms that need
1411 * remapping (such as sh64) should also set UPF_IOREMAP.
1412 */
1413static int __devinit sci_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Paul Mundte108b2c2006-09-27 16:32:13 +09001415 struct plat_sci_port *p = dev->dev.platform_data;
Paul Mundt7ff731a2008-10-01 15:46:58 +09001416 int i, ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Paul Mundt32351a22007-03-12 14:38:59 +09001418 for (i = 0; p && p->flags != 0; p++, i++) {
Paul Mundte108b2c2006-09-27 16:32:13 +09001419 struct sci_port *sciport = &sci_ports[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Paul Mundt32351a22007-03-12 14:38:59 +09001421 /* Sanity check */
1422 if (unlikely(i == SCI_NPORTS)) {
1423 dev_notice(&dev->dev, "Attempting to register port "
1424 "%d when only %d are available.\n",
1425 i+1, SCI_NPORTS);
1426 dev_notice(&dev->dev, "Consider bumping "
1427 "CONFIG_SERIAL_SH_SCI_NR_UARTS!\n");
1428 break;
1429 }
1430
Paul Mundte108b2c2006-09-27 16:32:13 +09001431 sciport->port.mapbase = p->mapbase;
Paul Mundtb7a76e42006-02-01 03:06:06 -08001432
Paul Mundt7ff731a2008-10-01 15:46:58 +09001433 if (p->mapbase && !p->membase) {
1434 if (p->flags & UPF_IOREMAP) {
1435 p->membase = ioremap_nocache(p->mapbase, 0x40);
1436 if (IS_ERR(p->membase)) {
1437 ret = PTR_ERR(p->membase);
1438 goto err_unreg;
1439 }
1440 } else {
1441 /*
1442 * For the simple (and majority of) cases
1443 * where we don't need to do any remapping,
1444 * just cast the cookie directly.
1445 */
1446 p->membase = (void __iomem *)p->mapbase;
1447 }
1448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Paul Mundte108b2c2006-09-27 16:32:13 +09001450 sciport->port.membase = p->membase;
1451
1452 sciport->port.irq = p->irqs[SCIx_TXI_IRQ];
1453 sciport->port.flags = p->flags;
1454 sciport->port.dev = &dev->dev;
1455
1456 sciport->type = sciport->port.type = p->type;
1457
1458 memcpy(&sciport->irqs, &p->irqs, sizeof(p->irqs));
1459
1460 uart_add_one_port(&sci_uart_driver, &sciport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462
Paul Mundtfa5da2f2007-03-08 17:27:37 +09001463#if defined(CONFIG_SH_KGDB) && !defined(CONFIG_SH_KGDB_CONSOLE)
1464 kgdb_sci_port = &sci_ports[kgdb_portnum];
1465 kgdb_getchar = kgdb_sci_getchar;
1466 kgdb_putchar = kgdb_sci_putchar;
1467#endif
1468
Paul Mundta2159b52008-10-02 19:09:13 +09001469#if defined(CONFIG_CPU_FREQ) && defined(CONFIG_HAVE_CLK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 cpufreq_register_notifier(&sci_nb, CPUFREQ_TRANSITION_NOTIFIER);
Paul Mundte289fd92007-08-08 18:09:13 +09001471 dev_info(&dev->dev, "CPU frequency notifier registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472#endif
1473
1474#ifdef CONFIG_SH_STANDARD_BIOS
1475 sh_bios_gdb_detach();
1476#endif
1477
Paul Mundte108b2c2006-09-27 16:32:13 +09001478 return 0;
Paul Mundt7ff731a2008-10-01 15:46:58 +09001479
1480err_unreg:
1481 for (i = i - 1; i >= 0; i--)
1482 uart_remove_one_port(&sci_uart_driver, &sci_ports[i].port);
1483
1484 return ret;
Paul Mundte108b2c2006-09-27 16:32:13 +09001485}
1486
1487static int __devexit sci_remove(struct platform_device *dev)
1488{
1489 int i;
1490
1491 for (i = 0; i < SCI_NPORTS; i++)
1492 uart_remove_one_port(&sci_uart_driver, &sci_ports[i].port);
1493
1494 return 0;
1495}
1496
1497static int sci_suspend(struct platform_device *dev, pm_message_t state)
1498{
1499 int i;
1500
1501 for (i = 0; i < SCI_NPORTS; i++) {
1502 struct sci_port *p = &sci_ports[i];
1503
1504 if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev)
1505 uart_suspend_port(&sci_uart_driver, &p->port);
1506 }
1507
1508 return 0;
1509}
1510
1511static int sci_resume(struct platform_device *dev)
1512{
1513 int i;
1514
1515 for (i = 0; i < SCI_NPORTS; i++) {
1516 struct sci_port *p = &sci_ports[i];
1517
1518 if (p->type != PORT_UNKNOWN && p->port.dev == &dev->dev)
1519 uart_resume_port(&sci_uart_driver, &p->port);
1520 }
1521
1522 return 0;
1523}
1524
1525static struct platform_driver sci_driver = {
1526 .probe = sci_probe,
1527 .remove = __devexit_p(sci_remove),
1528 .suspend = sci_suspend,
1529 .resume = sci_resume,
1530 .driver = {
1531 .name = "sh-sci",
1532 .owner = THIS_MODULE,
1533 },
1534};
1535
1536static int __init sci_init(void)
1537{
1538 int ret;
1539
1540 printk(banner);
1541
1542 sci_init_ports();
1543
1544 ret = uart_register_driver(&sci_uart_driver);
1545 if (likely(ret == 0)) {
1546 ret = platform_driver_register(&sci_driver);
1547 if (unlikely(ret))
1548 uart_unregister_driver(&sci_uart_driver);
1549 }
1550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return ret;
1552}
1553
1554static void __exit sci_exit(void)
1555{
Paul Mundte108b2c2006-09-27 16:32:13 +09001556 platform_driver_unregister(&sci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 uart_unregister_driver(&sci_uart_driver);
1558}
1559
1560module_init(sci_init);
1561module_exit(sci_exit);
1562
Paul Mundte108b2c2006-09-27 16:32:13 +09001563MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001564MODULE_ALIAS("platform:sh-sci");