1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
22#define SUPPORT_SYSRQ
23#endif
24
25#undef DEBUG
26
27#include <linux/clk.h>
28#include <linux/console.h>
29#include <linux/ctype.h>
30#include <linux/cpufreq.h>
31#include <linux/delay.h>
32#include <linux/dmaengine.h>
33#include <linux/dma-mapping.h>
34#include <linux/err.h>
35#include <linux/errno.h>
36#include <linux/init.h>
37#include <linux/interrupt.h>
38#include <linux/ioport.h>
39#include <linux/major.h>
40#include <linux/module.h>
41#include <linux/mm.h>
42#include <linux/of.h>
43#include <linux/platform_device.h>
44#include <linux/pm_runtime.h>
45#include <linux/scatterlist.h>
46#include <linux/serial.h>
47#include <linux/serial_sci.h>
48#include <linux/sh_dma.h>
49#include <linux/slab.h>
50#include <linux/string.h>
51#include <linux/sysrq.h>
52#include <linux/timer.h>
53#include <linux/tty.h>
54#include <linux/tty_flip.h>
55
56#ifdef CONFIG_SUPERH
57#include <asm/sh_bios.h>
58#endif
59
60#include "serial_mctrl_gpio.h"
61#include "sh-sci.h"
62
63
64enum {
65 SCIx_ERI_IRQ,
66 SCIx_RXI_IRQ,
67 SCIx_TXI_IRQ,
68 SCIx_BRI_IRQ,
69 SCIx_NR_IRQS,
70
71 SCIx_MUX_IRQ = SCIx_NR_IRQS,
72};
73
74#define SCIx_IRQ_IS_MUXED(port) \
75 ((port)->irqs[SCIx_ERI_IRQ] == \
76 (port)->irqs[SCIx_RXI_IRQ]) || \
77 ((port)->irqs[SCIx_ERI_IRQ] && \
78 ((port)->irqs[SCIx_RXI_IRQ] < 0))
79
80enum SCI_CLKS {
81 SCI_FCK,
82 SCI_SCK,
83 SCI_BRG_INT,
84 SCI_SCIF_CLK,
85 SCI_NUM_CLKS
86};
87
88
89#define SCI_SR(x) BIT((x) - 1)
90#define SCI_SR_RANGE(x, y) GENMASK((y) - 1, (x) - 1)
91
92#define SCI_SR_SCIFAB SCI_SR(5) | SCI_SR(7) | SCI_SR(11) | \
93 SCI_SR(13) | SCI_SR(16) | SCI_SR(17) | \
94 SCI_SR(19) | SCI_SR(27)
95
96#define min_sr(_port) ffs((_port)->sampling_rate_mask)
97#define max_sr(_port) fls((_port)->sampling_rate_mask)
98
99
100#define for_each_sr(_sr, _port) \
101 for ((_sr) = max_sr(_port); (_sr) >= min_sr(_port); (_sr)--) \
102 if ((_port)->sampling_rate_mask & SCI_SR((_sr)))
103
104struct plat_sci_reg {
105 u8 offset, size;
106};
107
108struct sci_port_params {
109 const struct plat_sci_reg regs[SCIx_NR_REGS];
110 unsigned int fifosize;
111 unsigned int overrun_reg;
112 unsigned int overrun_mask;
113 unsigned int sampling_rate_mask;
114 unsigned int error_mask;
115 unsigned int error_clear;
116};
117
118struct sci_port {
119 struct uart_port port;
120
121
122 const struct sci_port_params *params;
123 const struct plat_sci_port *cfg;
124 unsigned int sampling_rate_mask;
125 resource_size_t reg_size;
126 struct mctrl_gpios *gpios;
127
128
129 struct clk *clks[SCI_NUM_CLKS];
130 unsigned long clk_rates[SCI_NUM_CLKS];
131
132 int irqs[SCIx_NR_IRQS];
133 char *irqstr[SCIx_NR_IRQS];
134
135 struct dma_chan *chan_tx;
136 struct dma_chan *chan_rx;
137
138#ifdef CONFIG_SERIAL_SH_SCI_DMA
139 dma_cookie_t cookie_tx;
140 dma_cookie_t cookie_rx[2];
141 dma_cookie_t active_rx;
142 dma_addr_t tx_dma_addr;
143 unsigned int tx_dma_len;
144 struct scatterlist sg_rx[2];
145 void *rx_buf[2];
146 size_t buf_len_rx;
147 struct work_struct work_tx;
148 struct timer_list rx_timer;
149 unsigned int rx_timeout;
150#endif
151 unsigned int rx_frame;
152 int rx_trigger;
153 struct timer_list rx_fifo_timer;
154 int rx_fifo_timeout;
155
156 bool has_rtscts;
157 bool autorts;
158};
159
160#define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
161
162static struct sci_port sci_ports[SCI_NPORTS];
163static struct uart_driver sci_uart_driver;
164
165static inline struct sci_port *
166to_sci_port(struct uart_port *uart)
167{
168 return container_of(uart, struct sci_port, port);
169}
170
171static const struct sci_port_params sci_port_params[SCIx_NR_REGTYPES] = {
172
173
174
175
176 [SCIx_SCI_REGTYPE] = {
177 .regs = {
178 [SCSMR] = { 0x00, 8 },
179 [SCBRR] = { 0x01, 8 },
180 [SCSCR] = { 0x02, 8 },
181 [SCxTDR] = { 0x03, 8 },
182 [SCxSR] = { 0x04, 8 },
183 [SCxRDR] = { 0x05, 8 },
184 },
185 .fifosize = 1,
186 .overrun_reg = SCxSR,
187 .overrun_mask = SCI_ORER,
188 .sampling_rate_mask = SCI_SR(32),
189 .error_mask = SCI_DEFAULT_ERROR_MASK | SCI_ORER,
190 .error_clear = SCI_ERROR_CLEAR & ~SCI_ORER,
191 },
192
193
194
195
196 [SCIx_IRDA_REGTYPE] = {
197 .regs = {
198 [SCSMR] = { 0x00, 8 },
199 [SCBRR] = { 0x02, 8 },
200 [SCSCR] = { 0x04, 8 },
201 [SCxTDR] = { 0x06, 8 },
202 [SCxSR] = { 0x08, 16 },
203 [SCxRDR] = { 0x0a, 8 },
204 [SCFCR] = { 0x0c, 8 },
205 [SCFDR] = { 0x0e, 16 },
206 },
207 .fifosize = 1,
208 .overrun_reg = SCxSR,
209 .overrun_mask = SCI_ORER,
210 .sampling_rate_mask = SCI_SR(32),
211 .error_mask = SCI_DEFAULT_ERROR_MASK | SCI_ORER,
212 .error_clear = SCI_ERROR_CLEAR & ~SCI_ORER,
213 },
214
215
216
217
218 [SCIx_SCIFA_REGTYPE] = {
219 .regs = {
220 [SCSMR] = { 0x00, 16 },
221 [SCBRR] = { 0x04, 8 },
222 [SCSCR] = { 0x08, 16 },
223 [SCxTDR] = { 0x20, 8 },
224 [SCxSR] = { 0x14, 16 },
225 [SCxRDR] = { 0x24, 8 },
226 [SCFCR] = { 0x18, 16 },
227 [SCFDR] = { 0x1c, 16 },
228 [SCPCR] = { 0x30, 16 },
229 [SCPDR] = { 0x34, 16 },
230 },
231 .fifosize = 64,
232 .overrun_reg = SCxSR,
233 .overrun_mask = SCIFA_ORER,
234 .sampling_rate_mask = SCI_SR_SCIFAB,
235 .error_mask = SCIF_DEFAULT_ERROR_MASK | SCIFA_ORER,
236 .error_clear = SCIF_ERROR_CLEAR & ~SCIFA_ORER,
237 },
238
239
240
241
242 [SCIx_SCIFB_REGTYPE] = {
243 .regs = {
244 [SCSMR] = { 0x00, 16 },
245 [SCBRR] = { 0x04, 8 },
246 [SCSCR] = { 0x08, 16 },
247 [SCxTDR] = { 0x40, 8 },
248 [SCxSR] = { 0x14, 16 },
249 [SCxRDR] = { 0x60, 8 },
250 [SCFCR] = { 0x18, 16 },
251 [SCTFDR] = { 0x38, 16 },
252 [SCRFDR] = { 0x3c, 16 },
253 [SCPCR] = { 0x30, 16 },
254 [SCPDR] = { 0x34, 16 },
255 },
256 .fifosize = 256,
257 .overrun_reg = SCxSR,
258 .overrun_mask = SCIFA_ORER,
259 .sampling_rate_mask = SCI_SR_SCIFAB,
260 .error_mask = SCIF_DEFAULT_ERROR_MASK | SCIFA_ORER,
261 .error_clear = SCIF_ERROR_CLEAR & ~SCIFA_ORER,
262 },
263
264
265
266
267
268 [SCIx_SH2_SCIF_FIFODATA_REGTYPE] = {
269 .regs = {
270 [SCSMR] = { 0x00, 16 },
271 [SCBRR] = { 0x04, 8 },
272 [SCSCR] = { 0x08, 16 },
273 [SCxTDR] = { 0x0c, 8 },
274 [SCxSR] = { 0x10, 16 },
275 [SCxRDR] = { 0x14, 8 },
276 [SCFCR] = { 0x18, 16 },
277 [SCFDR] = { 0x1c, 16 },
278 [SCSPTR] = { 0x20, 16 },
279 [SCLSR] = { 0x24, 16 },
280 },
281 .fifosize = 16,
282 .overrun_reg = SCLSR,
283 .overrun_mask = SCLSR_ORER,
284 .sampling_rate_mask = SCI_SR(32),
285 .error_mask = SCIF_DEFAULT_ERROR_MASK,
286 .error_clear = SCIF_ERROR_CLEAR,
287 },
288
289
290
291
292 [SCIx_SH3_SCIF_REGTYPE] = {
293 .regs = {
294 [SCSMR] = { 0x00, 8 },
295 [SCBRR] = { 0x02, 8 },
296 [SCSCR] = { 0x04, 8 },
297 [SCxTDR] = { 0x06, 8 },
298 [SCxSR] = { 0x08, 16 },
299 [SCxRDR] = { 0x0a, 8 },
300 [SCFCR] = { 0x0c, 8 },
301 [SCFDR] = { 0x0e, 16 },
302 },
303 .fifosize = 16,
304 .overrun_reg = SCLSR,
305 .overrun_mask = SCLSR_ORER,
306 .sampling_rate_mask = SCI_SR(32),
307 .error_mask = SCIF_DEFAULT_ERROR_MASK,
308 .error_clear = SCIF_ERROR_CLEAR,
309 },
310
311
312
313
314 [SCIx_SH4_SCIF_REGTYPE] = {
315 .regs = {
316 [SCSMR] = { 0x00, 16 },
317 [SCBRR] = { 0x04, 8 },
318 [SCSCR] = { 0x08, 16 },
319 [SCxTDR] = { 0x0c, 8 },
320 [SCxSR] = { 0x10, 16 },
321 [SCxRDR] = { 0x14, 8 },
322 [SCFCR] = { 0x18, 16 },
323 [SCFDR] = { 0x1c, 16 },
324 [SCSPTR] = { 0x20, 16 },
325 [SCLSR] = { 0x24, 16 },
326 },
327 .fifosize = 16,
328 .overrun_reg = SCLSR,
329 .overrun_mask = SCLSR_ORER,
330 .sampling_rate_mask = SCI_SR(32),
331 .error_mask = SCIF_DEFAULT_ERROR_MASK,
332 .error_clear = SCIF_ERROR_CLEAR,
333 },
334
335
336
337
338
339 [SCIx_SH4_SCIF_BRG_REGTYPE] = {
340 .regs = {
341 [SCSMR] = { 0x00, 16 },
342 [SCBRR] = { 0x04, 8 },
343 [SCSCR] = { 0x08, 16 },
344 [SCxTDR] = { 0x0c, 8 },
345 [SCxSR] = { 0x10, 16 },
346 [SCxRDR] = { 0x14, 8 },
347 [SCFCR] = { 0x18, 16 },
348 [SCFDR] = { 0x1c, 16 },
349 [SCSPTR] = { 0x20, 16 },
350 [SCLSR] = { 0x24, 16 },
351 [SCDL] = { 0x30, 16 },
352 [SCCKS] = { 0x34, 16 },
353 },
354 .fifosize = 16,
355 .overrun_reg = SCLSR,
356 .overrun_mask = SCLSR_ORER,
357 .sampling_rate_mask = SCI_SR(32),
358 .error_mask = SCIF_DEFAULT_ERROR_MASK,
359 .error_clear = SCIF_ERROR_CLEAR,
360 },
361
362
363
364
365 [SCIx_HSCIF_REGTYPE] = {
366 .regs = {
367 [SCSMR] = { 0x00, 16 },
368 [SCBRR] = { 0x04, 8 },
369 [SCSCR] = { 0x08, 16 },
370 [SCxTDR] = { 0x0c, 8 },
371 [SCxSR] = { 0x10, 16 },
372 [SCxRDR] = { 0x14, 8 },
373 [SCFCR] = { 0x18, 16 },
374 [SCFDR] = { 0x1c, 16 },
375 [SCSPTR] = { 0x20, 16 },
376 [SCLSR] = { 0x24, 16 },
377 [HSSRR] = { 0x40, 16 },
378 [SCDL] = { 0x30, 16 },
379 [SCCKS] = { 0x34, 16 },
380 [HSRTRGR] = { 0x54, 16 },
381 [HSTTRGR] = { 0x58, 16 },
382 },
383 .fifosize = 128,
384 .overrun_reg = SCLSR,
385 .overrun_mask = SCLSR_ORER,
386 .sampling_rate_mask = SCI_SR_RANGE(8, 32),
387 .error_mask = SCIF_DEFAULT_ERROR_MASK,
388 .error_clear = SCIF_ERROR_CLEAR,
389 },
390
391
392
393
394
395 [SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE] = {
396 .regs = {
397 [SCSMR] = { 0x00, 16 },
398 [SCBRR] = { 0x04, 8 },
399 [SCSCR] = { 0x08, 16 },
400 [SCxTDR] = { 0x0c, 8 },
401 [SCxSR] = { 0x10, 16 },
402 [SCxRDR] = { 0x14, 8 },
403 [SCFCR] = { 0x18, 16 },
404 [SCFDR] = { 0x1c, 16 },
405 [SCLSR] = { 0x24, 16 },
406 },
407 .fifosize = 16,
408 .overrun_reg = SCLSR,
409 .overrun_mask = SCLSR_ORER,
410 .sampling_rate_mask = SCI_SR(32),
411 .error_mask = SCIF_DEFAULT_ERROR_MASK,
412 .error_clear = SCIF_ERROR_CLEAR,
413 },
414
415
416
417
418
419 [SCIx_SH4_SCIF_FIFODATA_REGTYPE] = {
420 .regs = {
421 [SCSMR] = { 0x00, 16 },
422 [SCBRR] = { 0x04, 8 },
423 [SCSCR] = { 0x08, 16 },
424 [SCxTDR] = { 0x0c, 8 },
425 [SCxSR] = { 0x10, 16 },
426 [SCxRDR] = { 0x14, 8 },
427 [SCFCR] = { 0x18, 16 },
428 [SCFDR] = { 0x1c, 16 },
429 [SCTFDR] = { 0x1c, 16 },
430 [SCRFDR] = { 0x20, 16 },
431 [SCSPTR] = { 0x24, 16 },
432 [SCLSR] = { 0x28, 16 },
433 },
434 .fifosize = 16,
435 .overrun_reg = SCLSR,
436 .overrun_mask = SCLSR_ORER,
437 .sampling_rate_mask = SCI_SR(32),
438 .error_mask = SCIF_DEFAULT_ERROR_MASK,
439 .error_clear = SCIF_ERROR_CLEAR,
440 },
441
442
443
444
445
446 [SCIx_SH7705_SCIF_REGTYPE] = {
447 .regs = {
448 [SCSMR] = { 0x00, 16 },
449 [SCBRR] = { 0x04, 8 },
450 [SCSCR] = { 0x08, 16 },
451 [SCxTDR] = { 0x20, 8 },
452 [SCxSR] = { 0x14, 16 },
453 [SCxRDR] = { 0x24, 8 },
454 [SCFCR] = { 0x18, 16 },
455 [SCFDR] = { 0x1c, 16 },
456 },
457 .fifosize = 64,
458 .overrun_reg = SCxSR,
459 .overrun_mask = SCIFA_ORER,
460 .sampling_rate_mask = SCI_SR(16),
461 .error_mask = SCIF_DEFAULT_ERROR_MASK | SCIFA_ORER,
462 .error_clear = SCIF_ERROR_CLEAR & ~SCIFA_ORER,
463 },
464};
465
466#define sci_getreg(up, offset) (&to_sci_port(up)->params->regs[offset])
467
468
469
470
471
472
473
474static unsigned int sci_serial_in(struct uart_port *p, int offset)
475{
476 const struct plat_sci_reg *reg = sci_getreg(p, offset);
477
478 if (reg->size == 8)
479 return ioread8(p->membase + (reg->offset << p->regshift));
480 else if (reg->size == 16)
481 return ioread16(p->membase + (reg->offset << p->regshift));
482 else
483 WARN(1, "Invalid register access\n");
484
485 return 0;
486}
487
488static void sci_serial_out(struct uart_port *p, int offset, int value)
489{
490 const struct plat_sci_reg *reg = sci_getreg(p, offset);
491
492 if (reg->size == 8)
493 iowrite8(value, p->membase + (reg->offset << p->regshift));
494 else if (reg->size == 16)
495 iowrite16(value, p->membase + (reg->offset << p->regshift));
496 else
497 WARN(1, "Invalid register access\n");
498}
499
500static void sci_port_enable(struct sci_port *sci_port)
501{
502 unsigned int i;
503
504 if (!sci_port->port.dev)
505 return;
506
507 pm_runtime_get_sync(sci_port->port.dev);
508
509 for (i = 0; i < SCI_NUM_CLKS; i++) {
510 clk_prepare_enable(sci_port->clks[i]);
511 sci_port->clk_rates[i] = clk_get_rate(sci_port->clks[i]);
512 }
513 sci_port->port.uartclk = sci_port->clk_rates[SCI_FCK];
514}
515
516static void sci_port_disable(struct sci_port *sci_port)
517{
518 unsigned int i;
519
520 if (!sci_port->port.dev)
521 return;
522
523 for (i = SCI_NUM_CLKS; i-- > 0; )
524 clk_disable_unprepare(sci_port->clks[i]);
525
526 pm_runtime_put_sync(sci_port->port.dev);
527}
528
529static inline unsigned long port_rx_irq_mask(struct uart_port *port)
530{
531
532
533
534
535
536
537
538 return SCSCR_RIE | (to_sci_port(port)->cfg->scscr & SCSCR_REIE);
539}
540
541static void sci_start_tx(struct uart_port *port)
542{
543 struct sci_port *s = to_sci_port(port);
544 unsigned short ctrl;
545
546#ifdef CONFIG_SERIAL_SH_SCI_DMA
547 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
548 u16 new, scr = serial_port_in(port, SCSCR);
549 if (s->chan_tx)
550 new = scr | SCSCR_TDRQE;
551 else
552 new = scr & ~SCSCR_TDRQE;
553 if (new != scr)
554 serial_port_out(port, SCSCR, new);
555 }
556
557 if (s->chan_tx && !uart_circ_empty(&s->port.state->xmit) &&
558 dma_submit_error(s->cookie_tx)) {
559 s->cookie_tx = 0;
560 schedule_work(&s->work_tx);
561 }
562#endif
563
564 if (!s->chan_tx || port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
565
566 ctrl = serial_port_in(port, SCSCR);
567 serial_port_out(port, SCSCR, ctrl | SCSCR_TIE);
568 }
569}
570
571static void sci_stop_tx(struct uart_port *port)
572{
573 unsigned short ctrl;
574
575
576 ctrl = serial_port_in(port, SCSCR);
577
578 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
579 ctrl &= ~SCSCR_TDRQE;
580
581 ctrl &= ~SCSCR_TIE;
582
583 serial_port_out(port, SCSCR, ctrl);
584}
585
586static void sci_start_rx(struct uart_port *port)
587{
588 unsigned short ctrl;
589
590 ctrl = serial_port_in(port, SCSCR) | port_rx_irq_mask(port);
591
592 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
593 ctrl &= ~SCSCR_RDRQE;
594
595 serial_port_out(port, SCSCR, ctrl);
596}
597
598static void sci_stop_rx(struct uart_port *port)
599{
600 unsigned short ctrl;
601
602 ctrl = serial_port_in(port, SCSCR);
603
604 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
605 ctrl &= ~SCSCR_RDRQE;
606
607 ctrl &= ~port_rx_irq_mask(port);
608
609 serial_port_out(port, SCSCR, ctrl);
610}
611
612static void sci_clear_SCxSR(struct uart_port *port, unsigned int mask)
613{
614 if (port->type == PORT_SCI) {
615
616 serial_port_out(port, SCxSR, mask);
617 } else if (to_sci_port(port)->params->overrun_mask == SCIFA_ORER) {
618
619
620 serial_port_out(port, SCxSR,
621 serial_port_in(port, SCxSR) & mask);
622 } else {
623
624 serial_port_out(port, SCxSR, mask & ~(SCIF_FERC | SCIF_PERC));
625 }
626}
627
628#if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_SH_SCI_CONSOLE) || \
629 defined(CONFIG_SERIAL_SH_SCI_EARLYCON)
630
631#ifdef CONFIG_CONSOLE_POLL
632static int sci_poll_get_char(struct uart_port *port)
633{
634 unsigned short status;
635 int c;
636
637 do {
638 status = serial_port_in(port, SCxSR);
639 if (status & SCxSR_ERRORS(port)) {
640 sci_clear_SCxSR(port, SCxSR_ERROR_CLEAR(port));
641 continue;
642 }
643 break;
644 } while (1);
645
646 if (!(status & SCxSR_RDxF(port)))
647 return NO_POLL_CHAR;
648
649 c = serial_port_in(port, SCxRDR);
650
651
652 serial_port_in(port, SCxSR);
653 sci_clear_SCxSR(port, SCxSR_RDxF_CLEAR(port));
654
655 return c;
656}
657#endif
658
659static void sci_poll_put_char(struct uart_port *port, unsigned char c)
660{
661 unsigned short status;
662
663 do {
664 status = serial_port_in(port, SCxSR);
665 } while (!(status & SCxSR_TDxE(port)));
666
667 serial_port_out(port, SCxTDR, c);
668 sci_clear_SCxSR(port, SCxSR_TDxE_CLEAR(port) & ~SCxSR_TEND(port));
669}
670#endif
671
672
673static void sci_init_pins(struct uart_port *port, unsigned int cflag)
674{
675 struct sci_port *s = to_sci_port(port);
676
677
678
679
680 if (s->cfg->ops && s->cfg->ops->init_pins) {
681 s->cfg->ops->init_pins(port, cflag);
682 return;
683 }
684
685 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
686 u16 data = serial_port_in(port, SCPDR);
687 u16 ctrl = serial_port_in(port, SCPCR);
688
689
690 ctrl &= ~(SCPCR_RXDC | SCPCR_TXDC);
691 if (to_sci_port(port)->has_rtscts) {
692
693 if (!(port->mctrl & TIOCM_RTS)) {
694 ctrl |= SCPCR_RTSC;
695 data |= SCPDR_RTSD;
696 } else if (!s->autorts) {
697 ctrl |= SCPCR_RTSC;
698 data &= ~SCPDR_RTSD;
699 } else {
700
701 ctrl &= ~SCPCR_RTSC;
702 }
703
704 ctrl &= ~SCPCR_CTSC;
705 }
706 serial_port_out(port, SCPDR, data);
707 serial_port_out(port, SCPCR, ctrl);
708 } else if (sci_getreg(port, SCSPTR)->size) {
709 u16 status = serial_port_in(port, SCSPTR);
710
711
712 status |= SCSPTR_RTSIO;
713 if (!(port->mctrl & TIOCM_RTS))
714 status |= SCSPTR_RTSDT;
715 else if (!s->autorts)
716 status &= ~SCSPTR_RTSDT;
717
718 status &= ~(SCSPTR_CTSIO | SCSPTR_SCKIO);
719 serial_port_out(port, SCSPTR, status);
720 }
721}
722
723static int sci_txfill(struct uart_port *port)
724{
725 struct sci_port *s = to_sci_port(port);
726 unsigned int fifo_mask = (s->params->fifosize << 1) - 1;
727 const struct plat_sci_reg *reg;
728
729 reg = sci_getreg(port, SCTFDR);
730 if (reg->size)
731 return serial_port_in(port, SCTFDR) & fifo_mask;
732
733 reg = sci_getreg(port, SCFDR);
734 if (reg->size)
735 return serial_port_in(port, SCFDR) >> 8;
736
737 return !(serial_port_in(port, SCxSR) & SCI_TDRE);
738}
739
740static int sci_txroom(struct uart_port *port)
741{
742 return port->fifosize - sci_txfill(port);
743}
744
745static int sci_rxfill(struct uart_port *port)
746{
747 struct sci_port *s = to_sci_port(port);
748 unsigned int fifo_mask = (s->params->fifosize << 1) - 1;
749 const struct plat_sci_reg *reg;
750
751 reg = sci_getreg(port, SCRFDR);
752 if (reg->size)
753 return serial_port_in(port, SCRFDR) & fifo_mask;
754
755 reg = sci_getreg(port, SCFDR);
756 if (reg->size)
757 return serial_port_in(port, SCFDR) & fifo_mask;
758
759 return (serial_port_in(port, SCxSR) & SCxSR_RDxF(port)) != 0;
760}
761
762
763
764
765
766static void sci_transmit_chars(struct uart_port *port)
767{
768 struct circ_buf *xmit = &port->state->xmit;
769 unsigned int stopped = uart_tx_stopped(port);
770 unsigned short status;
771 unsigned short ctrl;
772 int count;
773
774 status = serial_port_in(port, SCxSR);
775 if (!(status & SCxSR_TDxE(port))) {
776 ctrl = serial_port_in(port, SCSCR);
777 if (uart_circ_empty(xmit))
778 ctrl &= ~SCSCR_TIE;
779 else
780 ctrl |= SCSCR_TIE;
781 serial_port_out(port, SCSCR, ctrl);
782 return;
783 }
784
785 count = sci_txroom(port);
786
787 do {
788 unsigned char c;
789
790 if (port->x_char) {
791 c = port->x_char;
792 port->x_char = 0;
793 } else if (!uart_circ_empty(xmit) && !stopped) {
794 c = xmit->buf[xmit->tail];
795 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
796 } else {
797 break;
798 }
799
800 serial_port_out(port, SCxTDR, c);
801
802 port->icount.tx++;
803 } while (--count > 0);
804
805 sci_clear_SCxSR(port, SCxSR_TDxE_CLEAR(port));
806
807 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
808 uart_write_wakeup(port);
809 if (uart_circ_empty(xmit)) {
810 sci_stop_tx(port);
811 } else {
812 ctrl = serial_port_in(port, SCSCR);
813
814 if (port->type != PORT_SCI) {
815 serial_port_in(port, SCxSR);
816 sci_clear_SCxSR(port, SCxSR_TDxE_CLEAR(port));
817 }
818
819 ctrl |= SCSCR_TIE;
820 serial_port_out(port, SCSCR, ctrl);
821 }
822}
823
824
825#define STEPFN(c) ({int __c = (c); (((__c-1)|(__c)) == -1); })
826
827static void sci_receive_chars(struct uart_port *port)
828{
829 struct tty_port *tport = &port->state->port;
830 int i, count, copied = 0;
831 unsigned short status;
832 unsigned char flag;
833
834 status = serial_port_in(port, SCxSR);
835 if (!(status & SCxSR_RDxF(port)))
836 return;
837
838 while (1) {
839
840 count = tty_buffer_request_room(tport, sci_rxfill(port));
841
842
843 if (count == 0)
844 break;
845
846 if (port->type == PORT_SCI) {
847 char c = serial_port_in(port, SCxRDR);
848 if (uart_handle_sysrq_char(port, c))
849 count = 0;
850 else
851 tty_insert_flip_char(tport, c, TTY_NORMAL);
852 } else {
853 for (i = 0; i < count; i++) {
854 char c = serial_port_in(port, SCxRDR);
855
856 status = serial_port_in(port, SCxSR);
857 if (uart_handle_sysrq_char(port, c)) {
858 count--; i--;
859 continue;
860 }
861
862
863 if (status & SCxSR_FER(port)) {
864 flag = TTY_FRAME;
865 port->icount.frame++;
866 dev_notice(port->dev, "frame error\n");
867 } else if (status & SCxSR_PER(port)) {
868 flag = TTY_PARITY;
869 port->icount.parity++;
870 dev_notice(port->dev, "parity error\n");
871 } else
872 flag = TTY_NORMAL;
873
874 tty_insert_flip_char(tport, c, flag);
875 }
876 }
877
878 serial_port_in(port, SCxSR);
879 sci_clear_SCxSR(port, SCxSR_RDxF_CLEAR(port));
880
881 copied += count;
882 port->icount.rx += count;
883 }
884
885 if (copied) {
886
887 tty_flip_buffer_push(tport);
888 } else {
889 serial_port_in(port, SCxSR);
890 sci_clear_SCxSR(port, SCxSR_RDxF_CLEAR(port));
891 }
892}
893
894static int sci_handle_errors(struct uart_port *port)
895{
896 int copied = 0;
897 unsigned short status = serial_port_in(port, SCxSR);
898 struct tty_port *tport = &port->state->port;
899 struct sci_port *s = to_sci_port(port);
900
901
902 if (status & s->params->overrun_mask) {
903 port->icount.overrun++;
904
905
906 if (tty_insert_flip_char(tport, 0, TTY_OVERRUN))
907 copied++;
908
909 dev_notice(port->dev, "overrun error\n");
910 }
911
912 if (status & SCxSR_FER(port)) {
913
914 port->icount.frame++;
915
916 if (tty_insert_flip_char(tport, 0, TTY_FRAME))
917 copied++;
918
919 dev_notice(port->dev, "frame error\n");
920 }
921
922 if (status & SCxSR_PER(port)) {
923
924 port->icount.parity++;
925
926 if (tty_insert_flip_char(tport, 0, TTY_PARITY))
927 copied++;
928
929 dev_notice(port->dev, "parity error\n");
930 }
931
932 if (copied)
933 tty_flip_buffer_push(tport);
934
935 return copied;
936}
937
938static int sci_handle_fifo_overrun(struct uart_port *port)
939{
940 struct tty_port *tport = &port->state->port;
941 struct sci_port *s = to_sci_port(port);
942 const struct plat_sci_reg *reg;
943 int copied = 0;
944 u16 status;
945
946 reg = sci_getreg(port, s->params->overrun_reg);
947 if (!reg->size)
948 return 0;
949
950 status = serial_port_in(port, s->params->overrun_reg);
951 if (status & s->params->overrun_mask) {
952 status &= ~s->params->overrun_mask;
953 serial_port_out(port, s->params->overrun_reg, status);
954
955 port->icount.overrun++;
956
957 tty_insert_flip_char(tport, 0, TTY_OVERRUN);
958 tty_flip_buffer_push(tport);
959
960 dev_dbg(port->dev, "overrun error\n");
961 copied++;
962 }
963
964 return copied;
965}
966
967static int sci_handle_breaks(struct uart_port *port)
968{
969 int copied = 0;
970 unsigned short status = serial_port_in(port, SCxSR);
971 struct tty_port *tport = &port->state->port;
972
973 if (uart_handle_break(port))
974 return 0;
975
976 if (status & SCxSR_BRK(port)) {
977 port->icount.brk++;
978
979
980 if (tty_insert_flip_char(tport, 0, TTY_BREAK))
981 copied++;
982
983 dev_dbg(port->dev, "BREAK detected\n");
984 }
985
986 if (copied)
987 tty_flip_buffer_push(tport);
988
989 copied += sci_handle_fifo_overrun(port);
990
991 return copied;
992}
993
994static int scif_set_rtrg(struct uart_port *port, int rx_trig)
995{
996 unsigned int bits;
997
998 if (rx_trig < 1)
999 rx_trig = 1;
1000 if (rx_trig >= port->fifosize)
1001 rx_trig = port->fifosize;
1002
1003
1004 if (sci_getreg(port, HSRTRGR)->size) {
1005 serial_port_out(port, HSRTRGR, rx_trig);
1006 return rx_trig;
1007 }
1008
1009 switch (port->type) {
1010 case PORT_SCIF:
1011 if (rx_trig < 4) {
1012 bits = 0;
1013 rx_trig = 1;
1014 } else if (rx_trig < 8) {
1015 bits = SCFCR_RTRG0;
1016 rx_trig = 4;
1017 } else if (rx_trig < 14) {
1018 bits = SCFCR_RTRG1;
1019 rx_trig = 8;
1020 } else {
1021 bits = SCFCR_RTRG0 | SCFCR_RTRG1;
1022 rx_trig = 14;
1023 }
1024 break;
1025 case PORT_SCIFA:
1026 case PORT_SCIFB:
1027 if (rx_trig < 16) {
1028 bits = 0;
1029 rx_trig = 1;
1030 } else if (rx_trig < 32) {
1031 bits = SCFCR_RTRG0;
1032 rx_trig = 16;
1033 } else if (rx_trig < 48) {
1034 bits = SCFCR_RTRG1;
1035 rx_trig = 32;
1036 } else {
1037 bits = SCFCR_RTRG0 | SCFCR_RTRG1;
1038 rx_trig = 48;
1039 }
1040 break;
1041 default:
1042 WARN(1, "unknown FIFO configuration");
1043 return 1;
1044 }
1045
1046 serial_port_out(port, SCFCR,
1047 (serial_port_in(port, SCFCR) &
1048 ~(SCFCR_RTRG1 | SCFCR_RTRG0)) | bits);
1049
1050 return rx_trig;
1051}
1052
1053static int scif_rtrg_enabled(struct uart_port *port)
1054{
1055 if (sci_getreg(port, HSRTRGR)->size)
1056 return serial_port_in(port, HSRTRGR) != 0;
1057 else
1058 return (serial_port_in(port, SCFCR) &
1059 (SCFCR_RTRG0 | SCFCR_RTRG1)) != 0;
1060}
1061
1062static void rx_fifo_timer_fn(unsigned long arg)
1063{
1064 struct sci_port *s = (struct sci_port *)arg;
1065 struct uart_port *port = &s->port;
1066
1067 dev_dbg(port->dev, "Rx timed out\n");
1068 scif_set_rtrg(port, 1);
1069}
1070
1071static ssize_t rx_trigger_show(struct device *dev,
1072 struct device_attribute *attr,
1073 char *buf)
1074{
1075 struct uart_port *port = dev_get_drvdata(dev);
1076 struct sci_port *sci = to_sci_port(port);
1077
1078 return sprintf(buf, "%d\n", sci->rx_trigger);
1079}
1080
1081static ssize_t rx_trigger_store(struct device *dev,
1082 struct device_attribute *attr,
1083 const char *buf,
1084 size_t count)
1085{
1086 struct uart_port *port = dev_get_drvdata(dev);
1087 struct sci_port *sci = to_sci_port(port);
1088 int ret;
1089 long r;
1090
1091 ret = kstrtol(buf, 0, &r);
1092 if (ret)
1093 return ret;
1094
1095 sci->rx_trigger = scif_set_rtrg(port, r);
1096 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
1097 scif_set_rtrg(port, 1);
1098
1099 return count;
1100}
1101
1102static DEVICE_ATTR(rx_fifo_trigger, 0644, rx_trigger_show, rx_trigger_store);
1103
1104static ssize_t rx_fifo_timeout_show(struct device *dev,
1105 struct device_attribute *attr,
1106 char *buf)
1107{
1108 struct uart_port *port = dev_get_drvdata(dev);
1109 struct sci_port *sci = to_sci_port(port);
1110
1111 return sprintf(buf, "%d\n", sci->rx_fifo_timeout);
1112}
1113
1114static ssize_t rx_fifo_timeout_store(struct device *dev,
1115 struct device_attribute *attr,
1116 const char *buf,
1117 size_t count)
1118{
1119 struct uart_port *port = dev_get_drvdata(dev);
1120 struct sci_port *sci = to_sci_port(port);
1121 int ret;
1122 long r;
1123
1124 ret = kstrtol(buf, 0, &r);
1125 if (ret)
1126 return ret;
1127 sci->rx_fifo_timeout = r;
1128 scif_set_rtrg(port, 1);
1129 if (r > 0)
1130 setup_timer(&sci->rx_fifo_timer, rx_fifo_timer_fn,
1131 (unsigned long)sci);
1132 return count;
1133}
1134
1135static DEVICE_ATTR(rx_fifo_timeout, 0644, rx_fifo_timeout_show, rx_fifo_timeout_store);
1136
1137
1138#ifdef CONFIG_SERIAL_SH_SCI_DMA
1139static void sci_dma_tx_complete(void *arg)
1140{
1141 struct sci_port *s = arg;
1142 struct uart_port *port = &s->port;
1143 struct circ_buf *xmit = &port->state->xmit;
1144 unsigned long flags;
1145
1146 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
1147
1148 spin_lock_irqsave(&port->lock, flags);
1149
1150 xmit->tail += s->tx_dma_len;
1151 xmit->tail &= UART_XMIT_SIZE - 1;
1152
1153 port->icount.tx += s->tx_dma_len;
1154
1155 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1156 uart_write_wakeup(port);
1157
1158 if (!uart_circ_empty(xmit)) {
1159 s->cookie_tx = 0;
1160 schedule_work(&s->work_tx);
1161 } else {
1162 s->cookie_tx = -EINVAL;
1163 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
1164 u16 ctrl = serial_port_in(port, SCSCR);
1165 serial_port_out(port, SCSCR, ctrl & ~SCSCR_TIE);
1166 }
1167 }
1168
1169 spin_unlock_irqrestore(&port->lock, flags);
1170}
1171
1172
1173static int sci_dma_rx_push(struct sci_port *s, void *buf, size_t count)
1174{
1175 struct uart_port *port = &s->port;
1176 struct tty_port *tport = &port->state->port;
1177 int copied;
1178
1179 copied = tty_insert_flip_string(tport, buf, count);
1180 if (copied < count)
1181 port->icount.buf_overrun++;
1182
1183 port->icount.rx += copied;
1184
1185 return copied;
1186}
1187
1188static int sci_dma_rx_find_active(struct sci_port *s)
1189{
1190 unsigned int i;
1191
1192 for (i = 0; i < ARRAY_SIZE(s->cookie_rx); i++)
1193 if (s->active_rx == s->cookie_rx[i])
1194 return i;
1195
1196 return -1;
1197}
1198
1199static void sci_rx_dma_release(struct sci_port *s, bool enable_pio)
1200{
1201 struct dma_chan *chan = s->chan_rx;
1202 struct uart_port *port = &s->port;
1203 unsigned long flags;
1204
1205 spin_lock_irqsave(&port->lock, flags);
1206 s->chan_rx = NULL;
1207 s->cookie_rx[0] = s->cookie_rx[1] = -EINVAL;
1208 spin_unlock_irqrestore(&port->lock, flags);
1209 dmaengine_terminate_all(chan);
1210 dma_free_coherent(chan->device->dev, s->buf_len_rx * 2, s->rx_buf[0],
1211 sg_dma_address(&s->sg_rx[0]));
1212 dma_release_channel(chan);
1213 if (enable_pio)
1214 sci_start_rx(port);
1215}
1216
1217static void sci_dma_rx_complete(void *arg)
1218{
1219 struct sci_port *s = arg;
1220 struct dma_chan *chan = s->chan_rx;
1221 struct uart_port *port = &s->port;
1222 struct dma_async_tx_descriptor *desc;
1223 unsigned long flags;
1224 int active, count = 0;
1225
1226 dev_dbg(port->dev, "%s(%d) active cookie %d\n", __func__, port->line,
1227 s->active_rx);
1228
1229 spin_lock_irqsave(&port->lock, flags);
1230
1231 active = sci_dma_rx_find_active(s);
1232 if (active >= 0)
1233 count = sci_dma_rx_push(s, s->rx_buf[active], s->buf_len_rx);
1234
1235 mod_timer(&s->rx_timer, jiffies + s->rx_timeout);
1236
1237 if (count)
1238 tty_flip_buffer_push(&port->state->port);
1239
1240 desc = dmaengine_prep_slave_sg(s->chan_rx, &s->sg_rx[active], 1,
1241 DMA_DEV_TO_MEM,
1242 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1243 if (!desc)
1244 goto fail;
1245
1246 desc->callback = sci_dma_rx_complete;
1247 desc->callback_param = s;
1248 s->cookie_rx[active] = dmaengine_submit(desc);
1249 if (dma_submit_error(s->cookie_rx[active]))
1250 goto fail;
1251
1252 s->active_rx = s->cookie_rx[!active];
1253
1254 dma_async_issue_pending(chan);
1255
1256 spin_unlock_irqrestore(&port->lock, flags);
1257 dev_dbg(port->dev, "%s: cookie %d #%d, new active cookie %d\n",
1258 __func__, s->cookie_rx[active], active, s->active_rx);
1259 return;
1260
1261fail:
1262 spin_unlock_irqrestore(&port->lock, flags);
1263 dev_warn(port->dev, "Failed submitting Rx DMA descriptor\n");
1264 sci_rx_dma_release(s, true);
1265}
1266
1267static void sci_tx_dma_release(struct sci_port *s, bool enable_pio)
1268{
1269 struct dma_chan *chan = s->chan_tx;
1270 struct uart_port *port = &s->port;
1271 unsigned long flags;
1272
1273 spin_lock_irqsave(&port->lock, flags);
1274 s->chan_tx = NULL;
1275 s->cookie_tx = -EINVAL;
1276 spin_unlock_irqrestore(&port->lock, flags);
1277 dmaengine_terminate_all(chan);
1278 dma_unmap_single(chan->device->dev, s->tx_dma_addr, UART_XMIT_SIZE,
1279 DMA_TO_DEVICE);
1280 dma_release_channel(chan);
1281 if (enable_pio)
1282 sci_start_tx(port);
1283}
1284
1285static void sci_submit_rx(struct sci_port *s)
1286{
1287 struct dma_chan *chan = s->chan_rx;
1288 int i;
1289
1290 for (i = 0; i < 2; i++) {
1291 struct scatterlist *sg = &s->sg_rx[i];
1292 struct dma_async_tx_descriptor *desc;
1293
1294 desc = dmaengine_prep_slave_sg(chan,
1295 sg, 1, DMA_DEV_TO_MEM,
1296 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1297 if (!desc)
1298 goto fail;
1299
1300 desc->callback = sci_dma_rx_complete;
1301 desc->callback_param = s;
1302 s->cookie_rx[i] = dmaengine_submit(desc);
1303 if (dma_submit_error(s->cookie_rx[i]))
1304 goto fail;
1305
1306 }
1307
1308 s->active_rx = s->cookie_rx[0];
1309
1310 dma_async_issue_pending(chan);
1311 return;
1312
1313fail:
1314 if (i)
1315 dmaengine_terminate_all(chan);
1316 for (i = 0; i < 2; i++)
1317 s->cookie_rx[i] = -EINVAL;
1318 s->active_rx = -EINVAL;
1319 sci_rx_dma_release(s, true);
1320}
1321
1322static void work_fn_tx(struct work_struct *work)
1323{
1324 struct sci_port *s = container_of(work, struct sci_port, work_tx);
1325 struct dma_async_tx_descriptor *desc;
1326 struct dma_chan *chan = s->chan_tx;
1327 struct uart_port *port = &s->port;
1328 struct circ_buf *xmit = &port->state->xmit;
1329 dma_addr_t buf;
1330
1331
1332
1333
1334
1335
1336
1337
1338 spin_lock_irq(&port->lock);
1339 buf = s->tx_dma_addr + (xmit->tail & (UART_XMIT_SIZE - 1));
1340 s->tx_dma_len = min_t(unsigned int,
1341 CIRC_CNT(xmit->head, xmit->tail, UART_XMIT_SIZE),
1342 CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE));
1343 spin_unlock_irq(&port->lock);
1344
1345 desc = dmaengine_prep_slave_single(chan, buf, s->tx_dma_len,
1346 DMA_MEM_TO_DEV,
1347 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1348 if (!desc) {
1349 dev_warn(port->dev, "Failed preparing Tx DMA descriptor\n");
1350
1351 sci_tx_dma_release(s, true);
1352 return;
1353 }
1354
1355 dma_sync_single_for_device(chan->device->dev, buf, s->tx_dma_len,
1356 DMA_TO_DEVICE);
1357
1358 spin_lock_irq(&port->lock);
1359 desc->callback = sci_dma_tx_complete;
1360 desc->callback_param = s;
1361 spin_unlock_irq(&port->lock);
1362 s->cookie_tx = dmaengine_submit(desc);
1363 if (dma_submit_error(s->cookie_tx)) {
1364 dev_warn(port->dev, "Failed submitting Tx DMA descriptor\n");
1365
1366 sci_tx_dma_release(s, true);
1367 return;
1368 }
1369
1370 dev_dbg(port->dev, "%s: %p: %d...%d, cookie %d\n",
1371 __func__, xmit->buf, xmit->tail, xmit->head, s->cookie_tx);
1372
1373 dma_async_issue_pending(chan);
1374}
1375
1376static void rx_timer_fn(unsigned long arg)
1377{
1378 struct sci_port *s = (struct sci_port *)arg;
1379 struct dma_chan *chan = s->chan_rx;
1380 struct uart_port *port = &s->port;
1381 struct dma_tx_state state;
1382 enum dma_status status;
1383 unsigned long flags;
1384 unsigned int read;
1385 int active, count;
1386 u16 scr;
1387
1388 dev_dbg(port->dev, "DMA Rx timed out\n");
1389
1390 spin_lock_irqsave(&port->lock, flags);
1391
1392 active = sci_dma_rx_find_active(s);
1393 if (active < 0) {
1394 spin_unlock_irqrestore(&port->lock, flags);
1395 return;
1396 }
1397
1398 status = dmaengine_tx_status(s->chan_rx, s->active_rx, &state);
1399 if (status == DMA_COMPLETE) {
1400 spin_unlock_irqrestore(&port->lock, flags);
1401 dev_dbg(port->dev, "Cookie %d #%d has already completed\n",
1402 s->active_rx, active);
1403
1404
1405 return;
1406 }
1407
1408 dmaengine_pause(chan);
1409
1410
1411
1412
1413
1414
1415
1416 status = dmaengine_tx_status(s->chan_rx, s->active_rx, &state);
1417 if (status == DMA_COMPLETE) {
1418 spin_unlock_irqrestore(&port->lock, flags);
1419 dev_dbg(port->dev, "Transaction complete after DMA engine was stopped");
1420 return;
1421 }
1422
1423
1424 dmaengine_terminate_all(s->chan_rx);
1425 read = sg_dma_len(&s->sg_rx[active]) - state.residue;
1426
1427 if (read) {
1428 count = sci_dma_rx_push(s, s->rx_buf[active], read);
1429 if (count)
1430 tty_flip_buffer_push(&port->state->port);
1431 }
1432
1433 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
1434 sci_submit_rx(s);
1435
1436
1437 scr = serial_port_in(port, SCSCR);
1438 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
1439 scr &= ~SCSCR_RDRQE;
1440 enable_irq(s->irqs[SCIx_RXI_IRQ]);
1441 }
1442 serial_port_out(port, SCSCR, scr | SCSCR_RIE);
1443
1444 spin_unlock_irqrestore(&port->lock, flags);
1445}
1446
1447static struct dma_chan *sci_request_dma_chan(struct uart_port *port,
1448 enum dma_transfer_direction dir)
1449{
1450 struct dma_chan *chan;
1451 struct dma_slave_config cfg;
1452 int ret;
1453
1454 chan = dma_request_slave_channel(port->dev,
1455 dir == DMA_MEM_TO_DEV ? "tx" : "rx");
1456 if (!chan) {
1457 dev_warn(port->dev, "dma_request_slave_channel failed\n");
1458 return NULL;
1459 }
1460
1461 memset(&cfg, 0, sizeof(cfg));
1462 cfg.direction = dir;
1463 if (dir == DMA_MEM_TO_DEV) {
1464 cfg.dst_addr = port->mapbase +
1465 (sci_getreg(port, SCxTDR)->offset << port->regshift);
1466 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1467 } else {
1468 cfg.src_addr = port->mapbase +
1469 (sci_getreg(port, SCxRDR)->offset << port->regshift);
1470 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1471 }
1472
1473 ret = dmaengine_slave_config(chan, &cfg);
1474 if (ret) {
1475 dev_warn(port->dev, "dmaengine_slave_config failed %d\n", ret);
1476 dma_release_channel(chan);
1477 return NULL;
1478 }
1479
1480 return chan;
1481}
1482
1483static void sci_request_dma(struct uart_port *port)
1484{
1485 struct sci_port *s = to_sci_port(port);
1486 struct dma_chan *chan;
1487
1488 dev_dbg(port->dev, "%s: port %d\n", __func__, port->line);
1489
1490 if (!port->dev->of_node)
1491 return;
1492
1493 s->cookie_tx = -EINVAL;
1494 chan = sci_request_dma_chan(port, DMA_MEM_TO_DEV);
1495 dev_dbg(port->dev, "%s: TX: got channel %p\n", __func__, chan);
1496 if (chan) {
1497 s->chan_tx = chan;
1498
1499 s->tx_dma_addr = dma_map_single(chan->device->dev,
1500 port->state->xmit.buf,
1501 UART_XMIT_SIZE,
1502 DMA_TO_DEVICE);
1503 if (dma_mapping_error(chan->device->dev, s->tx_dma_addr)) {
1504 dev_warn(port->dev, "Failed mapping Tx DMA descriptor\n");
1505 dma_release_channel(chan);
1506 s->chan_tx = NULL;
1507 } else {
1508 dev_dbg(port->dev, "%s: mapped %lu@%p to %pad\n",
1509 __func__, UART_XMIT_SIZE,
1510 port->state->xmit.buf, &s->tx_dma_addr);
1511 }
1512
1513 INIT_WORK(&s->work_tx, work_fn_tx);
1514 }
1515
1516 chan = sci_request_dma_chan(port, DMA_DEV_TO_MEM);
1517 dev_dbg(port->dev, "%s: RX: got channel %p\n", __func__, chan);
1518 if (chan) {
1519 unsigned int i;
1520 dma_addr_t dma;
1521 void *buf;
1522
1523 s->chan_rx = chan;
1524
1525 s->buf_len_rx = 2 * max_t(size_t, 16, port->fifosize);
1526 buf = dma_alloc_coherent(chan->device->dev, s->buf_len_rx * 2,
1527 &dma, GFP_KERNEL);
1528 if (!buf) {
1529 dev_warn(port->dev,
1530 "Failed to allocate Rx dma buffer, using PIO\n");
1531 dma_release_channel(chan);
1532 s->chan_rx = NULL;
1533 return;
1534 }
1535
1536 for (i = 0; i < 2; i++) {
1537 struct scatterlist *sg = &s->sg_rx[i];
1538
1539 sg_init_table(sg, 1);
1540 s->rx_buf[i] = buf;
1541 sg_dma_address(sg) = dma;
1542 sg_dma_len(sg) = s->buf_len_rx;
1543
1544 buf += s->buf_len_rx;
1545 dma += s->buf_len_rx;
1546 }
1547
1548 setup_timer(&s->rx_timer, rx_timer_fn, (unsigned long)s);
1549
1550 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
1551 sci_submit_rx(s);
1552 }
1553}
1554
1555static void sci_free_dma(struct uart_port *port)
1556{
1557 struct sci_port *s = to_sci_port(port);
1558
1559 if (s->chan_tx)
1560 sci_tx_dma_release(s, false);
1561 if (s->chan_rx)
1562 sci_rx_dma_release(s, false);
1563}
1564
1565static void sci_flush_buffer(struct uart_port *port)
1566{
1567
1568
1569
1570
1571 to_sci_port(port)->tx_dma_len = 0;
1572}
1573#else
1574static inline void sci_request_dma(struct uart_port *port)
1575{
1576}
1577
1578static inline void sci_free_dma(struct uart_port *port)
1579{
1580}
1581
1582#define sci_flush_buffer NULL
1583#endif
1584
1585static irqreturn_t sci_rx_interrupt(int irq, void *ptr)
1586{
1587 struct uart_port *port = ptr;
1588 struct sci_port *s = to_sci_port(port);
1589
1590#ifdef CONFIG_SERIAL_SH_SCI_DMA
1591 if (s->chan_rx) {
1592 u16 scr = serial_port_in(port, SCSCR);
1593 u16 ssr = serial_port_in(port, SCxSR);
1594
1595
1596 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
1597 disable_irq_nosync(irq);
1598 scr |= SCSCR_RDRQE;
1599 } else {
1600 scr &= ~SCSCR_RIE;
1601 sci_submit_rx(s);
1602 }
1603 serial_port_out(port, SCSCR, scr);
1604
1605 serial_port_out(port, SCxSR,
1606 ssr & ~(SCIF_DR | SCxSR_RDxF(port)));
1607 dev_dbg(port->dev, "Rx IRQ %lu: setup t-out in %u jiffies\n",
1608 jiffies, s->rx_timeout);
1609 mod_timer(&s->rx_timer, jiffies + s->rx_timeout);
1610
1611 return IRQ_HANDLED;
1612 }
1613#endif
1614
1615 if (s->rx_trigger > 1 && s->rx_fifo_timeout > 0) {
1616 if (!scif_rtrg_enabled(port))
1617 scif_set_rtrg(port, s->rx_trigger);
1618
1619 mod_timer(&s->rx_fifo_timer, jiffies + DIV_ROUND_UP(
1620 s->rx_frame * s->rx_fifo_timeout, 1000));
1621 }
1622
1623
1624
1625
1626
1627 sci_receive_chars(ptr);
1628
1629 return IRQ_HANDLED;
1630}
1631
1632static irqreturn_t sci_tx_interrupt(int irq, void *ptr)
1633{
1634 struct uart_port *port = ptr;
1635 unsigned long flags;
1636
1637 spin_lock_irqsave(&port->lock, flags);
1638 sci_transmit_chars(port);
1639 spin_unlock_irqrestore(&port->lock, flags);
1640
1641 return IRQ_HANDLED;
1642}
1643
1644static irqreturn_t sci_er_interrupt(int irq, void *ptr)
1645{
1646 struct uart_port *port = ptr;
1647 struct sci_port *s = to_sci_port(port);
1648
1649
1650 if (port->type == PORT_SCI) {
1651 if (sci_handle_errors(port)) {
1652
1653 serial_port_in(port, SCxSR);
1654 sci_clear_SCxSR(port, SCxSR_RDxF_CLEAR(port));
1655 }
1656 } else {
1657 sci_handle_fifo_overrun(port);
1658 if (!s->chan_rx)
1659 sci_receive_chars(ptr);
1660 }
1661
1662 sci_clear_SCxSR(port, SCxSR_ERROR_CLEAR(port));
1663
1664
1665 if (!s->chan_tx)
1666 sci_tx_interrupt(irq, ptr);
1667
1668 return IRQ_HANDLED;
1669}
1670
1671static irqreturn_t sci_br_interrupt(int irq, void *ptr)
1672{
1673 struct uart_port *port = ptr;
1674
1675
1676 sci_handle_breaks(port);
1677 sci_clear_SCxSR(port, SCxSR_BREAK_CLEAR(port));
1678
1679 return IRQ_HANDLED;
1680}
1681
1682static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr)
1683{
1684 unsigned short ssr_status, scr_status, err_enabled, orer_status = 0;
1685 struct uart_port *port = ptr;
1686 struct sci_port *s = to_sci_port(port);
1687 irqreturn_t ret = IRQ_NONE;
1688
1689 ssr_status = serial_port_in(port, SCxSR);
1690 scr_status = serial_port_in(port, SCSCR);
1691 if (s->params->overrun_reg == SCxSR)
1692 orer_status = ssr_status;
1693 else if (sci_getreg(port, s->params->overrun_reg)->size)
1694 orer_status = serial_port_in(port, s->params->overrun_reg);
1695
1696 err_enabled = scr_status & port_rx_irq_mask(port);
1697
1698
1699 if ((ssr_status & SCxSR_TDxE(port)) && (scr_status & SCSCR_TIE) &&
1700 !s->chan_tx)
1701 ret = sci_tx_interrupt(irq, ptr);
1702
1703
1704
1705
1706
1707 if (((ssr_status & SCxSR_RDxF(port)) || s->chan_rx) &&
1708 (scr_status & SCSCR_RIE))
1709 ret = sci_rx_interrupt(irq, ptr);
1710
1711
1712 if ((ssr_status & SCxSR_ERRORS(port)) && err_enabled)
1713 ret = sci_er_interrupt(irq, ptr);
1714
1715
1716 if ((ssr_status & SCxSR_BRK(port)) && err_enabled)
1717 ret = sci_br_interrupt(irq, ptr);
1718
1719
1720 if (orer_status & s->params->overrun_mask) {
1721 sci_handle_fifo_overrun(port);
1722 ret = IRQ_HANDLED;
1723 }
1724
1725 return ret;
1726}
1727
1728static const struct sci_irq_desc {
1729 const char *desc;
1730 irq_handler_t handler;
1731} sci_irq_desc[] = {
1732
1733
1734
1735 [SCIx_ERI_IRQ] = {
1736 .desc = "rx err",
1737 .handler = sci_er_interrupt,
1738 },
1739
1740 [SCIx_RXI_IRQ] = {
1741 .desc = "rx full",
1742 .handler = sci_rx_interrupt,
1743 },
1744
1745 [SCIx_TXI_IRQ] = {
1746 .desc = "tx empty",
1747 .handler = sci_tx_interrupt,
1748 },
1749
1750 [SCIx_BRI_IRQ] = {
1751 .desc = "break",
1752 .handler = sci_br_interrupt,
1753 },
1754
1755
1756
1757
1758 [SCIx_MUX_IRQ] = {
1759 .desc = "mux",
1760 .handler = sci_mpxed_interrupt,
1761 },
1762};
1763
1764static int sci_request_irq(struct sci_port *port)
1765{
1766 struct uart_port *up = &port->port;
1767 int i, j, ret = 0;
1768
1769 for (i = j = 0; i < SCIx_NR_IRQS; i++, j++) {
1770 const struct sci_irq_desc *desc;
1771 int irq;
1772
1773 if (SCIx_IRQ_IS_MUXED(port)) {
1774 i = SCIx_MUX_IRQ;
1775 irq = up->irq;
1776 } else {
1777 irq = port->irqs[i];
1778
1779
1780
1781
1782
1783 if (unlikely(irq < 0))
1784 continue;
1785 }
1786
1787 desc = sci_irq_desc + i;
1788 port->irqstr[j] = kasprintf(GFP_KERNEL, "%s:%s",
1789 dev_name(up->dev), desc->desc);
1790 if (!port->irqstr[j]) {
1791 ret = -ENOMEM;
1792 goto out_nomem;
1793 }
1794
1795 ret = request_irq(irq, desc->handler, up->irqflags,
1796 port->irqstr[j], port);
1797 if (unlikely(ret)) {
1798 dev_err(up->dev, "Can't allocate %s IRQ\n", desc->desc);
1799 goto out_noirq;
1800 }
1801 }
1802
1803 return 0;
1804
1805out_noirq:
1806 while (--i >= 0)
1807 free_irq(port->irqs[i], port);
1808
1809out_nomem:
1810 while (--j >= 0)
1811 kfree(port->irqstr[j]);
1812
1813 return ret;
1814}
1815
1816static void sci_free_irq(struct sci_port *port)
1817{
1818 int i;
1819
1820
1821
1822
1823
1824 for (i = 0; i < SCIx_NR_IRQS; i++) {
1825 int irq = port->irqs[i];
1826
1827
1828
1829
1830
1831 if (unlikely(irq < 0))
1832 continue;
1833
1834 free_irq(port->irqs[i], port);
1835 kfree(port->irqstr[i]);
1836
1837 if (SCIx_IRQ_IS_MUXED(port)) {
1838
1839 return;
1840 }
1841 }
1842}
1843
1844static unsigned int sci_tx_empty(struct uart_port *port)
1845{
1846 unsigned short status = serial_port_in(port, SCxSR);
1847 unsigned short in_tx_fifo = sci_txfill(port);
1848
1849 return (status & SCxSR_TEND(port)) && !in_tx_fifo ? TIOCSER_TEMT : 0;
1850}
1851
1852static void sci_set_rts(struct uart_port *port, bool state)
1853{
1854 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
1855 u16 data = serial_port_in(port, SCPDR);
1856
1857
1858 if (state)
1859 data &= ~SCPDR_RTSD;
1860 else
1861 data |= SCPDR_RTSD;
1862 serial_port_out(port, SCPDR, data);
1863
1864
1865 serial_port_out(port, SCPCR,
1866 serial_port_in(port, SCPCR) | SCPCR_RTSC);
1867 } else if (sci_getreg(port, SCSPTR)->size) {
1868 u16 ctrl = serial_port_in(port, SCSPTR);
1869
1870
1871 if (state)
1872 ctrl &= ~SCSPTR_RTSDT;
1873 else
1874 ctrl |= SCSPTR_RTSDT;
1875 serial_port_out(port, SCSPTR, ctrl);
1876 }
1877}
1878
1879static bool sci_get_cts(struct uart_port *port)
1880{
1881 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
1882
1883 return !(serial_port_in(port, SCPDR) & SCPDR_CTSD);
1884 } else if (sci_getreg(port, SCSPTR)->size) {
1885
1886 return !(serial_port_in(port, SCSPTR) & SCSPTR_CTSDT);
1887 }
1888
1889 return true;
1890}
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
1905{
1906 struct sci_port *s = to_sci_port(port);
1907
1908 if (mctrl & TIOCM_LOOP) {
1909 const struct plat_sci_reg *reg;
1910
1911
1912
1913
1914 reg = sci_getreg(port, SCFCR);
1915 if (reg->size)
1916 serial_port_out(port, SCFCR,
1917 serial_port_in(port, SCFCR) |
1918 SCFCR_LOOP);
1919 }
1920
1921 mctrl_gpio_set(s->gpios, mctrl);
1922
1923 if (!s->has_rtscts)
1924 return;
1925
1926 if (!(mctrl & TIOCM_RTS)) {
1927
1928 serial_port_out(port, SCFCR,
1929 serial_port_in(port, SCFCR) & ~SCFCR_MCE);
1930
1931
1932 sci_set_rts(port, 0);
1933 } else if (s->autorts) {
1934 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) {
1935
1936 serial_port_out(port, SCPCR,
1937 serial_port_in(port, SCPCR) & ~SCPCR_RTSC);
1938 }
1939
1940
1941 serial_port_out(port, SCFCR,
1942 serial_port_in(port, SCFCR) | SCFCR_MCE);
1943 } else {
1944
1945 sci_set_rts(port, 1);
1946 }
1947}
1948
1949static unsigned int sci_get_mctrl(struct uart_port *port)
1950{
1951 struct sci_port *s = to_sci_port(port);
1952 struct mctrl_gpios *gpios = s->gpios;
1953 unsigned int mctrl = 0;
1954
1955 mctrl_gpio_get(gpios, &mctrl);
1956
1957
1958
1959
1960
1961 if (s->autorts) {
1962 if (sci_get_cts(port))
1963 mctrl |= TIOCM_CTS;
1964 } else if (IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(gpios, UART_GPIO_CTS))) {
1965 mctrl |= TIOCM_CTS;
1966 }
1967 if (IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(gpios, UART_GPIO_DSR)))
1968 mctrl |= TIOCM_DSR;
1969 if (IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(gpios, UART_GPIO_DCD)))
1970 mctrl |= TIOCM_CAR;
1971
1972 return mctrl;
1973}
1974
1975static void sci_enable_ms(struct uart_port *port)
1976{
1977 mctrl_gpio_enable_ms(to_sci_port(port)->gpios);
1978}
1979
1980static void sci_break_ctl(struct uart_port *port, int break_state)
1981{
1982 unsigned short scscr, scsptr;
1983
1984
1985 if (!sci_getreg(port, SCSPTR)->size) {
1986
1987
1988
1989
1990 return;
1991 }
1992
1993 scsptr = serial_port_in(port, SCSPTR);
1994 scscr = serial_port_in(port, SCSCR);
1995
1996 if (break_state == -1) {
1997 scsptr = (scsptr | SCSPTR_SPB2IO) & ~SCSPTR_SPB2DT;
1998 scscr &= ~SCSCR_TE;
1999 } else {
2000 scsptr = (scsptr | SCSPTR_SPB2DT) & ~SCSPTR_SPB2IO;
2001 scscr |= SCSCR_TE;
2002 }
2003
2004 serial_port_out(port, SCSPTR, scsptr);
2005 serial_port_out(port, SCSCR, scscr);
2006}
2007
2008static int sci_startup(struct uart_port *port)
2009{
2010 struct sci_port *s = to_sci_port(port);
2011 int ret;
2012
2013 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
2014
2015 sci_request_dma(port);
2016
2017 ret = sci_request_irq(s);
2018 if (unlikely(ret < 0)) {
2019 sci_free_dma(port);
2020 return ret;
2021 }
2022
2023 return 0;
2024}
2025
2026static void sci_shutdown(struct uart_port *port)
2027{
2028 struct sci_port *s = to_sci_port(port);
2029 unsigned long flags;
2030 u16 scr;
2031
2032 dev_dbg(port->dev, "%s(%d)\n", __func__, port->line);
2033
2034 s->autorts = false;
2035 mctrl_gpio_disable_ms(to_sci_port(port)->gpios);
2036
2037 spin_lock_irqsave(&port->lock, flags);
2038 sci_stop_rx(port);
2039 sci_stop_tx(port);
2040
2041 scr = serial_port_in(port, SCSCR);
2042 serial_port_out(port, SCSCR, scr & (SCSCR_CKE1 | SCSCR_CKE0));
2043 spin_unlock_irqrestore(&port->lock, flags);
2044
2045#ifdef CONFIG_SERIAL_SH_SCI_DMA
2046 if (s->chan_rx) {
2047 dev_dbg(port->dev, "%s(%d) deleting rx_timer\n", __func__,
2048 port->line);
2049 del_timer_sync(&s->rx_timer);
2050 }
2051#endif
2052
2053 sci_free_irq(s);
2054 sci_free_dma(port);
2055}
2056
2057static int sci_sck_calc(struct sci_port *s, unsigned int bps,
2058 unsigned int *srr)
2059{
2060 unsigned long freq = s->clk_rates[SCI_SCK];
2061 int err, min_err = INT_MAX;
2062 unsigned int sr;
2063
2064 if (s->port.type != PORT_HSCIF)
2065 freq *= 2;
2066
2067 for_each_sr(sr, s) {
2068 err = DIV_ROUND_CLOSEST(freq, sr) - bps;
2069 if (abs(err) >= abs(min_err))
2070 continue;
2071
2072 min_err = err;
2073 *srr = sr - 1;
2074
2075 if (!err)
2076 break;
2077 }
2078
2079 dev_dbg(s->port.dev, "SCK: %u%+d bps using SR %u\n", bps, min_err,
2080 *srr + 1);
2081 return min_err;
2082}
2083
2084static int sci_brg_calc(struct sci_port *s, unsigned int bps,
2085 unsigned long freq, unsigned int *dlr,
2086 unsigned int *srr)
2087{
2088 int err, min_err = INT_MAX;
2089 unsigned int sr, dl;
2090
2091 if (s->port.type != PORT_HSCIF)
2092 freq *= 2;
2093
2094 for_each_sr(sr, s) {
2095 dl = DIV_ROUND_CLOSEST(freq, sr * bps);
2096 dl = clamp(dl, 1U, 65535U);
2097
2098 err = DIV_ROUND_CLOSEST(freq, sr * dl) - bps;
2099 if (abs(err) >= abs(min_err))
2100 continue;
2101
2102 min_err = err;
2103 *dlr = dl;
2104 *srr = sr - 1;
2105
2106 if (!err)
2107 break;
2108 }
2109
2110 dev_dbg(s->port.dev, "BRG: %u%+d bps using DL %u SR %u\n", bps,
2111 min_err, *dlr, *srr + 1);
2112 return min_err;
2113}
2114
2115
2116static int sci_scbrr_calc(struct sci_port *s, unsigned int bps,
2117 unsigned int *brr, unsigned int *srr,
2118 unsigned int *cks)
2119{
2120 unsigned long freq = s->clk_rates[SCI_FCK];
2121 unsigned int sr, br, prediv, scrate, c;
2122 int err, min_err = INT_MAX;
2123
2124 if (s->port.type != PORT_HSCIF)
2125 freq *= 2;
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142 for_each_sr(sr, s) {
2143 for (c = 0; c <= 3; c++) {
2144
2145 prediv = sr * (1 << (2 * c + 1));
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156 if (bps > UINT_MAX / prediv)
2157 break;
2158
2159 scrate = prediv * bps;
2160 br = DIV_ROUND_CLOSEST(freq, scrate);
2161 br = clamp(br, 1U, 256U);
2162
2163 err = DIV_ROUND_CLOSEST(freq, br * prediv) - bps;
2164 if (abs(err) >= abs(min_err))
2165 continue;
2166
2167 min_err = err;
2168 *brr = br - 1;
2169 *srr = sr - 1;
2170 *cks = c;
2171
2172 if (!err)
2173 goto found;
2174 }
2175 }
2176
2177found:
2178 dev_dbg(s->port.dev, "BRR: %u%+d bps using N %u SR %u cks %u\n", bps,
2179 min_err, *brr, *srr + 1, *cks);
2180 return min_err;
2181}
2182
2183static void sci_reset(struct uart_port *port)
2184{
2185 const struct plat_sci_reg *reg;
2186 unsigned int status;
2187 struct sci_port *s = to_sci_port(port);
2188
2189 serial_port_out(port, SCSCR, 0x00);
2190
2191 reg = sci_getreg(port, SCFCR);
2192 if (reg->size)
2193 serial_port_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST);
2194
2195 sci_clear_SCxSR(port,
2196 SCxSR_RDxF_CLEAR(port) & SCxSR_ERROR_CLEAR(port) &
2197 SCxSR_BREAK_CLEAR(port));
2198 if (sci_getreg(port, SCLSR)->size) {
2199 status = serial_port_in(port, SCLSR);
2200 status &= ~(SCLSR_TO | SCLSR_ORER);
2201 serial_port_out(port, SCLSR, status);
2202 }
2203
2204 if (s->rx_trigger > 1) {
2205 if (s->rx_fifo_timeout) {
2206 scif_set_rtrg(port, 1);
2207 setup_timer(&s->rx_fifo_timer, rx_fifo_timer_fn,
2208 (unsigned long)s);
2209 } else {
2210 if (port->type == PORT_SCIFA ||
2211 port->type == PORT_SCIFB)
2212 scif_set_rtrg(port, 1);
2213 else
2214 scif_set_rtrg(port, s->rx_trigger);
2215 }
2216 }
2217}
2218
2219static void sci_set_termios(struct uart_port *port, struct ktermios *termios,
2220 struct ktermios *old)
2221{
2222 unsigned int baud, smr_val = SCSMR_ASYNC, scr_val = 0, i, bits;
2223 unsigned int brr = 255, cks = 0, srr = 15, dl = 0, sccks = 0;
2224 unsigned int brr1 = 255, cks1 = 0, srr1 = 15, dl1 = 0;
2225 struct sci_port *s = to_sci_port(port);
2226 const struct plat_sci_reg *reg;
2227 int min_err = INT_MAX, err;
2228 unsigned long max_freq = 0;
2229 int best_clk = -1;
2230
2231 if ((termios->c_cflag & CSIZE) == CS7)
2232 smr_val |= SCSMR_CHR;
2233 if (termios->c_cflag & PARENB)
2234 smr_val |= SCSMR_PE;
2235 if (termios->c_cflag & PARODD)
2236 smr_val |= SCSMR_PE | SCSMR_ODD;
2237 if (termios->c_cflag & CSTOPB)
2238 smr_val |= SCSMR_STOP;
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248 if (!port->uartclk) {
2249 baud = uart_get_baud_rate(port, termios, old, 0, 115200);
2250 goto done;
2251 }
2252
2253 for (i = 0; i < SCI_NUM_CLKS; i++)
2254 max_freq = max(max_freq, s->clk_rates[i]);
2255
2256 baud = uart_get_baud_rate(port, termios, old, 0, max_freq / min_sr(s));
2257 if (!baud)
2258 goto done;
2259
2260
2261
2262
2263
2264
2265
2266 if (s->clk_rates[SCI_SCK] && port->type != PORT_SCIFA &&
2267 port->type != PORT_SCIFB) {
2268 err = sci_sck_calc(s, baud, &srr1);
2269 if (abs(err) < abs(min_err)) {
2270 best_clk = SCI_SCK;
2271 scr_val = SCSCR_CKE1;
2272 sccks = SCCKS_CKS;
2273 min_err = err;
2274 srr = srr1;
2275 if (!err)
2276 goto done;
2277 }
2278 }
2279
2280
2281 if (s->clk_rates[SCI_SCIF_CLK] && sci_getreg(port, SCDL)->size) {
2282 err = sci_brg_calc(s, baud, s->clk_rates[SCI_SCIF_CLK], &dl1,
2283 &srr1);
2284 if (abs(err) < abs(min_err)) {
2285 best_clk = SCI_SCIF_CLK;
2286 scr_val = SCSCR_CKE1;
2287 sccks = 0;
2288 min_err = err;
2289 dl = dl1;
2290 srr = srr1;
2291 if (!err)
2292 goto done;
2293 }
2294 }
2295
2296
2297 if (s->clk_rates[SCI_BRG_INT] && sci_getreg(port, SCDL)->size) {
2298 err = sci_brg_calc(s, baud, s->clk_rates[SCI_BRG_INT], &dl1,
2299 &srr1);
2300 if (abs(err) < abs(min_err)) {
2301 best_clk = SCI_BRG_INT;
2302 scr_val = SCSCR_CKE1;
2303 sccks = SCCKS_XIN;
2304 min_err = err;
2305 dl = dl1;
2306 srr = srr1;
2307 if (!min_err)
2308 goto done;
2309 }
2310 }
2311
2312
2313 err = sci_scbrr_calc(s, baud, &brr1, &srr1, &cks1);
2314 if (abs(err) < abs(min_err)) {
2315 best_clk = SCI_FCK;
2316 scr_val = 0;
2317 min_err = err;
2318 brr = brr1;
2319 srr = srr1;
2320 cks = cks1;
2321 }
2322
2323done:
2324 if (best_clk >= 0)
2325 dev_dbg(port->dev, "Using clk %pC for %u%+d bps\n",
2326 s->clks[best_clk], baud, min_err);
2327
2328 sci_port_enable(s);
2329
2330
2331
2332
2333
2334 if (best_clk >= 0 && sci_getreg(port, SCCKS)->size) {
2335 serial_port_out(port, SCDL, dl);
2336 serial_port_out(port, SCCKS, sccks);
2337 }
2338
2339 sci_reset(port);
2340
2341 uart_update_timeout(port, termios->c_cflag, baud);
2342
2343 if (best_clk >= 0) {
2344 if (port->type == PORT_SCIFA || port->type == PORT_SCIFB)
2345 switch (srr + 1) {
2346 case 5: smr_val |= SCSMR_SRC_5; break;
2347 case 7: smr_val |= SCSMR_SRC_7; break;
2348 case 11: smr_val |= SCSMR_SRC_11; break;
2349 case 13: smr_val |= SCSMR_SRC_13; break;
2350 case 16: smr_val |= SCSMR_SRC_16; break;
2351 case 17: smr_val |= SCSMR_SRC_17; break;
2352 case 19: smr_val |= SCSMR_SRC_19; break;
2353 case 27: smr_val |= SCSMR_SRC_27; break;
2354 }
2355 smr_val |= cks;
2356 dev_dbg(port->dev,
2357 "SCR 0x%x SMR 0x%x BRR %u CKS 0x%x DL %u SRR %u\n",
2358 scr_val, smr_val, brr, sccks, dl, srr);
2359 serial_port_out(port, SCSCR, scr_val);
2360 serial_port_out(port, SCSMR, smr_val);
2361 serial_port_out(port, SCBRR, brr);
2362 if (sci_getreg(port, HSSRR)->size)
2363 serial_port_out(port, HSSRR, srr | HSCIF_SRE);
2364
2365
2366 udelay((1000000 + (baud - 1)) / baud);
2367 } else {
2368
2369 scr_val = s->cfg->scscr & (SCSCR_CKE1 | SCSCR_CKE0);
2370 smr_val |= serial_port_in(port, SCSMR) &
2371 (SCSMR_CKEDG | SCSMR_SRC_MASK | SCSMR_CKS);
2372 dev_dbg(port->dev, "SCR 0x%x SMR 0x%x\n", scr_val, smr_val);
2373 serial_port_out(port, SCSCR, scr_val);
2374 serial_port_out(port, SCSMR, smr_val);
2375 }
2376
2377 sci_init_pins(port, termios->c_cflag);
2378
2379 port->status &= ~UPSTAT_AUTOCTS;
2380 s->autorts = false;
2381 reg = sci_getreg(port, SCFCR);
2382 if (reg->size) {
2383 unsigned short ctrl = serial_port_in(port, SCFCR);
2384
2385 if ((port->flags & UPF_HARD_FLOW) &&
2386 (termios->c_cflag & CRTSCTS)) {
2387
2388 port->status |= UPSTAT_AUTOCTS;
2389
2390 s->autorts = true;
2391 }
2392
2393
2394
2395
2396
2397
2398 ctrl &= ~(SCFCR_RFRST | SCFCR_TFRST);
2399
2400 serial_port_out(port, SCFCR, ctrl);
2401 }
2402 if (port->flags & UPF_HARD_FLOW) {
2403
2404 sci_set_mctrl(port, port->mctrl);
2405 }
2406
2407 scr_val |= SCSCR_RE | SCSCR_TE |
2408 (s->cfg->scscr & ~(SCSCR_CKE1 | SCSCR_CKE0));
2409 dev_dbg(port->dev, "SCSCR 0x%x\n", scr_val);
2410 serial_port_out(port, SCSCR, scr_val);
2411 if ((srr + 1 == 5) &&
2412 (port->type == PORT_SCIFA || port->type == PORT_SCIFB)) {
2413
2414
2415
2416
2417
2418
2419 udelay(DIV_ROUND_UP(10 * 1000000, baud));
2420 }
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433 switch (termios->c_cflag & CSIZE) {
2434 case CS5:
2435 bits = 7;
2436 break;
2437 case CS6:
2438 bits = 8;
2439 break;
2440 case CS7:
2441 bits = 9;
2442 break;
2443 default:
2444 bits = 10;
2445 break;
2446 }
2447
2448 if (termios->c_cflag & CSTOPB)
2449 bits++;
2450 if (termios->c_cflag & PARENB)
2451 bits++;
2452
2453 s->rx_frame = (100 * bits * HZ) / (baud / 10);
2454#ifdef CONFIG_SERIAL_SH_SCI_DMA
2455 s->rx_timeout = DIV_ROUND_UP(s->buf_len_rx * 2 * s->rx_frame, 1000);
2456 dev_dbg(port->dev, "DMA Rx t-out %ums, tty t-out %u jiffies\n",
2457 s->rx_timeout * 1000 / HZ, port->timeout);
2458 if (s->rx_timeout < msecs_to_jiffies(20))
2459 s->rx_timeout = msecs_to_jiffies(20);
2460#endif
2461
2462 if ((termios->c_cflag & CREAD) != 0)
2463 sci_start_rx(port);
2464
2465 sci_port_disable(s);
2466
2467 if (UART_ENABLE_MS(port, termios->c_cflag))
2468 sci_enable_ms(port);
2469}
2470
2471static void sci_pm(struct uart_port *port, unsigned int state,
2472 unsigned int oldstate)
2473{
2474 struct sci_port *sci_port = to_sci_port(port);
2475
2476 switch (state) {
2477 case UART_PM_STATE_OFF:
2478 sci_port_disable(sci_port);
2479 break;
2480 default:
2481 sci_port_enable(sci_port);
2482 break;
2483 }
2484}
2485
2486static const char *sci_type(struct uart_port *port)
2487{
2488 switch (port->type) {
2489 case PORT_IRDA:
2490 return "irda";
2491 case PORT_SCI:
2492 return "sci";
2493 case PORT_SCIF:
2494 return "scif";
2495 case PORT_SCIFA:
2496 return "scifa";
2497 case PORT_SCIFB:
2498 return "scifb";
2499 case PORT_HSCIF:
2500 return "hscif";
2501 }
2502
2503 return NULL;
2504}
2505
2506static int sci_remap_port(struct uart_port *port)
2507{
2508 struct sci_port *sport = to_sci_port(port);
2509
2510
2511
2512
2513 if (port->membase)
2514 return 0;
2515
2516 if (port->dev->of_node || (port->flags & UPF_IOREMAP)) {
2517 port->membase = ioremap_nocache(port->mapbase, sport->reg_size);
2518 if (unlikely(!port->membase)) {
2519 dev_err(port->dev, "can't remap port#%d\n", port->line);
2520 return -ENXIO;
2521 }
2522 } else {
2523
2524
2525
2526
2527
2528 port->membase = (void __iomem *)(uintptr_t)port->mapbase;
2529 }
2530
2531 return 0;
2532}
2533
2534static void sci_release_port(struct uart_port *port)
2535{
2536 struct sci_port *sport = to_sci_port(port);
2537
2538 if (port->dev->of_node || (port->flags & UPF_IOREMAP)) {
2539 iounmap(port->membase);
2540 port->membase = NULL;
2541 }
2542
2543 release_mem_region(port->mapbase, sport->reg_size);
2544}
2545
2546static int sci_request_port(struct uart_port *port)
2547{
2548 struct resource *res;
2549 struct sci_port *sport = to_sci_port(port);
2550 int ret;
2551
2552 res = request_mem_region(port->mapbase, sport->reg_size,
2553 dev_name(port->dev));
2554 if (unlikely(res == NULL)) {
2555 dev_err(port->dev, "request_mem_region failed.");
2556 return -EBUSY;
2557 }
2558
2559 ret = sci_remap_port(port);
2560 if (unlikely(ret != 0)) {
2561 release_resource(res);
2562 return ret;
2563 }
2564
2565 return 0;
2566}
2567
2568static void sci_config_port(struct uart_port *port, int flags)
2569{
2570 if (flags & UART_CONFIG_TYPE) {
2571 struct sci_port *sport = to_sci_port(port);
2572
2573 port->type = sport->cfg->type;
2574 sci_request_port(port);
2575 }
2576}
2577
2578static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
2579{
2580 if (ser->baud_base < 2400)
2581
2582 return -EINVAL;
2583
2584 return 0;
2585}
2586
2587static const struct uart_ops sci_uart_ops = {
2588 .tx_empty = sci_tx_empty,
2589 .set_mctrl = sci_set_mctrl,
2590 .get_mctrl = sci_get_mctrl,
2591 .start_tx = sci_start_tx,
2592 .stop_tx = sci_stop_tx,
2593 .stop_rx = sci_stop_rx,
2594 .enable_ms = sci_enable_ms,
2595 .break_ctl = sci_break_ctl,
2596 .startup = sci_startup,
2597 .shutdown = sci_shutdown,
2598 .flush_buffer = sci_flush_buffer,
2599 .set_termios = sci_set_termios,
2600 .pm = sci_pm,
2601 .type = sci_type,
2602 .release_port = sci_release_port,
2603 .request_port = sci_request_port,
2604 .config_port = sci_config_port,
2605 .verify_port = sci_verify_port,
2606#ifdef CONFIG_CONSOLE_POLL
2607 .poll_get_char = sci_poll_get_char,
2608 .poll_put_char = sci_poll_put_char,
2609#endif
2610};
2611
2612static int sci_init_clocks(struct sci_port *sci_port, struct device *dev)
2613{
2614 const char *clk_names[] = {
2615 [SCI_FCK] = "fck",
2616 [SCI_SCK] = "sck",
2617 [SCI_BRG_INT] = "brg_int",
2618 [SCI_SCIF_CLK] = "scif_clk",
2619 };
2620 struct clk *clk;
2621 unsigned int i;
2622
2623 if (sci_port->cfg->type == PORT_HSCIF)
2624 clk_names[SCI_SCK] = "hsck";
2625
2626 for (i = 0; i < SCI_NUM_CLKS; i++) {
2627 clk = devm_clk_get(dev, clk_names[i]);
2628 if (PTR_ERR(clk) == -EPROBE_DEFER)
2629 return -EPROBE_DEFER;
2630
2631 if (IS_ERR(clk) && i == SCI_FCK) {
2632
2633
2634
2635
2636 clk = devm_clk_get(dev, "sci_ick");
2637 if (PTR_ERR(clk) == -EPROBE_DEFER)
2638 return -EPROBE_DEFER;
2639
2640 if (!IS_ERR(clk))
2641 goto found;
2642
2643
2644
2645
2646
2647
2648 clk = devm_clk_get(dev, "peripheral_clk");
2649 if (!IS_ERR(clk))
2650 goto found;
2651
2652 dev_err(dev, "failed to get %s (%ld)\n", clk_names[i],
2653 PTR_ERR(clk));
2654 return PTR_ERR(clk);
2655 }
2656
2657found:
2658 if (IS_ERR(clk))
2659 dev_dbg(dev, "failed to get %s (%ld)\n", clk_names[i],
2660 PTR_ERR(clk));
2661 else
2662 dev_dbg(dev, "clk %s is %pC rate %pCr\n", clk_names[i],
2663 clk, clk);
2664 sci_port->clks[i] = IS_ERR(clk) ? NULL : clk;
2665 }
2666 return 0;
2667}
2668
2669static const struct sci_port_params *
2670sci_probe_regmap(const struct plat_sci_port *cfg)
2671{
2672 unsigned int regtype;
2673
2674 if (cfg->regtype != SCIx_PROBE_REGTYPE)
2675 return &sci_port_params[cfg->regtype];
2676
2677 switch (cfg->type) {
2678 case PORT_SCI:
2679 regtype = SCIx_SCI_REGTYPE;
2680 break;
2681 case PORT_IRDA:
2682 regtype = SCIx_IRDA_REGTYPE;
2683 break;
2684 case PORT_SCIFA:
2685 regtype = SCIx_SCIFA_REGTYPE;
2686 break;
2687 case PORT_SCIFB:
2688 regtype = SCIx_SCIFB_REGTYPE;
2689 break;
2690 case PORT_SCIF:
2691
2692
2693
2694
2695
2696
2697 regtype = SCIx_SH4_SCIF_REGTYPE;
2698 break;
2699 case PORT_HSCIF:
2700 regtype = SCIx_HSCIF_REGTYPE;
2701 break;
2702 default:
2703 pr_err("Can't probe register map for given port\n");
2704 return NULL;
2705 }
2706
2707 return &sci_port_params[regtype];
2708}
2709
2710static int sci_init_single(struct platform_device *dev,
2711 struct sci_port *sci_port, unsigned int index,
2712 const struct plat_sci_port *p, bool early)
2713{
2714 struct uart_port *port = &sci_port->port;
2715 const struct resource *res;
2716 unsigned int i;
2717 int ret;
2718
2719 sci_port->cfg = p;
2720
2721 port->ops = &sci_uart_ops;
2722 port->iotype = UPIO_MEM;
2723 port->line = index;
2724
2725 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
2726 if (res == NULL)
2727 return -ENOMEM;
2728
2729 port->mapbase = res->start;
2730 sci_port->reg_size = resource_size(res);
2731
2732 for (i = 0; i < ARRAY_SIZE(sci_port->irqs); ++i)
2733 sci_port->irqs[i] = platform_get_irq(dev, i);
2734
2735
2736
2737
2738
2739
2740 if (sci_port->irqs[0] < 0)
2741 return -ENXIO;
2742
2743 if (sci_port->irqs[1] < 0) {
2744 sci_port->irqs[1] = sci_port->irqs[0];
2745 sci_port->irqs[2] = sci_port->irqs[0];
2746 sci_port->irqs[3] = sci_port->irqs[0];
2747 }
2748
2749 sci_port->params = sci_probe_regmap(p);
2750 if (unlikely(sci_port->params == NULL))
2751 return -EINVAL;
2752
2753 switch (p->type) {
2754 case PORT_SCIFB:
2755 sci_port->rx_trigger = 48;
2756 break;
2757 case PORT_HSCIF:
2758 sci_port->rx_trigger = 64;
2759 break;
2760 case PORT_SCIFA:
2761 sci_port->rx_trigger = 32;
2762 break;
2763 case PORT_SCIF:
2764 if (p->regtype == SCIx_SH7705_SCIF_REGTYPE)
2765
2766 sci_port->rx_trigger = 1;
2767 else
2768 sci_port->rx_trigger = 8;
2769 break;
2770 default:
2771 sci_port->rx_trigger = 1;
2772 break;
2773 }
2774
2775 sci_port->rx_fifo_timeout = 0;
2776
2777
2778
2779
2780
2781 sci_port->sampling_rate_mask = p->sampling_rate
2782 ? SCI_SR(p->sampling_rate)
2783 : sci_port->params->sampling_rate_mask;
2784
2785 if (!early) {
2786 ret = sci_init_clocks(sci_port, &dev->dev);
2787 if (ret < 0)
2788 return ret;
2789
2790 port->dev = &dev->dev;
2791
2792 pm_runtime_enable(&dev->dev);
2793 }
2794
2795 port->type = p->type;
2796 port->flags = UPF_FIXED_PORT | UPF_BOOT_AUTOCONF | p->flags;
2797 port->fifosize = sci_port->params->fifosize;
2798
2799 if (port->type == PORT_SCI) {
2800 if (sci_port->reg_size >= 0x20)
2801 port->regshift = 2;
2802 else
2803 port->regshift = 1;
2804 }
2805
2806
2807
2808
2809
2810
2811
2812
2813 port->irq = sci_port->irqs[SCIx_RXI_IRQ];
2814 port->irqflags = 0;
2815
2816 port->serial_in = sci_serial_in;
2817 port->serial_out = sci_serial_out;
2818
2819 return 0;
2820}
2821
2822static void sci_cleanup_single(struct sci_port *port)
2823{
2824 pm_runtime_disable(port->port.dev);
2825}
2826
2827#if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) || \
2828 defined(CONFIG_SERIAL_SH_SCI_EARLYCON)
2829static void serial_console_putchar(struct uart_port *port, int ch)
2830{
2831 sci_poll_put_char(port, ch);
2832}
2833
2834
2835
2836
2837
2838static void serial_console_write(struct console *co, const char *s,
2839 unsigned count)
2840{
2841 struct sci_port *sci_port = &sci_ports[co->index];
2842 struct uart_port *port = &sci_port->port;
2843 unsigned short bits, ctrl, ctrl_temp;
2844 unsigned long flags;
2845 int locked = 1;
2846
2847 local_irq_save(flags);
2848#if defined(SUPPORT_SYSRQ)
2849 if (port->sysrq)
2850 locked = 0;
2851 else
2852#endif
2853 if (oops_in_progress)
2854 locked = spin_trylock(&port->lock);
2855 else
2856 spin_lock(&port->lock);
2857
2858
2859 ctrl = serial_port_in(port, SCSCR);
2860 ctrl_temp = SCSCR_RE | SCSCR_TE |
2861 (sci_port->cfg->scscr & ~(SCSCR_CKE1 | SCSCR_CKE0)) |
2862 (ctrl & (SCSCR_CKE1 | SCSCR_CKE0));
2863 serial_port_out(port, SCSCR, ctrl_temp);
2864
2865 uart_console_write(port, s, count, serial_console_putchar);
2866
2867
2868 bits = SCxSR_TDxE(port) | SCxSR_TEND(port);
2869 while ((serial_port_in(port, SCxSR) & bits) != bits)
2870 cpu_relax();
2871
2872
2873 serial_port_out(port, SCSCR, ctrl);
2874
2875 if (locked)
2876 spin_unlock(&port->lock);
2877 local_irq_restore(flags);
2878}
2879
2880static int serial_console_setup(struct console *co, char *options)
2881{
2882 struct sci_port *sci_port;
2883 struct uart_port *port;
2884 int baud = 115200;
2885 int bits = 8;
2886 int parity = 'n';
2887 int flow = 'n';
2888 int ret;
2889
2890
2891
2892
2893 if (co->index < 0 || co->index >= SCI_NPORTS)
2894 return -ENODEV;
2895
2896 sci_port = &sci_ports[co->index];
2897 port = &sci_port->port;
2898
2899
2900
2901
2902 if (!port->ops)
2903 return -ENODEV;
2904
2905 ret = sci_remap_port(port);
2906 if (unlikely(ret != 0))
2907 return ret;
2908
2909 if (options)
2910 uart_parse_options(options, &baud, &parity, &bits, &flow);
2911
2912 return uart_set_options(port, co, baud, parity, bits, flow);
2913}
2914
2915static struct console serial_console = {
2916 .name = "ttySC",
2917 .device = uart_console_device,
2918 .write = serial_console_write,
2919 .setup = serial_console_setup,
2920 .flags = CON_PRINTBUFFER,
2921 .index = -1,
2922 .data = &sci_uart_driver,
2923};
2924
2925static struct console early_serial_console = {
2926 .name = "early_ttySC",
2927 .write = serial_console_write,
2928 .flags = CON_PRINTBUFFER,
2929 .index = -1,
2930};
2931
2932static char early_serial_buf[32];
2933
2934static int sci_probe_earlyprintk(struct platform_device *pdev)
2935{
2936 const struct plat_sci_port *cfg = dev_get_platdata(&pdev->dev);
2937
2938 if (early_serial_console.data)
2939 return -EEXIST;
2940
2941 early_serial_console.index = pdev->id;
2942
2943 sci_init_single(pdev, &sci_ports[pdev->id], pdev->id, cfg, true);
2944
2945 serial_console_setup(&early_serial_console, early_serial_buf);
2946
2947 if (!strstr(early_serial_buf, "keep"))
2948 early_serial_console.flags |= CON_BOOT;
2949
2950 register_console(&early_serial_console);
2951 return 0;
2952}
2953
2954#define SCI_CONSOLE (&serial_console)
2955
2956#else
2957static inline int sci_probe_earlyprintk(struct platform_device *pdev)
2958{
2959 return -EINVAL;
2960}
2961
2962#define SCI_CONSOLE NULL
2963
2964#endif
2965
2966static const char banner[] __initconst = "SuperH (H)SCI(F) driver initialized";
2967
2968static DEFINE_MUTEX(sci_uart_registration_lock);
2969static struct uart_driver sci_uart_driver = {
2970 .owner = THIS_MODULE,
2971 .driver_name = "sci",
2972 .dev_name = "ttySC",
2973 .major = SCI_MAJOR,
2974 .minor = SCI_MINOR_START,
2975 .nr = SCI_NPORTS,
2976 .cons = SCI_CONSOLE,
2977};
2978
2979static int sci_remove(struct platform_device *dev)
2980{
2981 struct sci_port *port = platform_get_drvdata(dev);
2982
2983 uart_remove_one_port(&sci_uart_driver, &port->port);
2984
2985 sci_cleanup_single(port);
2986
2987 if (port->port.fifosize > 1) {
2988 sysfs_remove_file(&dev->dev.kobj,
2989 &dev_attr_rx_fifo_trigger.attr);
2990 }
2991 if (port->port.type == PORT_SCIFA || port->port.type == PORT_SCIFB) {
2992 sysfs_remove_file(&dev->dev.kobj,
2993 &dev_attr_rx_fifo_timeout.attr);
2994 }
2995
2996 return 0;
2997}
2998
2999
3000#define SCI_OF_DATA(type, regtype) (void *)((type) << 16 | (regtype))
3001#define SCI_OF_TYPE(data) ((unsigned long)(data) >> 16)
3002#define SCI_OF_REGTYPE(data) ((unsigned long)(data) & 0xffff)
3003
3004static const struct of_device_id of_sci_match[] = {
3005
3006 {
3007 .compatible = "renesas,scif-r7s72100",
3008 .data = SCI_OF_DATA(PORT_SCIF, SCIx_SH2_SCIF_FIFODATA_REGTYPE),
3009 },
3010
3011 {
3012 .compatible = "renesas,rcar-gen1-scif",
3013 .data = SCI_OF_DATA(PORT_SCIF, SCIx_SH4_SCIF_BRG_REGTYPE),
3014 }, {
3015 .compatible = "renesas,rcar-gen2-scif",
3016 .data = SCI_OF_DATA(PORT_SCIF, SCIx_SH4_SCIF_BRG_REGTYPE),
3017 }, {
3018 .compatible = "renesas,rcar-gen3-scif",
3019 .data = SCI_OF_DATA(PORT_SCIF, SCIx_SH4_SCIF_BRG_REGTYPE),
3020 },
3021
3022 {
3023 .compatible = "renesas,scif",
3024 .data = SCI_OF_DATA(PORT_SCIF, SCIx_SH4_SCIF_REGTYPE),
3025 }, {
3026 .compatible = "renesas,scifa",
3027 .data = SCI_OF_DATA(PORT_SCIFA, SCIx_SCIFA_REGTYPE),
3028 }, {
3029 .compatible = "renesas,scifb",
3030 .data = SCI_OF_DATA(PORT_SCIFB, SCIx_SCIFB_REGTYPE),
3031 }, {
3032 .compatible = "renesas,hscif",
3033 .data = SCI_OF_DATA(PORT_HSCIF, SCIx_HSCIF_REGTYPE),
3034 }, {
3035 .compatible = "renesas,sci",
3036 .data = SCI_OF_DATA(PORT_SCI, SCIx_SCI_REGTYPE),
3037 }, {
3038
3039 },
3040};
3041MODULE_DEVICE_TABLE(of, of_sci_match);
3042
3043static struct plat_sci_port *sci_parse_dt(struct platform_device *pdev,
3044 unsigned int *dev_id)
3045{
3046 struct device_node *np = pdev->dev.of_node;
3047 const struct of_device_id *match;
3048 struct plat_sci_port *p;
3049 struct sci_port *sp;
3050 int id;
3051
3052 if (!IS_ENABLED(CONFIG_OF) || !np)
3053 return NULL;
3054
3055 match = of_match_node(of_sci_match, np);
3056 if (!match)
3057 return NULL;
3058
3059 p = devm_kzalloc(&pdev->dev, sizeof(struct plat_sci_port), GFP_KERNEL);
3060 if (!p)
3061 return NULL;
3062
3063
3064 id = of_alias_get_id(np, "serial");
3065 if (id < 0) {
3066 dev_err(&pdev->dev, "failed to get alias id (%d)\n", id);
3067 return NULL;
3068 }
3069
3070 sp = &sci_ports[id];
3071 *dev_id = id;
3072
3073 p->type = SCI_OF_TYPE(match->data);
3074 p->regtype = SCI_OF_REGTYPE(match->data);
3075
3076 sp->has_rtscts = of_property_read_bool(np, "uart-has-rtscts");
3077
3078 return p;
3079}
3080
3081static int sci_probe_single(struct platform_device *dev,
3082 unsigned int index,
3083 struct plat_sci_port *p,
3084 struct sci_port *sciport)
3085{
3086 int ret;
3087
3088
3089 if (unlikely(index >= SCI_NPORTS)) {
3090 dev_notice(&dev->dev, "Attempting to register port %d when only %d are available\n",
3091 index+1, SCI_NPORTS);
3092 dev_notice(&dev->dev, "Consider bumping CONFIG_SERIAL_SH_SCI_NR_UARTS!\n");
3093 return -EINVAL;
3094 }
3095
3096 mutex_lock(&sci_uart_registration_lock);
3097 if (!sci_uart_driver.state) {
3098 ret = uart_register_driver(&sci_uart_driver);
3099 if (ret) {
3100 mutex_unlock(&sci_uart_registration_lock);
3101 return ret;
3102 }
3103 }
3104 mutex_unlock(&sci_uart_registration_lock);
3105
3106 ret = sci_init_single(dev, sciport, index, p, false);
3107 if (ret)
3108 return ret;
3109
3110 sciport->gpios = mctrl_gpio_init(&sciport->port, 0);
3111 if (IS_ERR(sciport->gpios) && PTR_ERR(sciport->gpios) != -ENOSYS)
3112 return PTR_ERR(sciport->gpios);
3113
3114 if (sciport->has_rtscts) {
3115 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(sciport->gpios,
3116 UART_GPIO_CTS)) ||
3117 !IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(sciport->gpios,
3118 UART_GPIO_RTS))) {
3119 dev_err(&dev->dev, "Conflicting RTS/CTS config\n");
3120 return -EINVAL;
3121 }
3122 sciport->port.flags |= UPF_HARD_FLOW;
3123 }
3124
3125 ret = uart_add_one_port(&sci_uart_driver, &sciport->port);
3126 if (ret) {
3127 sci_cleanup_single(sciport);
3128 return ret;
3129 }
3130
3131 return 0;
3132}
3133
3134static int sci_probe(struct platform_device *dev)
3135{
3136 struct plat_sci_port *p;
3137 struct sci_port *sp;
3138 unsigned int dev_id;
3139 int ret;
3140
3141
3142
3143
3144
3145
3146 if (is_early_platform_device(dev))
3147 return sci_probe_earlyprintk(dev);
3148
3149 if (dev->dev.of_node) {
3150 p = sci_parse_dt(dev, &dev_id);
3151 if (p == NULL)
3152 return -EINVAL;
3153 } else {
3154 p = dev->dev.platform_data;
3155 if (p == NULL) {
3156 dev_err(&dev->dev, "no platform data supplied\n");
3157 return -EINVAL;
3158 }
3159
3160 dev_id = dev->id;
3161 }
3162
3163 sp = &sci_ports[dev_id];
3164 platform_set_drvdata(dev, sp);
3165
3166 ret = sci_probe_single(dev, dev_id, p, sp);
3167 if (ret)
3168 return ret;
3169
3170 if (sp->port.fifosize > 1) {
3171 ret = sysfs_create_file(&dev->dev.kobj,
3172 &dev_attr_rx_fifo_trigger.attr);
3173 if (ret)
3174 return ret;
3175 }
3176 if (sp->port.type == PORT_SCIFA || sp->port.type == PORT_SCIFB) {
3177 ret = sysfs_create_file(&dev->dev.kobj,
3178 &dev_attr_rx_fifo_timeout.attr);
3179 if (ret) {
3180 if (sp->port.fifosize > 1) {
3181 sysfs_remove_file(&dev->dev.kobj,
3182 &dev_attr_rx_fifo_trigger.attr);
3183 }
3184 return ret;
3185 }
3186 }
3187
3188#ifdef CONFIG_SH_STANDARD_BIOS
3189 sh_bios_gdb_detach();
3190#endif
3191
3192 return 0;
3193}
3194
3195static __maybe_unused int sci_suspend(struct device *dev)
3196{
3197 struct sci_port *sport = dev_get_drvdata(dev);
3198
3199 if (sport)
3200 uart_suspend_port(&sci_uart_driver, &sport->port);
3201
3202 return 0;
3203}
3204
3205static __maybe_unused int sci_resume(struct device *dev)
3206{
3207 struct sci_port *sport = dev_get_drvdata(dev);
3208
3209 if (sport)
3210 uart_resume_port(&sci_uart_driver, &sport->port);
3211
3212 return 0;
3213}
3214
3215static SIMPLE_DEV_PM_OPS(sci_dev_pm_ops, sci_suspend, sci_resume);
3216
3217static struct platform_driver sci_driver = {
3218 .probe = sci_probe,
3219 .remove = sci_remove,
3220 .driver = {
3221 .name = "sh-sci",
3222 .pm = &sci_dev_pm_ops,
3223 .of_match_table = of_match_ptr(of_sci_match),
3224 },
3225};
3226
3227static int __init sci_init(void)
3228{
3229 pr_info("%s\n", banner);
3230
3231 return platform_driver_register(&sci_driver);
3232}
3233
3234static void __exit sci_exit(void)
3235{
3236 platform_driver_unregister(&sci_driver);
3237
3238 if (sci_uart_driver.state)
3239 uart_unregister_driver(&sci_uart_driver);
3240}
3241
3242#ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
3243early_platform_init_buffer("earlyprintk", &sci_driver,
3244 early_serial_buf, ARRAY_SIZE(early_serial_buf));
3245#endif
3246#ifdef CONFIG_SERIAL_SH_SCI_EARLYCON
3247static struct __init plat_sci_port port_cfg;
3248
3249static int __init early_console_setup(struct earlycon_device *device,
3250 int type)
3251{
3252 if (!device->port.membase)
3253 return -ENODEV;
3254
3255 device->port.serial_in = sci_serial_in;
3256 device->port.serial_out = sci_serial_out;
3257 device->port.type = type;
3258 memcpy(&sci_ports[0].port, &device->port, sizeof(struct uart_port));
3259 port_cfg.type = type;
3260 sci_ports[0].cfg = &port_cfg;
3261 sci_ports[0].params = sci_probe_regmap(&port_cfg);
3262 port_cfg.scscr = sci_serial_in(&sci_ports[0].port, SCSCR);
3263 sci_serial_out(&sci_ports[0].port, SCSCR,
3264 SCSCR_RE | SCSCR_TE | port_cfg.scscr);
3265
3266 device->con->write = serial_console_write;
3267 return 0;
3268}
3269static int __init sci_early_console_setup(struct earlycon_device *device,
3270 const char *opt)
3271{
3272 return early_console_setup(device, PORT_SCI);
3273}
3274static int __init scif_early_console_setup(struct earlycon_device *device,
3275 const char *opt)
3276{
3277 return early_console_setup(device, PORT_SCIF);
3278}
3279static int __init scifa_early_console_setup(struct earlycon_device *device,
3280 const char *opt)
3281{
3282 return early_console_setup(device, PORT_SCIFA);
3283}
3284static int __init scifb_early_console_setup(struct earlycon_device *device,
3285 const char *opt)
3286{
3287 return early_console_setup(device, PORT_SCIFB);
3288}
3289static int __init hscif_early_console_setup(struct earlycon_device *device,
3290 const char *opt)
3291{
3292 return early_console_setup(device, PORT_HSCIF);
3293}
3294
3295OF_EARLYCON_DECLARE(sci, "renesas,sci", sci_early_console_setup);
3296OF_EARLYCON_DECLARE(scif, "renesas,scif", scif_early_console_setup);
3297OF_EARLYCON_DECLARE(scifa, "renesas,scifa", scifa_early_console_setup);
3298OF_EARLYCON_DECLARE(scifb, "renesas,scifb", scifb_early_console_setup);
3299OF_EARLYCON_DECLARE(hscif, "renesas,hscif", hscif_early_console_setup);
3300#endif
3301
3302module_init(sci_init);
3303module_exit(sci_exit);
3304
3305MODULE_LICENSE("GPL");
3306MODULE_ALIAS("platform:sh-sci");
3307MODULE_AUTHOR("Paul Mundt");
3308MODULE_DESCRIPTION("SuperH (H)SCI(F) serial driver");
3309