2 * Freescale STMP37XX/STMP378X Application UART driver
4 * Author: dmitry pervushin <dimka@embeddedalley.com>
6 * Copyright 2008-2010 Freescale Semiconductor, Inc.
7 * Copyright 2008 Embedded Alley Solutions, Inc All Rights Reserved.
9 * The code contained herein is licensed under the GNU General Public
10 * License. You may obtain a copy of the GNU General Public License
11 * Version 2 or later at the following locations:
13 * http://www.opensource.org/licenses/gpl-license.html
14 * http://www.gnu.org/copyleft/gpl.html
17 #include <linux/kernel.h>
18 #include <linux/errno.h>
19 #include <linux/init.h>
20 #include <linux/console.h>
21 #include <linux/interrupt.h>
22 #include <linux/module.h>
23 #include <linux/slab.h>
24 #include <linux/wait.h>
25 #include <linux/tty.h>
26 #include <linux/tty_driver.h>
27 #include <linux/tty_flip.h>
28 #include <linux/serial.h>
29 #include <linux/serial_core.h>
30 #include <linux/platform_device.h>
31 #include <linux/device.h>
32 #include <linux/clk.h>
33 #include <linux/delay.h>
35 #include <linux/pinctrl/consumer.h>
36 #include <linux/of_device.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/dmaengine.h>
40 #include <asm/cacheflush.h>
42 #define MXS_AUART_PORTS 5
44 #define AUART_CTRL0 0x00000000
45 #define AUART_CTRL0_SET 0x00000004
46 #define AUART_CTRL0_CLR 0x00000008
47 #define AUART_CTRL0_TOG 0x0000000c
48 #define AUART_CTRL1 0x00000010
49 #define AUART_CTRL1_SET 0x00000014
50 #define AUART_CTRL1_CLR 0x00000018
51 #define AUART_CTRL1_TOG 0x0000001c
52 #define AUART_CTRL2 0x00000020
53 #define AUART_CTRL2_SET 0x00000024
54 #define AUART_CTRL2_CLR 0x00000028
55 #define AUART_CTRL2_TOG 0x0000002c
56 #define AUART_LINECTRL 0x00000030
57 #define AUART_LINECTRL_SET 0x00000034
58 #define AUART_LINECTRL_CLR 0x00000038
59 #define AUART_LINECTRL_TOG 0x0000003c
60 #define AUART_LINECTRL2 0x00000040
61 #define AUART_LINECTRL2_SET 0x00000044
62 #define AUART_LINECTRL2_CLR 0x00000048
63 #define AUART_LINECTRL2_TOG 0x0000004c
64 #define AUART_INTR 0x00000050
65 #define AUART_INTR_SET 0x00000054
66 #define AUART_INTR_CLR 0x00000058
67 #define AUART_INTR_TOG 0x0000005c
68 #define AUART_DATA 0x00000060
69 #define AUART_STAT 0x00000070
70 #define AUART_DEBUG 0x00000080
71 #define AUART_VERSION 0x00000090
72 #define AUART_AUTOBAUD 0x000000a0
74 #define AUART_CTRL0_SFTRST (1 << 31)
75 #define AUART_CTRL0_CLKGATE (1 << 30)
76 #define AUART_CTRL0_RXTO_ENABLE (1 << 27)
77 #define AUART_CTRL0_RXTIMEOUT(v) (((v) & 0x7ff) << 16)
78 #define AUART_CTRL0_XFER_COUNT(v) ((v) & 0xffff)
80 #define AUART_CTRL1_XFER_COUNT(v) ((v) & 0xffff)
82 #define AUART_CTRL2_DMAONERR (1 << 26)
83 #define AUART_CTRL2_TXDMAE (1 << 25)
84 #define AUART_CTRL2_RXDMAE (1 << 24)
86 #define AUART_CTRL2_CTSEN (1 << 15)
87 #define AUART_CTRL2_RTSEN (1 << 14)
88 #define AUART_CTRL2_RTS (1 << 11)
89 #define AUART_CTRL2_RXE (1 << 9)
90 #define AUART_CTRL2_TXE (1 << 8)
91 #define AUART_CTRL2_UARTEN (1 << 0)
93 #define AUART_LINECTRL_BAUD_DIVINT_SHIFT 16
94 #define AUART_LINECTRL_BAUD_DIVINT_MASK 0xffff0000
95 #define AUART_LINECTRL_BAUD_DIVINT(v) (((v) & 0xffff) << 16)
96 #define AUART_LINECTRL_BAUD_DIVFRAC_SHIFT 8
97 #define AUART_LINECTRL_BAUD_DIVFRAC_MASK 0x00003f00
98 #define AUART_LINECTRL_BAUD_DIVFRAC(v) (((v) & 0x3f) << 8)
99 #define AUART_LINECTRL_WLEN_MASK 0x00000060
100 #define AUART_LINECTRL_WLEN(v) (((v) & 0x3) << 5)
101 #define AUART_LINECTRL_FEN (1 << 4)
102 #define AUART_LINECTRL_STP2 (1 << 3)
103 #define AUART_LINECTRL_EPS (1 << 2)
104 #define AUART_LINECTRL_PEN (1 << 1)
105 #define AUART_LINECTRL_BRK (1 << 0)
107 #define AUART_INTR_RTIEN (1 << 22)
108 #define AUART_INTR_TXIEN (1 << 21)
109 #define AUART_INTR_RXIEN (1 << 20)
110 #define AUART_INTR_CTSMIEN (1 << 17)
111 #define AUART_INTR_RTIS (1 << 6)
112 #define AUART_INTR_TXIS (1 << 5)
113 #define AUART_INTR_RXIS (1 << 4)
114 #define AUART_INTR_CTSMIS (1 << 1)
116 #define AUART_STAT_BUSY (1 << 29)
117 #define AUART_STAT_CTS (1 << 28)
118 #define AUART_STAT_TXFE (1 << 27)
119 #define AUART_STAT_TXFF (1 << 25)
120 #define AUART_STAT_RXFE (1 << 24)
121 #define AUART_STAT_OERR (1 << 19)
122 #define AUART_STAT_BERR (1 << 18)
123 #define AUART_STAT_PERR (1 << 17)
124 #define AUART_STAT_FERR (1 << 16)
125 #define AUART_STAT_RXCOUNT_MASK 0xffff
127 static struct uart_driver auart_driver
;
129 enum mxs_auart_type
{
134 struct mxs_auart_port
{
135 struct uart_port port
;
137 #define MXS_AUART_DMA_CONFIG 0x1
138 #define MXS_AUART_DMA_ENABLED 0x2
139 #define MXS_AUART_DMA_TX_SYNC 2 /* bit 2 */
140 #define MXS_AUART_DMA_RX_READY 3 /* bit 3 */
143 enum mxs_auart_type devtype
;
151 struct scatterlist tx_sgl
;
152 struct dma_chan
*tx_dma_chan
;
155 struct scatterlist rx_sgl
;
156 struct dma_chan
*rx_dma_chan
;
160 static struct platform_device_id mxs_auart_devtype
[] = {
161 { .name
= "mxs-auart-imx23", .driver_data
= IMX23_AUART
},
162 { .name
= "mxs-auart-imx28", .driver_data
= IMX28_AUART
},
165 MODULE_DEVICE_TABLE(platform
, mxs_auart_devtype
);
167 static struct of_device_id mxs_auart_dt_ids
[] = {
169 .compatible
= "fsl,imx28-auart",
170 .data
= &mxs_auart_devtype
[IMX28_AUART
]
172 .compatible
= "fsl,imx23-auart",
173 .data
= &mxs_auart_devtype
[IMX23_AUART
]
174 }, { /* sentinel */ }
176 MODULE_DEVICE_TABLE(of
, mxs_auart_dt_ids
);
178 static inline int is_imx28_auart(struct mxs_auart_port
*s
)
180 return s
->devtype
== IMX28_AUART
;
183 static inline bool auart_dma_enabled(struct mxs_auart_port
*s
)
185 return s
->flags
& MXS_AUART_DMA_ENABLED
;
188 static void mxs_auart_stop_tx(struct uart_port
*u
);
190 #define to_auart_port(u) container_of(u, struct mxs_auart_port, port)
192 static void mxs_auart_tx_chars(struct mxs_auart_port
*s
);
194 static void dma_tx_callback(void *param
)
196 struct mxs_auart_port
*s
= param
;
197 struct circ_buf
*xmit
= &s
->port
.state
->xmit
;
199 dma_unmap_sg(s
->dev
, &s
->tx_sgl
, 1, DMA_TO_DEVICE
);
201 /* clear the bit used to serialize the DMA tx. */
202 clear_bit(MXS_AUART_DMA_TX_SYNC
, &s
->flags
);
203 smp_mb__after_clear_bit();
205 /* wake up the possible processes. */
206 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
207 uart_write_wakeup(&s
->port
);
209 mxs_auart_tx_chars(s
);
212 static int mxs_auart_dma_tx(struct mxs_auart_port
*s
, int size
)
214 struct dma_async_tx_descriptor
*desc
;
215 struct scatterlist
*sgl
= &s
->tx_sgl
;
216 struct dma_chan
*channel
= s
->tx_dma_chan
;
219 /* [1] : send PIO. Note, the first pio word is CTRL1. */
220 pio
= AUART_CTRL1_XFER_COUNT(size
);
221 desc
= dmaengine_prep_slave_sg(channel
, (struct scatterlist
*)&pio
,
222 1, DMA_TRANS_NONE
, 0);
224 dev_err(s
->dev
, "step 1 error\n");
228 /* [2] : set DMA buffer. */
229 sg_init_one(sgl
, s
->tx_dma_buf
, size
);
230 dma_map_sg(s
->dev
, sgl
, 1, DMA_TO_DEVICE
);
231 desc
= dmaengine_prep_slave_sg(channel
, sgl
,
232 1, DMA_MEM_TO_DEV
, DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
234 dev_err(s
->dev
, "step 2 error\n");
238 /* [3] : submit the DMA */
239 desc
->callback
= dma_tx_callback
;
240 desc
->callback_param
= s
;
241 dmaengine_submit(desc
);
242 dma_async_issue_pending(channel
);
246 static void mxs_auart_tx_chars(struct mxs_auart_port
*s
)
248 struct circ_buf
*xmit
= &s
->port
.state
->xmit
;
250 if (auart_dma_enabled(s
)) {
253 void *buffer
= s
->tx_dma_buf
;
255 if (test_and_set_bit(MXS_AUART_DMA_TX_SYNC
, &s
->flags
))
258 while (!uart_circ_empty(xmit
) && !uart_tx_stopped(&s
->port
)) {
259 size
= min_t(u32
, UART_XMIT_SIZE
- i
,
260 CIRC_CNT_TO_END(xmit
->head
,
263 memcpy(buffer
+ i
, xmit
->buf
+ xmit
->tail
, size
);
264 xmit
->tail
= (xmit
->tail
+ size
) & (UART_XMIT_SIZE
- 1);
267 if (i
>= UART_XMIT_SIZE
)
271 if (uart_tx_stopped(&s
->port
))
272 mxs_auart_stop_tx(&s
->port
);
275 mxs_auart_dma_tx(s
, i
);
277 clear_bit(MXS_AUART_DMA_TX_SYNC
, &s
->flags
);
278 smp_mb__after_clear_bit();
284 while (!(readl(s
->port
.membase
+ AUART_STAT
) &
286 if (s
->port
.x_char
) {
288 writel(s
->port
.x_char
,
289 s
->port
.membase
+ AUART_DATA
);
293 if (!uart_circ_empty(xmit
) && !uart_tx_stopped(&s
->port
)) {
295 writel(xmit
->buf
[xmit
->tail
],
296 s
->port
.membase
+ AUART_DATA
);
297 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
301 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
302 uart_write_wakeup(&s
->port
);
304 if (uart_circ_empty(&(s
->port
.state
->xmit
)))
305 writel(AUART_INTR_TXIEN
,
306 s
->port
.membase
+ AUART_INTR_CLR
);
308 writel(AUART_INTR_TXIEN
,
309 s
->port
.membase
+ AUART_INTR_SET
);
311 if (uart_tx_stopped(&s
->port
))
312 mxs_auart_stop_tx(&s
->port
);
315 static void mxs_auart_rx_char(struct mxs_auart_port
*s
)
321 c
= readl(s
->port
.membase
+ AUART_DATA
);
322 stat
= readl(s
->port
.membase
+ AUART_STAT
);
327 if (stat
& AUART_STAT_BERR
) {
328 s
->port
.icount
.brk
++;
329 if (uart_handle_break(&s
->port
))
331 } else if (stat
& AUART_STAT_PERR
) {
332 s
->port
.icount
.parity
++;
333 } else if (stat
& AUART_STAT_FERR
) {
334 s
->port
.icount
.frame
++;
338 * Mask off conditions which should be ingored.
340 stat
&= s
->port
.read_status_mask
;
342 if (stat
& AUART_STAT_BERR
) {
344 } else if (stat
& AUART_STAT_PERR
)
346 else if (stat
& AUART_STAT_FERR
)
349 if (stat
& AUART_STAT_OERR
)
350 s
->port
.icount
.overrun
++;
352 if (uart_handle_sysrq_char(&s
->port
, c
))
355 uart_insert_char(&s
->port
, stat
, AUART_STAT_OERR
, c
, flag
);
357 writel(stat
, s
->port
.membase
+ AUART_STAT
);
360 static void mxs_auart_rx_chars(struct mxs_auart_port
*s
)
365 stat
= readl(s
->port
.membase
+ AUART_STAT
);
366 if (stat
& AUART_STAT_RXFE
)
368 mxs_auart_rx_char(s
);
371 writel(stat
, s
->port
.membase
+ AUART_STAT
);
372 tty_flip_buffer_push(&s
->port
.state
->port
);
375 static int mxs_auart_request_port(struct uart_port
*u
)
380 static int mxs_auart_verify_port(struct uart_port
*u
,
381 struct serial_struct
*ser
)
383 if (u
->type
!= PORT_UNKNOWN
&& u
->type
!= PORT_IMX
)
388 static void mxs_auart_config_port(struct uart_port
*u
, int flags
)
392 static const char *mxs_auart_type(struct uart_port
*u
)
394 struct mxs_auart_port
*s
= to_auart_port(u
);
396 return dev_name(s
->dev
);
399 static void mxs_auart_release_port(struct uart_port
*u
)
403 static void mxs_auart_set_mctrl(struct uart_port
*u
, unsigned mctrl
)
405 struct mxs_auart_port
*s
= to_auart_port(u
);
407 u32 ctrl
= readl(u
->membase
+ AUART_CTRL2
);
409 ctrl
&= ~(AUART_CTRL2_RTSEN
| AUART_CTRL2_RTS
);
410 if (mctrl
& TIOCM_RTS
) {
411 if (tty_port_cts_enabled(&u
->state
->port
))
412 ctrl
|= AUART_CTRL2_RTSEN
;
414 ctrl
|= AUART_CTRL2_RTS
;
418 writel(ctrl
, u
->membase
+ AUART_CTRL2
);
421 static u32
mxs_auart_get_mctrl(struct uart_port
*u
)
423 struct mxs_auart_port
*s
= to_auart_port(u
);
424 u32 stat
= readl(u
->membase
+ AUART_STAT
);
425 int ctrl2
= readl(u
->membase
+ AUART_CTRL2
);
429 if (stat
& AUART_STAT_CTS
)
432 if (ctrl2
& AUART_CTRL2_RTS
)
438 static int mxs_auart_dma_prep_rx(struct mxs_auart_port
*s
);
439 static void dma_rx_callback(void *arg
)
441 struct mxs_auart_port
*s
= (struct mxs_auart_port
*) arg
;
442 struct tty_port
*port
= &s
->port
.state
->port
;
446 dma_unmap_sg(s
->dev
, &s
->rx_sgl
, 1, DMA_FROM_DEVICE
);
448 stat
= readl(s
->port
.membase
+ AUART_STAT
);
449 stat
&= ~(AUART_STAT_OERR
| AUART_STAT_BERR
|
450 AUART_STAT_PERR
| AUART_STAT_FERR
);
452 count
= stat
& AUART_STAT_RXCOUNT_MASK
;
453 tty_insert_flip_string(port
, s
->rx_dma_buf
, count
);
455 writel(stat
, s
->port
.membase
+ AUART_STAT
);
456 tty_flip_buffer_push(port
);
458 /* start the next DMA for RX. */
459 mxs_auart_dma_prep_rx(s
);
462 static int mxs_auart_dma_prep_rx(struct mxs_auart_port
*s
)
464 struct dma_async_tx_descriptor
*desc
;
465 struct scatterlist
*sgl
= &s
->rx_sgl
;
466 struct dma_chan
*channel
= s
->rx_dma_chan
;
470 pio
[0] = AUART_CTRL0_RXTO_ENABLE
471 | AUART_CTRL0_RXTIMEOUT(0x80)
472 | AUART_CTRL0_XFER_COUNT(UART_XMIT_SIZE
);
473 desc
= dmaengine_prep_slave_sg(channel
, (struct scatterlist
*)pio
,
474 1, DMA_TRANS_NONE
, 0);
476 dev_err(s
->dev
, "step 1 error\n");
480 /* [2] : send DMA request */
481 sg_init_one(sgl
, s
->rx_dma_buf
, UART_XMIT_SIZE
);
482 dma_map_sg(s
->dev
, sgl
, 1, DMA_FROM_DEVICE
);
483 desc
= dmaengine_prep_slave_sg(channel
, sgl
, 1, DMA_DEV_TO_MEM
,
484 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
486 dev_err(s
->dev
, "step 2 error\n");
490 /* [3] : submit the DMA, but do not issue it. */
491 desc
->callback
= dma_rx_callback
;
492 desc
->callback_param
= s
;
493 dmaengine_submit(desc
);
494 dma_async_issue_pending(channel
);
498 static void mxs_auart_dma_exit_channel(struct mxs_auart_port
*s
)
500 if (s
->tx_dma_chan
) {
501 dma_release_channel(s
->tx_dma_chan
);
502 s
->tx_dma_chan
= NULL
;
504 if (s
->rx_dma_chan
) {
505 dma_release_channel(s
->rx_dma_chan
);
506 s
->rx_dma_chan
= NULL
;
509 kfree(s
->tx_dma_buf
);
510 kfree(s
->rx_dma_buf
);
511 s
->tx_dma_buf
= NULL
;
512 s
->rx_dma_buf
= NULL
;
515 static void mxs_auart_dma_exit(struct mxs_auart_port
*s
)
518 writel(AUART_CTRL2_TXDMAE
| AUART_CTRL2_RXDMAE
| AUART_CTRL2_DMAONERR
,
519 s
->port
.membase
+ AUART_CTRL2_CLR
);
521 mxs_auart_dma_exit_channel(s
);
522 s
->flags
&= ~MXS_AUART_DMA_ENABLED
;
523 clear_bit(MXS_AUART_DMA_TX_SYNC
, &s
->flags
);
524 clear_bit(MXS_AUART_DMA_RX_READY
, &s
->flags
);
527 static int mxs_auart_dma_init(struct mxs_auart_port
*s
)
529 if (auart_dma_enabled(s
))
533 s
->rx_dma_chan
= dma_request_slave_channel(s
->dev
, "rx");
536 s
->rx_dma_buf
= kzalloc(UART_XMIT_SIZE
, GFP_KERNEL
| GFP_DMA
);
541 s
->tx_dma_chan
= dma_request_slave_channel(s
->dev
, "tx");
544 s
->tx_dma_buf
= kzalloc(UART_XMIT_SIZE
, GFP_KERNEL
| GFP_DMA
);
549 s
->flags
|= MXS_AUART_DMA_ENABLED
;
550 dev_dbg(s
->dev
, "enabled the DMA support.");
555 mxs_auart_dma_exit_channel(s
);
560 static void mxs_auart_settermios(struct uart_port
*u
,
561 struct ktermios
*termios
,
562 struct ktermios
*old
)
564 struct mxs_auart_port
*s
= to_auart_port(u
);
565 u32 bm
, ctrl
, ctrl2
, div
;
566 unsigned int cflag
, baud
;
568 cflag
= termios
->c_cflag
;
570 ctrl
= AUART_LINECTRL_FEN
;
571 ctrl2
= readl(u
->membase
+ AUART_CTRL2
);
574 switch (cflag
& CSIZE
) {
591 ctrl
|= AUART_LINECTRL_WLEN(bm
);
594 if (cflag
& PARENB
) {
595 ctrl
|= AUART_LINECTRL_PEN
;
596 if ((cflag
& PARODD
) == 0)
597 ctrl
|= AUART_LINECTRL_EPS
;
600 u
->read_status_mask
= 0;
602 if (termios
->c_iflag
& INPCK
)
603 u
->read_status_mask
|= AUART_STAT_PERR
;
604 if (termios
->c_iflag
& (BRKINT
| PARMRK
))
605 u
->read_status_mask
|= AUART_STAT_BERR
;
608 * Characters to ignore
610 u
->ignore_status_mask
= 0;
611 if (termios
->c_iflag
& IGNPAR
)
612 u
->ignore_status_mask
|= AUART_STAT_PERR
;
613 if (termios
->c_iflag
& IGNBRK
) {
614 u
->ignore_status_mask
|= AUART_STAT_BERR
;
616 * If we're ignoring parity and break indicators,
617 * ignore overruns too (for real raw support).
619 if (termios
->c_iflag
& IGNPAR
)
620 u
->ignore_status_mask
|= AUART_STAT_OERR
;
624 * ignore all characters if CREAD is not set
627 ctrl2
|= AUART_CTRL2_RXE
;
629 ctrl2
&= ~AUART_CTRL2_RXE
;
631 /* figure out the stop bits requested */
633 ctrl
|= AUART_LINECTRL_STP2
;
635 /* figure out the hardware flow control settings */
636 if (cflag
& CRTSCTS
) {
638 * The DMA has a bug(see errata:2836) in mx23.
639 * So we can not implement the DMA for auart in mx23,
640 * we can only implement the DMA support for auart
643 if (is_imx28_auart(s
) && (s
->flags
& MXS_AUART_DMA_CONFIG
)) {
644 if (!mxs_auart_dma_init(s
))
645 /* enable DMA tranfer */
646 ctrl2
|= AUART_CTRL2_TXDMAE
| AUART_CTRL2_RXDMAE
647 | AUART_CTRL2_DMAONERR
;
649 ctrl2
|= AUART_CTRL2_CTSEN
| AUART_CTRL2_RTSEN
;
651 ctrl2
&= ~(AUART_CTRL2_CTSEN
| AUART_CTRL2_RTSEN
);
655 baud
= uart_get_baud_rate(u
, termios
, old
, 0, u
->uartclk
);
656 div
= u
->uartclk
* 32 / baud
;
657 ctrl
|= AUART_LINECTRL_BAUD_DIVFRAC(div
& 0x3F);
658 ctrl
|= AUART_LINECTRL_BAUD_DIVINT(div
>> 6);
660 writel(ctrl
, u
->membase
+ AUART_LINECTRL
);
661 writel(ctrl2
, u
->membase
+ AUART_CTRL2
);
663 uart_update_timeout(u
, termios
->c_cflag
, baud
);
665 /* prepare for the DMA RX. */
666 if (auart_dma_enabled(s
) &&
667 !test_and_set_bit(MXS_AUART_DMA_RX_READY
, &s
->flags
)) {
668 if (!mxs_auart_dma_prep_rx(s
)) {
669 /* Disable the normal RX interrupt. */
670 writel(AUART_INTR_RXIEN
| AUART_INTR_RTIEN
,
671 u
->membase
+ AUART_INTR_CLR
);
673 mxs_auart_dma_exit(s
);
674 dev_err(s
->dev
, "We can not start up the DMA.\n");
679 static irqreturn_t
mxs_auart_irq_handle(int irq
, void *context
)
682 struct mxs_auart_port
*s
= context
;
683 u32 stat
= readl(s
->port
.membase
+ AUART_STAT
);
685 istatus
= istat
= readl(s
->port
.membase
+ AUART_INTR
);
687 if (istat
& AUART_INTR_CTSMIS
) {
688 uart_handle_cts_change(&s
->port
, stat
& AUART_STAT_CTS
);
689 writel(AUART_INTR_CTSMIS
,
690 s
->port
.membase
+ AUART_INTR_CLR
);
691 istat
&= ~AUART_INTR_CTSMIS
;
694 if (istat
& (AUART_INTR_RTIS
| AUART_INTR_RXIS
)) {
695 if (!auart_dma_enabled(s
))
696 mxs_auart_rx_chars(s
);
697 istat
&= ~(AUART_INTR_RTIS
| AUART_INTR_RXIS
);
700 if (istat
& AUART_INTR_TXIS
) {
701 mxs_auart_tx_chars(s
);
702 istat
&= ~AUART_INTR_TXIS
;
705 writel(istatus
& (AUART_INTR_RTIS
708 | AUART_INTR_CTSMIS
),
709 s
->port
.membase
+ AUART_INTR_CLR
);
714 static void mxs_auart_reset(struct uart_port
*u
)
719 writel(AUART_CTRL0_SFTRST
, u
->membase
+ AUART_CTRL0_CLR
);
721 for (i
= 0; i
< 10000; i
++) {
722 reg
= readl(u
->membase
+ AUART_CTRL0
);
723 if (!(reg
& AUART_CTRL0_SFTRST
))
727 writel(AUART_CTRL0_CLKGATE
, u
->membase
+ AUART_CTRL0_CLR
);
730 static int mxs_auart_startup(struct uart_port
*u
)
732 struct mxs_auart_port
*s
= to_auart_port(u
);
734 clk_prepare_enable(s
->clk
);
736 writel(AUART_CTRL0_CLKGATE
, u
->membase
+ AUART_CTRL0_CLR
);
738 writel(AUART_CTRL2_UARTEN
, u
->membase
+ AUART_CTRL2_SET
);
740 writel(AUART_INTR_RXIEN
| AUART_INTR_RTIEN
| AUART_INTR_CTSMIEN
,
741 u
->membase
+ AUART_INTR
);
744 * Enable fifo so all four bytes of a DMA word are written to
745 * output (otherwise, only the LSB is written, ie. 1 in 4 bytes)
747 writel(AUART_LINECTRL_FEN
, u
->membase
+ AUART_LINECTRL_SET
);
752 static void mxs_auart_shutdown(struct uart_port
*u
)
754 struct mxs_auart_port
*s
= to_auart_port(u
);
756 if (auart_dma_enabled(s
))
757 mxs_auart_dma_exit(s
);
759 writel(AUART_CTRL2_UARTEN
, u
->membase
+ AUART_CTRL2_CLR
);
761 writel(AUART_INTR_RXIEN
| AUART_INTR_RTIEN
| AUART_INTR_CTSMIEN
,
762 u
->membase
+ AUART_INTR_CLR
);
764 writel(AUART_CTRL0_CLKGATE
, u
->membase
+ AUART_CTRL0_SET
);
766 clk_disable_unprepare(s
->clk
);
769 static unsigned int mxs_auart_tx_empty(struct uart_port
*u
)
771 if (readl(u
->membase
+ AUART_STAT
) & AUART_STAT_TXFE
)
777 static void mxs_auart_start_tx(struct uart_port
*u
)
779 struct mxs_auart_port
*s
= to_auart_port(u
);
781 /* enable transmitter */
782 writel(AUART_CTRL2_TXE
, u
->membase
+ AUART_CTRL2_SET
);
784 mxs_auart_tx_chars(s
);
787 static void mxs_auart_stop_tx(struct uart_port
*u
)
789 writel(AUART_CTRL2_TXE
, u
->membase
+ AUART_CTRL2_CLR
);
792 static void mxs_auart_stop_rx(struct uart_port
*u
)
794 writel(AUART_CTRL2_RXE
, u
->membase
+ AUART_CTRL2_CLR
);
797 static void mxs_auart_break_ctl(struct uart_port
*u
, int ctl
)
800 writel(AUART_LINECTRL_BRK
,
801 u
->membase
+ AUART_LINECTRL_SET
);
803 writel(AUART_LINECTRL_BRK
,
804 u
->membase
+ AUART_LINECTRL_CLR
);
807 static void mxs_auart_enable_ms(struct uart_port
*port
)
812 static struct uart_ops mxs_auart_ops
= {
813 .tx_empty
= mxs_auart_tx_empty
,
814 .start_tx
= mxs_auart_start_tx
,
815 .stop_tx
= mxs_auart_stop_tx
,
816 .stop_rx
= mxs_auart_stop_rx
,
817 .enable_ms
= mxs_auart_enable_ms
,
818 .break_ctl
= mxs_auart_break_ctl
,
819 .set_mctrl
= mxs_auart_set_mctrl
,
820 .get_mctrl
= mxs_auart_get_mctrl
,
821 .startup
= mxs_auart_startup
,
822 .shutdown
= mxs_auart_shutdown
,
823 .set_termios
= mxs_auart_settermios
,
824 .type
= mxs_auart_type
,
825 .release_port
= mxs_auart_release_port
,
826 .request_port
= mxs_auart_request_port
,
827 .config_port
= mxs_auart_config_port
,
828 .verify_port
= mxs_auart_verify_port
,
831 static struct mxs_auart_port
*auart_port
[MXS_AUART_PORTS
];
833 #ifdef CONFIG_SERIAL_MXS_AUART_CONSOLE
834 static void mxs_auart_console_putchar(struct uart_port
*port
, int ch
)
836 unsigned int to
= 1000;
838 while (readl(port
->membase
+ AUART_STAT
) & AUART_STAT_TXFF
) {
844 writel(ch
, port
->membase
+ AUART_DATA
);
848 auart_console_write(struct console
*co
, const char *str
, unsigned int count
)
850 struct mxs_auart_port
*s
;
851 struct uart_port
*port
;
852 unsigned int old_ctrl0
, old_ctrl2
;
853 unsigned int to
= 1000;
855 if (co
->index
>= MXS_AUART_PORTS
|| co
->index
< 0)
858 s
= auart_port
[co
->index
];
863 /* First save the CR then disable the interrupts */
864 old_ctrl2
= readl(port
->membase
+ AUART_CTRL2
);
865 old_ctrl0
= readl(port
->membase
+ AUART_CTRL0
);
867 writel(AUART_CTRL0_CLKGATE
,
868 port
->membase
+ AUART_CTRL0_CLR
);
869 writel(AUART_CTRL2_UARTEN
| AUART_CTRL2_TXE
,
870 port
->membase
+ AUART_CTRL2_SET
);
872 uart_console_write(port
, str
, count
, mxs_auart_console_putchar
);
875 * Finally, wait for transmitter to become empty
876 * and restore the TCR
878 while (readl(port
->membase
+ AUART_STAT
) & AUART_STAT_BUSY
) {
884 writel(old_ctrl0
, port
->membase
+ AUART_CTRL0
);
885 writel(old_ctrl2
, port
->membase
+ AUART_CTRL2
);
891 auart_console_get_options(struct uart_port
*port
, int *baud
,
892 int *parity
, int *bits
)
894 unsigned int lcr_h
, quot
;
896 if (!(readl(port
->membase
+ AUART_CTRL2
) & AUART_CTRL2_UARTEN
))
899 lcr_h
= readl(port
->membase
+ AUART_LINECTRL
);
902 if (lcr_h
& AUART_LINECTRL_PEN
) {
903 if (lcr_h
& AUART_LINECTRL_EPS
)
909 if ((lcr_h
& AUART_LINECTRL_WLEN_MASK
) == AUART_LINECTRL_WLEN(2))
914 quot
= ((readl(port
->membase
+ AUART_LINECTRL
)
915 & AUART_LINECTRL_BAUD_DIVINT_MASK
))
916 >> (AUART_LINECTRL_BAUD_DIVINT_SHIFT
- 6);
917 quot
|= ((readl(port
->membase
+ AUART_LINECTRL
)
918 & AUART_LINECTRL_BAUD_DIVFRAC_MASK
))
919 >> AUART_LINECTRL_BAUD_DIVFRAC_SHIFT
;
923 *baud
= (port
->uartclk
<< 2) / quot
;
927 auart_console_setup(struct console
*co
, char *options
)
929 struct mxs_auart_port
*s
;
937 * Check whether an invalid uart number has been specified, and
938 * if so, search for the first available port that does have
941 if (co
->index
== -1 || co
->index
>= ARRAY_SIZE(auart_port
))
943 s
= auart_port
[co
->index
];
947 clk_prepare_enable(s
->clk
);
950 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
952 auart_console_get_options(&s
->port
, &baud
, &parity
, &bits
);
954 ret
= uart_set_options(&s
->port
, co
, baud
, parity
, bits
, flow
);
956 clk_disable_unprepare(s
->clk
);
961 static struct console auart_console
= {
963 .write
= auart_console_write
,
964 .device
= uart_console_device
,
965 .setup
= auart_console_setup
,
966 .flags
= CON_PRINTBUFFER
,
968 .data
= &auart_driver
,
972 static struct uart_driver auart_driver
= {
973 .owner
= THIS_MODULE
,
974 .driver_name
= "ttyAPP",
975 .dev_name
= "ttyAPP",
978 .nr
= MXS_AUART_PORTS
,
979 #ifdef CONFIG_SERIAL_MXS_AUART_CONSOLE
980 .cons
= &auart_console
,
985 * This function returns 1 if pdev isn't a device instatiated by dt, 0 if it
986 * could successfully get all information from dt or a negative errno.
988 static int serial_mxs_probe_dt(struct mxs_auart_port
*s
,
989 struct platform_device
*pdev
)
991 struct device_node
*np
= pdev
->dev
.of_node
;
995 /* no device tree device */
998 ret
= of_alias_get_id(np
, "serial");
1000 dev_err(&pdev
->dev
, "failed to get alias id: %d\n", ret
);
1005 s
->flags
|= MXS_AUART_DMA_CONFIG
;
1010 static int mxs_auart_probe(struct platform_device
*pdev
)
1012 const struct of_device_id
*of_id
=
1013 of_match_device(mxs_auart_dt_ids
, &pdev
->dev
);
1014 struct mxs_auart_port
*s
;
1018 struct pinctrl
*pinctrl
;
1020 s
= kzalloc(sizeof(struct mxs_auart_port
), GFP_KERNEL
);
1026 ret
= serial_mxs_probe_dt(s
, pdev
);
1028 s
->port
.line
= pdev
->id
< 0 ? 0 : pdev
->id
;
1032 pinctrl
= devm_pinctrl_get_select_default(&pdev
->dev
);
1033 if (IS_ERR(pinctrl
)) {
1034 ret
= PTR_ERR(pinctrl
);
1039 pdev
->id_entry
= of_id
->data
;
1040 s
->devtype
= pdev
->id_entry
->driver_data
;
1043 s
->clk
= clk_get(&pdev
->dev
, NULL
);
1044 if (IS_ERR(s
->clk
)) {
1045 ret
= PTR_ERR(s
->clk
);
1049 r
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1055 s
->port
.mapbase
= r
->start
;
1056 s
->port
.membase
= ioremap(r
->start
, resource_size(r
));
1057 s
->port
.ops
= &mxs_auart_ops
;
1058 s
->port
.iotype
= UPIO_MEM
;
1059 s
->port
.fifosize
= 16;
1060 s
->port
.uartclk
= clk_get_rate(s
->clk
);
1061 s
->port
.type
= PORT_IMX
;
1062 s
->port
.dev
= s
->dev
= &pdev
->dev
;
1066 s
->irq
= platform_get_irq(pdev
, 0);
1067 s
->port
.irq
= s
->irq
;
1068 ret
= request_irq(s
->irq
, mxs_auart_irq_handle
, 0, dev_name(&pdev
->dev
), s
);
1072 platform_set_drvdata(pdev
, s
);
1074 auart_port
[s
->port
.line
] = s
;
1076 mxs_auart_reset(&s
->port
);
1078 ret
= uart_add_one_port(&auart_driver
, &s
->port
);
1082 version
= readl(s
->port
.membase
+ AUART_VERSION
);
1083 dev_info(&pdev
->dev
, "Found APPUART %d.%d.%d\n",
1084 (version
>> 24) & 0xff,
1085 (version
>> 16) & 0xff, version
& 0xffff);
1090 auart_port
[pdev
->id
] = NULL
;
1091 free_irq(s
->irq
, s
);
1100 static int mxs_auart_remove(struct platform_device
*pdev
)
1102 struct mxs_auart_port
*s
= platform_get_drvdata(pdev
);
1104 uart_remove_one_port(&auart_driver
, &s
->port
);
1106 auart_port
[pdev
->id
] = NULL
;
1109 free_irq(s
->irq
, s
);
1115 static struct platform_driver mxs_auart_driver
= {
1116 .probe
= mxs_auart_probe
,
1117 .remove
= mxs_auart_remove
,
1119 .name
= "mxs-auart",
1120 .owner
= THIS_MODULE
,
1121 .of_match_table
= mxs_auart_dt_ids
,
1125 static int __init
mxs_auart_init(void)
1129 r
= uart_register_driver(&auart_driver
);
1133 r
= platform_driver_register(&mxs_auart_driver
);
1139 uart_unregister_driver(&auart_driver
);
1144 static void __exit
mxs_auart_exit(void)
1146 platform_driver_unregister(&mxs_auart_driver
);
1147 uart_unregister_driver(&auart_driver
);
1150 module_init(mxs_auart_init
);
1151 module_exit(mxs_auart_exit
);
1152 MODULE_LICENSE("GPL");
1153 MODULE_DESCRIPTION("Freescale MXS application uart driver");
1154 MODULE_ALIAS("platform:mxs-auart");