blob: cd1379235f13da0acbadb0167d71652436e84342 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * SuperH on-chip serial module support. (SCI with no FIFO / with FIFO)
3 *
Paul Mundtf43dc232011-01-13 15:06:28 +09004 * Copyright (C) 2002 - 2011 Paul Mundt
Markus Brunner3ea6bc32007-08-20 08:59:33 +09005 * Modified to support SH7720 SCIF. Markus Brunner, Mark Jonas (Jul 2007).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * based off of the old drivers/char/sh-sci.c by:
8 *
9 * Copyright (C) 1999, 2000 Niibe Yutaka
10 * Copyright (C) 2000 Sugioka Toshinobu
11 * Modified to support multiple serial ports. Stuart Menefy (May 2000).
12 * Modified to support SecureEdge. David McCullough (2002)
13 * Modified to support SH7300 SCIF. Takashi Kusuda (Jun 2003).
Magnus Dammd89ddd12007-07-25 11:42:56 +090014 * Removed SH7300 support (Jul 2007).
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
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>
Paul Mundt96de1a82008-02-26 14:52:45 +090042#include <linux/serial_sci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/notifier.h>
Magnus Damm5e50d2d2011-04-19 10:38:25 +000044#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/cpufreq.h>
Paul Mundt85f094e2008-04-25 16:04:20 +090046#include <linux/clk.h>
Paul Mundtfa5da2f2007-03-08 17:27:37 +090047#include <linux/ctype.h>
Paul Mundt7ff731a2008-10-01 15:46:58 +090048#include <linux/err.h>
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090049#include <linux/dmaengine.h>
Magnus Damm5beabc72011-08-02 09:42:54 +000050#include <linux/dma-mapping.h>
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090051#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Paul Mundt85f094e2008-04-25 16:04:20 +090053
54#ifdef CONFIG_SUPERH
Paul Mundte108b2c2006-09-27 16:32:13 +090055#include <asm/sh_bios.h>
Paul Mundtb7a76e42006-02-01 03:06:06 -080056#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include "sh-sci.h"
59
Paul Mundte108b2c2006-09-27 16:32:13 +090060struct sci_port {
61 struct uart_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Paul Mundtce6738b2011-01-19 15:24:40 +090063 /* Platform configuration */
64 struct plat_sci_port *cfg;
Paul Mundte108b2c2006-09-27 16:32:13 +090065
Paul Mundte108b2c2006-09-27 16:32:13 +090066 /* Break timer */
67 struct timer_list break_timer;
68 int break_flag;
dmitry pervushin1534a3b2007-04-24 13:41:12 +090069
Magnus Damm501b8252009-01-21 15:14:30 +000070 /* Interface clock */
71 struct clk *iclk;
Paul Mundtc7ed1ab2010-03-10 18:35:14 +090072 /* Function clock */
73 struct clk *fclk;
Paul Mundtedad1f22009-11-25 16:23:35 +090074
Paul Mundt9174fc82011-06-28 15:25:36 +090075 char *irqstr[SCIx_NR_IRQS];
76
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090077 struct dma_chan *chan_tx;
78 struct dma_chan *chan_rx;
Paul Mundtf43dc232011-01-13 15:06:28 +090079
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090080#ifdef CONFIG_SERIAL_SH_SCI_DMA
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090081 struct dma_async_tx_descriptor *desc_tx;
82 struct dma_async_tx_descriptor *desc_rx[2];
83 dma_cookie_t cookie_tx;
84 dma_cookie_t cookie_rx[2];
85 dma_cookie_t active_rx;
86 struct scatterlist sg_tx;
87 unsigned int sg_len_tx;
88 struct scatterlist sg_rx[2];
89 size_t buf_len_rx;
90 struct sh_dmae_slave param_tx;
91 struct sh_dmae_slave param_rx;
92 struct work_struct work_tx;
93 struct work_struct work_rx;
94 struct timer_list rx_timer;
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +000095 unsigned int rx_timeout;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090096#endif
Magnus Damme552de22009-01-21 15:13:42 +000097
Paul Mundtd535a232011-01-19 17:19:35 +090098 struct notifier_block freq_transition;
Magnus Damm1ba76222011-08-03 03:47:36 +000099
100#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
101 unsigned short saved_smr;
102 unsigned short saved_fcr;
103 unsigned char saved_brr;
104#endif
Paul Mundte108b2c2006-09-27 16:32:13 +0900105};
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* Function prototypes */
Paul Mundtd535a232011-01-19 17:19:35 +0900108static void sci_start_tx(struct uart_port *port);
Russell Kingb129a8c2005-08-31 10:12:14 +0100109static void sci_stop_tx(struct uart_port *port);
Paul Mundtd535a232011-01-19 17:19:35 +0900110static void sci_start_rx(struct uart_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Paul Mundte108b2c2006-09-27 16:32:13 +0900112#define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
113
114static struct sci_port sci_ports[SCI_NPORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static struct uart_driver sci_uart_driver;
116
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900117static inline struct sci_port *
118to_sci_port(struct uart_port *uart)
119{
120 return container_of(uart, struct sci_port, port);
121}
122
Paul Mundt61a69762011-06-14 12:40:19 +0900123struct plat_sci_reg {
124 u8 offset, size;
125};
126
127/* Helper for invalidating specific entries of an inherited map. */
128#define sci_reg_invalid { .offset = 0, .size = 0 }
129
130static struct plat_sci_reg sci_regmap[SCIx_NR_REGTYPES][SCIx_NR_REGS] = {
131 [SCIx_PROBE_REGTYPE] = {
132 [0 ... SCIx_NR_REGS - 1] = sci_reg_invalid,
133 },
134
135 /*
136 * Common SCI definitions, dependent on the port's regshift
137 * value.
138 */
139 [SCIx_SCI_REGTYPE] = {
140 [SCSMR] = { 0x00, 8 },
141 [SCBRR] = { 0x01, 8 },
142 [SCSCR] = { 0x02, 8 },
143 [SCxTDR] = { 0x03, 8 },
144 [SCxSR] = { 0x04, 8 },
145 [SCxRDR] = { 0x05, 8 },
146 [SCFCR] = sci_reg_invalid,
147 [SCFDR] = sci_reg_invalid,
148 [SCTFDR] = sci_reg_invalid,
149 [SCRFDR] = sci_reg_invalid,
150 [SCSPTR] = sci_reg_invalid,
151 [SCLSR] = sci_reg_invalid,
152 },
153
154 /*
155 * Common definitions for legacy IrDA ports, dependent on
156 * regshift value.
157 */
158 [SCIx_IRDA_REGTYPE] = {
159 [SCSMR] = { 0x00, 8 },
160 [SCBRR] = { 0x01, 8 },
161 [SCSCR] = { 0x02, 8 },
162 [SCxTDR] = { 0x03, 8 },
163 [SCxSR] = { 0x04, 8 },
164 [SCxRDR] = { 0x05, 8 },
165 [SCFCR] = { 0x06, 8 },
166 [SCFDR] = { 0x07, 16 },
167 [SCTFDR] = sci_reg_invalid,
168 [SCRFDR] = sci_reg_invalid,
169 [SCSPTR] = sci_reg_invalid,
170 [SCLSR] = sci_reg_invalid,
171 },
172
173 /*
174 * Common SCIFA definitions.
175 */
176 [SCIx_SCIFA_REGTYPE] = {
177 [SCSMR] = { 0x00, 16 },
178 [SCBRR] = { 0x04, 8 },
179 [SCSCR] = { 0x08, 16 },
180 [SCxTDR] = { 0x20, 8 },
181 [SCxSR] = { 0x14, 16 },
182 [SCxRDR] = { 0x24, 8 },
183 [SCFCR] = { 0x18, 16 },
184 [SCFDR] = { 0x1c, 16 },
185 [SCTFDR] = sci_reg_invalid,
186 [SCRFDR] = sci_reg_invalid,
187 [SCSPTR] = sci_reg_invalid,
188 [SCLSR] = sci_reg_invalid,
189 },
190
191 /*
192 * Common SCIFB definitions.
193 */
194 [SCIx_SCIFB_REGTYPE] = {
195 [SCSMR] = { 0x00, 16 },
196 [SCBRR] = { 0x04, 8 },
197 [SCSCR] = { 0x08, 16 },
198 [SCxTDR] = { 0x40, 8 },
199 [SCxSR] = { 0x14, 16 },
200 [SCxRDR] = { 0x60, 8 },
201 [SCFCR] = { 0x18, 16 },
202 [SCFDR] = { 0x1c, 16 },
203 [SCTFDR] = sci_reg_invalid,
204 [SCRFDR] = sci_reg_invalid,
205 [SCSPTR] = sci_reg_invalid,
206 [SCLSR] = sci_reg_invalid,
207 },
208
209 /*
Phil Edworthy3af1f8a2011-10-03 15:16:47 +0100210 * Common SH-2(A) SCIF definitions for ports with FIFO data
211 * count registers.
212 */
213 [SCIx_SH2_SCIF_FIFODATA_REGTYPE] = {
214 [SCSMR] = { 0x00, 16 },
215 [SCBRR] = { 0x04, 8 },
216 [SCSCR] = { 0x08, 16 },
217 [SCxTDR] = { 0x0c, 8 },
218 [SCxSR] = { 0x10, 16 },
219 [SCxRDR] = { 0x14, 8 },
220 [SCFCR] = { 0x18, 16 },
221 [SCFDR] = { 0x1c, 16 },
222 [SCTFDR] = sci_reg_invalid,
223 [SCRFDR] = sci_reg_invalid,
224 [SCSPTR] = { 0x20, 16 },
225 [SCLSR] = { 0x24, 16 },
226 },
227
228 /*
Paul Mundt61a69762011-06-14 12:40:19 +0900229 * Common SH-3 SCIF definitions.
230 */
231 [SCIx_SH3_SCIF_REGTYPE] = {
232 [SCSMR] = { 0x00, 8 },
233 [SCBRR] = { 0x02, 8 },
234 [SCSCR] = { 0x04, 8 },
235 [SCxTDR] = { 0x06, 8 },
236 [SCxSR] = { 0x08, 16 },
237 [SCxRDR] = { 0x0a, 8 },
238 [SCFCR] = { 0x0c, 8 },
239 [SCFDR] = { 0x0e, 16 },
240 [SCTFDR] = sci_reg_invalid,
241 [SCRFDR] = sci_reg_invalid,
242 [SCSPTR] = sci_reg_invalid,
243 [SCLSR] = sci_reg_invalid,
244 },
245
246 /*
247 * Common SH-4(A) SCIF(B) definitions.
248 */
249 [SCIx_SH4_SCIF_REGTYPE] = {
250 [SCSMR] = { 0x00, 16 },
251 [SCBRR] = { 0x04, 8 },
252 [SCSCR] = { 0x08, 16 },
253 [SCxTDR] = { 0x0c, 8 },
254 [SCxSR] = { 0x10, 16 },
255 [SCxRDR] = { 0x14, 8 },
256 [SCFCR] = { 0x18, 16 },
257 [SCFDR] = { 0x1c, 16 },
258 [SCTFDR] = sci_reg_invalid,
259 [SCRFDR] = sci_reg_invalid,
260 [SCSPTR] = { 0x20, 16 },
261 [SCLSR] = { 0x24, 16 },
262 },
263
264 /*
265 * Common SH-4(A) SCIF(B) definitions for ports without an SCSPTR
266 * register.
267 */
268 [SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE] = {
269 [SCSMR] = { 0x00, 16 },
270 [SCBRR] = { 0x04, 8 },
271 [SCSCR] = { 0x08, 16 },
272 [SCxTDR] = { 0x0c, 8 },
273 [SCxSR] = { 0x10, 16 },
274 [SCxRDR] = { 0x14, 8 },
275 [SCFCR] = { 0x18, 16 },
276 [SCFDR] = { 0x1c, 16 },
277 [SCTFDR] = sci_reg_invalid,
278 [SCRFDR] = sci_reg_invalid,
279 [SCSPTR] = sci_reg_invalid,
280 [SCLSR] = { 0x24, 16 },
281 },
282
283 /*
284 * Common SH-4(A) SCIF(B) definitions for ports with FIFO data
285 * count registers.
286 */
287 [SCIx_SH4_SCIF_FIFODATA_REGTYPE] = {
288 [SCSMR] = { 0x00, 16 },
289 [SCBRR] = { 0x04, 8 },
290 [SCSCR] = { 0x08, 16 },
291 [SCxTDR] = { 0x0c, 8 },
292 [SCxSR] = { 0x10, 16 },
293 [SCxRDR] = { 0x14, 8 },
294 [SCFCR] = { 0x18, 16 },
295 [SCFDR] = { 0x1c, 16 },
296 [SCTFDR] = { 0x1c, 16 }, /* aliased to SCFDR */
297 [SCRFDR] = { 0x20, 16 },
298 [SCSPTR] = { 0x24, 16 },
299 [SCLSR] = { 0x28, 16 },
300 },
301
302 /*
303 * SH7705-style SCIF(B) ports, lacking both SCSPTR and SCLSR
304 * registers.
305 */
306 [SCIx_SH7705_SCIF_REGTYPE] = {
307 [SCSMR] = { 0x00, 16 },
308 [SCBRR] = { 0x04, 8 },
309 [SCSCR] = { 0x08, 16 },
310 [SCxTDR] = { 0x20, 8 },
311 [SCxSR] = { 0x14, 16 },
312 [SCxRDR] = { 0x24, 8 },
313 [SCFCR] = { 0x18, 16 },
314 [SCFDR] = { 0x1c, 16 },
315 [SCTFDR] = sci_reg_invalid,
316 [SCRFDR] = sci_reg_invalid,
317 [SCSPTR] = sci_reg_invalid,
318 [SCLSR] = sci_reg_invalid,
319 },
320};
321
Paul Mundt72b294c2011-06-14 17:38:19 +0900322#define sci_getreg(up, offset) (sci_regmap[to_sci_port(up)->cfg->regtype] + offset)
323
Paul Mundt61a69762011-06-14 12:40:19 +0900324/*
325 * The "offset" here is rather misleading, in that it refers to an enum
326 * value relative to the port mapping rather than the fixed offset
327 * itself, which needs to be manually retrieved from the platform's
328 * register map for the given port.
329 */
330static unsigned int sci_serial_in(struct uart_port *p, int offset)
331{
Paul Mundt72b294c2011-06-14 17:38:19 +0900332 struct plat_sci_reg *reg = sci_getreg(p, offset);
Paul Mundt61a69762011-06-14 12:40:19 +0900333
334 if (reg->size == 8)
335 return ioread8(p->membase + (reg->offset << p->regshift));
336 else if (reg->size == 16)
337 return ioread16(p->membase + (reg->offset << p->regshift));
338 else
339 WARN(1, "Invalid register access\n");
340
341 return 0;
342}
343
344static void sci_serial_out(struct uart_port *p, int offset, int value)
345{
Paul Mundt72b294c2011-06-14 17:38:19 +0900346 struct plat_sci_reg *reg = sci_getreg(p, offset);
Paul Mundt61a69762011-06-14 12:40:19 +0900347
348 if (reg->size == 8)
349 iowrite8(value, p->membase + (reg->offset << p->regshift));
350 else if (reg->size == 16)
351 iowrite16(value, p->membase + (reg->offset << p->regshift));
352 else
353 WARN(1, "Invalid register access\n");
354}
355
356#define sci_in(up, offset) (up->serial_in(up, offset))
357#define sci_out(up, offset, value) (up->serial_out(up, offset, value))
358
359static int sci_probe_regmap(struct plat_sci_port *cfg)
360{
361 switch (cfg->type) {
362 case PORT_SCI:
363 cfg->regtype = SCIx_SCI_REGTYPE;
364 break;
365 case PORT_IRDA:
366 cfg->regtype = SCIx_IRDA_REGTYPE;
367 break;
368 case PORT_SCIFA:
369 cfg->regtype = SCIx_SCIFA_REGTYPE;
370 break;
371 case PORT_SCIFB:
372 cfg->regtype = SCIx_SCIFB_REGTYPE;
373 break;
374 case PORT_SCIF:
375 /*
376 * The SH-4 is a bit of a misnomer here, although that's
377 * where this particular port layout originated. This
378 * configuration (or some slight variation thereof)
379 * remains the dominant model for all SCIFs.
380 */
381 cfg->regtype = SCIx_SH4_SCIF_REGTYPE;
382 break;
383 default:
384 printk(KERN_ERR "Can't probe register map for given port\n");
385 return -EINVAL;
386 }
387
388 return 0;
389}
390
Paul Mundt23241d42011-06-28 13:55:31 +0900391static void sci_port_enable(struct sci_port *sci_port)
392{
393 if (!sci_port->port.dev)
394 return;
395
396 pm_runtime_get_sync(sci_port->port.dev);
397
398 clk_enable(sci_port->iclk);
399 sci_port->port.uartclk = clk_get_rate(sci_port->iclk);
400 clk_enable(sci_port->fclk);
401}
402
403static void sci_port_disable(struct sci_port *sci_port)
404{
405 if (!sci_port->port.dev)
406 return;
407
408 clk_disable(sci_port->fclk);
409 clk_disable(sci_port->iclk);
410
411 pm_runtime_put_sync(sci_port->port.dev);
412}
413
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900414#if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
Paul Mundt1f6fd5c2008-12-17 14:53:24 +0900415
416#ifdef CONFIG_CONSOLE_POLL
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900417static int sci_poll_get_char(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 unsigned short status;
420 int c;
421
Paul Mundte108b2c2006-09-27 16:32:13 +0900422 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 status = sci_in(port, SCxSR);
424 if (status & SCxSR_ERRORS(port)) {
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900425 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 continue;
427 }
Jason Wessel3f255eb2010-05-20 21:04:23 -0500428 break;
429 } while (1);
430
431 if (!(status & SCxSR_RDxF(port)))
432 return NO_POLL_CHAR;
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 c = sci_in(port, SCxRDR);
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900435
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900436 /* Dummy read */
437 sci_in(port, SCxSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 return c;
441}
Paul Mundt1f6fd5c2008-12-17 14:53:24 +0900442#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900444static void sci_poll_put_char(struct uart_port *port, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 unsigned short status;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 do {
449 status = sci_in(port, SCxSR);
450 } while (!(status & SCxSR_TDxE(port)));
451
Paul Mundt272966c2008-11-13 17:46:06 +0900452 sci_out(port, SCxTDR, c);
SUGIOKA Toshinobudd0a3e72009-06-01 03:53:41 +0000453 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port) & ~SCxSR_TEND(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900455#endif /* CONFIG_CONSOLE_POLL || CONFIG_SERIAL_SH_SCI_CONSOLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Paul Mundt61a69762011-06-14 12:40:19 +0900457static void sci_init_pins(struct uart_port *port, unsigned int cflag)
Paul Mundte108b2c2006-09-27 16:32:13 +0900458{
Paul Mundt61a69762011-06-14 12:40:19 +0900459 struct sci_port *s = to_sci_port(port);
460 struct plat_sci_reg *reg = sci_regmap[s->cfg->regtype] + SCSPTR;
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900461
Paul Mundt61a69762011-06-14 12:40:19 +0900462 /*
463 * Use port-specific handler if provided.
464 */
465 if (s->cfg->ops && s->cfg->ops->init_pins) {
466 s->cfg->ops->init_pins(port, cflag);
467 return;
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Paul Mundt61a69762011-06-14 12:40:19 +0900470 /*
471 * For the generic path SCSPTR is necessary. Bail out if that's
472 * unavailable, too.
473 */
474 if (!reg->size)
475 return;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800476
Paul Mundtd5701642008-12-16 20:07:27 +0900477 if (!(cflag & CRTSCTS))
Paul Mundt61a69762011-06-14 12:40:19 +0900478 sci_out(port, SCSPTR, 0x0080); /* Set RTS = 1 */
Paul Mundtd5701642008-12-16 20:07:27 +0900479}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900481static int sci_txfill(struct uart_port *port)
Paul Mundte108b2c2006-09-27 16:32:13 +0900482{
Paul Mundt72b294c2011-06-14 17:38:19 +0900483 struct plat_sci_reg *reg;
484
485 reg = sci_getreg(port, SCTFDR);
486 if (reg->size)
487 return sci_in(port, SCTFDR) & 0xff;
488
489 reg = sci_getreg(port, SCFDR);
490 if (reg->size)
491 return sci_in(port, SCFDR) >> 8;
492
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900493 return !(sci_in(port, SCxSR) & SCI_TDRE);
Paul Mundte108b2c2006-09-27 16:32:13 +0900494}
495
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900496static int sci_txroom(struct uart_port *port)
497{
Paul Mundt72b294c2011-06-14 17:38:19 +0900498 return port->fifosize - sci_txfill(port);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900499}
500
501static int sci_rxfill(struct uart_port *port)
Paul Mundte108b2c2006-09-27 16:32:13 +0900502{
Paul Mundt72b294c2011-06-14 17:38:19 +0900503 struct plat_sci_reg *reg;
504
505 reg = sci_getreg(port, SCRFDR);
506 if (reg->size)
507 return sci_in(port, SCRFDR) & 0xff;
508
509 reg = sci_getreg(port, SCFDR);
510 if (reg->size)
511 return sci_in(port, SCFDR) & ((port->fifosize << 1) - 1);
512
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900513 return (sci_in(port, SCxSR) & SCxSR_RDxF(port)) != 0;
Paul Mundte108b2c2006-09-27 16:32:13 +0900514}
515
Paul Mundt514820e2011-06-08 18:51:32 +0900516/*
517 * SCI helper for checking the state of the muxed port/RXD pins.
518 */
519static inline int sci_rxd_in(struct uart_port *port)
520{
521 struct sci_port *s = to_sci_port(port);
522
523 if (s->cfg->port_reg <= 0)
524 return 1;
525
526 return !!__raw_readb(s->cfg->port_reg);
527}
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529/* ********************************************************************** *
530 * the interrupt related routines *
531 * ********************************************************************** */
532
533static void sci_transmit_chars(struct uart_port *port)
534{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700535 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unsigned int stopped = uart_tx_stopped(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 unsigned short status;
538 unsigned short ctrl;
Paul Mundte108b2c2006-09-27 16:32:13 +0900539 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 status = sci_in(port, SCxSR);
542 if (!(status & SCxSR_TDxE(port))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 ctrl = sci_in(port, SCSCR);
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900544 if (uart_circ_empty(xmit))
Paul Mundt8e698612009-06-24 19:44:32 +0900545 ctrl &= ~SCSCR_TIE;
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900546 else
Paul Mundt8e698612009-06-24 19:44:32 +0900547 ctrl |= SCSCR_TIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return;
550 }
551
Paul Mundt72b294c2011-06-14 17:38:19 +0900552 count = sci_txroom(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 do {
555 unsigned char c;
556
557 if (port->x_char) {
558 c = port->x_char;
559 port->x_char = 0;
560 } else if (!uart_circ_empty(xmit) && !stopped) {
561 c = xmit->buf[xmit->tail];
562 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
563 } else {
564 break;
565 }
566
567 sci_out(port, SCxTDR, c);
568
569 port->icount.tx++;
570 } while (--count > 0);
571
572 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
573
574 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
575 uart_write_wakeup(port);
576 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100577 sci_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 ctrl = sci_in(port, SCSCR);
580
Yoshihiro Shimoda1a22f082008-11-11 12:19:05 +0900581 if (port->type != PORT_SCI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 sci_in(port, SCxSR); /* Dummy read */
583 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Paul Mundt8e698612009-06-24 19:44:32 +0900586 ctrl |= SCSCR_TIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589}
590
591/* On SH3, SCIF may read end-of-break as a space->mark char */
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900592#define STEPFN(c) ({int __c = (c); (((__c-1)|(__c)) == -1); })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900594static void sci_receive_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900596 struct sci_port *sci_port = to_sci_port(port);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700597 struct tty_struct *tty = port->state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 int i, count, copied = 0;
599 unsigned short status;
Alan Cox33f0f882006-01-09 20:54:13 -0800600 unsigned char flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 status = sci_in(port, SCxSR);
603 if (!(status & SCxSR_RDxF(port)))
604 return;
605
606 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 /* Don't copy more bytes than there is room for in the buffer */
Paul Mundt72b294c2011-06-14 17:38:19 +0900608 count = tty_buffer_request_room(tty, sci_rxfill(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* If for any reason we can't copy more data, we're done! */
611 if (count == 0)
612 break;
613
614 if (port->type == PORT_SCI) {
615 char c = sci_in(port, SCxRDR);
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900616 if (uart_handle_sysrq_char(port, c) ||
617 sci_port->break_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 count = 0;
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900619 else
Paul Mundte108b2c2006-09-27 16:32:13 +0900620 tty_insert_flip_char(tty, c, TTY_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 } else {
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900622 for (i = 0; i < count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 char c = sci_in(port, SCxRDR);
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 status = sci_in(port, SCxSR);
626#if defined(CONFIG_CPU_SH3)
627 /* Skip "chars" during break */
Paul Mundte108b2c2006-09-27 16:32:13 +0900628 if (sci_port->break_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if ((c == 0) &&
630 (status & SCxSR_FER(port))) {
631 count--; i--;
632 continue;
633 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /* Nonzero => end-of-break */
Paul Mundt762c69e2008-12-16 18:55:26 +0900636 dev_dbg(port->dev, "debounce<%02x>\n", c);
Paul Mundte108b2c2006-09-27 16:32:13 +0900637 sci_port->break_flag = 0;
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (STEPFN(c)) {
640 count--; i--;
641 continue;
642 }
643 }
644#endif /* CONFIG_CPU_SH3 */
David Howells7d12e782006-10-05 14:55:46 +0100645 if (uart_handle_sysrq_char(port, c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 count--; i--;
647 continue;
648 }
649
650 /* Store data and status */
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900651 if (status & SCxSR_FER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800652 flag = TTY_FRAME;
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900653 port->icount.frame++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900654 dev_notice(port->dev, "frame error\n");
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900655 } else if (status & SCxSR_PER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800656 flag = TTY_PARITY;
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900657 port->icount.parity++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900658 dev_notice(port->dev, "parity error\n");
Alan Cox33f0f882006-01-09 20:54:13 -0800659 } else
660 flag = TTY_NORMAL;
Paul Mundt762c69e2008-12-16 18:55:26 +0900661
Alan Cox33f0f882006-01-09 20:54:13 -0800662 tty_insert_flip_char(tty, c, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664 }
665
666 sci_in(port, SCxSR); /* dummy read */
667 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 copied += count;
670 port->icount.rx += count;
671 }
672
673 if (copied) {
674 /* Tell the rest of the system the news. New characters! */
675 tty_flip_buffer_push(tty);
676 } else {
677 sci_in(port, SCxSR); /* dummy read */
678 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
679 }
680}
681
682#define SCI_BREAK_JIFFIES (HZ/20)
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900683
684/*
685 * The sci generates interrupts during the break,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 * 1 per millisecond or so during the break period, for 9600 baud.
687 * So dont bother disabling interrupts.
688 * But dont want more than 1 break event.
689 * Use a kernel timer to periodically poll the rx line until
690 * the break is finished.
691 */
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900692static inline void sci_schedule_break_timer(struct sci_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Paul Mundtbc9b3f52011-01-20 23:30:19 +0900694 mod_timer(&port->break_timer, jiffies + SCI_BREAK_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697/* Ensure that two consecutive samples find the break over. */
698static void sci_break_timer(unsigned long data)
699{
Paul Mundte108b2c2006-09-27 16:32:13 +0900700 struct sci_port *port = (struct sci_port *)data;
701
Paul Mundt23241d42011-06-28 13:55:31 +0900702 sci_port_enable(port);
Magnus Damm5e50d2d2011-04-19 10:38:25 +0000703
Paul Mundte108b2c2006-09-27 16:32:13 +0900704 if (sci_rxd_in(&port->port) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 port->break_flag = 1;
Paul Mundte108b2c2006-09-27 16:32:13 +0900706 sci_schedule_break_timer(port);
707 } else if (port->break_flag == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /* break is over. */
709 port->break_flag = 2;
Paul Mundte108b2c2006-09-27 16:32:13 +0900710 sci_schedule_break_timer(port);
711 } else
712 port->break_flag = 0;
Magnus Damm5e50d2d2011-04-19 10:38:25 +0000713
Paul Mundt23241d42011-06-28 13:55:31 +0900714 sci_port_disable(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900717static int sci_handle_errors(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719 int copied = 0;
720 unsigned short status = sci_in(port, SCxSR);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700721 struct tty_struct *tty = port->state->port.tty;
Paul Mundtdebf9502011-06-08 18:19:37 +0900722 struct sci_port *s = to_sci_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Paul Mundtdebf9502011-06-08 18:19:37 +0900724 /*
725 * Handle overruns, if supported.
726 */
727 if (s->cfg->overrun_bit != SCIx_NOT_SUPPORTED) {
728 if (status & (1 << s->cfg->overrun_bit)) {
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900729 port->icount.overrun++;
730
Paul Mundtdebf9502011-06-08 18:19:37 +0900731 /* overrun error */
732 if (tty_insert_flip_char(tty, 0, TTY_OVERRUN))
733 copied++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900734
Paul Mundtdebf9502011-06-08 18:19:37 +0900735 dev_notice(port->dev, "overrun error");
736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
738
Paul Mundte108b2c2006-09-27 16:32:13 +0900739 if (status & SCxSR_FER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (sci_rxd_in(port) == 0) {
741 /* Notify of BREAK */
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900742 struct sci_port *sci_port = to_sci_port(port);
Paul Mundte108b2c2006-09-27 16:32:13 +0900743
744 if (!sci_port->break_flag) {
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900745 port->icount.brk++;
746
Paul Mundte108b2c2006-09-27 16:32:13 +0900747 sci_port->break_flag = 1;
748 sci_schedule_break_timer(sci_port);
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 /* Do sysrq handling. */
Paul Mundte108b2c2006-09-27 16:32:13 +0900751 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return 0;
Paul Mundt762c69e2008-12-16 18:55:26 +0900753
754 dev_dbg(port->dev, "BREAK detected\n");
755
Paul Mundte108b2c2006-09-27 16:32:13 +0900756 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900757 copied++;
758 }
759
Paul Mundte108b2c2006-09-27 16:32:13 +0900760 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* frame error */
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900762 port->icount.frame++;
763
Paul Mundte108b2c2006-09-27 16:32:13 +0900764 if (tty_insert_flip_char(tty, 0, TTY_FRAME))
Alan Cox33f0f882006-01-09 20:54:13 -0800765 copied++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900766
767 dev_notice(port->dev, "frame error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769 }
770
Paul Mundte108b2c2006-09-27 16:32:13 +0900771 if (status & SCxSR_PER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /* parity error */
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900773 port->icount.parity++;
774
Paul Mundte108b2c2006-09-27 16:32:13 +0900775 if (tty_insert_flip_char(tty, 0, TTY_PARITY))
776 copied++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900777
778 dev_notice(port->dev, "parity error");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
Alan Cox33f0f882006-01-09 20:54:13 -0800781 if (copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 return copied;
785}
786
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900787static int sci_handle_fifo_overrun(struct uart_port *port)
Paul Mundtd830fa42008-12-16 19:29:38 +0900788{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700789 struct tty_struct *tty = port->state->port.tty;
Paul Mundtdebf9502011-06-08 18:19:37 +0900790 struct sci_port *s = to_sci_port(port);
Paul Mundt4b8c59a2011-06-14 17:53:34 +0900791 struct plat_sci_reg *reg;
Paul Mundtd830fa42008-12-16 19:29:38 +0900792 int copied = 0;
793
Paul Mundt4b8c59a2011-06-14 17:53:34 +0900794 reg = sci_getreg(port, SCLSR);
795 if (!reg->size)
Paul Mundtd830fa42008-12-16 19:29:38 +0900796 return 0;
797
Paul Mundtdebf9502011-06-08 18:19:37 +0900798 if ((sci_in(port, SCLSR) & (1 << s->cfg->overrun_bit))) {
Paul Mundtd830fa42008-12-16 19:29:38 +0900799 sci_out(port, SCLSR, 0);
800
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900801 port->icount.overrun++;
802
Paul Mundtd830fa42008-12-16 19:29:38 +0900803 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
804 tty_flip_buffer_push(tty);
805
806 dev_notice(port->dev, "overrun error\n");
807 copied++;
808 }
809
810 return copied;
811}
812
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900813static int sci_handle_breaks(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 int copied = 0;
816 unsigned short status = sci_in(port, SCxSR);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700817 struct tty_struct *tty = port->state->port.tty;
Magnus Damma5660ad2009-01-21 15:14:38 +0000818 struct sci_port *s = to_sci_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Paul Mundt0b3d4ef2007-03-14 13:22:37 +0900820 if (uart_handle_break(port))
821 return 0;
822
Paul Mundtb7a76e42006-02-01 03:06:06 -0800823 if (!s->break_flag && status & SCxSR_BRK(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824#if defined(CONFIG_CPU_SH3)
825 /* Debounce break */
826 s->break_flag = 1;
827#endif
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900828
829 port->icount.brk++;
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /* Notify of BREAK */
Paul Mundte108b2c2006-09-27 16:32:13 +0900832 if (tty_insert_flip_char(tty, 0, TTY_BREAK))
Alan Cox33f0f882006-01-09 20:54:13 -0800833 copied++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900834
835 dev_dbg(port->dev, "BREAK detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Alan Cox33f0f882006-01-09 20:54:13 -0800838 if (copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 tty_flip_buffer_push(tty);
Paul Mundte108b2c2006-09-27 16:32:13 +0900840
Paul Mundtd830fa42008-12-16 19:29:38 +0900841 copied += sci_handle_fifo_overrun(port);
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return copied;
844}
845
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900846static irqreturn_t sci_rx_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900848#ifdef CONFIG_SERIAL_SH_SCI_DMA
849 struct uart_port *port = ptr;
850 struct sci_port *s = to_sci_port(port);
851
852 if (s->chan_rx) {
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900853 u16 scr = sci_in(port, SCSCR);
854 u16 ssr = sci_in(port, SCxSR);
855
856 /* Disable future Rx interrupts */
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +0000857 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +0000858 disable_irq_nosync(irq);
859 scr |= 0x4000;
860 } else {
Paul Mundtf43dc232011-01-13 15:06:28 +0900861 scr &= ~SCSCR_RIE;
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +0000862 }
863 sci_out(port, SCSCR, scr);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900864 /* Clear current interrupt */
865 sci_out(port, SCxSR, ssr & ~(1 | SCxSR_RDxF(port)));
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +0000866 dev_dbg(port->dev, "Rx IRQ %lu: setup t-out in %u jiffies\n",
867 jiffies, s->rx_timeout);
868 mod_timer(&s->rx_timer, jiffies + s->rx_timeout);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900869
870 return IRQ_HANDLED;
871 }
872#endif
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /* I think sci_receive_chars has to be called irrespective
875 * of whether the I_IXOFF is set, otherwise, how is the interrupt
876 * to be disabled?
877 */
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900878 sci_receive_chars(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 return IRQ_HANDLED;
881}
882
David Howells7d12e782006-10-05 14:55:46 +0100883static irqreturn_t sci_tx_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
885 struct uart_port *port = ptr;
Stuart Menefyfd78a762009-07-29 23:01:24 +0900886 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Stuart Menefyfd78a762009-07-29 23:01:24 +0900888 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 sci_transmit_chars(port);
Stuart Menefyfd78a762009-07-29 23:01:24 +0900890 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 return IRQ_HANDLED;
893}
894
David Howells7d12e782006-10-05 14:55:46 +0100895static irqreturn_t sci_er_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
897 struct uart_port *port = ptr;
898
899 /* Handle errors */
900 if (port->type == PORT_SCI) {
901 if (sci_handle_errors(port)) {
902 /* discard character in rx buffer */
903 sci_in(port, SCxSR);
904 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
905 }
906 } else {
Paul Mundtd830fa42008-12-16 19:29:38 +0900907 sci_handle_fifo_overrun(port);
David Howells7d12e782006-10-05 14:55:46 +0100908 sci_rx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
911 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
912
913 /* Kick the transmission */
David Howells7d12e782006-10-05 14:55:46 +0100914 sci_tx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 return IRQ_HANDLED;
917}
918
David Howells7d12e782006-10-05 14:55:46 +0100919static irqreturn_t sci_br_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 struct uart_port *port = ptr;
922
923 /* Handle BREAKs */
924 sci_handle_breaks(port);
925 sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
926
927 return IRQ_HANDLED;
928}
929
Paul Mundtf43dc232011-01-13 15:06:28 +0900930static inline unsigned long port_rx_irq_mask(struct uart_port *port)
931{
932 /*
933 * Not all ports (such as SCIFA) will support REIE. Rather than
934 * special-casing the port type, we check the port initialization
935 * IRQ enable mask to see whether the IRQ is desired at all. If
936 * it's unset, it's logically inferred that there's no point in
937 * testing for it.
938 */
Paul Mundtce6738b2011-01-19 15:24:40 +0900939 return SCSCR_RIE | (to_sci_port(port)->cfg->scscr & SCSCR_REIE);
Paul Mundtf43dc232011-01-13 15:06:28 +0900940}
941
David Howells7d12e782006-10-05 14:55:46 +0100942static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Magnus Damm44e18e92009-07-03 08:39:34 +0000944 unsigned short ssr_status, scr_status, err_enabled;
Michael Trimarchia8884e32008-10-31 16:10:23 +0900945 struct uart_port *port = ptr;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900946 struct sci_port *s = to_sci_port(port);
Michael Trimarchia8884e32008-10-31 16:10:23 +0900947 irqreturn_t ret = IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900949 ssr_status = sci_in(port, SCxSR);
950 scr_status = sci_in(port, SCSCR);
Paul Mundtf43dc232011-01-13 15:06:28 +0900951 err_enabled = scr_status & port_rx_irq_mask(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 /* Tx Interrupt */
Paul Mundtf43dc232011-01-13 15:06:28 +0900954 if ((ssr_status & SCxSR_TDxE(port)) && (scr_status & SCSCR_TIE) &&
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900955 !s->chan_tx)
Michael Trimarchia8884e32008-10-31 16:10:23 +0900956 ret = sci_tx_interrupt(irq, ptr);
Paul Mundtf43dc232011-01-13 15:06:28 +0900957
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900958 /*
959 * Rx Interrupt: if we're using DMA, the DMA controller clears RDF /
960 * DR flags
961 */
962 if (((ssr_status & SCxSR_RDxF(port)) || s->chan_rx) &&
Paul Mundtf43dc232011-01-13 15:06:28 +0900963 (scr_status & SCSCR_RIE))
Michael Trimarchia8884e32008-10-31 16:10:23 +0900964 ret = sci_rx_interrupt(irq, ptr);
Paul Mundtf43dc232011-01-13 15:06:28 +0900965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 /* Error Interrupt */
SUGIOKA Toshinobudd4da3a2009-07-07 05:32:07 +0000967 if ((ssr_status & SCxSR_ERRORS(port)) && err_enabled)
Michael Trimarchia8884e32008-10-31 16:10:23 +0900968 ret = sci_er_interrupt(irq, ptr);
Paul Mundtf43dc232011-01-13 15:06:28 +0900969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /* Break Interrupt */
SUGIOKA Toshinobudd4da3a2009-07-07 05:32:07 +0000971 if ((ssr_status & SCxSR_BRK(port)) && err_enabled)
Michael Trimarchia8884e32008-10-31 16:10:23 +0900972 ret = sci_br_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Michael Trimarchia8884e32008-10-31 16:10:23 +0900974 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300978 * Here we define a transition notifier so that we can update all of our
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 * ports' baud rate when the peripheral clock changes.
980 */
Paul Mundte108b2c2006-09-27 16:32:13 +0900981static int sci_notifier(struct notifier_block *self,
982 unsigned long phase, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Magnus Damme552de22009-01-21 15:13:42 +0000984 struct sci_port *sci_port;
985 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Paul Mundtd535a232011-01-19 17:19:35 +0900987 sci_port = container_of(self, struct sci_port, freq_transition);
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if ((phase == CPUFREQ_POSTCHANGE) ||
Magnus Damme552de22009-01-21 15:13:42 +0000990 (phase == CPUFREQ_RESUMECHANGE)) {
Paul Mundtd535a232011-01-19 17:19:35 +0900991 struct uart_port *port = &sci_port->port;
Paul Mundt073e84c2011-01-19 17:30:53 +0900992
Paul Mundtd535a232011-01-19 17:19:35 +0900993 spin_lock_irqsave(&port->lock, flags);
994 port->uartclk = clk_get_rate(sci_port->iclk);
995 spin_unlock_irqrestore(&port->lock, flags);
Magnus Damme552de22009-01-21 15:13:42 +0000996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return NOTIFY_OK;
999}
Magnus Damm501b8252009-01-21 15:14:30 +00001000
Paul Mundt9174fc82011-06-28 15:25:36 +09001001static struct sci_irq_desc {
1002 const char *desc;
1003 irq_handler_t handler;
1004} sci_irq_desc[] = {
1005 /*
1006 * Split out handlers, the default case.
1007 */
1008 [SCIx_ERI_IRQ] = {
1009 .desc = "rx err",
1010 .handler = sci_er_interrupt,
1011 },
1012
1013 [SCIx_RXI_IRQ] = {
1014 .desc = "rx full",
1015 .handler = sci_rx_interrupt,
1016 },
1017
1018 [SCIx_TXI_IRQ] = {
1019 .desc = "tx empty",
1020 .handler = sci_tx_interrupt,
1021 },
1022
1023 [SCIx_BRI_IRQ] = {
1024 .desc = "break",
1025 .handler = sci_br_interrupt,
1026 },
1027
1028 /*
1029 * Special muxed handler.
1030 */
1031 [SCIx_MUX_IRQ] = {
1032 .desc = "mux",
1033 .handler = sci_mpxed_interrupt,
1034 },
1035};
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037static int sci_request_irq(struct sci_port *port)
1038{
Paul Mundt9174fc82011-06-28 15:25:36 +09001039 struct uart_port *up = &port->port;
1040 int i, j, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Paul Mundt9174fc82011-06-28 15:25:36 +09001042 for (i = j = 0; i < SCIx_NR_IRQS; i++, j++) {
1043 struct sci_irq_desc *desc;
1044 unsigned int irq;
Paul Mundte108b2c2006-09-27 16:32:13 +09001045
Paul Mundt9174fc82011-06-28 15:25:36 +09001046 if (SCIx_IRQ_IS_MUXED(port)) {
1047 i = SCIx_MUX_IRQ;
1048 irq = up->irq;
1049 } else
1050 irq = port->cfg->irqs[i];
1051
1052 desc = sci_irq_desc + i;
1053 port->irqstr[j] = kasprintf(GFP_KERNEL, "%s:%s",
1054 dev_name(up->dev), desc->desc);
1055 if (!port->irqstr[j]) {
1056 dev_err(up->dev, "Failed to allocate %s IRQ string\n",
1057 desc->desc);
1058 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
Paul Mundt762c69e2008-12-16 18:55:26 +09001060
Paul Mundt9174fc82011-06-28 15:25:36 +09001061 ret = request_irq(irq, desc->handler, up->irqflags,
1062 port->irqstr[j], port);
1063 if (unlikely(ret)) {
1064 dev_err(up->dev, "Can't allocate %s IRQ\n", desc->desc);
1065 goto out_noirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 }
1067 }
1068
1069 return 0;
Paul Mundt9174fc82011-06-28 15:25:36 +09001070
1071out_noirq:
1072 while (--i >= 0)
1073 free_irq(port->cfg->irqs[i], port);
1074
1075out_nomem:
1076 while (--j >= 0)
1077 kfree(port->irqstr[j]);
1078
1079 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082static void sci_free_irq(struct sci_port *port)
1083{
1084 int i;
1085
Paul Mundt9174fc82011-06-28 15:25:36 +09001086 /*
1087 * Intentionally in reverse order so we iterate over the muxed
1088 * IRQ first.
1089 */
1090 for (i = 0; i < SCIx_NR_IRQS; i++) {
1091 free_irq(port->cfg->irqs[i], port);
1092 kfree(port->irqstr[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Paul Mundt9174fc82011-06-28 15:25:36 +09001094 if (SCIx_IRQ_IS_MUXED(port)) {
1095 /* If there's only one IRQ, we're done. */
1096 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098 }
1099}
1100
1101static unsigned int sci_tx_empty(struct uart_port *port)
1102{
Guennadi Liakhovetskib1516802009-12-01 09:54:46 +00001103 unsigned short status = sci_in(port, SCxSR);
Paul Mundt72b294c2011-06-14 17:38:19 +09001104 unsigned short in_tx_fifo = sci_txfill(port);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001105
1106 return (status & SCxSR_TEND(port)) && !in_tx_fifo ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
1109static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
1110{
1111 /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */
1112 /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */
1113 /* If you have signals for DTR and DCD, please implement here. */
1114}
1115
1116static unsigned int sci_get_mctrl(struct uart_port *port)
1117{
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001118 /* This routine is used for getting signals of: DTR, DCD, DSR, RI,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 and CTS/RTS */
1120
Yoshii Takashi4480a682011-08-23 08:27:18 +00001121 return TIOCM_DTR | TIOCM_RTS | TIOCM_CTS | TIOCM_DSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001124#ifdef CONFIG_SERIAL_SH_SCI_DMA
1125static void sci_dma_tx_complete(void *arg)
1126{
1127 struct sci_port *s = arg;
1128 struct uart_port *port = &s->port;
1129 struct circ_buf *xmit = &port->state->xmit;
1130 unsigned long flags;
1131
1132 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1133
1134 spin_lock_irqsave(&port->lock, flags);
1135
Magnus Dammf354a382010-03-19 04:47:01 +00001136 xmit->tail += sg_dma_len(&s->sg_tx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001137 xmit->tail &= UART_XMIT_SIZE - 1;
1138
Magnus Dammf354a382010-03-19 04:47:01 +00001139 port->icount.tx += sg_dma_len(&s->sg_tx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001140
1141 async_tx_ack(s->desc_tx);
1142 s->cookie_tx = -EINVAL;
1143 s->desc_tx = NULL;
1144
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001145 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1146 uart_write_wakeup(port);
1147
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001148 if (!uart_circ_empty(xmit)) {
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001149 schedule_work(&s->work_tx);
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001150 } else if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001151 u16 ctrl = sci_in(port, SCSCR);
Paul Mundtf43dc232011-01-13 15:06:28 +09001152 sci_out(port, SCSCR, ctrl & ~SCSCR_TIE);
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001153 }
1154
1155 spin_unlock_irqrestore(&port->lock, flags);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001156}
1157
1158/* Locking: called with port lock held */
1159static int sci_dma_rx_push(struct sci_port *s, struct tty_struct *tty,
1160 size_t count)
1161{
1162 struct uart_port *port = &s->port;
1163 int i, active, room;
1164
1165 room = tty_buffer_request_room(tty, count);
1166
1167 if (s->active_rx == s->cookie_rx[0]) {
1168 active = 0;
1169 } else if (s->active_rx == s->cookie_rx[1]) {
1170 active = 1;
1171 } else {
1172 dev_err(port->dev, "cookie %d not found!\n", s->active_rx);
1173 return 0;
1174 }
1175
1176 if (room < count)
1177 dev_warn(port->dev, "Rx overrun: dropping %u bytes\n",
1178 count - room);
1179 if (!room)
1180 return room;
1181
1182 for (i = 0; i < room; i++)
1183 tty_insert_flip_char(tty, ((u8 *)sg_virt(&s->sg_rx[active]))[i],
1184 TTY_NORMAL);
1185
1186 port->icount.rx += room;
1187
1188 return room;
1189}
1190
1191static void sci_dma_rx_complete(void *arg)
1192{
1193 struct sci_port *s = arg;
1194 struct uart_port *port = &s->port;
1195 struct tty_struct *tty = port->state->port.tty;
1196 unsigned long flags;
1197 int count;
1198
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001199 dev_dbg(port->dev, "%s(%d) active #%d\n", __func__, port->line, s->active_rx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001200
1201 spin_lock_irqsave(&port->lock, flags);
1202
1203 count = sci_dma_rx_push(s, tty, s->buf_len_rx);
1204
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001205 mod_timer(&s->rx_timer, jiffies + s->rx_timeout);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001206
1207 spin_unlock_irqrestore(&port->lock, flags);
1208
1209 if (count)
1210 tty_flip_buffer_push(tty);
1211
1212 schedule_work(&s->work_rx);
1213}
1214
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001215static void sci_rx_dma_release(struct sci_port *s, bool enable_pio)
1216{
1217 struct dma_chan *chan = s->chan_rx;
1218 struct uart_port *port = &s->port;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001219
1220 s->chan_rx = NULL;
1221 s->cookie_rx[0] = s->cookie_rx[1] = -EINVAL;
1222 dma_release_channel(chan);
Guennadi Liakhovetski85b8e3f2010-05-21 15:22:40 +00001223 if (sg_dma_address(&s->sg_rx[0]))
1224 dma_free_coherent(port->dev, s->buf_len_rx * 2,
1225 sg_virt(&s->sg_rx[0]), sg_dma_address(&s->sg_rx[0]));
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001226 if (enable_pio)
1227 sci_start_rx(port);
1228}
1229
1230static void sci_tx_dma_release(struct sci_port *s, bool enable_pio)
1231{
1232 struct dma_chan *chan = s->chan_tx;
1233 struct uart_port *port = &s->port;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001234
1235 s->chan_tx = NULL;
1236 s->cookie_tx = -EINVAL;
1237 dma_release_channel(chan);
1238 if (enable_pio)
1239 sci_start_tx(port);
1240}
1241
1242static void sci_submit_rx(struct sci_port *s)
1243{
1244 struct dma_chan *chan = s->chan_rx;
1245 int i;
1246
1247 for (i = 0; i < 2; i++) {
1248 struct scatterlist *sg = &s->sg_rx[i];
1249 struct dma_async_tx_descriptor *desc;
1250
1251 desc = chan->device->device_prep_slave_sg(chan,
1252 sg, 1, DMA_FROM_DEVICE, DMA_PREP_INTERRUPT);
1253
1254 if (desc) {
1255 s->desc_rx[i] = desc;
1256 desc->callback = sci_dma_rx_complete;
1257 desc->callback_param = s;
1258 s->cookie_rx[i] = desc->tx_submit(desc);
1259 }
1260
1261 if (!desc || s->cookie_rx[i] < 0) {
1262 if (i) {
1263 async_tx_ack(s->desc_rx[0]);
1264 s->cookie_rx[0] = -EINVAL;
1265 }
1266 if (desc) {
1267 async_tx_ack(desc);
1268 s->cookie_rx[i] = -EINVAL;
1269 }
1270 dev_warn(s->port.dev,
1271 "failed to re-start DMA, using PIO\n");
1272 sci_rx_dma_release(s, true);
1273 return;
1274 }
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001275 dev_dbg(s->port.dev, "%s(): cookie %d to #%d\n", __func__,
1276 s->cookie_rx[i], i);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001277 }
1278
1279 s->active_rx = s->cookie_rx[0];
1280
1281 dma_async_issue_pending(chan);
1282}
1283
1284static void work_fn_rx(struct work_struct *work)
1285{
1286 struct sci_port *s = container_of(work, struct sci_port, work_rx);
1287 struct uart_port *port = &s->port;
1288 struct dma_async_tx_descriptor *desc;
1289 int new;
1290
1291 if (s->active_rx == s->cookie_rx[0]) {
1292 new = 0;
1293 } else if (s->active_rx == s->cookie_rx[1]) {
1294 new = 1;
1295 } else {
1296 dev_err(port->dev, "cookie %d not found!\n", s->active_rx);
1297 return;
1298 }
1299 desc = s->desc_rx[new];
1300
1301 if (dma_async_is_tx_complete(s->chan_rx, s->active_rx, NULL, NULL) !=
1302 DMA_SUCCESS) {
1303 /* Handle incomplete DMA receive */
1304 struct tty_struct *tty = port->state->port.tty;
1305 struct dma_chan *chan = s->chan_rx;
1306 struct sh_desc *sh_desc = container_of(desc, struct sh_desc,
1307 async_tx);
1308 unsigned long flags;
1309 int count;
1310
Linus Walleij05827632010-05-17 16:30:42 -07001311 chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001312 dev_dbg(port->dev, "Read %u bytes with cookie %d\n",
1313 sh_desc->partial, sh_desc->cookie);
1314
1315 spin_lock_irqsave(&port->lock, flags);
1316 count = sci_dma_rx_push(s, tty, sh_desc->partial);
1317 spin_unlock_irqrestore(&port->lock, flags);
1318
1319 if (count)
1320 tty_flip_buffer_push(tty);
1321
1322 sci_submit_rx(s);
1323
1324 return;
1325 }
1326
1327 s->cookie_rx[new] = desc->tx_submit(desc);
1328 if (s->cookie_rx[new] < 0) {
1329 dev_warn(port->dev, "Failed submitting Rx DMA descriptor\n");
1330 sci_rx_dma_release(s, true);
1331 return;
1332 }
1333
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001334 s->active_rx = s->cookie_rx[!new];
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001335
1336 dev_dbg(port->dev, "%s: cookie %d #%d, new active #%d\n", __func__,
1337 s->cookie_rx[new], new, s->active_rx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001338}
1339
1340static void work_fn_tx(struct work_struct *work)
1341{
1342 struct sci_port *s = container_of(work, struct sci_port, work_tx);
1343 struct dma_async_tx_descriptor *desc;
1344 struct dma_chan *chan = s->chan_tx;
1345 struct uart_port *port = &s->port;
1346 struct circ_buf *xmit = &port->state->xmit;
1347 struct scatterlist *sg = &s->sg_tx;
1348
1349 /*
1350 * DMA is idle now.
1351 * Port xmit buffer is already mapped, and it is one page... Just adjust
1352 * offsets and lengths. Since it is a circular buffer, we have to
1353 * transmit till the end, and then the rest. Take the port lock to get a
1354 * consistent xmit buffer state.
1355 */
1356 spin_lock_irq(&port->lock);
1357 sg->offset = xmit->tail & (UART_XMIT_SIZE - 1);
Magnus Dammf354a382010-03-19 04:47:01 +00001358 sg_dma_address(sg) = (sg_dma_address(sg) & ~(UART_XMIT_SIZE - 1)) +
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001359 sg->offset;
Magnus Dammf354a382010-03-19 04:47:01 +00001360 sg_dma_len(sg) = min((int)CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE),
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001361 CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE));
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001362 spin_unlock_irq(&port->lock);
1363
Magnus Dammf354a382010-03-19 04:47:01 +00001364 BUG_ON(!sg_dma_len(sg));
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001365
1366 desc = chan->device->device_prep_slave_sg(chan,
1367 sg, s->sg_len_tx, DMA_TO_DEVICE,
1368 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1369 if (!desc) {
1370 /* switch to PIO */
1371 sci_tx_dma_release(s, true);
1372 return;
1373 }
1374
1375 dma_sync_sg_for_device(port->dev, sg, 1, DMA_TO_DEVICE);
1376
1377 spin_lock_irq(&port->lock);
1378 s->desc_tx = desc;
1379 desc->callback = sci_dma_tx_complete;
1380 desc->callback_param = s;
1381 spin_unlock_irq(&port->lock);
1382 s->cookie_tx = desc->tx_submit(desc);
1383 if (s->cookie_tx < 0) {
1384 dev_warn(port->dev, "Failed submitting Tx DMA descriptor\n");
1385 /* switch to PIO */
1386 sci_tx_dma_release(s, true);
1387 return;
1388 }
1389
1390 dev_dbg(port->dev, "%s: %p: %d...%d, cookie %d\n", __func__,
1391 xmit->buf, xmit->tail, xmit->head, s->cookie_tx);
1392
1393 dma_async_issue_pending(chan);
1394}
1395#endif
1396
Russell Kingb129a8c2005-08-31 10:12:14 +01001397static void sci_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001399 struct sci_port *s = to_sci_port(port);
Paul Mundte108b2c2006-09-27 16:32:13 +09001400 unsigned short ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001402#ifdef CONFIG_SERIAL_SH_SCI_DMA
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001403 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001404 u16 new, scr = sci_in(port, SCSCR);
1405 if (s->chan_tx)
1406 new = scr | 0x8000;
1407 else
1408 new = scr & ~0x8000;
1409 if (new != scr)
1410 sci_out(port, SCSCR, new);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001411 }
Paul Mundtf43dc232011-01-13 15:06:28 +09001412
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001413 if (s->chan_tx && !uart_circ_empty(&s->port.state->xmit) &&
1414 s->cookie_tx < 0)
1415 schedule_work(&s->work_tx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001416#endif
Paul Mundtf43dc232011-01-13 15:06:28 +09001417
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001418 if (!s->chan_tx || port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001419 /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */
1420 ctrl = sci_in(port, SCSCR);
Paul Mundtf43dc232011-01-13 15:06:28 +09001421 sci_out(port, SCSCR, ctrl | SCSCR_TIE);
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
Russell Kingb129a8c2005-08-31 10:12:14 +01001425static void sci_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 unsigned short ctrl;
1428
1429 /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 ctrl = sci_in(port, SCSCR);
Paul Mundtf43dc232011-01-13 15:06:28 +09001431
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001432 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001433 ctrl &= ~0x8000;
Paul Mundtf43dc232011-01-13 15:06:28 +09001434
Paul Mundt8e698612009-06-24 19:44:32 +09001435 ctrl &= ~SCSCR_TIE;
Paul Mundtf43dc232011-01-13 15:06:28 +09001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001440static void sci_start_rx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 unsigned short ctrl;
1443
Paul Mundtf43dc232011-01-13 15:06:28 +09001444 ctrl = sci_in(port, SCSCR) | port_rx_irq_mask(port);
1445
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001446 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001447 ctrl &= ~0x4000;
Paul Mundtf43dc232011-01-13 15:06:28 +09001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
1452static void sci_stop_rx(struct uart_port *port)
1453{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 unsigned short ctrl;
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 ctrl = sci_in(port, SCSCR);
Paul Mundtf43dc232011-01-13 15:06:28 +09001457
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001458 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001459 ctrl &= ~0x4000;
Paul Mundtf43dc232011-01-13 15:06:28 +09001460
1461 ctrl &= ~port_rx_irq_mask(port);
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 sci_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
1466static void sci_enable_ms(struct uart_port *port)
1467{
Paul Mundtd39ec6c2011-11-24 19:36:46 +09001468 /*
1469 * Not supported by hardware, always a nop.
1470 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471}
1472
1473static void sci_break_ctl(struct uart_port *port, int break_state)
1474{
Paul Mundtd39ec6c2011-11-24 19:36:46 +09001475 /*
1476 * Not supported by hardware. Most parts couple break and rx
1477 * interrupts together, with break detection always enabled.
1478 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001481#ifdef CONFIG_SERIAL_SH_SCI_DMA
1482static bool filter(struct dma_chan *chan, void *slave)
1483{
1484 struct sh_dmae_slave *param = slave;
1485
1486 dev_dbg(chan->device->dev, "%s: slave ID %d\n", __func__,
1487 param->slave_id);
1488
Guennadi Liakhovetski937bb6e2011-06-24 13:56:15 +02001489 chan->private = param;
1490 return true;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001491}
1492
1493static void rx_timer_fn(unsigned long arg)
1494{
1495 struct sci_port *s = (struct sci_port *)arg;
1496 struct uart_port *port = &s->port;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001497 u16 scr = sci_in(port, SCSCR);
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001498
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001499 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001500 scr &= ~0x4000;
Paul Mundtce6738b2011-01-19 15:24:40 +09001501 enable_irq(s->cfg->irqs[1]);
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001502 }
Paul Mundtf43dc232011-01-13 15:06:28 +09001503 sci_out(port, SCSCR, scr | SCSCR_RIE);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001504 dev_dbg(port->dev, "DMA Rx timed out\n");
1505 schedule_work(&s->work_rx);
1506}
1507
1508static void sci_request_dma(struct uart_port *port)
1509{
1510 struct sci_port *s = to_sci_port(port);
1511 struct sh_dmae_slave *param;
1512 struct dma_chan *chan;
1513 dma_cap_mask_t mask;
1514 int nent;
1515
Guennadi Liakhovetski937bb6e2011-06-24 13:56:15 +02001516 dev_dbg(port->dev, "%s: port %d\n", __func__,
1517 port->line);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001518
Guennadi Liakhovetski937bb6e2011-06-24 13:56:15 +02001519 if (s->cfg->dma_slave_tx <= 0 || s->cfg->dma_slave_rx <= 0)
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001520 return;
1521
1522 dma_cap_zero(mask);
1523 dma_cap_set(DMA_SLAVE, mask);
1524
1525 param = &s->param_tx;
1526
1527 /* Slave ID, e.g., SHDMA_SLAVE_SCIF0_TX */
Paul Mundtce6738b2011-01-19 15:24:40 +09001528 param->slave_id = s->cfg->dma_slave_tx;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001529
1530 s->cookie_tx = -EINVAL;
1531 chan = dma_request_channel(mask, filter, param);
1532 dev_dbg(port->dev, "%s: TX: got channel %p\n", __func__, chan);
1533 if (chan) {
1534 s->chan_tx = chan;
1535 sg_init_table(&s->sg_tx, 1);
1536 /* UART circular tx buffer is an aligned page. */
1537 BUG_ON((int)port->state->xmit.buf & ~PAGE_MASK);
1538 sg_set_page(&s->sg_tx, virt_to_page(port->state->xmit.buf),
1539 UART_XMIT_SIZE, (int)port->state->xmit.buf & ~PAGE_MASK);
1540 nent = dma_map_sg(port->dev, &s->sg_tx, 1, DMA_TO_DEVICE);
1541 if (!nent)
1542 sci_tx_dma_release(s, false);
1543 else
1544 dev_dbg(port->dev, "%s: mapped %d@%p to %x\n", __func__,
1545 sg_dma_len(&s->sg_tx),
1546 port->state->xmit.buf, sg_dma_address(&s->sg_tx));
1547
1548 s->sg_len_tx = nent;
1549
1550 INIT_WORK(&s->work_tx, work_fn_tx);
1551 }
1552
1553 param = &s->param_rx;
1554
1555 /* Slave ID, e.g., SHDMA_SLAVE_SCIF0_RX */
Paul Mundtce6738b2011-01-19 15:24:40 +09001556 param->slave_id = s->cfg->dma_slave_rx;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001557
1558 chan = dma_request_channel(mask, filter, param);
1559 dev_dbg(port->dev, "%s: RX: got channel %p\n", __func__, chan);
1560 if (chan) {
1561 dma_addr_t dma[2];
1562 void *buf[2];
1563 int i;
1564
1565 s->chan_rx = chan;
1566
1567 s->buf_len_rx = 2 * max(16, (int)port->fifosize);
1568 buf[0] = dma_alloc_coherent(port->dev, s->buf_len_rx * 2,
1569 &dma[0], GFP_KERNEL);
1570
1571 if (!buf[0]) {
1572 dev_warn(port->dev,
1573 "failed to allocate dma buffer, using PIO\n");
1574 sci_rx_dma_release(s, true);
1575 return;
1576 }
1577
1578 buf[1] = buf[0] + s->buf_len_rx;
1579 dma[1] = dma[0] + s->buf_len_rx;
1580
1581 for (i = 0; i < 2; i++) {
1582 struct scatterlist *sg = &s->sg_rx[i];
1583
1584 sg_init_table(sg, 1);
1585 sg_set_page(sg, virt_to_page(buf[i]), s->buf_len_rx,
1586 (int)buf[i] & ~PAGE_MASK);
Magnus Dammf354a382010-03-19 04:47:01 +00001587 sg_dma_address(sg) = dma[i];
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001588 }
1589
1590 INIT_WORK(&s->work_rx, work_fn_rx);
1591 setup_timer(&s->rx_timer, rx_timer_fn, (unsigned long)s);
1592
1593 sci_submit_rx(s);
1594 }
1595}
1596
1597static void sci_free_dma(struct uart_port *port)
1598{
1599 struct sci_port *s = to_sci_port(port);
1600
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001601 if (s->chan_tx)
1602 sci_tx_dma_release(s, false);
1603 if (s->chan_rx)
1604 sci_rx_dma_release(s, false);
1605}
Paul Mundt27bd1072011-01-19 15:37:31 +09001606#else
1607static inline void sci_request_dma(struct uart_port *port)
1608{
1609}
1610
1611static inline void sci_free_dma(struct uart_port *port)
1612{
1613}
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001614#endif
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616static int sci_startup(struct uart_port *port)
1617{
Magnus Damma5660ad2009-01-21 15:14:38 +00001618 struct sci_port *s = to_sci_port(port);
Paul Mundt073e84c2011-01-19 17:30:53 +09001619 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001621 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1622
Paul Mundt23241d42011-06-28 13:55:31 +09001623 sci_port_enable(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Paul Mundt073e84c2011-01-19 17:30:53 +09001625 ret = sci_request_irq(s);
1626 if (unlikely(ret < 0))
1627 return ret;
1628
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001629 sci_request_dma(port);
Paul Mundt073e84c2011-01-19 17:30:53 +09001630
Yoshinori Satod6569012005-10-14 15:59:12 -07001631 sci_start_tx(port);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001632 sci_start_rx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 return 0;
1635}
1636
1637static void sci_shutdown(struct uart_port *port)
1638{
Magnus Damma5660ad2009-01-21 15:14:38 +00001639 struct sci_port *s = to_sci_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001641 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 sci_stop_rx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +01001644 sci_stop_tx(port);
Paul Mundt073e84c2011-01-19 17:30:53 +09001645
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001646 sci_free_dma(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 sci_free_irq(s);
1648
Paul Mundt23241d42011-06-28 13:55:31 +09001649 sci_port_disable(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
Paul Mundt26c92f32009-06-24 18:23:52 +09001652static unsigned int sci_scbrr_calc(unsigned int algo_id, unsigned int bps,
1653 unsigned long freq)
1654{
1655 switch (algo_id) {
1656 case SCBRR_ALGO_1:
1657 return ((freq + 16 * bps) / (16 * bps) - 1);
1658 case SCBRR_ALGO_2:
1659 return ((freq + 16 * bps) / (32 * bps) - 1);
1660 case SCBRR_ALGO_3:
1661 return (((freq * 2) + 16 * bps) / (16 * bps) - 1);
1662 case SCBRR_ALGO_4:
1663 return (((freq * 2) + 16 * bps) / (32 * bps) - 1);
1664 case SCBRR_ALGO_5:
1665 return (((freq * 1000 / 32) / bps) - 1);
1666 }
1667
1668 /* Warn, but use a safe default */
1669 WARN_ON(1);
Paul Mundte8183a62011-01-19 17:51:37 +09001670
Paul Mundt26c92f32009-06-24 18:23:52 +09001671 return ((freq + 16 * bps) / (32 * bps) - 1);
1672}
1673
Magnus Damm1ba76222011-08-03 03:47:36 +00001674static void sci_reset(struct uart_port *port)
1675{
Paul Mundt0979e0e2011-11-24 18:35:49 +09001676 struct plat_sci_reg *reg;
Magnus Damm1ba76222011-08-03 03:47:36 +00001677 unsigned int status;
1678
1679 do {
1680 status = sci_in(port, SCxSR);
1681 } while (!(status & SCxSR_TEND(port)));
1682
1683 sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */
1684
Paul Mundt0979e0e2011-11-24 18:35:49 +09001685 reg = sci_getreg(port, SCFCR);
1686 if (reg->size)
Magnus Damm1ba76222011-08-03 03:47:36 +00001687 sci_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST);
1688}
1689
Alan Cox606d0992006-12-08 02:38:45 -08001690static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
1691 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Paul Mundt00b9de92009-06-24 17:53:33 +09001693 struct sci_port *s = to_sci_port(port);
Paul Mundt0979e0e2011-11-24 18:35:49 +09001694 struct plat_sci_reg *reg;
Magnus Damm1ba76222011-08-03 03:47:36 +00001695 unsigned int baud, smr_val, max_baud;
Paul Mundta2159b52008-10-02 19:09:13 +09001696 int t = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Magnus Damm154280f2009-12-22 03:37:28 +00001698 /*
1699 * earlyprintk comes here early on with port->uartclk set to zero.
1700 * the clock framework is not up and running at this point so here
1701 * we assume that 115200 is the maximum baud rate. please note that
1702 * the baud rate is not programmed during earlyprintk - it is assumed
1703 * that the previous boot loader has enabled required clocks and
1704 * setup the baud rate generator hardware for us already.
1705 */
1706 max_baud = port->uartclk ? port->uartclk / 16 : 115200;
1707
1708 baud = uart_get_baud_rate(port, termios, old, 0, max_baud);
1709 if (likely(baud && port->uartclk))
Paul Mundtce6738b2011-01-19 15:24:40 +09001710 t = sci_scbrr_calc(s->cfg->scbrr_algo_id, baud, port->uartclk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Paul Mundt23241d42011-06-28 13:55:31 +09001712 sci_port_enable(s);
Alexandre Courbot36003382011-03-03 08:04:42 +00001713
Magnus Damm1ba76222011-08-03 03:47:36 +00001714 sci_reset(port);
Paul Mundte108b2c2006-09-27 16:32:13 +09001715
1716 smr_val = sci_in(port, SCSMR) & 3;
Paul Mundte8183a62011-01-19 17:51:37 +09001717
Paul Mundte108b2c2006-09-27 16:32:13 +09001718 if ((termios->c_cflag & CSIZE) == CS7)
1719 smr_val |= 0x40;
1720 if (termios->c_cflag & PARENB)
1721 smr_val |= 0x20;
1722 if (termios->c_cflag & PARODD)
1723 smr_val |= 0x30;
1724 if (termios->c_cflag & CSTOPB)
1725 smr_val |= 0x08;
1726
1727 uart_update_timeout(port, termios->c_cflag, baud);
1728
1729 sci_out(port, SCSMR, smr_val);
1730
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001731 dev_dbg(port->dev, "%s: SMR %x, t %x, SCSCR %x\n", __func__, smr_val, t,
Paul Mundtce6738b2011-01-19 15:24:40 +09001732 s->cfg->scscr);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (t > 0) {
Michael Trimarchie7c98dc2008-11-13 18:18:35 +09001735 if (t >= 256) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 sci_out(port, SCSMR, (sci_in(port, SCSMR) & ~3) | 1);
1737 t >>= 2;
Michael Trimarchie7c98dc2008-11-13 18:18:35 +09001738 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 sci_out(port, SCSMR, sci_in(port, SCSMR) & ~3);
Michael Trimarchie7c98dc2008-11-13 18:18:35 +09001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 sci_out(port, SCBRR, t);
1742 udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */
1743 }
1744
Paul Mundtd5701642008-12-16 20:07:27 +09001745 sci_init_pins(port, termios->c_cflag);
Paul Mundt0979e0e2011-11-24 18:35:49 +09001746
1747 reg = sci_getreg(port, SCFCR);
1748 if (reg->size) {
1749 unsigned short ctrl;
1750
1751 ctrl = sci_in(port, SCFCR);
1752 if (termios->c_cflag & CRTSCTS)
1753 ctrl |= SCFCR_MCE;
1754 else
1755 ctrl &= ~SCFCR_MCE;
1756 sci_out(port, SCFCR, ctrl);
1757 }
Paul Mundtb7a76e42006-02-01 03:06:06 -08001758
Paul Mundtce6738b2011-01-19 15:24:40 +09001759 sci_out(port, SCSCR, s->cfg->scscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001761#ifdef CONFIG_SERIAL_SH_SCI_DMA
1762 /*
1763 * Calculate delay for 1.5 DMA buffers: see
1764 * drivers/serial/serial_core.c::uart_update_timeout(). With 10 bits
1765 * (CS8), 250Hz, 115200 baud and 64 bytes FIFO, the above function
1766 * calculates 1 jiffie for the data plus 5 jiffies for the "slop(e)."
1767 * Then below we calculate 3 jiffies (12ms) for 1.5 DMA buffers (3 FIFO
1768 * sizes), but it has been found out experimentally, that this is not
1769 * enough: the driver too often needlessly runs on a DMA timeout. 20ms
1770 * as a minimum seem to work perfectly.
1771 */
1772 if (s->chan_rx) {
1773 s->rx_timeout = (port->timeout - HZ / 50) * s->buf_len_rx * 3 /
1774 port->fifosize / 2;
1775 dev_dbg(port->dev,
1776 "DMA Rx t-out %ums, tty t-out %u jiffies\n",
1777 s->rx_timeout * 1000 / HZ, port->timeout);
1778 if (s->rx_timeout < msecs_to_jiffies(20))
1779 s->rx_timeout = msecs_to_jiffies(20);
1780 }
1781#endif
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 if ((termios->c_cflag & CREAD) != 0)
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001784 sci_start_rx(port);
Alexandre Courbot36003382011-03-03 08:04:42 +00001785
Paul Mundt23241d42011-06-28 13:55:31 +09001786 sci_port_disable(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
1789static const char *sci_type(struct uart_port *port)
1790{
1791 switch (port->type) {
Michael Trimarchie7c98dc2008-11-13 18:18:35 +09001792 case PORT_IRDA:
1793 return "irda";
1794 case PORT_SCI:
1795 return "sci";
1796 case PORT_SCIF:
1797 return "scif";
1798 case PORT_SCIFA:
1799 return "scifa";
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001800 case PORT_SCIFB:
1801 return "scifb";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
Paul Mundtfa439722008-09-04 18:53:58 +09001804 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
Paul Mundte2651642011-01-20 21:24:03 +09001807static inline unsigned long sci_port_size(struct uart_port *port)
1808{
1809 /*
1810 * Pick an arbitrary size that encapsulates all of the base
1811 * registers by default. This can be optimized later, or derived
1812 * from platform resource data at such a time that ports begin to
1813 * behave more erratically.
1814 */
1815 return 64;
1816}
1817
Paul Mundtf6e94952011-01-21 15:25:36 +09001818static int sci_remap_port(struct uart_port *port)
1819{
1820 unsigned long size = sci_port_size(port);
1821
1822 /*
1823 * Nothing to do if there's already an established membase.
1824 */
1825 if (port->membase)
1826 return 0;
1827
1828 if (port->flags & UPF_IOREMAP) {
1829 port->membase = ioremap_nocache(port->mapbase, size);
1830 if (unlikely(!port->membase)) {
1831 dev_err(port->dev, "can't remap port#%d\n", port->line);
1832 return -ENXIO;
1833 }
1834 } else {
1835 /*
1836 * For the simple (and majority of) cases where we don't
1837 * need to do any remapping, just cast the cookie
1838 * directly.
1839 */
1840 port->membase = (void __iomem *)port->mapbase;
1841 }
1842
1843 return 0;
1844}
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846static void sci_release_port(struct uart_port *port)
1847{
Paul Mundte2651642011-01-20 21:24:03 +09001848 if (port->flags & UPF_IOREMAP) {
1849 iounmap(port->membase);
1850 port->membase = NULL;
1851 }
1852
1853 release_mem_region(port->mapbase, sci_port_size(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
1855
1856static int sci_request_port(struct uart_port *port)
1857{
Paul Mundte2651642011-01-20 21:24:03 +09001858 unsigned long size = sci_port_size(port);
1859 struct resource *res;
Paul Mundtf6e94952011-01-21 15:25:36 +09001860 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Paul Mundt10205202011-01-21 16:00:31 +09001862 res = request_mem_region(port->mapbase, size, dev_name(port->dev));
Paul Mundte2651642011-01-20 21:24:03 +09001863 if (unlikely(res == NULL))
1864 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Paul Mundtf6e94952011-01-21 15:25:36 +09001866 ret = sci_remap_port(port);
1867 if (unlikely(ret != 0)) {
1868 release_resource(res);
1869 return ret;
Paul Mundt7ff731a2008-10-01 15:46:58 +09001870 }
Paul Mundte2651642011-01-20 21:24:03 +09001871
1872 return 0;
1873}
1874
1875static void sci_config_port(struct uart_port *port, int flags)
1876{
1877 if (flags & UART_CONFIG_TYPE) {
1878 struct sci_port *sport = to_sci_port(port);
1879
1880 port->type = sport->cfg->type;
1881 sci_request_port(port);
1882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
1885static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
1886{
Magnus Damma5660ad2009-01-21 15:14:38 +00001887 struct sci_port *s = to_sci_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Paul Mundtce6738b2011-01-19 15:24:40 +09001889 if (ser->irq != s->cfg->irqs[SCIx_TXI_IRQ] || ser->irq > nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 return -EINVAL;
1891 if (ser->baud_base < 2400)
1892 /* No paper tape reader for Mitch.. */
1893 return -EINVAL;
1894
1895 return 0;
1896}
1897
1898static struct uart_ops sci_uart_ops = {
1899 .tx_empty = sci_tx_empty,
1900 .set_mctrl = sci_set_mctrl,
1901 .get_mctrl = sci_get_mctrl,
1902 .start_tx = sci_start_tx,
1903 .stop_tx = sci_stop_tx,
1904 .stop_rx = sci_stop_rx,
1905 .enable_ms = sci_enable_ms,
1906 .break_ctl = sci_break_ctl,
1907 .startup = sci_startup,
1908 .shutdown = sci_shutdown,
1909 .set_termios = sci_set_termios,
1910 .type = sci_type,
1911 .release_port = sci_release_port,
1912 .request_port = sci_request_port,
1913 .config_port = sci_config_port,
1914 .verify_port = sci_verify_port,
Paul Mundt07d2a1a2008-12-11 19:06:43 +09001915#ifdef CONFIG_CONSOLE_POLL
1916 .poll_get_char = sci_poll_get_char,
1917 .poll_put_char = sci_poll_put_char,
1918#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919};
1920
Paul Mundtc7ed1ab2010-03-10 18:35:14 +09001921static int __devinit sci_init_single(struct platform_device *dev,
1922 struct sci_port *sci_port,
1923 unsigned int index,
1924 struct plat_sci_port *p)
Paul Mundte108b2c2006-09-27 16:32:13 +09001925{
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001926 struct uart_port *port = &sci_port->port;
Paul Mundt3127c6b2011-06-28 13:44:37 +09001927 int ret;
Paul Mundte108b2c2006-09-27 16:32:13 +09001928
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001929 port->ops = &sci_uart_ops;
1930 port->iotype = UPIO_MEM;
1931 port->line = index;
Markus Pietrek75136d42010-01-15 08:33:20 +09001932
1933 switch (p->type) {
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001934 case PORT_SCIFB:
1935 port->fifosize = 256;
1936 break;
Markus Pietrek75136d42010-01-15 08:33:20 +09001937 case PORT_SCIFA:
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001938 port->fifosize = 64;
Markus Pietrek75136d42010-01-15 08:33:20 +09001939 break;
1940 case PORT_SCIF:
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001941 port->fifosize = 16;
Markus Pietrek75136d42010-01-15 08:33:20 +09001942 break;
1943 default:
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001944 port->fifosize = 1;
Markus Pietrek75136d42010-01-15 08:33:20 +09001945 break;
1946 }
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00001947
Paul Mundt3127c6b2011-06-28 13:44:37 +09001948 if (p->regtype == SCIx_PROBE_REGTYPE) {
1949 ret = sci_probe_regmap(p);
Rafael J. Wysockifc971142011-08-08 00:26:50 +02001950 if (unlikely(ret))
Paul Mundt3127c6b2011-06-28 13:44:37 +09001951 return ret;
1952 }
Paul Mundt61a69762011-06-14 12:40:19 +09001953
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00001954 if (dev) {
Paul Mundtc7ed1ab2010-03-10 18:35:14 +09001955 sci_port->iclk = clk_get(&dev->dev, "sci_ick");
1956 if (IS_ERR(sci_port->iclk)) {
1957 sci_port->iclk = clk_get(&dev->dev, "peripheral_clk");
1958 if (IS_ERR(sci_port->iclk)) {
1959 dev_err(&dev->dev, "can't get iclk\n");
1960 return PTR_ERR(sci_port->iclk);
1961 }
1962 }
1963
1964 /*
1965 * The function clock is optional, ignore it if we can't
1966 * find it.
1967 */
1968 sci_port->fclk = clk_get(&dev->dev, "sci_fck");
1969 if (IS_ERR(sci_port->fclk))
1970 sci_port->fclk = NULL;
1971
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001972 port->dev = &dev->dev;
Magnus Damm5e50d2d2011-04-19 10:38:25 +00001973
Rafael J. Wysocki5a50a012011-08-24 21:41:08 +02001974 pm_runtime_irq_safe(&dev->dev);
Magnus Damm5e50d2d2011-04-19 10:38:25 +00001975 pm_runtime_enable(&dev->dev);
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00001976 }
Paul Mundte108b2c2006-09-27 16:32:13 +09001977
Magnus Damm7ed7e072009-01-21 15:14:14 +00001978 sci_port->break_timer.data = (unsigned long)sci_port;
1979 sci_port->break_timer.function = sci_break_timer;
1980 init_timer(&sci_port->break_timer);
Paul Mundte108b2c2006-09-27 16:32:13 +09001981
Paul Mundtdebf9502011-06-08 18:19:37 +09001982 /*
1983 * Establish some sensible defaults for the error detection.
1984 */
1985 if (!p->error_mask)
1986 p->error_mask = (p->type == PORT_SCI) ?
1987 SCI_DEFAULT_ERROR_MASK : SCIF_DEFAULT_ERROR_MASK;
1988
1989 /*
1990 * Establish sensible defaults for the overrun detection, unless
1991 * the part has explicitly disabled support for it.
1992 */
1993 if (p->overrun_bit != SCIx_NOT_SUPPORTED) {
1994 if (p->type == PORT_SCI)
1995 p->overrun_bit = 5;
1996 else if (p->scbrr_algo_id == SCBRR_ALGO_4)
1997 p->overrun_bit = 9;
1998 else
1999 p->overrun_bit = 0;
2000
2001 /*
2002 * Make the error mask inclusive of overrun detection, if
2003 * supported.
2004 */
2005 p->error_mask |= (1 << p->overrun_bit);
2006 }
2007
Paul Mundtce6738b2011-01-19 15:24:40 +09002008 sci_port->cfg = p;
Magnus Damm7ed7e072009-01-21 15:14:14 +00002009
Paul Mundtce6738b2011-01-19 15:24:40 +09002010 port->mapbase = p->mapbase;
2011 port->type = p->type;
Paul Mundtf43dc232011-01-13 15:06:28 +09002012 port->flags = p->flags;
Paul Mundt61a69762011-06-14 12:40:19 +09002013 port->regshift = p->regshift;
Paul Mundtce6738b2011-01-19 15:24:40 +09002014
2015 /*
Paul Mundt61a69762011-06-14 12:40:19 +09002016 * The UART port needs an IRQ value, so we peg this to the RX IRQ
Paul Mundtce6738b2011-01-19 15:24:40 +09002017 * for the multi-IRQ ports, which is where we are primarily
2018 * concerned with the shutdown path synchronization.
2019 *
2020 * For the muxed case there's nothing more to do.
2021 */
Magnus Damm54aa89e2011-04-21 13:08:46 +00002022 port->irq = p->irqs[SCIx_RXI_IRQ];
Yong Zhang9cfb5c02011-09-22 16:59:15 +08002023 port->irqflags = 0;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09002024
Paul Mundt61a69762011-06-14 12:40:19 +09002025 port->serial_in = sci_serial_in;
2026 port->serial_out = sci_serial_out;
2027
Guennadi Liakhovetski937bb6e2011-06-24 13:56:15 +02002028 if (p->dma_slave_tx > 0 && p->dma_slave_rx > 0)
2029 dev_dbg(port->dev, "DMA tx %d, rx %d\n",
2030 p->dma_slave_tx, p->dma_slave_rx);
Magnus Damm7ed7e072009-01-21 15:14:14 +00002031
Paul Mundtc7ed1ab2010-03-10 18:35:14 +09002032 return 0;
Paul Mundte108b2c2006-09-27 16:32:13 +09002033}
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
Magnus Dammdc8e6f52009-01-21 15:14:06 +00002036static void serial_console_putchar(struct uart_port *port, int ch)
2037{
2038 sci_poll_put_char(port, ch);
2039}
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041/*
2042 * Print a string to the serial port trying not to disturb
2043 * any possible real use of the port...
2044 */
2045static void serial_console_write(struct console *co, const char *s,
2046 unsigned count)
2047{
Paul Mundt906b17d2011-01-21 16:19:53 +09002048 struct sci_port *sci_port = &sci_ports[co->index];
2049 struct uart_port *port = &sci_port->port;
Magnus Damm973e5d52009-02-24 15:57:12 +09002050 unsigned short bits;
Paul Mundt07d2a1a2008-12-11 19:06:43 +09002051
Paul Mundt23241d42011-06-28 13:55:31 +09002052 sci_port_enable(sci_port);
Magnus Damm501b8252009-01-21 15:14:30 +00002053
2054 uart_console_write(port, s, count, serial_console_putchar);
Magnus Damm973e5d52009-02-24 15:57:12 +09002055
2056 /* wait until fifo is empty and last bit has been transmitted */
2057 bits = SCxSR_TDxE(port) | SCxSR_TEND(port);
2058 while ((sci_in(port, SCxSR) & bits) != bits)
2059 cpu_relax();
Magnus Damm501b8252009-01-21 15:14:30 +00002060
Paul Mundt23241d42011-06-28 13:55:31 +09002061 sci_port_disable(sci_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002064static int __devinit serial_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Magnus Dammdc8e6f52009-01-21 15:14:06 +00002066 struct sci_port *sci_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 struct uart_port *port;
2068 int baud = 115200;
2069 int bits = 8;
2070 int parity = 'n';
2071 int flow = 'n';
2072 int ret;
2073
Paul Mundte108b2c2006-09-27 16:32:13 +09002074 /*
Paul Mundt906b17d2011-01-21 16:19:53 +09002075 * Refuse to handle any bogus ports.
Paul Mundte108b2c2006-09-27 16:32:13 +09002076 */
Paul Mundt906b17d2011-01-21 16:19:53 +09002077 if (co->index < 0 || co->index >= SCI_NPORTS)
Paul Mundte108b2c2006-09-27 16:32:13 +09002078 return -ENODEV;
Paul Mundte108b2c2006-09-27 16:32:13 +09002079
Paul Mundt906b17d2011-01-21 16:19:53 +09002080 sci_port = &sci_ports[co->index];
2081 port = &sci_port->port;
2082
Alexandre Courbotb2267a62011-02-09 03:18:46 +00002083 /*
2084 * Refuse to handle uninitialized ports.
2085 */
2086 if (!port->ops)
2087 return -ENODEV;
2088
Paul Mundtf6e94952011-01-21 15:25:36 +09002089 ret = sci_remap_port(port);
2090 if (unlikely(ret != 0))
2091 return ret;
Paul Mundte108b2c2006-09-27 16:32:13 +09002092
Paul Mundt23241d42011-06-28 13:55:31 +09002093 sci_port_enable(sci_port);
Paul Mundte108b2c2006-09-27 16:32:13 +09002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 if (options)
2096 uart_parse_options(options, &baud, &parity, &bits, &flow);
2097
Magnus Damm1ba76222011-08-03 03:47:36 +00002098 sci_port_disable(sci_port);
2099
Paul Mundtab7cfb52011-06-01 14:47:42 +09002100 return uart_set_options(port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
2103static struct console serial_console = {
2104 .name = "ttySC",
Paul Mundt906b17d2011-01-21 16:19:53 +09002105 .device = uart_console_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 .write = serial_console_write,
2107 .setup = serial_console_setup,
Paul Mundtfa5da2f2007-03-08 17:27:37 +09002108 .flags = CON_PRINTBUFFER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 .index = -1,
Paul Mundt906b17d2011-01-21 16:19:53 +09002110 .data = &sci_uart_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111};
2112
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002113static struct console early_serial_console = {
2114 .name = "early_ttySC",
2115 .write = serial_console_write,
2116 .flags = CON_PRINTBUFFER,
Paul Mundt906b17d2011-01-21 16:19:53 +09002117 .index = -1,
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002118};
Paul Mundtecdf8a42011-01-21 00:05:48 +09002119
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002120static char early_serial_buf[32];
2121
Paul Mundtecdf8a42011-01-21 00:05:48 +09002122static int __devinit sci_probe_earlyprintk(struct platform_device *pdev)
2123{
2124 struct plat_sci_port *cfg = pdev->dev.platform_data;
2125
2126 if (early_serial_console.data)
2127 return -EEXIST;
2128
2129 early_serial_console.index = pdev->id;
Paul Mundtecdf8a42011-01-21 00:05:48 +09002130
Paul Mundt906b17d2011-01-21 16:19:53 +09002131 sci_init_single(NULL, &sci_ports[pdev->id], pdev->id, cfg);
Paul Mundtecdf8a42011-01-21 00:05:48 +09002132
2133 serial_console_setup(&early_serial_console, early_serial_buf);
2134
2135 if (!strstr(early_serial_buf, "keep"))
2136 early_serial_console.flags |= CON_BOOT;
2137
2138 register_console(&early_serial_console);
2139 return 0;
2140}
Nobuhiro Iwamatsu6a8c9792011-03-24 02:20:56 +00002141
Magnus Damm1ba76222011-08-03 03:47:36 +00002142#define uart_console(port) ((port)->cons->index == (port)->line)
2143
2144static int sci_runtime_suspend(struct device *dev)
2145{
2146 struct sci_port *sci_port = dev_get_drvdata(dev);
2147 struct uart_port *port = &sci_port->port;
2148
2149 if (uart_console(port)) {
Paul Mundt0979e0e2011-11-24 18:35:49 +09002150 struct plat_sci_reg *reg;
2151
Magnus Damm1ba76222011-08-03 03:47:36 +00002152 sci_port->saved_smr = sci_in(port, SCSMR);
2153 sci_port->saved_brr = sci_in(port, SCBRR);
Paul Mundt0979e0e2011-11-24 18:35:49 +09002154
2155 reg = sci_getreg(port, SCFCR);
2156 if (reg->size)
2157 sci_port->saved_fcr = sci_in(port, SCFCR);
2158 else
2159 sci_port->saved_fcr = 0;
Magnus Damm1ba76222011-08-03 03:47:36 +00002160 }
2161 return 0;
2162}
2163
2164static int sci_runtime_resume(struct device *dev)
2165{
2166 struct sci_port *sci_port = dev_get_drvdata(dev);
2167 struct uart_port *port = &sci_port->port;
2168
2169 if (uart_console(port)) {
2170 sci_reset(port);
2171 sci_out(port, SCSMR, sci_port->saved_smr);
2172 sci_out(port, SCBRR, sci_port->saved_brr);
Paul Mundt0979e0e2011-11-24 18:35:49 +09002173
2174 if (sci_port->saved_fcr)
2175 sci_out(port, SCFCR, sci_port->saved_fcr);
2176
Magnus Damm1ba76222011-08-03 03:47:36 +00002177 sci_out(port, SCSCR, sci_port->cfg->scscr);
2178 }
2179 return 0;
2180}
2181
Nobuhiro Iwamatsu6a8c9792011-03-24 02:20:56 +00002182#define SCI_CONSOLE (&serial_console)
2183
Paul Mundtecdf8a42011-01-21 00:05:48 +09002184#else
2185static inline int __devinit sci_probe_earlyprintk(struct platform_device *pdev)
2186{
2187 return -EINVAL;
2188}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Nobuhiro Iwamatsu6a8c9792011-03-24 02:20:56 +00002190#define SCI_CONSOLE NULL
Magnus Damm1ba76222011-08-03 03:47:36 +00002191#define sci_runtime_suspend NULL
2192#define sci_runtime_resume NULL
Nobuhiro Iwamatsu6a8c9792011-03-24 02:20:56 +00002193
2194#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196static char banner[] __initdata =
2197 KERN_INFO "SuperH SCI(F) driver initialized\n";
2198
2199static struct uart_driver sci_uart_driver = {
2200 .owner = THIS_MODULE,
2201 .driver_name = "sci",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 .dev_name = "ttySC",
2203 .major = SCI_MAJOR,
2204 .minor = SCI_MINOR_START,
Paul Mundte108b2c2006-09-27 16:32:13 +09002205 .nr = SCI_NPORTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 .cons = SCI_CONSOLE,
2207};
2208
Paul Mundt54507f62009-05-08 23:48:33 +09002209static int sci_remove(struct platform_device *dev)
Magnus Damme552de22009-01-21 15:13:42 +00002210{
Paul Mundtd535a232011-01-19 17:19:35 +09002211 struct sci_port *port = platform_get_drvdata(dev);
Magnus Damme552de22009-01-21 15:13:42 +00002212
Paul Mundtd535a232011-01-19 17:19:35 +09002213 cpufreq_unregister_notifier(&port->freq_transition,
2214 CPUFREQ_TRANSITION_NOTIFIER);
Magnus Damme552de22009-01-21 15:13:42 +00002215
Paul Mundtd535a232011-01-19 17:19:35 +09002216 uart_remove_one_port(&sci_uart_driver, &port->port);
Magnus Damme552de22009-01-21 15:13:42 +00002217
Paul Mundtd535a232011-01-19 17:19:35 +09002218 clk_put(port->iclk);
2219 clk_put(port->fclk);
2220
Magnus Damm5e50d2d2011-04-19 10:38:25 +00002221 pm_runtime_disable(&dev->dev);
Magnus Damme552de22009-01-21 15:13:42 +00002222 return 0;
2223}
2224
Magnus Damm0ee70712009-01-21 15:13:50 +00002225static int __devinit sci_probe_single(struct platform_device *dev,
2226 unsigned int index,
2227 struct plat_sci_port *p,
2228 struct sci_port *sciport)
2229{
Magnus Damm0ee70712009-01-21 15:13:50 +00002230 int ret;
2231
2232 /* Sanity check */
2233 if (unlikely(index >= SCI_NPORTS)) {
2234 dev_notice(&dev->dev, "Attempting to register port "
2235 "%d when only %d are available.\n",
2236 index+1, SCI_NPORTS);
2237 dev_notice(&dev->dev, "Consider bumping "
2238 "CONFIG_SERIAL_SH_SCI_NR_UARTS!\n");
2239 return 0;
2240 }
2241
Paul Mundtc7ed1ab2010-03-10 18:35:14 +09002242 ret = sci_init_single(dev, sciport, index, p);
2243 if (ret)
2244 return ret;
Magnus Damm0ee70712009-01-21 15:13:50 +00002245
Paul Mundtd535a232011-01-19 17:19:35 +09002246 return uart_add_one_port(&sci_uart_driver, &sciport->port);
Magnus Damm0ee70712009-01-21 15:13:50 +00002247}
2248
Paul Mundte108b2c2006-09-27 16:32:13 +09002249static int __devinit sci_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
Paul Mundte108b2c2006-09-27 16:32:13 +09002251 struct plat_sci_port *p = dev->dev.platform_data;
Paul Mundtd535a232011-01-19 17:19:35 +09002252 struct sci_port *sp = &sci_ports[dev->id];
Paul Mundtecdf8a42011-01-21 00:05:48 +09002253 int ret;
Magnus Damme552de22009-01-21 15:13:42 +00002254
Paul Mundtecdf8a42011-01-21 00:05:48 +09002255 /*
2256 * If we've come here via earlyprintk initialization, head off to
2257 * the special early probe. We don't have sufficient device state
2258 * to make it beyond this yet.
2259 */
2260 if (is_early_platform_device(dev))
2261 return sci_probe_earlyprintk(dev);
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002262
Paul Mundtd535a232011-01-19 17:19:35 +09002263 platform_set_drvdata(dev, sp);
Magnus Damme552de22009-01-21 15:13:42 +00002264
Paul Mundt906b17d2011-01-21 16:19:53 +09002265 ret = sci_probe_single(dev, dev->id, p, sp);
Paul Mundtd535a232011-01-19 17:19:35 +09002266 if (ret)
2267 goto err_unreg;
Magnus Damme552de22009-01-21 15:13:42 +00002268
Paul Mundtd535a232011-01-19 17:19:35 +09002269 sp->freq_transition.notifier_call = sci_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Paul Mundtd535a232011-01-19 17:19:35 +09002271 ret = cpufreq_register_notifier(&sp->freq_transition,
2272 CPUFREQ_TRANSITION_NOTIFIER);
2273 if (unlikely(ret < 0))
2274 goto err_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276#ifdef CONFIG_SH_STANDARD_BIOS
2277 sh_bios_gdb_detach();
2278#endif
2279
Paul Mundte108b2c2006-09-27 16:32:13 +09002280 return 0;
Paul Mundt7ff731a2008-10-01 15:46:58 +09002281
2282err_unreg:
Magnus Damme552de22009-01-21 15:13:42 +00002283 sci_remove(dev);
Paul Mundt7ff731a2008-10-01 15:46:58 +09002284 return ret;
Paul Mundte108b2c2006-09-27 16:32:13 +09002285}
2286
Paul Mundt6daa79b2009-06-15 07:07:38 +09002287static int sci_suspend(struct device *dev)
Paul Mundte108b2c2006-09-27 16:32:13 +09002288{
Paul Mundtd535a232011-01-19 17:19:35 +09002289 struct sci_port *sport = dev_get_drvdata(dev);
Paul Mundte108b2c2006-09-27 16:32:13 +09002290
Paul Mundtd535a232011-01-19 17:19:35 +09002291 if (sport)
2292 uart_suspend_port(&sci_uart_driver, &sport->port);
Paul Mundte108b2c2006-09-27 16:32:13 +09002293
2294 return 0;
2295}
2296
Paul Mundt6daa79b2009-06-15 07:07:38 +09002297static int sci_resume(struct device *dev)
Paul Mundte108b2c2006-09-27 16:32:13 +09002298{
Paul Mundtd535a232011-01-19 17:19:35 +09002299 struct sci_port *sport = dev_get_drvdata(dev);
Paul Mundte108b2c2006-09-27 16:32:13 +09002300
Paul Mundtd535a232011-01-19 17:19:35 +09002301 if (sport)
2302 uart_resume_port(&sci_uart_driver, &sport->port);
Paul Mundte108b2c2006-09-27 16:32:13 +09002303
2304 return 0;
2305}
2306
Alexey Dobriyan47145212009-12-14 18:00:08 -08002307static const struct dev_pm_ops sci_dev_pm_ops = {
Magnus Damm1ba76222011-08-03 03:47:36 +00002308 .runtime_suspend = sci_runtime_suspend,
2309 .runtime_resume = sci_runtime_resume,
Paul Mundt6daa79b2009-06-15 07:07:38 +09002310 .suspend = sci_suspend,
2311 .resume = sci_resume,
2312};
2313
Paul Mundte108b2c2006-09-27 16:32:13 +09002314static struct platform_driver sci_driver = {
2315 .probe = sci_probe,
Uwe Kleine-Königb9e39c82009-11-24 22:07:32 +01002316 .remove = sci_remove,
Paul Mundte108b2c2006-09-27 16:32:13 +09002317 .driver = {
2318 .name = "sh-sci",
2319 .owner = THIS_MODULE,
Paul Mundt6daa79b2009-06-15 07:07:38 +09002320 .pm = &sci_dev_pm_ops,
Paul Mundte108b2c2006-09-27 16:32:13 +09002321 },
2322};
2323
2324static int __init sci_init(void)
2325{
2326 int ret;
2327
2328 printk(banner);
2329
Paul Mundte108b2c2006-09-27 16:32:13 +09002330 ret = uart_register_driver(&sci_uart_driver);
2331 if (likely(ret == 0)) {
2332 ret = platform_driver_register(&sci_driver);
2333 if (unlikely(ret))
2334 uart_unregister_driver(&sci_uart_driver);
2335 }
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return ret;
2338}
2339
2340static void __exit sci_exit(void)
2341{
Paul Mundte108b2c2006-09-27 16:32:13 +09002342 platform_driver_unregister(&sci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 uart_unregister_driver(&sci_uart_driver);
2344}
2345
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002346#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
2347early_platform_init_buffer("earlyprintk", &sci_driver,
2348 early_serial_buf, ARRAY_SIZE(early_serial_buf));
2349#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350module_init(sci_init);
2351module_exit(sci_exit);
2352
Paul Mundte108b2c2006-09-27 16:32:13 +09002353MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07002354MODULE_ALIAS("platform:sh-sci");
Paul Mundt7f405f92011-06-28 13:47:40 +09002355MODULE_AUTHOR("Paul Mundt");
2356MODULE_DESCRIPTION("SuperH SCI(F) serial driver");