2 * drivers/serial/mpc52xx_uart.c
4 * Driver for the PSC of the Freescale MPC52xx PSCs configured as UARTs.
6 * FIXME According to the usermanual the status bits in the status register
7 * are only updated when the peripherals access the FIFO and not when the
8 * CPU access them. So since we use this bits to know when we stop writing
9 * and reading, they may not be updated in-time and a race condition may
10 * exists. But I haven't be able to prove this and I don't care. But if
11 * any problem arises, it might worth checking. The TX/RX FIFO Stats
12 * registers should be used in addition.
13 * Update: Actually, they seem updated ... At least the bits we use.
16 * Maintainer : Sylvain Munaut <tnt@246tNt.com>
18 * Some of the code has been inspired/copied from the 2.4 code written
19 * by Dale Farnsworth <dfarnsworth@mvista.com>.
21 * Copyright (C) 2004-2005 Sylvain Munaut <tnt@246tNt.com>
22 * Copyright (C) 2003 MontaVista, Software, Inc.
24 * This file is licensed under the terms of the GNU General Public License
25 * version 2. This program is licensed "as is" without any warranty of any
26 * kind, whether express or implied.
29 /* Platform device Usage :
31 * Since PSCs can have multiple function, the correct driver for each one
32 * is selected by calling mpc52xx_match_psc_function(...). The function
33 * handled by this driver is "uart".
35 * The driver init all necessary registers to place the PSC in uart mode without
36 * DCD. However, the pin multiplexing aren't changed and should be set either
37 * by the bootloader or in the platform init code.
39 * The idx field must be equal to the PSC index ( e.g. 0 for PSC1, 1 for PSC2,
40 * and so on). So the PSC1 is mapped to /dev/ttyPSC0, PSC2 to /dev/ttyPSC1 and
41 * so on. But be warned, it's an ABSOLUTE REQUIREMENT ! This is needed mainly
42 * fpr the console code : without this 1:1 mapping, at early boot time, when we
43 * are parsing the kernel args console=ttyPSC?, we wouldn't know wich PSC it
47 #include <linux/config.h>
48 #include <linux/platform_device.h>
49 #include <linux/module.h>
50 #include <linux/tty.h>
51 #include <linux/serial.h>
52 #include <linux/sysrq.h>
53 #include <linux/console.h>
55 #include <asm/delay.h>
58 #include <asm/mpc52xx.h>
59 #include <asm/mpc52xx_psc.h>
61 #if defined(CONFIG_SERIAL_MPC52xx_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
65 #include <linux/serial_core.h>
68 /* We've been assigned a range on the "Low-density serial ports" major */
69 #define SERIAL_PSC_MAJOR 204
70 #define SERIAL_PSC_MINOR 148
73 #define ISR_PASS_LIMIT 256 /* Max number of iteration in the interrupt */
76 static struct uart_port mpc52xx_uart_ports[MPC52xx_PSC_MAXNUM];
77 /* Rem: - We use the read_status_mask as a shadow of
78 * psc->mpc52xx_psc_imr
79 * - It's important that is array is all zero on start as we
80 * use it to know if it's initialized or not ! If it's not sure
81 * it's cleared, then a memset(...,0,...) should be added to
85 #define PSC(port) ((struct mpc52xx_psc __iomem *)((port)->membase))
88 /* Forward declaration of the interruption handling routine */
89 static irqreturn_t mpc52xx_uart_int(int irq,void *dev_id,struct pt_regs *regs);
92 /* Simple macro to test if a port is console or not. This one is taken
93 * for serial_core.c and maybe should be moved to serial_core.h ? */
94 #ifdef CONFIG_SERIAL_CORE_CONSOLE
95 #define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line)
97 #define uart_console(port) (0)
101 /* ======================================================================== */
102 /* UART operations */
103 /* ======================================================================== */
106 mpc52xx_uart_tx_empty(struct uart_port *port)
108 int status = in_be16(&PSC(port)->mpc52xx_psc_status);
109 return (status & MPC52xx_PSC_SR_TXEMP) ? TIOCSER_TEMT : 0;
113 mpc52xx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
115 /* Not implemented */
119 mpc52xx_uart_get_mctrl(struct uart_port *port)
121 /* Not implemented */
122 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
126 mpc52xx_uart_stop_tx(struct uart_port *port)
128 /* port->lock taken by caller */
129 port->read_status_mask &= ~MPC52xx_PSC_IMR_TXRDY;
130 out_be16(&PSC(port)->mpc52xx_psc_imr,port->read_status_mask);
134 mpc52xx_uart_start_tx(struct uart_port *port)
136 /* port->lock taken by caller */
137 port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
138 out_be16(&PSC(port)->mpc52xx_psc_imr,port->read_status_mask);
142 mpc52xx_uart_send_xchar(struct uart_port *port, char ch)
145 spin_lock_irqsave(&port->lock, flags);
149 /* Make sure tx interrupts are on */
150 /* Truly necessary ??? They should be anyway */
151 port->read_status_mask |= MPC52xx_PSC_IMR_TXRDY;
152 out_be16(&PSC(port)->mpc52xx_psc_imr,port->read_status_mask);
155 spin_unlock_irqrestore(&port->lock, flags);
159 mpc52xx_uart_stop_rx(struct uart_port *port)
161 /* port->lock taken by caller */
162 port->read_status_mask &= ~MPC52xx_PSC_IMR_RXRDY;
163 out_be16(&PSC(port)->mpc52xx_psc_imr,port->read_status_mask);
167 mpc52xx_uart_enable_ms(struct uart_port *port)
169 /* Not implemented */
173 mpc52xx_uart_break_ctl(struct uart_port *port, int ctl)
176 spin_lock_irqsave(&port->lock, flags);
179 out_8(&PSC(port)->command,MPC52xx_PSC_START_BRK);
181 out_8(&PSC(port)->command,MPC52xx_PSC_STOP_BRK);
183 spin_unlock_irqrestore(&port->lock, flags);
187 mpc52xx_uart_startup(struct uart_port *port)
189 struct mpc52xx_psc __iomem *psc = PSC(port);
193 ret = request_irq(port->irq, mpc52xx_uart_int,
194 SA_INTERRUPT | SA_SAMPLE_RANDOM, "mpc52xx_psc_uart", port);
198 /* Reset/activate the port, clear and enable interrupts */
199 out_8(&psc->command,MPC52xx_PSC_RST_RX);
200 out_8(&psc->command,MPC52xx_PSC_RST_TX);
202 out_be32(&psc->sicr,0); /* UART mode DCD ignored */
204 out_be16(&psc->mpc52xx_psc_clock_select, 0xdd00); /* /16 prescaler on */
206 out_8(&psc->rfcntl, 0x00);
207 out_be16(&psc->rfalarm, 0x1ff);
208 out_8(&psc->tfcntl, 0x07);
209 out_be16(&psc->tfalarm, 0x80);
211 port->read_status_mask |= MPC52xx_PSC_IMR_RXRDY | MPC52xx_PSC_IMR_TXRDY;
212 out_be16(&psc->mpc52xx_psc_imr,port->read_status_mask);
214 out_8(&psc->command,MPC52xx_PSC_TX_ENABLE);
215 out_8(&psc->command,MPC52xx_PSC_RX_ENABLE);
221 mpc52xx_uart_shutdown(struct uart_port *port)
223 struct mpc52xx_psc __iomem *psc = PSC(port);
225 /* Shut down the port, interrupt and all */
226 out_8(&psc->command,MPC52xx_PSC_RST_RX);
227 out_8(&psc->command,MPC52xx_PSC_RST_TX);
229 port->read_status_mask = 0;
230 out_be16(&psc->mpc52xx_psc_imr,port->read_status_mask);
232 /* Release interrupt */
233 free_irq(port->irq, port);
237 mpc52xx_uart_set_termios(struct uart_port *port, struct termios *new,
240 struct mpc52xx_psc __iomem *psc = PSC(port);
242 unsigned char mr1, mr2;
244 unsigned int j, baud, quot;
246 /* Prepare what we're gonna write */
249 switch (new->c_cflag & CSIZE) {
250 case CS5: mr1 |= MPC52xx_PSC_MODE_5_BITS;
252 case CS6: mr1 |= MPC52xx_PSC_MODE_6_BITS;
254 case CS7: mr1 |= MPC52xx_PSC_MODE_7_BITS;
257 default: mr1 |= MPC52xx_PSC_MODE_8_BITS;
260 if (new->c_cflag & PARENB) {
261 mr1 |= (new->c_cflag & PARODD) ?
262 MPC52xx_PSC_MODE_PARODD : MPC52xx_PSC_MODE_PAREVEN;
264 mr1 |= MPC52xx_PSC_MODE_PARNONE;
269 if (new->c_cflag & CSTOPB)
270 mr2 |= MPC52xx_PSC_MODE_TWO_STOP;
272 mr2 |= ((new->c_cflag & CSIZE) == CS5) ?
273 MPC52xx_PSC_MODE_ONE_STOP_5_BITS :
274 MPC52xx_PSC_MODE_ONE_STOP;
277 baud = uart_get_baud_rate(port, new, old, 0, port->uartclk/16);
278 quot = uart_get_divisor(port, baud);
282 spin_lock_irqsave(&port->lock, flags);
284 /* Update the per-port timeout */
285 uart_update_timeout(port, new->c_cflag, baud);
287 /* Do our best to flush TX & RX, so we don't loose anything */
288 /* But we don't wait indefinitly ! */
289 j = 5000000; /* Maximum wait */
290 /* FIXME Can't receive chars since set_termios might be called at early
291 * boot for the console, all stuff is not yet ready to receive at that
292 * time and that just makes the kernel oops */
293 /* while (j-- && mpc52xx_uart_int_rx_chars(port)); */
294 while (!(in_be16(&psc->mpc52xx_psc_status) & MPC52xx_PSC_SR_TXEMP) &&
299 printk( KERN_ERR "mpc52xx_uart.c: "
300 "Unable to flush RX & TX fifos in-time in set_termios."
301 "Some chars may have been lost.\n" );
303 /* Reset the TX & RX */
304 out_8(&psc->command,MPC52xx_PSC_RST_RX);
305 out_8(&psc->command,MPC52xx_PSC_RST_TX);
307 /* Send new mode settings */
308 out_8(&psc->command,MPC52xx_PSC_SEL_MODE_REG_1);
309 out_8(&psc->mode,mr1);
310 out_8(&psc->mode,mr2);
311 out_8(&psc->ctur,ctr >> 8);
312 out_8(&psc->ctlr,ctr & 0xff);
314 /* Reenable TX & RX */
315 out_8(&psc->command,MPC52xx_PSC_TX_ENABLE);
316 out_8(&psc->command,MPC52xx_PSC_RX_ENABLE);
318 /* We're all set, release the lock */
319 spin_unlock_irqrestore(&port->lock, flags);
323 mpc52xx_uart_type(struct uart_port *port)
325 return port->type == PORT_MPC52xx ? "MPC52xx PSC" : NULL;
329 mpc52xx_uart_release_port(struct uart_port *port)
331 if (port->flags & UPF_IOREMAP) { /* remapped by us ? */
332 iounmap(port->membase);
333 port->membase = NULL;
336 release_mem_region(port->mapbase, MPC52xx_PSC_SIZE);
340 mpc52xx_uart_request_port(struct uart_port *port)
342 if (port->flags & UPF_IOREMAP) /* Need to remap ? */
343 port->membase = ioremap(port->mapbase, MPC52xx_PSC_SIZE);
348 return request_mem_region(port->mapbase, MPC52xx_PSC_SIZE,
349 "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY;
353 mpc52xx_uart_config_port(struct uart_port *port, int flags)
355 if ( (flags & UART_CONFIG_TYPE) &&
356 (mpc52xx_uart_request_port(port) == 0) )
357 port->type = PORT_MPC52xx;
361 mpc52xx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
363 if ( ser->type != PORT_UNKNOWN && ser->type != PORT_MPC52xx )
366 if ( (ser->irq != port->irq) ||
367 (ser->io_type != SERIAL_IO_MEM) ||
368 (ser->baud_base != port->uartclk) ||
369 (ser->iomem_base != (void*)port->mapbase) ||
377 static struct uart_ops mpc52xx_uart_ops = {
378 .tx_empty = mpc52xx_uart_tx_empty,
379 .set_mctrl = mpc52xx_uart_set_mctrl,
380 .get_mctrl = mpc52xx_uart_get_mctrl,
381 .stop_tx = mpc52xx_uart_stop_tx,
382 .start_tx = mpc52xx_uart_start_tx,
383 .send_xchar = mpc52xx_uart_send_xchar,
384 .stop_rx = mpc52xx_uart_stop_rx,
385 .enable_ms = mpc52xx_uart_enable_ms,
386 .break_ctl = mpc52xx_uart_break_ctl,
387 .startup = mpc52xx_uart_startup,
388 .shutdown = mpc52xx_uart_shutdown,
389 .set_termios = mpc52xx_uart_set_termios,
390 /* .pm = mpc52xx_uart_pm, Not supported yet */
391 /* .set_wake = mpc52xx_uart_set_wake, Not supported yet */
392 .type = mpc52xx_uart_type,
393 .release_port = mpc52xx_uart_release_port,
394 .request_port = mpc52xx_uart_request_port,
395 .config_port = mpc52xx_uart_config_port,
396 .verify_port = mpc52xx_uart_verify_port
400 /* ======================================================================== */
401 /* Interrupt handling */
402 /* ======================================================================== */
405 mpc52xx_uart_int_rx_chars(struct uart_port *port, struct pt_regs *regs)
407 struct tty_struct *tty = port->info->tty;
409 unsigned short status;
411 /* While we can read, do so ! */
412 while ( (status = in_be16(&PSC(port)->mpc52xx_psc_status)) &
413 MPC52xx_PSC_SR_RXRDY) {
415 /* If we are full, just stop reading */
416 if (tty->flip.count >= TTY_FLIPBUF_SIZE)
420 ch = in_8(&PSC(port)->mpc52xx_psc_buffer_8);
422 /* Handle sysreq char */
424 if (uart_handle_sysrq_char(port, ch, regs)) {
431 *tty->flip.char_buf_ptr = ch;
432 *tty->flip.flag_buf_ptr = 0;
435 if ( status & (MPC52xx_PSC_SR_PE |
438 MPC52xx_PSC_SR_OE) ) {
440 if (status & MPC52xx_PSC_SR_RB) {
441 *tty->flip.flag_buf_ptr = TTY_BREAK;
442 uart_handle_break(port);
443 } else if (status & MPC52xx_PSC_SR_PE)
444 *tty->flip.flag_buf_ptr = TTY_PARITY;
445 else if (status & MPC52xx_PSC_SR_FE)
446 *tty->flip.flag_buf_ptr = TTY_FRAME;
447 if (status & MPC52xx_PSC_SR_OE) {
449 * Overrun is special, since it's
450 * reported immediately, and doesn't
451 * affect the current character
453 if (tty->flip.count < (TTY_FLIPBUF_SIZE-1)) {
454 tty->flip.flag_buf_ptr++;
455 tty->flip.char_buf_ptr++;
458 *tty->flip.flag_buf_ptr = TTY_OVERRUN;
461 /* Clear error condition */
462 out_8(&PSC(port)->command,MPC52xx_PSC_RST_ERR_STAT);
466 tty->flip.char_buf_ptr++;
467 tty->flip.flag_buf_ptr++;
472 tty_flip_buffer_push(tty);
474 return in_be16(&PSC(port)->mpc52xx_psc_status) & MPC52xx_PSC_SR_RXRDY;
478 mpc52xx_uart_int_tx_chars(struct uart_port *port)
480 struct circ_buf *xmit = &port->info->xmit;
482 /* Process out of band chars */
484 out_8(&PSC(port)->mpc52xx_psc_buffer_8, port->x_char);
490 /* Nothing to do ? */
491 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
492 mpc52xx_uart_stop_tx(port);
497 while (in_be16(&PSC(port)->mpc52xx_psc_status) & MPC52xx_PSC_SR_TXRDY) {
498 out_8(&PSC(port)->mpc52xx_psc_buffer_8, xmit->buf[xmit->tail]);
499 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
501 if (uart_circ_empty(xmit))
506 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
507 uart_write_wakeup(port);
509 /* Maybe we're done after all */
510 if (uart_circ_empty(xmit)) {
511 mpc52xx_uart_stop_tx(port);
519 mpc52xx_uart_int(int irq, void *dev_id, struct pt_regs *regs)
521 struct uart_port *port = (struct uart_port *) dev_id;
522 unsigned long pass = ISR_PASS_LIMIT;
523 unsigned int keepgoing;
524 unsigned short status;
526 if ( irq != port->irq ) {
528 "mpc52xx_uart_int : " \
529 "Received wrong int %d. Waiting for %d\n",
534 spin_lock(&port->lock);
536 /* While we have stuff to do, we continue */
538 /* If we don't find anything to do, we stop */
542 status = in_be16(&PSC(port)->mpc52xx_psc_isr);
543 status &= port->read_status_mask;
545 /* Do we need to receive chars ? */
546 /* For this RX interrupts must be on and some chars waiting */
547 if ( status & MPC52xx_PSC_IMR_RXRDY )
548 keepgoing |= mpc52xx_uart_int_rx_chars(port, regs);
550 /* Do we need to send chars ? */
551 /* For this, TX must be ready and TX interrupt enabled */
552 if ( status & MPC52xx_PSC_IMR_TXRDY )
553 keepgoing |= mpc52xx_uart_int_tx_chars(port);
555 /* Limit number of iteration */
561 spin_unlock(&port->lock);
567 /* ======================================================================== */
568 /* Console ( if applicable ) */
569 /* ======================================================================== */
571 #ifdef CONFIG_SERIAL_MPC52xx_CONSOLE
574 mpc52xx_console_get_options(struct uart_port *port,
575 int *baud, int *parity, int *bits, int *flow)
577 struct mpc52xx_psc __iomem *psc = PSC(port);
580 /* Read the mode registers */
581 out_8(&psc->command,MPC52xx_PSC_SEL_MODE_REG_1);
582 mr1 = in_8(&psc->mode);
584 /* CT{U,L}R are write-only ! */
585 *baud = __res.bi_baudrate ?
586 __res.bi_baudrate : CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
589 switch (mr1 & MPC52xx_PSC_MODE_BITS_MASK) {
590 case MPC52xx_PSC_MODE_5_BITS: *bits = 5; break;
591 case MPC52xx_PSC_MODE_6_BITS: *bits = 6; break;
592 case MPC52xx_PSC_MODE_7_BITS: *bits = 7; break;
593 case MPC52xx_PSC_MODE_8_BITS:
597 if (mr1 & MPC52xx_PSC_MODE_PARNONE)
600 *parity = mr1 & MPC52xx_PSC_MODE_PARODD ? 'o' : 'e';
604 mpc52xx_console_write(struct console *co, const char *s, unsigned int count)
606 struct uart_port *port = &mpc52xx_uart_ports[co->index];
607 struct mpc52xx_psc __iomem *psc = PSC(port);
610 /* Disable interrupts */
611 out_be16(&psc->mpc52xx_psc_imr, 0);
613 /* Wait the TX buffer to be empty */
614 j = 5000000; /* Maximum wait */
615 while (!(in_be16(&psc->mpc52xx_psc_status) & MPC52xx_PSC_SR_TXEMP) &&
619 /* Write all the chars */
620 for ( i=0 ; i<count ; i++ ) {
623 out_8(&psc->mpc52xx_psc_buffer_8, *s);
625 /* Line return handling */
627 out_8(&psc->mpc52xx_psc_buffer_8, '\r');
629 /* Wait the TX buffer to be empty */
630 j = 20000; /* Maximum wait */
631 while (!(in_be16(&psc->mpc52xx_psc_status) &
632 MPC52xx_PSC_SR_TXEMP) && --j)
636 /* Restore interrupt state */
637 out_be16(&psc->mpc52xx_psc_imr, port->read_status_mask);
641 mpc52xx_console_setup(struct console *co, char *options)
643 struct uart_port *port = &mpc52xx_uart_ports[co->index];
645 int baud = CONFIG_SERIAL_MPC52xx_CONSOLE_BAUD;
650 if (co->index < 0 || co->index >= MPC52xx_PSC_MAXNUM)
653 /* Basic port init. Needed since we use some uart_??? func before
654 * real init for early access */
655 spin_lock_init(&port->lock);
656 port->uartclk = __res.bi_ipbfreq / 2; /* Look at CTLR doc */
657 port->ops = &mpc52xx_uart_ops;
658 port->mapbase = MPC52xx_PA(MPC52xx_PSCx_OFFSET(co->index+1));
660 /* We ioremap ourself */
661 port->membase = ioremap(port->mapbase, MPC52xx_PSC_SIZE);
662 if (port->membase == NULL)
665 /* Setup the port parameters accoding to options */
667 uart_parse_options(options, &baud, &parity, &bits, &flow);
669 mpc52xx_console_get_options(port, &baud, &parity, &bits, &flow);
671 return uart_set_options(port, co, baud, parity, bits, flow);
675 static struct uart_driver mpc52xx_uart_driver;
677 static struct console mpc52xx_console = {
679 .write = mpc52xx_console_write,
680 .device = uart_console_device,
681 .setup = mpc52xx_console_setup,
682 .flags = CON_PRINTBUFFER,
683 .index = -1, /* Specified on the cmdline (e.g. console=ttyPSC0 ) */
684 .data = &mpc52xx_uart_driver,
689 mpc52xx_console_init(void)
691 register_console(&mpc52xx_console);
695 console_initcall(mpc52xx_console_init);
697 #define MPC52xx_PSC_CONSOLE &mpc52xx_console
699 #define MPC52xx_PSC_CONSOLE NULL
703 /* ======================================================================== */
705 /* ======================================================================== */
707 static struct uart_driver mpc52xx_uart_driver = {
708 .owner = THIS_MODULE,
709 .driver_name = "mpc52xx_psc_uart",
710 .dev_name = "ttyPSC",
711 .devfs_name = "ttyPSC",
712 .major = SERIAL_PSC_MAJOR,
713 .minor = SERIAL_PSC_MINOR,
714 .nr = MPC52xx_PSC_MAXNUM,
715 .cons = MPC52xx_PSC_CONSOLE,
719 /* ======================================================================== */
720 /* Platform Driver */
721 /* ======================================================================== */
724 mpc52xx_uart_probe(struct platform_device *dev)
726 struct resource *res = dev->resource;
728 struct uart_port *port = NULL;
731 /* Check validity & presence */
733 if (idx < 0 || idx >= MPC52xx_PSC_MAXNUM)
736 if (!mpc52xx_match_psc_function(idx,"uart"))
739 /* Init the port structure */
740 port = &mpc52xx_uart_ports[idx];
742 memset(port, 0x00, sizeof(struct uart_port));
744 spin_lock_init(&port->lock);
745 port->uartclk = __res.bi_ipbfreq / 2; /* Look at CTLR doc */
746 port->fifosize = 255; /* Should be 512 ! But it can't be */
747 /* stored in a unsigned char */
748 port->iotype = UPIO_MEM;
749 port->flags = UPF_BOOT_AUTOCONF |
750 ( uart_console(port) ? 0 : UPF_IOREMAP );
752 port->ops = &mpc52xx_uart_ops;
754 /* Search for IRQ and mapbase */
755 for (i=0 ; i<dev->num_resources ; i++, res++) {
756 if (res->flags & IORESOURCE_MEM)
757 port->mapbase = res->start;
758 else if (res->flags & IORESOURCE_IRQ)
759 port->irq = res->start;
761 if (!port->irq || !port->mapbase)
764 /* Add the port to the uart sub-system */
765 ret = uart_add_one_port(&mpc52xx_uart_driver, port);
767 platform_set_drvdata(dev, (void*)port);
773 mpc52xx_uart_remove(struct platform_device *dev)
775 struct uart_port *port = (struct uart_port *) platform_get_drvdata(dev);
777 platform_set_drvdata(dev, NULL);
780 uart_remove_one_port(&mpc52xx_uart_driver, port);
787 mpc52xx_uart_suspend(struct platform_device *dev, pm_message_t state)
789 struct uart_port *port = (struct uart_port *) platform_get_drvdata(dev);
792 uart_suspend_port(&mpc52xx_uart_driver, port);
798 mpc52xx_uart_resume(struct platform_device *dev)
800 struct uart_port *port = (struct uart_port *) platform_get_drvdata(dev);
803 uart_resume_port(&mpc52xx_uart_driver, port);
809 static struct platform_driver mpc52xx_uart_platform_driver = {
810 .probe = mpc52xx_uart_probe,
811 .remove = mpc52xx_uart_remove,
813 .suspend = mpc52xx_uart_suspend,
814 .resume = mpc52xx_uart_resume,
817 .name = "mpc52xx-psc",
822 /* ======================================================================== */
824 /* ======================================================================== */
827 mpc52xx_uart_init(void)
831 printk(KERN_INFO "Serial: MPC52xx PSC driver\n");
833 ret = uart_register_driver(&mpc52xx_uart_driver);
835 ret = platform_driver_register(&mpc52xx_uart_platform_driver);
837 uart_unregister_driver(&mpc52xx_uart_driver);
844 mpc52xx_uart_exit(void)
846 platform_driver_unregister(&mpc52xx_uart_platform_driver);
847 uart_unregister_driver(&mpc52xx_uart_driver);
851 module_init(mpc52xx_uart_init);
852 module_exit(mpc52xx_uart_exit);
854 MODULE_AUTHOR("Sylvain Munaut <tnt@246tNt.com>");
855 MODULE_DESCRIPTION("Freescale MPC52xx PSC UART");
856 MODULE_LICENSE("GPL");