1 // SPDX-License-Identifier: GPL-2.0+
2 /****************************************************************************/
5 * mcf.c -- Freescale ColdFire UART driver
10 /****************************************************************************/
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
15 #include <linux/module.h>
16 #include <linux/console.h>
17 #include <linux/tty.h>
18 #include <linux/tty_flip.h>
19 #include <linux/serial.h>
20 #include <linux/serial_core.h>
22 #include <linux/uaccess.h>
23 #include <linux/platform_device.h>
24 #include <asm/coldfire.h>
25 #include <asm/mcfsim.h>
26 #include <asm/mcfuart.h>
27 #include <asm/nettel.h>
29 /****************************************************************************/
32 * Some boards implement the DTR/DCD lines using GPIO lines, most
33 * don't. Dummy out the access macros for those that don't. Those
34 * that do should define these macros somewhere in there board
35 * specific inlude files.
37 #if !defined(mcf_getppdcd)
38 #define mcf_getppdcd(p) (1)
40 #if !defined(mcf_getppdtr)
41 #define mcf_getppdtr(p) (1)
43 #if !defined(mcf_setppdtr)
44 #define mcf_setppdtr(p, v) do { } while (0)
47 /****************************************************************************/
50 * Local per-uart structure.
53 struct uart_port port;
54 unsigned int sigs; /* Local copy of line sigs */
55 unsigned char imr; /* Local IMR mirror */
58 /****************************************************************************/
60 static unsigned int mcf_tx_empty(struct uart_port *port)
62 return (readb(port->membase + MCFUART_USR) & MCFUART_USR_TXEMPTY) ?
66 /****************************************************************************/
68 static unsigned int mcf_get_mctrl(struct uart_port *port)
70 struct mcf_uart *pp = container_of(port, struct mcf_uart, port);
73 sigs = (readb(port->membase + MCFUART_UIPR) & MCFUART_UIPR_CTS) ?
75 sigs |= (pp->sigs & TIOCM_RTS);
76 sigs |= (mcf_getppdcd(port->line) ? TIOCM_CD : 0);
77 sigs |= (mcf_getppdtr(port->line) ? TIOCM_DTR : 0);
82 /****************************************************************************/
84 static void mcf_set_mctrl(struct uart_port *port, unsigned int sigs)
86 struct mcf_uart *pp = container_of(port, struct mcf_uart, port);
89 mcf_setppdtr(port->line, (sigs & TIOCM_DTR));
91 writeb(MCFUART_UOP_RTS, port->membase + MCFUART_UOP1);
93 writeb(MCFUART_UOP_RTS, port->membase + MCFUART_UOP0);
96 /****************************************************************************/
98 static void mcf_start_tx(struct uart_port *port)
100 struct mcf_uart *pp = container_of(port, struct mcf_uart, port);
102 if (port->rs485.flags & SER_RS485_ENABLED) {
103 /* Enable Transmitter */
104 writeb(MCFUART_UCR_TXENABLE, port->membase + MCFUART_UCR);
105 /* Manually assert RTS */
106 writeb(MCFUART_UOP_RTS, port->membase + MCFUART_UOP1);
108 pp->imr |= MCFUART_UIR_TXREADY;
109 writeb(pp->imr, port->membase + MCFUART_UIMR);
112 /****************************************************************************/
114 static void mcf_stop_tx(struct uart_port *port)
116 struct mcf_uart *pp = container_of(port, struct mcf_uart, port);
118 pp->imr &= ~MCFUART_UIR_TXREADY;
119 writeb(pp->imr, port->membase + MCFUART_UIMR);
122 /****************************************************************************/
124 static void mcf_stop_rx(struct uart_port *port)
126 struct mcf_uart *pp = container_of(port, struct mcf_uart, port);
128 pp->imr &= ~MCFUART_UIR_RXREADY;
129 writeb(pp->imr, port->membase + MCFUART_UIMR);
132 /****************************************************************************/
134 static void mcf_break_ctl(struct uart_port *port, int break_state)
138 spin_lock_irqsave(&port->lock, flags);
139 if (break_state == -1)
140 writeb(MCFUART_UCR_CMDBREAKSTART, port->membase + MCFUART_UCR);
142 writeb(MCFUART_UCR_CMDBREAKSTOP, port->membase + MCFUART_UCR);
143 spin_unlock_irqrestore(&port->lock, flags);
146 /****************************************************************************/
148 static int mcf_startup(struct uart_port *port)
150 struct mcf_uart *pp = container_of(port, struct mcf_uart, port);
153 spin_lock_irqsave(&port->lock, flags);
155 /* Reset UART, get it into known state... */
156 writeb(MCFUART_UCR_CMDRESETRX, port->membase + MCFUART_UCR);
157 writeb(MCFUART_UCR_CMDRESETTX, port->membase + MCFUART_UCR);
159 /* Enable the UART transmitter and receiver */
160 writeb(MCFUART_UCR_RXENABLE | MCFUART_UCR_TXENABLE,
161 port->membase + MCFUART_UCR);
163 /* Enable RX interrupts now */
164 pp->imr = MCFUART_UIR_RXREADY;
165 writeb(pp->imr, port->membase + MCFUART_UIMR);
167 spin_unlock_irqrestore(&port->lock, flags);
172 /****************************************************************************/
174 static void mcf_shutdown(struct uart_port *port)
176 struct mcf_uart *pp = container_of(port, struct mcf_uart, port);
179 spin_lock_irqsave(&port->lock, flags);
181 /* Disable all interrupts now */
183 writeb(pp->imr, port->membase + MCFUART_UIMR);
185 /* Disable UART transmitter and receiver */
186 writeb(MCFUART_UCR_CMDRESETRX, port->membase + MCFUART_UCR);
187 writeb(MCFUART_UCR_CMDRESETTX, port->membase + MCFUART_UCR);
189 spin_unlock_irqrestore(&port->lock, flags);
192 /****************************************************************************/
194 static void mcf_set_termios(struct uart_port *port, struct ktermios *termios,
195 struct ktermios *old)
198 unsigned int baud, baudclk;
199 #if defined(CONFIG_M5272)
202 unsigned char mr1, mr2;
204 baud = uart_get_baud_rate(port, termios, old, 0, 230400);
205 #if defined(CONFIG_M5272)
206 baudclk = (MCF_BUSCLK / baud) / 32;
207 baudfr = (((MCF_BUSCLK / baud) + 1) / 2) % 16;
209 baudclk = ((MCF_BUSCLK / baud) + 16) / 32;
212 mr1 = MCFUART_MR1_RXIRQRDY | MCFUART_MR1_RXERRCHAR;
215 switch (termios->c_cflag & CSIZE) {
216 case CS5: mr1 |= MCFUART_MR1_CS5; break;
217 case CS6: mr1 |= MCFUART_MR1_CS6; break;
218 case CS7: mr1 |= MCFUART_MR1_CS7; break;
220 default: mr1 |= MCFUART_MR1_CS8; break;
223 if (termios->c_cflag & PARENB) {
224 if (termios->c_cflag & CMSPAR) {
225 if (termios->c_cflag & PARODD)
226 mr1 |= MCFUART_MR1_PARITYMARK;
228 mr1 |= MCFUART_MR1_PARITYSPACE;
230 if (termios->c_cflag & PARODD)
231 mr1 |= MCFUART_MR1_PARITYODD;
233 mr1 |= MCFUART_MR1_PARITYEVEN;
236 mr1 |= MCFUART_MR1_PARITYNONE;
240 * FIXME: port->read_status_mask and port->ignore_status_mask
241 * need to be initialized based on termios settings for
242 * INPCK, IGNBRK, IGNPAR, PARMRK, BRKINT
245 if (termios->c_cflag & CSTOPB)
246 mr2 |= MCFUART_MR2_STOP2;
248 mr2 |= MCFUART_MR2_STOP1;
250 if (termios->c_cflag & CRTSCTS) {
251 mr1 |= MCFUART_MR1_RXRTS;
252 mr2 |= MCFUART_MR2_TXCTS;
255 spin_lock_irqsave(&port->lock, flags);
256 if (port->rs485.flags & SER_RS485_ENABLED) {
257 dev_dbg(port->dev, "Setting UART to RS485\n");
258 mr2 |= MCFUART_MR2_TXRTS;
261 uart_update_timeout(port, termios->c_cflag, baud);
262 writeb(MCFUART_UCR_CMDRESETRX, port->membase + MCFUART_UCR);
263 writeb(MCFUART_UCR_CMDRESETTX, port->membase + MCFUART_UCR);
264 writeb(MCFUART_UCR_CMDRESETMRPTR, port->membase + MCFUART_UCR);
265 writeb(mr1, port->membase + MCFUART_UMR);
266 writeb(mr2, port->membase + MCFUART_UMR);
267 writeb((baudclk & 0xff00) >> 8, port->membase + MCFUART_UBG1);
268 writeb((baudclk & 0xff), port->membase + MCFUART_UBG2);
269 #if defined(CONFIG_M5272)
270 writeb((baudfr & 0x0f), port->membase + MCFUART_UFPD);
272 writeb(MCFUART_UCSR_RXCLKTIMER | MCFUART_UCSR_TXCLKTIMER,
273 port->membase + MCFUART_UCSR);
274 writeb(MCFUART_UCR_RXENABLE | MCFUART_UCR_TXENABLE,
275 port->membase + MCFUART_UCR);
276 spin_unlock_irqrestore(&port->lock, flags);
279 /****************************************************************************/
281 static void mcf_rx_chars(struct mcf_uart *pp)
283 struct uart_port *port = &pp->port;
284 unsigned char status, ch, flag;
286 while ((status = readb(port->membase + MCFUART_USR)) & MCFUART_USR_RXREADY) {
287 ch = readb(port->membase + MCFUART_URB);
291 if (status & MCFUART_USR_RXERR) {
292 writeb(MCFUART_UCR_CMDRESETERR,
293 port->membase + MCFUART_UCR);
295 if (status & MCFUART_USR_RXBREAK) {
297 if (uart_handle_break(port))
299 } else if (status & MCFUART_USR_RXPARITY) {
300 port->icount.parity++;
301 } else if (status & MCFUART_USR_RXOVERRUN) {
302 port->icount.overrun++;
303 } else if (status & MCFUART_USR_RXFRAMING) {
304 port->icount.frame++;
307 status &= port->read_status_mask;
309 if (status & MCFUART_USR_RXBREAK)
311 else if (status & MCFUART_USR_RXPARITY)
313 else if (status & MCFUART_USR_RXFRAMING)
317 if (uart_handle_sysrq_char(port, ch))
319 uart_insert_char(port, status, MCFUART_USR_RXOVERRUN, ch, flag);
322 tty_flip_buffer_push(&port->state->port);
325 /****************************************************************************/
327 static void mcf_tx_chars(struct mcf_uart *pp)
329 struct uart_port *port = &pp->port;
330 struct circ_buf *xmit = &port->state->xmit;
333 /* Send special char - probably flow control */
334 writeb(port->x_char, port->membase + MCFUART_UTB);
340 while (readb(port->membase + MCFUART_USR) & MCFUART_USR_TXREADY) {
341 if (xmit->head == xmit->tail)
343 writeb(xmit->buf[xmit->tail], port->membase + MCFUART_UTB);
344 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE -1);
348 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
349 uart_write_wakeup(port);
351 if (xmit->head == xmit->tail) {
352 pp->imr &= ~MCFUART_UIR_TXREADY;
353 writeb(pp->imr, port->membase + MCFUART_UIMR);
354 /* Disable TX to negate RTS automatically */
355 if (port->rs485.flags & SER_RS485_ENABLED)
356 writeb(MCFUART_UCR_TXDISABLE,
357 port->membase + MCFUART_UCR);
361 /****************************************************************************/
363 static irqreturn_t mcf_interrupt(int irq, void *data)
365 struct uart_port *port = data;
366 struct mcf_uart *pp = container_of(port, struct mcf_uart, port);
368 irqreturn_t ret = IRQ_NONE;
370 isr = readb(port->membase + MCFUART_UISR) & pp->imr;
372 spin_lock(&port->lock);
373 if (isr & MCFUART_UIR_RXREADY) {
377 if (isr & MCFUART_UIR_TXREADY) {
381 spin_unlock(&port->lock);
386 /****************************************************************************/
388 static void mcf_config_port(struct uart_port *port, int flags)
390 port->type = PORT_MCF;
391 port->fifosize = MCFUART_TXFIFOSIZE;
393 /* Clear mask, so no surprise interrupts. */
394 writeb(0, port->membase + MCFUART_UIMR);
396 if (request_irq(port->irq, mcf_interrupt, 0, "UART", port))
397 printk(KERN_ERR "MCF: unable to attach ColdFire UART %d "
398 "interrupt vector=%d\n", port->line, port->irq);
401 /****************************************************************************/
403 static const char *mcf_type(struct uart_port *port)
405 return (port->type == PORT_MCF) ? "ColdFire UART" : NULL;
408 /****************************************************************************/
410 static int mcf_request_port(struct uart_port *port)
412 /* UARTs always present */
416 /****************************************************************************/
418 static void mcf_release_port(struct uart_port *port)
420 /* Nothing to release... */
423 /****************************************************************************/
425 static int mcf_verify_port(struct uart_port *port, struct serial_struct *ser)
427 if ((ser->type != PORT_UNKNOWN) && (ser->type != PORT_MCF))
432 /****************************************************************************/
434 /* Enable or disable the RS485 support */
435 static int mcf_config_rs485(struct uart_port *port, struct serial_rs485 *rs485)
437 unsigned char mr1, mr2;
439 /* Get mode registers */
440 mr1 = readb(port->membase + MCFUART_UMR);
441 mr2 = readb(port->membase + MCFUART_UMR);
442 if (rs485->flags & SER_RS485_ENABLED) {
443 dev_dbg(port->dev, "Setting UART to RS485\n");
444 /* Automatically negate RTS after TX completes */
445 mr2 |= MCFUART_MR2_TXRTS;
447 dev_dbg(port->dev, "Setting UART to RS232\n");
448 mr2 &= ~MCFUART_MR2_TXRTS;
450 writeb(mr1, port->membase + MCFUART_UMR);
451 writeb(mr2, port->membase + MCFUART_UMR);
452 port->rs485 = *rs485;
457 /****************************************************************************/
460 * Define the basic serial functions we support.
462 static const struct uart_ops mcf_uart_ops = {
463 .tx_empty = mcf_tx_empty,
464 .get_mctrl = mcf_get_mctrl,
465 .set_mctrl = mcf_set_mctrl,
466 .start_tx = mcf_start_tx,
467 .stop_tx = mcf_stop_tx,
468 .stop_rx = mcf_stop_rx,
469 .break_ctl = mcf_break_ctl,
470 .startup = mcf_startup,
471 .shutdown = mcf_shutdown,
472 .set_termios = mcf_set_termios,
474 .request_port = mcf_request_port,
475 .release_port = mcf_release_port,
476 .config_port = mcf_config_port,
477 .verify_port = mcf_verify_port,
480 static struct mcf_uart mcf_ports[4];
482 #define MCF_MAXPORTS ARRAY_SIZE(mcf_ports)
484 /****************************************************************************/
485 #if defined(CONFIG_SERIAL_MCF_CONSOLE)
486 /****************************************************************************/
488 int __init early_mcf_setup(struct mcf_platform_uart *platp)
490 struct uart_port *port;
493 for (i = 0; ((i < MCF_MAXPORTS) && (platp[i].mapbase)); i++) {
494 port = &mcf_ports[i].port;
497 port->type = PORT_MCF;
498 port->mapbase = platp[i].mapbase;
499 port->membase = (platp[i].membase) ? platp[i].membase :
500 (unsigned char __iomem *) port->mapbase;
501 port->iotype = SERIAL_IO_MEM;
502 port->irq = platp[i].irq;
503 port->uartclk = MCF_BUSCLK;
504 port->flags = UPF_BOOT_AUTOCONF;
505 port->rs485_config = mcf_config_rs485;
506 port->ops = &mcf_uart_ops;
512 /****************************************************************************/
514 static void mcf_console_putc(struct console *co, const char c)
516 struct uart_port *port = &(mcf_ports + co->index)->port;
519 for (i = 0; (i < 0x10000); i++) {
520 if (readb(port->membase + MCFUART_USR) & MCFUART_USR_TXREADY)
523 writeb(c, port->membase + MCFUART_UTB);
524 for (i = 0; (i < 0x10000); i++) {
525 if (readb(port->membase + MCFUART_USR) & MCFUART_USR_TXREADY)
530 /****************************************************************************/
532 static void mcf_console_write(struct console *co, const char *s, unsigned int count)
534 for (; (count); count--, s++) {
535 mcf_console_putc(co, *s);
537 mcf_console_putc(co, '\r');
541 /****************************************************************************/
543 static int __init mcf_console_setup(struct console *co, char *options)
545 struct uart_port *port;
546 int baud = CONFIG_SERIAL_MCF_BAUDRATE;
551 if ((co->index < 0) || (co->index >= MCF_MAXPORTS))
553 port = &mcf_ports[co->index].port;
554 if (port->membase == 0)
558 uart_parse_options(options, &baud, &parity, &bits, &flow);
560 return uart_set_options(port, co, baud, parity, bits, flow);
563 /****************************************************************************/
565 static struct uart_driver mcf_driver;
567 static struct console mcf_console = {
569 .write = mcf_console_write,
570 .device = uart_console_device,
571 .setup = mcf_console_setup,
572 .flags = CON_PRINTBUFFER,
577 static int __init mcf_console_init(void)
579 register_console(&mcf_console);
583 console_initcall(mcf_console_init);
585 #define MCF_CONSOLE &mcf_console
587 /****************************************************************************/
589 /****************************************************************************/
591 #define MCF_CONSOLE NULL
593 /****************************************************************************/
594 #endif /* CONFIG_SERIAL_MCF_CONSOLE */
595 /****************************************************************************/
598 * Define the mcf UART driver structure.
600 static struct uart_driver mcf_driver = {
601 .owner = THIS_MODULE,
602 .driver_name = "mcf",
610 /****************************************************************************/
612 static int mcf_probe(struct platform_device *pdev)
614 struct mcf_platform_uart *platp = dev_get_platdata(&pdev->dev);
615 struct uart_port *port;
618 for (i = 0; ((i < MCF_MAXPORTS) && (platp[i].mapbase)); i++) {
619 port = &mcf_ports[i].port;
622 port->type = PORT_MCF;
623 port->mapbase = platp[i].mapbase;
624 port->membase = (platp[i].membase) ? platp[i].membase :
625 (unsigned char __iomem *) platp[i].mapbase;
626 port->dev = &pdev->dev;
627 port->iotype = SERIAL_IO_MEM;
628 port->irq = platp[i].irq;
629 port->uartclk = MCF_BUSCLK;
630 port->ops = &mcf_uart_ops;
631 port->flags = UPF_BOOT_AUTOCONF;
632 port->rs485_config = mcf_config_rs485;
633 port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_MCF_CONSOLE);
635 uart_add_one_port(&mcf_driver, port);
641 /****************************************************************************/
643 static int mcf_remove(struct platform_device *pdev)
645 struct uart_port *port;
648 for (i = 0; (i < MCF_MAXPORTS); i++) {
649 port = &mcf_ports[i].port;
651 uart_remove_one_port(&mcf_driver, port);
657 /****************************************************************************/
659 static struct platform_driver mcf_platform_driver = {
661 .remove = mcf_remove,
667 /****************************************************************************/
669 static int __init mcf_init(void)
673 printk("ColdFire internal UART serial driver\n");
675 rc = uart_register_driver(&mcf_driver);
678 rc = platform_driver_register(&mcf_platform_driver);
680 uart_unregister_driver(&mcf_driver);
686 /****************************************************************************/
688 static void __exit mcf_exit(void)
690 platform_driver_unregister(&mcf_platform_driver);
691 uart_unregister_driver(&mcf_driver);
694 /****************************************************************************/
696 module_init(mcf_init);
697 module_exit(mcf_exit);
700 MODULE_DESCRIPTION("Freescale ColdFire UART driver");
701 MODULE_LICENSE("GPL");
702 MODULE_ALIAS("platform:mcfuart");
704 /****************************************************************************/