2 * uartlite.c: Serial driver for Xilinx uartlite serial controller
4 * Copyright (C) 2006 Peter Korsgaard <jacmet@sunsite.dk>
5 * Copyright (C) 2007 Secret Lab Technologies Ltd.
7 * This file is licensed under the terms of the GNU General Public License
8 * version 2. This program is licensed "as is" without any warranty of any
9 * kind, whether express or implied.
12 #include <linux/platform_device.h>
13 #include <linux/module.h>
14 #include <linux/console.h>
15 #include <linux/serial.h>
16 #include <linux/serial_core.h>
17 #include <linux/tty.h>
18 #include <linux/delay.h>
19 #include <linux/interrupt.h>
21 #if defined(CONFIG_OF)
22 #include <linux/of_device.h>
23 #include <linux/of_platform.h>
26 #define ULITE_NAME "ttyUL"
27 #define ULITE_MAJOR 204
28 #define ULITE_MINOR 187
29 #define ULITE_NR_UARTS 4
31 /* ---------------------------------------------------------------------
32 * Register definitions
34 * For register details see datasheet:
35 * http://www.xilinx.com/bvdocs/ipcenter/data_sheet/opb_uartlite.pdf
40 #define ULITE_STATUS 0x08
41 #define ULITE_CONTROL 0x0c
43 #define ULITE_REGION 16
45 #define ULITE_STATUS_RXVALID 0x01
46 #define ULITE_STATUS_RXFULL 0x02
47 #define ULITE_STATUS_TXEMPTY 0x04
48 #define ULITE_STATUS_TXFULL 0x08
49 #define ULITE_STATUS_IE 0x10
50 #define ULITE_STATUS_OVERRUN 0x20
51 #define ULITE_STATUS_FRAME 0x40
52 #define ULITE_STATUS_PARITY 0x80
54 #define ULITE_CONTROL_RST_TX 0x01
55 #define ULITE_CONTROL_RST_RX 0x02
56 #define ULITE_CONTROL_IE 0x10
59 static struct uart_port ulite_ports
[ULITE_NR_UARTS
];
61 /* ---------------------------------------------------------------------
62 * Core UART driver operations
65 static int ulite_receive(struct uart_port
*port
, int stat
)
67 struct tty_struct
*tty
= port
->info
->tty
;
69 char flag
= TTY_NORMAL
;
71 if ((stat
& (ULITE_STATUS_RXVALID
| ULITE_STATUS_OVERRUN
72 | ULITE_STATUS_FRAME
)) == 0)
76 if (stat
& ULITE_STATUS_RXVALID
) {
78 ch
= readb(port
->membase
+ ULITE_RX
);
80 if (stat
& ULITE_STATUS_PARITY
)
81 port
->icount
.parity
++;
84 if (stat
& ULITE_STATUS_OVERRUN
)
85 port
->icount
.overrun
++;
87 if (stat
& ULITE_STATUS_FRAME
)
91 /* drop byte with parity error if IGNPAR specificed */
92 if (stat
& port
->ignore_status_mask
& ULITE_STATUS_PARITY
)
93 stat
&= ~ULITE_STATUS_RXVALID
;
95 stat
&= port
->read_status_mask
;
97 if (stat
& ULITE_STATUS_PARITY
)
101 stat
&= ~port
->ignore_status_mask
;
103 if (stat
& ULITE_STATUS_RXVALID
)
104 tty_insert_flip_char(tty
, ch
, flag
);
106 if (stat
& ULITE_STATUS_FRAME
)
107 tty_insert_flip_char(tty
, 0, TTY_FRAME
);
109 if (stat
& ULITE_STATUS_OVERRUN
)
110 tty_insert_flip_char(tty
, 0, TTY_OVERRUN
);
115 static int ulite_transmit(struct uart_port
*port
, int stat
)
117 struct circ_buf
*xmit
= &port
->info
->xmit
;
119 if (stat
& ULITE_STATUS_TXFULL
)
123 writeb(port
->x_char
, port
->membase
+ ULITE_TX
);
129 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
))
132 writeb(xmit
->buf
[xmit
->tail
], port
->membase
+ ULITE_TX
);
133 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
-1);
137 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
138 uart_write_wakeup(port
);
143 static irqreturn_t
ulite_isr(int irq
, void *dev_id
)
145 struct uart_port
*port
= (struct uart_port
*)dev_id
;
149 int stat
= readb(port
->membase
+ ULITE_STATUS
);
150 busy
= ulite_receive(port
, stat
);
151 busy
|= ulite_transmit(port
, stat
);
154 tty_flip_buffer_push(port
->info
->tty
);
159 static unsigned int ulite_tx_empty(struct uart_port
*port
)
164 spin_lock_irqsave(&port
->lock
, flags
);
165 ret
= readb(port
->membase
+ ULITE_STATUS
);
166 spin_unlock_irqrestore(&port
->lock
, flags
);
168 return ret
& ULITE_STATUS_TXEMPTY
? TIOCSER_TEMT
: 0;
171 static unsigned int ulite_get_mctrl(struct uart_port
*port
)
173 return TIOCM_CTS
| TIOCM_DSR
| TIOCM_CAR
;
176 static void ulite_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
181 static void ulite_stop_tx(struct uart_port
*port
)
186 static void ulite_start_tx(struct uart_port
*port
)
188 ulite_transmit(port
, readb(port
->membase
+ ULITE_STATUS
));
191 static void ulite_stop_rx(struct uart_port
*port
)
193 /* don't forward any more data (like !CREAD) */
194 port
->ignore_status_mask
= ULITE_STATUS_RXVALID
| ULITE_STATUS_PARITY
195 | ULITE_STATUS_FRAME
| ULITE_STATUS_OVERRUN
;
198 static void ulite_enable_ms(struct uart_port
*port
)
203 static void ulite_break_ctl(struct uart_port
*port
, int ctl
)
208 static int ulite_startup(struct uart_port
*port
)
212 ret
= request_irq(port
->irq
, ulite_isr
,
213 IRQF_DISABLED
| IRQF_SAMPLE_RANDOM
, "uartlite", port
);
217 writeb(ULITE_CONTROL_RST_RX
| ULITE_CONTROL_RST_TX
,
218 port
->membase
+ ULITE_CONTROL
);
219 writeb(ULITE_CONTROL_IE
, port
->membase
+ ULITE_CONTROL
);
224 static void ulite_shutdown(struct uart_port
*port
)
226 writeb(0, port
->membase
+ ULITE_CONTROL
);
227 readb(port
->membase
+ ULITE_CONTROL
); /* dummy */
228 free_irq(port
->irq
, port
);
231 static void ulite_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
232 struct ktermios
*old
)
237 spin_lock_irqsave(&port
->lock
, flags
);
239 port
->read_status_mask
= ULITE_STATUS_RXVALID
| ULITE_STATUS_OVERRUN
240 | ULITE_STATUS_TXFULL
;
242 if (termios
->c_iflag
& INPCK
)
243 port
->read_status_mask
|=
244 ULITE_STATUS_PARITY
| ULITE_STATUS_FRAME
;
246 port
->ignore_status_mask
= 0;
247 if (termios
->c_iflag
& IGNPAR
)
248 port
->ignore_status_mask
|= ULITE_STATUS_PARITY
249 | ULITE_STATUS_FRAME
| ULITE_STATUS_OVERRUN
;
251 /* ignore all characters if CREAD is not set */
252 if ((termios
->c_cflag
& CREAD
) == 0)
253 port
->ignore_status_mask
|=
254 ULITE_STATUS_RXVALID
| ULITE_STATUS_PARITY
255 | ULITE_STATUS_FRAME
| ULITE_STATUS_OVERRUN
;
258 baud
= uart_get_baud_rate(port
, termios
, old
, 0, 460800);
259 uart_update_timeout(port
, termios
->c_cflag
, baud
);
261 spin_unlock_irqrestore(&port
->lock
, flags
);
264 static const char *ulite_type(struct uart_port
*port
)
266 return port
->type
== PORT_UARTLITE
? "uartlite" : NULL
;
269 static void ulite_release_port(struct uart_port
*port
)
271 release_mem_region(port
->mapbase
, ULITE_REGION
);
272 iounmap(port
->membase
);
273 port
->membase
= NULL
;
276 static int ulite_request_port(struct uart_port
*port
)
278 if (!request_mem_region(port
->mapbase
, ULITE_REGION
, "uartlite")) {
279 dev_err(port
->dev
, "Memory region busy\n");
283 port
->membase
= ioremap(port
->mapbase
, ULITE_REGION
);
284 if (!port
->membase
) {
285 dev_err(port
->dev
, "Unable to map registers\n");
286 release_mem_region(port
->mapbase
, ULITE_REGION
);
293 static void ulite_config_port(struct uart_port
*port
, int flags
)
295 if (!ulite_request_port(port
))
296 port
->type
= PORT_UARTLITE
;
299 static int ulite_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
301 /* we don't want the core code to modify any port params */
305 static struct uart_ops ulite_ops
= {
306 .tx_empty
= ulite_tx_empty
,
307 .set_mctrl
= ulite_set_mctrl
,
308 .get_mctrl
= ulite_get_mctrl
,
309 .stop_tx
= ulite_stop_tx
,
310 .start_tx
= ulite_start_tx
,
311 .stop_rx
= ulite_stop_rx
,
312 .enable_ms
= ulite_enable_ms
,
313 .break_ctl
= ulite_break_ctl
,
314 .startup
= ulite_startup
,
315 .shutdown
= ulite_shutdown
,
316 .set_termios
= ulite_set_termios
,
318 .release_port
= ulite_release_port
,
319 .request_port
= ulite_request_port
,
320 .config_port
= ulite_config_port
,
321 .verify_port
= ulite_verify_port
324 /* ---------------------------------------------------------------------
325 * Console driver operations
328 #ifdef CONFIG_SERIAL_UARTLITE_CONSOLE
329 static void ulite_console_wait_tx(struct uart_port
*port
)
333 /* wait up to 10ms for the character(s) to be sent */
334 for (i
= 0; i
< 10000; i
++) {
335 if (readb(port
->membase
+ ULITE_STATUS
) & ULITE_STATUS_TXEMPTY
)
341 static void ulite_console_putchar(struct uart_port
*port
, int ch
)
343 ulite_console_wait_tx(port
);
344 writeb(ch
, port
->membase
+ ULITE_TX
);
347 static void ulite_console_write(struct console
*co
, const char *s
,
350 struct uart_port
*port
= &ulite_ports
[co
->index
];
355 if (oops_in_progress
) {
356 locked
= spin_trylock_irqsave(&port
->lock
, flags
);
358 spin_lock_irqsave(&port
->lock
, flags
);
360 /* save and disable interrupt */
361 ier
= readb(port
->membase
+ ULITE_STATUS
) & ULITE_STATUS_IE
;
362 writeb(0, port
->membase
+ ULITE_CONTROL
);
364 uart_console_write(port
, s
, count
, ulite_console_putchar
);
366 ulite_console_wait_tx(port
);
368 /* restore interrupt state */
370 writeb(ULITE_CONTROL_IE
, port
->membase
+ ULITE_CONTROL
);
373 spin_unlock_irqrestore(&port
->lock
, flags
);
376 #if defined(CONFIG_OF)
377 static inline void __init
ulite_console_of_find_device(int id
)
379 struct device_node
*np
;
381 const unsigned int *of_id
;
384 for_each_compatible_node(np
, NULL
, "xilinx,uartlite") {
385 of_id
= of_get_property(np
, "port-number", NULL
);
386 if ((!of_id
) || (*of_id
!= id
))
389 rc
= of_address_to_resource(np
, 0, &res
);
393 ulite_ports
[id
].mapbase
= res
.start
;
397 #else /* CONFIG_OF */
398 static inline void __init
ulite_console_of_find_device(int id
) { /* do nothing */ }
399 #endif /* CONFIG_OF */
401 static int __init
ulite_console_setup(struct console
*co
, char *options
)
403 struct uart_port
*port
;
409 if (co
->index
< 0 || co
->index
>= ULITE_NR_UARTS
)
412 port
= &ulite_ports
[co
->index
];
414 /* Check if it is an OF device */
416 ulite_console_of_find_device(co
->index
);
418 /* Do we have a device now? */
419 if (!port
->mapbase
) {
420 pr_debug("console on ttyUL%i not present\n", co
->index
);
424 /* not initialized yet? */
425 if (!port
->membase
) {
426 if (ulite_request_port(port
))
431 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
433 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
436 static struct uart_driver ulite_uart_driver
;
438 static struct console ulite_console
= {
440 .write
= ulite_console_write
,
441 .device
= uart_console_device
,
442 .setup
= ulite_console_setup
,
443 .flags
= CON_PRINTBUFFER
,
444 .index
= -1, /* Specified on the cmdline (e.g. console=ttyUL0 ) */
445 .data
= &ulite_uart_driver
,
448 static int __init
ulite_console_init(void)
450 register_console(&ulite_console
);
454 console_initcall(ulite_console_init
);
456 #endif /* CONFIG_SERIAL_UARTLITE_CONSOLE */
458 static struct uart_driver ulite_uart_driver
= {
459 .owner
= THIS_MODULE
,
460 .driver_name
= "uartlite",
461 .dev_name
= ULITE_NAME
,
462 .major
= ULITE_MAJOR
,
463 .minor
= ULITE_MINOR
,
464 .nr
= ULITE_NR_UARTS
,
465 #ifdef CONFIG_SERIAL_UARTLITE_CONSOLE
466 .cons
= &ulite_console
,
470 /* ---------------------------------------------------------------------
471 * Port assignment functions (mapping devices to uart_port structures)
474 /** ulite_assign: register a uartlite device with the driver
476 * @dev: pointer to device structure
477 * @id: requested id number. Pass -1 for automatic port assignment
478 * @base: base address of uartlite registers
479 * @irq: irq number for uartlite
481 * Returns: 0 on success, <0 otherwise
483 static int __devinit
ulite_assign(struct device
*dev
, int id
, u32 base
, int irq
)
485 struct uart_port
*port
;
488 /* if id = -1; then scan for a free id and use that */
490 for (id
= 0; id
< ULITE_NR_UARTS
; id
++)
491 if (ulite_ports
[id
].mapbase
== 0)
494 if (id
< 0 || id
>= ULITE_NR_UARTS
) {
495 dev_err(dev
, "%s%i too large\n", ULITE_NAME
, id
);
499 if ((ulite_ports
[id
].mapbase
) && (ulite_ports
[id
].mapbase
!= base
)) {
500 dev_err(dev
, "cannot assign to %s%i; it is already in use\n",
505 port
= &ulite_ports
[id
];
507 spin_lock_init(&port
->lock
);
510 port
->iotype
= UPIO_MEM
;
511 port
->iobase
= 1; /* mark port in use */
512 port
->mapbase
= base
;
513 port
->membase
= NULL
;
514 port
->ops
= &ulite_ops
;
516 port
->flags
= UPF_BOOT_AUTOCONF
;
518 port
->type
= PORT_UNKNOWN
;
521 dev_set_drvdata(dev
, port
);
523 /* Register the port */
524 rc
= uart_add_one_port(&ulite_uart_driver
, port
);
526 dev_err(dev
, "uart_add_one_port() failed; err=%i\n", rc
);
528 dev_set_drvdata(dev
, NULL
);
535 /** ulite_release: register a uartlite device with the driver
537 * @dev: pointer to device structure
539 static int __devinit
ulite_release(struct device
*dev
)
541 struct uart_port
*port
= dev_get_drvdata(dev
);
545 rc
= uart_remove_one_port(&ulite_uart_driver
, port
);
546 dev_set_drvdata(dev
, NULL
);
553 /* ---------------------------------------------------------------------
554 * Platform bus binding
557 static int __devinit
ulite_probe(struct platform_device
*pdev
)
559 struct resource
*res
, *res2
;
561 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
565 res2
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
569 return ulite_assign(&pdev
->dev
, pdev
->id
, res
->start
, res2
->start
);
572 static int ulite_remove(struct platform_device
*pdev
)
574 return ulite_release(&pdev
->dev
);
577 static struct platform_driver ulite_platform_driver
= {
578 .probe
= ulite_probe
,
579 .remove
= ulite_remove
,
581 .owner
= THIS_MODULE
,
586 /* ---------------------------------------------------------------------
589 #if defined(CONFIG_OF)
591 ulite_of_probe(struct of_device
*op
, const struct of_device_id
*match
)
594 const unsigned int *id
;
597 dev_dbg(&op
->dev
, "%s(%p, %p)\n", __FUNCTION__
, op
, match
);
599 rc
= of_address_to_resource(op
->node
, 0, &res
);
601 dev_err(&op
->dev
, "invalid address\n");
605 irq
= irq_of_parse_and_map(op
->node
, 0);
607 id
= of_get_property(op
->node
, "port-number", NULL
);
609 return ulite_assign(&op
->dev
, id
? *id
: -1, res
.start
+3, irq
);
612 static int __devexit
ulite_of_remove(struct of_device
*op
)
614 return ulite_release(&op
->dev
);
617 /* Match table for of_platform binding */
618 static struct of_device_id __devinit ulite_of_match
[] = {
619 { .type
= "serial", .compatible
= "xilinx,uartlite", },
622 MODULE_DEVICE_TABLE(of
, ulite_of_match
);
624 static struct of_platform_driver ulite_of_driver
= {
625 .owner
= THIS_MODULE
,
627 .match_table
= ulite_of_match
,
628 .probe
= ulite_of_probe
,
629 .remove
= __devexit_p(ulite_of_remove
),
635 /* Registration helpers to keep the number of #ifdefs to a minimum */
636 static inline int __init
ulite_of_register(void)
638 pr_debug("uartlite: calling of_register_platform_driver()\n");
639 return of_register_platform_driver(&ulite_of_driver
);
642 static inline void __exit
ulite_of_unregister(void)
644 of_unregister_platform_driver(&ulite_of_driver
);
646 #else /* CONFIG_OF */
647 /* CONFIG_OF not enabled; do nothing helpers */
648 static inline int __init
ulite_of_register(void) { return 0; }
649 static inline void __exit
ulite_of_unregister(void) { }
650 #endif /* CONFIG_OF */
652 /* ---------------------------------------------------------------------
653 * Module setup/teardown
656 int __init
ulite_init(void)
660 pr_debug("uartlite: calling uart_register_driver()\n");
661 ret
= uart_register_driver(&ulite_uart_driver
);
665 ret
= ulite_of_register();
669 pr_debug("uartlite: calling platform_driver_register()\n");
670 ret
= platform_driver_register(&ulite_platform_driver
);
677 ulite_of_unregister();
679 uart_unregister_driver(&ulite_uart_driver
);
681 printk(KERN_ERR
"registering uartlite driver failed: err=%i", ret
);
685 void __exit
ulite_exit(void)
687 platform_driver_unregister(&ulite_platform_driver
);
688 ulite_of_unregister();
689 uart_unregister_driver(&ulite_uart_driver
);
692 module_init(ulite_init
);
693 module_exit(ulite_exit
);
695 MODULE_AUTHOR("Peter Korsgaard <jacmet@sunsite.dk>");
696 MODULE_DESCRIPTION("Xilinx uartlite serial driver");
697 MODULE_LICENSE("GPL");