blob: 99a64fd16d4698380bcfd2411ec3980cbe0d310a [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
Paul Mundt85f094e2008-04-25 16:04:20 +090026#include <linux/clk.h>
Laurent Pinchart8fb96312013-12-06 10:59:10 +010027#include <linux/console.h>
Paul Mundtfa5da2f2007-03-08 17:27:37 +090028#include <linux/ctype.h>
Laurent Pinchart8fb96312013-12-06 10:59:10 +010029#include <linux/cpufreq.h>
30#include <linux/delay.h>
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090031#include <linux/dmaengine.h>
Magnus Damm5beabc72011-08-02 09:42:54 +000032#include <linux/dma-mapping.h>
Laurent Pinchart8fb96312013-12-06 10:59:10 +010033#include <linux/err.h>
34#include <linux/errno.h>
Laurent Pinchart8fb96312013-12-06 10:59:10 +010035#include <linux/init.h>
36#include <linux/interrupt.h>
37#include <linux/ioport.h>
38#include <linux/major.h>
39#include <linux/module.h>
40#include <linux/mm.h>
41#include <linux/notifier.h>
42#include <linux/platform_device.h>
43#include <linux/pm_runtime.h>
44#include <linux/scatterlist.h>
45#include <linux/serial.h>
46#include <linux/serial_sci.h>
47#include <linux/sh_dma.h>
48#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/sysrq.h>
51#include <linux/timer.h>
52#include <linux/tty.h>
53#include <linux/tty_flip.h>
Paul Mundt85f094e2008-04-25 16:04:20 +090054
55#ifdef CONFIG_SUPERH
Paul Mundte108b2c2006-09-27 16:32:13 +090056#include <asm/sh_bios.h>
Paul Mundtb7a76e42006-02-01 03:06:06 -080057#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include "sh-sci.h"
60
Paul Mundte108b2c2006-09-27 16:32:13 +090061struct sci_port {
62 struct uart_port port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Paul Mundtce6738b2011-01-19 15:24:40 +090064 /* Platform configuration */
65 struct plat_sci_port *cfg;
Laurent Pinchart3ae988d2013-12-06 10:59:17 +010066 int overrun_bit;
67 unsigned int error_mask;
68
Paul Mundte108b2c2006-09-27 16:32:13 +090069
Paul Mundte108b2c2006-09-27 16:32:13 +090070 /* Break timer */
71 struct timer_list break_timer;
72 int break_flag;
dmitry pervushin1534a3b2007-04-24 13:41:12 +090073
Magnus Damm501b8252009-01-21 15:14:30 +000074 /* Interface clock */
75 struct clk *iclk;
Paul Mundtc7ed1ab2010-03-10 18:35:14 +090076 /* Function clock */
77 struct clk *fclk;
Paul Mundtedad1f22009-11-25 16:23:35 +090078
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +010079 int irqs[SCIx_NR_IRQS];
Paul Mundt9174fc82011-06-28 15:25:36 +090080 char *irqstr[SCIx_NR_IRQS];
81
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090082 struct dma_chan *chan_tx;
83 struct dma_chan *chan_rx;
Paul Mundtf43dc232011-01-13 15:06:28 +090084
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090085#ifdef CONFIG_SERIAL_SH_SCI_DMA
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090086 struct dma_async_tx_descriptor *desc_tx;
87 struct dma_async_tx_descriptor *desc_rx[2];
88 dma_cookie_t cookie_tx;
89 dma_cookie_t cookie_rx[2];
90 dma_cookie_t active_rx;
91 struct scatterlist sg_tx;
92 unsigned int sg_len_tx;
93 struct scatterlist sg_rx[2];
94 size_t buf_len_rx;
95 struct sh_dmae_slave param_tx;
96 struct sh_dmae_slave param_rx;
97 struct work_struct work_tx;
98 struct work_struct work_rx;
99 struct timer_list rx_timer;
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +0000100 unsigned int rx_timeout;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900101#endif
Magnus Damme552de22009-01-21 15:13:42 +0000102
Paul Mundtd535a232011-01-19 17:19:35 +0900103 struct notifier_block freq_transition;
Paul Mundte108b2c2006-09-27 16:32:13 +0900104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/* Function prototypes */
Paul Mundtd535a232011-01-19 17:19:35 +0900107static void sci_start_tx(struct uart_port *port);
Russell Kingb129a8c2005-08-31 10:12:14 +0100108static void sci_stop_tx(struct uart_port *port);
Paul Mundtd535a232011-01-19 17:19:35 +0900109static void sci_start_rx(struct uart_port *port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Paul Mundte108b2c2006-09-27 16:32:13 +0900111#define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
112
113static struct sci_port sci_ports[SCI_NPORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static struct uart_driver sci_uart_driver;
115
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900116static inline struct sci_port *
117to_sci_port(struct uart_port *uart)
118{
119 return container_of(uart, struct sci_port, port);
120}
121
Paul Mundt61a69762011-06-14 12:40:19 +0900122struct plat_sci_reg {
123 u8 offset, size;
124};
125
126/* Helper for invalidating specific entries of an inherited map. */
127#define sci_reg_invalid { .offset = 0, .size = 0 }
128
129static struct plat_sci_reg sci_regmap[SCIx_NR_REGTYPES][SCIx_NR_REGS] = {
130 [SCIx_PROBE_REGTYPE] = {
131 [0 ... SCIx_NR_REGS - 1] = sci_reg_invalid,
132 },
133
134 /*
135 * Common SCI definitions, dependent on the port's regshift
136 * value.
137 */
138 [SCIx_SCI_REGTYPE] = {
139 [SCSMR] = { 0x00, 8 },
140 [SCBRR] = { 0x01, 8 },
141 [SCSCR] = { 0x02, 8 },
142 [SCxTDR] = { 0x03, 8 },
143 [SCxSR] = { 0x04, 8 },
144 [SCxRDR] = { 0x05, 8 },
145 [SCFCR] = sci_reg_invalid,
146 [SCFDR] = sci_reg_invalid,
147 [SCTFDR] = sci_reg_invalid,
148 [SCRFDR] = sci_reg_invalid,
149 [SCSPTR] = sci_reg_invalid,
150 [SCLSR] = sci_reg_invalid,
Ulrich Hechtf303b362013-05-31 17:57:01 +0200151 [HSSRR] = sci_reg_invalid,
Paul Mundt61a69762011-06-14 12:40:19 +0900152 },
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,
Ulrich Hechtf303b362013-05-31 17:57:01 +0200171 [HSSRR] = sci_reg_invalid,
Paul Mundt61a69762011-06-14 12:40:19 +0900172 },
173
174 /*
175 * Common SCIFA definitions.
176 */
177 [SCIx_SCIFA_REGTYPE] = {
178 [SCSMR] = { 0x00, 16 },
179 [SCBRR] = { 0x04, 8 },
180 [SCSCR] = { 0x08, 16 },
181 [SCxTDR] = { 0x20, 8 },
182 [SCxSR] = { 0x14, 16 },
183 [SCxRDR] = { 0x24, 8 },
184 [SCFCR] = { 0x18, 16 },
185 [SCFDR] = { 0x1c, 16 },
186 [SCTFDR] = sci_reg_invalid,
187 [SCRFDR] = sci_reg_invalid,
188 [SCSPTR] = sci_reg_invalid,
189 [SCLSR] = sci_reg_invalid,
Ulrich Hechtf303b362013-05-31 17:57:01 +0200190 [HSSRR] = sci_reg_invalid,
Paul Mundt61a69762011-06-14 12:40:19 +0900191 },
192
193 /*
194 * Common SCIFB definitions.
195 */
196 [SCIx_SCIFB_REGTYPE] = {
197 [SCSMR] = { 0x00, 16 },
198 [SCBRR] = { 0x04, 8 },
199 [SCSCR] = { 0x08, 16 },
200 [SCxTDR] = { 0x40, 8 },
201 [SCxSR] = { 0x14, 16 },
202 [SCxRDR] = { 0x60, 8 },
203 [SCFCR] = { 0x18, 16 },
Takashi Yoshii8c66d6d2012-11-16 10:53:31 +0900204 [SCFDR] = sci_reg_invalid,
205 [SCTFDR] = { 0x38, 16 },
206 [SCRFDR] = { 0x3c, 16 },
Paul Mundt61a69762011-06-14 12:40:19 +0900207 [SCSPTR] = sci_reg_invalid,
208 [SCLSR] = sci_reg_invalid,
Ulrich Hechtf303b362013-05-31 17:57:01 +0200209 [HSSRR] = sci_reg_invalid,
Paul Mundt61a69762011-06-14 12:40:19 +0900210 },
211
212 /*
Phil Edworthy3af1f8a2011-10-03 15:16:47 +0100213 * Common SH-2(A) SCIF definitions for ports with FIFO data
214 * count registers.
215 */
216 [SCIx_SH2_SCIF_FIFODATA_REGTYPE] = {
217 [SCSMR] = { 0x00, 16 },
218 [SCBRR] = { 0x04, 8 },
219 [SCSCR] = { 0x08, 16 },
220 [SCxTDR] = { 0x0c, 8 },
221 [SCxSR] = { 0x10, 16 },
222 [SCxRDR] = { 0x14, 8 },
223 [SCFCR] = { 0x18, 16 },
224 [SCFDR] = { 0x1c, 16 },
225 [SCTFDR] = sci_reg_invalid,
226 [SCRFDR] = sci_reg_invalid,
227 [SCSPTR] = { 0x20, 16 },
228 [SCLSR] = { 0x24, 16 },
Ulrich Hechtf303b362013-05-31 17:57:01 +0200229 [HSSRR] = sci_reg_invalid,
Phil Edworthy3af1f8a2011-10-03 15:16:47 +0100230 },
231
232 /*
Paul Mundt61a69762011-06-14 12:40:19 +0900233 * Common SH-3 SCIF definitions.
234 */
235 [SCIx_SH3_SCIF_REGTYPE] = {
236 [SCSMR] = { 0x00, 8 },
237 [SCBRR] = { 0x02, 8 },
238 [SCSCR] = { 0x04, 8 },
239 [SCxTDR] = { 0x06, 8 },
240 [SCxSR] = { 0x08, 16 },
241 [SCxRDR] = { 0x0a, 8 },
242 [SCFCR] = { 0x0c, 8 },
243 [SCFDR] = { 0x0e, 16 },
244 [SCTFDR] = sci_reg_invalid,
245 [SCRFDR] = sci_reg_invalid,
246 [SCSPTR] = sci_reg_invalid,
247 [SCLSR] = sci_reg_invalid,
Ulrich Hechtf303b362013-05-31 17:57:01 +0200248 [HSSRR] = sci_reg_invalid,
Paul Mundt61a69762011-06-14 12:40:19 +0900249 },
250
251 /*
252 * Common SH-4(A) SCIF(B) definitions.
253 */
254 [SCIx_SH4_SCIF_REGTYPE] = {
255 [SCSMR] = { 0x00, 16 },
256 [SCBRR] = { 0x04, 8 },
257 [SCSCR] = { 0x08, 16 },
258 [SCxTDR] = { 0x0c, 8 },
259 [SCxSR] = { 0x10, 16 },
260 [SCxRDR] = { 0x14, 8 },
261 [SCFCR] = { 0x18, 16 },
262 [SCFDR] = { 0x1c, 16 },
263 [SCTFDR] = sci_reg_invalid,
264 [SCRFDR] = sci_reg_invalid,
265 [SCSPTR] = { 0x20, 16 },
266 [SCLSR] = { 0x24, 16 },
Ulrich Hechtf303b362013-05-31 17:57:01 +0200267 [HSSRR] = sci_reg_invalid,
268 },
269
270 /*
271 * Common HSCIF definitions.
272 */
273 [SCIx_HSCIF_REGTYPE] = {
274 [SCSMR] = { 0x00, 16 },
275 [SCBRR] = { 0x04, 8 },
276 [SCSCR] = { 0x08, 16 },
277 [SCxTDR] = { 0x0c, 8 },
278 [SCxSR] = { 0x10, 16 },
279 [SCxRDR] = { 0x14, 8 },
280 [SCFCR] = { 0x18, 16 },
281 [SCFDR] = { 0x1c, 16 },
282 [SCTFDR] = sci_reg_invalid,
283 [SCRFDR] = sci_reg_invalid,
284 [SCSPTR] = { 0x20, 16 },
285 [SCLSR] = { 0x24, 16 },
286 [HSSRR] = { 0x40, 16 },
Paul Mundt61a69762011-06-14 12:40:19 +0900287 },
288
289 /*
290 * Common SH-4(A) SCIF(B) definitions for ports without an SCSPTR
291 * register.
292 */
293 [SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE] = {
294 [SCSMR] = { 0x00, 16 },
295 [SCBRR] = { 0x04, 8 },
296 [SCSCR] = { 0x08, 16 },
297 [SCxTDR] = { 0x0c, 8 },
298 [SCxSR] = { 0x10, 16 },
299 [SCxRDR] = { 0x14, 8 },
300 [SCFCR] = { 0x18, 16 },
301 [SCFDR] = { 0x1c, 16 },
302 [SCTFDR] = sci_reg_invalid,
303 [SCRFDR] = sci_reg_invalid,
304 [SCSPTR] = sci_reg_invalid,
305 [SCLSR] = { 0x24, 16 },
Ulrich Hechtf303b362013-05-31 17:57:01 +0200306 [HSSRR] = sci_reg_invalid,
Paul Mundt61a69762011-06-14 12:40:19 +0900307 },
308
309 /*
310 * Common SH-4(A) SCIF(B) definitions for ports with FIFO data
311 * count registers.
312 */
313 [SCIx_SH4_SCIF_FIFODATA_REGTYPE] = {
314 [SCSMR] = { 0x00, 16 },
315 [SCBRR] = { 0x04, 8 },
316 [SCSCR] = { 0x08, 16 },
317 [SCxTDR] = { 0x0c, 8 },
318 [SCxSR] = { 0x10, 16 },
319 [SCxRDR] = { 0x14, 8 },
320 [SCFCR] = { 0x18, 16 },
321 [SCFDR] = { 0x1c, 16 },
322 [SCTFDR] = { 0x1c, 16 }, /* aliased to SCFDR */
323 [SCRFDR] = { 0x20, 16 },
324 [SCSPTR] = { 0x24, 16 },
325 [SCLSR] = { 0x28, 16 },
Ulrich Hechtf303b362013-05-31 17:57:01 +0200326 [HSSRR] = sci_reg_invalid,
Paul Mundt61a69762011-06-14 12:40:19 +0900327 },
328
329 /*
330 * SH7705-style SCIF(B) ports, lacking both SCSPTR and SCLSR
331 * registers.
332 */
333 [SCIx_SH7705_SCIF_REGTYPE] = {
334 [SCSMR] = { 0x00, 16 },
335 [SCBRR] = { 0x04, 8 },
336 [SCSCR] = { 0x08, 16 },
337 [SCxTDR] = { 0x20, 8 },
338 [SCxSR] = { 0x14, 16 },
339 [SCxRDR] = { 0x24, 8 },
340 [SCFCR] = { 0x18, 16 },
341 [SCFDR] = { 0x1c, 16 },
342 [SCTFDR] = sci_reg_invalid,
343 [SCRFDR] = sci_reg_invalid,
344 [SCSPTR] = sci_reg_invalid,
345 [SCLSR] = sci_reg_invalid,
Ulrich Hechtf303b362013-05-31 17:57:01 +0200346 [HSSRR] = sci_reg_invalid,
Paul Mundt61a69762011-06-14 12:40:19 +0900347 },
348};
349
Paul Mundt72b294c2011-06-14 17:38:19 +0900350#define sci_getreg(up, offset) (sci_regmap[to_sci_port(up)->cfg->regtype] + offset)
351
Paul Mundt61a69762011-06-14 12:40:19 +0900352/*
353 * The "offset" here is rather misleading, in that it refers to an enum
354 * value relative to the port mapping rather than the fixed offset
355 * itself, which needs to be manually retrieved from the platform's
356 * register map for the given port.
357 */
358static unsigned int sci_serial_in(struct uart_port *p, int offset)
359{
Paul Mundt72b294c2011-06-14 17:38:19 +0900360 struct plat_sci_reg *reg = sci_getreg(p, offset);
Paul Mundt61a69762011-06-14 12:40:19 +0900361
362 if (reg->size == 8)
363 return ioread8(p->membase + (reg->offset << p->regshift));
364 else if (reg->size == 16)
365 return ioread16(p->membase + (reg->offset << p->regshift));
366 else
367 WARN(1, "Invalid register access\n");
368
369 return 0;
370}
371
372static void sci_serial_out(struct uart_port *p, int offset, int value)
373{
Paul Mundt72b294c2011-06-14 17:38:19 +0900374 struct plat_sci_reg *reg = sci_getreg(p, offset);
Paul Mundt61a69762011-06-14 12:40:19 +0900375
376 if (reg->size == 8)
377 iowrite8(value, p->membase + (reg->offset << p->regshift));
378 else if (reg->size == 16)
379 iowrite16(value, p->membase + (reg->offset << p->regshift));
380 else
381 WARN(1, "Invalid register access\n");
382}
383
Paul Mundt61a69762011-06-14 12:40:19 +0900384static int sci_probe_regmap(struct plat_sci_port *cfg)
385{
386 switch (cfg->type) {
387 case PORT_SCI:
388 cfg->regtype = SCIx_SCI_REGTYPE;
389 break;
390 case PORT_IRDA:
391 cfg->regtype = SCIx_IRDA_REGTYPE;
392 break;
393 case PORT_SCIFA:
394 cfg->regtype = SCIx_SCIFA_REGTYPE;
395 break;
396 case PORT_SCIFB:
397 cfg->regtype = SCIx_SCIFB_REGTYPE;
398 break;
399 case PORT_SCIF:
400 /*
401 * The SH-4 is a bit of a misnomer here, although that's
402 * where this particular port layout originated. This
403 * configuration (or some slight variation thereof)
404 * remains the dominant model for all SCIFs.
405 */
406 cfg->regtype = SCIx_SH4_SCIF_REGTYPE;
407 break;
Ulrich Hechtf303b362013-05-31 17:57:01 +0200408 case PORT_HSCIF:
409 cfg->regtype = SCIx_HSCIF_REGTYPE;
410 break;
Paul Mundt61a69762011-06-14 12:40:19 +0900411 default:
412 printk(KERN_ERR "Can't probe register map for given port\n");
413 return -EINVAL;
414 }
415
416 return 0;
417}
418
Paul Mundt23241d42011-06-28 13:55:31 +0900419static void sci_port_enable(struct sci_port *sci_port)
420{
421 if (!sci_port->port.dev)
422 return;
423
424 pm_runtime_get_sync(sci_port->port.dev);
425
Laurent Pinchartb016b642013-11-28 18:11:46 +0100426 clk_prepare_enable(sci_port->iclk);
Paul Mundt23241d42011-06-28 13:55:31 +0900427 sci_port->port.uartclk = clk_get_rate(sci_port->iclk);
Laurent Pinchartb016b642013-11-28 18:11:46 +0100428 clk_prepare_enable(sci_port->fclk);
Paul Mundt23241d42011-06-28 13:55:31 +0900429}
430
431static void sci_port_disable(struct sci_port *sci_port)
432{
433 if (!sci_port->port.dev)
434 return;
435
Laurent Pinchartcaec7032013-11-28 18:11:45 +0100436 /* Cancel the break timer to ensure that the timer handler will not try
437 * to access the hardware with clocks and power disabled. Reset the
438 * break flag to make the break debouncing state machine ready for the
439 * next break.
440 */
441 del_timer_sync(&sci_port->break_timer);
442 sci_port->break_flag = 0;
443
Laurent Pinchartb016b642013-11-28 18:11:46 +0100444 clk_disable_unprepare(sci_port->fclk);
445 clk_disable_unprepare(sci_port->iclk);
Paul Mundt23241d42011-06-28 13:55:31 +0900446
447 pm_runtime_put_sync(sci_port->port.dev);
448}
449
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900450#if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
Paul Mundt1f6fd5c2008-12-17 14:53:24 +0900451
452#ifdef CONFIG_CONSOLE_POLL
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900453static int sci_poll_get_char(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 unsigned short status;
456 int c;
457
Paul Mundte108b2c2006-09-27 16:32:13 +0900458 do {
Paul Mundtb12bb292012-03-30 19:50:15 +0900459 status = serial_port_in(port, SCxSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (status & SCxSR_ERRORS(port)) {
Paul Mundtb12bb292012-03-30 19:50:15 +0900461 serial_port_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 continue;
463 }
Jason Wessel3f255eb2010-05-20 21:04:23 -0500464 break;
465 } while (1);
466
467 if (!(status & SCxSR_RDxF(port)))
468 return NO_POLL_CHAR;
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900469
Paul Mundtb12bb292012-03-30 19:50:15 +0900470 c = serial_port_in(port, SCxRDR);
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900471
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900472 /* Dummy read */
Paul Mundtb12bb292012-03-30 19:50:15 +0900473 serial_port_in(port, SCxSR);
474 serial_port_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 return c;
477}
Paul Mundt1f6fd5c2008-12-17 14:53:24 +0900478#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900480static void sci_poll_put_char(struct uart_port *port, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 unsigned short status;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 do {
Paul Mundtb12bb292012-03-30 19:50:15 +0900485 status = serial_port_in(port, SCxSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 } while (!(status & SCxSR_TDxE(port)));
487
Paul Mundtb12bb292012-03-30 19:50:15 +0900488 serial_port_out(port, SCxTDR, c);
489 serial_port_out(port, SCxSR, SCxSR_TDxE_CLEAR(port) & ~SCxSR_TEND(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
Paul Mundt07d2a1a2008-12-11 19:06:43 +0900491#endif /* CONFIG_CONSOLE_POLL || CONFIG_SERIAL_SH_SCI_CONSOLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Paul Mundt61a69762011-06-14 12:40:19 +0900493static void sci_init_pins(struct uart_port *port, unsigned int cflag)
Paul Mundte108b2c2006-09-27 16:32:13 +0900494{
Paul Mundt61a69762011-06-14 12:40:19 +0900495 struct sci_port *s = to_sci_port(port);
496 struct plat_sci_reg *reg = sci_regmap[s->cfg->regtype] + SCSPTR;
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900497
Paul Mundt61a69762011-06-14 12:40:19 +0900498 /*
499 * Use port-specific handler if provided.
500 */
501 if (s->cfg->ops && s->cfg->ops->init_pins) {
502 s->cfg->ops->init_pins(port, cflag);
503 return;
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Paul Mundt61a69762011-06-14 12:40:19 +0900506 /*
507 * For the generic path SCSPTR is necessary. Bail out if that's
508 * unavailable, too.
509 */
510 if (!reg->size)
511 return;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800512
Paul Mundtfaf02f82011-12-02 17:44:50 +0900513 if ((s->cfg->capabilities & SCIx_HAVE_RTSCTS) &&
514 ((!(cflag & CRTSCTS)))) {
515 unsigned short status;
516
Paul Mundtb12bb292012-03-30 19:50:15 +0900517 status = serial_port_in(port, SCSPTR);
Paul Mundtfaf02f82011-12-02 17:44:50 +0900518 status &= ~SCSPTR_CTSIO;
519 status |= SCSPTR_RTSIO;
Paul Mundtb12bb292012-03-30 19:50:15 +0900520 serial_port_out(port, SCSPTR, status); /* Set RTS = 1 */
Paul Mundtfaf02f82011-12-02 17:44:50 +0900521 }
Paul Mundtd5701642008-12-16 20:07:27 +0900522}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900524static int sci_txfill(struct uart_port *port)
Paul Mundte108b2c2006-09-27 16:32:13 +0900525{
Paul Mundt72b294c2011-06-14 17:38:19 +0900526 struct plat_sci_reg *reg;
527
528 reg = sci_getreg(port, SCTFDR);
529 if (reg->size)
Takashi Yoshii63f7ad12012-11-16 10:53:11 +0900530 return serial_port_in(port, SCTFDR) & ((port->fifosize << 1) - 1);
Paul Mundt72b294c2011-06-14 17:38:19 +0900531
532 reg = sci_getreg(port, SCFDR);
533 if (reg->size)
Paul Mundtb12bb292012-03-30 19:50:15 +0900534 return serial_port_in(port, SCFDR) >> 8;
Paul Mundt72b294c2011-06-14 17:38:19 +0900535
Paul Mundtb12bb292012-03-30 19:50:15 +0900536 return !(serial_port_in(port, SCxSR) & SCI_TDRE);
Paul Mundte108b2c2006-09-27 16:32:13 +0900537}
538
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900539static int sci_txroom(struct uart_port *port)
540{
Paul Mundt72b294c2011-06-14 17:38:19 +0900541 return port->fifosize - sci_txfill(port);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900542}
543
544static int sci_rxfill(struct uart_port *port)
Paul Mundte108b2c2006-09-27 16:32:13 +0900545{
Paul Mundt72b294c2011-06-14 17:38:19 +0900546 struct plat_sci_reg *reg;
547
548 reg = sci_getreg(port, SCRFDR);
549 if (reg->size)
Takashi Yoshii63f7ad12012-11-16 10:53:11 +0900550 return serial_port_in(port, SCRFDR) & ((port->fifosize << 1) - 1);
Paul Mundt72b294c2011-06-14 17:38:19 +0900551
552 reg = sci_getreg(port, SCFDR);
553 if (reg->size)
Paul Mundtb12bb292012-03-30 19:50:15 +0900554 return serial_port_in(port, SCFDR) & ((port->fifosize << 1) - 1);
Paul Mundt72b294c2011-06-14 17:38:19 +0900555
Paul Mundtb12bb292012-03-30 19:50:15 +0900556 return (serial_port_in(port, SCxSR) & SCxSR_RDxF(port)) != 0;
Paul Mundte108b2c2006-09-27 16:32:13 +0900557}
558
Paul Mundt514820e2011-06-08 18:51:32 +0900559/*
560 * SCI helper for checking the state of the muxed port/RXD pins.
561 */
562static inline int sci_rxd_in(struct uart_port *port)
563{
564 struct sci_port *s = to_sci_port(port);
565
566 if (s->cfg->port_reg <= 0)
567 return 1;
568
Paul Mundt0dd4d5c2012-10-15 14:08:48 +0900569 /* Cast for ARM damage */
Laurent Pincharte2afca62013-12-11 13:40:31 +0100570 return !!__raw_readb((void __iomem *)(uintptr_t)s->cfg->port_reg);
Paul Mundt514820e2011-06-08 18:51:32 +0900571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573/* ********************************************************************** *
574 * the interrupt related routines *
575 * ********************************************************************** */
576
577static void sci_transmit_chars(struct uart_port *port)
578{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700579 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 unsigned int stopped = uart_tx_stopped(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 unsigned short status;
582 unsigned short ctrl;
Paul Mundte108b2c2006-09-27 16:32:13 +0900583 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Paul Mundtb12bb292012-03-30 19:50:15 +0900585 status = serial_port_in(port, SCxSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (!(status & SCxSR_TDxE(port))) {
Paul Mundtb12bb292012-03-30 19:50:15 +0900587 ctrl = serial_port_in(port, SCSCR);
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900588 if (uart_circ_empty(xmit))
Paul Mundt8e698612009-06-24 19:44:32 +0900589 ctrl &= ~SCSCR_TIE;
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900590 else
Paul Mundt8e698612009-06-24 19:44:32 +0900591 ctrl |= SCSCR_TIE;
Paul Mundtb12bb292012-03-30 19:50:15 +0900592 serial_port_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return;
594 }
595
Paul Mundt72b294c2011-06-14 17:38:19 +0900596 count = sci_txroom(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 do {
599 unsigned char c;
600
601 if (port->x_char) {
602 c = port->x_char;
603 port->x_char = 0;
604 } else if (!uart_circ_empty(xmit) && !stopped) {
605 c = xmit->buf[xmit->tail];
606 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
607 } else {
608 break;
609 }
610
Paul Mundtb12bb292012-03-30 19:50:15 +0900611 serial_port_out(port, SCxTDR, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 port->icount.tx++;
614 } while (--count > 0);
615
Paul Mundtb12bb292012-03-30 19:50:15 +0900616 serial_port_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
619 uart_write_wakeup(port);
620 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100621 sci_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 } else {
Paul Mundtb12bb292012-03-30 19:50:15 +0900623 ctrl = serial_port_in(port, SCSCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Yoshihiro Shimoda1a22f082008-11-11 12:19:05 +0900625 if (port->type != PORT_SCI) {
Paul Mundtb12bb292012-03-30 19:50:15 +0900626 serial_port_in(port, SCxSR); /* Dummy read */
627 serial_port_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Paul Mundt8e698612009-06-24 19:44:32 +0900630 ctrl |= SCSCR_TIE;
Paul Mundtb12bb292012-03-30 19:50:15 +0900631 serial_port_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633}
634
635/* On SH3, SCIF may read end-of-break as a space->mark char */
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900636#define STEPFN(c) ({int __c = (c); (((__c-1)|(__c)) == -1); })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900638static void sci_receive_chars(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900640 struct sci_port *sci_port = to_sci_port(port);
Jiri Slaby227434f2013-01-03 15:53:01 +0100641 struct tty_port *tport = &port->state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 int i, count, copied = 0;
643 unsigned short status;
Alan Cox33f0f882006-01-09 20:54:13 -0800644 unsigned char flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Paul Mundtb12bb292012-03-30 19:50:15 +0900646 status = serial_port_in(port, SCxSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (!(status & SCxSR_RDxF(port)))
648 return;
649
650 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* Don't copy more bytes than there is room for in the buffer */
Jiri Slaby227434f2013-01-03 15:53:01 +0100652 count = tty_buffer_request_room(tport, sci_rxfill(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /* If for any reason we can't copy more data, we're done! */
655 if (count == 0)
656 break;
657
658 if (port->type == PORT_SCI) {
Paul Mundtb12bb292012-03-30 19:50:15 +0900659 char c = serial_port_in(port, SCxRDR);
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900660 if (uart_handle_sysrq_char(port, c) ||
661 sci_port->break_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 count = 0;
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900663 else
Jiri Slaby92a19f92013-01-03 15:53:03 +0100664 tty_insert_flip_char(tport, c, TTY_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 } else {
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900666 for (i = 0; i < count; i++) {
Paul Mundtb12bb292012-03-30 19:50:15 +0900667 char c = serial_port_in(port, SCxRDR);
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900668
Paul Mundtb12bb292012-03-30 19:50:15 +0900669 status = serial_port_in(port, SCxSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670#if defined(CONFIG_CPU_SH3)
671 /* Skip "chars" during break */
Paul Mundte108b2c2006-09-27 16:32:13 +0900672 if (sci_port->break_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if ((c == 0) &&
674 (status & SCxSR_FER(port))) {
675 count--; i--;
676 continue;
677 }
Paul Mundte108b2c2006-09-27 16:32:13 +0900678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 /* Nonzero => end-of-break */
Paul Mundt762c69e2008-12-16 18:55:26 +0900680 dev_dbg(port->dev, "debounce<%02x>\n", c);
Paul Mundte108b2c2006-09-27 16:32:13 +0900681 sci_port->break_flag = 0;
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (STEPFN(c)) {
684 count--; i--;
685 continue;
686 }
687 }
688#endif /* CONFIG_CPU_SH3 */
David Howells7d12e782006-10-05 14:55:46 +0100689 if (uart_handle_sysrq_char(port, c)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 count--; i--;
691 continue;
692 }
693
694 /* Store data and status */
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900695 if (status & SCxSR_FER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800696 flag = TTY_FRAME;
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900697 port->icount.frame++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900698 dev_notice(port->dev, "frame error\n");
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900699 } else if (status & SCxSR_PER(port)) {
Alan Cox33f0f882006-01-09 20:54:13 -0800700 flag = TTY_PARITY;
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900701 port->icount.parity++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900702 dev_notice(port->dev, "parity error\n");
Alan Cox33f0f882006-01-09 20:54:13 -0800703 } else
704 flag = TTY_NORMAL;
Paul Mundt762c69e2008-12-16 18:55:26 +0900705
Jiri Slaby92a19f92013-01-03 15:53:03 +0100706 tty_insert_flip_char(tport, c, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708 }
709
Paul Mundtb12bb292012-03-30 19:50:15 +0900710 serial_port_in(port, SCxSR); /* dummy read */
711 serial_port_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 copied += count;
714 port->icount.rx += count;
715 }
716
717 if (copied) {
718 /* Tell the rest of the system the news. New characters! */
Jiri Slaby2e124b42013-01-03 15:53:06 +0100719 tty_flip_buffer_push(tport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 } else {
Paul Mundtb12bb292012-03-30 19:50:15 +0900721 serial_port_in(port, SCxSR); /* dummy read */
722 serial_port_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
724}
725
726#define SCI_BREAK_JIFFIES (HZ/20)
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900727
728/*
729 * The sci generates interrupts during the break,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * 1 per millisecond or so during the break period, for 9600 baud.
731 * So dont bother disabling interrupts.
732 * But dont want more than 1 break event.
733 * Use a kernel timer to periodically poll the rx line until
734 * the break is finished.
735 */
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900736static inline void sci_schedule_break_timer(struct sci_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Paul Mundtbc9b3f52011-01-20 23:30:19 +0900738 mod_timer(&port->break_timer, jiffies + SCI_BREAK_JIFFIES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741/* Ensure that two consecutive samples find the break over. */
742static void sci_break_timer(unsigned long data)
743{
Paul Mundte108b2c2006-09-27 16:32:13 +0900744 struct sci_port *port = (struct sci_port *)data;
745
746 if (sci_rxd_in(&port->port) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 port->break_flag = 1;
Paul Mundte108b2c2006-09-27 16:32:13 +0900748 sci_schedule_break_timer(port);
749 } else if (port->break_flag == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 /* break is over. */
751 port->break_flag = 2;
Paul Mundte108b2c2006-09-27 16:32:13 +0900752 sci_schedule_break_timer(port);
753 } else
754 port->break_flag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900757static int sci_handle_errors(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 int copied = 0;
Paul Mundtb12bb292012-03-30 19:50:15 +0900760 unsigned short status = serial_port_in(port, SCxSR);
Jiri Slaby92a19f92013-01-03 15:53:03 +0100761 struct tty_port *tport = &port->state->port;
Paul Mundtdebf9502011-06-08 18:19:37 +0900762 struct sci_port *s = to_sci_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Laurent Pinchart3ae988d2013-12-06 10:59:17 +0100764 /* Handle overruns */
765 if (status & (1 << s->overrun_bit)) {
766 port->icount.overrun++;
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900767
Laurent Pinchart3ae988d2013-12-06 10:59:17 +0100768 /* overrun error */
769 if (tty_insert_flip_char(tport, 0, TTY_OVERRUN))
770 copied++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900771
Laurent Pinchart3ae988d2013-12-06 10:59:17 +0100772 dev_notice(port->dev, "overrun error");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Paul Mundte108b2c2006-09-27 16:32:13 +0900775 if (status & SCxSR_FER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (sci_rxd_in(port) == 0) {
777 /* Notify of BREAK */
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900778 struct sci_port *sci_port = to_sci_port(port);
Paul Mundte108b2c2006-09-27 16:32:13 +0900779
780 if (!sci_port->break_flag) {
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900781 port->icount.brk++;
782
Paul Mundte108b2c2006-09-27 16:32:13 +0900783 sci_port->break_flag = 1;
784 sci_schedule_break_timer(sci_port);
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* Do sysrq handling. */
Paul Mundte108b2c2006-09-27 16:32:13 +0900787 if (uart_handle_break(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return 0;
Paul Mundt762c69e2008-12-16 18:55:26 +0900789
790 dev_dbg(port->dev, "BREAK detected\n");
791
Jiri Slaby92a19f92013-01-03 15:53:03 +0100792 if (tty_insert_flip_char(tport, 0, TTY_BREAK))
Michael Trimarchie7c98dc2008-11-13 18:18:35 +0900793 copied++;
794 }
795
Paul Mundte108b2c2006-09-27 16:32:13 +0900796 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 /* frame error */
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900798 port->icount.frame++;
799
Jiri Slaby92a19f92013-01-03 15:53:03 +0100800 if (tty_insert_flip_char(tport, 0, TTY_FRAME))
Alan Cox33f0f882006-01-09 20:54:13 -0800801 copied++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900802
803 dev_notice(port->dev, "frame error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 }
806
Paul Mundte108b2c2006-09-27 16:32:13 +0900807 if (status & SCxSR_PER(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* parity error */
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900809 port->icount.parity++;
810
Jiri Slaby92a19f92013-01-03 15:53:03 +0100811 if (tty_insert_flip_char(tport, 0, TTY_PARITY))
Paul Mundte108b2c2006-09-27 16:32:13 +0900812 copied++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900813
814 dev_notice(port->dev, "parity error");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816
Alan Cox33f0f882006-01-09 20:54:13 -0800817 if (copied)
Jiri Slaby2e124b42013-01-03 15:53:06 +0100818 tty_flip_buffer_push(tport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 return copied;
821}
822
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900823static int sci_handle_fifo_overrun(struct uart_port *port)
Paul Mundtd830fa42008-12-16 19:29:38 +0900824{
Jiri Slaby92a19f92013-01-03 15:53:03 +0100825 struct tty_port *tport = &port->state->port;
Paul Mundtdebf9502011-06-08 18:19:37 +0900826 struct sci_port *s = to_sci_port(port);
Paul Mundt4b8c59a2011-06-14 17:53:34 +0900827 struct plat_sci_reg *reg;
Paul Mundtd830fa42008-12-16 19:29:38 +0900828 int copied = 0;
829
Paul Mundt4b8c59a2011-06-14 17:53:34 +0900830 reg = sci_getreg(port, SCLSR);
831 if (!reg->size)
Paul Mundtd830fa42008-12-16 19:29:38 +0900832 return 0;
833
Laurent Pinchart3ae988d2013-12-06 10:59:17 +0100834 if ((serial_port_in(port, SCLSR) & (1 << s->overrun_bit))) {
Paul Mundtb12bb292012-03-30 19:50:15 +0900835 serial_port_out(port, SCLSR, 0);
Paul Mundtd830fa42008-12-16 19:29:38 +0900836
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900837 port->icount.overrun++;
838
Jiri Slaby92a19f92013-01-03 15:53:03 +0100839 tty_insert_flip_char(tport, 0, TTY_OVERRUN);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100840 tty_flip_buffer_push(tport);
Paul Mundtd830fa42008-12-16 19:29:38 +0900841
842 dev_notice(port->dev, "overrun error\n");
843 copied++;
844 }
845
846 return copied;
847}
848
Paul Mundt94c8b6d2011-01-20 23:26:18 +0900849static int sci_handle_breaks(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851 int copied = 0;
Paul Mundtb12bb292012-03-30 19:50:15 +0900852 unsigned short status = serial_port_in(port, SCxSR);
Jiri Slaby92a19f92013-01-03 15:53:03 +0100853 struct tty_port *tport = &port->state->port;
Magnus Damma5660ad2009-01-21 15:14:38 +0000854 struct sci_port *s = to_sci_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Paul Mundt0b3d4ef2007-03-14 13:22:37 +0900856 if (uart_handle_break(port))
857 return 0;
858
Paul Mundtb7a76e42006-02-01 03:06:06 -0800859 if (!s->break_flag && status & SCxSR_BRK(port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860#if defined(CONFIG_CPU_SH3)
861 /* Debounce break */
862 s->break_flag = 1;
863#endif
Paul Mundtd97fbbe2011-11-24 19:15:06 +0900864
865 port->icount.brk++;
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /* Notify of BREAK */
Jiri Slaby92a19f92013-01-03 15:53:03 +0100868 if (tty_insert_flip_char(tport, 0, TTY_BREAK))
Alan Cox33f0f882006-01-09 20:54:13 -0800869 copied++;
Paul Mundt762c69e2008-12-16 18:55:26 +0900870
871 dev_dbg(port->dev, "BREAK detected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873
Alan Cox33f0f882006-01-09 20:54:13 -0800874 if (copied)
Jiri Slaby2e124b42013-01-03 15:53:06 +0100875 tty_flip_buffer_push(tport);
Paul Mundte108b2c2006-09-27 16:32:13 +0900876
Paul Mundtd830fa42008-12-16 19:29:38 +0900877 copied += sci_handle_fifo_overrun(port);
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return copied;
880}
881
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900882static irqreturn_t sci_rx_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900884#ifdef CONFIG_SERIAL_SH_SCI_DMA
885 struct uart_port *port = ptr;
886 struct sci_port *s = to_sci_port(port);
887
888 if (s->chan_rx) {
Paul Mundtb12bb292012-03-30 19:50:15 +0900889 u16 scr = serial_port_in(port, SCSCR);
890 u16 ssr = serial_port_in(port, SCxSR);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900891
892 /* Disable future Rx interrupts */
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +0000893 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +0000894 disable_irq_nosync(irq);
895 scr |= 0x4000;
896 } else {
Paul Mundtf43dc232011-01-13 15:06:28 +0900897 scr &= ~SCSCR_RIE;
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +0000898 }
Paul Mundtb12bb292012-03-30 19:50:15 +0900899 serial_port_out(port, SCSCR, scr);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900900 /* Clear current interrupt */
Paul Mundtb12bb292012-03-30 19:50:15 +0900901 serial_port_out(port, SCxSR, ssr & ~(1 | SCxSR_RDxF(port)));
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +0000902 dev_dbg(port->dev, "Rx IRQ %lu: setup t-out in %u jiffies\n",
903 jiffies, s->rx_timeout);
904 mod_timer(&s->rx_timer, jiffies + s->rx_timeout);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900905
906 return IRQ_HANDLED;
907 }
908#endif
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 /* I think sci_receive_chars has to be called irrespective
911 * of whether the I_IXOFF is set, otherwise, how is the interrupt
912 * to be disabled?
913 */
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900914 sci_receive_chars(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_tx_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 struct uart_port *port = ptr;
Stuart Menefyfd78a762009-07-29 23:01:24 +0900922 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Stuart Menefyfd78a762009-07-29 23:01:24 +0900924 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 sci_transmit_chars(port);
Stuart Menefyfd78a762009-07-29 23:01:24 +0900926 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 return IRQ_HANDLED;
929}
930
David Howells7d12e782006-10-05 14:55:46 +0100931static irqreturn_t sci_er_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
933 struct uart_port *port = ptr;
934
935 /* Handle errors */
936 if (port->type == PORT_SCI) {
937 if (sci_handle_errors(port)) {
938 /* discard character in rx buffer */
Paul Mundtb12bb292012-03-30 19:50:15 +0900939 serial_port_in(port, SCxSR);
940 serial_port_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942 } else {
Paul Mundtd830fa42008-12-16 19:29:38 +0900943 sci_handle_fifo_overrun(port);
David Howells7d12e782006-10-05 14:55:46 +0100944 sci_rx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946
Paul Mundtb12bb292012-03-30 19:50:15 +0900947 serial_port_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* Kick the transmission */
David Howells7d12e782006-10-05 14:55:46 +0100950 sci_tx_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 return IRQ_HANDLED;
953}
954
David Howells7d12e782006-10-05 14:55:46 +0100955static irqreturn_t sci_br_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 struct uart_port *port = ptr;
958
959 /* Handle BREAKs */
960 sci_handle_breaks(port);
Paul Mundtb12bb292012-03-30 19:50:15 +0900961 serial_port_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 return IRQ_HANDLED;
964}
965
Paul Mundtf43dc232011-01-13 15:06:28 +0900966static inline unsigned long port_rx_irq_mask(struct uart_port *port)
967{
968 /*
969 * Not all ports (such as SCIFA) will support REIE. Rather than
970 * special-casing the port type, we check the port initialization
971 * IRQ enable mask to see whether the IRQ is desired at all. If
972 * it's unset, it's logically inferred that there's no point in
973 * testing for it.
974 */
Paul Mundtce6738b2011-01-19 15:24:40 +0900975 return SCSCR_RIE | (to_sci_port(port)->cfg->scscr & SCSCR_REIE);
Paul Mundtf43dc232011-01-13 15:06:28 +0900976}
977
David Howells7d12e782006-10-05 14:55:46 +0100978static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Magnus Damm44e18e92009-07-03 08:39:34 +0000980 unsigned short ssr_status, scr_status, err_enabled;
Michael Trimarchia8884e32008-10-31 16:10:23 +0900981 struct uart_port *port = ptr;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900982 struct sci_port *s = to_sci_port(port);
Michael Trimarchia8884e32008-10-31 16:10:23 +0900983 irqreturn_t ret = IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Paul Mundtb12bb292012-03-30 19:50:15 +0900985 ssr_status = serial_port_in(port, SCxSR);
986 scr_status = serial_port_in(port, SCSCR);
Paul Mundtf43dc232011-01-13 15:06:28 +0900987 err_enabled = scr_status & port_rx_irq_mask(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 /* Tx Interrupt */
Paul Mundtf43dc232011-01-13 15:06:28 +0900990 if ((ssr_status & SCxSR_TDxE(port)) && (scr_status & SCSCR_TIE) &&
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900991 !s->chan_tx)
Michael Trimarchia8884e32008-10-31 16:10:23 +0900992 ret = sci_tx_interrupt(irq, ptr);
Paul Mundtf43dc232011-01-13 15:06:28 +0900993
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900994 /*
995 * Rx Interrupt: if we're using DMA, the DMA controller clears RDF /
996 * DR flags
997 */
998 if (((ssr_status & SCxSR_RDxF(port)) || s->chan_rx) &&
Paul Mundtf43dc232011-01-13 15:06:28 +0900999 (scr_status & SCSCR_RIE))
Michael Trimarchia8884e32008-10-31 16:10:23 +09001000 ret = sci_rx_interrupt(irq, ptr);
Paul Mundtf43dc232011-01-13 15:06:28 +09001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* Error Interrupt */
SUGIOKA Toshinobudd4da3a2009-07-07 05:32:07 +00001003 if ((ssr_status & SCxSR_ERRORS(port)) && err_enabled)
Michael Trimarchia8884e32008-10-31 16:10:23 +09001004 ret = sci_er_interrupt(irq, ptr);
Paul Mundtf43dc232011-01-13 15:06:28 +09001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 /* Break Interrupt */
SUGIOKA Toshinobudd4da3a2009-07-07 05:32:07 +00001007 if ((ssr_status & SCxSR_BRK(port)) && err_enabled)
Michael Trimarchia8884e32008-10-31 16:10:23 +09001008 ret = sci_br_interrupt(irq, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Michael Trimarchia8884e32008-10-31 16:10:23 +09001010 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001014 * Here we define a transition notifier so that we can update all of our
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * ports' baud rate when the peripheral clock changes.
1016 */
Paul Mundte108b2c2006-09-27 16:32:13 +09001017static int sci_notifier(struct notifier_block *self,
1018 unsigned long phase, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Magnus Damme552de22009-01-21 15:13:42 +00001020 struct sci_port *sci_port;
1021 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Paul Mundtd535a232011-01-19 17:19:35 +09001023 sci_port = container_of(self, struct sci_port, freq_transition);
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if ((phase == CPUFREQ_POSTCHANGE) ||
Magnus Damme552de22009-01-21 15:13:42 +00001026 (phase == CPUFREQ_RESUMECHANGE)) {
Paul Mundtd535a232011-01-19 17:19:35 +09001027 struct uart_port *port = &sci_port->port;
Paul Mundt073e84c2011-01-19 17:30:53 +09001028
Paul Mundtd535a232011-01-19 17:19:35 +09001029 spin_lock_irqsave(&port->lock, flags);
1030 port->uartclk = clk_get_rate(sci_port->iclk);
1031 spin_unlock_irqrestore(&port->lock, flags);
Magnus Damme552de22009-01-21 15:13:42 +00001032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return NOTIFY_OK;
1035}
Magnus Damm501b8252009-01-21 15:14:30 +00001036
Paul Mundt9174fc82011-06-28 15:25:36 +09001037static struct sci_irq_desc {
1038 const char *desc;
1039 irq_handler_t handler;
1040} sci_irq_desc[] = {
1041 /*
1042 * Split out handlers, the default case.
1043 */
1044 [SCIx_ERI_IRQ] = {
1045 .desc = "rx err",
1046 .handler = sci_er_interrupt,
1047 },
1048
1049 [SCIx_RXI_IRQ] = {
1050 .desc = "rx full",
1051 .handler = sci_rx_interrupt,
1052 },
1053
1054 [SCIx_TXI_IRQ] = {
1055 .desc = "tx empty",
1056 .handler = sci_tx_interrupt,
1057 },
1058
1059 [SCIx_BRI_IRQ] = {
1060 .desc = "break",
1061 .handler = sci_br_interrupt,
1062 },
1063
1064 /*
1065 * Special muxed handler.
1066 */
1067 [SCIx_MUX_IRQ] = {
1068 .desc = "mux",
1069 .handler = sci_mpxed_interrupt,
1070 },
1071};
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073static int sci_request_irq(struct sci_port *port)
1074{
Paul Mundt9174fc82011-06-28 15:25:36 +09001075 struct uart_port *up = &port->port;
1076 int i, j, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Paul Mundt9174fc82011-06-28 15:25:36 +09001078 for (i = j = 0; i < SCIx_NR_IRQS; i++, j++) {
1079 struct sci_irq_desc *desc;
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01001080 int irq;
Paul Mundte108b2c2006-09-27 16:32:13 +09001081
Paul Mundt9174fc82011-06-28 15:25:36 +09001082 if (SCIx_IRQ_IS_MUXED(port)) {
1083 i = SCIx_MUX_IRQ;
1084 irq = up->irq;
Paul Mundt0e8963d2012-05-18 18:21:06 +09001085 } else {
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01001086 irq = port->irqs[i];
Paul Mundt9174fc82011-06-28 15:25:36 +09001087
Paul Mundt0e8963d2012-05-18 18:21:06 +09001088 /*
1089 * Certain port types won't support all of the
1090 * available interrupt sources.
1091 */
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01001092 if (unlikely(irq < 0))
Paul Mundt0e8963d2012-05-18 18:21:06 +09001093 continue;
1094 }
1095
Paul Mundt9174fc82011-06-28 15:25:36 +09001096 desc = sci_irq_desc + i;
1097 port->irqstr[j] = kasprintf(GFP_KERNEL, "%s:%s",
1098 dev_name(up->dev), desc->desc);
1099 if (!port->irqstr[j]) {
1100 dev_err(up->dev, "Failed to allocate %s IRQ string\n",
1101 desc->desc);
1102 goto out_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
Paul Mundt762c69e2008-12-16 18:55:26 +09001104
Paul Mundt9174fc82011-06-28 15:25:36 +09001105 ret = request_irq(irq, desc->handler, up->irqflags,
1106 port->irqstr[j], port);
1107 if (unlikely(ret)) {
1108 dev_err(up->dev, "Can't allocate %s IRQ\n", desc->desc);
1109 goto out_noirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111 }
1112
1113 return 0;
Paul Mundt9174fc82011-06-28 15:25:36 +09001114
1115out_noirq:
1116 while (--i >= 0)
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01001117 free_irq(port->irqs[i], port);
Paul Mundt9174fc82011-06-28 15:25:36 +09001118
1119out_nomem:
1120 while (--j >= 0)
1121 kfree(port->irqstr[j]);
1122
1123 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
1126static void sci_free_irq(struct sci_port *port)
1127{
1128 int i;
1129
Paul Mundt9174fc82011-06-28 15:25:36 +09001130 /*
1131 * Intentionally in reverse order so we iterate over the muxed
1132 * IRQ first.
1133 */
1134 for (i = 0; i < SCIx_NR_IRQS; i++) {
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01001135 int irq = port->irqs[i];
Paul Mundt0e8963d2012-05-18 18:21:06 +09001136
1137 /*
1138 * Certain port types won't support all of the available
1139 * interrupt sources.
1140 */
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01001141 if (unlikely(irq < 0))
Paul Mundt0e8963d2012-05-18 18:21:06 +09001142 continue;
1143
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01001144 free_irq(port->irqs[i], port);
Paul Mundt9174fc82011-06-28 15:25:36 +09001145 kfree(port->irqstr[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Paul Mundt9174fc82011-06-28 15:25:36 +09001147 if (SCIx_IRQ_IS_MUXED(port)) {
1148 /* If there's only one IRQ, we're done. */
1149 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
1151 }
1152}
1153
1154static unsigned int sci_tx_empty(struct uart_port *port)
1155{
Paul Mundtb12bb292012-03-30 19:50:15 +09001156 unsigned short status = serial_port_in(port, SCxSR);
Paul Mundt72b294c2011-06-14 17:38:19 +09001157 unsigned short in_tx_fifo = sci_txfill(port);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001158
1159 return (status & SCxSR_TEND(port)) && !in_tx_fifo ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Paul Mundtcdf7c422011-11-24 20:18:32 +09001162/*
1163 * Modem control is a bit of a mixed bag for SCI(F) ports. Generally
1164 * CTS/RTS is supported in hardware by at least one port and controlled
1165 * via SCSPTR (SCxPCR for SCIFA/B parts), or external pins (presently
1166 * handled via the ->init_pins() op, which is a bit of a one-way street,
1167 * lacking any ability to defer pin control -- this will later be
1168 * converted over to the GPIO framework).
Paul Mundtdc7e3ef2011-11-24 20:20:53 +09001169 *
1170 * Other modes (such as loopback) are supported generically on certain
1171 * port types, but not others. For these it's sufficient to test for the
1172 * existence of the support register and simply ignore the port type.
Paul Mundtcdf7c422011-11-24 20:18:32 +09001173 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
1175{
Paul Mundtdc7e3ef2011-11-24 20:20:53 +09001176 if (mctrl & TIOCM_LOOP) {
1177 struct plat_sci_reg *reg;
1178
1179 /*
1180 * Standard loopback mode for SCFCR ports.
1181 */
1182 reg = sci_getreg(port, SCFCR);
1183 if (reg->size)
Paul Mundtb12bb292012-03-30 19:50:15 +09001184 serial_port_out(port, SCFCR, serial_port_in(port, SCFCR) | 1);
Paul Mundtdc7e3ef2011-11-24 20:20:53 +09001185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
1188static unsigned int sci_get_mctrl(struct uart_port *port)
1189{
Paul Mundtcdf7c422011-11-24 20:18:32 +09001190 /*
1191 * CTS/RTS is handled in hardware when supported, while nothing
1192 * else is wired up. Keep it simple and simply assert DSR/CAR.
1193 */
1194 return TIOCM_DSR | TIOCM_CAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001197#ifdef CONFIG_SERIAL_SH_SCI_DMA
1198static void sci_dma_tx_complete(void *arg)
1199{
1200 struct sci_port *s = arg;
1201 struct uart_port *port = &s->port;
1202 struct circ_buf *xmit = &port->state->xmit;
1203 unsigned long flags;
1204
1205 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1206
1207 spin_lock_irqsave(&port->lock, flags);
1208
Magnus Dammf354a382010-03-19 04:47:01 +00001209 xmit->tail += sg_dma_len(&s->sg_tx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001210 xmit->tail &= UART_XMIT_SIZE - 1;
1211
Magnus Dammf354a382010-03-19 04:47:01 +00001212 port->icount.tx += sg_dma_len(&s->sg_tx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001213
1214 async_tx_ack(s->desc_tx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001215 s->desc_tx = NULL;
1216
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001217 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1218 uart_write_wakeup(port);
1219
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001220 if (!uart_circ_empty(xmit)) {
Yoshii Takashi49d4bca2012-03-14 16:14:43 +09001221 s->cookie_tx = 0;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001222 schedule_work(&s->work_tx);
Yoshii Takashi49d4bca2012-03-14 16:14:43 +09001223 } else {
1224 s->cookie_tx = -EINVAL;
1225 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Paul Mundtb12bb292012-03-30 19:50:15 +09001226 u16 ctrl = serial_port_in(port, SCSCR);
1227 serial_port_out(port, SCSCR, ctrl & ~SCSCR_TIE);
Yoshii Takashi49d4bca2012-03-14 16:14:43 +09001228 }
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001229 }
1230
1231 spin_unlock_irqrestore(&port->lock, flags);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001232}
1233
1234/* Locking: called with port lock held */
Jiri Slaby92a19f92013-01-03 15:53:03 +01001235static int sci_dma_rx_push(struct sci_port *s, size_t count)
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001236{
1237 struct uart_port *port = &s->port;
Jiri Slaby227434f2013-01-03 15:53:01 +01001238 struct tty_port *tport = &port->state->port;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001239 int i, active, room;
1240
Jiri Slaby227434f2013-01-03 15:53:01 +01001241 room = tty_buffer_request_room(tport, count);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001242
1243 if (s->active_rx == s->cookie_rx[0]) {
1244 active = 0;
1245 } else if (s->active_rx == s->cookie_rx[1]) {
1246 active = 1;
1247 } else {
1248 dev_err(port->dev, "cookie %d not found!\n", s->active_rx);
1249 return 0;
1250 }
1251
1252 if (room < count)
Laurent Pincharte2afca62013-12-11 13:40:31 +01001253 dev_warn(port->dev, "Rx overrun: dropping %zu bytes\n",
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001254 count - room);
1255 if (!room)
1256 return room;
1257
1258 for (i = 0; i < room; i++)
Jiri Slaby92a19f92013-01-03 15:53:03 +01001259 tty_insert_flip_char(tport, ((u8 *)sg_virt(&s->sg_rx[active]))[i],
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001260 TTY_NORMAL);
1261
1262 port->icount.rx += room;
1263
1264 return room;
1265}
1266
1267static void sci_dma_rx_complete(void *arg)
1268{
1269 struct sci_port *s = arg;
1270 struct uart_port *port = &s->port;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001271 unsigned long flags;
1272 int count;
1273
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001274 dev_dbg(port->dev, "%s(%d) active #%d\n", __func__, port->line, s->active_rx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001275
1276 spin_lock_irqsave(&port->lock, flags);
1277
Jiri Slaby92a19f92013-01-03 15:53:03 +01001278 count = sci_dma_rx_push(s, s->buf_len_rx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001279
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001280 mod_timer(&s->rx_timer, jiffies + s->rx_timeout);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001281
1282 spin_unlock_irqrestore(&port->lock, flags);
1283
1284 if (count)
Jiri Slaby2e124b42013-01-03 15:53:06 +01001285 tty_flip_buffer_push(&port->state->port);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001286
1287 schedule_work(&s->work_rx);
1288}
1289
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001290static void sci_rx_dma_release(struct sci_port *s, bool enable_pio)
1291{
1292 struct dma_chan *chan = s->chan_rx;
1293 struct uart_port *port = &s->port;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001294
1295 s->chan_rx = NULL;
1296 s->cookie_rx[0] = s->cookie_rx[1] = -EINVAL;
1297 dma_release_channel(chan);
Guennadi Liakhovetski85b8e3f2010-05-21 15:22:40 +00001298 if (sg_dma_address(&s->sg_rx[0]))
1299 dma_free_coherent(port->dev, s->buf_len_rx * 2,
1300 sg_virt(&s->sg_rx[0]), sg_dma_address(&s->sg_rx[0]));
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001301 if (enable_pio)
1302 sci_start_rx(port);
1303}
1304
1305static void sci_tx_dma_release(struct sci_port *s, bool enable_pio)
1306{
1307 struct dma_chan *chan = s->chan_tx;
1308 struct uart_port *port = &s->port;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001309
1310 s->chan_tx = NULL;
1311 s->cookie_tx = -EINVAL;
1312 dma_release_channel(chan);
1313 if (enable_pio)
1314 sci_start_tx(port);
1315}
1316
1317static void sci_submit_rx(struct sci_port *s)
1318{
1319 struct dma_chan *chan = s->chan_rx;
1320 int i;
1321
1322 for (i = 0; i < 2; i++) {
1323 struct scatterlist *sg = &s->sg_rx[i];
1324 struct dma_async_tx_descriptor *desc;
1325
Alexandre Bounine16052822012-03-08 16:11:18 -05001326 desc = dmaengine_prep_slave_sg(chan,
Vinod Koula485df42011-10-14 10:47:38 +05301327 sg, 1, DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001328
1329 if (desc) {
1330 s->desc_rx[i] = desc;
1331 desc->callback = sci_dma_rx_complete;
1332 desc->callback_param = s;
1333 s->cookie_rx[i] = desc->tx_submit(desc);
1334 }
1335
1336 if (!desc || s->cookie_rx[i] < 0) {
1337 if (i) {
1338 async_tx_ack(s->desc_rx[0]);
1339 s->cookie_rx[0] = -EINVAL;
1340 }
1341 if (desc) {
1342 async_tx_ack(desc);
1343 s->cookie_rx[i] = -EINVAL;
1344 }
1345 dev_warn(s->port.dev,
1346 "failed to re-start DMA, using PIO\n");
1347 sci_rx_dma_release(s, true);
1348 return;
1349 }
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001350 dev_dbg(s->port.dev, "%s(): cookie %d to #%d\n", __func__,
1351 s->cookie_rx[i], i);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001352 }
1353
1354 s->active_rx = s->cookie_rx[0];
1355
1356 dma_async_issue_pending(chan);
1357}
1358
1359static void work_fn_rx(struct work_struct *work)
1360{
1361 struct sci_port *s = container_of(work, struct sci_port, work_rx);
1362 struct uart_port *port = &s->port;
1363 struct dma_async_tx_descriptor *desc;
1364 int new;
1365
1366 if (s->active_rx == s->cookie_rx[0]) {
1367 new = 0;
1368 } else if (s->active_rx == s->cookie_rx[1]) {
1369 new = 1;
1370 } else {
1371 dev_err(port->dev, "cookie %d not found!\n", s->active_rx);
1372 return;
1373 }
1374 desc = s->desc_rx[new];
1375
1376 if (dma_async_is_tx_complete(s->chan_rx, s->active_rx, NULL, NULL) !=
Vinod Koul0b3d7d32013-10-16 21:06:19 +05301377 DMA_COMPLETE) {
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001378 /* Handle incomplete DMA receive */
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001379 struct dma_chan *chan = s->chan_rx;
Guennadi Liakhovetski4dc4c512012-07-30 21:28:47 +02001380 struct shdma_desc *sh_desc = container_of(desc,
1381 struct shdma_desc, async_tx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001382 unsigned long flags;
1383 int count;
1384
Linus Walleij05827632010-05-17 16:30:42 -07001385 chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
Laurent Pincharte2afca62013-12-11 13:40:31 +01001386 dev_dbg(port->dev, "Read %zu bytes with cookie %d\n",
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001387 sh_desc->partial, sh_desc->cookie);
1388
1389 spin_lock_irqsave(&port->lock, flags);
Jiri Slaby92a19f92013-01-03 15:53:03 +01001390 count = sci_dma_rx_push(s, sh_desc->partial);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001391 spin_unlock_irqrestore(&port->lock, flags);
1392
1393 if (count)
Jiri Slaby2e124b42013-01-03 15:53:06 +01001394 tty_flip_buffer_push(&port->state->port);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001395
1396 sci_submit_rx(s);
1397
1398 return;
1399 }
1400
1401 s->cookie_rx[new] = desc->tx_submit(desc);
1402 if (s->cookie_rx[new] < 0) {
1403 dev_warn(port->dev, "Failed submitting Rx DMA descriptor\n");
1404 sci_rx_dma_release(s, true);
1405 return;
1406 }
1407
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001408 s->active_rx = s->cookie_rx[!new];
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001409
1410 dev_dbg(port->dev, "%s: cookie %d #%d, new active #%d\n", __func__,
1411 s->cookie_rx[new], new, s->active_rx);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001412}
1413
1414static void work_fn_tx(struct work_struct *work)
1415{
1416 struct sci_port *s = container_of(work, struct sci_port, work_tx);
1417 struct dma_async_tx_descriptor *desc;
1418 struct dma_chan *chan = s->chan_tx;
1419 struct uart_port *port = &s->port;
1420 struct circ_buf *xmit = &port->state->xmit;
1421 struct scatterlist *sg = &s->sg_tx;
1422
1423 /*
1424 * DMA is idle now.
1425 * Port xmit buffer is already mapped, and it is one page... Just adjust
1426 * offsets and lengths. Since it is a circular buffer, we have to
1427 * transmit till the end, and then the rest. Take the port lock to get a
1428 * consistent xmit buffer state.
1429 */
1430 spin_lock_irq(&port->lock);
1431 sg->offset = xmit->tail & (UART_XMIT_SIZE - 1);
Magnus Dammf354a382010-03-19 04:47:01 +00001432 sg_dma_address(sg) = (sg_dma_address(sg) & ~(UART_XMIT_SIZE - 1)) +
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001433 sg->offset;
Magnus Dammf354a382010-03-19 04:47:01 +00001434 sg_dma_len(sg) = min((int)CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE),
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001435 CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE));
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001436 spin_unlock_irq(&port->lock);
1437
Magnus Dammf354a382010-03-19 04:47:01 +00001438 BUG_ON(!sg_dma_len(sg));
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001439
Alexandre Bounine16052822012-03-08 16:11:18 -05001440 desc = dmaengine_prep_slave_sg(chan,
Vinod Koula485df42011-10-14 10:47:38 +05301441 sg, s->sg_len_tx, DMA_MEM_TO_DEV,
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001442 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1443 if (!desc) {
1444 /* switch to PIO */
1445 sci_tx_dma_release(s, true);
1446 return;
1447 }
1448
1449 dma_sync_sg_for_device(port->dev, sg, 1, DMA_TO_DEVICE);
1450
1451 spin_lock_irq(&port->lock);
1452 s->desc_tx = desc;
1453 desc->callback = sci_dma_tx_complete;
1454 desc->callback_param = s;
1455 spin_unlock_irq(&port->lock);
1456 s->cookie_tx = desc->tx_submit(desc);
1457 if (s->cookie_tx < 0) {
1458 dev_warn(port->dev, "Failed submitting Tx DMA descriptor\n");
1459 /* switch to PIO */
1460 sci_tx_dma_release(s, true);
1461 return;
1462 }
1463
1464 dev_dbg(port->dev, "%s: %p: %d...%d, cookie %d\n", __func__,
1465 xmit->buf, xmit->tail, xmit->head, s->cookie_tx);
1466
1467 dma_async_issue_pending(chan);
1468}
1469#endif
1470
Russell Kingb129a8c2005-08-31 10:12:14 +01001471static void sci_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001473 struct sci_port *s = to_sci_port(port);
Paul Mundte108b2c2006-09-27 16:32:13 +09001474 unsigned short ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001476#ifdef CONFIG_SERIAL_SH_SCI_DMA
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001477 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Paul Mundtb12bb292012-03-30 19:50:15 +09001478 u16 new, scr = serial_port_in(port, SCSCR);
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001479 if (s->chan_tx)
1480 new = scr | 0x8000;
1481 else
1482 new = scr & ~0x8000;
1483 if (new != scr)
Paul Mundtb12bb292012-03-30 19:50:15 +09001484 serial_port_out(port, SCSCR, new);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001485 }
Paul Mundtf43dc232011-01-13 15:06:28 +09001486
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001487 if (s->chan_tx && !uart_circ_empty(&s->port.state->xmit) &&
Yoshii Takashi49d4bca2012-03-14 16:14:43 +09001488 s->cookie_tx < 0) {
1489 s->cookie_tx = 0;
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001490 schedule_work(&s->work_tx);
Yoshii Takashi49d4bca2012-03-14 16:14:43 +09001491 }
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001492#endif
Paul Mundtf43dc232011-01-13 15:06:28 +09001493
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001494 if (!s->chan_tx || port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001495 /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */
Paul Mundtb12bb292012-03-30 19:50:15 +09001496 ctrl = serial_port_in(port, SCSCR);
1497 serial_port_out(port, SCSCR, ctrl | SCSCR_TIE);
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500
Russell Kingb129a8c2005-08-31 10:12:14 +01001501static void sci_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 unsigned short ctrl;
1504
1505 /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
Paul Mundtb12bb292012-03-30 19:50:15 +09001506 ctrl = serial_port_in(port, SCSCR);
Paul Mundtf43dc232011-01-13 15:06:28 +09001507
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001508 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001509 ctrl &= ~0x8000;
Paul Mundtf43dc232011-01-13 15:06:28 +09001510
Paul Mundt8e698612009-06-24 19:44:32 +09001511 ctrl &= ~SCSCR_TIE;
Paul Mundtf43dc232011-01-13 15:06:28 +09001512
Paul Mundtb12bb292012-03-30 19:50:15 +09001513 serial_port_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001516static void sci_start_rx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 unsigned short ctrl;
1519
Paul Mundtb12bb292012-03-30 19:50:15 +09001520 ctrl = serial_port_in(port, SCSCR) | port_rx_irq_mask(port);
Paul Mundtf43dc232011-01-13 15:06:28 +09001521
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001522 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001523 ctrl &= ~0x4000;
Paul Mundtf43dc232011-01-13 15:06:28 +09001524
Paul Mundtb12bb292012-03-30 19:50:15 +09001525 serial_port_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}
1527
1528static void sci_stop_rx(struct uart_port *port)
1529{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 unsigned short ctrl;
1531
Paul Mundtb12bb292012-03-30 19:50:15 +09001532 ctrl = serial_port_in(port, SCSCR);
Paul Mundtf43dc232011-01-13 15:06:28 +09001533
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001534 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001535 ctrl &= ~0x4000;
Paul Mundtf43dc232011-01-13 15:06:28 +09001536
1537 ctrl &= ~port_rx_irq_mask(port);
1538
Paul Mundtb12bb292012-03-30 19:50:15 +09001539 serial_port_out(port, SCSCR, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
1542static void sci_enable_ms(struct uart_port *port)
1543{
Paul Mundtd39ec6c2011-11-24 19:36:46 +09001544 /*
1545 * Not supported by hardware, always a nop.
1546 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547}
1548
1549static void sci_break_ctl(struct uart_port *port, int break_state)
1550{
Shimoda, Yoshihirobbb4ce52012-04-06 09:59:14 +09001551 struct sci_port *s = to_sci_port(port);
Shimoda, Yoshihiroa4e02f62012-04-12 19:19:21 +09001552 struct plat_sci_reg *reg = sci_regmap[s->cfg->regtype] + SCSPTR;
Shimoda, Yoshihirobbb4ce52012-04-06 09:59:14 +09001553 unsigned short scscr, scsptr;
1554
Shimoda, Yoshihiroa4e02f62012-04-12 19:19:21 +09001555 /* check wheter the port has SCSPTR */
1556 if (!reg->size) {
Shimoda, Yoshihirobbb4ce52012-04-06 09:59:14 +09001557 /*
1558 * Not supported by hardware. Most parts couple break and rx
1559 * interrupts together, with break detection always enabled.
1560 */
Shimoda, Yoshihiroa4e02f62012-04-12 19:19:21 +09001561 return;
Shimoda, Yoshihirobbb4ce52012-04-06 09:59:14 +09001562 }
Shimoda, Yoshihiroa4e02f62012-04-12 19:19:21 +09001563
1564 scsptr = serial_port_in(port, SCSPTR);
1565 scscr = serial_port_in(port, SCSCR);
1566
1567 if (break_state == -1) {
1568 scsptr = (scsptr | SCSPTR_SPB2IO) & ~SCSPTR_SPB2DT;
1569 scscr &= ~SCSCR_TE;
1570 } else {
1571 scsptr = (scsptr | SCSPTR_SPB2DT) & ~SCSPTR_SPB2IO;
1572 scscr |= SCSCR_TE;
1573 }
1574
1575 serial_port_out(port, SCSPTR, scsptr);
1576 serial_port_out(port, SCSCR, scscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001579#ifdef CONFIG_SERIAL_SH_SCI_DMA
1580static bool filter(struct dma_chan *chan, void *slave)
1581{
1582 struct sh_dmae_slave *param = slave;
1583
1584 dev_dbg(chan->device->dev, "%s: slave ID %d\n", __func__,
Guennadi Liakhovetskid6fa5a42012-05-09 17:09:17 +02001585 param->shdma_slave.slave_id);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001586
Guennadi Liakhovetskid6fa5a42012-05-09 17:09:17 +02001587 chan->private = &param->shdma_slave;
Guennadi Liakhovetski937bb6e2011-06-24 13:56:15 +02001588 return true;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001589}
1590
1591static void rx_timer_fn(unsigned long arg)
1592{
1593 struct sci_port *s = (struct sci_port *)arg;
1594 struct uart_port *port = &s->port;
Paul Mundtb12bb292012-03-30 19:50:15 +09001595 u16 scr = serial_port_in(port, SCSCR);
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001596
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001597 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001598 scr &= ~0x4000;
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01001599 enable_irq(s->irqs[SCIx_RXI_IRQ]);
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001600 }
Paul Mundtb12bb292012-03-30 19:50:15 +09001601 serial_port_out(port, SCSCR, scr | SCSCR_RIE);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001602 dev_dbg(port->dev, "DMA Rx timed out\n");
1603 schedule_work(&s->work_rx);
1604}
1605
1606static void sci_request_dma(struct uart_port *port)
1607{
1608 struct sci_port *s = to_sci_port(port);
1609 struct sh_dmae_slave *param;
1610 struct dma_chan *chan;
1611 dma_cap_mask_t mask;
1612 int nent;
1613
Guennadi Liakhovetski937bb6e2011-06-24 13:56:15 +02001614 dev_dbg(port->dev, "%s: port %d\n", __func__,
1615 port->line);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001616
Guennadi Liakhovetski937bb6e2011-06-24 13:56:15 +02001617 if (s->cfg->dma_slave_tx <= 0 || s->cfg->dma_slave_rx <= 0)
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001618 return;
1619
1620 dma_cap_zero(mask);
1621 dma_cap_set(DMA_SLAVE, mask);
1622
1623 param = &s->param_tx;
1624
1625 /* Slave ID, e.g., SHDMA_SLAVE_SCIF0_TX */
Guennadi Liakhovetskid6fa5a42012-05-09 17:09:17 +02001626 param->shdma_slave.slave_id = s->cfg->dma_slave_tx;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001627
1628 s->cookie_tx = -EINVAL;
1629 chan = dma_request_channel(mask, filter, param);
1630 dev_dbg(port->dev, "%s: TX: got channel %p\n", __func__, chan);
1631 if (chan) {
1632 s->chan_tx = chan;
1633 sg_init_table(&s->sg_tx, 1);
1634 /* UART circular tx buffer is an aligned page. */
Laurent Pincharte2afca62013-12-11 13:40:31 +01001635 BUG_ON((uintptr_t)port->state->xmit.buf & ~PAGE_MASK);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001636 sg_set_page(&s->sg_tx, virt_to_page(port->state->xmit.buf),
Laurent Pincharte2afca62013-12-11 13:40:31 +01001637 UART_XMIT_SIZE,
1638 (uintptr_t)port->state->xmit.buf & ~PAGE_MASK);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001639 nent = dma_map_sg(port->dev, &s->sg_tx, 1, DMA_TO_DEVICE);
1640 if (!nent)
1641 sci_tx_dma_release(s, false);
1642 else
Laurent Pincharte2afca62013-12-11 13:40:31 +01001643 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
1644 sg_dma_len(&s->sg_tx), port->state->xmit.buf,
1645 &sg_dma_address(&s->sg_tx));
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001646
1647 s->sg_len_tx = nent;
1648
1649 INIT_WORK(&s->work_tx, work_fn_tx);
1650 }
1651
1652 param = &s->param_rx;
1653
1654 /* Slave ID, e.g., SHDMA_SLAVE_SCIF0_RX */
Guennadi Liakhovetskid6fa5a42012-05-09 17:09:17 +02001655 param->shdma_slave.slave_id = s->cfg->dma_slave_rx;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001656
1657 chan = dma_request_channel(mask, filter, param);
1658 dev_dbg(port->dev, "%s: RX: got channel %p\n", __func__, chan);
1659 if (chan) {
1660 dma_addr_t dma[2];
1661 void *buf[2];
1662 int i;
1663
1664 s->chan_rx = chan;
1665
1666 s->buf_len_rx = 2 * max(16, (int)port->fifosize);
1667 buf[0] = dma_alloc_coherent(port->dev, s->buf_len_rx * 2,
1668 &dma[0], GFP_KERNEL);
1669
1670 if (!buf[0]) {
1671 dev_warn(port->dev,
1672 "failed to allocate dma buffer, using PIO\n");
1673 sci_rx_dma_release(s, true);
1674 return;
1675 }
1676
1677 buf[1] = buf[0] + s->buf_len_rx;
1678 dma[1] = dma[0] + s->buf_len_rx;
1679
1680 for (i = 0; i < 2; i++) {
1681 struct scatterlist *sg = &s->sg_rx[i];
1682
1683 sg_init_table(sg, 1);
1684 sg_set_page(sg, virt_to_page(buf[i]), s->buf_len_rx,
Laurent Pincharte2afca62013-12-11 13:40:31 +01001685 (uintptr_t)buf[i] & ~PAGE_MASK);
Magnus Dammf354a382010-03-19 04:47:01 +00001686 sg_dma_address(sg) = dma[i];
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001687 }
1688
1689 INIT_WORK(&s->work_rx, work_fn_rx);
1690 setup_timer(&s->rx_timer, rx_timer_fn, (unsigned long)s);
1691
1692 sci_submit_rx(s);
1693 }
1694}
1695
1696static void sci_free_dma(struct uart_port *port)
1697{
1698 struct sci_port *s = to_sci_port(port);
1699
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001700 if (s->chan_tx)
1701 sci_tx_dma_release(s, false);
1702 if (s->chan_rx)
1703 sci_rx_dma_release(s, false);
1704}
Paul Mundt27bd1072011-01-19 15:37:31 +09001705#else
1706static inline void sci_request_dma(struct uart_port *port)
1707{
1708}
1709
1710static inline void sci_free_dma(struct uart_port *port)
1711{
1712}
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001713#endif
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715static int sci_startup(struct uart_port *port)
1716{
Magnus Damma5660ad2009-01-21 15:14:38 +00001717 struct sci_port *s = to_sci_port(port);
Shinya Kuribayashi33b48e12012-11-16 10:54:49 +09001718 unsigned long flags;
Paul Mundt073e84c2011-01-19 17:30:53 +09001719 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001721 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1722
Paul Mundt073e84c2011-01-19 17:30:53 +09001723 ret = sci_request_irq(s);
1724 if (unlikely(ret < 0))
1725 return ret;
1726
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001727 sci_request_dma(port);
Paul Mundt073e84c2011-01-19 17:30:53 +09001728
Shinya Kuribayashi33b48e12012-11-16 10:54:49 +09001729 spin_lock_irqsave(&port->lock, flags);
Yoshinori Satod6569012005-10-14 15:59:12 -07001730 sci_start_tx(port);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001731 sci_start_rx(port);
Shinya Kuribayashi33b48e12012-11-16 10:54:49 +09001732 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 return 0;
1735}
1736
1737static void sci_shutdown(struct uart_port *port)
1738{
Magnus Damma5660ad2009-01-21 15:14:38 +00001739 struct sci_port *s = to_sci_port(port);
Shinya Kuribayashi33b48e12012-11-16 10:54:49 +09001740 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001742 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1743
Shinya Kuribayashi33b48e12012-11-16 10:54:49 +09001744 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 sci_stop_rx(port);
Russell Kingb129a8c2005-08-31 10:12:14 +01001746 sci_stop_tx(port);
Shinya Kuribayashi33b48e12012-11-16 10:54:49 +09001747 spin_unlock_irqrestore(&port->lock, flags);
Paul Mundt073e84c2011-01-19 17:30:53 +09001748
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001749 sci_free_dma(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 sci_free_irq(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751}
1752
Paul Mundt26c92f32009-06-24 18:23:52 +09001753static unsigned int sci_scbrr_calc(unsigned int algo_id, unsigned int bps,
1754 unsigned long freq)
1755{
1756 switch (algo_id) {
1757 case SCBRR_ALGO_1:
Laurent Pinchart6557b1f2013-12-06 10:59:12 +01001758 return freq / (16 * bps);
Paul Mundt26c92f32009-06-24 18:23:52 +09001759 case SCBRR_ALGO_2:
Laurent Pinchart6557b1f2013-12-06 10:59:12 +01001760 return DIV_ROUND_CLOSEST(freq, 32 * bps) - 1;
Paul Mundt26c92f32009-06-24 18:23:52 +09001761 case SCBRR_ALGO_3:
Laurent Pinchart6557b1f2013-12-06 10:59:12 +01001762 return freq / (8 * bps);
Paul Mundt26c92f32009-06-24 18:23:52 +09001763 case SCBRR_ALGO_4:
Laurent Pinchart6557b1f2013-12-06 10:59:12 +01001764 return DIV_ROUND_CLOSEST(freq, 16 * bps) - 1;
Paul Mundt26c92f32009-06-24 18:23:52 +09001765 }
1766
1767 /* Warn, but use a safe default */
1768 WARN_ON(1);
Paul Mundte8183a62011-01-19 17:51:37 +09001769
Paul Mundt26c92f32009-06-24 18:23:52 +09001770 return ((freq + 16 * bps) / (32 * bps) - 1);
1771}
1772
Ulrich Hechtf303b362013-05-31 17:57:01 +02001773/* calculate sample rate, BRR, and clock select for HSCIF */
1774static void sci_baud_calc_hscif(unsigned int bps, unsigned long freq,
1775 int *brr, unsigned int *srr,
1776 unsigned int *cks)
1777{
1778 int sr, c, br, err;
1779 int min_err = 1000; /* 100% */
1780
1781 /* Find the combination of sample rate and clock select with the
1782 smallest deviation from the desired baud rate. */
1783 for (sr = 8; sr <= 32; sr++) {
1784 for (c = 0; c <= 3; c++) {
1785 /* integerized formulas from HSCIF documentation */
1786 br = freq / (sr * (1 << (2 * c + 1)) * bps) - 1;
1787 if (br < 0 || br > 255)
1788 continue;
1789 err = freq / ((br + 1) * bps * sr *
1790 (1 << (2 * c + 1)) / 1000) - 1000;
1791 if (min_err > err) {
1792 min_err = err;
1793 *brr = br;
1794 *srr = sr - 1;
1795 *cks = c;
1796 }
1797 }
1798 }
1799
1800 if (min_err == 1000) {
1801 WARN_ON(1);
1802 /* use defaults */
1803 *brr = 255;
1804 *srr = 15;
1805 *cks = 0;
1806 }
1807}
1808
Magnus Damm1ba76222011-08-03 03:47:36 +00001809static void sci_reset(struct uart_port *port)
1810{
Paul Mundt0979e0e2011-11-24 18:35:49 +09001811 struct plat_sci_reg *reg;
Magnus Damm1ba76222011-08-03 03:47:36 +00001812 unsigned int status;
1813
1814 do {
Paul Mundtb12bb292012-03-30 19:50:15 +09001815 status = serial_port_in(port, SCxSR);
Magnus Damm1ba76222011-08-03 03:47:36 +00001816 } while (!(status & SCxSR_TEND(port)));
1817
Paul Mundtb12bb292012-03-30 19:50:15 +09001818 serial_port_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */
Magnus Damm1ba76222011-08-03 03:47:36 +00001819
Paul Mundt0979e0e2011-11-24 18:35:49 +09001820 reg = sci_getreg(port, SCFCR);
1821 if (reg->size)
Paul Mundtb12bb292012-03-30 19:50:15 +09001822 serial_port_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST);
Magnus Damm1ba76222011-08-03 03:47:36 +00001823}
1824
Alan Cox606d0992006-12-08 02:38:45 -08001825static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
1826 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Paul Mundt00b9de92009-06-24 17:53:33 +09001828 struct sci_port *s = to_sci_port(port);
Paul Mundt0979e0e2011-11-24 18:35:49 +09001829 struct plat_sci_reg *reg;
Simon Hormand4759de2013-06-20 21:09:45 +09001830 unsigned int baud, smr_val, max_baud, cks = 0;
Paul Mundta2159b52008-10-02 19:09:13 +09001831 int t = -1;
Simon Hormand4759de2013-06-20 21:09:45 +09001832 unsigned int srr = 15;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Magnus Damm154280f2009-12-22 03:37:28 +00001834 /*
1835 * earlyprintk comes here early on with port->uartclk set to zero.
1836 * the clock framework is not up and running at this point so here
1837 * we assume that 115200 is the maximum baud rate. please note that
1838 * the baud rate is not programmed during earlyprintk - it is assumed
1839 * that the previous boot loader has enabled required clocks and
1840 * setup the baud rate generator hardware for us already.
1841 */
1842 max_baud = port->uartclk ? port->uartclk / 16 : 115200;
1843
1844 baud = uart_get_baud_rate(port, termios, old, 0, max_baud);
Ulrich Hechtf303b362013-05-31 17:57:01 +02001845 if (likely(baud && port->uartclk)) {
1846 if (s->cfg->scbrr_algo_id == SCBRR_ALGO_6) {
1847 sci_baud_calc_hscif(baud, port->uartclk, &t, &srr,
1848 &cks);
1849 } else {
1850 t = sci_scbrr_calc(s->cfg->scbrr_algo_id, baud,
1851 port->uartclk);
1852 for (cks = 0; t >= 256 && cks <= 3; cks++)
1853 t >>= 2;
1854 }
1855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Paul Mundt23241d42011-06-28 13:55:31 +09001857 sci_port_enable(s);
Alexandre Courbot36003382011-03-03 08:04:42 +00001858
Magnus Damm1ba76222011-08-03 03:47:36 +00001859 sci_reset(port);
Paul Mundte108b2c2006-09-27 16:32:13 +09001860
Paul Mundtb12bb292012-03-30 19:50:15 +09001861 smr_val = serial_port_in(port, SCSMR) & 3;
Paul Mundte8183a62011-01-19 17:51:37 +09001862
Paul Mundte108b2c2006-09-27 16:32:13 +09001863 if ((termios->c_cflag & CSIZE) == CS7)
1864 smr_val |= 0x40;
1865 if (termios->c_cflag & PARENB)
1866 smr_val |= 0x20;
1867 if (termios->c_cflag & PARODD)
1868 smr_val |= 0x30;
1869 if (termios->c_cflag & CSTOPB)
1870 smr_val |= 0x08;
1871
1872 uart_update_timeout(port, termios->c_cflag, baud);
1873
Takashi Yoshii9d482cc2012-11-16 10:52:49 +09001874 dev_dbg(port->dev, "%s: SMR %x, cks %x, t %x, SCSCR %x\n",
1875 __func__, smr_val, cks, t, s->cfg->scscr);
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001876
Takashi Yoshii4ffc3cd2012-11-16 10:52:22 +09001877 if (t >= 0) {
Takashi Yoshii9d482cc2012-11-16 10:52:49 +09001878 serial_port_out(port, SCSMR, (smr_val & ~3) | cks);
Paul Mundtb12bb292012-03-30 19:50:15 +09001879 serial_port_out(port, SCBRR, t);
Ulrich Hechtf303b362013-05-31 17:57:01 +02001880 reg = sci_getreg(port, HSSRR);
1881 if (reg->size)
1882 serial_port_out(port, HSSRR, srr | HSCIF_SRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */
Takashi Yoshii9d482cc2012-11-16 10:52:49 +09001884 } else
1885 serial_port_out(port, SCSMR, smr_val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Paul Mundtd5701642008-12-16 20:07:27 +09001887 sci_init_pins(port, termios->c_cflag);
Paul Mundt0979e0e2011-11-24 18:35:49 +09001888
Paul Mundt73c3d532011-12-02 19:02:06 +09001889 reg = sci_getreg(port, SCFCR);
1890 if (reg->size) {
Paul Mundtb12bb292012-03-30 19:50:15 +09001891 unsigned short ctrl = serial_port_in(port, SCFCR);
Paul Mundt0979e0e2011-11-24 18:35:49 +09001892
Paul Mundt73c3d532011-12-02 19:02:06 +09001893 if (s->cfg->capabilities & SCIx_HAVE_RTSCTS) {
Paul Mundtfaf02f82011-12-02 17:44:50 +09001894 if (termios->c_cflag & CRTSCTS)
1895 ctrl |= SCFCR_MCE;
1896 else
1897 ctrl &= ~SCFCR_MCE;
Paul Mundtfaf02f82011-12-02 17:44:50 +09001898 }
Paul Mundt73c3d532011-12-02 19:02:06 +09001899
1900 /*
1901 * As we've done a sci_reset() above, ensure we don't
1902 * interfere with the FIFOs while toggling MCE. As the
1903 * reset values could still be set, simply mask them out.
1904 */
1905 ctrl &= ~(SCFCR_RFRST | SCFCR_TFRST);
1906
Paul Mundtb12bb292012-03-30 19:50:15 +09001907 serial_port_out(port, SCFCR, ctrl);
Paul Mundt0979e0e2011-11-24 18:35:49 +09001908 }
Paul Mundtb7a76e42006-02-01 03:06:06 -08001909
Paul Mundtb12bb292012-03-30 19:50:15 +09001910 serial_port_out(port, SCSCR, s->cfg->scscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Guennadi Liakhovetski3089f382010-03-19 13:53:04 +00001912#ifdef CONFIG_SERIAL_SH_SCI_DMA
1913 /*
1914 * Calculate delay for 1.5 DMA buffers: see
1915 * drivers/serial/serial_core.c::uart_update_timeout(). With 10 bits
1916 * (CS8), 250Hz, 115200 baud and 64 bytes FIFO, the above function
1917 * calculates 1 jiffie for the data plus 5 jiffies for the "slop(e)."
1918 * Then below we calculate 3 jiffies (12ms) for 1.5 DMA buffers (3 FIFO
1919 * sizes), but it has been found out experimentally, that this is not
1920 * enough: the driver too often needlessly runs on a DMA timeout. 20ms
1921 * as a minimum seem to work perfectly.
1922 */
1923 if (s->chan_rx) {
1924 s->rx_timeout = (port->timeout - HZ / 50) * s->buf_len_rx * 3 /
1925 port->fifosize / 2;
1926 dev_dbg(port->dev,
1927 "DMA Rx t-out %ums, tty t-out %u jiffies\n",
1928 s->rx_timeout * 1000 / HZ, port->timeout);
1929 if (s->rx_timeout < msecs_to_jiffies(20))
1930 s->rx_timeout = msecs_to_jiffies(20);
1931 }
1932#endif
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if ((termios->c_cflag & CREAD) != 0)
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09001935 sci_start_rx(port);
Alexandre Courbot36003382011-03-03 08:04:42 +00001936
Paul Mundt23241d42011-06-28 13:55:31 +09001937 sci_port_disable(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
Teppei Kamijou0174e5c2012-11-16 10:51:55 +09001940static void sci_pm(struct uart_port *port, unsigned int state,
1941 unsigned int oldstate)
1942{
1943 struct sci_port *sci_port = to_sci_port(port);
1944
1945 switch (state) {
1946 case 3:
1947 sci_port_disable(sci_port);
1948 break;
1949 default:
1950 sci_port_enable(sci_port);
1951 break;
1952 }
1953}
1954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955static const char *sci_type(struct uart_port *port)
1956{
1957 switch (port->type) {
Michael Trimarchie7c98dc2008-11-13 18:18:35 +09001958 case PORT_IRDA:
1959 return "irda";
1960 case PORT_SCI:
1961 return "sci";
1962 case PORT_SCIF:
1963 return "scif";
1964 case PORT_SCIFA:
1965 return "scifa";
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00001966 case PORT_SCIFB:
1967 return "scifb";
Ulrich Hechtf303b362013-05-31 17:57:01 +02001968 case PORT_HSCIF:
1969 return "hscif";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 }
1971
Paul Mundtfa439722008-09-04 18:53:58 +09001972 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
1974
Paul Mundte2651642011-01-20 21:24:03 +09001975static inline unsigned long sci_port_size(struct uart_port *port)
1976{
1977 /*
1978 * Pick an arbitrary size that encapsulates all of the base
1979 * registers by default. This can be optimized later, or derived
1980 * from platform resource data at such a time that ports begin to
1981 * behave more erratically.
1982 */
Ulrich Hechtf303b362013-05-31 17:57:01 +02001983 if (port->type == PORT_HSCIF)
1984 return 96;
1985 else
1986 return 64;
Paul Mundte2651642011-01-20 21:24:03 +09001987}
1988
Paul Mundtf6e94952011-01-21 15:25:36 +09001989static int sci_remap_port(struct uart_port *port)
1990{
1991 unsigned long size = sci_port_size(port);
1992
1993 /*
1994 * Nothing to do if there's already an established membase.
1995 */
1996 if (port->membase)
1997 return 0;
1998
1999 if (port->flags & UPF_IOREMAP) {
2000 port->membase = ioremap_nocache(port->mapbase, size);
2001 if (unlikely(!port->membase)) {
2002 dev_err(port->dev, "can't remap port#%d\n", port->line);
2003 return -ENXIO;
2004 }
2005 } else {
2006 /*
2007 * For the simple (and majority of) cases where we don't
2008 * need to do any remapping, just cast the cookie
2009 * directly.
2010 */
2011 port->membase = (void __iomem *)port->mapbase;
2012 }
2013
2014 return 0;
2015}
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017static void sci_release_port(struct uart_port *port)
2018{
Paul Mundte2651642011-01-20 21:24:03 +09002019 if (port->flags & UPF_IOREMAP) {
2020 iounmap(port->membase);
2021 port->membase = NULL;
2022 }
2023
2024 release_mem_region(port->mapbase, sci_port_size(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
2027static int sci_request_port(struct uart_port *port)
2028{
Paul Mundte2651642011-01-20 21:24:03 +09002029 unsigned long size = sci_port_size(port);
2030 struct resource *res;
Paul Mundtf6e94952011-01-21 15:25:36 +09002031 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Paul Mundt10205202011-01-21 16:00:31 +09002033 res = request_mem_region(port->mapbase, size, dev_name(port->dev));
Paul Mundte2651642011-01-20 21:24:03 +09002034 if (unlikely(res == NULL))
2035 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Paul Mundtf6e94952011-01-21 15:25:36 +09002037 ret = sci_remap_port(port);
2038 if (unlikely(ret != 0)) {
2039 release_resource(res);
2040 return ret;
Paul Mundt7ff731a2008-10-01 15:46:58 +09002041 }
Paul Mundte2651642011-01-20 21:24:03 +09002042
2043 return 0;
2044}
2045
2046static void sci_config_port(struct uart_port *port, int flags)
2047{
2048 if (flags & UART_CONFIG_TYPE) {
2049 struct sci_port *sport = to_sci_port(port);
2050
2051 port->type = sport->cfg->type;
2052 sci_request_port(port);
2053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055
2056static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
2057{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (ser->baud_base < 2400)
2059 /* No paper tape reader for Mitch.. */
2060 return -EINVAL;
2061
2062 return 0;
2063}
2064
2065static struct uart_ops sci_uart_ops = {
2066 .tx_empty = sci_tx_empty,
2067 .set_mctrl = sci_set_mctrl,
2068 .get_mctrl = sci_get_mctrl,
2069 .start_tx = sci_start_tx,
2070 .stop_tx = sci_stop_tx,
2071 .stop_rx = sci_stop_rx,
2072 .enable_ms = sci_enable_ms,
2073 .break_ctl = sci_break_ctl,
2074 .startup = sci_startup,
2075 .shutdown = sci_shutdown,
2076 .set_termios = sci_set_termios,
Teppei Kamijou0174e5c2012-11-16 10:51:55 +09002077 .pm = sci_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 .type = sci_type,
2079 .release_port = sci_release_port,
2080 .request_port = sci_request_port,
2081 .config_port = sci_config_port,
2082 .verify_port = sci_verify_port,
Paul Mundt07d2a1a2008-12-11 19:06:43 +09002083#ifdef CONFIG_CONSOLE_POLL
2084 .poll_get_char = sci_poll_get_char,
2085 .poll_put_char = sci_poll_put_char,
2086#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087};
2088
Bill Pemberton9671f092012-11-19 13:21:50 -05002089static int sci_init_single(struct platform_device *dev,
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01002090 struct sci_port *sci_port, unsigned int index,
2091 struct plat_sci_port *p, bool early)
Paul Mundte108b2c2006-09-27 16:32:13 +09002092{
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09002093 struct uart_port *port = &sci_port->port;
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01002094 const struct resource *res;
2095 unsigned int i;
Paul Mundt3127c6b2011-06-28 13:44:37 +09002096 int ret;
Paul Mundte108b2c2006-09-27 16:32:13 +09002097
Paul Mundt50f09592011-12-02 20:09:48 +09002098 sci_port->cfg = p;
2099
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09002100 port->ops = &sci_uart_ops;
2101 port->iotype = UPIO_MEM;
2102 port->line = index;
Markus Pietrek75136d42010-01-15 08:33:20 +09002103
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01002104 if (dev->num_resources) {
2105 /* Device has resources, use them. */
2106 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
2107 if (res == NULL)
2108 return -ENOMEM;
2109
2110 port->mapbase = res->start;
2111
2112 for (i = 0; i < ARRAY_SIZE(sci_port->irqs); ++i)
2113 sci_port->irqs[i] = platform_get_irq(dev, i);
2114
2115 /* The SCI generates several interrupts. They can be muxed
2116 * together or connected to different interrupt lines. In the
2117 * muxed case only one interrupt resource is specified. In the
2118 * non-muxed case three or four interrupt resources are
2119 * specified, as the BRI interrupt is optional.
2120 */
2121 if (sci_port->irqs[0] < 0)
2122 return -ENXIO;
2123
2124 if (sci_port->irqs[1] < 0) {
2125 sci_port->irqs[1] = sci_port->irqs[0];
2126 sci_port->irqs[2] = sci_port->irqs[0];
2127 sci_port->irqs[3] = sci_port->irqs[0];
2128 }
2129 } else {
2130 /* No resources, use old-style platform data. */
2131 port->mapbase = p->mapbase;
2132 for (i = 0; i < ARRAY_SIZE(sci_port->irqs); ++i)
2133 sci_port->irqs[i] = p->irqs[i] ? p->irqs[i] : -ENXIO;
2134 }
2135
Markus Pietrek75136d42010-01-15 08:33:20 +09002136 switch (p->type) {
Guennadi Liakhovetskid1d4b102010-05-23 16:39:09 +00002137 case PORT_SCIFB:
2138 port->fifosize = 256;
2139 break;
Ulrich Hechtf303b362013-05-31 17:57:01 +02002140 case PORT_HSCIF:
2141 port->fifosize = 128;
2142 break;
Markus Pietrek75136d42010-01-15 08:33:20 +09002143 case PORT_SCIFA:
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09002144 port->fifosize = 64;
Markus Pietrek75136d42010-01-15 08:33:20 +09002145 break;
2146 case PORT_SCIF:
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09002147 port->fifosize = 16;
Markus Pietrek75136d42010-01-15 08:33:20 +09002148 break;
2149 default:
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09002150 port->fifosize = 1;
Markus Pietrek75136d42010-01-15 08:33:20 +09002151 break;
2152 }
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002153
Paul Mundt3127c6b2011-06-28 13:44:37 +09002154 if (p->regtype == SCIx_PROBE_REGTYPE) {
2155 ret = sci_probe_regmap(p);
Rafael J. Wysockifc971142011-08-08 00:26:50 +02002156 if (unlikely(ret))
Paul Mundt3127c6b2011-06-28 13:44:37 +09002157 return ret;
2158 }
Paul Mundt61a69762011-06-14 12:40:19 +09002159
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01002160 if (!early) {
Paul Mundtc7ed1ab2010-03-10 18:35:14 +09002161 sci_port->iclk = clk_get(&dev->dev, "sci_ick");
2162 if (IS_ERR(sci_port->iclk)) {
2163 sci_port->iclk = clk_get(&dev->dev, "peripheral_clk");
2164 if (IS_ERR(sci_port->iclk)) {
2165 dev_err(&dev->dev, "can't get iclk\n");
2166 return PTR_ERR(sci_port->iclk);
2167 }
2168 }
2169
2170 /*
2171 * The function clock is optional, ignore it if we can't
2172 * find it.
2173 */
2174 sci_port->fclk = clk_get(&dev->dev, "sci_fck");
2175 if (IS_ERR(sci_port->fclk))
2176 sci_port->fclk = NULL;
2177
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09002178 port->dev = &dev->dev;
Magnus Damm5e50d2d2011-04-19 10:38:25 +00002179
2180 pm_runtime_enable(&dev->dev);
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002181 }
Paul Mundte108b2c2006-09-27 16:32:13 +09002182
Magnus Damm7ed7e072009-01-21 15:14:14 +00002183 sci_port->break_timer.data = (unsigned long)sci_port;
2184 sci_port->break_timer.function = sci_break_timer;
2185 init_timer(&sci_port->break_timer);
Paul Mundte108b2c2006-09-27 16:32:13 +09002186
Paul Mundtdebf9502011-06-08 18:19:37 +09002187 /*
2188 * Establish some sensible defaults for the error detection.
2189 */
Laurent Pinchart3ae988d2013-12-06 10:59:17 +01002190 sci_port->error_mask = (p->type == PORT_SCI) ?
Paul Mundtdebf9502011-06-08 18:19:37 +09002191 SCI_DEFAULT_ERROR_MASK : SCIF_DEFAULT_ERROR_MASK;
2192
2193 /*
2194 * Establish sensible defaults for the overrun detection, unless
2195 * the part has explicitly disabled support for it.
2196 */
Laurent Pinchart3ae988d2013-12-06 10:59:17 +01002197 if (p->type == PORT_SCI)
2198 sci_port->overrun_bit = 5;
2199 else if (p->scbrr_algo_id == SCBRR_ALGO_4)
2200 sci_port->overrun_bit = 9;
2201 else
2202 sci_port->overrun_bit = 0;
Paul Mundtdebf9502011-06-08 18:19:37 +09002203
Laurent Pinchart3ae988d2013-12-06 10:59:17 +01002204 /*
2205 * Make the error mask inclusive of overrun detection, if
2206 * supported.
2207 */
2208 sci_port->error_mask |= 1 << sci_port->overrun_bit;
Paul Mundtdebf9502011-06-08 18:19:37 +09002209
Paul Mundtce6738b2011-01-19 15:24:40 +09002210 port->type = p->type;
Laurent Pinchartb6e4a3f2013-12-06 10:59:14 +01002211 port->flags = UPF_FIXED_PORT | p->flags;
Paul Mundt61a69762011-06-14 12:40:19 +09002212 port->regshift = p->regshift;
Paul Mundtce6738b2011-01-19 15:24:40 +09002213
2214 /*
Paul Mundt61a69762011-06-14 12:40:19 +09002215 * The UART port needs an IRQ value, so we peg this to the RX IRQ
Paul Mundtce6738b2011-01-19 15:24:40 +09002216 * for the multi-IRQ ports, which is where we are primarily
2217 * concerned with the shutdown path synchronization.
2218 *
2219 * For the muxed case there's nothing more to do.
2220 */
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01002221 port->irq = sci_port->irqs[SCIx_RXI_IRQ];
Yong Zhang9cfb5c02011-09-22 16:59:15 +08002222 port->irqflags = 0;
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +09002223
Paul Mundt61a69762011-06-14 12:40:19 +09002224 port->serial_in = sci_serial_in;
2225 port->serial_out = sci_serial_out;
2226
Guennadi Liakhovetski937bb6e2011-06-24 13:56:15 +02002227 if (p->dma_slave_tx > 0 && p->dma_slave_rx > 0)
2228 dev_dbg(port->dev, "DMA tx %d, rx %d\n",
2229 p->dma_slave_tx, p->dma_slave_rx);
Magnus Damm7ed7e072009-01-21 15:14:14 +00002230
Paul Mundtc7ed1ab2010-03-10 18:35:14 +09002231 return 0;
Paul Mundte108b2c2006-09-27 16:32:13 +09002232}
2233
Laurent Pinchart6dae1422012-06-13 00:28:23 +02002234static void sci_cleanup_single(struct sci_port *port)
2235{
Laurent Pinchart6dae1422012-06-13 00:28:23 +02002236 clk_put(port->iclk);
2237 clk_put(port->fclk);
2238
2239 pm_runtime_disable(port->port.dev);
2240}
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
Magnus Dammdc8e6f52009-01-21 15:14:06 +00002243static void serial_console_putchar(struct uart_port *port, int ch)
2244{
2245 sci_poll_put_char(port, ch);
2246}
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248/*
2249 * Print a string to the serial port trying not to disturb
2250 * any possible real use of the port...
2251 */
2252static void serial_console_write(struct console *co, const char *s,
2253 unsigned count)
2254{
Paul Mundt906b17d2011-01-21 16:19:53 +09002255 struct sci_port *sci_port = &sci_ports[co->index];
2256 struct uart_port *port = &sci_port->port;
Shinya Kuribayashi40f70c02012-11-16 10:54:15 +09002257 unsigned short bits, ctrl;
2258 unsigned long flags;
2259 int locked = 1;
2260
2261 local_irq_save(flags);
2262 if (port->sysrq)
2263 locked = 0;
2264 else if (oops_in_progress)
2265 locked = spin_trylock(&port->lock);
2266 else
2267 spin_lock(&port->lock);
2268
2269 /* first save the SCSCR then disable the interrupts */
2270 ctrl = serial_port_in(port, SCSCR);
2271 serial_port_out(port, SCSCR, sci_port->cfg->scscr);
Paul Mundt07d2a1a2008-12-11 19:06:43 +09002272
Magnus Damm501b8252009-01-21 15:14:30 +00002273 uart_console_write(port, s, count, serial_console_putchar);
Magnus Damm973e5d52009-02-24 15:57:12 +09002274
2275 /* wait until fifo is empty and last bit has been transmitted */
2276 bits = SCxSR_TDxE(port) | SCxSR_TEND(port);
Paul Mundtb12bb292012-03-30 19:50:15 +09002277 while ((serial_port_in(port, SCxSR) & bits) != bits)
Magnus Damm973e5d52009-02-24 15:57:12 +09002278 cpu_relax();
Shinya Kuribayashi40f70c02012-11-16 10:54:15 +09002279
2280 /* restore the SCSCR */
2281 serial_port_out(port, SCSCR, ctrl);
2282
2283 if (locked)
2284 spin_unlock(&port->lock);
2285 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286}
2287
Bill Pemberton9671f092012-11-19 13:21:50 -05002288static int serial_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
Magnus Dammdc8e6f52009-01-21 15:14:06 +00002290 struct sci_port *sci_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 struct uart_port *port;
2292 int baud = 115200;
2293 int bits = 8;
2294 int parity = 'n';
2295 int flow = 'n';
2296 int ret;
2297
Paul Mundte108b2c2006-09-27 16:32:13 +09002298 /*
Paul Mundt906b17d2011-01-21 16:19:53 +09002299 * Refuse to handle any bogus ports.
Paul Mundte108b2c2006-09-27 16:32:13 +09002300 */
Paul Mundt906b17d2011-01-21 16:19:53 +09002301 if (co->index < 0 || co->index >= SCI_NPORTS)
Paul Mundte108b2c2006-09-27 16:32:13 +09002302 return -ENODEV;
Paul Mundte108b2c2006-09-27 16:32:13 +09002303
Paul Mundt906b17d2011-01-21 16:19:53 +09002304 sci_port = &sci_ports[co->index];
2305 port = &sci_port->port;
2306
Alexandre Courbotb2267a62011-02-09 03:18:46 +00002307 /*
2308 * Refuse to handle uninitialized ports.
2309 */
2310 if (!port->ops)
2311 return -ENODEV;
2312
Paul Mundtf6e94952011-01-21 15:25:36 +09002313 ret = sci_remap_port(port);
2314 if (unlikely(ret != 0))
2315 return ret;
Paul Mundte108b2c2006-09-27 16:32:13 +09002316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (options)
2318 uart_parse_options(options, &baud, &parity, &bits, &flow);
2319
Paul Mundtab7cfb52011-06-01 14:47:42 +09002320 return uart_set_options(port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
2322
2323static struct console serial_console = {
2324 .name = "ttySC",
Paul Mundt906b17d2011-01-21 16:19:53 +09002325 .device = uart_console_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 .write = serial_console_write,
2327 .setup = serial_console_setup,
Paul Mundtfa5da2f2007-03-08 17:27:37 +09002328 .flags = CON_PRINTBUFFER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 .index = -1,
Paul Mundt906b17d2011-01-21 16:19:53 +09002330 .data = &sci_uart_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331};
2332
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002333static struct console early_serial_console = {
2334 .name = "early_ttySC",
2335 .write = serial_console_write,
2336 .flags = CON_PRINTBUFFER,
Paul Mundt906b17d2011-01-21 16:19:53 +09002337 .index = -1,
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002338};
Paul Mundtecdf8a42011-01-21 00:05:48 +09002339
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002340static char early_serial_buf[32];
2341
Bill Pemberton9671f092012-11-19 13:21:50 -05002342static int sci_probe_earlyprintk(struct platform_device *pdev)
Paul Mundtecdf8a42011-01-21 00:05:48 +09002343{
Jingoo Han574de552013-07-30 17:06:57 +09002344 struct plat_sci_port *cfg = dev_get_platdata(&pdev->dev);
Paul Mundtecdf8a42011-01-21 00:05:48 +09002345
2346 if (early_serial_console.data)
2347 return -EEXIST;
2348
2349 early_serial_console.index = pdev->id;
Paul Mundtecdf8a42011-01-21 00:05:48 +09002350
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01002351 sci_init_single(pdev, &sci_ports[pdev->id], pdev->id, cfg, true);
Paul Mundtecdf8a42011-01-21 00:05:48 +09002352
2353 serial_console_setup(&early_serial_console, early_serial_buf);
2354
2355 if (!strstr(early_serial_buf, "keep"))
2356 early_serial_console.flags |= CON_BOOT;
2357
2358 register_console(&early_serial_console);
2359 return 0;
2360}
Nobuhiro Iwamatsu6a8c9792011-03-24 02:20:56 +00002361
2362#define SCI_CONSOLE (&serial_console)
2363
Paul Mundtecdf8a42011-01-21 00:05:48 +09002364#else
Bill Pemberton9671f092012-11-19 13:21:50 -05002365static inline int sci_probe_earlyprintk(struct platform_device *pdev)
Paul Mundtecdf8a42011-01-21 00:05:48 +09002366{
2367 return -EINVAL;
2368}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Nobuhiro Iwamatsu6a8c9792011-03-24 02:20:56 +00002370#define SCI_CONSOLE NULL
2371
2372#endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
2374static char banner[] __initdata =
Ulrich Hechtf303b362013-05-31 17:57:01 +02002375 KERN_INFO "SuperH (H)SCI(F) driver initialized\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377static struct uart_driver sci_uart_driver = {
2378 .owner = THIS_MODULE,
2379 .driver_name = "sci",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 .dev_name = "ttySC",
2381 .major = SCI_MAJOR,
2382 .minor = SCI_MINOR_START,
Paul Mundte108b2c2006-09-27 16:32:13 +09002383 .nr = SCI_NPORTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 .cons = SCI_CONSOLE,
2385};
2386
Paul Mundt54507f62009-05-08 23:48:33 +09002387static int sci_remove(struct platform_device *dev)
Magnus Damme552de22009-01-21 15:13:42 +00002388{
Paul Mundtd535a232011-01-19 17:19:35 +09002389 struct sci_port *port = platform_get_drvdata(dev);
Magnus Damme552de22009-01-21 15:13:42 +00002390
Paul Mundtd535a232011-01-19 17:19:35 +09002391 cpufreq_unregister_notifier(&port->freq_transition,
2392 CPUFREQ_TRANSITION_NOTIFIER);
Magnus Damme552de22009-01-21 15:13:42 +00002393
Paul Mundtd535a232011-01-19 17:19:35 +09002394 uart_remove_one_port(&sci_uart_driver, &port->port);
Magnus Damme552de22009-01-21 15:13:42 +00002395
Laurent Pinchart6dae1422012-06-13 00:28:23 +02002396 sci_cleanup_single(port);
Paul Mundtd535a232011-01-19 17:19:35 +09002397
Magnus Damme552de22009-01-21 15:13:42 +00002398 return 0;
2399}
2400
Bill Pemberton9671f092012-11-19 13:21:50 -05002401static int sci_probe_single(struct platform_device *dev,
Magnus Damm0ee70712009-01-21 15:13:50 +00002402 unsigned int index,
2403 struct plat_sci_port *p,
2404 struct sci_port *sciport)
2405{
Magnus Damm0ee70712009-01-21 15:13:50 +00002406 int ret;
2407
2408 /* Sanity check */
2409 if (unlikely(index >= SCI_NPORTS)) {
2410 dev_notice(&dev->dev, "Attempting to register port "
2411 "%d when only %d are available.\n",
2412 index+1, SCI_NPORTS);
2413 dev_notice(&dev->dev, "Consider bumping "
2414 "CONFIG_SERIAL_SH_SCI_NR_UARTS!\n");
Laurent Pinchartb6c5ef62012-06-13 00:28:24 +02002415 return -EINVAL;
Magnus Damm0ee70712009-01-21 15:13:50 +00002416 }
2417
Laurent Pinchart1fcc91a2013-12-06 10:59:16 +01002418 ret = sci_init_single(dev, sciport, index, p, false);
Paul Mundtc7ed1ab2010-03-10 18:35:14 +09002419 if (ret)
2420 return ret;
Magnus Damm0ee70712009-01-21 15:13:50 +00002421
Laurent Pinchart6dae1422012-06-13 00:28:23 +02002422 ret = uart_add_one_port(&sci_uart_driver, &sciport->port);
2423 if (ret) {
2424 sci_cleanup_single(sciport);
2425 return ret;
2426 }
2427
2428 return 0;
Magnus Damm0ee70712009-01-21 15:13:50 +00002429}
2430
Bill Pemberton9671f092012-11-19 13:21:50 -05002431static int sci_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Jingoo Han3ba35ba2013-08-01 18:17:45 +09002433 struct plat_sci_port *p = dev_get_platdata(&dev->dev);
Paul Mundtd535a232011-01-19 17:19:35 +09002434 struct sci_port *sp = &sci_ports[dev->id];
Paul Mundtecdf8a42011-01-21 00:05:48 +09002435 int ret;
Magnus Damme552de22009-01-21 15:13:42 +00002436
Paul Mundtecdf8a42011-01-21 00:05:48 +09002437 /*
2438 * If we've come here via earlyprintk initialization, head off to
2439 * the special early probe. We don't have sufficient device state
2440 * to make it beyond this yet.
2441 */
2442 if (is_early_platform_device(dev))
2443 return sci_probe_earlyprintk(dev);
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002444
Paul Mundtd535a232011-01-19 17:19:35 +09002445 platform_set_drvdata(dev, sp);
Magnus Damme552de22009-01-21 15:13:42 +00002446
Paul Mundt906b17d2011-01-21 16:19:53 +09002447 ret = sci_probe_single(dev, dev->id, p, sp);
Paul Mundtd535a232011-01-19 17:19:35 +09002448 if (ret)
Laurent Pinchart6dae1422012-06-13 00:28:23 +02002449 return ret;
Magnus Damme552de22009-01-21 15:13:42 +00002450
Paul Mundtd535a232011-01-19 17:19:35 +09002451 sp->freq_transition.notifier_call = sci_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Paul Mundtd535a232011-01-19 17:19:35 +09002453 ret = cpufreq_register_notifier(&sp->freq_transition,
2454 CPUFREQ_TRANSITION_NOTIFIER);
Laurent Pinchart6dae1422012-06-13 00:28:23 +02002455 if (unlikely(ret < 0)) {
2456 sci_cleanup_single(sp);
2457 return ret;
2458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460#ifdef CONFIG_SH_STANDARD_BIOS
2461 sh_bios_gdb_detach();
2462#endif
2463
Paul Mundte108b2c2006-09-27 16:32:13 +09002464 return 0;
2465}
2466
Paul Mundt6daa79b2009-06-15 07:07:38 +09002467static int sci_suspend(struct device *dev)
Paul Mundte108b2c2006-09-27 16:32:13 +09002468{
Paul Mundtd535a232011-01-19 17:19:35 +09002469 struct sci_port *sport = dev_get_drvdata(dev);
Paul Mundte108b2c2006-09-27 16:32:13 +09002470
Paul Mundtd535a232011-01-19 17:19:35 +09002471 if (sport)
2472 uart_suspend_port(&sci_uart_driver, &sport->port);
Paul Mundte108b2c2006-09-27 16:32:13 +09002473
2474 return 0;
2475}
2476
Paul Mundt6daa79b2009-06-15 07:07:38 +09002477static int sci_resume(struct device *dev)
Paul Mundte108b2c2006-09-27 16:32:13 +09002478{
Paul Mundtd535a232011-01-19 17:19:35 +09002479 struct sci_port *sport = dev_get_drvdata(dev);
Paul Mundte108b2c2006-09-27 16:32:13 +09002480
Paul Mundtd535a232011-01-19 17:19:35 +09002481 if (sport)
2482 uart_resume_port(&sci_uart_driver, &sport->port);
Paul Mundte108b2c2006-09-27 16:32:13 +09002483
2484 return 0;
2485}
2486
Alexey Dobriyan47145212009-12-14 18:00:08 -08002487static const struct dev_pm_ops sci_dev_pm_ops = {
Paul Mundt6daa79b2009-06-15 07:07:38 +09002488 .suspend = sci_suspend,
2489 .resume = sci_resume,
2490};
2491
Paul Mundte108b2c2006-09-27 16:32:13 +09002492static struct platform_driver sci_driver = {
2493 .probe = sci_probe,
Uwe Kleine-Königb9e39c82009-11-24 22:07:32 +01002494 .remove = sci_remove,
Paul Mundte108b2c2006-09-27 16:32:13 +09002495 .driver = {
2496 .name = "sh-sci",
2497 .owner = THIS_MODULE,
Paul Mundt6daa79b2009-06-15 07:07:38 +09002498 .pm = &sci_dev_pm_ops,
Paul Mundte108b2c2006-09-27 16:32:13 +09002499 },
2500};
2501
2502static int __init sci_init(void)
2503{
2504 int ret;
2505
2506 printk(banner);
2507
Paul Mundte108b2c2006-09-27 16:32:13 +09002508 ret = uart_register_driver(&sci_uart_driver);
2509 if (likely(ret == 0)) {
2510 ret = platform_driver_register(&sci_driver);
2511 if (unlikely(ret))
2512 uart_unregister_driver(&sci_uart_driver);
2513 }
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return ret;
2516}
2517
2518static void __exit sci_exit(void)
2519{
Paul Mundte108b2c2006-09-27 16:32:13 +09002520 platform_driver_unregister(&sci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 uart_unregister_driver(&sci_uart_driver);
2522}
2523
Magnus Damm7b6fd3b2009-12-14 10:24:42 +00002524#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
2525early_platform_init_buffer("earlyprintk", &sci_driver,
2526 early_serial_buf, ARRAY_SIZE(early_serial_buf));
2527#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528module_init(sci_init);
2529module_exit(sci_exit);
2530
Paul Mundte108b2c2006-09-27 16:32:13 +09002531MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07002532MODULE_ALIAS("platform:sh-sci");
Paul Mundt7f405f92011-06-28 13:47:40 +09002533MODULE_AUTHOR("Paul Mundt");
Ulrich Hechtf303b362013-05-31 17:57:01 +02002534MODULE_DESCRIPTION("SuperH (H)SCI(F) serial driver");