2 * linux/drivers/serial/cpm_uart.c
4 * Driver for CPM (SCC/SMC) serial ports; core driver
6 * Based on arch/ppc/cpm2_io/uart.c by Dan Malek
7 * Based on ppc8xx.c by Thomas Gleixner
8 * Based on drivers/serial/amba.c by Russell King
10 * Maintainer: Kumar Gala (galak@kernel.crashing.org) (CPM2)
11 * Pantelis Antoniou (panto@intracom.gr) (CPM1)
13 * Copyright (C) 2004, 2007 Freescale Semiconductor, Inc.
14 * (C) 2004 Intracom, S.A.
15 * (C) 2005-2006 MontaVista Software, Inc.
16 * Vitaly Bordug <vbordug@ru.mvista.com>
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 #include <linux/module.h>
35 #include <linux/tty.h>
36 #include <linux/ioport.h>
37 #include <linux/init.h>
38 #include <linux/serial.h>
39 #include <linux/console.h>
40 #include <linux/sysrq.h>
41 #include <linux/device.h>
42 #include <linux/bootmem.h>
43 #include <linux/dma-mapping.h>
44 #include <linux/fs_uart_pd.h>
45 #include <linux/of_platform.h>
49 #include <asm/delay.h>
50 #include <asm/fs_pd.h>
53 #if defined(CONFIG_SERIAL_CPM_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
57 #include <linux/serial_core.h>
58 #include <linux/kernel.h>
63 /**************************************************************/
65 static int cpm_uart_tx_pump(struct uart_port *port);
66 static void cpm_uart_init_smc(struct uart_cpm_port *pinfo);
67 static void cpm_uart_init_scc(struct uart_cpm_port *pinfo);
68 static void cpm_uart_initbd(struct uart_cpm_port *pinfo);
70 /**************************************************************/
73 * Check, if transmit buffers are processed
75 static unsigned int cpm_uart_tx_empty(struct uart_port *port)
77 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
78 cbd_t __iomem *bdp = pinfo->tx_bd_base;
82 if (in_be16(&bdp->cbd_sc) & BD_SC_READY)
85 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP) {
92 pr_debug("CPM uart[%d]:tx_empty: %d\n", port->line, ret);
97 static void cpm_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
99 /* Whee. Do nothing. */
102 static unsigned int cpm_uart_get_mctrl(struct uart_port *port)
104 /* Whee. Do nothing. */
105 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
111 static void cpm_uart_stop_tx(struct uart_port *port)
113 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
114 smc_t __iomem *smcp = pinfo->smcp;
115 scc_t __iomem *sccp = pinfo->sccp;
117 pr_debug("CPM uart[%d]:stop tx\n", port->line);
120 clrbits8(&smcp->smc_smcm, SMCM_TX);
122 clrbits16(&sccp->scc_sccm, UART_SCCM_TX);
128 static void cpm_uart_start_tx(struct uart_port *port)
130 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
131 smc_t __iomem *smcp = pinfo->smcp;
132 scc_t __iomem *sccp = pinfo->sccp;
134 pr_debug("CPM uart[%d]:start tx\n", port->line);
137 if (in_8(&smcp->smc_smcm) & SMCM_TX)
140 if (in_be16(&sccp->scc_sccm) & UART_SCCM_TX)
144 if (cpm_uart_tx_pump(port) != 0) {
146 setbits8(&smcp->smc_smcm, SMCM_TX);
148 setbits16(&sccp->scc_sccm, UART_SCCM_TX);
156 static void cpm_uart_stop_rx(struct uart_port *port)
158 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
159 smc_t __iomem *smcp = pinfo->smcp;
160 scc_t __iomem *sccp = pinfo->sccp;
162 pr_debug("CPM uart[%d]:stop rx\n", port->line);
165 clrbits8(&smcp->smc_smcm, SMCM_RX);
167 clrbits16(&sccp->scc_sccm, UART_SCCM_RX);
171 * Enable Modem status interrupts
173 static void cpm_uart_enable_ms(struct uart_port *port)
175 pr_debug("CPM uart[%d]:enable ms\n", port->line);
181 static void cpm_uart_break_ctl(struct uart_port *port, int break_state)
183 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
185 pr_debug("CPM uart[%d]:break ctrl, break_state: %d\n", port->line,
189 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
191 cpm_line_cr_cmd(pinfo, CPM_CR_RESTART_TX);
195 * Transmit characters, refill buffer descriptor, if possible
197 static void cpm_uart_int_tx(struct uart_port *port)
199 pr_debug("CPM uart[%d]:TX INT\n", port->line);
201 cpm_uart_tx_pump(port);
207 static void cpm_uart_int_rx(struct uart_port *port)
212 struct tty_struct *tty = port->info->tty;
213 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
218 pr_debug("CPM uart[%d]:RX INT\n", port->line);
220 /* Just loop through the closed BDs and copy the characters into
226 status = in_be16(&bdp->cbd_sc);
227 /* If this one is empty, return happy */
228 if (status & BD_SC_EMPTY)
231 /* get number of characters, and check spce in flip-buffer */
232 i = in_be16(&bdp->cbd_datlen);
234 /* If we have not enough room in tty flip buffer, then we try
235 * later, which will be the next rx-interrupt or a timeout
237 if(tty_buffer_request_room(tty, i) < i) {
238 printk(KERN_WARNING "No room in flip buffer\n");
243 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
245 /* loop through the buffer */
252 (BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV))
254 if (uart_handle_sysrq_char(port, ch))
258 tty_insert_flip_char(tty, ch, flg);
260 } /* End while (i--) */
262 /* This BD is ready to be used again. Clear status. get next */
263 clrbits16(&bdp->cbd_sc, BD_SC_BR | BD_SC_FR | BD_SC_PR |
264 BD_SC_OV | BD_SC_ID);
265 setbits16(&bdp->cbd_sc, BD_SC_EMPTY);
267 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
268 bdp = pinfo->rx_bd_base;
274 /* Write back buffer pointer */
277 /* activate BH processing */
278 tty_flip_buffer_push(tty);
282 /* Error processing */
286 if (status & BD_SC_BR)
288 if (status & BD_SC_PR)
289 port->icount.parity++;
290 if (status & BD_SC_FR)
291 port->icount.frame++;
292 if (status & BD_SC_OV)
293 port->icount.overrun++;
295 /* Mask out ignored conditions */
296 status &= port->read_status_mask;
298 /* Handle the remaining ones */
299 if (status & BD_SC_BR)
301 else if (status & BD_SC_PR)
303 else if (status & BD_SC_FR)
306 /* overrun does not affect the current character ! */
307 if (status & BD_SC_OV) {
310 /* We skip this buffer */
311 /* CHECK: Is really nothing senseful there */
312 /* ASSUMPTION: it contains nothing valid */
322 * Asynchron mode interrupt handler
324 static irqreturn_t cpm_uart_int(int irq, void *data)
327 struct uart_port *port = data;
328 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
329 smc_t __iomem *smcp = pinfo->smcp;
330 scc_t __iomem *sccp = pinfo->sccp;
332 pr_debug("CPM uart[%d]:IRQ\n", port->line);
335 events = in_8(&smcp->smc_smce);
336 out_8(&smcp->smc_smce, events);
337 if (events & SMCM_BRKE)
338 uart_handle_break(port);
339 if (events & SMCM_RX)
340 cpm_uart_int_rx(port);
341 if (events & SMCM_TX)
342 cpm_uart_int_tx(port);
344 events = in_be16(&sccp->scc_scce);
345 out_be16(&sccp->scc_scce, events);
346 if (events & UART_SCCM_BRKE)
347 uart_handle_break(port);
348 if (events & UART_SCCM_RX)
349 cpm_uart_int_rx(port);
350 if (events & UART_SCCM_TX)
351 cpm_uart_int_tx(port);
353 return (events) ? IRQ_HANDLED : IRQ_NONE;
356 static int cpm_uart_startup(struct uart_port *port)
359 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
361 pr_debug("CPM uart[%d]:startup\n", port->line);
363 /* Install interrupt handler. */
364 retval = request_irq(port->irq, cpm_uart_int, 0, "cpm_uart", port);
370 setbits8(&pinfo->smcp->smc_smcm, SMCM_RX);
371 setbits16(&pinfo->smcp->smc_smcmr, (SMCMR_REN | SMCMR_TEN));
373 setbits16(&pinfo->sccp->scc_sccm, UART_SCCM_RX);
374 setbits32(&pinfo->sccp->scc_gsmrl, (SCC_GSMRL_ENR | SCC_GSMRL_ENT));
377 if (!(pinfo->flags & FLAG_CONSOLE))
378 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
382 inline void cpm_uart_wait_until_send(struct uart_cpm_port *pinfo)
384 set_current_state(TASK_UNINTERRUPTIBLE);
385 schedule_timeout(pinfo->wait_closing);
391 static void cpm_uart_shutdown(struct uart_port *port)
393 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
395 pr_debug("CPM uart[%d]:shutdown\n", port->line);
397 /* free interrupt handler */
398 free_irq(port->irq, port);
400 /* If the port is not the console, disable Rx and Tx. */
401 if (!(pinfo->flags & FLAG_CONSOLE)) {
402 /* Wait for all the BDs marked sent */
403 while(!cpm_uart_tx_empty(port)) {
404 set_current_state(TASK_UNINTERRUPTIBLE);
408 if (pinfo->wait_closing)
409 cpm_uart_wait_until_send(pinfo);
413 smc_t __iomem *smcp = pinfo->smcp;
414 clrbits16(&smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
415 clrbits8(&smcp->smc_smcm, SMCM_RX | SMCM_TX);
417 scc_t __iomem *sccp = pinfo->sccp;
418 clrbits32(&sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
419 clrbits16(&sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
422 /* Shut them really down and reinit buffer descriptors */
424 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
426 cpm_line_cr_cmd(pinfo, CPM_CR_GRA_STOP_TX);
428 cpm_uart_initbd(pinfo);
432 static void cpm_uart_set_termios(struct uart_port *port,
433 struct ktermios *termios,
434 struct ktermios *old)
438 u16 cval, scval, prev_mode;
440 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
441 smc_t __iomem *smcp = pinfo->smcp;
442 scc_t __iomem *sccp = pinfo->sccp;
444 pr_debug("CPM uart[%d]:set_termios\n", port->line);
446 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
448 /* Character length programmed into the mode register is the
449 * sum of: 1 start bit, number of data bits, 0 or 1 parity bit,
450 * 1 or 2 stop bits, minus 1.
451 * The value 'bits' counts this for us.
457 switch (termios->c_cflag & CSIZE) {
470 /* Never happens, but GCC is too dumb to figure it out */
477 if (termios->c_cflag & CSTOPB) {
478 cval |= SMCMR_SL; /* Two stops */
479 scval |= SCU_PSMR_SL;
483 if (termios->c_cflag & PARENB) {
485 scval |= SCU_PSMR_PEN;
487 if (!(termios->c_cflag & PARODD)) {
488 cval |= SMCMR_PM_EVEN;
489 scval |= (SCU_PSMR_REVP | SCU_PSMR_TEVP);
496 uart_update_timeout(port, termios->c_cflag, baud);
499 * Set up parity check flag
501 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
503 port->read_status_mask = (BD_SC_EMPTY | BD_SC_OV);
504 if (termios->c_iflag & INPCK)
505 port->read_status_mask |= BD_SC_FR | BD_SC_PR;
506 if ((termios->c_iflag & BRKINT) || (termios->c_iflag & PARMRK))
507 port->read_status_mask |= BD_SC_BR;
510 * Characters to ignore
512 port->ignore_status_mask = 0;
513 if (termios->c_iflag & IGNPAR)
514 port->ignore_status_mask |= BD_SC_PR | BD_SC_FR;
515 if (termios->c_iflag & IGNBRK) {
516 port->ignore_status_mask |= BD_SC_BR;
518 * If we're ignore parity and break indicators, ignore
519 * overruns too. (For real raw support).
521 if (termios->c_iflag & IGNPAR)
522 port->ignore_status_mask |= BD_SC_OV;
525 * !!! ignore all characters if CREAD is not set
527 if ((termios->c_cflag & CREAD) == 0)
528 port->read_status_mask &= ~BD_SC_EMPTY;
530 spin_lock_irqsave(&port->lock, flags);
532 /* Start bit has not been added (so don't, because we would just
533 * subtract it later), and we need to add one for the number of
534 * stops bits (there is always at least one).
538 /* Set the mode register. We want to keep a copy of the
539 * enables, because we want to put them back if they were
542 prev_mode = in_be16(&smcp->smc_smcmr);
543 out_be16(&smcp->smc_smcmr, smcr_mk_clen(bits) | cval | SMCMR_SM_UART);
544 setbits16(&smcp->smc_smcmr, (prev_mode & (SMCMR_REN | SMCMR_TEN)));
546 out_be16(&sccp->scc_psmr, (sbits << 12) | scval);
549 cpm_set_brg(pinfo->brg - 1, baud);
550 spin_unlock_irqrestore(&port->lock, flags);
553 static const char *cpm_uart_type(struct uart_port *port)
555 pr_debug("CPM uart[%d]:uart_type\n", port->line);
557 return port->type == PORT_CPM ? "CPM UART" : NULL;
561 * verify the new serial_struct (for TIOCSSERIAL).
563 static int cpm_uart_verify_port(struct uart_port *port,
564 struct serial_struct *ser)
568 pr_debug("CPM uart[%d]:verify_port\n", port->line);
570 if (ser->type != PORT_UNKNOWN && ser->type != PORT_CPM)
572 if (ser->irq < 0 || ser->irq >= NR_IRQS)
574 if (ser->baud_base < 9600)
580 * Transmit characters, refill buffer descriptor, if possible
582 static int cpm_uart_tx_pump(struct uart_port *port)
587 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
588 struct circ_buf *xmit = &port->info->xmit;
590 /* Handle xon/xoff */
592 /* Pick next descriptor and fill from buffer */
595 p = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
599 out_be16(&bdp->cbd_datlen, 1);
600 setbits16(&bdp->cbd_sc, BD_SC_READY);
602 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
603 bdp = pinfo->tx_bd_base;
613 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
614 cpm_uart_stop_tx(port);
618 /* Pick next descriptor and fill from buffer */
621 while (!(in_be16(&bdp->cbd_sc) & BD_SC_READY) &&
622 xmit->tail != xmit->head) {
624 p = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
625 while (count < pinfo->tx_fifosize) {
626 *p++ = xmit->buf[xmit->tail];
627 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
630 if (xmit->head == xmit->tail)
633 out_be16(&bdp->cbd_datlen, count);
634 setbits16(&bdp->cbd_sc, BD_SC_READY);
636 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
637 bdp = pinfo->tx_bd_base;
643 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
644 uart_write_wakeup(port);
646 if (uart_circ_empty(xmit)) {
647 cpm_uart_stop_tx(port);
655 * init buffer descriptors
657 static void cpm_uart_initbd(struct uart_cpm_port *pinfo)
663 pr_debug("CPM uart[%d]:initbd\n", pinfo->port.line);
665 /* Set the physical address of the host memory
666 * buffers in the buffer descriptors, and the
667 * virtual address for us to work with.
669 mem_addr = pinfo->mem_addr;
670 bdp = pinfo->rx_cur = pinfo->rx_bd_base;
671 for (i = 0; i < (pinfo->rx_nrfifos - 1); i++, bdp++) {
672 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
673 out_be16(&bdp->cbd_sc, BD_SC_EMPTY | BD_SC_INTRPT);
674 mem_addr += pinfo->rx_fifosize;
677 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
678 out_be16(&bdp->cbd_sc, BD_SC_WRAP | BD_SC_EMPTY | BD_SC_INTRPT);
680 /* Set the physical address of the host memory
681 * buffers in the buffer descriptors, and the
682 * virtual address for us to work with.
684 mem_addr = pinfo->mem_addr + L1_CACHE_ALIGN(pinfo->rx_nrfifos * pinfo->rx_fifosize);
685 bdp = pinfo->tx_cur = pinfo->tx_bd_base;
686 for (i = 0; i < (pinfo->tx_nrfifos - 1); i++, bdp++) {
687 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
688 out_be16(&bdp->cbd_sc, BD_SC_INTRPT);
689 mem_addr += pinfo->tx_fifosize;
692 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
693 out_be16(&bdp->cbd_sc, BD_SC_WRAP | BD_SC_INTRPT);
696 static void cpm_uart_init_scc(struct uart_cpm_port *pinfo)
699 scc_uart_t __iomem *sup;
701 pr_debug("CPM uart[%d]:init_scc\n", pinfo->port.line);
707 out_be16(&pinfo->sccup->scc_genscc.scc_rbase,
708 (u8 __iomem *)pinfo->rx_bd_base - DPRAM_BASE);
709 out_be16(&pinfo->sccup->scc_genscc.scc_tbase,
710 (u8 __iomem *)pinfo->tx_bd_base - DPRAM_BASE);
712 /* Set up the uart parameters in the
716 cpm_set_scc_fcr(sup);
718 out_be16(&sup->scc_genscc.scc_mrblr, pinfo->rx_fifosize);
719 out_be16(&sup->scc_maxidl, pinfo->rx_fifosize);
720 out_be16(&sup->scc_brkcr, 1);
721 out_be16(&sup->scc_parec, 0);
722 out_be16(&sup->scc_frmec, 0);
723 out_be16(&sup->scc_nosec, 0);
724 out_be16(&sup->scc_brkec, 0);
725 out_be16(&sup->scc_uaddr1, 0);
726 out_be16(&sup->scc_uaddr2, 0);
727 out_be16(&sup->scc_toseq, 0);
728 out_be16(&sup->scc_char1, 0x8000);
729 out_be16(&sup->scc_char2, 0x8000);
730 out_be16(&sup->scc_char3, 0x8000);
731 out_be16(&sup->scc_char4, 0x8000);
732 out_be16(&sup->scc_char5, 0x8000);
733 out_be16(&sup->scc_char6, 0x8000);
734 out_be16(&sup->scc_char7, 0x8000);
735 out_be16(&sup->scc_char8, 0x8000);
736 out_be16(&sup->scc_rccm, 0xc0ff);
738 /* Send the CPM an initialize command.
740 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
742 /* Set UART mode, 8 bit, no parity, one stop.
743 * Enable receive and transmit.
745 out_be32(&scp->scc_gsmrh, 0);
746 out_be32(&scp->scc_gsmrl,
747 SCC_GSMRL_MODE_UART | SCC_GSMRL_TDCR_16 | SCC_GSMRL_RDCR_16);
749 /* Enable rx interrupts and clear all pending events. */
750 out_be16(&scp->scc_sccm, 0);
751 out_be16(&scp->scc_scce, 0xffff);
752 out_be16(&scp->scc_dsr, 0x7e7e);
753 out_be16(&scp->scc_psmr, 0x3000);
755 setbits32(&scp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
758 static void cpm_uart_init_smc(struct uart_cpm_port *pinfo)
761 smc_uart_t __iomem *up;
763 pr_debug("CPM uart[%d]:init_smc\n", pinfo->port.line);
769 out_be16(&pinfo->smcup->smc_rbase,
770 (u8 __iomem *)pinfo->rx_bd_base - DPRAM_BASE);
771 out_be16(&pinfo->smcup->smc_tbase,
772 (u8 __iomem *)pinfo->tx_bd_base - DPRAM_BASE);
775 * In case SMC1 is being relocated...
777 #if defined (CONFIG_I2C_SPI_SMC1_UCODE_PATCH)
778 out_be16(&up->smc_rbptr, in_be16(&pinfo->smcup->smc_rbase));
779 out_be16(&up->smc_tbptr, in_be16(&pinfo->smcup->smc_tbase));
780 out_be32(&up->smc_rstate, 0);
781 out_be32(&up->smc_tstate, 0);
782 out_be16(&up->smc_brkcr, 1); /* number of break chars */
783 out_be16(&up->smc_brkec, 0);
786 /* Set up the uart parameters in the
791 /* Using idle charater time requires some additional tuning. */
792 out_be16(&up->smc_mrblr, pinfo->rx_fifosize);
793 out_be16(&up->smc_maxidl, pinfo->rx_fifosize);
794 out_be16(&up->smc_brklen, 0);
795 out_be16(&up->smc_brkec, 0);
796 out_be16(&up->smc_brkcr, 1);
798 cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
800 /* Set UART mode, 8 bit, no parity, one stop.
801 * Enable receive and transmit.
803 out_be16(&sp->smc_smcmr, smcr_mk_clen(9) | SMCMR_SM_UART);
805 /* Enable only rx interrupts clear all pending events. */
806 out_8(&sp->smc_smcm, 0);
807 out_8(&sp->smc_smce, 0xff);
809 setbits16(&sp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
813 * Initialize port. This is called from early_console stuff
814 * so we have to be careful here !
816 static int cpm_uart_request_port(struct uart_port *port)
818 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
821 pr_debug("CPM uart[%d]:request port\n", port->line);
823 if (pinfo->flags & FLAG_CONSOLE)
827 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX | SMCM_TX);
828 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
830 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
831 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
834 ret = cpm_uart_allocbuf(pinfo, 0);
839 cpm_uart_initbd(pinfo);
841 cpm_uart_init_smc(pinfo);
843 cpm_uart_init_scc(pinfo);
848 static void cpm_uart_release_port(struct uart_port *port)
850 struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
852 if (!(pinfo->flags & FLAG_CONSOLE))
853 cpm_uart_freebuf(pinfo);
857 * Configure/autoconfigure the port.
859 static void cpm_uart_config_port(struct uart_port *port, int flags)
861 pr_debug("CPM uart[%d]:config_port\n", port->line);
863 if (flags & UART_CONFIG_TYPE) {
864 port->type = PORT_CPM;
865 cpm_uart_request_port(port);
868 static struct uart_ops cpm_uart_pops = {
869 .tx_empty = cpm_uart_tx_empty,
870 .set_mctrl = cpm_uart_set_mctrl,
871 .get_mctrl = cpm_uart_get_mctrl,
872 .stop_tx = cpm_uart_stop_tx,
873 .start_tx = cpm_uart_start_tx,
874 .stop_rx = cpm_uart_stop_rx,
875 .enable_ms = cpm_uart_enable_ms,
876 .break_ctl = cpm_uart_break_ctl,
877 .startup = cpm_uart_startup,
878 .shutdown = cpm_uart_shutdown,
879 .set_termios = cpm_uart_set_termios,
880 .type = cpm_uart_type,
881 .release_port = cpm_uart_release_port,
882 .request_port = cpm_uart_request_port,
883 .config_port = cpm_uart_config_port,
884 .verify_port = cpm_uart_verify_port,
887 struct uart_cpm_port cpm_uart_ports[UART_NR];
889 static int cpm_uart_init_port(struct device_node *np,
890 struct uart_cpm_port *pinfo)
893 void __iomem *mem, *pram;
897 data = of_get_property(np, "fsl,cpm-brg", &len);
898 if (!data || len != 4) {
899 printk(KERN_ERR "CPM UART %s has no/invalid "
900 "fsl,cpm-brg property.\n", np->name);
905 data = of_get_property(np, "fsl,cpm-command", &len);
906 if (!data || len != 4) {
907 printk(KERN_ERR "CPM UART %s has no/invalid "
908 "fsl,cpm-command property.\n", np->name);
911 pinfo->command = *data;
913 mem = of_iomap(np, 0);
917 if (of_device_is_compatible(np, "fsl,cpm1-scc-uart") ||
918 of_device_is_compatible(np, "fsl,cpm2-scc-uart")) {
920 pinfo->sccup = pram = cpm_uart_map_pram(pinfo, np);
921 } else if (of_device_is_compatible(np, "fsl,cpm1-smc-uart") ||
922 of_device_is_compatible(np, "fsl,cpm2-smc-uart")) {
923 pinfo->flags |= FLAG_SMC;
925 pinfo->smcup = pram = cpm_uart_map_pram(pinfo, np);
936 pinfo->tx_nrfifos = TX_NUM_FIFO;
937 pinfo->tx_fifosize = TX_BUF_SIZE;
938 pinfo->rx_nrfifos = RX_NUM_FIFO;
939 pinfo->rx_fifosize = RX_BUF_SIZE;
941 pinfo->port.uartclk = ppc_proc_freq;
942 pinfo->port.mapbase = (unsigned long)mem;
943 pinfo->port.type = PORT_CPM;
944 pinfo->port.ops = &cpm_uart_pops,
945 pinfo->port.iotype = UPIO_MEM;
946 pinfo->port.fifosize = pinfo->tx_nrfifos * pinfo->tx_fifosize;
947 spin_lock_init(&pinfo->port.lock);
949 pinfo->port.irq = of_irq_to_resource(np, 0, NULL);
950 if (pinfo->port.irq == NO_IRQ) {
955 return cpm_uart_request_port(&pinfo->port);
958 cpm_uart_unmap_pram(pinfo, pram);
964 #ifdef CONFIG_SERIAL_CPM_CONSOLE
966 * Print a string to the serial port trying not to disturb
967 * any possible real use of the port...
969 * Note that this is called with interrupts already disabled
971 static void cpm_uart_console_write(struct console *co, const char *s,
974 struct uart_cpm_port *pinfo = &cpm_uart_ports[co->index];
976 cbd_t __iomem *bdp, *bdbase;
979 int nolock = oops_in_progress;
981 if (unlikely(nolock)) {
982 local_irq_save(flags);
984 spin_lock_irqsave(&pinfo->port.lock, flags);
987 /* Get the address of the host memory buffer.
990 bdbase = pinfo->tx_bd_base;
993 * Now, do each character. This is not as bad as it looks
994 * since this is a holding FIFO and not a transmitting FIFO.
995 * We could add the complexity of filling the entire transmit
996 * buffer, but we would just wait longer between accesses......
998 for (i = 0; i < count; i++, s++) {
999 /* Wait for transmitter fifo to empty.
1000 * Ready indicates output is ready, and xmt is doing
1001 * that, not that it is ready for us to send.
1003 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
1006 /* Send the character out.
1007 * If the buffer address is in the CPM DPRAM, don't
1010 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
1013 out_be16(&bdp->cbd_datlen, 1);
1014 setbits16(&bdp->cbd_sc, BD_SC_READY);
1016 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
1021 /* if a LF, also do CR... */
1023 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
1026 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
1029 out_be16(&bdp->cbd_datlen, 1);
1030 setbits16(&bdp->cbd_sc, BD_SC_READY);
1032 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
1040 * Finally, Wait for transmitter & holding register to empty
1041 * and restore the IER
1043 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
1046 pinfo->tx_cur = bdp;
1048 if (unlikely(nolock)) {
1049 local_irq_restore(flags);
1051 spin_unlock_irqrestore(&pinfo->port.lock, flags);
1056 static int __init cpm_uart_console_setup(struct console *co, char *options)
1063 struct uart_cpm_port *pinfo;
1064 struct uart_port *port;
1066 struct device_node *np = NULL;
1069 if (co->index >= UART_NR) {
1070 printk(KERN_ERR "cpm_uart: console index %d too high\n",
1076 np = of_find_node_by_type(np, "serial");
1080 if (!of_device_is_compatible(np, "fsl,cpm1-smc-uart") &&
1081 !of_device_is_compatible(np, "fsl,cpm1-scc-uart") &&
1082 !of_device_is_compatible(np, "fsl,cpm2-smc-uart") &&
1083 !of_device_is_compatible(np, "fsl,cpm2-scc-uart"))
1085 } while (i++ != co->index);
1087 pinfo = &cpm_uart_ports[co->index];
1089 pinfo->flags |= FLAG_CONSOLE;
1090 port = &pinfo->port;
1092 ret = cpm_uart_init_port(np, pinfo);
1098 uart_parse_options(options, &baud, &parity, &bits, &flow);
1100 if ((baud = uart_baudrate()) == -1)
1104 #ifdef CONFIG_PPC_EARLY_DEBUG_CPM
1108 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
1110 if (IS_SMC(pinfo)) {
1111 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX | SMCM_TX);
1112 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
1114 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
1115 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
1118 ret = cpm_uart_allocbuf(pinfo, 1);
1123 cpm_uart_initbd(pinfo);
1126 cpm_uart_init_smc(pinfo);
1128 cpm_uart_init_scc(pinfo);
1130 uart_set_options(port, co, baud, parity, bits, flow);
1131 cpm_line_cr_cmd(pinfo, CPM_CR_RESTART_TX);
1136 static struct uart_driver cpm_reg;
1137 static struct console cpm_scc_uart_console = {
1139 .write = cpm_uart_console_write,
1140 .device = uart_console_device,
1141 .setup = cpm_uart_console_setup,
1142 .flags = CON_PRINTBUFFER,
1147 static int __init cpm_uart_console_init(void)
1149 register_console(&cpm_scc_uart_console);
1153 console_initcall(cpm_uart_console_init);
1155 #define CPM_UART_CONSOLE &cpm_scc_uart_console
1157 #define CPM_UART_CONSOLE NULL
1160 static struct uart_driver cpm_reg = {
1161 .owner = THIS_MODULE,
1162 .driver_name = "ttyCPM",
1163 .dev_name = "ttyCPM",
1164 .major = SERIAL_CPM_MAJOR,
1165 .minor = SERIAL_CPM_MINOR,
1166 .cons = CPM_UART_CONSOLE,
1170 static int probe_index;
1172 static int __devinit cpm_uart_probe(struct of_device *ofdev,
1173 const struct of_device_id *match)
1175 int index = probe_index++;
1176 struct uart_cpm_port *pinfo = &cpm_uart_ports[index];
1179 pinfo->port.line = index;
1181 if (index >= UART_NR)
1184 dev_set_drvdata(&ofdev->dev, pinfo);
1186 ret = cpm_uart_init_port(ofdev->node, pinfo);
1190 return uart_add_one_port(&cpm_reg, &pinfo->port);
1193 static int __devexit cpm_uart_remove(struct of_device *ofdev)
1195 struct uart_cpm_port *pinfo = dev_get_drvdata(&ofdev->dev);
1196 return uart_remove_one_port(&cpm_reg, &pinfo->port);
1199 static struct of_device_id cpm_uart_match[] = {
1201 .compatible = "fsl,cpm1-smc-uart",
1204 .compatible = "fsl,cpm1-scc-uart",
1207 .compatible = "fsl,cpm2-smc-uart",
1210 .compatible = "fsl,cpm2-scc-uart",
1215 static struct of_platform_driver cpm_uart_driver = {
1217 .match_table = cpm_uart_match,
1218 .probe = cpm_uart_probe,
1219 .remove = cpm_uart_remove,
1222 static int __init cpm_uart_init(void)
1224 int ret = uart_register_driver(&cpm_reg);
1228 ret = of_register_platform_driver(&cpm_uart_driver);
1230 uart_unregister_driver(&cpm_reg);
1235 static void __exit cpm_uart_exit(void)
1237 of_unregister_platform_driver(&cpm_uart_driver);
1238 uart_unregister_driver(&cpm_reg);
1241 module_init(cpm_uart_init);
1242 module_exit(cpm_uart_exit);
1244 MODULE_AUTHOR("Kumar Gala/Antoniou Pantelis");
1245 MODULE_DESCRIPTION("CPM SCC/SMC port driver $Revision: 0.01 $");
1246 MODULE_LICENSE("GPL");
1247 MODULE_ALIAS_CHARDEV(SERIAL_CPM_MAJOR, SERIAL_CPM_MINOR);