GNU Linux-libre 4.14.332-gnu1
[releases.git] / drivers / tty / serial / cpm_uart / cpm_uart_core.c
1 /*
2  *  Driver for CPM (SCC/SMC) serial ports; core driver
3  *
4  *  Based on arch/ppc/cpm2_io/uart.c by Dan Malek
5  *  Based on ppc8xx.c by Thomas Gleixner
6  *  Based on drivers/serial/amba.c by Russell King
7  *
8  *  Maintainer: Kumar Gala (galak@kernel.crashing.org) (CPM2)
9  *              Pantelis Antoniou (panto@intracom.gr) (CPM1)
10  *
11  *  Copyright (C) 2004, 2007 Freescale Semiconductor, Inc.
12  *            (C) 2004 Intracom, S.A.
13  *            (C) 2005-2006 MontaVista Software, Inc.
14  *              Vitaly Bordug <vbordug@ru.mvista.com>
15  *
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 2 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29  *
30  */
31
32 #include <linux/module.h>
33 #include <linux/tty.h>
34 #include <linux/tty_flip.h>
35 #include <linux/ioport.h>
36 #include <linux/init.h>
37 #include <linux/serial.h>
38 #include <linux/console.h>
39 #include <linux/sysrq.h>
40 #include <linux/device.h>
41 #include <linux/bootmem.h>
42 #include <linux/dma-mapping.h>
43 #include <linux/fs_uart_pd.h>
44 #include <linux/of_address.h>
45 #include <linux/of_irq.h>
46 #include <linux/of_platform.h>
47 #include <linux/gpio.h>
48 #include <linux/of_gpio.h>
49 #include <linux/clk.h>
50
51 #include <asm/io.h>
52 #include <asm/irq.h>
53 #include <asm/delay.h>
54 #include <asm/fs_pd.h>
55 #include <asm/udbg.h>
56
57 #if defined(CONFIG_SERIAL_CPM_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
58 #define SUPPORT_SYSRQ
59 #endif
60
61 #include <linux/serial_core.h>
62 #include <linux/kernel.h>
63
64 #include "cpm_uart.h"
65
66
67 /**************************************************************/
68
69 static int  cpm_uart_tx_pump(struct uart_port *port);
70 static void cpm_uart_init_smc(struct uart_cpm_port *pinfo);
71 static void cpm_uart_init_scc(struct uart_cpm_port *pinfo);
72 static void cpm_uart_initbd(struct uart_cpm_port *pinfo);
73
74 /**************************************************************/
75
76 #define HW_BUF_SPD_THRESHOLD    2400
77
78 /*
79  * Check, if transmit buffers are processed
80 */
81 static unsigned int cpm_uart_tx_empty(struct uart_port *port)
82 {
83         struct uart_cpm_port *pinfo =
84                 container_of(port, struct uart_cpm_port, port);
85         cbd_t __iomem *bdp = pinfo->tx_bd_base;
86         int ret = 0;
87
88         while (1) {
89                 if (in_be16(&bdp->cbd_sc) & BD_SC_READY)
90                         break;
91
92                 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP) {
93                         ret = TIOCSER_TEMT;
94                         break;
95                 }
96                 bdp++;
97         }
98
99         pr_debug("CPM uart[%d]:tx_empty: %d\n", port->line, ret);
100
101         return ret;
102 }
103
104 static void cpm_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
105 {
106         struct uart_cpm_port *pinfo =
107                 container_of(port, struct uart_cpm_port, port);
108
109         if (pinfo->gpios[GPIO_RTS] >= 0)
110                 gpio_set_value(pinfo->gpios[GPIO_RTS], !(mctrl & TIOCM_RTS));
111
112         if (pinfo->gpios[GPIO_DTR] >= 0)
113                 gpio_set_value(pinfo->gpios[GPIO_DTR], !(mctrl & TIOCM_DTR));
114 }
115
116 static unsigned int cpm_uart_get_mctrl(struct uart_port *port)
117 {
118         struct uart_cpm_port *pinfo =
119                 container_of(port, struct uart_cpm_port, port);
120         unsigned int mctrl = TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
121
122         if (pinfo->gpios[GPIO_CTS] >= 0) {
123                 if (gpio_get_value(pinfo->gpios[GPIO_CTS]))
124                         mctrl &= ~TIOCM_CTS;
125         }
126
127         if (pinfo->gpios[GPIO_DSR] >= 0) {
128                 if (gpio_get_value(pinfo->gpios[GPIO_DSR]))
129                         mctrl &= ~TIOCM_DSR;
130         }
131
132         if (pinfo->gpios[GPIO_DCD] >= 0) {
133                 if (gpio_get_value(pinfo->gpios[GPIO_DCD]))
134                         mctrl &= ~TIOCM_CAR;
135         }
136
137         if (pinfo->gpios[GPIO_RI] >= 0) {
138                 if (!gpio_get_value(pinfo->gpios[GPIO_RI]))
139                         mctrl |= TIOCM_RNG;
140         }
141
142         return mctrl;
143 }
144
145 /*
146  * Stop transmitter
147  */
148 static void cpm_uart_stop_tx(struct uart_port *port)
149 {
150         struct uart_cpm_port *pinfo =
151                 container_of(port, struct uart_cpm_port, port);
152         smc_t __iomem *smcp = pinfo->smcp;
153         scc_t __iomem *sccp = pinfo->sccp;
154
155         pr_debug("CPM uart[%d]:stop tx\n", port->line);
156
157         if (IS_SMC(pinfo))
158                 clrbits8(&smcp->smc_smcm, SMCM_TX);
159         else
160                 clrbits16(&sccp->scc_sccm, UART_SCCM_TX);
161 }
162
163 /*
164  * Start transmitter
165  */
166 static void cpm_uart_start_tx(struct uart_port *port)
167 {
168         struct uart_cpm_port *pinfo =
169                 container_of(port, struct uart_cpm_port, port);
170         smc_t __iomem *smcp = pinfo->smcp;
171         scc_t __iomem *sccp = pinfo->sccp;
172
173         pr_debug("CPM uart[%d]:start tx\n", port->line);
174
175         if (IS_SMC(pinfo)) {
176                 if (in_8(&smcp->smc_smcm) & SMCM_TX)
177                         return;
178         } else {
179                 if (in_be16(&sccp->scc_sccm) & UART_SCCM_TX)
180                         return;
181         }
182
183         if (cpm_uart_tx_pump(port) != 0) {
184                 if (IS_SMC(pinfo)) {
185                         setbits8(&smcp->smc_smcm, SMCM_TX);
186                 } else {
187                         setbits16(&sccp->scc_sccm, UART_SCCM_TX);
188                 }
189         }
190 }
191
192 /*
193  * Stop receiver
194  */
195 static void cpm_uart_stop_rx(struct uart_port *port)
196 {
197         struct uart_cpm_port *pinfo =
198                 container_of(port, struct uart_cpm_port, port);
199         smc_t __iomem *smcp = pinfo->smcp;
200         scc_t __iomem *sccp = pinfo->sccp;
201
202         pr_debug("CPM uart[%d]:stop rx\n", port->line);
203
204         if (IS_SMC(pinfo))
205                 clrbits8(&smcp->smc_smcm, SMCM_RX);
206         else
207                 clrbits16(&sccp->scc_sccm, UART_SCCM_RX);
208 }
209
210 /*
211  * Generate a break.
212  */
213 static void cpm_uart_break_ctl(struct uart_port *port, int break_state)
214 {
215         struct uart_cpm_port *pinfo =
216                 container_of(port, struct uart_cpm_port, port);
217
218         pr_debug("CPM uart[%d]:break ctrl, break_state: %d\n", port->line,
219                 break_state);
220
221         if (break_state)
222                 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
223         else
224                 cpm_line_cr_cmd(pinfo, CPM_CR_RESTART_TX);
225 }
226
227 /*
228  * Transmit characters, refill buffer descriptor, if possible
229  */
230 static void cpm_uart_int_tx(struct uart_port *port)
231 {
232         pr_debug("CPM uart[%d]:TX INT\n", port->line);
233
234         cpm_uart_tx_pump(port);
235 }
236
237 #ifdef CONFIG_CONSOLE_POLL
238 static int serial_polled;
239 #endif
240
241 /*
242  * Receive characters
243  */
244 static void cpm_uart_int_rx(struct uart_port *port)
245 {
246         int i;
247         unsigned char ch;
248         u8 *cp;
249         struct tty_port *tport = &port->state->port;
250         struct uart_cpm_port *pinfo =
251                 container_of(port, struct uart_cpm_port, port);
252         cbd_t __iomem *bdp;
253         u16 status;
254         unsigned int flg;
255
256         pr_debug("CPM uart[%d]:RX INT\n", port->line);
257
258         /* Just loop through the closed BDs and copy the characters into
259          * the buffer.
260          */
261         bdp = pinfo->rx_cur;
262         for (;;) {
263 #ifdef CONFIG_CONSOLE_POLL
264                 if (unlikely(serial_polled)) {
265                         serial_polled = 0;
266                         return;
267                 }
268 #endif
269                 /* get status */
270                 status = in_be16(&bdp->cbd_sc);
271                 /* If this one is empty, return happy */
272                 if (status & BD_SC_EMPTY)
273                         break;
274
275                 /* get number of characters, and check spce in flip-buffer */
276                 i = in_be16(&bdp->cbd_datlen);
277
278                 /* If we have not enough room in tty flip buffer, then we try
279                  * later, which will be the next rx-interrupt or a timeout
280                  */
281                 if (tty_buffer_request_room(tport, i) < i) {
282                         printk(KERN_WARNING "No room in flip buffer\n");
283                         return;
284                 }
285
286                 /* get pointer */
287                 cp = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
288
289                 /* loop through the buffer */
290                 while (i-- > 0) {
291                         ch = *cp++;
292                         port->icount.rx++;
293                         flg = TTY_NORMAL;
294
295                         if (status &
296                             (BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV))
297                                 goto handle_error;
298                         if (uart_handle_sysrq_char(port, ch))
299                                 continue;
300 #ifdef CONFIG_CONSOLE_POLL
301                         if (unlikely(serial_polled)) {
302                                 serial_polled = 0;
303                                 return;
304                         }
305 #endif
306                       error_return:
307                         tty_insert_flip_char(tport, ch, flg);
308
309                 }               /* End while (i--) */
310
311                 /* This BD is ready to be used again. Clear status. get next */
312                 clrbits16(&bdp->cbd_sc, BD_SC_BR | BD_SC_FR | BD_SC_PR |
313                                         BD_SC_OV | BD_SC_ID);
314                 setbits16(&bdp->cbd_sc, BD_SC_EMPTY);
315
316                 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
317                         bdp = pinfo->rx_bd_base;
318                 else
319                         bdp++;
320
321         } /* End for (;;) */
322
323         /* Write back buffer pointer */
324         pinfo->rx_cur = bdp;
325
326         /* activate BH processing */
327         tty_flip_buffer_push(tport);
328
329         return;
330
331         /* Error processing */
332
333       handle_error:
334         /* Statistics */
335         if (status & BD_SC_BR)
336                 port->icount.brk++;
337         if (status & BD_SC_PR)
338                 port->icount.parity++;
339         if (status & BD_SC_FR)
340                 port->icount.frame++;
341         if (status & BD_SC_OV)
342                 port->icount.overrun++;
343
344         /* Mask out ignored conditions */
345         status &= port->read_status_mask;
346
347         /* Handle the remaining ones */
348         if (status & BD_SC_BR)
349                 flg = TTY_BREAK;
350         else if (status & BD_SC_PR)
351                 flg = TTY_PARITY;
352         else if (status & BD_SC_FR)
353                 flg = TTY_FRAME;
354
355         /* overrun does not affect the current character ! */
356         if (status & BD_SC_OV) {
357                 ch = 0;
358                 flg = TTY_OVERRUN;
359                 /* We skip this buffer */
360                 /* CHECK: Is really nothing senseful there */
361                 /* ASSUMPTION: it contains nothing valid */
362                 i = 0;
363         }
364 #ifdef SUPPORT_SYSRQ
365         port->sysrq = 0;
366 #endif
367         goto error_return;
368 }
369
370 /*
371  * Asynchron mode interrupt handler
372  */
373 static irqreturn_t cpm_uart_int(int irq, void *data)
374 {
375         u8 events;
376         struct uart_port *port = data;
377         struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
378         smc_t __iomem *smcp = pinfo->smcp;
379         scc_t __iomem *sccp = pinfo->sccp;
380
381         pr_debug("CPM uart[%d]:IRQ\n", port->line);
382
383         if (IS_SMC(pinfo)) {
384                 events = in_8(&smcp->smc_smce);
385                 out_8(&smcp->smc_smce, events);
386                 if (events & SMCM_BRKE)
387                         uart_handle_break(port);
388                 if (events & SMCM_RX)
389                         cpm_uart_int_rx(port);
390                 if (events & SMCM_TX)
391                         cpm_uart_int_tx(port);
392         } else {
393                 events = in_be16(&sccp->scc_scce);
394                 out_be16(&sccp->scc_scce, events);
395                 if (events & UART_SCCM_BRKE)
396                         uart_handle_break(port);
397                 if (events & UART_SCCM_RX)
398                         cpm_uart_int_rx(port);
399                 if (events & UART_SCCM_TX)
400                         cpm_uart_int_tx(port);
401         }
402         return (events) ? IRQ_HANDLED : IRQ_NONE;
403 }
404
405 static int cpm_uart_startup(struct uart_port *port)
406 {
407         int retval;
408         struct uart_cpm_port *pinfo =
409                 container_of(port, struct uart_cpm_port, port);
410
411         pr_debug("CPM uart[%d]:startup\n", port->line);
412
413         /* If the port is not the console, make sure rx is disabled. */
414         if (!(pinfo->flags & FLAG_CONSOLE)) {
415                 /* Disable UART rx */
416                 if (IS_SMC(pinfo)) {
417                         clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN);
418                         clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX);
419                 } else {
420                         clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR);
421                         clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_RX);
422                 }
423                 cpm_uart_initbd(pinfo);
424                 if (IS_SMC(pinfo)) {
425                         out_be32(&pinfo->smcup->smc_rstate, 0);
426                         out_be32(&pinfo->smcup->smc_tstate, 0);
427                         out_be16(&pinfo->smcup->smc_rbptr,
428                                  in_be16(&pinfo->smcup->smc_rbase));
429                         out_be16(&pinfo->smcup->smc_tbptr,
430                                  in_be16(&pinfo->smcup->smc_tbase));
431                 } else {
432                         cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
433                 }
434         }
435         /* Install interrupt handler. */
436         retval = request_irq(port->irq, cpm_uart_int, 0, "cpm_uart", port);
437         if (retval)
438                 return retval;
439
440         /* Startup rx-int */
441         if (IS_SMC(pinfo)) {
442                 setbits8(&pinfo->smcp->smc_smcm, SMCM_RX);
443                 setbits16(&pinfo->smcp->smc_smcmr, (SMCMR_REN | SMCMR_TEN));
444         } else {
445                 setbits16(&pinfo->sccp->scc_sccm, UART_SCCM_RX);
446                 setbits32(&pinfo->sccp->scc_gsmrl, (SCC_GSMRL_ENR | SCC_GSMRL_ENT));
447         }
448
449         return 0;
450 }
451
452 inline void cpm_uart_wait_until_send(struct uart_cpm_port *pinfo)
453 {
454         set_current_state(TASK_UNINTERRUPTIBLE);
455         schedule_timeout(pinfo->wait_closing);
456 }
457
458 /*
459  * Shutdown the uart
460  */
461 static void cpm_uart_shutdown(struct uart_port *port)
462 {
463         struct uart_cpm_port *pinfo =
464                 container_of(port, struct uart_cpm_port, port);
465
466         pr_debug("CPM uart[%d]:shutdown\n", port->line);
467
468         /* free interrupt handler */
469         free_irq(port->irq, port);
470
471         /* If the port is not the console, disable Rx and Tx. */
472         if (!(pinfo->flags & FLAG_CONSOLE)) {
473                 /* Wait for all the BDs marked sent */
474                 while(!cpm_uart_tx_empty(port)) {
475                         set_current_state(TASK_UNINTERRUPTIBLE);
476                         schedule_timeout(2);
477                 }
478
479                 if (pinfo->wait_closing)
480                         cpm_uart_wait_until_send(pinfo);
481
482                 /* Stop uarts */
483                 if (IS_SMC(pinfo)) {
484                         smc_t __iomem *smcp = pinfo->smcp;
485                         clrbits16(&smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
486                         clrbits8(&smcp->smc_smcm, SMCM_RX | SMCM_TX);
487                 } else {
488                         scc_t __iomem *sccp = pinfo->sccp;
489                         clrbits32(&sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
490                         clrbits16(&sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
491                 }
492
493                 /* Shut them really down and reinit buffer descriptors */
494                 if (IS_SMC(pinfo)) {
495                         out_be16(&pinfo->smcup->smc_brkcr, 0);
496                         cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
497                 } else {
498                         out_be16(&pinfo->sccup->scc_brkcr, 0);
499                         cpm_line_cr_cmd(pinfo, CPM_CR_GRA_STOP_TX);
500                 }
501
502                 cpm_uart_initbd(pinfo);
503         }
504 }
505
506 static void cpm_uart_set_termios(struct uart_port *port,
507                                  struct ktermios *termios,
508                                  struct ktermios *old)
509 {
510         int baud;
511         unsigned long flags;
512         u16 cval, scval, prev_mode;
513         int bits, sbits;
514         struct uart_cpm_port *pinfo =
515                 container_of(port, struct uart_cpm_port, port);
516         smc_t __iomem *smcp = pinfo->smcp;
517         scc_t __iomem *sccp = pinfo->sccp;
518         int maxidl;
519
520         pr_debug("CPM uart[%d]:set_termios\n", port->line);
521
522         baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
523         if (baud < HW_BUF_SPD_THRESHOLD ||
524             (pinfo->port.state && pinfo->port.state->port.low_latency))
525                 pinfo->rx_fifosize = 1;
526         else
527                 pinfo->rx_fifosize = RX_BUF_SIZE;
528
529         /* MAXIDL is the timeout after which a receive buffer is closed
530          * when not full if no more characters are received.
531          * We calculate it from the baudrate so that the duration is
532          * always the same at standard rates: about 4ms.
533          */
534         maxidl = baud / 2400;
535         if (maxidl < 1)
536                 maxidl = 1;
537         if (maxidl > 0x10)
538                 maxidl = 0x10;
539
540         /* Character length programmed into the mode register is the
541          * sum of: 1 start bit, number of data bits, 0 or 1 parity bit,
542          * 1 or 2 stop bits, minus 1.
543          * The value 'bits' counts this for us.
544          */
545         cval = 0;
546         scval = 0;
547
548         /* byte size */
549         switch (termios->c_cflag & CSIZE) {
550         case CS5:
551                 bits = 5;
552                 break;
553         case CS6:
554                 bits = 6;
555                 break;
556         case CS7:
557                 bits = 7;
558                 break;
559         case CS8:
560                 bits = 8;
561                 break;
562                 /* Never happens, but GCC is too dumb to figure it out */
563         default:
564                 bits = 8;
565                 break;
566         }
567         sbits = bits - 5;
568
569         if (termios->c_cflag & CSTOPB) {
570                 cval |= SMCMR_SL;       /* Two stops */
571                 scval |= SCU_PSMR_SL;
572                 bits++;
573         }
574
575         if (termios->c_cflag & PARENB) {
576                 cval |= SMCMR_PEN;
577                 scval |= SCU_PSMR_PEN;
578                 bits++;
579                 if (!(termios->c_cflag & PARODD)) {
580                         cval |= SMCMR_PM_EVEN;
581                         scval |= (SCU_PSMR_REVP | SCU_PSMR_TEVP);
582                 }
583         }
584
585         /*
586          * Update the timeout
587          */
588         uart_update_timeout(port, termios->c_cflag, baud);
589
590         /*
591          * Set up parity check flag
592          */
593 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
594
595         port->read_status_mask = (BD_SC_EMPTY | BD_SC_OV);
596         if (termios->c_iflag & INPCK)
597                 port->read_status_mask |= BD_SC_FR | BD_SC_PR;
598         if ((termios->c_iflag & BRKINT) || (termios->c_iflag & PARMRK))
599                 port->read_status_mask |= BD_SC_BR;
600
601         /*
602          * Characters to ignore
603          */
604         port->ignore_status_mask = 0;
605         if (termios->c_iflag & IGNPAR)
606                 port->ignore_status_mask |= BD_SC_PR | BD_SC_FR;
607         if (termios->c_iflag & IGNBRK) {
608                 port->ignore_status_mask |= BD_SC_BR;
609                 /*
610                  * If we're ignore parity and break indicators, ignore
611                  * overruns too.  (For real raw support).
612                  */
613                 if (termios->c_iflag & IGNPAR)
614                         port->ignore_status_mask |= BD_SC_OV;
615         }
616         /*
617          * !!! ignore all characters if CREAD is not set
618          */
619         if ((termios->c_cflag & CREAD) == 0)
620                 port->read_status_mask &= ~BD_SC_EMPTY;
621
622         spin_lock_irqsave(&port->lock, flags);
623
624         /* Start bit has not been added (so don't, because we would just
625          * subtract it later), and we need to add one for the number of
626          * stops bits (there is always at least one).
627          */
628         bits++;
629         if (IS_SMC(pinfo)) {
630                 /*
631                  * MRBLR can be changed while an SMC/SCC is operating only
632                  * if it is done in a single bus cycle with one 16-bit move
633                  * (not two 8-bit bus cycles back-to-back). This occurs when
634                  * the cp shifts control to the next RxBD, so the change does
635                  * not take effect immediately. To guarantee the exact RxBD
636                  * on which the change occurs, change MRBLR only while the
637                  * SMC/SCC receiver is disabled.
638                  */
639                 out_be16(&pinfo->smcup->smc_mrblr, pinfo->rx_fifosize);
640                 out_be16(&pinfo->smcup->smc_maxidl, maxidl);
641
642                 /* Set the mode register.  We want to keep a copy of the
643                  * enables, because we want to put them back if they were
644                  * present.
645                  */
646                 prev_mode = in_be16(&smcp->smc_smcmr) & (SMCMR_REN | SMCMR_TEN);
647                 /* Output in *one* operation, so we don't interrupt RX/TX if they
648                  * were already enabled. */
649                 out_be16(&smcp->smc_smcmr, smcr_mk_clen(bits) | cval |
650                     SMCMR_SM_UART | prev_mode);
651         } else {
652                 out_be16(&pinfo->sccup->scc_genscc.scc_mrblr, pinfo->rx_fifosize);
653                 out_be16(&pinfo->sccup->scc_maxidl, maxidl);
654                 out_be16(&sccp->scc_psmr, (sbits << 12) | scval);
655         }
656
657         if (pinfo->clk)
658                 clk_set_rate(pinfo->clk, baud);
659         else
660                 cpm_set_brg(pinfo->brg - 1, baud);
661         spin_unlock_irqrestore(&port->lock, flags);
662 }
663
664 static const char *cpm_uart_type(struct uart_port *port)
665 {
666         pr_debug("CPM uart[%d]:uart_type\n", port->line);
667
668         return port->type == PORT_CPM ? "CPM UART" : NULL;
669 }
670
671 /*
672  * verify the new serial_struct (for TIOCSSERIAL).
673  */
674 static int cpm_uart_verify_port(struct uart_port *port,
675                                 struct serial_struct *ser)
676 {
677         int ret = 0;
678
679         pr_debug("CPM uart[%d]:verify_port\n", port->line);
680
681         if (ser->type != PORT_UNKNOWN && ser->type != PORT_CPM)
682                 ret = -EINVAL;
683         if (ser->irq < 0 || ser->irq >= nr_irqs)
684                 ret = -EINVAL;
685         if (ser->baud_base < 9600)
686                 ret = -EINVAL;
687         return ret;
688 }
689
690 /*
691  * Transmit characters, refill buffer descriptor, if possible
692  */
693 static int cpm_uart_tx_pump(struct uart_port *port)
694 {
695         cbd_t __iomem *bdp;
696         u8 *p;
697         int count;
698         struct uart_cpm_port *pinfo =
699                 container_of(port, struct uart_cpm_port, port);
700         struct circ_buf *xmit = &port->state->xmit;
701
702         /* Handle xon/xoff */
703         if (port->x_char) {
704                 /* Pick next descriptor and fill from buffer */
705                 bdp = pinfo->tx_cur;
706
707                 p = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
708
709                 *p++ = port->x_char;
710
711                 out_be16(&bdp->cbd_datlen, 1);
712                 setbits16(&bdp->cbd_sc, BD_SC_READY);
713                 /* Get next BD. */
714                 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
715                         bdp = pinfo->tx_bd_base;
716                 else
717                         bdp++;
718                 pinfo->tx_cur = bdp;
719
720                 port->icount.tx++;
721                 port->x_char = 0;
722                 return 1;
723         }
724
725         if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
726                 cpm_uart_stop_tx(port);
727                 return 0;
728         }
729
730         /* Pick next descriptor and fill from buffer */
731         bdp = pinfo->tx_cur;
732
733         while (!(in_be16(&bdp->cbd_sc) & BD_SC_READY) &&
734                xmit->tail != xmit->head) {
735                 count = 0;
736                 p = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr), pinfo);
737                 while (count < pinfo->tx_fifosize) {
738                         *p++ = xmit->buf[xmit->tail];
739                         xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
740                         port->icount.tx++;
741                         count++;
742                         if (xmit->head == xmit->tail)
743                                 break;
744                 }
745                 out_be16(&bdp->cbd_datlen, count);
746                 setbits16(&bdp->cbd_sc, BD_SC_READY);
747                 /* Get next BD. */
748                 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
749                         bdp = pinfo->tx_bd_base;
750                 else
751                         bdp++;
752         }
753         pinfo->tx_cur = bdp;
754
755         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
756                 uart_write_wakeup(port);
757
758         if (uart_circ_empty(xmit)) {
759                 cpm_uart_stop_tx(port);
760                 return 0;
761         }
762
763         return 1;
764 }
765
766 /*
767  * init buffer descriptors
768  */
769 static void cpm_uart_initbd(struct uart_cpm_port *pinfo)
770 {
771         int i;
772         u8 *mem_addr;
773         cbd_t __iomem *bdp;
774
775         pr_debug("CPM uart[%d]:initbd\n", pinfo->port.line);
776
777         /* Set the physical address of the host memory
778          * buffers in the buffer descriptors, and the
779          * virtual address for us to work with.
780          */
781         mem_addr = pinfo->mem_addr;
782         bdp = pinfo->rx_cur = pinfo->rx_bd_base;
783         for (i = 0; i < (pinfo->rx_nrfifos - 1); i++, bdp++) {
784                 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
785                 out_be16(&bdp->cbd_sc, BD_SC_EMPTY | BD_SC_INTRPT);
786                 mem_addr += pinfo->rx_fifosize;
787         }
788
789         out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
790         out_be16(&bdp->cbd_sc, BD_SC_WRAP | BD_SC_EMPTY | BD_SC_INTRPT);
791
792         /* Set the physical address of the host memory
793          * buffers in the buffer descriptors, and the
794          * virtual address for us to work with.
795          */
796         mem_addr = pinfo->mem_addr + L1_CACHE_ALIGN(pinfo->rx_nrfifos * pinfo->rx_fifosize);
797         bdp = pinfo->tx_cur = pinfo->tx_bd_base;
798         for (i = 0; i < (pinfo->tx_nrfifos - 1); i++, bdp++) {
799                 out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
800                 out_be16(&bdp->cbd_sc, BD_SC_INTRPT);
801                 mem_addr += pinfo->tx_fifosize;
802         }
803
804         out_be32(&bdp->cbd_bufaddr, cpu2cpm_addr(mem_addr, pinfo));
805         out_be16(&bdp->cbd_sc, BD_SC_WRAP | BD_SC_INTRPT);
806 }
807
808 static void cpm_uart_init_scc(struct uart_cpm_port *pinfo)
809 {
810         scc_t __iomem *scp;
811         scc_uart_t __iomem *sup;
812
813         pr_debug("CPM uart[%d]:init_scc\n", pinfo->port.line);
814
815         scp = pinfo->sccp;
816         sup = pinfo->sccup;
817
818         /* Store address */
819         out_be16(&pinfo->sccup->scc_genscc.scc_rbase,
820                  (u8 __iomem *)pinfo->rx_bd_base - DPRAM_BASE);
821         out_be16(&pinfo->sccup->scc_genscc.scc_tbase,
822                  (u8 __iomem *)pinfo->tx_bd_base - DPRAM_BASE);
823
824         /* Set up the uart parameters in the
825          * parameter ram.
826          */
827
828         cpm_set_scc_fcr(sup);
829
830         out_be16(&sup->scc_genscc.scc_mrblr, pinfo->rx_fifosize);
831         out_be16(&sup->scc_maxidl, 0x10);
832         out_be16(&sup->scc_brkcr, 1);
833         out_be16(&sup->scc_parec, 0);
834         out_be16(&sup->scc_frmec, 0);
835         out_be16(&sup->scc_nosec, 0);
836         out_be16(&sup->scc_brkec, 0);
837         out_be16(&sup->scc_uaddr1, 0);
838         out_be16(&sup->scc_uaddr2, 0);
839         out_be16(&sup->scc_toseq, 0);
840         out_be16(&sup->scc_char1, 0x8000);
841         out_be16(&sup->scc_char2, 0x8000);
842         out_be16(&sup->scc_char3, 0x8000);
843         out_be16(&sup->scc_char4, 0x8000);
844         out_be16(&sup->scc_char5, 0x8000);
845         out_be16(&sup->scc_char6, 0x8000);
846         out_be16(&sup->scc_char7, 0x8000);
847         out_be16(&sup->scc_char8, 0x8000);
848         out_be16(&sup->scc_rccm, 0xc0ff);
849
850         /* Send the CPM an initialize command.
851          */
852         cpm_line_cr_cmd(pinfo, CPM_CR_INIT_TRX);
853
854         /* Set UART mode, 8 bit, no parity, one stop.
855          * Enable receive and transmit.
856          */
857         out_be32(&scp->scc_gsmrh, 0);
858         out_be32(&scp->scc_gsmrl,
859                  SCC_GSMRL_MODE_UART | SCC_GSMRL_TDCR_16 | SCC_GSMRL_RDCR_16);
860
861         /* Enable rx interrupts  and clear all pending events.  */
862         out_be16(&scp->scc_sccm, 0);
863         out_be16(&scp->scc_scce, 0xffff);
864         out_be16(&scp->scc_dsr, 0x7e7e);
865         out_be16(&scp->scc_psmr, 0x3000);
866
867         setbits32(&scp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
868 }
869
870 static void cpm_uart_init_smc(struct uart_cpm_port *pinfo)
871 {
872         smc_t __iomem *sp;
873         smc_uart_t __iomem *up;
874
875         pr_debug("CPM uart[%d]:init_smc\n", pinfo->port.line);
876
877         sp = pinfo->smcp;
878         up = pinfo->smcup;
879
880         /* Store address */
881         out_be16(&pinfo->smcup->smc_rbase,
882                  (u8 __iomem *)pinfo->rx_bd_base - DPRAM_BASE);
883         out_be16(&pinfo->smcup->smc_tbase,
884                  (u8 __iomem *)pinfo->tx_bd_base - DPRAM_BASE);
885
886 /*
887  *  In case SMC is being relocated...
888  */
889         out_be16(&up->smc_rbptr, in_be16(&pinfo->smcup->smc_rbase));
890         out_be16(&up->smc_tbptr, in_be16(&pinfo->smcup->smc_tbase));
891         out_be32(&up->smc_rstate, 0);
892         out_be32(&up->smc_tstate, 0);
893         out_be16(&up->smc_brkcr, 1);              /* number of break chars */
894         out_be16(&up->smc_brkec, 0);
895
896         /* Set up the uart parameters in the
897          * parameter ram.
898          */
899         cpm_set_smc_fcr(up);
900
901         /* Using idle character time requires some additional tuning.  */
902         out_be16(&up->smc_mrblr, pinfo->rx_fifosize);
903         out_be16(&up->smc_maxidl, 0x10);
904         out_be16(&up->smc_brklen, 0);
905         out_be16(&up->smc_brkec, 0);
906         out_be16(&up->smc_brkcr, 1);
907
908         /* Set UART mode, 8 bit, no parity, one stop.
909          * Enable receive and transmit.
910          */
911         out_be16(&sp->smc_smcmr, smcr_mk_clen(9) | SMCMR_SM_UART);
912
913         /* Enable only rx interrupts clear all pending events. */
914         out_8(&sp->smc_smcm, 0);
915         out_8(&sp->smc_smce, 0xff);
916
917         setbits16(&sp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
918 }
919
920 /*
921  * Initialize port. This is called from early_console stuff
922  * so we have to be careful here !
923  */
924 static int cpm_uart_request_port(struct uart_port *port)
925 {
926         struct uart_cpm_port *pinfo =
927                 container_of(port, struct uart_cpm_port, port);
928         int ret;
929
930         pr_debug("CPM uart[%d]:request port\n", port->line);
931
932         if (pinfo->flags & FLAG_CONSOLE)
933                 return 0;
934
935         if (IS_SMC(pinfo)) {
936                 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX | SMCM_TX);
937                 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
938         } else {
939                 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
940                 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
941         }
942
943         ret = cpm_uart_allocbuf(pinfo, 0);
944
945         if (ret)
946                 return ret;
947
948         cpm_uart_initbd(pinfo);
949         if (IS_SMC(pinfo))
950                 cpm_uart_init_smc(pinfo);
951         else
952                 cpm_uart_init_scc(pinfo);
953
954         return 0;
955 }
956
957 static void cpm_uart_release_port(struct uart_port *port)
958 {
959         struct uart_cpm_port *pinfo =
960                 container_of(port, struct uart_cpm_port, port);
961
962         if (!(pinfo->flags & FLAG_CONSOLE))
963                 cpm_uart_freebuf(pinfo);
964 }
965
966 /*
967  * Configure/autoconfigure the port.
968  */
969 static void cpm_uart_config_port(struct uart_port *port, int flags)
970 {
971         pr_debug("CPM uart[%d]:config_port\n", port->line);
972
973         if (flags & UART_CONFIG_TYPE) {
974                 port->type = PORT_CPM;
975                 cpm_uart_request_port(port);
976         }
977 }
978
979 #if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_CPM_CONSOLE)
980 /*
981  * Write a string to the serial port
982  * Note that this is called with interrupts already disabled
983  */
984 static void cpm_uart_early_write(struct uart_cpm_port *pinfo,
985                 const char *string, u_int count, bool handle_linefeed)
986 {
987         unsigned int i;
988         cbd_t __iomem *bdp, *bdbase;
989         unsigned char *cpm_outp_addr;
990
991         /* Get the address of the host memory buffer.
992          */
993         bdp = pinfo->tx_cur;
994         bdbase = pinfo->tx_bd_base;
995
996         /*
997          * Now, do each character.  This is not as bad as it looks
998          * since this is a holding FIFO and not a transmitting FIFO.
999          * We could add the complexity of filling the entire transmit
1000          * buffer, but we would just wait longer between accesses......
1001          */
1002         for (i = 0; i < count; i++, string++) {
1003                 /* Wait for transmitter fifo to empty.
1004                  * Ready indicates output is ready, and xmt is doing
1005                  * that, not that it is ready for us to send.
1006                  */
1007                 while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
1008                         ;
1009
1010                 /* Send the character out.
1011                  * If the buffer address is in the CPM DPRAM, don't
1012                  * convert it.
1013                  */
1014                 cpm_outp_addr = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr),
1015                                         pinfo);
1016                 *cpm_outp_addr = *string;
1017
1018                 out_be16(&bdp->cbd_datlen, 1);
1019                 setbits16(&bdp->cbd_sc, BD_SC_READY);
1020
1021                 if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
1022                         bdp = bdbase;
1023                 else
1024                         bdp++;
1025
1026                 /* if a LF, also do CR... */
1027                 if (handle_linefeed && *string == 10) {
1028                         while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
1029                                 ;
1030
1031                         cpm_outp_addr = cpm2cpu_addr(in_be32(&bdp->cbd_bufaddr),
1032                                                 pinfo);
1033                         *cpm_outp_addr = 13;
1034
1035                         out_be16(&bdp->cbd_datlen, 1);
1036                         setbits16(&bdp->cbd_sc, BD_SC_READY);
1037
1038                         if (in_be16(&bdp->cbd_sc) & BD_SC_WRAP)
1039                                 bdp = bdbase;
1040                         else
1041                                 bdp++;
1042                 }
1043         }
1044
1045         /*
1046          * Finally, Wait for transmitter & holding register to empty
1047          *  and restore the IER
1048          */
1049         while ((in_be16(&bdp->cbd_sc) & BD_SC_READY) != 0)
1050                 ;
1051
1052         pinfo->tx_cur = bdp;
1053 }
1054 #endif
1055
1056 #ifdef CONFIG_CONSOLE_POLL
1057 /* Serial polling routines for writing and reading from the uart while
1058  * in an interrupt or debug context.
1059  */
1060
1061 #define GDB_BUF_SIZE    512     /* power of 2, please */
1062
1063 static char poll_buf[GDB_BUF_SIZE];
1064 static char *pollp;
1065 static int poll_chars;
1066
1067 static int poll_wait_key(char *obuf, struct uart_cpm_port *pinfo)
1068 {
1069         u_char          c, *cp;
1070         volatile cbd_t  *bdp;
1071         int             i;
1072
1073         /* Get the address of the host memory buffer.
1074          */
1075         bdp = pinfo->rx_cur;
1076         if (bdp->cbd_sc & BD_SC_EMPTY)
1077                 return NO_POLL_CHAR;
1078
1079         /* If the buffer address is in the CPM DPRAM, don't
1080          * convert it.
1081          */
1082         cp = cpm2cpu_addr(bdp->cbd_bufaddr, pinfo);
1083
1084         if (obuf) {
1085                 i = c = bdp->cbd_datlen;
1086                 while (i-- > 0)
1087                         *obuf++ = *cp++;
1088         } else
1089                 c = *cp;
1090         bdp->cbd_sc &= ~(BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV | BD_SC_ID);
1091         bdp->cbd_sc |= BD_SC_EMPTY;
1092
1093         if (bdp->cbd_sc & BD_SC_WRAP)
1094                 bdp = pinfo->rx_bd_base;
1095         else
1096                 bdp++;
1097         pinfo->rx_cur = (cbd_t *)bdp;
1098
1099         return (int)c;
1100 }
1101
1102 static int cpm_get_poll_char(struct uart_port *port)
1103 {
1104         struct uart_cpm_port *pinfo =
1105                 container_of(port, struct uart_cpm_port, port);
1106
1107         if (!serial_polled) {
1108                 serial_polled = 1;
1109                 poll_chars = 0;
1110         }
1111         if (poll_chars <= 0) {
1112                 int ret = poll_wait_key(poll_buf, pinfo);
1113
1114                 if (ret == NO_POLL_CHAR)
1115                         return ret;
1116                 poll_chars = ret;
1117                 pollp = poll_buf;
1118         }
1119         poll_chars--;
1120         return *pollp++;
1121 }
1122
1123 static void cpm_put_poll_char(struct uart_port *port,
1124                          unsigned char c)
1125 {
1126         struct uart_cpm_port *pinfo =
1127                 container_of(port, struct uart_cpm_port, port);
1128         static char ch[2];
1129
1130         ch[0] = (char)c;
1131         cpm_uart_early_write(pinfo, ch, 1, false);
1132 }
1133 #endif /* CONFIG_CONSOLE_POLL */
1134
1135 static const struct uart_ops cpm_uart_pops = {
1136         .tx_empty       = cpm_uart_tx_empty,
1137         .set_mctrl      = cpm_uart_set_mctrl,
1138         .get_mctrl      = cpm_uart_get_mctrl,
1139         .stop_tx        = cpm_uart_stop_tx,
1140         .start_tx       = cpm_uart_start_tx,
1141         .stop_rx        = cpm_uart_stop_rx,
1142         .break_ctl      = cpm_uart_break_ctl,
1143         .startup        = cpm_uart_startup,
1144         .shutdown       = cpm_uart_shutdown,
1145         .set_termios    = cpm_uart_set_termios,
1146         .type           = cpm_uart_type,
1147         .release_port   = cpm_uart_release_port,
1148         .request_port   = cpm_uart_request_port,
1149         .config_port    = cpm_uart_config_port,
1150         .verify_port    = cpm_uart_verify_port,
1151 #ifdef CONFIG_CONSOLE_POLL
1152         .poll_get_char = cpm_get_poll_char,
1153         .poll_put_char = cpm_put_poll_char,
1154 #endif
1155 };
1156
1157 struct uart_cpm_port cpm_uart_ports[UART_NR];
1158
1159 static int cpm_uart_init_port(struct device_node *np,
1160                               struct uart_cpm_port *pinfo)
1161 {
1162         const u32 *data;
1163         void __iomem *mem, *pram;
1164         int len;
1165         int ret;
1166         int i;
1167
1168         data = of_get_property(np, "clock", NULL);
1169         if (data) {
1170                 struct clk *clk = clk_get(NULL, (const char*)data);
1171                 if (!IS_ERR(clk))
1172                         pinfo->clk = clk;
1173         }
1174         if (!pinfo->clk) {
1175                 data = of_get_property(np, "fsl,cpm-brg", &len);
1176                 if (!data || len != 4) {
1177                         printk(KERN_ERR "CPM UART %s has no/invalid "
1178                                         "fsl,cpm-brg property.\n", np->name);
1179                         return -EINVAL;
1180                 }
1181                 pinfo->brg = *data;
1182         }
1183
1184         data = of_get_property(np, "fsl,cpm-command", &len);
1185         if (!data || len != 4) {
1186                 printk(KERN_ERR "CPM UART %s has no/invalid "
1187                                 "fsl,cpm-command property.\n", np->name);
1188                 return -EINVAL;
1189         }
1190         pinfo->command = *data;
1191
1192         mem = of_iomap(np, 0);
1193         if (!mem)
1194                 return -ENOMEM;
1195
1196         if (of_device_is_compatible(np, "fsl,cpm1-scc-uart") ||
1197             of_device_is_compatible(np, "fsl,cpm2-scc-uart")) {
1198                 pinfo->sccp = mem;
1199                 pinfo->sccup = pram = cpm_uart_map_pram(pinfo, np);
1200         } else if (of_device_is_compatible(np, "fsl,cpm1-smc-uart") ||
1201                    of_device_is_compatible(np, "fsl,cpm2-smc-uart")) {
1202                 pinfo->flags |= FLAG_SMC;
1203                 pinfo->smcp = mem;
1204                 pinfo->smcup = pram = cpm_uart_map_pram(pinfo, np);
1205         } else {
1206                 ret = -ENODEV;
1207                 goto out_mem;
1208         }
1209
1210         if (!pram) {
1211                 ret = -ENOMEM;
1212                 goto out_mem;
1213         }
1214
1215         pinfo->tx_nrfifos = TX_NUM_FIFO;
1216         pinfo->tx_fifosize = TX_BUF_SIZE;
1217         pinfo->rx_nrfifos = RX_NUM_FIFO;
1218         pinfo->rx_fifosize = RX_BUF_SIZE;
1219
1220         pinfo->port.uartclk = ppc_proc_freq;
1221         pinfo->port.mapbase = (unsigned long)mem;
1222         pinfo->port.type = PORT_CPM;
1223         pinfo->port.ops = &cpm_uart_pops,
1224         pinfo->port.iotype = UPIO_MEM;
1225         pinfo->port.fifosize = pinfo->tx_nrfifos * pinfo->tx_fifosize;
1226         spin_lock_init(&pinfo->port.lock);
1227
1228         pinfo->port.irq = irq_of_parse_and_map(np, 0);
1229         if (pinfo->port.irq == NO_IRQ) {
1230                 ret = -EINVAL;
1231                 goto out_pram;
1232         }
1233
1234         for (i = 0; i < NUM_GPIOS; i++) {
1235                 int gpio;
1236
1237                 pinfo->gpios[i] = -1;
1238
1239                 gpio = of_get_gpio(np, i);
1240
1241                 if (gpio_is_valid(gpio)) {
1242                         ret = gpio_request(gpio, "cpm_uart");
1243                         if (ret) {
1244                                 pr_err("can't request gpio #%d: %d\n", i, ret);
1245                                 continue;
1246                         }
1247                         if (i == GPIO_RTS || i == GPIO_DTR)
1248                                 ret = gpio_direction_output(gpio, 0);
1249                         else
1250                                 ret = gpio_direction_input(gpio);
1251                         if (ret) {
1252                                 pr_err("can't set direction for gpio #%d: %d\n",
1253                                         i, ret);
1254                                 gpio_free(gpio);
1255                                 continue;
1256                         }
1257                         pinfo->gpios[i] = gpio;
1258                 }
1259         }
1260
1261 #ifdef CONFIG_PPC_EARLY_DEBUG_CPM
1262         udbg_putc = NULL;
1263 #endif
1264
1265         return cpm_uart_request_port(&pinfo->port);
1266
1267 out_pram:
1268         cpm_uart_unmap_pram(pinfo, pram);
1269 out_mem:
1270         iounmap(mem);
1271         return ret;
1272 }
1273
1274 #ifdef CONFIG_SERIAL_CPM_CONSOLE
1275 /*
1276  *      Print a string to the serial port trying not to disturb
1277  *      any possible real use of the port...
1278  *
1279  *      Note that this is called with interrupts already disabled
1280  */
1281 static void cpm_uart_console_write(struct console *co, const char *s,
1282                                    u_int count)
1283 {
1284         struct uart_cpm_port *pinfo = &cpm_uart_ports[co->index];
1285         unsigned long flags;
1286
1287         if (unlikely(oops_in_progress)) {
1288                 local_irq_save(flags);
1289                 cpm_uart_early_write(pinfo, s, count, true);
1290                 local_irq_restore(flags);
1291         } else {
1292                 spin_lock_irqsave(&pinfo->port.lock, flags);
1293                 cpm_uart_early_write(pinfo, s, count, true);
1294                 spin_unlock_irqrestore(&pinfo->port.lock, flags);
1295         }
1296 }
1297
1298
1299 static int __init cpm_uart_console_setup(struct console *co, char *options)
1300 {
1301         int baud = 38400;
1302         int bits = 8;
1303         int parity = 'n';
1304         int flow = 'n';
1305         int ret;
1306         struct uart_cpm_port *pinfo;
1307         struct uart_port *port;
1308
1309         struct device_node *np;
1310         int i = 0;
1311
1312         if (co->index >= UART_NR) {
1313                 printk(KERN_ERR "cpm_uart: console index %d too high\n",
1314                        co->index);
1315                 return -ENODEV;
1316         }
1317
1318         for_each_node_by_type(np, "serial") {
1319                 if (!of_device_is_compatible(np, "fsl,cpm1-smc-uart") &&
1320                     !of_device_is_compatible(np, "fsl,cpm1-scc-uart") &&
1321                     !of_device_is_compatible(np, "fsl,cpm2-smc-uart") &&
1322                     !of_device_is_compatible(np, "fsl,cpm2-scc-uart"))
1323                         continue;
1324
1325                 if (i++ == co->index)
1326                         break;
1327         }
1328
1329         if (!np)
1330                 return -ENODEV;
1331
1332         pinfo = &cpm_uart_ports[co->index];
1333
1334         pinfo->flags |= FLAG_CONSOLE;
1335         port = &pinfo->port;
1336
1337         ret = cpm_uart_init_port(np, pinfo);
1338         of_node_put(np);
1339         if (ret)
1340                 return ret;
1341
1342         if (options) {
1343                 uart_parse_options(options, &baud, &parity, &bits, &flow);
1344         } else {
1345                 if ((baud = uart_baudrate()) == -1)
1346                         baud = 9600;
1347         }
1348
1349         if (IS_SMC(pinfo)) {
1350                 out_be16(&pinfo->smcup->smc_brkcr, 0);
1351                 cpm_line_cr_cmd(pinfo, CPM_CR_STOP_TX);
1352                 clrbits8(&pinfo->smcp->smc_smcm, SMCM_RX | SMCM_TX);
1353                 clrbits16(&pinfo->smcp->smc_smcmr, SMCMR_REN | SMCMR_TEN);
1354         } else {
1355                 out_be16(&pinfo->sccup->scc_brkcr, 0);
1356                 cpm_line_cr_cmd(pinfo, CPM_CR_GRA_STOP_TX);
1357                 clrbits16(&pinfo->sccp->scc_sccm, UART_SCCM_TX | UART_SCCM_RX);
1358                 clrbits32(&pinfo->sccp->scc_gsmrl, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
1359         }
1360
1361         ret = cpm_uart_allocbuf(pinfo, 1);
1362
1363         if (ret)
1364                 return ret;
1365
1366         cpm_uart_initbd(pinfo);
1367
1368         if (IS_SMC(pinfo))
1369                 cpm_uart_init_smc(pinfo);
1370         else
1371                 cpm_uart_init_scc(pinfo);
1372
1373         uart_set_options(port, co, baud, parity, bits, flow);
1374         cpm_line_cr_cmd(pinfo, CPM_CR_RESTART_TX);
1375
1376         return 0;
1377 }
1378
1379 static struct uart_driver cpm_reg;
1380 static struct console cpm_scc_uart_console = {
1381         .name           = "ttyCPM",
1382         .write          = cpm_uart_console_write,
1383         .device         = uart_console_device,
1384         .setup          = cpm_uart_console_setup,
1385         .flags          = CON_PRINTBUFFER,
1386         .index          = -1,
1387         .data           = &cpm_reg,
1388 };
1389
1390 static int __init cpm_uart_console_init(void)
1391 {
1392         register_console(&cpm_scc_uart_console);
1393         return 0;
1394 }
1395
1396 console_initcall(cpm_uart_console_init);
1397
1398 #define CPM_UART_CONSOLE        &cpm_scc_uart_console
1399 #else
1400 #define CPM_UART_CONSOLE        NULL
1401 #endif
1402
1403 static struct uart_driver cpm_reg = {
1404         .owner          = THIS_MODULE,
1405         .driver_name    = "ttyCPM",
1406         .dev_name       = "ttyCPM",
1407         .major          = SERIAL_CPM_MAJOR,
1408         .minor          = SERIAL_CPM_MINOR,
1409         .cons           = CPM_UART_CONSOLE,
1410         .nr             = UART_NR,
1411 };
1412
1413 static int probe_index;
1414
1415 static int cpm_uart_probe(struct platform_device *ofdev)
1416 {
1417         int index = probe_index++;
1418         struct uart_cpm_port *pinfo = &cpm_uart_ports[index];
1419         int ret;
1420
1421         pinfo->port.line = index;
1422
1423         if (index >= UART_NR)
1424                 return -ENODEV;
1425
1426         platform_set_drvdata(ofdev, pinfo);
1427
1428         /* initialize the device pointer for the port */
1429         pinfo->port.dev = &ofdev->dev;
1430
1431         ret = cpm_uart_init_port(ofdev->dev.of_node, pinfo);
1432         if (ret)
1433                 return ret;
1434
1435         return uart_add_one_port(&cpm_reg, &pinfo->port);
1436 }
1437
1438 static int cpm_uart_remove(struct platform_device *ofdev)
1439 {
1440         struct uart_cpm_port *pinfo = platform_get_drvdata(ofdev);
1441         return uart_remove_one_port(&cpm_reg, &pinfo->port);
1442 }
1443
1444 static const struct of_device_id cpm_uart_match[] = {
1445         {
1446                 .compatible = "fsl,cpm1-smc-uart",
1447         },
1448         {
1449                 .compatible = "fsl,cpm1-scc-uart",
1450         },
1451         {
1452                 .compatible = "fsl,cpm2-smc-uart",
1453         },
1454         {
1455                 .compatible = "fsl,cpm2-scc-uart",
1456         },
1457         {}
1458 };
1459 MODULE_DEVICE_TABLE(of, cpm_uart_match);
1460
1461 static struct platform_driver cpm_uart_driver = {
1462         .driver = {
1463                 .name = "cpm_uart",
1464                 .of_match_table = cpm_uart_match,
1465         },
1466         .probe = cpm_uart_probe,
1467         .remove = cpm_uart_remove,
1468  };
1469
1470 static int __init cpm_uart_init(void)
1471 {
1472         int ret = uart_register_driver(&cpm_reg);
1473         if (ret)
1474                 return ret;
1475
1476         ret = platform_driver_register(&cpm_uart_driver);
1477         if (ret)
1478                 uart_unregister_driver(&cpm_reg);
1479
1480         return ret;
1481 }
1482
1483 static void __exit cpm_uart_exit(void)
1484 {
1485         platform_driver_unregister(&cpm_uart_driver);
1486         uart_unregister_driver(&cpm_reg);
1487 }
1488
1489 module_init(cpm_uart_init);
1490 module_exit(cpm_uart_exit);
1491
1492 MODULE_AUTHOR("Kumar Gala/Antoniou Pantelis");
1493 MODULE_DESCRIPTION("CPM SCC/SMC port driver $Revision: 0.01 $");
1494 MODULE_LICENSE("GPL");
1495 MODULE_ALIAS_CHARDEV(SERIAL_CPM_MAJOR, SERIAL_CPM_MINOR);