serial: mfd: snprintf() returns largish values
[linux-2.6-block.git] / drivers / serial / uartlite.c
CommitLineData
238b8721
PK
1/*
2 * uartlite.c: Serial driver for Xilinx uartlite serial controller
3 *
852e1ea7
GL
4 * Copyright (C) 2006 Peter Korsgaard <jacmet@sunsite.dk>
5 * Copyright (C) 2007 Secret Lab Technologies Ltd.
238b8721
PK
6 *
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.
10 */
11
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>
0e349b0e 20#include <linux/init.h>
238b8721 21#include <asm/io.h>
07081fd8 22#if defined(CONFIG_OF) && (defined(CONFIG_PPC32) || defined(CONFIG_MICROBLAZE))
0e349b0e 23#include <linux/of.h>
22ae782f 24#include <linux/of_address.h>
852e1ea7
GL
25#include <linux/of_device.h>
26#include <linux/of_platform.h>
0e349b0e
SN
27
28/* Match table for of_platform binding */
29static struct of_device_id ulite_of_match[] __devinitdata = {
30 { .compatible = "xlnx,opb-uartlite-1.00.b", },
31 { .compatible = "xlnx,xps-uartlite-1.00.a", },
32 {}
33};
34MODULE_DEVICE_TABLE(of, ulite_of_match);
35
852e1ea7 36#endif
238b8721 37
00775828 38#define ULITE_NAME "ttyUL"
238b8721
PK
39#define ULITE_MAJOR 204
40#define ULITE_MINOR 187
41#define ULITE_NR_UARTS 4
42
435706b3
GL
43/* ---------------------------------------------------------------------
44 * Register definitions
45 *
46 * For register details see datasheet:
47 * http://www.xilinx.com/bvdocs/ipcenter/data_sheet/opb_uartlite.pdf
48 */
49
238b8721
PK
50#define ULITE_RX 0x00
51#define ULITE_TX 0x04
52#define ULITE_STATUS 0x08
53#define ULITE_CONTROL 0x0c
54
55#define ULITE_REGION 16
56
57#define ULITE_STATUS_RXVALID 0x01
58#define ULITE_STATUS_RXFULL 0x02
59#define ULITE_STATUS_TXEMPTY 0x04
60#define ULITE_STATUS_TXFULL 0x08
61#define ULITE_STATUS_IE 0x10
62#define ULITE_STATUS_OVERRUN 0x20
63#define ULITE_STATUS_FRAME 0x40
64#define ULITE_STATUS_PARITY 0x80
65
66#define ULITE_CONTROL_RST_TX 0x01
67#define ULITE_CONTROL_RST_RX 0x02
68#define ULITE_CONTROL_IE 0x10
69
70
483c79db 71static struct uart_port ulite_ports[ULITE_NR_UARTS];
238b8721 72
435706b3
GL
73/* ---------------------------------------------------------------------
74 * Core UART driver operations
75 */
76
238b8721
PK
77static int ulite_receive(struct uart_port *port, int stat)
78{
ebd2c8f6 79 struct tty_struct *tty = port->state->port.tty;
238b8721
PK
80 unsigned char ch = 0;
81 char flag = TTY_NORMAL;
82
83 if ((stat & (ULITE_STATUS_RXVALID | ULITE_STATUS_OVERRUN
84 | ULITE_STATUS_FRAME)) == 0)
85 return 0;
86
87 /* stats */
88 if (stat & ULITE_STATUS_RXVALID) {
89 port->icount.rx++;
e5bbbb18 90 ch = ioread32be(port->membase + ULITE_RX);
238b8721
PK
91
92 if (stat & ULITE_STATUS_PARITY)
93 port->icount.parity++;
94 }
95
96 if (stat & ULITE_STATUS_OVERRUN)
97 port->icount.overrun++;
98
99 if (stat & ULITE_STATUS_FRAME)
100 port->icount.frame++;
101
102
103 /* drop byte with parity error if IGNPAR specificed */
104 if (stat & port->ignore_status_mask & ULITE_STATUS_PARITY)
105 stat &= ~ULITE_STATUS_RXVALID;
106
107 stat &= port->read_status_mask;
108
109 if (stat & ULITE_STATUS_PARITY)
110 flag = TTY_PARITY;
111
112
113 stat &= ~port->ignore_status_mask;
114
115 if (stat & ULITE_STATUS_RXVALID)
116 tty_insert_flip_char(tty, ch, flag);
117
118 if (stat & ULITE_STATUS_FRAME)
119 tty_insert_flip_char(tty, 0, TTY_FRAME);
120
121 if (stat & ULITE_STATUS_OVERRUN)
122 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
123
124 return 1;
125}
126
127static int ulite_transmit(struct uart_port *port, int stat)
128{
ebd2c8f6 129 struct circ_buf *xmit = &port->state->xmit;
238b8721
PK
130
131 if (stat & ULITE_STATUS_TXFULL)
132 return 0;
133
134 if (port->x_char) {
e5bbbb18 135 iowrite32be(port->x_char, port->membase + ULITE_TX);
238b8721
PK
136 port->x_char = 0;
137 port->icount.tx++;
138 return 1;
139 }
140
141 if (uart_circ_empty(xmit) || uart_tx_stopped(port))
142 return 0;
143
e5bbbb18 144 iowrite32be(xmit->buf[xmit->tail], port->membase + ULITE_TX);
238b8721
PK
145 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE-1);
146 port->icount.tx++;
147
148 /* wake up */
149 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
150 uart_write_wakeup(port);
151
152 return 1;
153}
154
155static irqreturn_t ulite_isr(int irq, void *dev_id)
156{
15aafa2f 157 struct uart_port *port = dev_id;
d2cfe962 158 int busy, n = 0;
238b8721
PK
159
160 do {
e5bbbb18 161 int stat = ioread32be(port->membase + ULITE_STATUS);
238b8721
PK
162 busy = ulite_receive(port, stat);
163 busy |= ulite_transmit(port, stat);
d2cfe962 164 n++;
238b8721
PK
165 } while (busy);
166
d2cfe962
PK
167 /* work done? */
168 if (n > 1) {
169 tty_flip_buffer_push(port->state->port.tty);
170 return IRQ_HANDLED;
171 } else {
172 return IRQ_NONE;
173 }
238b8721
PK
174}
175
176static unsigned int ulite_tx_empty(struct uart_port *port)
177{
178 unsigned long flags;
179 unsigned int ret;
180
181 spin_lock_irqsave(&port->lock, flags);
e5bbbb18 182 ret = ioread32be(port->membase + ULITE_STATUS);
238b8721
PK
183 spin_unlock_irqrestore(&port->lock, flags);
184
185 return ret & ULITE_STATUS_TXEMPTY ? TIOCSER_TEMT : 0;
186}
187
188static unsigned int ulite_get_mctrl(struct uart_port *port)
189{
190 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
191}
192
193static void ulite_set_mctrl(struct uart_port *port, unsigned int mctrl)
194{
195 /* N/A */
196}
197
198static void ulite_stop_tx(struct uart_port *port)
199{
200 /* N/A */
201}
202
203static void ulite_start_tx(struct uart_port *port)
204{
e5bbbb18 205 ulite_transmit(port, ioread32be(port->membase + ULITE_STATUS));
238b8721
PK
206}
207
208static void ulite_stop_rx(struct uart_port *port)
209{
210 /* don't forward any more data (like !CREAD) */
211 port->ignore_status_mask = ULITE_STATUS_RXVALID | ULITE_STATUS_PARITY
212 | ULITE_STATUS_FRAME | ULITE_STATUS_OVERRUN;
213}
214
215static void ulite_enable_ms(struct uart_port *port)
216{
217 /* N/A */
218}
219
220static void ulite_break_ctl(struct uart_port *port, int ctl)
221{
222 /* N/A */
223}
224
225static int ulite_startup(struct uart_port *port)
226{
227 int ret;
228
229 ret = request_irq(port->irq, ulite_isr,
d2cfe962 230 IRQF_SHARED | IRQF_SAMPLE_RANDOM, "uartlite", port);
238b8721
PK
231 if (ret)
232 return ret;
233
e5bbbb18 234 iowrite32be(ULITE_CONTROL_RST_RX | ULITE_CONTROL_RST_TX,
e077b50c 235 port->membase + ULITE_CONTROL);
e5bbbb18 236 iowrite32be(ULITE_CONTROL_IE, port->membase + ULITE_CONTROL);
238b8721
PK
237
238 return 0;
239}
240
241static void ulite_shutdown(struct uart_port *port)
242{
e5bbbb18
JL
243 iowrite32be(0, port->membase + ULITE_CONTROL);
244 ioread32be(port->membase + ULITE_CONTROL); /* dummy */
238b8721
PK
245 free_irq(port->irq, port);
246}
247
606d099c
AC
248static void ulite_set_termios(struct uart_port *port, struct ktermios *termios,
249 struct ktermios *old)
238b8721
PK
250{
251 unsigned long flags;
252 unsigned int baud;
253
254 spin_lock_irqsave(&port->lock, flags);
255
256 port->read_status_mask = ULITE_STATUS_RXVALID | ULITE_STATUS_OVERRUN
257 | ULITE_STATUS_TXFULL;
258
259 if (termios->c_iflag & INPCK)
260 port->read_status_mask |=
261 ULITE_STATUS_PARITY | ULITE_STATUS_FRAME;
262
263 port->ignore_status_mask = 0;
264 if (termios->c_iflag & IGNPAR)
265 port->ignore_status_mask |= ULITE_STATUS_PARITY
266 | ULITE_STATUS_FRAME | ULITE_STATUS_OVERRUN;
267
268 /* ignore all characters if CREAD is not set */
269 if ((termios->c_cflag & CREAD) == 0)
270 port->ignore_status_mask |=
271 ULITE_STATUS_RXVALID | ULITE_STATUS_PARITY
272 | ULITE_STATUS_FRAME | ULITE_STATUS_OVERRUN;
273
274 /* update timeout */
275 baud = uart_get_baud_rate(port, termios, old, 0, 460800);
276 uart_update_timeout(port, termios->c_cflag, baud);
277
278 spin_unlock_irqrestore(&port->lock, flags);
279}
280
281static const char *ulite_type(struct uart_port *port)
282{
283 return port->type == PORT_UARTLITE ? "uartlite" : NULL;
284}
285
286static void ulite_release_port(struct uart_port *port)
287{
288 release_mem_region(port->mapbase, ULITE_REGION);
289 iounmap(port->membase);
b81831c6 290 port->membase = NULL;
238b8721
PK
291}
292
293static int ulite_request_port(struct uart_port *port)
294{
a1080968
GL
295 pr_debug("ulite console: port=%p; port->mapbase=%llx\n",
296 port, (unsigned long long) port->mapbase);
0e349b0e 297
238b8721
PK
298 if (!request_mem_region(port->mapbase, ULITE_REGION, "uartlite")) {
299 dev_err(port->dev, "Memory region busy\n");
300 return -EBUSY;
301 }
302
303 port->membase = ioremap(port->mapbase, ULITE_REGION);
304 if (!port->membase) {
305 dev_err(port->dev, "Unable to map registers\n");
306 release_mem_region(port->mapbase, ULITE_REGION);
307 return -EBUSY;
308 }
309
310 return 0;
311}
312
313static void ulite_config_port(struct uart_port *port, int flags)
314{
e21654a7
PK
315 if (!ulite_request_port(port))
316 port->type = PORT_UARTLITE;
238b8721
PK
317}
318
319static int ulite_verify_port(struct uart_port *port, struct serial_struct *ser)
320{
321 /* we don't want the core code to modify any port params */
322 return -EINVAL;
323}
324
325static struct uart_ops ulite_ops = {
326 .tx_empty = ulite_tx_empty,
327 .set_mctrl = ulite_set_mctrl,
328 .get_mctrl = ulite_get_mctrl,
329 .stop_tx = ulite_stop_tx,
330 .start_tx = ulite_start_tx,
331 .stop_rx = ulite_stop_rx,
332 .enable_ms = ulite_enable_ms,
333 .break_ctl = ulite_break_ctl,
334 .startup = ulite_startup,
335 .shutdown = ulite_shutdown,
336 .set_termios = ulite_set_termios,
337 .type = ulite_type,
338 .release_port = ulite_release_port,
339 .request_port = ulite_request_port,
340 .config_port = ulite_config_port,
341 .verify_port = ulite_verify_port
342};
343
435706b3
GL
344/* ---------------------------------------------------------------------
345 * Console driver operations
346 */
347
238b8721
PK
348#ifdef CONFIG_SERIAL_UARTLITE_CONSOLE
349static void ulite_console_wait_tx(struct uart_port *port)
350{
351 int i;
1d6b6987 352 u8 val;
238b8721 353
1d6b6987
GL
354 /* Spin waiting for TX fifo to have space available */
355 for (i = 0; i < 100000; i++) {
e5bbbb18 356 val = ioread32be(port->membase + ULITE_STATUS);
1d6b6987 357 if ((val & ULITE_STATUS_TXFULL) == 0)
238b8721 358 break;
1d6b6987 359 cpu_relax();
238b8721
PK
360 }
361}
362
363static void ulite_console_putchar(struct uart_port *port, int ch)
364{
365 ulite_console_wait_tx(port);
e5bbbb18 366 iowrite32be(ch, port->membase + ULITE_TX);
238b8721
PK
367}
368
369static void ulite_console_write(struct console *co, const char *s,
370 unsigned int count)
371{
483c79db 372 struct uart_port *port = &ulite_ports[co->index];
238b8721
PK
373 unsigned long flags;
374 unsigned int ier;
375 int locked = 1;
376
377 if (oops_in_progress) {
378 locked = spin_trylock_irqsave(&port->lock, flags);
379 } else
380 spin_lock_irqsave(&port->lock, flags);
381
382 /* save and disable interrupt */
e5bbbb18
JL
383 ier = ioread32be(port->membase + ULITE_STATUS) & ULITE_STATUS_IE;
384 iowrite32be(0, port->membase + ULITE_CONTROL);
238b8721
PK
385
386 uart_console_write(port, s, count, ulite_console_putchar);
387
388 ulite_console_wait_tx(port);
389
390 /* restore interrupt state */
391 if (ier)
e5bbbb18 392 iowrite32be(ULITE_CONTROL_IE, port->membase + ULITE_CONTROL);
238b8721
PK
393
394 if (locked)
395 spin_unlock_irqrestore(&port->lock, flags);
396}
397
03eac7bb 398static int __devinit ulite_console_setup(struct console *co, char *options)
238b8721
PK
399{
400 struct uart_port *port;
401 int baud = 9600;
402 int bits = 8;
403 int parity = 'n';
404 int flow = 'n';
405
406 if (co->index < 0 || co->index >= ULITE_NR_UARTS)
407 return -EINVAL;
408
483c79db 409 port = &ulite_ports[co->index];
238b8721 410
3de66a17 411 /* Has the device been initialized yet? */
fb4e6e66
GL
412 if (!port->mapbase) {
413 pr_debug("console on ttyUL%i not present\n", co->index);
414 return -ENODEV;
415 }
416
238b8721 417 /* not initialized yet? */
852e1ea7 418 if (!port->membase) {
fb4e6e66
GL
419 if (ulite_request_port(port))
420 return -ENODEV;
852e1ea7 421 }
238b8721
PK
422
423 if (options)
424 uart_parse_options(options, &baud, &parity, &bits, &flow);
425
426 return uart_set_options(port, co, baud, parity, bits, flow);
427}
428
429static struct uart_driver ulite_uart_driver;
430
431static struct console ulite_console = {
00775828 432 .name = ULITE_NAME,
238b8721
PK
433 .write = ulite_console_write,
434 .device = uart_console_device,
435 .setup = ulite_console_setup,
436 .flags = CON_PRINTBUFFER,
437 .index = -1, /* Specified on the cmdline (e.g. console=ttyUL0 ) */
438 .data = &ulite_uart_driver,
439};
440
441static int __init ulite_console_init(void)
442{
443 register_console(&ulite_console);
444 return 0;
445}
446
447console_initcall(ulite_console_init);
448
449#endif /* CONFIG_SERIAL_UARTLITE_CONSOLE */
450
451static struct uart_driver ulite_uart_driver = {
452 .owner = THIS_MODULE,
453 .driver_name = "uartlite",
00775828 454 .dev_name = ULITE_NAME,
238b8721
PK
455 .major = ULITE_MAJOR,
456 .minor = ULITE_MINOR,
457 .nr = ULITE_NR_UARTS,
458#ifdef CONFIG_SERIAL_UARTLITE_CONSOLE
459 .cons = &ulite_console,
460#endif
461};
462
435706b3
GL
463/* ---------------------------------------------------------------------
464 * Port assignment functions (mapping devices to uart_port structures)
465 */
466
467/** ulite_assign: register a uartlite device with the driver
468 *
469 * @dev: pointer to device structure
470 * @id: requested id number. Pass -1 for automatic port assignment
471 * @base: base address of uartlite registers
472 * @irq: irq number for uartlite
473 *
474 * Returns: 0 on success, <0 otherwise
475 */
8fa7b610 476static int __devinit ulite_assign(struct device *dev, int id, u32 base, int irq)
238b8721 477{
238b8721 478 struct uart_port *port;
8fa7b610 479 int rc;
238b8721 480
8fa7b610
GL
481 /* if id = -1; then scan for a free id and use that */
482 if (id < 0) {
483 for (id = 0; id < ULITE_NR_UARTS; id++)
484 if (ulite_ports[id].mapbase == 0)
485 break;
486 }
487 if (id < 0 || id >= ULITE_NR_UARTS) {
488 dev_err(dev, "%s%i too large\n", ULITE_NAME, id);
238b8721 489 return -EINVAL;
8fa7b610 490 }
238b8721 491
fb4e6e66 492 if ((ulite_ports[id].mapbase) && (ulite_ports[id].mapbase != base)) {
8fa7b610
GL
493 dev_err(dev, "cannot assign to %s%i; it is already in use\n",
494 ULITE_NAME, id);
238b8721 495 return -EBUSY;
8fa7b610 496 }
238b8721 497
8fa7b610 498 port = &ulite_ports[id];
238b8721 499
8fa7b610
GL
500 spin_lock_init(&port->lock);
501 port->fifosize = 16;
502 port->regshift = 2;
503 port->iotype = UPIO_MEM;
504 port->iobase = 1; /* mark port in use */
505 port->mapbase = base;
506 port->membase = NULL;
507 port->ops = &ulite_ops;
508 port->irq = irq;
509 port->flags = UPF_BOOT_AUTOCONF;
510 port->dev = dev;
511 port->type = PORT_UNKNOWN;
512 port->line = id;
513
514 dev_set_drvdata(dev, port);
515
516 /* Register the port */
517 rc = uart_add_one_port(&ulite_uart_driver, port);
518 if (rc) {
519 dev_err(dev, "uart_add_one_port() failed; err=%i\n", rc);
520 port->mapbase = 0;
521 dev_set_drvdata(dev, NULL);
522 return rc;
523 }
238b8721 524
8fa7b610
GL
525 return 0;
526}
238b8721 527
435706b3
GL
528/** ulite_release: register a uartlite device with the driver
529 *
530 * @dev: pointer to device structure
531 */
f67702a3 532static int __devexit ulite_release(struct device *dev)
8fa7b610
GL
533{
534 struct uart_port *port = dev_get_drvdata(dev);
535 int rc = 0;
238b8721 536
8fa7b610
GL
537 if (port) {
538 rc = uart_remove_one_port(&ulite_uart_driver, port);
539 dev_set_drvdata(dev, NULL);
540 port->mapbase = 0;
541 }
238b8721 542
8fa7b610 543 return rc;
238b8721
PK
544}
545
435706b3
GL
546/* ---------------------------------------------------------------------
547 * Platform bus binding
548 */
549
8fa7b610 550static int __devinit ulite_probe(struct platform_device *pdev)
238b8721 551{
8fa7b610 552 struct resource *res, *res2;
238b8721 553
8fa7b610
GL
554 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
555 if (!res)
556 return -ENODEV;
238b8721 557
8fa7b610
GL
558 res2 = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
559 if (!res2)
560 return -ENODEV;
238b8721 561
8fa7b610
GL
562 return ulite_assign(&pdev->dev, pdev->id, res->start, res2->start);
563}
238b8721 564
f67702a3 565static int __devexit ulite_remove(struct platform_device *pdev)
8fa7b610
GL
566{
567 return ulite_release(&pdev->dev);
238b8721
PK
568}
569
e169c139
KS
570/* work with hotplug and coldplug */
571MODULE_ALIAS("platform:uartlite");
572
238b8721
PK
573static struct platform_driver ulite_platform_driver = {
574 .probe = ulite_probe,
f67702a3 575 .remove = __devexit_p(ulite_remove),
238b8721
PK
576 .driver = {
577 .owner = THIS_MODULE,
578 .name = "uartlite",
579 },
580};
581
852e1ea7
GL
582/* ---------------------------------------------------------------------
583 * OF bus bindings
584 */
07081fd8 585#if defined(CONFIG_OF) && (defined(CONFIG_PPC32) || defined(CONFIG_MICROBLAZE))
852e1ea7 586static int __devinit
2dc11581 587ulite_of_probe(struct platform_device *op, const struct of_device_id *match)
852e1ea7
GL
588{
589 struct resource res;
590 const unsigned int *id;
591 int irq, rc;
592
71cc2c21 593 dev_dbg(&op->dev, "%s(%p, %p)\n", __func__, op, match);
852e1ea7 594
61c7a080 595 rc = of_address_to_resource(op->dev.of_node, 0, &res);
852e1ea7 596 if (rc) {
e077b50c 597 dev_err(&op->dev, "invalid address\n");
852e1ea7
GL
598 return rc;
599 }
600
61c7a080 601 irq = irq_of_parse_and_map(op->dev.of_node, 0);
852e1ea7 602
61c7a080 603 id = of_get_property(op->dev.of_node, "port-number", NULL);
852e1ea7 604
e5bbbb18 605 return ulite_assign(&op->dev, id ? *id : -1, res.start, irq);
852e1ea7
GL
606}
607
2dc11581 608static int __devexit ulite_of_remove(struct platform_device *op)
852e1ea7
GL
609{
610 return ulite_release(&op->dev);
611}
612
852e1ea7 613static struct of_platform_driver ulite_of_driver = {
852e1ea7
GL
614 .probe = ulite_of_probe,
615 .remove = __devexit_p(ulite_of_remove),
616 .driver = {
617 .name = "uartlite",
4018294b
GL
618 .owner = THIS_MODULE,
619 .of_match_table = ulite_of_match,
852e1ea7
GL
620 },
621};
622
623/* Registration helpers to keep the number of #ifdefs to a minimum */
624static inline int __init ulite_of_register(void)
625{
626 pr_debug("uartlite: calling of_register_platform_driver()\n");
627 return of_register_platform_driver(&ulite_of_driver);
628}
629
630static inline void __exit ulite_of_unregister(void)
631{
632 of_unregister_platform_driver(&ulite_of_driver);
633}
07081fd8
DM
634#else /* CONFIG_OF && (CONFIG_PPC32 || CONFIG_MICROBLAZE) */
635/* Appropriate config not enabled; do nothing helpers */
852e1ea7
GL
636static inline int __init ulite_of_register(void) { return 0; }
637static inline void __exit ulite_of_unregister(void) { }
07081fd8 638#endif /* CONFIG_OF && (CONFIG_PPC32 || CONFIG_MICROBLAZE) */
852e1ea7 639
435706b3
GL
640/* ---------------------------------------------------------------------
641 * Module setup/teardown
642 */
643
238b8721
PK
644int __init ulite_init(void)
645{
646 int ret;
647
852e1ea7 648 pr_debug("uartlite: calling uart_register_driver()\n");
238b8721
PK
649 ret = uart_register_driver(&ulite_uart_driver);
650 if (ret)
852e1ea7
GL
651 goto err_uart;
652
653 ret = ulite_of_register();
654 if (ret)
655 goto err_of;
238b8721 656
852e1ea7 657 pr_debug("uartlite: calling platform_driver_register()\n");
238b8721
PK
658 ret = platform_driver_register(&ulite_platform_driver);
659 if (ret)
852e1ea7
GL
660 goto err_plat;
661
662 return 0;
238b8721 663
852e1ea7
GL
664err_plat:
665 ulite_of_unregister();
666err_of:
667 uart_unregister_driver(&ulite_uart_driver);
668err_uart:
669 printk(KERN_ERR "registering uartlite driver failed: err=%i", ret);
238b8721
PK
670 return ret;
671}
672
673void __exit ulite_exit(void)
674{
675 platform_driver_unregister(&ulite_platform_driver);
852e1ea7 676 ulite_of_unregister();
238b8721
PK
677 uart_unregister_driver(&ulite_uart_driver);
678}
679
680module_init(ulite_init);
681module_exit(ulite_exit);
682
683MODULE_AUTHOR("Peter Korsgaard <jacmet@sunsite.dk>");
684MODULE_DESCRIPTION("Xilinx uartlite serial driver");
685MODULE_LICENSE("GPL");