1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for GRLIB serial ports (APBUART)
5 * Based on linux/drivers/serial/amba.c
7 * Copyright (C) 2000 Deep Blue Solutions Ltd.
8 * Copyright (C) 2003 Konrad Eisele <eiselekd@web.de>
9 * Copyright (C) 2006 Daniel Hellstrom <daniel@gaisler.com>, Aeroflex Gaisler AB
10 * Copyright (C) 2008 Gilead Kutnick <kutnickg@zin-tech.com>
11 * Copyright (C) 2009 Kristoffer Glembo <kristoffer@gaisler.com>, Aeroflex Gaisler AB
14 #if defined(CONFIG_SERIAL_GRLIB_GAISLER_APBUART_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
18 #include <linux/module.h>
19 #include <linux/tty.h>
20 #include <linux/tty_flip.h>
21 #include <linux/ioport.h>
22 #include <linux/init.h>
23 #include <linux/serial.h>
24 #include <linux/console.h>
25 #include <linux/sysrq.h>
26 #include <linux/kthread.h>
27 #include <linux/device.h>
29 #include <linux/of_device.h>
30 #include <linux/of_platform.h>
31 #include <linux/of_irq.h>
32 #include <linux/platform_device.h>
34 #include <linux/serial_core.h>
39 #define SERIAL_APBUART_MAJOR TTY_MAJOR
40 #define SERIAL_APBUART_MINOR 64
41 #define UART_DUMMY_RSR_RX 0x8000 /* for ignore all read */
43 static void apbuart_tx_chars(struct uart_port
*port
);
45 static void apbuart_stop_tx(struct uart_port
*port
)
49 cr
= UART_GET_CTRL(port
);
51 UART_PUT_CTRL(port
, cr
);
54 static void apbuart_start_tx(struct uart_port
*port
)
58 cr
= UART_GET_CTRL(port
);
60 UART_PUT_CTRL(port
, cr
);
62 if (UART_GET_STATUS(port
) & UART_STATUS_THE
)
63 apbuart_tx_chars(port
);
66 static void apbuart_stop_rx(struct uart_port
*port
)
70 cr
= UART_GET_CTRL(port
);
71 cr
&= ~(UART_CTRL_RI
);
72 UART_PUT_CTRL(port
, cr
);
75 static void apbuart_rx_chars(struct uart_port
*port
)
77 unsigned int status
, ch
, rsr
, flag
;
78 unsigned int max_chars
= port
->fifosize
;
80 status
= UART_GET_STATUS(port
);
82 while (UART_RX_DATA(status
) && (max_chars
--)) {
84 ch
= UART_GET_CHAR(port
);
89 rsr
= UART_GET_STATUS(port
) | UART_DUMMY_RSR_RX
;
90 UART_PUT_STATUS(port
, 0);
91 if (rsr
& UART_STATUS_ERR
) {
93 if (rsr
& UART_STATUS_BR
) {
94 rsr
&= ~(UART_STATUS_FE
| UART_STATUS_PE
);
96 if (uart_handle_break(port
))
98 } else if (rsr
& UART_STATUS_PE
) {
99 port
->icount
.parity
++;
100 } else if (rsr
& UART_STATUS_FE
) {
101 port
->icount
.frame
++;
103 if (rsr
& UART_STATUS_OE
)
104 port
->icount
.overrun
++;
106 rsr
&= port
->read_status_mask
;
108 if (rsr
& UART_STATUS_PE
)
110 else if (rsr
& UART_STATUS_FE
)
114 if (uart_handle_sysrq_char(port
, ch
))
117 uart_insert_char(port
, rsr
, UART_STATUS_OE
, ch
, flag
);
121 status
= UART_GET_STATUS(port
);
124 spin_unlock(&port
->lock
);
125 tty_flip_buffer_push(&port
->state
->port
);
126 spin_lock(&port
->lock
);
129 static void apbuart_tx_chars(struct uart_port
*port
)
131 struct circ_buf
*xmit
= &port
->state
->xmit
;
135 UART_PUT_CHAR(port
, port
->x_char
);
141 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
142 apbuart_stop_tx(port
);
146 /* amba: fill FIFO */
147 count
= port
->fifosize
>> 1;
149 UART_PUT_CHAR(port
, xmit
->buf
[xmit
->tail
]);
150 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
152 if (uart_circ_empty(xmit
))
154 } while (--count
> 0);
156 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
157 uart_write_wakeup(port
);
159 if (uart_circ_empty(xmit
))
160 apbuart_stop_tx(port
);
163 static irqreturn_t
apbuart_int(int irq
, void *dev_id
)
165 struct uart_port
*port
= dev_id
;
168 spin_lock(&port
->lock
);
170 status
= UART_GET_STATUS(port
);
171 if (status
& UART_STATUS_DR
)
172 apbuart_rx_chars(port
);
173 if (status
& UART_STATUS_THE
)
174 apbuart_tx_chars(port
);
176 spin_unlock(&port
->lock
);
181 static unsigned int apbuart_tx_empty(struct uart_port
*port
)
183 unsigned int status
= UART_GET_STATUS(port
);
184 return status
& UART_STATUS_THE
? TIOCSER_TEMT
: 0;
187 static unsigned int apbuart_get_mctrl(struct uart_port
*port
)
189 /* The GRLIB APBUART handles flow control in hardware */
190 return TIOCM_CAR
| TIOCM_DSR
| TIOCM_CTS
;
193 static void apbuart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
195 /* The GRLIB APBUART handles flow control in hardware */
198 static void apbuart_break_ctl(struct uart_port
*port
, int break_state
)
200 /* We don't support sending break */
203 static int apbuart_startup(struct uart_port
*port
)
208 /* Allocate the IRQ */
209 retval
= request_irq(port
->irq
, apbuart_int
, 0, "apbuart", port
);
213 /* Finally, enable interrupts */
214 cr
= UART_GET_CTRL(port
);
216 cr
| UART_CTRL_RE
| UART_CTRL_TE
|
217 UART_CTRL_RI
| UART_CTRL_TI
);
222 static void apbuart_shutdown(struct uart_port
*port
)
226 /* disable all interrupts, disable the port */
227 cr
= UART_GET_CTRL(port
);
229 cr
& ~(UART_CTRL_RE
| UART_CTRL_TE
|
230 UART_CTRL_RI
| UART_CTRL_TI
));
232 /* Free the interrupt */
233 free_irq(port
->irq
, port
);
236 static void apbuart_set_termios(struct uart_port
*port
,
237 struct ktermios
*termios
, struct ktermios
*old
)
241 unsigned int baud
, quot
;
243 /* Ask the core to calculate the divisor for us. */
244 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/ 16);
246 panic("invalid baudrate %i\n", port
->uartclk
/ 16);
248 /* uart_get_divisor calc a *16 uart freq, apbuart is *8 */
249 quot
= (uart_get_divisor(port
, baud
)) * 2;
250 cr
= UART_GET_CTRL(port
);
251 cr
&= ~(UART_CTRL_PE
| UART_CTRL_PS
);
253 if (termios
->c_cflag
& PARENB
) {
255 if ((termios
->c_cflag
& PARODD
))
259 /* Enable flow control. */
260 if (termios
->c_cflag
& CRTSCTS
)
263 spin_lock_irqsave(&port
->lock
, flags
);
265 /* Update the per-port timeout. */
266 uart_update_timeout(port
, termios
->c_cflag
, baud
);
268 port
->read_status_mask
= UART_STATUS_OE
;
269 if (termios
->c_iflag
& INPCK
)
270 port
->read_status_mask
|= UART_STATUS_FE
| UART_STATUS_PE
;
272 /* Characters to ignore */
273 port
->ignore_status_mask
= 0;
274 if (termios
->c_iflag
& IGNPAR
)
275 port
->ignore_status_mask
|= UART_STATUS_FE
| UART_STATUS_PE
;
277 /* Ignore all characters if CREAD is not set. */
278 if ((termios
->c_cflag
& CREAD
) == 0)
279 port
->ignore_status_mask
|= UART_DUMMY_RSR_RX
;
283 UART_PUT_SCAL(port
, quot
);
284 UART_PUT_CTRL(port
, cr
);
286 spin_unlock_irqrestore(&port
->lock
, flags
);
289 static const char *apbuart_type(struct uart_port
*port
)
291 return port
->type
== PORT_APBUART
? "GRLIB/APBUART" : NULL
;
294 static void apbuart_release_port(struct uart_port
*port
)
296 release_mem_region(port
->mapbase
, 0x100);
299 static int apbuart_request_port(struct uart_port
*port
)
301 return request_mem_region(port
->mapbase
, 0x100, "grlib-apbuart")
302 != NULL
? 0 : -EBUSY
;
306 /* Configure/autoconfigure the port */
307 static void apbuart_config_port(struct uart_port
*port
, int flags
)
309 if (flags
& UART_CONFIG_TYPE
) {
310 port
->type
= PORT_APBUART
;
311 apbuart_request_port(port
);
315 /* Verify the new serial_struct (for TIOCSSERIAL) */
316 static int apbuart_verify_port(struct uart_port
*port
,
317 struct serial_struct
*ser
)
320 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_APBUART
)
322 if (ser
->irq
< 0 || ser
->irq
>= NR_IRQS
)
324 if (ser
->baud_base
< 9600)
329 static const struct uart_ops grlib_apbuart_ops
= {
330 .tx_empty
= apbuart_tx_empty
,
331 .set_mctrl
= apbuart_set_mctrl
,
332 .get_mctrl
= apbuart_get_mctrl
,
333 .stop_tx
= apbuart_stop_tx
,
334 .start_tx
= apbuart_start_tx
,
335 .stop_rx
= apbuart_stop_rx
,
336 .break_ctl
= apbuart_break_ctl
,
337 .startup
= apbuart_startup
,
338 .shutdown
= apbuart_shutdown
,
339 .set_termios
= apbuart_set_termios
,
340 .type
= apbuart_type
,
341 .release_port
= apbuart_release_port
,
342 .request_port
= apbuart_request_port
,
343 .config_port
= apbuart_config_port
,
344 .verify_port
= apbuart_verify_port
,
347 static struct uart_port grlib_apbuart_ports
[UART_NR
];
348 static struct device_node
*grlib_apbuart_nodes
[UART_NR
];
350 static int apbuart_scan_fifo_size(struct uart_port
*port
, int portnumber
)
357 ctrl
= UART_GET_CTRL(port
);
360 * Enable the transceiver and wait for it to be ready to send data.
361 * Clear interrupts so that this process will not be externally
362 * interrupted in the middle (which can cause the transceiver to
363 * drain prematurely).
366 local_irq_save(flags
);
368 UART_PUT_CTRL(port
, ctrl
| UART_CTRL_TE
);
370 while (!UART_TX_READY(UART_GET_STATUS(port
)))
374 * Disable the transceiver so data isn't actually sent during the
378 UART_PUT_CTRL(port
, ctrl
& ~(UART_CTRL_TE
));
381 UART_PUT_CHAR(port
, 0);
384 * So long as transmitting a character increments the tranceivier FIFO
385 * length the FIFO must be at least that big. These bytes will
386 * automatically drain off of the FIFO.
389 status
= UART_GET_STATUS(port
);
390 while (((status
>> 20) & 0x3F) == fifosize
) {
392 UART_PUT_CHAR(port
, 0);
393 status
= UART_GET_STATUS(port
);
398 UART_PUT_CTRL(port
, ctrl
);
399 local_irq_restore(flags
);
407 static void apbuart_flush_fifo(struct uart_port
*port
)
411 for (i
= 0; i
< port
->fifosize
; i
++)
416 /* ======================================================================== */
417 /* Console driver, if enabled */
418 /* ======================================================================== */
420 #ifdef CONFIG_SERIAL_GRLIB_GAISLER_APBUART_CONSOLE
422 static void apbuart_console_putchar(struct uart_port
*port
, int ch
)
426 status
= UART_GET_STATUS(port
);
427 } while (!UART_TX_READY(status
));
428 UART_PUT_CHAR(port
, ch
);
432 apbuart_console_write(struct console
*co
, const char *s
, unsigned int count
)
434 struct uart_port
*port
= &grlib_apbuart_ports
[co
->index
];
435 unsigned int status
, old_cr
, new_cr
;
437 /* First save the CR then disable the interrupts */
438 old_cr
= UART_GET_CTRL(port
);
439 new_cr
= old_cr
& ~(UART_CTRL_RI
| UART_CTRL_TI
);
440 UART_PUT_CTRL(port
, new_cr
);
442 uart_console_write(port
, s
, count
, apbuart_console_putchar
);
445 * Finally, wait for transmitter to become empty
446 * and restore the TCR
449 status
= UART_GET_STATUS(port
);
450 } while (!UART_TX_READY(status
));
451 UART_PUT_CTRL(port
, old_cr
);
455 apbuart_console_get_options(struct uart_port
*port
, int *baud
,
456 int *parity
, int *bits
)
458 if (UART_GET_CTRL(port
) & (UART_CTRL_RE
| UART_CTRL_TE
)) {
460 unsigned int quot
, status
;
461 status
= UART_GET_STATUS(port
);
464 if (status
& UART_CTRL_PE
) {
465 if ((status
& UART_CTRL_PS
) == 0)
472 quot
= UART_GET_SCAL(port
) / 8;
473 *baud
= port
->uartclk
/ (16 * (quot
+ 1));
477 static int __init
apbuart_console_setup(struct console
*co
, char *options
)
479 struct uart_port
*port
;
485 pr_debug("apbuart_console_setup co=%p, co->index=%i, options=%s\n",
486 co
, co
->index
, options
);
489 * Check whether an invalid uart number has been specified, and
490 * if so, search for the first available port that does have
493 if (co
->index
>= grlib_apbuart_port_nr
)
496 port
= &grlib_apbuart_ports
[co
->index
];
498 spin_lock_init(&port
->lock
);
501 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
503 apbuart_console_get_options(port
, &baud
, &parity
, &bits
);
505 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
508 static struct uart_driver grlib_apbuart_driver
;
510 static struct console grlib_apbuart_console
= {
512 .write
= apbuart_console_write
,
513 .device
= uart_console_device
,
514 .setup
= apbuart_console_setup
,
515 .flags
= CON_PRINTBUFFER
,
517 .data
= &grlib_apbuart_driver
,
521 static int grlib_apbuart_configure(void);
523 static int __init
apbuart_console_init(void)
525 if (grlib_apbuart_configure())
527 register_console(&grlib_apbuart_console
);
531 console_initcall(apbuart_console_init
);
533 #define APBUART_CONSOLE (&grlib_apbuart_console)
535 #define APBUART_CONSOLE NULL
538 static struct uart_driver grlib_apbuart_driver
= {
539 .owner
= THIS_MODULE
,
540 .driver_name
= "serial",
542 .major
= SERIAL_APBUART_MAJOR
,
543 .minor
= SERIAL_APBUART_MINOR
,
545 .cons
= APBUART_CONSOLE
,
549 /* ======================================================================== */
550 /* OF Platform Driver */
551 /* ======================================================================== */
553 static int apbuart_probe(struct platform_device
*op
)
556 struct uart_port
*port
= NULL
;
558 for (i
= 0; i
< grlib_apbuart_port_nr
; i
++) {
559 if (op
->dev
.of_node
== grlib_apbuart_nodes
[i
])
563 port
= &grlib_apbuart_ports
[i
];
564 port
->dev
= &op
->dev
;
565 port
->irq
= op
->archdata
.irqs
[0];
567 uart_add_one_port(&grlib_apbuart_driver
, (struct uart_port
*) port
);
569 apbuart_flush_fifo((struct uart_port
*) port
);
571 printk(KERN_INFO
"grlib-apbuart at 0x%llx, irq %d\n",
572 (unsigned long long) port
->mapbase
, port
->irq
);
576 static const struct of_device_id apbuart_match
[] = {
578 .name
= "GAISLER_APBUART",
585 MODULE_DEVICE_TABLE(of
, apbuart_match
);
587 static struct platform_driver grlib_apbuart_of_driver
= {
588 .probe
= apbuart_probe
,
590 .name
= "grlib-apbuart",
591 .of_match_table
= apbuart_match
,
596 static int __init
grlib_apbuart_configure(void)
598 struct device_node
*np
;
601 for_each_matching_node(np
, apbuart_match
) {
604 const struct amba_prom_registers
*regs
;
605 struct uart_port
*port
;
608 ampopts
= of_get_property(np
, "ampopts", NULL
);
609 if (ampopts
&& (*ampopts
== 0))
610 continue; /* Ignore if used by another OS instance */
611 regs
= of_get_property(np
, "reg", NULL
);
612 /* Frequency of APB Bus is frequency of UART */
613 freq_hz
= of_get_property(np
, "freq", NULL
);
615 if (!regs
|| !freq_hz
|| (*freq_hz
== 0))
618 grlib_apbuart_nodes
[line
] = np
;
620 addr
= regs
->phys_addr
;
622 port
= &grlib_apbuart_ports
[line
];
624 port
->mapbase
= addr
;
625 port
->membase
= ioremap(addr
, sizeof(struct grlib_apbuart_regs_map
));
627 port
->iotype
= UPIO_MEM
;
628 port
->ops
= &grlib_apbuart_ops
;
629 port
->flags
= UPF_BOOT_AUTOCONF
;
631 port
->uartclk
= *freq_hz
;
632 port
->fifosize
= apbuart_scan_fifo_size((struct uart_port
*) port
, line
);
635 /* We support maximum UART_NR uarts ... */
640 grlib_apbuart_driver
.nr
= grlib_apbuart_port_nr
= line
;
641 return line
? 0 : -ENODEV
;
644 static int __init
grlib_apbuart_init(void)
648 /* Find all APBUARTS in device the tree and initialize their ports */
649 ret
= grlib_apbuart_configure();
653 printk(KERN_INFO
"Serial: GRLIB APBUART driver\n");
655 ret
= uart_register_driver(&grlib_apbuart_driver
);
658 printk(KERN_ERR
"%s: uart_register_driver failed (%i)\n",
663 ret
= platform_driver_register(&grlib_apbuart_of_driver
);
666 "%s: platform_driver_register failed (%i)\n",
668 uart_unregister_driver(&grlib_apbuart_driver
);
675 static void __exit
grlib_apbuart_exit(void)
679 for (i
= 0; i
< grlib_apbuart_port_nr
; i
++)
680 uart_remove_one_port(&grlib_apbuart_driver
,
681 &grlib_apbuart_ports
[i
]);
683 uart_unregister_driver(&grlib_apbuart_driver
);
684 platform_driver_unregister(&grlib_apbuart_of_driver
);
687 module_init(grlib_apbuart_init
);
688 module_exit(grlib_apbuart_exit
);
690 MODULE_AUTHOR("Aeroflex Gaisler AB");
691 MODULE_DESCRIPTION("GRLIB APBUART serial driver");
692 MODULE_VERSION("2.1");
693 MODULE_LICENSE("GPL");