serial: clps711x: Give a chance to perform useful tasks during wait loop
[deliverable/linux.git] / drivers / tty / serial / clps711x.c
1 /*
2 * Driver for CLPS711x serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright 1999 ARM Limited
7 * Copyright (C) 2000 Deep Blue Solutions Ltd.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
14
15 #if defined(CONFIG_SERIAL_CLPS711X_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
16 #define SUPPORT_SYSRQ
17 #endif
18
19 #include <linux/module.h>
20 #include <linux/device.h>
21 #include <linux/console.h>
22 #include <linux/serial_core.h>
23 #include <linux/serial.h>
24 #include <linux/clk.h>
25 #include <linux/io.h>
26 #include <linux/tty.h>
27 #include <linux/tty_flip.h>
28 #include <linux/ioport.h>
29 #include <linux/of.h>
30 #include <linux/platform_device.h>
31 #include <linux/regmap.h>
32
33 #include <linux/mfd/syscon.h>
34 #include <linux/mfd/syscon/clps711x.h>
35
36 #define UART_CLPS711X_DEVNAME "ttyCL"
37 #define UART_CLPS711X_NR 2
38 #define UART_CLPS711X_MAJOR 204
39 #define UART_CLPS711X_MINOR 40
40
41 #define UARTDR_OFFSET (0x00)
42 #define UBRLCR_OFFSET (0x40)
43
44 #define UARTDR_FRMERR (1 << 8)
45 #define UARTDR_PARERR (1 << 9)
46 #define UARTDR_OVERR (1 << 10)
47
48 #define UBRLCR_BAUD_MASK ((1 << 12) - 1)
49 #define UBRLCR_BREAK (1 << 12)
50 #define UBRLCR_PRTEN (1 << 13)
51 #define UBRLCR_EVENPRT (1 << 14)
52 #define UBRLCR_XSTOP (1 << 15)
53 #define UBRLCR_FIFOEN (1 << 16)
54 #define UBRLCR_WRDLEN5 (0 << 17)
55 #define UBRLCR_WRDLEN6 (1 << 17)
56 #define UBRLCR_WRDLEN7 (2 << 17)
57 #define UBRLCR_WRDLEN8 (3 << 17)
58 #define UBRLCR_WRDLEN_MASK (3 << 17)
59
60 struct clps711x_port {
61 struct uart_port port;
62 unsigned int tx_enabled;
63 int rx_irq;
64 struct regmap *syscon;
65 bool use_ms;
66 };
67
68 static struct uart_driver clps711x_uart = {
69 .owner = THIS_MODULE,
70 .driver_name = UART_CLPS711X_DEVNAME,
71 .dev_name = UART_CLPS711X_DEVNAME,
72 .major = UART_CLPS711X_MAJOR,
73 .minor = UART_CLPS711X_MINOR,
74 .nr = UART_CLPS711X_NR,
75 };
76
77 static void uart_clps711x_stop_tx(struct uart_port *port)
78 {
79 struct clps711x_port *s = dev_get_drvdata(port->dev);
80
81 if (s->tx_enabled) {
82 disable_irq(port->irq);
83 s->tx_enabled = 0;
84 }
85 }
86
87 static void uart_clps711x_start_tx(struct uart_port *port)
88 {
89 struct clps711x_port *s = dev_get_drvdata(port->dev);
90
91 if (!s->tx_enabled) {
92 s->tx_enabled = 1;
93 enable_irq(port->irq);
94 }
95 }
96
97 static irqreturn_t uart_clps711x_int_rx(int irq, void *dev_id)
98 {
99 struct uart_port *port = dev_id;
100 struct clps711x_port *s = dev_get_drvdata(port->dev);
101 unsigned int status, flg;
102 u16 ch;
103
104 for (;;) {
105 u32 sysflg = 0;
106
107 regmap_read(s->syscon, SYSFLG_OFFSET, &sysflg);
108 if (sysflg & SYSFLG_URXFE)
109 break;
110
111 ch = readw(port->membase + UARTDR_OFFSET);
112 status = ch & (UARTDR_FRMERR | UARTDR_PARERR | UARTDR_OVERR);
113 ch &= 0xff;
114
115 port->icount.rx++;
116 flg = TTY_NORMAL;
117
118 if (unlikely(status)) {
119 if (status & UARTDR_PARERR)
120 port->icount.parity++;
121 else if (status & UARTDR_FRMERR)
122 port->icount.frame++;
123 else if (status & UARTDR_OVERR)
124 port->icount.overrun++;
125
126 status &= port->read_status_mask;
127
128 if (status & UARTDR_PARERR)
129 flg = TTY_PARITY;
130 else if (status & UARTDR_FRMERR)
131 flg = TTY_FRAME;
132 else if (status & UARTDR_OVERR)
133 flg = TTY_OVERRUN;
134 }
135
136 if (uart_handle_sysrq_char(port, ch))
137 continue;
138
139 if (status & port->ignore_status_mask)
140 continue;
141
142 uart_insert_char(port, status, UARTDR_OVERR, ch, flg);
143 }
144
145 tty_flip_buffer_push(&port->state->port);
146
147 return IRQ_HANDLED;
148 }
149
150 static irqreturn_t uart_clps711x_int_tx(int irq, void *dev_id)
151 {
152 struct uart_port *port = dev_id;
153 struct clps711x_port *s = dev_get_drvdata(port->dev);
154 struct circ_buf *xmit = &port->state->xmit;
155
156 if (port->x_char) {
157 writew(port->x_char, port->membase + UARTDR_OFFSET);
158 port->icount.tx++;
159 port->x_char = 0;
160 return IRQ_HANDLED;
161 }
162
163 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
164 if (s->tx_enabled) {
165 disable_irq_nosync(port->irq);
166 s->tx_enabled = 0;
167 }
168 return IRQ_HANDLED;
169 }
170
171 while (!uart_circ_empty(xmit)) {
172 u32 sysflg = 0;
173
174 writew(xmit->buf[xmit->tail], port->membase + UARTDR_OFFSET);
175 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
176 port->icount.tx++;
177
178 regmap_read(s->syscon, SYSFLG_OFFSET, &sysflg);
179 if (sysflg & SYSFLG_UTXFF)
180 break;
181 }
182
183 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
184 uart_write_wakeup(port);
185
186 return IRQ_HANDLED;
187 }
188
189 static unsigned int uart_clps711x_tx_empty(struct uart_port *port)
190 {
191 struct clps711x_port *s = dev_get_drvdata(port->dev);
192 u32 sysflg = 0;
193
194 regmap_read(s->syscon, SYSFLG_OFFSET, &sysflg);
195
196 return (sysflg & SYSFLG_UBUSY) ? 0 : TIOCSER_TEMT;
197 }
198
199 static unsigned int uart_clps711x_get_mctrl(struct uart_port *port)
200 {
201 struct clps711x_port *s = dev_get_drvdata(port->dev);
202 unsigned int result = 0;
203
204 if (s->use_ms) {
205 u32 sysflg = 0;
206
207 regmap_read(s->syscon, SYSFLG_OFFSET, &sysflg);
208 if (sysflg & SYSFLG1_DCD)
209 result |= TIOCM_CAR;
210 if (sysflg & SYSFLG1_DSR)
211 result |= TIOCM_DSR;
212 if (sysflg & SYSFLG1_CTS)
213 result |= TIOCM_CTS;
214 } else
215 result = TIOCM_DSR | TIOCM_CTS | TIOCM_CAR;
216
217 return result;
218 }
219
220 static void uart_clps711x_set_mctrl(struct uart_port *port, unsigned int mctrl)
221 {
222 /* Do nothing */
223 }
224
225 static void uart_clps711x_break_ctl(struct uart_port *port, int break_state)
226 {
227 unsigned int ubrlcr;
228
229 ubrlcr = readl(port->membase + UBRLCR_OFFSET);
230 if (break_state)
231 ubrlcr |= UBRLCR_BREAK;
232 else
233 ubrlcr &= ~UBRLCR_BREAK;
234 writel(ubrlcr, port->membase + UBRLCR_OFFSET);
235 }
236
237 static void uart_clps711x_set_ldisc(struct uart_port *port, int ld)
238 {
239 if (!port->line) {
240 struct clps711x_port *s = dev_get_drvdata(port->dev);
241
242 regmap_update_bits(s->syscon, SYSCON_OFFSET, SYSCON1_SIREN,
243 (ld == N_IRDA) ? SYSCON1_SIREN : 0);
244 }
245 }
246
247 static int uart_clps711x_startup(struct uart_port *port)
248 {
249 struct clps711x_port *s = dev_get_drvdata(port->dev);
250
251 /* Disable break */
252 writel(readl(port->membase + UBRLCR_OFFSET) & ~UBRLCR_BREAK,
253 port->membase + UBRLCR_OFFSET);
254
255 /* Enable the port */
256 return regmap_update_bits(s->syscon, SYSCON_OFFSET,
257 SYSCON_UARTEN, SYSCON_UARTEN);
258 }
259
260 static void uart_clps711x_shutdown(struct uart_port *port)
261 {
262 struct clps711x_port *s = dev_get_drvdata(port->dev);
263
264 /* Disable the port */
265 regmap_update_bits(s->syscon, SYSCON_OFFSET, SYSCON_UARTEN, 0);
266 }
267
268 static void uart_clps711x_set_termios(struct uart_port *port,
269 struct ktermios *termios,
270 struct ktermios *old)
271 {
272 u32 ubrlcr;
273 unsigned int baud, quot;
274
275 /* Mask termios capabilities we don't support */
276 termios->c_cflag &= ~CMSPAR;
277 termios->c_iflag &= ~(BRKINT | IGNBRK);
278
279 /* Ask the core to calculate the divisor for us */
280 baud = uart_get_baud_rate(port, termios, old, port->uartclk / 4096,
281 port->uartclk / 16);
282 quot = uart_get_divisor(port, baud);
283
284 switch (termios->c_cflag & CSIZE) {
285 case CS5:
286 ubrlcr = UBRLCR_WRDLEN5;
287 break;
288 case CS6:
289 ubrlcr = UBRLCR_WRDLEN6;
290 break;
291 case CS7:
292 ubrlcr = UBRLCR_WRDLEN7;
293 break;
294 case CS8:
295 default:
296 ubrlcr = UBRLCR_WRDLEN8;
297 break;
298 }
299
300 if (termios->c_cflag & CSTOPB)
301 ubrlcr |= UBRLCR_XSTOP;
302
303 if (termios->c_cflag & PARENB) {
304 ubrlcr |= UBRLCR_PRTEN;
305 if (!(termios->c_cflag & PARODD))
306 ubrlcr |= UBRLCR_EVENPRT;
307 }
308
309 /* Enable FIFO */
310 ubrlcr |= UBRLCR_FIFOEN;
311
312 /* Set read status mask */
313 port->read_status_mask = UARTDR_OVERR;
314 if (termios->c_iflag & INPCK)
315 port->read_status_mask |= UARTDR_PARERR | UARTDR_FRMERR;
316
317 /* Set status ignore mask */
318 port->ignore_status_mask = 0;
319 if (!(termios->c_cflag & CREAD))
320 port->ignore_status_mask |= UARTDR_OVERR | UARTDR_PARERR |
321 UARTDR_FRMERR;
322
323 uart_update_timeout(port, termios->c_cflag, baud);
324
325 writel(ubrlcr | (quot - 1), port->membase + UBRLCR_OFFSET);
326 }
327
328 static const char *uart_clps711x_type(struct uart_port *port)
329 {
330 return (port->type == PORT_CLPS711X) ? "CLPS711X" : NULL;
331 }
332
333 static void uart_clps711x_config_port(struct uart_port *port, int flags)
334 {
335 if (flags & UART_CONFIG_TYPE)
336 port->type = PORT_CLPS711X;
337 }
338
339 static void uart_clps711x_nop_void(struct uart_port *port)
340 {
341 }
342
343 static int uart_clps711x_nop_int(struct uart_port *port)
344 {
345 return 0;
346 }
347
348 static const struct uart_ops uart_clps711x_ops = {
349 .tx_empty = uart_clps711x_tx_empty,
350 .set_mctrl = uart_clps711x_set_mctrl,
351 .get_mctrl = uart_clps711x_get_mctrl,
352 .stop_tx = uart_clps711x_stop_tx,
353 .start_tx = uart_clps711x_start_tx,
354 .stop_rx = uart_clps711x_nop_void,
355 .enable_ms = uart_clps711x_nop_void,
356 .break_ctl = uart_clps711x_break_ctl,
357 .set_ldisc = uart_clps711x_set_ldisc,
358 .startup = uart_clps711x_startup,
359 .shutdown = uart_clps711x_shutdown,
360 .set_termios = uart_clps711x_set_termios,
361 .type = uart_clps711x_type,
362 .config_port = uart_clps711x_config_port,
363 .release_port = uart_clps711x_nop_void,
364 .request_port = uart_clps711x_nop_int,
365 };
366
367 #ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
368 static void uart_clps711x_console_putchar(struct uart_port *port, int ch)
369 {
370 struct clps711x_port *s = dev_get_drvdata(port->dev);
371
372 /* Wait for FIFO is not full */
373 while (1) {
374 u32 sysflg = 0;
375
376 regmap_read(s->syscon, SYSFLG_OFFSET, &sysflg);
377 if (!(sysflg & SYSFLG_UTXFF))
378 break;
379 cond_resched();
380 }
381
382 writew(ch, port->membase + UARTDR_OFFSET);
383 }
384
385 static void uart_clps711x_console_write(struct console *co, const char *c,
386 unsigned n)
387 {
388 struct uart_port *port = clps711x_uart.state[co->index].uart_port;
389 struct clps711x_port *s = dev_get_drvdata(port->dev);
390
391 uart_console_write(port, c, n, uart_clps711x_console_putchar);
392
393 /* Wait for transmitter to become empty */
394 while (1) {
395 u32 sysflg = 0;
396
397 regmap_read(s->syscon, SYSFLG_OFFSET, &sysflg);
398 if (!(sysflg & SYSFLG_UBUSY))
399 break;
400 cond_resched();
401 }
402 }
403
404 static int uart_clps711x_console_setup(struct console *co, char *options)
405 {
406 int baud = 38400, bits = 8, parity = 'n', flow = 'n';
407 int ret, index = co->index;
408 struct clps711x_port *s;
409 struct uart_port *port;
410 unsigned int quot;
411 u32 ubrlcr;
412
413 if (index < 0 || index >= UART_CLPS711X_NR)
414 return -EINVAL;
415
416 port = clps711x_uart.state[index].uart_port;
417 if (!port)
418 return -ENODEV;
419
420 s = dev_get_drvdata(port->dev);
421
422 if (!options) {
423 u32 syscon = 0;
424
425 regmap_read(s->syscon, SYSCON_OFFSET, &syscon);
426 if (syscon & SYSCON_UARTEN) {
427 ubrlcr = readl(port->membase + UBRLCR_OFFSET);
428
429 if (ubrlcr & UBRLCR_PRTEN) {
430 if (ubrlcr & UBRLCR_EVENPRT)
431 parity = 'e';
432 else
433 parity = 'o';
434 }
435
436 if ((ubrlcr & UBRLCR_WRDLEN_MASK) == UBRLCR_WRDLEN7)
437 bits = 7;
438
439 quot = ubrlcr & UBRLCR_BAUD_MASK;
440 baud = port->uartclk / (16 * (quot + 1));
441 }
442 } else
443 uart_parse_options(options, &baud, &parity, &bits, &flow);
444
445 ret = uart_set_options(port, co, baud, parity, bits, flow);
446 if (ret)
447 return ret;
448
449 return regmap_update_bits(s->syscon, SYSCON_OFFSET,
450 SYSCON_UARTEN, SYSCON_UARTEN);
451 }
452
453 static struct console clps711x_console = {
454 .name = UART_CLPS711X_DEVNAME,
455 .device = uart_console_device,
456 .write = uart_clps711x_console_write,
457 .setup = uart_clps711x_console_setup,
458 .flags = CON_PRINTBUFFER,
459 .index = -1,
460 };
461 #endif
462
463 static int uart_clps711x_probe(struct platform_device *pdev)
464 {
465 struct device_node *np = pdev->dev.of_node;
466 int ret, index = np ? of_alias_get_id(np, "serial") : pdev->id;
467 struct clps711x_port *s;
468 struct resource *res;
469 struct clk *uart_clk;
470
471 if (index < 0 || index >= UART_CLPS711X_NR)
472 return -EINVAL;
473
474 s = devm_kzalloc(&pdev->dev, sizeof(*s), GFP_KERNEL);
475 if (!s)
476 return -ENOMEM;
477
478 uart_clk = devm_clk_get(&pdev->dev, NULL);
479 if (IS_ERR(uart_clk))
480 return PTR_ERR(uart_clk);
481
482 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
483 s->port.membase = devm_ioremap_resource(&pdev->dev, res);
484 if (IS_ERR(s->port.membase))
485 return PTR_ERR(s->port.membase);
486
487 s->port.irq = platform_get_irq(pdev, 0);
488 if (IS_ERR_VALUE(s->port.irq))
489 return s->port.irq;
490
491 s->rx_irq = platform_get_irq(pdev, 1);
492 if (IS_ERR_VALUE(s->rx_irq))
493 return s->rx_irq;
494
495 if (!np) {
496 char syscon_name[9];
497
498 sprintf(syscon_name, "syscon.%i", index + 1);
499 s->syscon = syscon_regmap_lookup_by_pdevname(syscon_name);
500 if (IS_ERR(s->syscon))
501 return PTR_ERR(s->syscon);
502
503 s->use_ms = !index;
504 } else {
505 s->syscon = syscon_regmap_lookup_by_phandle(np, "syscon");
506 if (IS_ERR(s->syscon))
507 return PTR_ERR(s->syscon);
508
509 if (!index)
510 s->use_ms = of_property_read_bool(np, "uart-use-ms");
511 }
512
513 s->port.line = index;
514 s->port.dev = &pdev->dev;
515 s->port.iotype = UPIO_MEM32;
516 s->port.mapbase = res->start;
517 s->port.type = PORT_CLPS711X;
518 s->port.fifosize = 16;
519 s->port.flags = UPF_SKIP_TEST | UPF_FIXED_TYPE;
520 s->port.uartclk = clk_get_rate(uart_clk);
521 s->port.ops = &uart_clps711x_ops;
522
523 platform_set_drvdata(pdev, s);
524
525 ret = uart_add_one_port(&clps711x_uart, &s->port);
526 if (ret)
527 return ret;
528
529 /* Disable port */
530 if (!uart_console(&s->port))
531 regmap_update_bits(s->syscon, SYSCON_OFFSET, SYSCON_UARTEN, 0);
532
533 s->tx_enabled = 1;
534
535 ret = devm_request_irq(&pdev->dev, s->port.irq, uart_clps711x_int_tx, 0,
536 dev_name(&pdev->dev), &s->port);
537 if (ret) {
538 uart_remove_one_port(&clps711x_uart, &s->port);
539 return ret;
540 }
541
542 ret = devm_request_irq(&pdev->dev, s->rx_irq, uart_clps711x_int_rx, 0,
543 dev_name(&pdev->dev), &s->port);
544 if (ret)
545 uart_remove_one_port(&clps711x_uart, &s->port);
546
547 return ret;
548 }
549
550 static int uart_clps711x_remove(struct platform_device *pdev)
551 {
552 struct clps711x_port *s = platform_get_drvdata(pdev);
553
554 return uart_remove_one_port(&clps711x_uart, &s->port);
555 }
556
557 static const struct of_device_id __maybe_unused clps711x_uart_dt_ids[] = {
558 { .compatible = "cirrus,clps711x-uart", },
559 { }
560 };
561 MODULE_DEVICE_TABLE(of, clps711x_uart_dt_ids);
562
563 static struct platform_driver clps711x_uart_platform = {
564 .driver = {
565 .name = "clps711x-uart",
566 .owner = THIS_MODULE,
567 .of_match_table = of_match_ptr(clps711x_uart_dt_ids),
568 },
569 .probe = uart_clps711x_probe,
570 .remove = uart_clps711x_remove,
571 };
572
573 static int __init uart_clps711x_init(void)
574 {
575 int ret;
576
577 #ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
578 clps711x_uart.cons = &clps711x_console;
579 clps711x_console.data = &clps711x_uart;
580 #endif
581
582 ret = uart_register_driver(&clps711x_uart);
583 if (ret)
584 return ret;
585
586 return platform_driver_register(&clps711x_uart_platform);
587 }
588 module_init(uart_clps711x_init);
589
590 static void __exit uart_clps711x_exit(void)
591 {
592 platform_driver_unregister(&clps711x_uart_platform);
593 uart_unregister_driver(&clps711x_uart);
594 }
595 module_exit(uart_clps711x_exit);
596
597 MODULE_AUTHOR("Deep Blue Solutions Ltd");
598 MODULE_DESCRIPTION("CLPS711X serial driver");
599 MODULE_LICENSE("GPL");
This page took 0.041873 seconds and 5 git commands to generate.