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>
46 #include <linux/gpio.h>
47 #include <linux/of_gpio.h>
48 #include <linux/clk.h>
52 #include <asm/delay.h>
53 #include <asm/fs_pd.h>
56 #if defined(CONFIG_SERIAL_CPM_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
60 #include <linux/serial_core.h>
61 #include <linux/kernel.h>
66 /**************************************************************/
68 static int cpm_uart_tx_pump(struct uart_port
*port
);
69 static void cpm_uart_init_smc(struct uart_cpm_port
*pinfo
);
70 static void cpm_uart_init_scc(struct uart_cpm_port
*pinfo
);
71 static void cpm_uart_initbd(struct uart_cpm_port
*pinfo
);
73 /**************************************************************/
76 * Check, if transmit buffers are processed
78 static unsigned int cpm_uart_tx_empty(struct uart_port
*port
)
80 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
81 cbd_t __iomem
*bdp
= pinfo
->tx_bd_base
;
85 if (in_be16(&bdp
->cbd_sc
) & BD_SC_READY
)
88 if (in_be16(&bdp
->cbd_sc
) & BD_SC_WRAP
) {
95 pr_debug("CPM uart[%d]:tx_empty: %d\n", port
->line
, ret
);
100 static void cpm_uart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
102 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
104 if (pinfo
->gpios
[GPIO_RTS
] >= 0)
105 gpio_set_value(pinfo
->gpios
[GPIO_RTS
], !(mctrl
& TIOCM_RTS
));
107 if (pinfo
->gpios
[GPIO_DTR
] >= 0)
108 gpio_set_value(pinfo
->gpios
[GPIO_DTR
], !(mctrl
& TIOCM_DTR
));
111 static unsigned int cpm_uart_get_mctrl(struct uart_port
*port
)
113 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
114 unsigned int mctrl
= TIOCM_CTS
| TIOCM_DSR
| TIOCM_CAR
;
116 if (pinfo
->gpios
[GPIO_CTS
] >= 0) {
117 if (gpio_get_value(pinfo
->gpios
[GPIO_CTS
]))
121 if (pinfo
->gpios
[GPIO_DSR
] >= 0) {
122 if (gpio_get_value(pinfo
->gpios
[GPIO_DSR
]))
126 if (pinfo
->gpios
[GPIO_DCD
] >= 0) {
127 if (gpio_get_value(pinfo
->gpios
[GPIO_DCD
]))
131 if (pinfo
->gpios
[GPIO_RI
] >= 0) {
132 if (!gpio_get_value(pinfo
->gpios
[GPIO_RI
]))
142 static void cpm_uart_stop_tx(struct uart_port
*port
)
144 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
145 smc_t __iomem
*smcp
= pinfo
->smcp
;
146 scc_t __iomem
*sccp
= pinfo
->sccp
;
148 pr_debug("CPM uart[%d]:stop tx\n", port
->line
);
151 clrbits8(&smcp
->smc_smcm
, SMCM_TX
);
153 clrbits16(&sccp
->scc_sccm
, UART_SCCM_TX
);
159 static void cpm_uart_start_tx(struct uart_port
*port
)
161 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
162 smc_t __iomem
*smcp
= pinfo
->smcp
;
163 scc_t __iomem
*sccp
= pinfo
->sccp
;
165 pr_debug("CPM uart[%d]:start tx\n", port
->line
);
168 if (in_8(&smcp
->smc_smcm
) & SMCM_TX
)
171 if (in_be16(&sccp
->scc_sccm
) & UART_SCCM_TX
)
175 if (cpm_uart_tx_pump(port
) != 0) {
177 setbits8(&smcp
->smc_smcm
, SMCM_TX
);
179 setbits16(&sccp
->scc_sccm
, UART_SCCM_TX
);
187 static void cpm_uart_stop_rx(struct uart_port
*port
)
189 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
190 smc_t __iomem
*smcp
= pinfo
->smcp
;
191 scc_t __iomem
*sccp
= pinfo
->sccp
;
193 pr_debug("CPM uart[%d]:stop rx\n", port
->line
);
196 clrbits8(&smcp
->smc_smcm
, SMCM_RX
);
198 clrbits16(&sccp
->scc_sccm
, UART_SCCM_RX
);
202 * Enable Modem status interrupts
204 static void cpm_uart_enable_ms(struct uart_port
*port
)
206 pr_debug("CPM uart[%d]:enable ms\n", port
->line
);
212 static void cpm_uart_break_ctl(struct uart_port
*port
, int break_state
)
214 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
216 pr_debug("CPM uart[%d]:break ctrl, break_state: %d\n", port
->line
,
220 cpm_line_cr_cmd(pinfo
, CPM_CR_STOP_TX
);
222 cpm_line_cr_cmd(pinfo
, CPM_CR_RESTART_TX
);
226 * Transmit characters, refill buffer descriptor, if possible
228 static void cpm_uart_int_tx(struct uart_port
*port
)
230 pr_debug("CPM uart[%d]:TX INT\n", port
->line
);
232 cpm_uart_tx_pump(port
);
235 #ifdef CONFIG_CONSOLE_POLL
236 static int serial_polled
;
242 static void cpm_uart_int_rx(struct uart_port
*port
)
247 struct tty_struct
*tty
= port
->state
->port
.tty
;
248 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
253 pr_debug("CPM uart[%d]:RX INT\n", port
->line
);
255 /* Just loop through the closed BDs and copy the characters into
260 #ifdef CONFIG_CONSOLE_POLL
261 if (unlikely(serial_polled
)) {
267 status
= in_be16(&bdp
->cbd_sc
);
268 /* If this one is empty, return happy */
269 if (status
& BD_SC_EMPTY
)
272 /* get number of characters, and check spce in flip-buffer */
273 i
= in_be16(&bdp
->cbd_datlen
);
275 /* If we have not enough room in tty flip buffer, then we try
276 * later, which will be the next rx-interrupt or a timeout
278 if(tty_buffer_request_room(tty
, i
) < i
) {
279 printk(KERN_WARNING
"No room in flip buffer\n");
284 cp
= cpm2cpu_addr(in_be32(&bdp
->cbd_bufaddr
), pinfo
);
286 /* loop through the buffer */
293 (BD_SC_BR
| BD_SC_FR
| BD_SC_PR
| BD_SC_OV
))
295 if (uart_handle_sysrq_char(port
, ch
))
297 #ifdef CONFIG_CONSOLE_POLL
298 if (unlikely(serial_polled
)) {
304 tty_insert_flip_char(tty
, ch
, flg
);
306 } /* End while (i--) */
308 /* This BD is ready to be used again. Clear status. get next */
309 clrbits16(&bdp
->cbd_sc
, BD_SC_BR
| BD_SC_FR
| BD_SC_PR
|
310 BD_SC_OV
| BD_SC_ID
);
311 setbits16(&bdp
->cbd_sc
, BD_SC_EMPTY
);
313 if (in_be16(&bdp
->cbd_sc
) & BD_SC_WRAP
)
314 bdp
= pinfo
->rx_bd_base
;
320 /* Write back buffer pointer */
323 /* activate BH processing */
324 tty_flip_buffer_push(tty
);
328 /* Error processing */
332 if (status
& BD_SC_BR
)
334 if (status
& BD_SC_PR
)
335 port
->icount
.parity
++;
336 if (status
& BD_SC_FR
)
337 port
->icount
.frame
++;
338 if (status
& BD_SC_OV
)
339 port
->icount
.overrun
++;
341 /* Mask out ignored conditions */
342 status
&= port
->read_status_mask
;
344 /* Handle the remaining ones */
345 if (status
& BD_SC_BR
)
347 else if (status
& BD_SC_PR
)
349 else if (status
& BD_SC_FR
)
352 /* overrun does not affect the current character ! */
353 if (status
& BD_SC_OV
) {
356 /* We skip this buffer */
357 /* CHECK: Is really nothing senseful there */
358 /* ASSUMPTION: it contains nothing valid */
368 * Asynchron mode interrupt handler
370 static irqreturn_t
cpm_uart_int(int irq
, void *data
)
373 struct uart_port
*port
= data
;
374 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
375 smc_t __iomem
*smcp
= pinfo
->smcp
;
376 scc_t __iomem
*sccp
= pinfo
->sccp
;
378 pr_debug("CPM uart[%d]:IRQ\n", port
->line
);
381 events
= in_8(&smcp
->smc_smce
);
382 out_8(&smcp
->smc_smce
, events
);
383 if (events
& SMCM_BRKE
)
384 uart_handle_break(port
);
385 if (events
& SMCM_RX
)
386 cpm_uart_int_rx(port
);
387 if (events
& SMCM_TX
)
388 cpm_uart_int_tx(port
);
390 events
= in_be16(&sccp
->scc_scce
);
391 out_be16(&sccp
->scc_scce
, events
);
392 if (events
& UART_SCCM_BRKE
)
393 uart_handle_break(port
);
394 if (events
& UART_SCCM_RX
)
395 cpm_uart_int_rx(port
);
396 if (events
& UART_SCCM_TX
)
397 cpm_uart_int_tx(port
);
399 return (events
) ? IRQ_HANDLED
: IRQ_NONE
;
402 static int cpm_uart_startup(struct uart_port
*port
)
405 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
407 pr_debug("CPM uart[%d]:startup\n", port
->line
);
409 /* If the port is not the console, make sure rx is disabled. */
410 if (!(pinfo
->flags
& FLAG_CONSOLE
)) {
411 /* Disable UART rx */
413 clrbits16(&pinfo
->smcp
->smc_smcmr
, SMCMR_REN
);
414 clrbits8(&pinfo
->smcp
->smc_smcm
, SMCM_RX
);
416 clrbits32(&pinfo
->sccp
->scc_gsmrl
, SCC_GSMRL_ENR
);
417 clrbits16(&pinfo
->sccp
->scc_sccm
, UART_SCCM_RX
);
419 cpm_line_cr_cmd(pinfo
, CPM_CR_INIT_TRX
);
421 /* Install interrupt handler. */
422 retval
= request_irq(port
->irq
, cpm_uart_int
, 0, "cpm_uart", port
);
428 setbits8(&pinfo
->smcp
->smc_smcm
, SMCM_RX
);
429 setbits16(&pinfo
->smcp
->smc_smcmr
, (SMCMR_REN
| SMCMR_TEN
));
431 setbits16(&pinfo
->sccp
->scc_sccm
, UART_SCCM_RX
);
432 setbits32(&pinfo
->sccp
->scc_gsmrl
, (SCC_GSMRL_ENR
| SCC_GSMRL_ENT
));
438 inline void cpm_uart_wait_until_send(struct uart_cpm_port
*pinfo
)
440 set_current_state(TASK_UNINTERRUPTIBLE
);
441 schedule_timeout(pinfo
->wait_closing
);
447 static void cpm_uart_shutdown(struct uart_port
*port
)
449 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
451 pr_debug("CPM uart[%d]:shutdown\n", port
->line
);
453 /* free interrupt handler */
454 free_irq(port
->irq
, port
);
456 /* If the port is not the console, disable Rx and Tx. */
457 if (!(pinfo
->flags
& FLAG_CONSOLE
)) {
458 /* Wait for all the BDs marked sent */
459 while(!cpm_uart_tx_empty(port
)) {
460 set_current_state(TASK_UNINTERRUPTIBLE
);
464 if (pinfo
->wait_closing
)
465 cpm_uart_wait_until_send(pinfo
);
469 smc_t __iomem
*smcp
= pinfo
->smcp
;
470 clrbits16(&smcp
->smc_smcmr
, SMCMR_REN
| SMCMR_TEN
);
471 clrbits8(&smcp
->smc_smcm
, SMCM_RX
| SMCM_TX
);
473 scc_t __iomem
*sccp
= pinfo
->sccp
;
474 clrbits32(&sccp
->scc_gsmrl
, SCC_GSMRL_ENR
| SCC_GSMRL_ENT
);
475 clrbits16(&sccp
->scc_sccm
, UART_SCCM_TX
| UART_SCCM_RX
);
478 /* Shut them really down and reinit buffer descriptors */
480 out_be16(&pinfo
->smcup
->smc_brkcr
, 0);
481 cpm_line_cr_cmd(pinfo
, CPM_CR_STOP_TX
);
483 out_be16(&pinfo
->sccup
->scc_brkcr
, 0);
484 cpm_line_cr_cmd(pinfo
, CPM_CR_GRA_STOP_TX
);
487 cpm_uart_initbd(pinfo
);
491 static void cpm_uart_set_termios(struct uart_port
*port
,
492 struct ktermios
*termios
,
493 struct ktermios
*old
)
497 u16 cval
, scval
, prev_mode
;
499 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
500 smc_t __iomem
*smcp
= pinfo
->smcp
;
501 scc_t __iomem
*sccp
= pinfo
->sccp
;
503 pr_debug("CPM uart[%d]:set_termios\n", port
->line
);
505 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/ 16);
507 /* Character length programmed into the mode register is the
508 * sum of: 1 start bit, number of data bits, 0 or 1 parity bit,
509 * 1 or 2 stop bits, minus 1.
510 * The value 'bits' counts this for us.
516 switch (termios
->c_cflag
& CSIZE
) {
529 /* Never happens, but GCC is too dumb to figure it out */
536 if (termios
->c_cflag
& CSTOPB
) {
537 cval
|= SMCMR_SL
; /* Two stops */
538 scval
|= SCU_PSMR_SL
;
542 if (termios
->c_cflag
& PARENB
) {
544 scval
|= SCU_PSMR_PEN
;
546 if (!(termios
->c_cflag
& PARODD
)) {
547 cval
|= SMCMR_PM_EVEN
;
548 scval
|= (SCU_PSMR_REVP
| SCU_PSMR_TEVP
);
555 uart_update_timeout(port
, termios
->c_cflag
, baud
);
558 * Set up parity check flag
560 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
562 port
->read_status_mask
= (BD_SC_EMPTY
| BD_SC_OV
);
563 if (termios
->c_iflag
& INPCK
)
564 port
->read_status_mask
|= BD_SC_FR
| BD_SC_PR
;
565 if ((termios
->c_iflag
& BRKINT
) || (termios
->c_iflag
& PARMRK
))
566 port
->read_status_mask
|= BD_SC_BR
;
569 * Characters to ignore
571 port
->ignore_status_mask
= 0;
572 if (termios
->c_iflag
& IGNPAR
)
573 port
->ignore_status_mask
|= BD_SC_PR
| BD_SC_FR
;
574 if (termios
->c_iflag
& IGNBRK
) {
575 port
->ignore_status_mask
|= BD_SC_BR
;
577 * If we're ignore parity and break indicators, ignore
578 * overruns too. (For real raw support).
580 if (termios
->c_iflag
& IGNPAR
)
581 port
->ignore_status_mask
|= BD_SC_OV
;
584 * !!! ignore all characters if CREAD is not set
586 if ((termios
->c_cflag
& CREAD
) == 0)
587 port
->read_status_mask
&= ~BD_SC_EMPTY
;
589 spin_lock_irqsave(&port
->lock
, flags
);
591 /* Start bit has not been added (so don't, because we would just
592 * subtract it later), and we need to add one for the number of
593 * stops bits (there is always at least one).
597 /* Set the mode register. We want to keep a copy of the
598 * enables, because we want to put them back if they were
601 prev_mode
= in_be16(&smcp
->smc_smcmr
) & (SMCMR_REN
| SMCMR_TEN
);
602 /* Output in *one* operation, so we don't interrupt RX/TX if they
603 * were already enabled. */
604 out_be16(&smcp
->smc_smcmr
, smcr_mk_clen(bits
) | cval
|
605 SMCMR_SM_UART
| prev_mode
);
607 out_be16(&sccp
->scc_psmr
, (sbits
<< 12) | scval
);
611 clk_set_rate(pinfo
->clk
, baud
);
613 cpm_set_brg(pinfo
->brg
- 1, baud
);
614 spin_unlock_irqrestore(&port
->lock
, flags
);
617 static const char *cpm_uart_type(struct uart_port
*port
)
619 pr_debug("CPM uart[%d]:uart_type\n", port
->line
);
621 return port
->type
== PORT_CPM
? "CPM UART" : NULL
;
625 * verify the new serial_struct (for TIOCSSERIAL).
627 static int cpm_uart_verify_port(struct uart_port
*port
,
628 struct serial_struct
*ser
)
632 pr_debug("CPM uart[%d]:verify_port\n", port
->line
);
634 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_CPM
)
636 if (ser
->irq
< 0 || ser
->irq
>= nr_irqs
)
638 if (ser
->baud_base
< 9600)
644 * Transmit characters, refill buffer descriptor, if possible
646 static int cpm_uart_tx_pump(struct uart_port
*port
)
651 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
652 struct circ_buf
*xmit
= &port
->state
->xmit
;
654 /* Handle xon/xoff */
656 /* Pick next descriptor and fill from buffer */
659 p
= cpm2cpu_addr(in_be32(&bdp
->cbd_bufaddr
), pinfo
);
663 out_be16(&bdp
->cbd_datlen
, 1);
664 setbits16(&bdp
->cbd_sc
, BD_SC_READY
);
666 if (in_be16(&bdp
->cbd_sc
) & BD_SC_WRAP
)
667 bdp
= pinfo
->tx_bd_base
;
677 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
678 cpm_uart_stop_tx(port
);
682 /* Pick next descriptor and fill from buffer */
685 while (!(in_be16(&bdp
->cbd_sc
) & BD_SC_READY
) &&
686 xmit
->tail
!= xmit
->head
) {
688 p
= cpm2cpu_addr(in_be32(&bdp
->cbd_bufaddr
), pinfo
);
689 while (count
< pinfo
->tx_fifosize
) {
690 *p
++ = xmit
->buf
[xmit
->tail
];
691 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
694 if (xmit
->head
== xmit
->tail
)
697 out_be16(&bdp
->cbd_datlen
, count
);
698 setbits16(&bdp
->cbd_sc
, BD_SC_READY
);
700 if (in_be16(&bdp
->cbd_sc
) & BD_SC_WRAP
)
701 bdp
= pinfo
->tx_bd_base
;
707 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
708 uart_write_wakeup(port
);
710 if (uart_circ_empty(xmit
)) {
711 cpm_uart_stop_tx(port
);
719 * init buffer descriptors
721 static void cpm_uart_initbd(struct uart_cpm_port
*pinfo
)
727 pr_debug("CPM uart[%d]:initbd\n", pinfo
->port
.line
);
729 /* Set the physical address of the host memory
730 * buffers in the buffer descriptors, and the
731 * virtual address for us to work with.
733 mem_addr
= pinfo
->mem_addr
;
734 bdp
= pinfo
->rx_cur
= pinfo
->rx_bd_base
;
735 for (i
= 0; i
< (pinfo
->rx_nrfifos
- 1); i
++, bdp
++) {
736 out_be32(&bdp
->cbd_bufaddr
, cpu2cpm_addr(mem_addr
, pinfo
));
737 out_be16(&bdp
->cbd_sc
, BD_SC_EMPTY
| BD_SC_INTRPT
);
738 mem_addr
+= pinfo
->rx_fifosize
;
741 out_be32(&bdp
->cbd_bufaddr
, cpu2cpm_addr(mem_addr
, pinfo
));
742 out_be16(&bdp
->cbd_sc
, BD_SC_WRAP
| BD_SC_EMPTY
| BD_SC_INTRPT
);
744 /* Set the physical address of the host memory
745 * buffers in the buffer descriptors, and the
746 * virtual address for us to work with.
748 mem_addr
= pinfo
->mem_addr
+ L1_CACHE_ALIGN(pinfo
->rx_nrfifos
* pinfo
->rx_fifosize
);
749 bdp
= pinfo
->tx_cur
= pinfo
->tx_bd_base
;
750 for (i
= 0; i
< (pinfo
->tx_nrfifos
- 1); i
++, bdp
++) {
751 out_be32(&bdp
->cbd_bufaddr
, cpu2cpm_addr(mem_addr
, pinfo
));
752 out_be16(&bdp
->cbd_sc
, BD_SC_INTRPT
);
753 mem_addr
+= pinfo
->tx_fifosize
;
756 out_be32(&bdp
->cbd_bufaddr
, cpu2cpm_addr(mem_addr
, pinfo
));
757 out_be16(&bdp
->cbd_sc
, BD_SC_WRAP
| BD_SC_INTRPT
);
760 static void cpm_uart_init_scc(struct uart_cpm_port
*pinfo
)
763 scc_uart_t __iomem
*sup
;
765 pr_debug("CPM uart[%d]:init_scc\n", pinfo
->port
.line
);
771 out_be16(&pinfo
->sccup
->scc_genscc
.scc_rbase
,
772 (u8 __iomem
*)pinfo
->rx_bd_base
- DPRAM_BASE
);
773 out_be16(&pinfo
->sccup
->scc_genscc
.scc_tbase
,
774 (u8 __iomem
*)pinfo
->tx_bd_base
- DPRAM_BASE
);
776 /* Set up the uart parameters in the
780 cpm_set_scc_fcr(sup
);
782 out_be16(&sup
->scc_genscc
.scc_mrblr
, pinfo
->rx_fifosize
);
783 out_be16(&sup
->scc_maxidl
, pinfo
->rx_fifosize
);
784 out_be16(&sup
->scc_brkcr
, 1);
785 out_be16(&sup
->scc_parec
, 0);
786 out_be16(&sup
->scc_frmec
, 0);
787 out_be16(&sup
->scc_nosec
, 0);
788 out_be16(&sup
->scc_brkec
, 0);
789 out_be16(&sup
->scc_uaddr1
, 0);
790 out_be16(&sup
->scc_uaddr2
, 0);
791 out_be16(&sup
->scc_toseq
, 0);
792 out_be16(&sup
->scc_char1
, 0x8000);
793 out_be16(&sup
->scc_char2
, 0x8000);
794 out_be16(&sup
->scc_char3
, 0x8000);
795 out_be16(&sup
->scc_char4
, 0x8000);
796 out_be16(&sup
->scc_char5
, 0x8000);
797 out_be16(&sup
->scc_char6
, 0x8000);
798 out_be16(&sup
->scc_char7
, 0x8000);
799 out_be16(&sup
->scc_char8
, 0x8000);
800 out_be16(&sup
->scc_rccm
, 0xc0ff);
802 /* Send the CPM an initialize command.
804 cpm_line_cr_cmd(pinfo
, CPM_CR_INIT_TRX
);
806 /* Set UART mode, 8 bit, no parity, one stop.
807 * Enable receive and transmit.
809 out_be32(&scp
->scc_gsmrh
, 0);
810 out_be32(&scp
->scc_gsmrl
,
811 SCC_GSMRL_MODE_UART
| SCC_GSMRL_TDCR_16
| SCC_GSMRL_RDCR_16
);
813 /* Enable rx interrupts and clear all pending events. */
814 out_be16(&scp
->scc_sccm
, 0);
815 out_be16(&scp
->scc_scce
, 0xffff);
816 out_be16(&scp
->scc_dsr
, 0x7e7e);
817 out_be16(&scp
->scc_psmr
, 0x3000);
819 setbits32(&scp
->scc_gsmrl
, SCC_GSMRL_ENR
| SCC_GSMRL_ENT
);
822 static void cpm_uart_init_smc(struct uart_cpm_port
*pinfo
)
825 smc_uart_t __iomem
*up
;
827 pr_debug("CPM uart[%d]:init_smc\n", pinfo
->port
.line
);
833 out_be16(&pinfo
->smcup
->smc_rbase
,
834 (u8 __iomem
*)pinfo
->rx_bd_base
- DPRAM_BASE
);
835 out_be16(&pinfo
->smcup
->smc_tbase
,
836 (u8 __iomem
*)pinfo
->tx_bd_base
- DPRAM_BASE
);
839 * In case SMC1 is being relocated...
841 #if defined (CONFIG_I2C_SPI_SMC1_UCODE_PATCH)
842 out_be16(&up
->smc_rbptr
, in_be16(&pinfo
->smcup
->smc_rbase
));
843 out_be16(&up
->smc_tbptr
, in_be16(&pinfo
->smcup
->smc_tbase
));
844 out_be32(&up
->smc_rstate
, 0);
845 out_be32(&up
->smc_tstate
, 0);
846 out_be16(&up
->smc_brkcr
, 1); /* number of break chars */
847 out_be16(&up
->smc_brkec
, 0);
850 /* Set up the uart parameters in the
855 /* Using idle charater time requires some additional tuning. */
856 out_be16(&up
->smc_mrblr
, pinfo
->rx_fifosize
);
857 out_be16(&up
->smc_maxidl
, pinfo
->rx_fifosize
);
858 out_be16(&up
->smc_brklen
, 0);
859 out_be16(&up
->smc_brkec
, 0);
860 out_be16(&up
->smc_brkcr
, 1);
862 cpm_line_cr_cmd(pinfo
, CPM_CR_INIT_TRX
);
864 /* Set UART mode, 8 bit, no parity, one stop.
865 * Enable receive and transmit.
867 out_be16(&sp
->smc_smcmr
, smcr_mk_clen(9) | SMCMR_SM_UART
);
869 /* Enable only rx interrupts clear all pending events. */
870 out_8(&sp
->smc_smcm
, 0);
871 out_8(&sp
->smc_smce
, 0xff);
873 setbits16(&sp
->smc_smcmr
, SMCMR_REN
| SMCMR_TEN
);
877 * Initialize port. This is called from early_console stuff
878 * so we have to be careful here !
880 static int cpm_uart_request_port(struct uart_port
*port
)
882 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
885 pr_debug("CPM uart[%d]:request port\n", port
->line
);
887 if (pinfo
->flags
& FLAG_CONSOLE
)
891 clrbits8(&pinfo
->smcp
->smc_smcm
, SMCM_RX
| SMCM_TX
);
892 clrbits16(&pinfo
->smcp
->smc_smcmr
, SMCMR_REN
| SMCMR_TEN
);
894 clrbits16(&pinfo
->sccp
->scc_sccm
, UART_SCCM_TX
| UART_SCCM_RX
);
895 clrbits32(&pinfo
->sccp
->scc_gsmrl
, SCC_GSMRL_ENR
| SCC_GSMRL_ENT
);
898 ret
= cpm_uart_allocbuf(pinfo
, 0);
903 cpm_uart_initbd(pinfo
);
905 cpm_uart_init_smc(pinfo
);
907 cpm_uart_init_scc(pinfo
);
912 static void cpm_uart_release_port(struct uart_port
*port
)
914 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
916 if (!(pinfo
->flags
& FLAG_CONSOLE
))
917 cpm_uart_freebuf(pinfo
);
921 * Configure/autoconfigure the port.
923 static void cpm_uart_config_port(struct uart_port
*port
, int flags
)
925 pr_debug("CPM uart[%d]:config_port\n", port
->line
);
927 if (flags
& UART_CONFIG_TYPE
) {
928 port
->type
= PORT_CPM
;
929 cpm_uart_request_port(port
);
933 #ifdef CONFIG_CONSOLE_POLL
934 /* Serial polling routines for writing and reading from the uart while
935 * in an interrupt or debug context.
938 #define GDB_BUF_SIZE 512 /* power of 2, please */
940 static char poll_buf
[GDB_BUF_SIZE
];
942 static int poll_chars
;
944 static int poll_wait_key(char *obuf
, struct uart_cpm_port
*pinfo
)
950 /* Get the address of the host memory buffer.
953 while (bdp
->cbd_sc
& BD_SC_EMPTY
)
956 /* If the buffer address is in the CPM DPRAM, don't
959 cp
= cpm2cpu_addr(bdp
->cbd_bufaddr
, pinfo
);
962 i
= c
= bdp
->cbd_datlen
;
967 bdp
->cbd_sc
&= ~(BD_SC_BR
| BD_SC_FR
| BD_SC_PR
| BD_SC_OV
| BD_SC_ID
);
968 bdp
->cbd_sc
|= BD_SC_EMPTY
;
970 if (bdp
->cbd_sc
& BD_SC_WRAP
)
971 bdp
= pinfo
->rx_bd_base
;
974 pinfo
->rx_cur
= (cbd_t
*)bdp
;
979 static int cpm_get_poll_char(struct uart_port
*port
)
981 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
983 if (!serial_polled
) {
987 if (poll_chars
<= 0) {
988 poll_chars
= poll_wait_key(poll_buf
, pinfo
);
995 static void cpm_put_poll_char(struct uart_port
*port
,
998 struct uart_cpm_port
*pinfo
= (struct uart_cpm_port
*)port
;
1002 cpm_uart_early_write(pinfo
->port
.line
, ch
, 1);
1004 #endif /* CONFIG_CONSOLE_POLL */
1006 static struct uart_ops cpm_uart_pops
= {
1007 .tx_empty
= cpm_uart_tx_empty
,
1008 .set_mctrl
= cpm_uart_set_mctrl
,
1009 .get_mctrl
= cpm_uart_get_mctrl
,
1010 .stop_tx
= cpm_uart_stop_tx
,
1011 .start_tx
= cpm_uart_start_tx
,
1012 .stop_rx
= cpm_uart_stop_rx
,
1013 .enable_ms
= cpm_uart_enable_ms
,
1014 .break_ctl
= cpm_uart_break_ctl
,
1015 .startup
= cpm_uart_startup
,
1016 .shutdown
= cpm_uart_shutdown
,
1017 .set_termios
= cpm_uart_set_termios
,
1018 .type
= cpm_uart_type
,
1019 .release_port
= cpm_uart_release_port
,
1020 .request_port
= cpm_uart_request_port
,
1021 .config_port
= cpm_uart_config_port
,
1022 .verify_port
= cpm_uart_verify_port
,
1023 #ifdef CONFIG_CONSOLE_POLL
1024 .poll_get_char
= cpm_get_poll_char
,
1025 .poll_put_char
= cpm_put_poll_char
,
1029 struct uart_cpm_port cpm_uart_ports
[UART_NR
];
1031 static int cpm_uart_init_port(struct device_node
*np
,
1032 struct uart_cpm_port
*pinfo
)
1035 void __iomem
*mem
, *pram
;
1040 data
= of_get_property(np
, "clock", NULL
);
1042 struct clk
*clk
= clk_get(NULL
, (const char*)data
);
1047 data
= of_get_property(np
, "fsl,cpm-brg", &len
);
1048 if (!data
|| len
!= 4) {
1049 printk(KERN_ERR
"CPM UART %s has no/invalid "
1050 "fsl,cpm-brg property.\n", np
->name
);
1056 data
= of_get_property(np
, "fsl,cpm-command", &len
);
1057 if (!data
|| len
!= 4) {
1058 printk(KERN_ERR
"CPM UART %s has no/invalid "
1059 "fsl,cpm-command property.\n", np
->name
);
1062 pinfo
->command
= *data
;
1064 mem
= of_iomap(np
, 0);
1068 if (of_device_is_compatible(np
, "fsl,cpm1-scc-uart") ||
1069 of_device_is_compatible(np
, "fsl,cpm2-scc-uart")) {
1071 pinfo
->sccup
= pram
= cpm_uart_map_pram(pinfo
, np
);
1072 } else if (of_device_is_compatible(np
, "fsl,cpm1-smc-uart") ||
1073 of_device_is_compatible(np
, "fsl,cpm2-smc-uart")) {
1074 pinfo
->flags
|= FLAG_SMC
;
1076 pinfo
->smcup
= pram
= cpm_uart_map_pram(pinfo
, np
);
1087 pinfo
->tx_nrfifos
= TX_NUM_FIFO
;
1088 pinfo
->tx_fifosize
= TX_BUF_SIZE
;
1089 pinfo
->rx_nrfifos
= RX_NUM_FIFO
;
1090 pinfo
->rx_fifosize
= RX_BUF_SIZE
;
1092 pinfo
->port
.uartclk
= ppc_proc_freq
;
1093 pinfo
->port
.mapbase
= (unsigned long)mem
;
1094 pinfo
->port
.type
= PORT_CPM
;
1095 pinfo
->port
.ops
= &cpm_uart_pops
,
1096 pinfo
->port
.iotype
= UPIO_MEM
;
1097 pinfo
->port
.fifosize
= pinfo
->tx_nrfifos
* pinfo
->tx_fifosize
;
1098 spin_lock_init(&pinfo
->port
.lock
);
1100 pinfo
->port
.irq
= of_irq_to_resource(np
, 0, NULL
);
1101 if (pinfo
->port
.irq
== NO_IRQ
) {
1106 for (i
= 0; i
< NUM_GPIOS
; i
++)
1107 pinfo
->gpios
[i
] = of_get_gpio(np
, i
);
1109 #ifdef CONFIG_PPC_EARLY_DEBUG_CPM
1113 return cpm_uart_request_port(&pinfo
->port
);
1116 cpm_uart_unmap_pram(pinfo
, pram
);
1122 #ifdef CONFIG_SERIAL_CPM_CONSOLE
1124 * Print a string to the serial port trying not to disturb
1125 * any possible real use of the port...
1127 * Note that this is called with interrupts already disabled
1129 static void cpm_uart_console_write(struct console
*co
, const char *s
,
1132 struct uart_cpm_port
*pinfo
= &cpm_uart_ports
[co
->index
];
1134 cbd_t __iomem
*bdp
, *bdbase
;
1136 unsigned long flags
;
1137 int nolock
= oops_in_progress
;
1139 if (unlikely(nolock
)) {
1140 local_irq_save(flags
);
1142 spin_lock_irqsave(&pinfo
->port
.lock
, flags
);
1145 /* Get the address of the host memory buffer.
1147 bdp
= pinfo
->tx_cur
;
1148 bdbase
= pinfo
->tx_bd_base
;
1151 * Now, do each character. This is not as bad as it looks
1152 * since this is a holding FIFO and not a transmitting FIFO.
1153 * We could add the complexity of filling the entire transmit
1154 * buffer, but we would just wait longer between accesses......
1156 for (i
= 0; i
< count
; i
++, s
++) {
1157 /* Wait for transmitter fifo to empty.
1158 * Ready indicates output is ready, and xmt is doing
1159 * that, not that it is ready for us to send.
1161 while ((in_be16(&bdp
->cbd_sc
) & BD_SC_READY
) != 0)
1164 /* Send the character out.
1165 * If the buffer address is in the CPM DPRAM, don't
1168 cp
= cpm2cpu_addr(in_be32(&bdp
->cbd_bufaddr
), pinfo
);
1171 out_be16(&bdp
->cbd_datlen
, 1);
1172 setbits16(&bdp
->cbd_sc
, BD_SC_READY
);
1174 if (in_be16(&bdp
->cbd_sc
) & BD_SC_WRAP
)
1179 /* if a LF, also do CR... */
1181 while ((in_be16(&bdp
->cbd_sc
) & BD_SC_READY
) != 0)
1184 cp
= cpm2cpu_addr(in_be32(&bdp
->cbd_bufaddr
), pinfo
);
1187 out_be16(&bdp
->cbd_datlen
, 1);
1188 setbits16(&bdp
->cbd_sc
, BD_SC_READY
);
1190 if (in_be16(&bdp
->cbd_sc
) & BD_SC_WRAP
)
1198 * Finally, Wait for transmitter & holding register to empty
1199 * and restore the IER
1201 while ((in_be16(&bdp
->cbd_sc
) & BD_SC_READY
) != 0)
1204 pinfo
->tx_cur
= bdp
;
1206 if (unlikely(nolock
)) {
1207 local_irq_restore(flags
);
1209 spin_unlock_irqrestore(&pinfo
->port
.lock
, flags
);
1214 static int __init
cpm_uart_console_setup(struct console
*co
, char *options
)
1221 struct uart_cpm_port
*pinfo
;
1222 struct uart_port
*port
;
1224 struct device_node
*np
= NULL
;
1227 if (co
->index
>= UART_NR
) {
1228 printk(KERN_ERR
"cpm_uart: console index %d too high\n",
1234 np
= of_find_node_by_type(np
, "serial");
1238 if (!of_device_is_compatible(np
, "fsl,cpm1-smc-uart") &&
1239 !of_device_is_compatible(np
, "fsl,cpm1-scc-uart") &&
1240 !of_device_is_compatible(np
, "fsl,cpm2-smc-uart") &&
1241 !of_device_is_compatible(np
, "fsl,cpm2-scc-uart"))
1243 } while (i
++ != co
->index
);
1245 pinfo
= &cpm_uart_ports
[co
->index
];
1247 pinfo
->flags
|= FLAG_CONSOLE
;
1248 port
= &pinfo
->port
;
1250 ret
= cpm_uart_init_port(np
, pinfo
);
1256 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1258 if ((baud
= uart_baudrate()) == -1)
1262 if (IS_SMC(pinfo
)) {
1263 out_be16(&pinfo
->smcup
->smc_brkcr
, 0);
1264 cpm_line_cr_cmd(pinfo
, CPM_CR_STOP_TX
);
1265 clrbits8(&pinfo
->smcp
->smc_smcm
, SMCM_RX
| SMCM_TX
);
1266 clrbits16(&pinfo
->smcp
->smc_smcmr
, SMCMR_REN
| SMCMR_TEN
);
1268 out_be16(&pinfo
->sccup
->scc_brkcr
, 0);
1269 cpm_line_cr_cmd(pinfo
, CPM_CR_GRA_STOP_TX
);
1270 clrbits16(&pinfo
->sccp
->scc_sccm
, UART_SCCM_TX
| UART_SCCM_RX
);
1271 clrbits32(&pinfo
->sccp
->scc_gsmrl
, SCC_GSMRL_ENR
| SCC_GSMRL_ENT
);
1274 ret
= cpm_uart_allocbuf(pinfo
, 1);
1279 cpm_uart_initbd(pinfo
);
1282 cpm_uart_init_smc(pinfo
);
1284 cpm_uart_init_scc(pinfo
);
1286 uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
1287 cpm_line_cr_cmd(pinfo
, CPM_CR_RESTART_TX
);
1292 static struct uart_driver cpm_reg
;
1293 static struct console cpm_scc_uart_console
= {
1295 .write
= cpm_uart_console_write
,
1296 .device
= uart_console_device
,
1297 .setup
= cpm_uart_console_setup
,
1298 .flags
= CON_PRINTBUFFER
,
1303 static int __init
cpm_uart_console_init(void)
1305 register_console(&cpm_scc_uart_console
);
1309 console_initcall(cpm_uart_console_init
);
1311 #define CPM_UART_CONSOLE &cpm_scc_uart_console
1313 #define CPM_UART_CONSOLE NULL
1316 static struct uart_driver cpm_reg
= {
1317 .owner
= THIS_MODULE
,
1318 .driver_name
= "ttyCPM",
1319 .dev_name
= "ttyCPM",
1320 .major
= SERIAL_CPM_MAJOR
,
1321 .minor
= SERIAL_CPM_MINOR
,
1322 .cons
= CPM_UART_CONSOLE
,
1326 static int probe_index
;
1328 static int __devinit
cpm_uart_probe(struct of_device
*ofdev
,
1329 const struct of_device_id
*match
)
1331 int index
= probe_index
++;
1332 struct uart_cpm_port
*pinfo
= &cpm_uart_ports
[index
];
1335 pinfo
->port
.line
= index
;
1337 if (index
>= UART_NR
)
1340 dev_set_drvdata(&ofdev
->dev
, pinfo
);
1342 /* initialize the device pointer for the port */
1343 pinfo
->port
.dev
= &ofdev
->dev
;
1345 ret
= cpm_uart_init_port(ofdev
->node
, pinfo
);
1349 return uart_add_one_port(&cpm_reg
, &pinfo
->port
);
1352 static int __devexit
cpm_uart_remove(struct of_device
*ofdev
)
1354 struct uart_cpm_port
*pinfo
= dev_get_drvdata(&ofdev
->dev
);
1355 return uart_remove_one_port(&cpm_reg
, &pinfo
->port
);
1358 static struct of_device_id cpm_uart_match
[] = {
1360 .compatible
= "fsl,cpm1-smc-uart",
1363 .compatible
= "fsl,cpm1-scc-uart",
1366 .compatible
= "fsl,cpm2-smc-uart",
1369 .compatible
= "fsl,cpm2-scc-uart",
1374 static struct of_platform_driver cpm_uart_driver
= {
1376 .match_table
= cpm_uart_match
,
1377 .probe
= cpm_uart_probe
,
1378 .remove
= cpm_uart_remove
,
1381 static int __init
cpm_uart_init(void)
1383 int ret
= uart_register_driver(&cpm_reg
);
1387 ret
= of_register_platform_driver(&cpm_uart_driver
);
1389 uart_unregister_driver(&cpm_reg
);
1394 static void __exit
cpm_uart_exit(void)
1396 of_unregister_platform_driver(&cpm_uart_driver
);
1397 uart_unregister_driver(&cpm_reg
);
1400 module_init(cpm_uart_init
);
1401 module_exit(cpm_uart_exit
);
1403 MODULE_AUTHOR("Kumar Gala/Antoniou Pantelis");
1404 MODULE_DESCRIPTION("CPM SCC/SMC port driver $Revision: 0.01 $");
1405 MODULE_LICENSE("GPL");
1406 MODULE_ALIAS_CHARDEV(SERIAL_CPM_MAJOR
, SERIAL_CPM_MINOR
);