1 /****************************************************************************/
4 * mcf.c -- Freescale ColdFire UART driver
6 * (C) Copyright 2003-2007, Greg Ungerer <gerg@snapgear.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 /****************************************************************************/
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/interrupt.h>
19 #include <linux/module.h>
20 #include <linux/console.h>
21 #include <linux/tty.h>
22 #include <linux/tty_flip.h>
23 #include <linux/serial.h>
24 #include <linux/serial_core.h>
26 #include <asm/coldfire.h>
27 #include <asm/mcfsim.h>
28 #include <asm/mcfuart.h>
29 #include <asm/nettel.h>
31 /****************************************************************************/
34 * Some boards implement the DTR/DCD lines using GPIO lines, most
35 * don't. Dummy out the access macros for those that don't. Those
36 * that do should define these macros somewhere in there board
37 * specific inlude files.
39 #if !defined(mcf_getppdcd)
40 #define mcf_getppdcd(p) (1)
42 #if !defined(mcf_getppdtr)
43 #define mcf_getppdtr(p) (1)
45 #if !defined(mcf_setppdtr)
46 #define mcf_setppdtr(p, v) do { } while (0)
49 /****************************************************************************/
52 * Local per-uart structure.
55 struct uart_port port
;
56 unsigned int sigs
; /* Local copy of line sigs */
57 unsigned char imr
; /* Local IMR mirror */
60 /****************************************************************************/
62 static unsigned int mcf_tx_empty(struct uart_port
*port
)
64 return (readb(port
->membase
+ MCFUART_USR
) & MCFUART_USR_TXEMPTY
) ?
68 /****************************************************************************/
70 static unsigned int mcf_get_mctrl(struct uart_port
*port
)
72 struct mcf_uart
*pp
= container_of(port
, struct mcf_uart
, port
);
75 sigs
= (readb(port
->membase
+ MCFUART_UIPR
) & MCFUART_UIPR_CTS
) ?
77 sigs
|= (pp
->sigs
& TIOCM_RTS
);
78 sigs
|= (mcf_getppdcd(port
->line
) ? TIOCM_CD
: 0);
79 sigs
|= (mcf_getppdtr(port
->line
) ? TIOCM_DTR
: 0);
84 /****************************************************************************/
86 static void mcf_set_mctrl(struct uart_port
*port
, unsigned int sigs
)
88 struct mcf_uart
*pp
= container_of(port
, struct mcf_uart
, port
);
91 mcf_setppdtr(port
->line
, (sigs
& TIOCM_DTR
));
93 writeb(MCFUART_UOP_RTS
, port
->membase
+ MCFUART_UOP1
);
95 writeb(MCFUART_UOP_RTS
, port
->membase
+ MCFUART_UOP0
);
98 /****************************************************************************/
100 static void mcf_start_tx(struct uart_port
*port
)
102 struct mcf_uart
*pp
= container_of(port
, struct mcf_uart
, port
);
104 pp
->imr
|= MCFUART_UIR_TXREADY
;
105 writeb(pp
->imr
, port
->membase
+ MCFUART_UIMR
);
108 /****************************************************************************/
110 static void mcf_stop_tx(struct uart_port
*port
)
112 struct mcf_uart
*pp
= container_of(port
, struct mcf_uart
, port
);
114 pp
->imr
&= ~MCFUART_UIR_TXREADY
;
115 writeb(pp
->imr
, port
->membase
+ MCFUART_UIMR
);
118 /****************************************************************************/
120 static void mcf_stop_rx(struct uart_port
*port
)
122 struct mcf_uart
*pp
= container_of(port
, struct mcf_uart
, port
);
124 pp
->imr
&= ~MCFUART_UIR_RXREADY
;
125 writeb(pp
->imr
, port
->membase
+ MCFUART_UIMR
);
128 /****************************************************************************/
130 static void mcf_break_ctl(struct uart_port
*port
, int break_state
)
134 spin_lock_irqsave(&port
->lock
, flags
);
135 if (break_state
== -1)
136 writeb(MCFUART_UCR_CMDBREAKSTART
, port
->membase
+ MCFUART_UCR
);
138 writeb(MCFUART_UCR_CMDBREAKSTOP
, port
->membase
+ MCFUART_UCR
);
139 spin_unlock_irqrestore(&port
->lock
, flags
);
142 /****************************************************************************/
144 static void mcf_enable_ms(struct uart_port
*port
)
148 /****************************************************************************/
150 static int mcf_startup(struct uart_port
*port
)
152 struct mcf_uart
*pp
= container_of(port
, struct mcf_uart
, port
);
155 spin_lock_irqsave(&port
->lock
, flags
);
157 /* Reset UART, get it into known state... */
158 writeb(MCFUART_UCR_CMDRESETRX
, port
->membase
+ MCFUART_UCR
);
159 writeb(MCFUART_UCR_CMDRESETTX
, port
->membase
+ MCFUART_UCR
);
161 /* Enable the UART transmitter and receiver */
162 writeb(MCFUART_UCR_RXENABLE
| MCFUART_UCR_TXENABLE
,
163 port
->membase
+ MCFUART_UCR
);
165 /* Enable RX interrupts now */
166 pp
->imr
= MCFUART_UIR_RXREADY
;
167 writeb(pp
->imr
, port
->membase
+ MCFUART_UIMR
);
169 spin_unlock_irqrestore(&port
->lock
, flags
);
174 /****************************************************************************/
176 static void mcf_shutdown(struct uart_port
*port
)
178 struct mcf_uart
*pp
= container_of(port
, struct mcf_uart
, port
);
181 spin_lock_irqsave(&port
->lock
, flags
);
183 /* Disable all interrupts now */
185 writeb(pp
->imr
, port
->membase
+ MCFUART_UIMR
);
187 /* Disable UART transmitter and receiver */
188 writeb(MCFUART_UCR_CMDRESETRX
, port
->membase
+ MCFUART_UCR
);
189 writeb(MCFUART_UCR_CMDRESETTX
, port
->membase
+ MCFUART_UCR
);
191 spin_unlock_irqrestore(&port
->lock
, flags
);
194 /****************************************************************************/
196 static void mcf_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
197 struct ktermios
*old
)
200 unsigned int baud
, baudclk
;
201 #if defined(CONFIG_M5272)
204 unsigned char mr1
, mr2
;
206 baud
= uart_get_baud_rate(port
, termios
, old
, 0, 230400);
207 #if defined(CONFIG_M5272)
208 baudclk
= (MCF_BUSCLK
/ baud
) / 32;
209 baudfr
= (((MCF_BUSCLK
/ baud
) + 1) / 2) % 16;
211 baudclk
= ((MCF_BUSCLK
/ baud
) + 16) / 32;
214 mr1
= MCFUART_MR1_RXIRQRDY
| MCFUART_MR1_RXERRCHAR
;
217 switch (termios
->c_cflag
& CSIZE
) {
218 case CS5
: mr1
|= MCFUART_MR1_CS5
; break;
219 case CS6
: mr1
|= MCFUART_MR1_CS6
; break;
220 case CS7
: mr1
|= MCFUART_MR1_CS7
; break;
222 default: mr1
|= MCFUART_MR1_CS8
; break;
225 if (termios
->c_cflag
& PARENB
) {
226 if (termios
->c_cflag
& CMSPAR
) {
227 if (termios
->c_cflag
& PARODD
)
228 mr1
|= MCFUART_MR1_PARITYMARK
;
230 mr1
|= MCFUART_MR1_PARITYSPACE
;
232 if (termios
->c_cflag
& PARODD
)
233 mr1
|= MCFUART_MR1_PARITYODD
;
235 mr1
|= MCFUART_MR1_PARITYEVEN
;
238 mr1
|= MCFUART_MR1_PARITYNONE
;
241 if (termios
->c_cflag
& CSTOPB
)
242 mr2
|= MCFUART_MR2_STOP2
;
244 mr2
|= MCFUART_MR2_STOP1
;
246 if (termios
->c_cflag
& CRTSCTS
) {
247 mr1
|= MCFUART_MR1_RXRTS
;
248 mr2
|= MCFUART_MR2_TXCTS
;
251 spin_lock_irqsave(&port
->lock
, flags
);
252 uart_update_timeout(port
, termios
->c_cflag
, baud
);
253 writeb(MCFUART_UCR_CMDRESETRX
, port
->membase
+ MCFUART_UCR
);
254 writeb(MCFUART_UCR_CMDRESETTX
, port
->membase
+ MCFUART_UCR
);
255 writeb(MCFUART_UCR_CMDRESETMRPTR
, port
->membase
+ MCFUART_UCR
);
256 writeb(mr1
, port
->membase
+ MCFUART_UMR
);
257 writeb(mr2
, port
->membase
+ MCFUART_UMR
);
258 writeb((baudclk
& 0xff00) >> 8, port
->membase
+ MCFUART_UBG1
);
259 writeb((baudclk
& 0xff), port
->membase
+ MCFUART_UBG2
);
260 #if defined(CONFIG_M5272)
261 writeb((baudfr
& 0x0f), port
->membase
+ MCFUART_UFPD
);
263 writeb(MCFUART_UCSR_RXCLKTIMER
| MCFUART_UCSR_TXCLKTIMER
,
264 port
->membase
+ MCFUART_UCSR
);
265 writeb(MCFUART_UCR_RXENABLE
| MCFUART_UCR_TXENABLE
,
266 port
->membase
+ MCFUART_UCR
);
267 spin_unlock_irqrestore(&port
->lock
, flags
);
270 /****************************************************************************/
272 static void mcf_rx_chars(struct mcf_uart
*pp
)
274 struct uart_port
*port
= &pp
->port
;
275 unsigned char status
, ch
, flag
;
277 while ((status
= readb(port
->membase
+ MCFUART_USR
)) & MCFUART_USR_RXREADY
) {
278 ch
= readb(port
->membase
+ MCFUART_URB
);
282 if (status
& MCFUART_USR_RXERR
) {
283 writeb(MCFUART_UCR_CMDRESETERR
,
284 port
->membase
+ MCFUART_UCR
);
286 if (status
& MCFUART_USR_RXBREAK
) {
288 if (uart_handle_break(port
))
290 } else if (status
& MCFUART_USR_RXPARITY
) {
291 port
->icount
.parity
++;
292 } else if (status
& MCFUART_USR_RXOVERRUN
) {
293 port
->icount
.overrun
++;
294 } else if (status
& MCFUART_USR_RXFRAMING
) {
295 port
->icount
.frame
++;
298 status
&= port
->read_status_mask
;
300 if (status
& MCFUART_USR_RXBREAK
)
302 else if (status
& MCFUART_USR_RXPARITY
)
304 else if (status
& MCFUART_USR_RXFRAMING
)
308 if (uart_handle_sysrq_char(port
, ch
))
310 uart_insert_char(port
, status
, MCFUART_USR_RXOVERRUN
, ch
, flag
);
313 tty_flip_buffer_push(port
->state
->port
.tty
);
316 /****************************************************************************/
318 static void mcf_tx_chars(struct mcf_uart
*pp
)
320 struct uart_port
*port
= &pp
->port
;
321 struct circ_buf
*xmit
= &port
->state
->xmit
;
324 /* Send special char - probably flow control */
325 writeb(port
->x_char
, port
->membase
+ MCFUART_UTB
);
331 while (readb(port
->membase
+ MCFUART_USR
) & MCFUART_USR_TXREADY
) {
332 if (xmit
->head
== xmit
->tail
)
334 writeb(xmit
->buf
[xmit
->tail
], port
->membase
+ MCFUART_UTB
);
335 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
-1);
339 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
340 uart_write_wakeup(port
);
342 if (xmit
->head
== xmit
->tail
) {
343 pp
->imr
&= ~MCFUART_UIR_TXREADY
;
344 writeb(pp
->imr
, port
->membase
+ MCFUART_UIMR
);
348 /****************************************************************************/
350 static irqreturn_t
mcf_interrupt(int irq
, void *data
)
352 struct uart_port
*port
= data
;
353 struct mcf_uart
*pp
= container_of(port
, struct mcf_uart
, port
);
355 irqreturn_t ret
= IRQ_NONE
;
357 isr
= readb(port
->membase
+ MCFUART_UISR
) & pp
->imr
;
359 spin_lock(&port
->lock
);
360 if (isr
& MCFUART_UIR_RXREADY
) {
364 if (isr
& MCFUART_UIR_TXREADY
) {
368 spin_unlock(&port
->lock
);
373 /****************************************************************************/
375 static void mcf_config_port(struct uart_port
*port
, int flags
)
377 port
->type
= PORT_MCF
;
378 port
->fifosize
= MCFUART_TXFIFOSIZE
;
380 /* Clear mask, so no surprise interrupts. */
381 writeb(0, port
->membase
+ MCFUART_UIMR
);
383 if (request_irq(port
->irq
, mcf_interrupt
, IRQF_DISABLED
, "UART", port
))
384 printk(KERN_ERR
"MCF: unable to attach ColdFire UART %d "
385 "interrupt vector=%d\n", port
->line
, port
->irq
);
388 /****************************************************************************/
390 static const char *mcf_type(struct uart_port
*port
)
392 return (port
->type
== PORT_MCF
) ? "ColdFire UART" : NULL
;
395 /****************************************************************************/
397 static int mcf_request_port(struct uart_port
*port
)
399 /* UARTs always present */
403 /****************************************************************************/
405 static void mcf_release_port(struct uart_port
*port
)
407 /* Nothing to release... */
410 /****************************************************************************/
412 static int mcf_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
414 if ((ser
->type
!= PORT_UNKNOWN
) && (ser
->type
!= PORT_MCF
))
419 /****************************************************************************/
422 * Define the basic serial functions we support.
424 static const struct uart_ops mcf_uart_ops
= {
425 .tx_empty
= mcf_tx_empty
,
426 .get_mctrl
= mcf_get_mctrl
,
427 .set_mctrl
= mcf_set_mctrl
,
428 .start_tx
= mcf_start_tx
,
429 .stop_tx
= mcf_stop_tx
,
430 .stop_rx
= mcf_stop_rx
,
431 .enable_ms
= mcf_enable_ms
,
432 .break_ctl
= mcf_break_ctl
,
433 .startup
= mcf_startup
,
434 .shutdown
= mcf_shutdown
,
435 .set_termios
= mcf_set_termios
,
437 .request_port
= mcf_request_port
,
438 .release_port
= mcf_release_port
,
439 .config_port
= mcf_config_port
,
440 .verify_port
= mcf_verify_port
,
443 static struct mcf_uart mcf_ports
[4];
445 #define MCF_MAXPORTS ARRAY_SIZE(mcf_ports)
447 /****************************************************************************/
448 #if defined(CONFIG_SERIAL_MCF_CONSOLE)
449 /****************************************************************************/
451 int __init
early_mcf_setup(struct mcf_platform_uart
*platp
)
453 struct uart_port
*port
;
456 for (i
= 0; ((i
< MCF_MAXPORTS
) && (platp
[i
].mapbase
)); i
++) {
457 port
= &mcf_ports
[i
].port
;
460 port
->type
= PORT_MCF
;
461 port
->mapbase
= platp
[i
].mapbase
;
462 port
->membase
= (platp
[i
].membase
) ? platp
[i
].membase
:
463 (unsigned char __iomem
*) port
->mapbase
;
464 port
->iotype
= SERIAL_IO_MEM
;
465 port
->irq
= platp
[i
].irq
;
466 port
->uartclk
= MCF_BUSCLK
;
467 port
->flags
= ASYNC_BOOT_AUTOCONF
;
468 port
->ops
= &mcf_uart_ops
;
474 /****************************************************************************/
476 static void mcf_console_putc(struct console
*co
, const char c
)
478 struct uart_port
*port
= &(mcf_ports
+ co
->index
)->port
;
481 for (i
= 0; (i
< 0x10000); i
++) {
482 if (readb(port
->membase
+ MCFUART_USR
) & MCFUART_USR_TXREADY
)
485 writeb(c
, port
->membase
+ MCFUART_UTB
);
486 for (i
= 0; (i
< 0x10000); i
++) {
487 if (readb(port
->membase
+ MCFUART_USR
) & MCFUART_USR_TXREADY
)
492 /****************************************************************************/
494 static void mcf_console_write(struct console
*co
, const char *s
, unsigned int count
)
496 for (; (count
); count
--, s
++) {
497 mcf_console_putc(co
, *s
);
499 mcf_console_putc(co
, '\r');
503 /****************************************************************************/
505 static int __init
mcf_console_setup(struct console
*co
, char *options
)
507 struct uart_port
*port
;
508 int baud
= CONFIG_SERIAL_MCF_BAUDRATE
;
513 if ((co
->index
< 0) || (co
->index
>= MCF_MAXPORTS
))
515 port
= &mcf_ports
[co
->index
].port
;
516 if (port
->membase
== 0)
520 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
522 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
525 /****************************************************************************/
527 static struct uart_driver mcf_driver
;
529 static struct console mcf_console
= {
531 .write
= mcf_console_write
,
532 .device
= uart_console_device
,
533 .setup
= mcf_console_setup
,
534 .flags
= CON_PRINTBUFFER
,
539 static int __init
mcf_console_init(void)
541 register_console(&mcf_console
);
545 console_initcall(mcf_console_init
);
547 #define MCF_CONSOLE &mcf_console
549 /****************************************************************************/
551 /****************************************************************************/
553 #define MCF_CONSOLE NULL
555 /****************************************************************************/
556 #endif /* CONFIG_MCF_CONSOLE */
557 /****************************************************************************/
560 * Define the mcf UART driver structure.
562 static struct uart_driver mcf_driver
= {
563 .owner
= THIS_MODULE
,
564 .driver_name
= "mcf",
572 /****************************************************************************/
574 static int __devinit
mcf_probe(struct platform_device
*pdev
)
576 struct mcf_platform_uart
*platp
= pdev
->dev
.platform_data
;
577 struct uart_port
*port
;
580 for (i
= 0; ((i
< MCF_MAXPORTS
) && (platp
[i
].mapbase
)); i
++) {
581 port
= &mcf_ports
[i
].port
;
584 port
->type
= PORT_MCF
;
585 port
->mapbase
= platp
[i
].mapbase
;
586 port
->membase
= (platp
[i
].membase
) ? platp
[i
].membase
:
587 (unsigned char __iomem
*) platp
[i
].mapbase
;
588 port
->iotype
= SERIAL_IO_MEM
;
589 port
->irq
= platp
[i
].irq
;
590 port
->uartclk
= MCF_BUSCLK
;
591 port
->ops
= &mcf_uart_ops
;
592 port
->flags
= ASYNC_BOOT_AUTOCONF
;
594 uart_add_one_port(&mcf_driver
, port
);
600 /****************************************************************************/
602 static int __devexit
mcf_remove(struct platform_device
*pdev
)
604 struct uart_port
*port
;
607 for (i
= 0; (i
< MCF_MAXPORTS
); i
++) {
608 port
= &mcf_ports
[i
].port
;
610 uart_remove_one_port(&mcf_driver
, port
);
616 /****************************************************************************/
618 static struct platform_driver mcf_platform_driver
= {
620 .remove
= __devexit_p(mcf_remove
),
623 .owner
= THIS_MODULE
,
627 /****************************************************************************/
629 static int __init
mcf_init(void)
633 printk("ColdFire internal UART serial driver\n");
635 rc
= uart_register_driver(&mcf_driver
);
638 rc
= platform_driver_register(&mcf_platform_driver
);
644 /****************************************************************************/
646 static void __exit
mcf_exit(void)
648 platform_driver_unregister(&mcf_platform_driver
);
649 uart_unregister_driver(&mcf_driver
);
652 /****************************************************************************/
654 module_init(mcf_init
);
655 module_exit(mcf_exit
);
657 MODULE_AUTHOR("Greg Ungerer <gerg@snapgear.com>");
658 MODULE_DESCRIPTION("Freescale ColdFire UART driver");
659 MODULE_LICENSE("GPL");
660 MODULE_ALIAS("platform:mcfuart");
662 /****************************************************************************/