USB: cp210x: call generic open last in open
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / tty / serial / ucc_uart.c
blobcea8918b8233d21efe3a01ec1890081478b429ca
1 /*
2 * Freescale QUICC Engine UART device driver
4 * Author: Timur Tabi <timur@freescale.com>
6 * Copyright 2007 Freescale Semiconductor, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
11 * This driver adds support for UART devices via Freescale's QUICC Engine
12 * found on some Freescale SOCs.
14 * If Soft-UART support is needed but not already present, then this driver
15 * will request and upload the "Soft-UART" microcode upon probe. The
16 * filename of the microcode should be fsl_qe_ucode_uart_X_YZ.bin, where "X"
17 * is the name of the SOC (e.g. 8323), and YZ is the revision of the SOC,
18 * (e.g. "11" for 1.1).
21 #include <linux/module.h>
22 #include <linux/serial.h>
23 #include <linux/serial_core.h>
24 #include <linux/slab.h>
25 #include <linux/tty.h>
26 #include <linux/tty_flip.h>
27 #include <linux/io.h>
28 #include <linux/of_platform.h>
29 #include <linux/dma-mapping.h>
31 #include <linux/fs_uart_pd.h>
32 #include <asm/ucc_slow.h>
34 #include <linux/firmware.h>
35 #include <asm/reg.h>
38 * The GUMR flag for Soft UART. This would normally be defined in qe.h,
39 * but Soft-UART is a hack and we want to keep everything related to it in
40 * this file.
42 #define UCC_SLOW_GUMR_H_SUART 0x00004000 /* Soft-UART */
45 * soft_uart is 1 if we need to use Soft-UART mode
47 static int soft_uart;
49 * firmware_loaded is 1 if the firmware has been loaded, 0 otherwise.
51 static int firmware_loaded;
53 /* Enable this macro to configure all serial ports in internal loopback
54 mode */
55 /* #define LOOPBACK */
57 /* The major and minor device numbers are defined in
58 * http://www.lanana.org/docs/device-list/devices-2.6+.txt. For the QE
59 * UART, we have major number 204 and minor numbers 46 - 49, which are the
60 * same as for the CPM2. This decision was made because no Freescale part
61 * has both a CPM and a QE.
63 #define SERIAL_QE_MAJOR 204
64 #define SERIAL_QE_MINOR 46
66 /* Since we only have minor numbers 46 - 49, there is a hard limit of 4 ports */
67 #define UCC_MAX_UART 4
69 /* The number of buffer descriptors for receiving characters. */
70 #define RX_NUM_FIFO 4
72 /* The number of buffer descriptors for transmitting characters. */
73 #define TX_NUM_FIFO 4
75 /* The maximum size of the character buffer for a single RX BD. */
76 #define RX_BUF_SIZE 32
78 /* The maximum size of the character buffer for a single TX BD. */
79 #define TX_BUF_SIZE 32
82 * The number of jiffies to wait after receiving a close command before the
83 * device is actually closed. This allows the last few characters to be
84 * sent over the wire.
86 #define UCC_WAIT_CLOSING 100
88 struct ucc_uart_pram {
89 struct ucc_slow_pram common;
90 u8 res1[8]; /* reserved */
91 __be16 maxidl; /* Maximum idle chars */
92 __be16 idlc; /* temp idle counter */
93 __be16 brkcr; /* Break count register */
94 __be16 parec; /* receive parity error counter */
95 __be16 frmec; /* receive framing error counter */
96 __be16 nosec; /* receive noise counter */
97 __be16 brkec; /* receive break condition counter */
98 __be16 brkln; /* last received break length */
99 __be16 uaddr[2]; /* UART address character 1 & 2 */
100 __be16 rtemp; /* Temp storage */
101 __be16 toseq; /* Transmit out of sequence char */
102 __be16 cchars[8]; /* control characters 1-8 */
103 __be16 rccm; /* receive control character mask */
104 __be16 rccr; /* receive control character register */
105 __be16 rlbc; /* receive last break character */
106 __be16 res2; /* reserved */
107 __be32 res3; /* reserved, should be cleared */
108 u8 res4; /* reserved, should be cleared */
109 u8 res5[3]; /* reserved, should be cleared */
110 __be32 res6; /* reserved, should be cleared */
111 __be32 res7; /* reserved, should be cleared */
112 __be32 res8; /* reserved, should be cleared */
113 __be32 res9; /* reserved, should be cleared */
114 __be32 res10; /* reserved, should be cleared */
115 __be32 res11; /* reserved, should be cleared */
116 __be32 res12; /* reserved, should be cleared */
117 __be32 res13; /* reserved, should be cleared */
118 /* The rest is for Soft-UART only */
119 __be16 supsmr; /* 0x90, Shadow UPSMR */
120 __be16 res92; /* 0x92, reserved, initialize to 0 */
121 __be32 rx_state; /* 0x94, RX state, initialize to 0 */
122 __be32 rx_cnt; /* 0x98, RX count, initialize to 0 */
123 u8 rx_length; /* 0x9C, Char length, set to 1+CL+PEN+1+SL */
124 u8 rx_bitmark; /* 0x9D, reserved, initialize to 0 */
125 u8 rx_temp_dlst_qe; /* 0x9E, reserved, initialize to 0 */
126 u8 res14[0xBC - 0x9F]; /* reserved */
127 __be32 dump_ptr; /* 0xBC, Dump pointer */
128 __be32 rx_frame_rem; /* 0xC0, reserved, initialize to 0 */
129 u8 rx_frame_rem_size; /* 0xC4, reserved, initialize to 0 */
130 u8 tx_mode; /* 0xC5, mode, 0=AHDLC, 1=UART */
131 __be16 tx_state; /* 0xC6, TX state */
132 u8 res15[0xD0 - 0xC8]; /* reserved */
133 __be32 resD0; /* 0xD0, reserved, initialize to 0 */
134 u8 resD4; /* 0xD4, reserved, initialize to 0 */
135 __be16 resD5; /* 0xD5, reserved, initialize to 0 */
136 } __attribute__ ((packed));
138 /* SUPSMR definitions, for Soft-UART only */
139 #define UCC_UART_SUPSMR_SL 0x8000
140 #define UCC_UART_SUPSMR_RPM_MASK 0x6000
141 #define UCC_UART_SUPSMR_RPM_ODD 0x0000
142 #define UCC_UART_SUPSMR_RPM_LOW 0x2000
143 #define UCC_UART_SUPSMR_RPM_EVEN 0x4000
144 #define UCC_UART_SUPSMR_RPM_HIGH 0x6000
145 #define UCC_UART_SUPSMR_PEN 0x1000
146 #define UCC_UART_SUPSMR_TPM_MASK 0x0C00
147 #define UCC_UART_SUPSMR_TPM_ODD 0x0000
148 #define UCC_UART_SUPSMR_TPM_LOW 0x0400
149 #define UCC_UART_SUPSMR_TPM_EVEN 0x0800
150 #define UCC_UART_SUPSMR_TPM_HIGH 0x0C00
151 #define UCC_UART_SUPSMR_FRZ 0x0100
152 #define UCC_UART_SUPSMR_UM_MASK 0x00c0
153 #define UCC_UART_SUPSMR_UM_NORMAL 0x0000
154 #define UCC_UART_SUPSMR_UM_MAN_MULTI 0x0040
155 #define UCC_UART_SUPSMR_UM_AUTO_MULTI 0x00c0
156 #define UCC_UART_SUPSMR_CL_MASK 0x0030
157 #define UCC_UART_SUPSMR_CL_8 0x0030
158 #define UCC_UART_SUPSMR_CL_7 0x0020
159 #define UCC_UART_SUPSMR_CL_6 0x0010
160 #define UCC_UART_SUPSMR_CL_5 0x0000
162 #define UCC_UART_TX_STATE_AHDLC 0x00
163 #define UCC_UART_TX_STATE_UART 0x01
164 #define UCC_UART_TX_STATE_X1 0x00
165 #define UCC_UART_TX_STATE_X16 0x80
167 #define UCC_UART_PRAM_ALIGNMENT 0x100
169 #define UCC_UART_SIZE_OF_BD UCC_SLOW_SIZE_OF_BD
170 #define NUM_CONTROL_CHARS 8
172 /* Private per-port data structure */
173 struct uart_qe_port {
174 struct uart_port port;
175 struct ucc_slow __iomem *uccp;
176 struct ucc_uart_pram __iomem *uccup;
177 struct ucc_slow_info us_info;
178 struct ucc_slow_private *us_private;
179 struct device_node *np;
180 unsigned int ucc_num; /* First ucc is 0, not 1 */
182 u16 rx_nrfifos;
183 u16 rx_fifosize;
184 u16 tx_nrfifos;
185 u16 tx_fifosize;
186 int wait_closing;
187 u32 flags;
188 struct qe_bd *rx_bd_base;
189 struct qe_bd *rx_cur;
190 struct qe_bd *tx_bd_base;
191 struct qe_bd *tx_cur;
192 unsigned char *tx_buf;
193 unsigned char *rx_buf;
194 void *bd_virt; /* virtual address of the BD buffers */
195 dma_addr_t bd_dma_addr; /* bus address of the BD buffers */
196 unsigned int bd_size; /* size of BD buffer space */
199 static struct uart_driver ucc_uart_driver = {
200 .owner = THIS_MODULE,
201 .driver_name = "ucc_uart",
202 .dev_name = "ttyQE",
203 .major = SERIAL_QE_MAJOR,
204 .minor = SERIAL_QE_MINOR,
205 .nr = UCC_MAX_UART,
209 * Virtual to physical address translation.
211 * Given the virtual address for a character buffer, this function returns
212 * the physical (DMA) equivalent.
214 static inline dma_addr_t cpu2qe_addr(void *addr, struct uart_qe_port *qe_port)
216 if (likely((addr >= qe_port->bd_virt)) &&
217 (addr < (qe_port->bd_virt + qe_port->bd_size)))
218 return qe_port->bd_dma_addr + (addr - qe_port->bd_virt);
220 /* something nasty happened */
221 printk(KERN_ERR "%s: addr=%p\n", __func__, addr);
222 BUG();
223 return 0;
227 * Physical to virtual address translation.
229 * Given the physical (DMA) address for a character buffer, this function
230 * returns the virtual equivalent.
232 static inline void *qe2cpu_addr(dma_addr_t addr, struct uart_qe_port *qe_port)
234 /* sanity check */
235 if (likely((addr >= qe_port->bd_dma_addr) &&
236 (addr < (qe_port->bd_dma_addr + qe_port->bd_size))))
237 return qe_port->bd_virt + (addr - qe_port->bd_dma_addr);
239 /* something nasty happened */
240 printk(KERN_ERR "%s: addr=%llx\n", __func__, (u64)addr);
241 BUG();
242 return NULL;
246 * Return 1 if the QE is done transmitting all buffers for this port
248 * This function scans each BD in sequence. If we find a BD that is not
249 * ready (READY=1), then we return 0 indicating that the QE is still sending
250 * data. If we reach the last BD (WRAP=1), then we know we've scanned
251 * the entire list, and all BDs are done.
253 static unsigned int qe_uart_tx_empty(struct uart_port *port)
255 struct uart_qe_port *qe_port =
256 container_of(port, struct uart_qe_port, port);
257 struct qe_bd *bdp = qe_port->tx_bd_base;
259 while (1) {
260 if (in_be16(&bdp->status) & BD_SC_READY)
261 /* This BD is not done, so return "not done" */
262 return 0;
264 if (in_be16(&bdp->status) & BD_SC_WRAP)
266 * This BD is done and it's the last one, so return
267 * "done"
269 return 1;
271 bdp++;
276 * Set the modem control lines
278 * Although the QE can control the modem control lines (e.g. CTS), we
279 * don't need that support. This function must exist, however, otherwise
280 * the kernel will panic.
282 void qe_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
287 * Get the current modem control line status
289 * Although the QE can control the modem control lines (e.g. CTS), this
290 * driver currently doesn't support that, so we always return Carrier
291 * Detect, Data Set Ready, and Clear To Send.
293 static unsigned int qe_uart_get_mctrl(struct uart_port *port)
295 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
299 * Disable the transmit interrupt.
301 * Although this function is called "stop_tx", it does not actually stop
302 * transmission of data. Instead, it tells the QE to not generate an
303 * interrupt when the UCC is finished sending characters.
305 static void qe_uart_stop_tx(struct uart_port *port)
307 struct uart_qe_port *qe_port =
308 container_of(port, struct uart_qe_port, port);
310 clrbits16(&qe_port->uccp->uccm, UCC_UART_UCCE_TX);
314 * Transmit as many characters to the HW as possible.
316 * This function will attempt to stuff of all the characters from the
317 * kernel's transmit buffer into TX BDs.
319 * A return value of non-zero indicates that it successfully stuffed all
320 * characters from the kernel buffer.
322 * A return value of zero indicates that there are still characters in the
323 * kernel's buffer that have not been transmitted, but there are no more BDs
324 * available. This function should be called again after a BD has been made
325 * available.
327 static int qe_uart_tx_pump(struct uart_qe_port *qe_port)
329 struct qe_bd *bdp;
330 unsigned char *p;
331 unsigned int count;
332 struct uart_port *port = &qe_port->port;
333 struct circ_buf *xmit = &port->state->xmit;
335 bdp = qe_port->rx_cur;
337 /* Handle xon/xoff */
338 if (port->x_char) {
339 /* Pick next descriptor and fill from buffer */
340 bdp = qe_port->tx_cur;
342 p = qe2cpu_addr(bdp->buf, qe_port);
344 *p++ = port->x_char;
345 out_be16(&bdp->length, 1);
346 setbits16(&bdp->status, BD_SC_READY);
347 /* Get next BD. */
348 if (in_be16(&bdp->status) & BD_SC_WRAP)
349 bdp = qe_port->tx_bd_base;
350 else
351 bdp++;
352 qe_port->tx_cur = bdp;
354 port->icount.tx++;
355 port->x_char = 0;
356 return 1;
359 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
360 qe_uart_stop_tx(port);
361 return 0;
364 /* Pick next descriptor and fill from buffer */
365 bdp = qe_port->tx_cur;
367 while (!(in_be16(&bdp->status) & BD_SC_READY) &&
368 (xmit->tail != xmit->head)) {
369 count = 0;
370 p = qe2cpu_addr(bdp->buf, qe_port);
371 while (count < qe_port->tx_fifosize) {
372 *p++ = xmit->buf[xmit->tail];
373 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
374 port->icount.tx++;
375 count++;
376 if (xmit->head == xmit->tail)
377 break;
380 out_be16(&bdp->length, count);
381 setbits16(&bdp->status, BD_SC_READY);
383 /* Get next BD. */
384 if (in_be16(&bdp->status) & BD_SC_WRAP)
385 bdp = qe_port->tx_bd_base;
386 else
387 bdp++;
389 qe_port->tx_cur = bdp;
391 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
392 uart_write_wakeup(port);
394 if (uart_circ_empty(xmit)) {
395 /* The kernel buffer is empty, so turn off TX interrupts. We
396 don't need to be told when the QE is finished transmitting
397 the data. */
398 qe_uart_stop_tx(port);
399 return 0;
402 return 1;
406 * Start transmitting data
408 * This function will start transmitting any available data, if the port
409 * isn't already transmitting data.
411 static void qe_uart_start_tx(struct uart_port *port)
413 struct uart_qe_port *qe_port =
414 container_of(port, struct uart_qe_port, port);
416 /* If we currently are transmitting, then just return */
417 if (in_be16(&qe_port->uccp->uccm) & UCC_UART_UCCE_TX)
418 return;
420 /* Otherwise, pump the port and start transmission */
421 if (qe_uart_tx_pump(qe_port))
422 setbits16(&qe_port->uccp->uccm, UCC_UART_UCCE_TX);
426 * Stop transmitting data
428 static void qe_uart_stop_rx(struct uart_port *port)
430 struct uart_qe_port *qe_port =
431 container_of(port, struct uart_qe_port, port);
433 clrbits16(&qe_port->uccp->uccm, UCC_UART_UCCE_RX);
437 * Enable status change interrupts
439 * We don't support status change interrupts, but we need to define this
440 * function otherwise the kernel will panic.
442 static void qe_uart_enable_ms(struct uart_port *port)
446 /* Start or stop sending break signal
448 * This function controls the sending of a break signal. If break_state=1,
449 * then we start sending a break signal. If break_state=0, then we stop
450 * sending the break signal.
452 static void qe_uart_break_ctl(struct uart_port *port, int break_state)
454 struct uart_qe_port *qe_port =
455 container_of(port, struct uart_qe_port, port);
457 if (break_state)
458 ucc_slow_stop_tx(qe_port->us_private);
459 else
460 ucc_slow_restart_tx(qe_port->us_private);
463 /* ISR helper function for receiving character.
465 * This function is called by the ISR to handling receiving characters
467 static void qe_uart_int_rx(struct uart_qe_port *qe_port)
469 int i;
470 unsigned char ch, *cp;
471 struct uart_port *port = &qe_port->port;
472 struct tty_struct *tty = port->state->port.tty;
473 struct qe_bd *bdp;
474 u16 status;
475 unsigned int flg;
477 /* Just loop through the closed BDs and copy the characters into
478 * the buffer.
480 bdp = qe_port->rx_cur;
481 while (1) {
482 status = in_be16(&bdp->status);
484 /* If this one is empty, then we assume we've read them all */
485 if (status & BD_SC_EMPTY)
486 break;
488 /* get number of characters, and check space in RX buffer */
489 i = in_be16(&bdp->length);
491 /* If we don't have enough room in RX buffer for the entire BD,
492 * then we try later, which will be the next RX interrupt.
494 if (tty_buffer_request_room(tty, i) < i) {
495 dev_dbg(port->dev, "ucc-uart: no room in RX buffer\n");
496 return;
499 /* get pointer */
500 cp = qe2cpu_addr(bdp->buf, qe_port);
502 /* loop through the buffer */
503 while (i-- > 0) {
504 ch = *cp++;
505 port->icount.rx++;
506 flg = TTY_NORMAL;
508 if (!i && status &
509 (BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV))
510 goto handle_error;
511 if (uart_handle_sysrq_char(port, ch))
512 continue;
514 error_return:
515 tty_insert_flip_char(tty, ch, flg);
519 /* This BD is ready to be used again. Clear status. get next */
520 clrsetbits_be16(&bdp->status, BD_SC_BR | BD_SC_FR | BD_SC_PR |
521 BD_SC_OV | BD_SC_ID, BD_SC_EMPTY);
522 if (in_be16(&bdp->status) & BD_SC_WRAP)
523 bdp = qe_port->rx_bd_base;
524 else
525 bdp++;
529 /* Write back buffer pointer */
530 qe_port->rx_cur = bdp;
532 /* Activate BH processing */
533 tty_flip_buffer_push(tty);
535 return;
537 /* Error processing */
539 handle_error:
540 /* Statistics */
541 if (status & BD_SC_BR)
542 port->icount.brk++;
543 if (status & BD_SC_PR)
544 port->icount.parity++;
545 if (status & BD_SC_FR)
546 port->icount.frame++;
547 if (status & BD_SC_OV)
548 port->icount.overrun++;
550 /* Mask out ignored conditions */
551 status &= port->read_status_mask;
553 /* Handle the remaining ones */
554 if (status & BD_SC_BR)
555 flg = TTY_BREAK;
556 else if (status & BD_SC_PR)
557 flg = TTY_PARITY;
558 else if (status & BD_SC_FR)
559 flg = TTY_FRAME;
561 /* Overrun does not affect the current character ! */
562 if (status & BD_SC_OV)
563 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
564 #ifdef SUPPORT_SYSRQ
565 port->sysrq = 0;
566 #endif
567 goto error_return;
570 /* Interrupt handler
572 * This interrupt handler is called after a BD is processed.
574 static irqreturn_t qe_uart_int(int irq, void *data)
576 struct uart_qe_port *qe_port = (struct uart_qe_port *) data;
577 struct ucc_slow __iomem *uccp = qe_port->uccp;
578 u16 events;
580 /* Clear the interrupts */
581 events = in_be16(&uccp->ucce);
582 out_be16(&uccp->ucce, events);
584 if (events & UCC_UART_UCCE_BRKE)
585 uart_handle_break(&qe_port->port);
587 if (events & UCC_UART_UCCE_RX)
588 qe_uart_int_rx(qe_port);
590 if (events & UCC_UART_UCCE_TX)
591 qe_uart_tx_pump(qe_port);
593 return events ? IRQ_HANDLED : IRQ_NONE;
596 /* Initialize buffer descriptors
598 * This function initializes all of the RX and TX buffer descriptors.
600 static void qe_uart_initbd(struct uart_qe_port *qe_port)
602 int i;
603 void *bd_virt;
604 struct qe_bd *bdp;
606 /* Set the physical address of the host memory buffers in the buffer
607 * descriptors, and the virtual address for us to work with.
609 bd_virt = qe_port->bd_virt;
610 bdp = qe_port->rx_bd_base;
611 qe_port->rx_cur = qe_port->rx_bd_base;
612 for (i = 0; i < (qe_port->rx_nrfifos - 1); i++) {
613 out_be16(&bdp->status, BD_SC_EMPTY | BD_SC_INTRPT);
614 out_be32(&bdp->buf, cpu2qe_addr(bd_virt, qe_port));
615 out_be16(&bdp->length, 0);
616 bd_virt += qe_port->rx_fifosize;
617 bdp++;
620 /* */
621 out_be16(&bdp->status, BD_SC_WRAP | BD_SC_EMPTY | BD_SC_INTRPT);
622 out_be32(&bdp->buf, cpu2qe_addr(bd_virt, qe_port));
623 out_be16(&bdp->length, 0);
625 /* Set the physical address of the host memory
626 * buffers in the buffer descriptors, and the
627 * virtual address for us to work with.
629 bd_virt = qe_port->bd_virt +
630 L1_CACHE_ALIGN(qe_port->rx_nrfifos * qe_port->rx_fifosize);
631 qe_port->tx_cur = qe_port->tx_bd_base;
632 bdp = qe_port->tx_bd_base;
633 for (i = 0; i < (qe_port->tx_nrfifos - 1); i++) {
634 out_be16(&bdp->status, BD_SC_INTRPT);
635 out_be32(&bdp->buf, cpu2qe_addr(bd_virt, qe_port));
636 out_be16(&bdp->length, 0);
637 bd_virt += qe_port->tx_fifosize;
638 bdp++;
641 /* Loopback requires the preamble bit to be set on the first TX BD */
642 #ifdef LOOPBACK
643 setbits16(&qe_port->tx_cur->status, BD_SC_P);
644 #endif
646 out_be16(&bdp->status, BD_SC_WRAP | BD_SC_INTRPT);
647 out_be32(&bdp->buf, cpu2qe_addr(bd_virt, qe_port));
648 out_be16(&bdp->length, 0);
652 * Initialize a UCC for UART.
654 * This function configures a given UCC to be used as a UART device. Basic
655 * UCC initialization is handled in qe_uart_request_port(). This function
656 * does all the UART-specific stuff.
658 static void qe_uart_init_ucc(struct uart_qe_port *qe_port)
660 u32 cecr_subblock;
661 struct ucc_slow __iomem *uccp = qe_port->uccp;
662 struct ucc_uart_pram *uccup = qe_port->uccup;
664 unsigned int i;
666 /* First, disable TX and RX in the UCC */
667 ucc_slow_disable(qe_port->us_private, COMM_DIR_RX_AND_TX);
669 /* Program the UCC UART parameter RAM */
670 out_8(&uccup->common.rbmr, UCC_BMR_GBL | UCC_BMR_BO_BE);
671 out_8(&uccup->common.tbmr, UCC_BMR_GBL | UCC_BMR_BO_BE);
672 out_be16(&uccup->common.mrblr, qe_port->rx_fifosize);
673 out_be16(&uccup->maxidl, 0x10);
674 out_be16(&uccup->brkcr, 1);
675 out_be16(&uccup->parec, 0);
676 out_be16(&uccup->frmec, 0);
677 out_be16(&uccup->nosec, 0);
678 out_be16(&uccup->brkec, 0);
679 out_be16(&uccup->uaddr[0], 0);
680 out_be16(&uccup->uaddr[1], 0);
681 out_be16(&uccup->toseq, 0);
682 for (i = 0; i < 8; i++)
683 out_be16(&uccup->cchars[i], 0xC000);
684 out_be16(&uccup->rccm, 0xc0ff);
686 /* Configure the GUMR registers for UART */
687 if (soft_uart) {
688 /* Soft-UART requires a 1X multiplier for TX */
689 clrsetbits_be32(&uccp->gumr_l,
690 UCC_SLOW_GUMR_L_MODE_MASK | UCC_SLOW_GUMR_L_TDCR_MASK |
691 UCC_SLOW_GUMR_L_RDCR_MASK,
692 UCC_SLOW_GUMR_L_MODE_UART | UCC_SLOW_GUMR_L_TDCR_1 |
693 UCC_SLOW_GUMR_L_RDCR_16);
695 clrsetbits_be32(&uccp->gumr_h, UCC_SLOW_GUMR_H_RFW,
696 UCC_SLOW_GUMR_H_TRX | UCC_SLOW_GUMR_H_TTX);
697 } else {
698 clrsetbits_be32(&uccp->gumr_l,
699 UCC_SLOW_GUMR_L_MODE_MASK | UCC_SLOW_GUMR_L_TDCR_MASK |
700 UCC_SLOW_GUMR_L_RDCR_MASK,
701 UCC_SLOW_GUMR_L_MODE_UART | UCC_SLOW_GUMR_L_TDCR_16 |
702 UCC_SLOW_GUMR_L_RDCR_16);
704 clrsetbits_be32(&uccp->gumr_h,
705 UCC_SLOW_GUMR_H_TRX | UCC_SLOW_GUMR_H_TTX,
706 UCC_SLOW_GUMR_H_RFW);
709 #ifdef LOOPBACK
710 clrsetbits_be32(&uccp->gumr_l, UCC_SLOW_GUMR_L_DIAG_MASK,
711 UCC_SLOW_GUMR_L_DIAG_LOOP);
712 clrsetbits_be32(&uccp->gumr_h,
713 UCC_SLOW_GUMR_H_CTSP | UCC_SLOW_GUMR_H_RSYN,
714 UCC_SLOW_GUMR_H_CDS);
715 #endif
717 /* Disable rx interrupts and clear all pending events. */
718 out_be16(&uccp->uccm, 0);
719 out_be16(&uccp->ucce, 0xffff);
720 out_be16(&uccp->udsr, 0x7e7e);
722 /* Initialize UPSMR */
723 out_be16(&uccp->upsmr, 0);
725 if (soft_uart) {
726 out_be16(&uccup->supsmr, 0x30);
727 out_be16(&uccup->res92, 0);
728 out_be32(&uccup->rx_state, 0);
729 out_be32(&uccup->rx_cnt, 0);
730 out_8(&uccup->rx_bitmark, 0);
731 out_8(&uccup->rx_length, 10);
732 out_be32(&uccup->dump_ptr, 0x4000);
733 out_8(&uccup->rx_temp_dlst_qe, 0);
734 out_be32(&uccup->rx_frame_rem, 0);
735 out_8(&uccup->rx_frame_rem_size, 0);
736 /* Soft-UART requires TX to be 1X */
737 out_8(&uccup->tx_mode,
738 UCC_UART_TX_STATE_UART | UCC_UART_TX_STATE_X1);
739 out_be16(&uccup->tx_state, 0);
740 out_8(&uccup->resD4, 0);
741 out_be16(&uccup->resD5, 0);
743 /* Set UART mode.
744 * Enable receive and transmit.
747 /* From the microcode errata:
748 * 1.GUMR_L register, set mode=0010 (QMC).
749 * 2.Set GUMR_H[17] bit. (UART/AHDLC mode).
750 * 3.Set GUMR_H[19:20] (Transparent mode)
751 * 4.Clear GUMR_H[26] (RFW)
752 * ...
753 * 6.Receiver must use 16x over sampling
755 clrsetbits_be32(&uccp->gumr_l,
756 UCC_SLOW_GUMR_L_MODE_MASK | UCC_SLOW_GUMR_L_TDCR_MASK |
757 UCC_SLOW_GUMR_L_RDCR_MASK,
758 UCC_SLOW_GUMR_L_MODE_QMC | UCC_SLOW_GUMR_L_TDCR_16 |
759 UCC_SLOW_GUMR_L_RDCR_16);
761 clrsetbits_be32(&uccp->gumr_h,
762 UCC_SLOW_GUMR_H_RFW | UCC_SLOW_GUMR_H_RSYN,
763 UCC_SLOW_GUMR_H_SUART | UCC_SLOW_GUMR_H_TRX |
764 UCC_SLOW_GUMR_H_TTX | UCC_SLOW_GUMR_H_TFL);
766 #ifdef LOOPBACK
767 clrsetbits_be32(&uccp->gumr_l, UCC_SLOW_GUMR_L_DIAG_MASK,
768 UCC_SLOW_GUMR_L_DIAG_LOOP);
769 clrbits32(&uccp->gumr_h, UCC_SLOW_GUMR_H_CTSP |
770 UCC_SLOW_GUMR_H_CDS);
771 #endif
773 cecr_subblock = ucc_slow_get_qe_cr_subblock(qe_port->ucc_num);
774 qe_issue_cmd(QE_INIT_TX_RX, cecr_subblock,
775 QE_CR_PROTOCOL_UNSPECIFIED, 0);
776 } else {
777 cecr_subblock = ucc_slow_get_qe_cr_subblock(qe_port->ucc_num);
778 qe_issue_cmd(QE_INIT_TX_RX, cecr_subblock,
779 QE_CR_PROTOCOL_UART, 0);
784 * Initialize the port.
786 static int qe_uart_startup(struct uart_port *port)
788 struct uart_qe_port *qe_port =
789 container_of(port, struct uart_qe_port, port);
790 int ret;
793 * If we're using Soft-UART mode, then we need to make sure the
794 * firmware has been uploaded first.
796 if (soft_uart && !firmware_loaded) {
797 dev_err(port->dev, "Soft-UART firmware not uploaded\n");
798 return -ENODEV;
801 qe_uart_initbd(qe_port);
802 qe_uart_init_ucc(qe_port);
804 /* Install interrupt handler. */
805 ret = request_irq(port->irq, qe_uart_int, IRQF_SHARED, "ucc-uart",
806 qe_port);
807 if (ret) {
808 dev_err(port->dev, "could not claim IRQ %u\n", port->irq);
809 return ret;
812 /* Startup rx-int */
813 setbits16(&qe_port->uccp->uccm, UCC_UART_UCCE_RX);
814 ucc_slow_enable(qe_port->us_private, COMM_DIR_RX_AND_TX);
816 return 0;
820 * Shutdown the port.
822 static void qe_uart_shutdown(struct uart_port *port)
824 struct uart_qe_port *qe_port =
825 container_of(port, struct uart_qe_port, port);
826 struct ucc_slow __iomem *uccp = qe_port->uccp;
827 unsigned int timeout = 20;
829 /* Disable RX and TX */
831 /* Wait for all the BDs marked sent */
832 while (!qe_uart_tx_empty(port)) {
833 if (!--timeout) {
834 dev_warn(port->dev, "shutdown timeout\n");
835 break;
837 set_current_state(TASK_UNINTERRUPTIBLE);
838 schedule_timeout(2);
841 if (qe_port->wait_closing) {
842 /* Wait a bit longer */
843 set_current_state(TASK_UNINTERRUPTIBLE);
844 schedule_timeout(qe_port->wait_closing);
847 /* Stop uarts */
848 ucc_slow_disable(qe_port->us_private, COMM_DIR_RX_AND_TX);
849 clrbits16(&uccp->uccm, UCC_UART_UCCE_TX | UCC_UART_UCCE_RX);
851 /* Shut them really down and reinit buffer descriptors */
852 ucc_slow_graceful_stop_tx(qe_port->us_private);
853 qe_uart_initbd(qe_port);
855 free_irq(port->irq, qe_port);
859 * Set the serial port parameters.
861 static void qe_uart_set_termios(struct uart_port *port,
862 struct ktermios *termios, struct ktermios *old)
864 struct uart_qe_port *qe_port =
865 container_of(port, struct uart_qe_port, port);
866 struct ucc_slow __iomem *uccp = qe_port->uccp;
867 unsigned int baud;
868 unsigned long flags;
869 u16 upsmr = in_be16(&uccp->upsmr);
870 struct ucc_uart_pram __iomem *uccup = qe_port->uccup;
871 u16 supsmr = in_be16(&uccup->supsmr);
872 u8 char_length = 2; /* 1 + CL + PEN + 1 + SL */
874 /* Character length programmed into the mode register is the
875 * sum of: 1 start bit, number of data bits, 0 or 1 parity bit,
876 * 1 or 2 stop bits, minus 1.
877 * The value 'bits' counts this for us.
880 /* byte size */
881 upsmr &= UCC_UART_UPSMR_CL_MASK;
882 supsmr &= UCC_UART_SUPSMR_CL_MASK;
884 switch (termios->c_cflag & CSIZE) {
885 case CS5:
886 upsmr |= UCC_UART_UPSMR_CL_5;
887 supsmr |= UCC_UART_SUPSMR_CL_5;
888 char_length += 5;
889 break;
890 case CS6:
891 upsmr |= UCC_UART_UPSMR_CL_6;
892 supsmr |= UCC_UART_SUPSMR_CL_6;
893 char_length += 6;
894 break;
895 case CS7:
896 upsmr |= UCC_UART_UPSMR_CL_7;
897 supsmr |= UCC_UART_SUPSMR_CL_7;
898 char_length += 7;
899 break;
900 default: /* case CS8 */
901 upsmr |= UCC_UART_UPSMR_CL_8;
902 supsmr |= UCC_UART_SUPSMR_CL_8;
903 char_length += 8;
904 break;
907 /* If CSTOPB is set, we want two stop bits */
908 if (termios->c_cflag & CSTOPB) {
909 upsmr |= UCC_UART_UPSMR_SL;
910 supsmr |= UCC_UART_SUPSMR_SL;
911 char_length++; /* + SL */
914 if (termios->c_cflag & PARENB) {
915 upsmr |= UCC_UART_UPSMR_PEN;
916 supsmr |= UCC_UART_SUPSMR_PEN;
917 char_length++; /* + PEN */
919 if (!(termios->c_cflag & PARODD)) {
920 upsmr &= ~(UCC_UART_UPSMR_RPM_MASK |
921 UCC_UART_UPSMR_TPM_MASK);
922 upsmr |= UCC_UART_UPSMR_RPM_EVEN |
923 UCC_UART_UPSMR_TPM_EVEN;
924 supsmr &= ~(UCC_UART_SUPSMR_RPM_MASK |
925 UCC_UART_SUPSMR_TPM_MASK);
926 supsmr |= UCC_UART_SUPSMR_RPM_EVEN |
927 UCC_UART_SUPSMR_TPM_EVEN;
932 * Set up parity check flag
934 port->read_status_mask = BD_SC_EMPTY | BD_SC_OV;
935 if (termios->c_iflag & INPCK)
936 port->read_status_mask |= BD_SC_FR | BD_SC_PR;
937 if (termios->c_iflag & (BRKINT | PARMRK))
938 port->read_status_mask |= BD_SC_BR;
941 * Characters to ignore
943 port->ignore_status_mask = 0;
944 if (termios->c_iflag & IGNPAR)
945 port->ignore_status_mask |= BD_SC_PR | BD_SC_FR;
946 if (termios->c_iflag & IGNBRK) {
947 port->ignore_status_mask |= BD_SC_BR;
949 * If we're ignore parity and break indicators, ignore
950 * overruns too. (For real raw support).
952 if (termios->c_iflag & IGNPAR)
953 port->ignore_status_mask |= BD_SC_OV;
956 * !!! ignore all characters if CREAD is not set
958 if ((termios->c_cflag & CREAD) == 0)
959 port->read_status_mask &= ~BD_SC_EMPTY;
961 baud = uart_get_baud_rate(port, termios, old, 0, 115200);
963 /* Do we really need a spinlock here? */
964 spin_lock_irqsave(&port->lock, flags);
966 out_be16(&uccp->upsmr, upsmr);
967 if (soft_uart) {
968 out_be16(&uccup->supsmr, supsmr);
969 out_8(&uccup->rx_length, char_length);
971 /* Soft-UART requires a 1X multiplier for TX */
972 qe_setbrg(qe_port->us_info.rx_clock, baud, 16);
973 qe_setbrg(qe_port->us_info.tx_clock, baud, 1);
974 } else {
975 qe_setbrg(qe_port->us_info.rx_clock, baud, 16);
976 qe_setbrg(qe_port->us_info.tx_clock, baud, 16);
979 spin_unlock_irqrestore(&port->lock, flags);
983 * Return a pointer to a string that describes what kind of port this is.
985 static const char *qe_uart_type(struct uart_port *port)
987 return "QE";
991 * Allocate any memory and I/O resources required by the port.
993 static int qe_uart_request_port(struct uart_port *port)
995 int ret;
996 struct uart_qe_port *qe_port =
997 container_of(port, struct uart_qe_port, port);
998 struct ucc_slow_info *us_info = &qe_port->us_info;
999 struct ucc_slow_private *uccs;
1000 unsigned int rx_size, tx_size;
1001 void *bd_virt;
1002 dma_addr_t bd_dma_addr = 0;
1004 ret = ucc_slow_init(us_info, &uccs);
1005 if (ret) {
1006 dev_err(port->dev, "could not initialize UCC%u\n",
1007 qe_port->ucc_num);
1008 return ret;
1011 qe_port->us_private = uccs;
1012 qe_port->uccp = uccs->us_regs;
1013 qe_port->uccup = (struct ucc_uart_pram *) uccs->us_pram;
1014 qe_port->rx_bd_base = uccs->rx_bd;
1015 qe_port->tx_bd_base = uccs->tx_bd;
1018 * Allocate the transmit and receive data buffers.
1021 rx_size = L1_CACHE_ALIGN(qe_port->rx_nrfifos * qe_port->rx_fifosize);
1022 tx_size = L1_CACHE_ALIGN(qe_port->tx_nrfifos * qe_port->tx_fifosize);
1024 bd_virt = dma_alloc_coherent(port->dev, rx_size + tx_size, &bd_dma_addr,
1025 GFP_KERNEL);
1026 if (!bd_virt) {
1027 dev_err(port->dev, "could not allocate buffer descriptors\n");
1028 return -ENOMEM;
1031 qe_port->bd_virt = bd_virt;
1032 qe_port->bd_dma_addr = bd_dma_addr;
1033 qe_port->bd_size = rx_size + tx_size;
1035 qe_port->rx_buf = bd_virt;
1036 qe_port->tx_buf = qe_port->rx_buf + rx_size;
1038 return 0;
1042 * Configure the port.
1044 * We say we're a CPM-type port because that's mostly true. Once the device
1045 * is configured, this driver operates almost identically to the CPM serial
1046 * driver.
1048 static void qe_uart_config_port(struct uart_port *port, int flags)
1050 if (flags & UART_CONFIG_TYPE) {
1051 port->type = PORT_CPM;
1052 qe_uart_request_port(port);
1057 * Release any memory and I/O resources that were allocated in
1058 * qe_uart_request_port().
1060 static void qe_uart_release_port(struct uart_port *port)
1062 struct uart_qe_port *qe_port =
1063 container_of(port, struct uart_qe_port, port);
1064 struct ucc_slow_private *uccs = qe_port->us_private;
1066 dma_free_coherent(port->dev, qe_port->bd_size, qe_port->bd_virt,
1067 qe_port->bd_dma_addr);
1069 ucc_slow_free(uccs);
1073 * Verify that the data in serial_struct is suitable for this device.
1075 static int qe_uart_verify_port(struct uart_port *port,
1076 struct serial_struct *ser)
1078 if (ser->type != PORT_UNKNOWN && ser->type != PORT_CPM)
1079 return -EINVAL;
1081 if (ser->irq < 0 || ser->irq >= nr_irqs)
1082 return -EINVAL;
1084 if (ser->baud_base < 9600)
1085 return -EINVAL;
1087 return 0;
1089 /* UART operations
1091 * Details on these functions can be found in Documentation/serial/driver
1093 static struct uart_ops qe_uart_pops = {
1094 .tx_empty = qe_uart_tx_empty,
1095 .set_mctrl = qe_uart_set_mctrl,
1096 .get_mctrl = qe_uart_get_mctrl,
1097 .stop_tx = qe_uart_stop_tx,
1098 .start_tx = qe_uart_start_tx,
1099 .stop_rx = qe_uart_stop_rx,
1100 .enable_ms = qe_uart_enable_ms,
1101 .break_ctl = qe_uart_break_ctl,
1102 .startup = qe_uart_startup,
1103 .shutdown = qe_uart_shutdown,
1104 .set_termios = qe_uart_set_termios,
1105 .type = qe_uart_type,
1106 .release_port = qe_uart_release_port,
1107 .request_port = qe_uart_request_port,
1108 .config_port = qe_uart_config_port,
1109 .verify_port = qe_uart_verify_port,
1113 * Obtain the SOC model number and revision level
1115 * This function parses the device tree to obtain the SOC model. It then
1116 * reads the SVR register to the revision.
1118 * The device tree stores the SOC model two different ways.
1120 * The new way is:
1122 * cpu@0 {
1123 * compatible = "PowerPC,8323";
1124 * device_type = "cpu";
1125 * ...
1128 * The old way is:
1129 * PowerPC,8323@0 {
1130 * device_type = "cpu";
1131 * ...
1133 * This code first checks the new way, and then the old way.
1135 static unsigned int soc_info(unsigned int *rev_h, unsigned int *rev_l)
1137 struct device_node *np;
1138 const char *soc_string;
1139 unsigned int svr;
1140 unsigned int soc;
1142 /* Find the CPU node */
1143 np = of_find_node_by_type(NULL, "cpu");
1144 if (!np)
1145 return 0;
1146 /* Find the compatible property */
1147 soc_string = of_get_property(np, "compatible", NULL);
1148 if (!soc_string)
1149 /* No compatible property, so try the name. */
1150 soc_string = np->name;
1152 /* Extract the SOC number from the "PowerPC," string */
1153 if ((sscanf(soc_string, "PowerPC,%u", &soc) != 1) || !soc)
1154 return 0;
1156 /* Get the revision from the SVR */
1157 svr = mfspr(SPRN_SVR);
1158 *rev_h = (svr >> 4) & 0xf;
1159 *rev_l = svr & 0xf;
1161 return soc;
1165 * requst_firmware_nowait() callback function
1167 * This function is called by the kernel when a firmware is made available,
1168 * or if it times out waiting for the firmware.
1170 static void uart_firmware_cont(const struct firmware *fw, void *context)
1172 struct qe_firmware *firmware;
1173 struct device *dev = context;
1174 int ret;
1176 if (!fw) {
1177 dev_err(dev, "firmware not found\n");
1178 return;
1181 firmware = (struct qe_firmware *) fw->data;
1183 if (firmware->header.length != fw->size) {
1184 dev_err(dev, "invalid firmware\n");
1185 goto out;
1188 ret = qe_upload_firmware(firmware);
1189 if (ret) {
1190 dev_err(dev, "could not load firmware\n");
1191 goto out;
1194 firmware_loaded = 1;
1195 out:
1196 release_firmware(fw);
1199 static int ucc_uart_probe(struct platform_device *ofdev)
1201 struct device_node *np = ofdev->dev.of_node;
1202 const unsigned int *iprop; /* Integer OF properties */
1203 const char *sprop; /* String OF properties */
1204 struct uart_qe_port *qe_port = NULL;
1205 struct resource res;
1206 int ret;
1209 * Determine if we need Soft-UART mode
1211 if (of_find_property(np, "soft-uart", NULL)) {
1212 dev_dbg(&ofdev->dev, "using Soft-UART mode\n");
1213 soft_uart = 1;
1217 * If we are using Soft-UART, determine if we need to upload the
1218 * firmware, too.
1220 if (soft_uart) {
1221 struct qe_firmware_info *qe_fw_info;
1223 qe_fw_info = qe_get_firmware_info();
1225 /* Check if the firmware has been uploaded. */
1226 if (qe_fw_info && strstr(qe_fw_info->id, "Soft-UART")) {
1227 firmware_loaded = 1;
1228 } else {
1229 char filename[32];
1230 unsigned int soc;
1231 unsigned int rev_h;
1232 unsigned int rev_l;
1234 soc = soc_info(&rev_h, &rev_l);
1235 if (!soc) {
1236 dev_err(&ofdev->dev, "unknown CPU model\n");
1237 return -ENXIO;
1239 sprintf(filename, "fsl_qe_ucode_uart_%u_%u%u.bin",
1240 soc, rev_h, rev_l);
1242 dev_info(&ofdev->dev, "waiting for firmware %s\n",
1243 filename);
1246 * We call request_firmware_nowait instead of
1247 * request_firmware so that the driver can load and
1248 * initialize the ports without holding up the rest of
1249 * the kernel. If hotplug support is enabled in the
1250 * kernel, then we use it.
1252 ret = request_firmware_nowait(THIS_MODULE,
1253 FW_ACTION_HOTPLUG, filename, &ofdev->dev,
1254 GFP_KERNEL, &ofdev->dev, uart_firmware_cont);
1255 if (ret) {
1256 dev_err(&ofdev->dev,
1257 "could not load firmware %s\n",
1258 filename);
1259 return ret;
1264 qe_port = kzalloc(sizeof(struct uart_qe_port), GFP_KERNEL);
1265 if (!qe_port) {
1266 dev_err(&ofdev->dev, "can't allocate QE port structure\n");
1267 return -ENOMEM;
1270 /* Search for IRQ and mapbase */
1271 ret = of_address_to_resource(np, 0, &res);
1272 if (ret) {
1273 dev_err(&ofdev->dev, "missing 'reg' property in device tree\n");
1274 goto out_free;
1276 if (!res.start) {
1277 dev_err(&ofdev->dev, "invalid 'reg' property in device tree\n");
1278 ret = -EINVAL;
1279 goto out_free;
1281 qe_port->port.mapbase = res.start;
1283 /* Get the UCC number (device ID) */
1284 /* UCCs are numbered 1-7 */
1285 iprop = of_get_property(np, "cell-index", NULL);
1286 if (!iprop) {
1287 iprop = of_get_property(np, "device-id", NULL);
1288 if (!iprop) {
1289 dev_err(&ofdev->dev, "UCC is unspecified in "
1290 "device tree\n");
1291 ret = -EINVAL;
1292 goto out_free;
1296 if ((*iprop < 1) || (*iprop > UCC_MAX_NUM)) {
1297 dev_err(&ofdev->dev, "no support for UCC%u\n", *iprop);
1298 ret = -ENODEV;
1299 goto out_free;
1301 qe_port->ucc_num = *iprop - 1;
1304 * In the future, we should not require the BRG to be specified in the
1305 * device tree. If no clock-source is specified, then just pick a BRG
1306 * to use. This requires a new QE library function that manages BRG
1307 * assignments.
1310 sprop = of_get_property(np, "rx-clock-name", NULL);
1311 if (!sprop) {
1312 dev_err(&ofdev->dev, "missing rx-clock-name in device tree\n");
1313 ret = -ENODEV;
1314 goto out_free;
1317 qe_port->us_info.rx_clock = qe_clock_source(sprop);
1318 if ((qe_port->us_info.rx_clock < QE_BRG1) ||
1319 (qe_port->us_info.rx_clock > QE_BRG16)) {
1320 dev_err(&ofdev->dev, "rx-clock-name must be a BRG for UART\n");
1321 ret = -ENODEV;
1322 goto out_free;
1325 #ifdef LOOPBACK
1326 /* In internal loopback mode, TX and RX must use the same clock */
1327 qe_port->us_info.tx_clock = qe_port->us_info.rx_clock;
1328 #else
1329 sprop = of_get_property(np, "tx-clock-name", NULL);
1330 if (!sprop) {
1331 dev_err(&ofdev->dev, "missing tx-clock-name in device tree\n");
1332 ret = -ENODEV;
1333 goto out_free;
1335 qe_port->us_info.tx_clock = qe_clock_source(sprop);
1336 #endif
1337 if ((qe_port->us_info.tx_clock < QE_BRG1) ||
1338 (qe_port->us_info.tx_clock > QE_BRG16)) {
1339 dev_err(&ofdev->dev, "tx-clock-name must be a BRG for UART\n");
1340 ret = -ENODEV;
1341 goto out_free;
1344 /* Get the port number, numbered 0-3 */
1345 iprop = of_get_property(np, "port-number", NULL);
1346 if (!iprop) {
1347 dev_err(&ofdev->dev, "missing port-number in device tree\n");
1348 ret = -EINVAL;
1349 goto out_free;
1351 qe_port->port.line = *iprop;
1352 if (qe_port->port.line >= UCC_MAX_UART) {
1353 dev_err(&ofdev->dev, "port-number must be 0-%u\n",
1354 UCC_MAX_UART - 1);
1355 ret = -EINVAL;
1356 goto out_free;
1359 qe_port->port.irq = irq_of_parse_and_map(np, 0);
1360 if (qe_port->port.irq == NO_IRQ) {
1361 dev_err(&ofdev->dev, "could not map IRQ for UCC%u\n",
1362 qe_port->ucc_num + 1);
1363 ret = -EINVAL;
1364 goto out_free;
1368 * Newer device trees have an "fsl,qe" compatible property for the QE
1369 * node, but we still need to support older device trees.
1371 np = of_find_compatible_node(NULL, NULL, "fsl,qe");
1372 if (!np) {
1373 np = of_find_node_by_type(NULL, "qe");
1374 if (!np) {
1375 dev_err(&ofdev->dev, "could not find 'qe' node\n");
1376 ret = -EINVAL;
1377 goto out_free;
1381 iprop = of_get_property(np, "brg-frequency", NULL);
1382 if (!iprop) {
1383 dev_err(&ofdev->dev,
1384 "missing brg-frequency in device tree\n");
1385 ret = -EINVAL;
1386 goto out_np;
1389 if (*iprop)
1390 qe_port->port.uartclk = *iprop;
1391 else {
1393 * Older versions of U-Boot do not initialize the brg-frequency
1394 * property, so in this case we assume the BRG frequency is
1395 * half the QE bus frequency.
1397 iprop = of_get_property(np, "bus-frequency", NULL);
1398 if (!iprop) {
1399 dev_err(&ofdev->dev,
1400 "missing QE bus-frequency in device tree\n");
1401 ret = -EINVAL;
1402 goto out_np;
1404 if (*iprop)
1405 qe_port->port.uartclk = *iprop / 2;
1406 else {
1407 dev_err(&ofdev->dev,
1408 "invalid QE bus-frequency in device tree\n");
1409 ret = -EINVAL;
1410 goto out_np;
1414 spin_lock_init(&qe_port->port.lock);
1415 qe_port->np = np;
1416 qe_port->port.dev = &ofdev->dev;
1417 qe_port->port.ops = &qe_uart_pops;
1418 qe_port->port.iotype = UPIO_MEM;
1420 qe_port->tx_nrfifos = TX_NUM_FIFO;
1421 qe_port->tx_fifosize = TX_BUF_SIZE;
1422 qe_port->rx_nrfifos = RX_NUM_FIFO;
1423 qe_port->rx_fifosize = RX_BUF_SIZE;
1425 qe_port->wait_closing = UCC_WAIT_CLOSING;
1426 qe_port->port.fifosize = 512;
1427 qe_port->port.flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP;
1429 qe_port->us_info.ucc_num = qe_port->ucc_num;
1430 qe_port->us_info.regs = (phys_addr_t) res.start;
1431 qe_port->us_info.irq = qe_port->port.irq;
1433 qe_port->us_info.rx_bd_ring_len = qe_port->rx_nrfifos;
1434 qe_port->us_info.tx_bd_ring_len = qe_port->tx_nrfifos;
1436 /* Make sure ucc_slow_init() initializes both TX and RX */
1437 qe_port->us_info.init_tx = 1;
1438 qe_port->us_info.init_rx = 1;
1440 /* Add the port to the uart sub-system. This will cause
1441 * qe_uart_config_port() to be called, so the us_info structure must
1442 * be initialized.
1444 ret = uart_add_one_port(&ucc_uart_driver, &qe_port->port);
1445 if (ret) {
1446 dev_err(&ofdev->dev, "could not add /dev/ttyQE%u\n",
1447 qe_port->port.line);
1448 goto out_np;
1451 dev_set_drvdata(&ofdev->dev, qe_port);
1453 dev_info(&ofdev->dev, "UCC%u assigned to /dev/ttyQE%u\n",
1454 qe_port->ucc_num + 1, qe_port->port.line);
1456 /* Display the mknod command for this device */
1457 dev_dbg(&ofdev->dev, "mknod command is 'mknod /dev/ttyQE%u c %u %u'\n",
1458 qe_port->port.line, SERIAL_QE_MAJOR,
1459 SERIAL_QE_MINOR + qe_port->port.line);
1461 return 0;
1462 out_np:
1463 of_node_put(np);
1464 out_free:
1465 kfree(qe_port);
1466 return ret;
1469 static int ucc_uart_remove(struct platform_device *ofdev)
1471 struct uart_qe_port *qe_port = dev_get_drvdata(&ofdev->dev);
1473 dev_info(&ofdev->dev, "removing /dev/ttyQE%u\n", qe_port->port.line);
1475 uart_remove_one_port(&ucc_uart_driver, &qe_port->port);
1477 dev_set_drvdata(&ofdev->dev, NULL);
1478 kfree(qe_port);
1480 return 0;
1483 static struct of_device_id ucc_uart_match[] = {
1485 .type = "serial",
1486 .compatible = "ucc_uart",
1490 MODULE_DEVICE_TABLE(of, ucc_uart_match);
1492 static struct platform_driver ucc_uart_of_driver = {
1493 .driver = {
1494 .name = "ucc_uart",
1495 .owner = THIS_MODULE,
1496 .of_match_table = ucc_uart_match,
1498 .probe = ucc_uart_probe,
1499 .remove = ucc_uart_remove,
1502 static int __init ucc_uart_init(void)
1504 int ret;
1506 printk(KERN_INFO "Freescale QUICC Engine UART device driver\n");
1507 #ifdef LOOPBACK
1508 printk(KERN_INFO "ucc-uart: Using loopback mode\n");
1509 #endif
1511 ret = uart_register_driver(&ucc_uart_driver);
1512 if (ret) {
1513 printk(KERN_ERR "ucc-uart: could not register UART driver\n");
1514 return ret;
1517 ret = platform_driver_register(&ucc_uart_of_driver);
1518 if (ret)
1519 printk(KERN_ERR
1520 "ucc-uart: could not register platform driver\n");
1522 return ret;
1525 static void __exit ucc_uart_exit(void)
1527 printk(KERN_INFO
1528 "Freescale QUICC Engine UART device driver unloading\n");
1530 platform_driver_unregister(&ucc_uart_of_driver);
1531 uart_unregister_driver(&ucc_uart_driver);
1534 module_init(ucc_uart_init);
1535 module_exit(ucc_uart_exit);
1537 MODULE_DESCRIPTION("Freescale QUICC Engine (QE) UART");
1538 MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
1539 MODULE_LICENSE("GPL v2");
1540 MODULE_ALIAS_CHARDEV_MAJOR(SERIAL_QE_MAJOR);