1 // SPDX-License-Identifier: GPL-2.0
3 * Derived from many drivers using generic_serial interface.
7 * Serial driver for BCM63xx integrated UART.
9 * Hardware flow control was _not_ tested since I only have RX/TX on
13 #include <linux/kernel.h>
14 #include <linux/platform_device.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/module.h>
18 #include <linux/console.h>
19 #include <linux/clk.h>
20 #include <linux/tty.h>
21 #include <linux/tty_flip.h>
22 #include <linux/sysrq.h>
23 #include <linux/serial.h>
24 #include <linux/serial_core.h>
25 #include <linux/serial_bcm63xx.h>
29 #define BCM63XX_NR_UARTS 2
31 static struct uart_port ports[BCM63XX_NR_UARTS];
34 * rx interrupt mask / stat
38 * - rx fifo above threshold
39 * - rx fifo not empty for too long
41 #define UART_RX_INT_MASK (UART_IR_MASK(UART_IR_RXOVER) | \
42 UART_IR_MASK(UART_IR_RXTHRESH) | \
43 UART_IR_MASK(UART_IR_RXTIMEOUT))
45 #define UART_RX_INT_STAT (UART_IR_STAT(UART_IR_RXOVER) | \
46 UART_IR_STAT(UART_IR_RXTHRESH) | \
47 UART_IR_STAT(UART_IR_RXTIMEOUT))
50 * tx interrupt mask / stat
54 * - tx fifo below threshold
56 #define UART_TX_INT_MASK (UART_IR_MASK(UART_IR_TXEMPTY) | \
57 UART_IR_MASK(UART_IR_TXTRESH))
59 #define UART_TX_INT_STAT (UART_IR_STAT(UART_IR_TXEMPTY) | \
60 UART_IR_STAT(UART_IR_TXTRESH))
63 * external input interrupt
65 * mask: any edge on CTS, DCD
67 #define UART_EXTINP_INT_MASK (UART_EXTINP_IRMASK(UART_EXTINP_IR_CTS) | \
68 UART_EXTINP_IRMASK(UART_EXTINP_IR_DCD))
71 * handy uart register accessor
73 static inline unsigned int bcm_uart_readl(struct uart_port *port,
76 return __raw_readl(port->membase + offset);
79 static inline void bcm_uart_writel(struct uart_port *port,
80 unsigned int value, unsigned int offset)
82 __raw_writel(value, port->membase + offset);
86 * serial core request to check if uart tx fifo is empty
88 static unsigned int bcm_uart_tx_empty(struct uart_port *port)
92 val = bcm_uart_readl(port, UART_IR_REG);
93 return (val & UART_IR_STAT(UART_IR_TXEMPTY)) ? 1 : 0;
97 * serial core request to set RTS and DTR pin state and loopback mode
99 static void bcm_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
103 val = bcm_uart_readl(port, UART_MCTL_REG);
104 val &= ~(UART_MCTL_DTR_MASK | UART_MCTL_RTS_MASK);
105 /* invert of written value is reflected on the pin */
106 if (!(mctrl & TIOCM_DTR))
107 val |= UART_MCTL_DTR_MASK;
108 if (!(mctrl & TIOCM_RTS))
109 val |= UART_MCTL_RTS_MASK;
110 bcm_uart_writel(port, val, UART_MCTL_REG);
112 val = bcm_uart_readl(port, UART_CTL_REG);
113 if (mctrl & TIOCM_LOOP)
114 val |= UART_CTL_LOOPBACK_MASK;
116 val &= ~UART_CTL_LOOPBACK_MASK;
117 bcm_uart_writel(port, val, UART_CTL_REG);
121 * serial core request to return RI, CTS, DCD and DSR pin state
123 static unsigned int bcm_uart_get_mctrl(struct uart_port *port)
125 unsigned int val, mctrl;
128 val = bcm_uart_readl(port, UART_EXTINP_REG);
129 if (val & UART_EXTINP_RI_MASK)
131 if (val & UART_EXTINP_CTS_MASK)
133 if (val & UART_EXTINP_DCD_MASK)
135 if (val & UART_EXTINP_DSR_MASK)
141 * serial core request to disable tx ASAP (used for flow control)
143 static void bcm_uart_stop_tx(struct uart_port *port)
147 val = bcm_uart_readl(port, UART_CTL_REG);
148 val &= ~(UART_CTL_TXEN_MASK);
149 bcm_uart_writel(port, val, UART_CTL_REG);
151 val = bcm_uart_readl(port, UART_IR_REG);
152 val &= ~UART_TX_INT_MASK;
153 bcm_uart_writel(port, val, UART_IR_REG);
157 * serial core request to (re)enable tx
159 static void bcm_uart_start_tx(struct uart_port *port)
163 val = bcm_uart_readl(port, UART_IR_REG);
164 val |= UART_TX_INT_MASK;
165 bcm_uart_writel(port, val, UART_IR_REG);
167 val = bcm_uart_readl(port, UART_CTL_REG);
168 val |= UART_CTL_TXEN_MASK;
169 bcm_uart_writel(port, val, UART_CTL_REG);
173 * serial core request to stop rx, called before port shutdown
175 static void bcm_uart_stop_rx(struct uart_port *port)
179 val = bcm_uart_readl(port, UART_IR_REG);
180 val &= ~UART_RX_INT_MASK;
181 bcm_uart_writel(port, val, UART_IR_REG);
185 * serial core request to enable modem status interrupt reporting
187 static void bcm_uart_enable_ms(struct uart_port *port)
191 val = bcm_uart_readl(port, UART_IR_REG);
192 val |= UART_IR_MASK(UART_IR_EXTIP);
193 bcm_uart_writel(port, val, UART_IR_REG);
197 * serial core request to start/stop emitting break char
199 static void bcm_uart_break_ctl(struct uart_port *port, int ctl)
204 spin_lock_irqsave(&port->lock, flags);
206 val = bcm_uart_readl(port, UART_CTL_REG);
208 val |= UART_CTL_XMITBRK_MASK;
210 val &= ~UART_CTL_XMITBRK_MASK;
211 bcm_uart_writel(port, val, UART_CTL_REG);
213 spin_unlock_irqrestore(&port->lock, flags);
217 * return port type in string format
219 static const char *bcm_uart_type(struct uart_port *port)
221 return (port->type == PORT_BCM63XX) ? "bcm63xx_uart" : NULL;
225 * read all chars in rx fifo and send them to core
227 static void bcm_uart_do_rx(struct uart_port *port)
229 struct tty_port *tty_port = &port->state->port;
230 unsigned int max_count;
232 /* limit number of char read in interrupt, should not be
233 * higher than fifo size anyway since we're much faster than
237 unsigned int iestat, c, cstat;
240 /* get overrun/fifo empty information from ier
242 iestat = bcm_uart_readl(port, UART_IR_REG);
244 if (unlikely(iestat & UART_IR_STAT(UART_IR_RXOVER))) {
247 /* fifo reset is required to clear
249 val = bcm_uart_readl(port, UART_CTL_REG);
250 val |= UART_CTL_RSTRXFIFO_MASK;
251 bcm_uart_writel(port, val, UART_CTL_REG);
253 port->icount.overrun++;
254 tty_insert_flip_char(tty_port, 0, TTY_OVERRUN);
257 if (!(iestat & UART_IR_STAT(UART_IR_RXNOTEMPTY)))
260 cstat = c = bcm_uart_readl(port, UART_FIFO_REG);
265 if (unlikely((cstat & UART_FIFO_ANYERR_MASK))) {
267 if (cstat & UART_FIFO_BRKDET_MASK) {
269 if (uart_handle_break(port))
273 if (cstat & UART_FIFO_PARERR_MASK)
274 port->icount.parity++;
275 if (cstat & UART_FIFO_FRAMEERR_MASK)
276 port->icount.frame++;
278 /* update flag wrt read_status_mask */
279 cstat &= port->read_status_mask;
280 if (cstat & UART_FIFO_BRKDET_MASK)
282 if (cstat & UART_FIFO_FRAMEERR_MASK)
284 if (cstat & UART_FIFO_PARERR_MASK)
288 if (uart_handle_sysrq_char(port, c))
292 if ((cstat & port->ignore_status_mask) == 0)
293 tty_insert_flip_char(tty_port, c, flag);
295 } while (--max_count);
297 tty_flip_buffer_push(tty_port);
301 * fill tx fifo with chars to send, stop when fifo is about to be full
302 * or when all chars have been sent.
304 static void bcm_uart_do_tx(struct uart_port *port)
306 struct circ_buf *xmit;
307 unsigned int val, max_count;
310 bcm_uart_writel(port, port->x_char, UART_FIFO_REG);
316 if (uart_tx_stopped(port)) {
317 bcm_uart_stop_tx(port);
321 xmit = &port->state->xmit;
322 if (uart_circ_empty(xmit))
325 val = bcm_uart_readl(port, UART_MCTL_REG);
326 val = (val & UART_MCTL_TXFIFOFILL_MASK) >> UART_MCTL_TXFIFOFILL_SHIFT;
327 max_count = port->fifosize - val;
329 while (max_count--) {
332 c = xmit->buf[xmit->tail];
333 bcm_uart_writel(port, c, UART_FIFO_REG);
334 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
336 if (uart_circ_empty(xmit))
340 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
341 uart_write_wakeup(port);
343 if (uart_circ_empty(xmit))
348 /* nothing to send, disable transmit interrupt */
349 val = bcm_uart_readl(port, UART_IR_REG);
350 val &= ~UART_TX_INT_MASK;
351 bcm_uart_writel(port, val, UART_IR_REG);
356 * process uart interrupt
358 static irqreturn_t bcm_uart_interrupt(int irq, void *dev_id)
360 struct uart_port *port;
361 unsigned int irqstat;
364 spin_lock(&port->lock);
366 irqstat = bcm_uart_readl(port, UART_IR_REG);
367 if (irqstat & UART_RX_INT_STAT)
368 bcm_uart_do_rx(port);
370 if (irqstat & UART_TX_INT_STAT)
371 bcm_uart_do_tx(port);
373 if (irqstat & UART_IR_MASK(UART_IR_EXTIP)) {
376 estat = bcm_uart_readl(port, UART_EXTINP_REG);
377 if (estat & UART_EXTINP_IRSTAT(UART_EXTINP_IR_CTS))
378 uart_handle_cts_change(port,
379 estat & UART_EXTINP_CTS_MASK);
380 if (estat & UART_EXTINP_IRSTAT(UART_EXTINP_IR_DCD))
381 uart_handle_dcd_change(port,
382 estat & UART_EXTINP_DCD_MASK);
385 spin_unlock(&port->lock);
390 * enable rx & tx operation on uart
392 static void bcm_uart_enable(struct uart_port *port)
396 val = bcm_uart_readl(port, UART_CTL_REG);
397 val |= (UART_CTL_BRGEN_MASK | UART_CTL_TXEN_MASK | UART_CTL_RXEN_MASK);
398 bcm_uart_writel(port, val, UART_CTL_REG);
402 * disable rx & tx operation on uart
404 static void bcm_uart_disable(struct uart_port *port)
408 val = bcm_uart_readl(port, UART_CTL_REG);
409 val &= ~(UART_CTL_BRGEN_MASK | UART_CTL_TXEN_MASK |
411 bcm_uart_writel(port, val, UART_CTL_REG);
415 * clear all unread data in rx fifo and unsent data in tx fifo
417 static void bcm_uart_flush(struct uart_port *port)
421 /* empty rx and tx fifo */
422 val = bcm_uart_readl(port, UART_CTL_REG);
423 val |= UART_CTL_RSTRXFIFO_MASK | UART_CTL_RSTTXFIFO_MASK;
424 bcm_uart_writel(port, val, UART_CTL_REG);
426 /* read any pending char to make sure all irq status are
428 (void)bcm_uart_readl(port, UART_FIFO_REG);
432 * serial core request to initialize uart and start rx operation
434 static int bcm_uart_startup(struct uart_port *port)
439 /* mask all irq and flush port */
440 bcm_uart_disable(port);
441 bcm_uart_writel(port, 0, UART_IR_REG);
442 bcm_uart_flush(port);
444 /* clear any pending external input interrupt */
445 (void)bcm_uart_readl(port, UART_EXTINP_REG);
447 /* set rx/tx fifo thresh to fifo half size */
448 val = bcm_uart_readl(port, UART_MCTL_REG);
449 val &= ~(UART_MCTL_RXFIFOTHRESH_MASK | UART_MCTL_TXFIFOTHRESH_MASK);
450 val |= (port->fifosize / 2) << UART_MCTL_RXFIFOTHRESH_SHIFT;
451 val |= (port->fifosize / 2) << UART_MCTL_TXFIFOTHRESH_SHIFT;
452 bcm_uart_writel(port, val, UART_MCTL_REG);
454 /* set rx fifo timeout to 1 char time */
455 val = bcm_uart_readl(port, UART_CTL_REG);
456 val &= ~UART_CTL_RXTMOUTCNT_MASK;
457 val |= 1 << UART_CTL_RXTMOUTCNT_SHIFT;
458 bcm_uart_writel(port, val, UART_CTL_REG);
460 /* report any edge on dcd and cts */
461 val = UART_EXTINP_INT_MASK;
462 val |= UART_EXTINP_DCD_NOSENSE_MASK;
463 val |= UART_EXTINP_CTS_NOSENSE_MASK;
464 bcm_uart_writel(port, val, UART_EXTINP_REG);
466 /* register irq and enable rx interrupts */
467 ret = request_irq(port->irq, bcm_uart_interrupt, 0,
468 dev_name(port->dev), port);
471 bcm_uart_writel(port, UART_RX_INT_MASK, UART_IR_REG);
472 bcm_uart_enable(port);
477 * serial core request to flush & disable uart
479 static void bcm_uart_shutdown(struct uart_port *port)
483 spin_lock_irqsave(&port->lock, flags);
484 bcm_uart_writel(port, 0, UART_IR_REG);
485 spin_unlock_irqrestore(&port->lock, flags);
487 bcm_uart_disable(port);
488 bcm_uart_flush(port);
489 free_irq(port->irq, port);
493 * serial core request to change current uart setting
495 static void bcm_uart_set_termios(struct uart_port *port,
496 struct ktermios *new,
497 struct ktermios *old)
499 unsigned int ctl, baud, quot, ier;
503 spin_lock_irqsave(&port->lock, flags);
505 /* Drain the hot tub fully before we power it off for the winter. */
506 for (tries = 3; !bcm_uart_tx_empty(port) && tries; tries--)
509 /* disable uart while changing speed */
510 bcm_uart_disable(port);
511 bcm_uart_flush(port);
513 /* update Control register */
514 ctl = bcm_uart_readl(port, UART_CTL_REG);
515 ctl &= ~UART_CTL_BITSPERSYM_MASK;
517 switch (new->c_cflag & CSIZE) {
519 ctl |= (0 << UART_CTL_BITSPERSYM_SHIFT);
522 ctl |= (1 << UART_CTL_BITSPERSYM_SHIFT);
525 ctl |= (2 << UART_CTL_BITSPERSYM_SHIFT);
528 ctl |= (3 << UART_CTL_BITSPERSYM_SHIFT);
532 ctl &= ~UART_CTL_STOPBITS_MASK;
533 if (new->c_cflag & CSTOPB)
534 ctl |= UART_CTL_STOPBITS_2;
536 ctl |= UART_CTL_STOPBITS_1;
538 ctl &= ~(UART_CTL_RXPAREN_MASK | UART_CTL_TXPAREN_MASK);
539 if (new->c_cflag & PARENB)
540 ctl |= (UART_CTL_RXPAREN_MASK | UART_CTL_TXPAREN_MASK);
541 ctl &= ~(UART_CTL_RXPAREVEN_MASK | UART_CTL_TXPAREVEN_MASK);
542 if (new->c_cflag & PARODD)
543 ctl |= (UART_CTL_RXPAREVEN_MASK | UART_CTL_TXPAREVEN_MASK);
544 bcm_uart_writel(port, ctl, UART_CTL_REG);
546 /* update Baudword register */
547 baud = uart_get_baud_rate(port, new, old, 0, port->uartclk / 16);
548 quot = uart_get_divisor(port, baud) - 1;
549 bcm_uart_writel(port, quot, UART_BAUD_REG);
551 /* update Interrupt register */
552 ier = bcm_uart_readl(port, UART_IR_REG);
554 ier &= ~UART_IR_MASK(UART_IR_EXTIP);
555 if (UART_ENABLE_MS(port, new->c_cflag))
556 ier |= UART_IR_MASK(UART_IR_EXTIP);
558 bcm_uart_writel(port, ier, UART_IR_REG);
560 /* update read/ignore mask */
561 port->read_status_mask = UART_FIFO_VALID_MASK;
562 if (new->c_iflag & INPCK) {
563 port->read_status_mask |= UART_FIFO_FRAMEERR_MASK;
564 port->read_status_mask |= UART_FIFO_PARERR_MASK;
566 if (new->c_iflag & (IGNBRK | BRKINT))
567 port->read_status_mask |= UART_FIFO_BRKDET_MASK;
569 port->ignore_status_mask = 0;
570 if (new->c_iflag & IGNPAR)
571 port->ignore_status_mask |= UART_FIFO_PARERR_MASK;
572 if (new->c_iflag & IGNBRK)
573 port->ignore_status_mask |= UART_FIFO_BRKDET_MASK;
574 if (!(new->c_cflag & CREAD))
575 port->ignore_status_mask |= UART_FIFO_VALID_MASK;
577 uart_update_timeout(port, new->c_cflag, baud);
578 bcm_uart_enable(port);
579 spin_unlock_irqrestore(&port->lock, flags);
583 * serial core request to claim uart iomem
585 static int bcm_uart_request_port(struct uart_port *port)
587 /* UARTs always present */
592 * serial core request to release uart iomem
594 static void bcm_uart_release_port(struct uart_port *port)
596 /* Nothing to release ... */
600 * serial core request to do any port required autoconfiguration
602 static void bcm_uart_config_port(struct uart_port *port, int flags)
604 if (flags & UART_CONFIG_TYPE) {
605 if (bcm_uart_request_port(port))
607 port->type = PORT_BCM63XX;
612 * serial core request to check that port information in serinfo are
615 static int bcm_uart_verify_port(struct uart_port *port,
616 struct serial_struct *serinfo)
618 if (port->type != PORT_BCM63XX)
620 if (port->irq != serinfo->irq)
622 if (port->iotype != serinfo->io_type)
624 if (port->mapbase != (unsigned long)serinfo->iomem_base)
629 /* serial core callbacks */
630 static const struct uart_ops bcm_uart_ops = {
631 .tx_empty = bcm_uart_tx_empty,
632 .get_mctrl = bcm_uart_get_mctrl,
633 .set_mctrl = bcm_uart_set_mctrl,
634 .start_tx = bcm_uart_start_tx,
635 .stop_tx = bcm_uart_stop_tx,
636 .stop_rx = bcm_uart_stop_rx,
637 .enable_ms = bcm_uart_enable_ms,
638 .break_ctl = bcm_uart_break_ctl,
639 .startup = bcm_uart_startup,
640 .shutdown = bcm_uart_shutdown,
641 .set_termios = bcm_uart_set_termios,
642 .type = bcm_uart_type,
643 .release_port = bcm_uart_release_port,
644 .request_port = bcm_uart_request_port,
645 .config_port = bcm_uart_config_port,
646 .verify_port = bcm_uart_verify_port,
651 #ifdef CONFIG_SERIAL_BCM63XX_CONSOLE
652 static void wait_for_xmitr(struct uart_port *port)
656 /* Wait up to 10ms for the character(s) to be sent. */
661 val = bcm_uart_readl(port, UART_IR_REG);
662 if (val & UART_IR_STAT(UART_IR_TXEMPTY))
667 /* Wait up to 1s for flow control if necessary */
668 if (port->flags & UPF_CONS_FLOW) {
673 val = bcm_uart_readl(port, UART_EXTINP_REG);
674 if (val & UART_EXTINP_CTS_MASK)
684 static void bcm_console_putchar(struct uart_port *port, int ch)
686 wait_for_xmitr(port);
687 bcm_uart_writel(port, ch, UART_FIFO_REG);
691 * console core request to output given string
693 static void bcm_console_write(struct console *co, const char *s,
696 struct uart_port *port;
700 port = &ports[co->index];
702 local_irq_save(flags);
704 /* bcm_uart_interrupt() already took the lock */
706 } else if (oops_in_progress) {
707 locked = spin_trylock(&port->lock);
709 spin_lock(&port->lock);
713 /* call helper to deal with \r\n */
714 uart_console_write(port, s, count, bcm_console_putchar);
716 /* and wait for char to be transmitted */
717 wait_for_xmitr(port);
720 spin_unlock(&port->lock);
721 local_irq_restore(flags);
725 * console core request to setup given console, find matching uart
728 static int bcm_console_setup(struct console *co, char *options)
730 struct uart_port *port;
736 if (co->index < 0 || co->index >= BCM63XX_NR_UARTS)
738 port = &ports[co->index];
742 uart_parse_options(options, &baud, &parity, &bits, &flow);
744 return uart_set_options(port, co, baud, parity, bits, flow);
747 static struct uart_driver bcm_uart_driver;
749 static struct console bcm63xx_console = {
751 .write = bcm_console_write,
752 .device = uart_console_device,
753 .setup = bcm_console_setup,
754 .flags = CON_PRINTBUFFER,
756 .data = &bcm_uart_driver,
759 static int __init bcm63xx_console_init(void)
761 register_console(&bcm63xx_console);
765 console_initcall(bcm63xx_console_init);
767 static void bcm_early_write(struct console *con, const char *s, unsigned n)
769 struct earlycon_device *dev = con->data;
771 uart_console_write(&dev->port, s, n, bcm_console_putchar);
772 wait_for_xmitr(&dev->port);
775 static int __init bcm_early_console_setup(struct earlycon_device *device,
778 if (!device->port.membase)
781 device->con->write = bcm_early_write;
785 OF_EARLYCON_DECLARE(bcm63xx_uart, "brcm,bcm6345-uart", bcm_early_console_setup);
787 #define BCM63XX_CONSOLE (&bcm63xx_console)
789 #define BCM63XX_CONSOLE NULL
790 #endif /* CONFIG_SERIAL_BCM63XX_CONSOLE */
792 static struct uart_driver bcm_uart_driver = {
793 .owner = THIS_MODULE,
794 .driver_name = "bcm63xx_uart",
798 .nr = BCM63XX_NR_UARTS,
799 .cons = BCM63XX_CONSOLE,
803 * platform driver probe/remove callback
805 static int bcm_uart_probe(struct platform_device *pdev)
807 struct resource *res_mem, *res_irq;
808 struct uart_port *port;
812 if (pdev->dev.of_node) {
813 pdev->id = of_alias_get_id(pdev->dev.of_node, "serial");
816 pdev->id = of_alias_get_id(pdev->dev.of_node, "uart");
819 if (pdev->id < 0 || pdev->id >= BCM63XX_NR_UARTS)
822 port = &ports[pdev->id];
825 memset(port, 0, sizeof(*port));
827 res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
831 port->mapbase = res_mem->start;
832 port->membase = devm_ioremap_resource(&pdev->dev, res_mem);
833 if (IS_ERR(port->membase))
834 return PTR_ERR(port->membase);
836 res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
840 clk = clk_get(&pdev->dev, "refclk");
841 if (IS_ERR(clk) && pdev->dev.of_node)
842 clk = of_clk_get(pdev->dev.of_node, 0);
847 port->iotype = UPIO_MEM;
848 port->irq = res_irq->start;
849 port->ops = &bcm_uart_ops;
850 port->flags = UPF_BOOT_AUTOCONF;
851 port->dev = &pdev->dev;
853 port->uartclk = clk_get_rate(clk) / 2;
854 port->line = pdev->id;
855 port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_BCM63XX_CONSOLE);
858 ret = uart_add_one_port(&bcm_uart_driver, port);
860 ports[pdev->id].membase = NULL;
863 platform_set_drvdata(pdev, port);
867 static int bcm_uart_remove(struct platform_device *pdev)
869 struct uart_port *port;
871 port = platform_get_drvdata(pdev);
872 uart_remove_one_port(&bcm_uart_driver, port);
873 /* mark port as free */
874 ports[pdev->id].membase = NULL;
878 static const struct of_device_id bcm63xx_of_match[] = {
879 { .compatible = "brcm,bcm6345-uart" },
882 MODULE_DEVICE_TABLE(of, bcm63xx_of_match);
885 * platform driver stuff
887 static struct platform_driver bcm_uart_platform_driver = {
888 .probe = bcm_uart_probe,
889 .remove = bcm_uart_remove,
891 .name = "bcm63xx_uart",
892 .of_match_table = bcm63xx_of_match,
896 static int __init bcm_uart_init(void)
900 ret = uart_register_driver(&bcm_uart_driver);
904 ret = platform_driver_register(&bcm_uart_platform_driver);
906 uart_unregister_driver(&bcm_uart_driver);
911 static void __exit bcm_uart_exit(void)
913 platform_driver_unregister(&bcm_uart_platform_driver);
914 uart_unregister_driver(&bcm_uart_driver);
917 module_init(bcm_uart_init);
918 module_exit(bcm_uart_exit);
921 MODULE_DESCRIPTION("Broadcom 63xx integrated uart driver");
922 MODULE_LICENSE("GPL");