1 // SPDX-License-Identifier: GPL-2.0+
3 * Freescale lpuart serial port driver
5 * Copyright 2012-2014 Freescale Semiconductor, Inc.
8 #if defined(CONFIG_SERIAL_FSL_LPUART_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
12 #include <linux/clk.h>
13 #include <linux/console.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/dmaengine.h>
16 #include <linux/dmapool.h>
18 #include <linux/irq.h>
19 #include <linux/module.h>
21 #include <linux/of_device.h>
22 #include <linux/of_dma.h>
23 #include <linux/serial_core.h>
24 #include <linux/slab.h>
25 #include <linux/tty_flip.h>
27 /* All registers are 8-bit width */
37 #define UARTMODEM 0x0d
38 #define UARTPFIFO 0x10
39 #define UARTCFIFO 0x11
40 #define UARTSFIFO 0x12
41 #define UARTTWFIFO 0x13
42 #define UARTTCFIFO 0x14
43 #define UARTRWFIFO 0x15
45 #define UARTBDH_LBKDIE 0x80
46 #define UARTBDH_RXEDGIE 0x40
47 #define UARTBDH_SBR_MASK 0x1f
49 #define UARTCR1_LOOPS 0x80
50 #define UARTCR1_RSRC 0x20
51 #define UARTCR1_M 0x10
52 #define UARTCR1_WAKE 0x08
53 #define UARTCR1_ILT 0x04
54 #define UARTCR1_PE 0x02
55 #define UARTCR1_PT 0x01
57 #define UARTCR2_TIE 0x80
58 #define UARTCR2_TCIE 0x40
59 #define UARTCR2_RIE 0x20
60 #define UARTCR2_ILIE 0x10
61 #define UARTCR2_TE 0x08
62 #define UARTCR2_RE 0x04
63 #define UARTCR2_RWU 0x02
64 #define UARTCR2_SBK 0x01
66 #define UARTSR1_TDRE 0x80
67 #define UARTSR1_TC 0x40
68 #define UARTSR1_RDRF 0x20
69 #define UARTSR1_IDLE 0x10
70 #define UARTSR1_OR 0x08
71 #define UARTSR1_NF 0x04
72 #define UARTSR1_FE 0x02
73 #define UARTSR1_PE 0x01
75 #define UARTCR3_R8 0x80
76 #define UARTCR3_T8 0x40
77 #define UARTCR3_TXDIR 0x20
78 #define UARTCR3_TXINV 0x10
79 #define UARTCR3_ORIE 0x08
80 #define UARTCR3_NEIE 0x04
81 #define UARTCR3_FEIE 0x02
82 #define UARTCR3_PEIE 0x01
84 #define UARTCR4_MAEN1 0x80
85 #define UARTCR4_MAEN2 0x40
86 #define UARTCR4_M10 0x20
87 #define UARTCR4_BRFA_MASK 0x1f
88 #define UARTCR4_BRFA_OFF 0
90 #define UARTCR5_TDMAS 0x80
91 #define UARTCR5_RDMAS 0x20
93 #define UARTMODEM_RXRTSE 0x08
94 #define UARTMODEM_TXRTSPOL 0x04
95 #define UARTMODEM_TXRTSE 0x02
96 #define UARTMODEM_TXCTSE 0x01
98 #define UARTPFIFO_TXFE 0x80
99 #define UARTPFIFO_FIFOSIZE_MASK 0x7
100 #define UARTPFIFO_TXSIZE_OFF 4
101 #define UARTPFIFO_RXFE 0x08
102 #define UARTPFIFO_RXSIZE_OFF 0
104 #define UARTCFIFO_TXFLUSH 0x80
105 #define UARTCFIFO_RXFLUSH 0x40
106 #define UARTCFIFO_RXOFE 0x04
107 #define UARTCFIFO_TXOFE 0x02
108 #define UARTCFIFO_RXUFE 0x01
110 #define UARTSFIFO_TXEMPT 0x80
111 #define UARTSFIFO_RXEMPT 0x40
112 #define UARTSFIFO_RXOF 0x04
113 #define UARTSFIFO_TXOF 0x02
114 #define UARTSFIFO_RXUF 0x01
116 /* 32-bit register definition */
117 #define UARTBAUD 0x00
118 #define UARTSTAT 0x04
119 #define UARTCTRL 0x08
120 #define UARTDATA 0x0C
121 #define UARTMATCH 0x10
122 #define UARTMODIR 0x14
123 #define UARTFIFO 0x18
124 #define UARTWATER 0x1c
126 #define UARTBAUD_MAEN1 0x80000000
127 #define UARTBAUD_MAEN2 0x40000000
128 #define UARTBAUD_M10 0x20000000
129 #define UARTBAUD_TDMAE 0x00800000
130 #define UARTBAUD_RDMAE 0x00200000
131 #define UARTBAUD_MATCFG 0x00400000
132 #define UARTBAUD_BOTHEDGE 0x00020000
133 #define UARTBAUD_RESYNCDIS 0x00010000
134 #define UARTBAUD_LBKDIE 0x00008000
135 #define UARTBAUD_RXEDGIE 0x00004000
136 #define UARTBAUD_SBNS 0x00002000
137 #define UARTBAUD_SBR 0x00000000
138 #define UARTBAUD_SBR_MASK 0x1fff
139 #define UARTBAUD_OSR_MASK 0x1f
140 #define UARTBAUD_OSR_SHIFT 24
142 #define UARTSTAT_LBKDIF 0x80000000
143 #define UARTSTAT_RXEDGIF 0x40000000
144 #define UARTSTAT_MSBF 0x20000000
145 #define UARTSTAT_RXINV 0x10000000
146 #define UARTSTAT_RWUID 0x08000000
147 #define UARTSTAT_BRK13 0x04000000
148 #define UARTSTAT_LBKDE 0x02000000
149 #define UARTSTAT_RAF 0x01000000
150 #define UARTSTAT_TDRE 0x00800000
151 #define UARTSTAT_TC 0x00400000
152 #define UARTSTAT_RDRF 0x00200000
153 #define UARTSTAT_IDLE 0x00100000
154 #define UARTSTAT_OR 0x00080000
155 #define UARTSTAT_NF 0x00040000
156 #define UARTSTAT_FE 0x00020000
157 #define UARTSTAT_PE 0x00010000
158 #define UARTSTAT_MA1F 0x00008000
159 #define UARTSTAT_M21F 0x00004000
161 #define UARTCTRL_R8T9 0x80000000
162 #define UARTCTRL_R9T8 0x40000000
163 #define UARTCTRL_TXDIR 0x20000000
164 #define UARTCTRL_TXINV 0x10000000
165 #define UARTCTRL_ORIE 0x08000000
166 #define UARTCTRL_NEIE 0x04000000
167 #define UARTCTRL_FEIE 0x02000000
168 #define UARTCTRL_PEIE 0x01000000
169 #define UARTCTRL_TIE 0x00800000
170 #define UARTCTRL_TCIE 0x00400000
171 #define UARTCTRL_RIE 0x00200000
172 #define UARTCTRL_ILIE 0x00100000
173 #define UARTCTRL_TE 0x00080000
174 #define UARTCTRL_RE 0x00040000
175 #define UARTCTRL_RWU 0x00020000
176 #define UARTCTRL_SBK 0x00010000
177 #define UARTCTRL_MA1IE 0x00008000
178 #define UARTCTRL_MA2IE 0x00004000
179 #define UARTCTRL_IDLECFG 0x00000100
180 #define UARTCTRL_LOOPS 0x00000080
181 #define UARTCTRL_DOZEEN 0x00000040
182 #define UARTCTRL_RSRC 0x00000020
183 #define UARTCTRL_M 0x00000010
184 #define UARTCTRL_WAKE 0x00000008
185 #define UARTCTRL_ILT 0x00000004
186 #define UARTCTRL_PE 0x00000002
187 #define UARTCTRL_PT 0x00000001
189 #define UARTDATA_NOISY 0x00008000
190 #define UARTDATA_PARITYE 0x00004000
191 #define UARTDATA_FRETSC 0x00002000
192 #define UARTDATA_RXEMPT 0x00001000
193 #define UARTDATA_IDLINE 0x00000800
194 #define UARTDATA_MASK 0x3ff
196 #define UARTMODIR_IREN 0x00020000
197 #define UARTMODIR_TXCTSSRC 0x00000020
198 #define UARTMODIR_TXCTSC 0x00000010
199 #define UARTMODIR_RXRTSE 0x00000008
200 #define UARTMODIR_TXRTSPOL 0x00000004
201 #define UARTMODIR_TXRTSE 0x00000002
202 #define UARTMODIR_TXCTSE 0x00000001
204 #define UARTFIFO_TXEMPT 0x00800000
205 #define UARTFIFO_RXEMPT 0x00400000
206 #define UARTFIFO_TXOF 0x00020000
207 #define UARTFIFO_RXUF 0x00010000
208 #define UARTFIFO_TXFLUSH 0x00008000
209 #define UARTFIFO_RXFLUSH 0x00004000
210 #define UARTFIFO_TXOFE 0x00000200
211 #define UARTFIFO_RXUFE 0x00000100
212 #define UARTFIFO_TXFE 0x00000080
213 #define UARTFIFO_FIFOSIZE_MASK 0x7
214 #define UARTFIFO_TXSIZE_OFF 4
215 #define UARTFIFO_RXFE 0x00000008
216 #define UARTFIFO_RXSIZE_OFF 0
218 #define UARTWATER_COUNT_MASK 0xff
219 #define UARTWATER_TXCNT_OFF 8
220 #define UARTWATER_RXCNT_OFF 24
221 #define UARTWATER_WATER_MASK 0xff
222 #define UARTWATER_TXWATER_OFF 0
223 #define UARTWATER_RXWATER_OFF 16
225 /* Rx DMA timeout in ms, which is used to calculate Rx ring buffer size */
226 #define DMA_RX_TIMEOUT (10)
228 #define DRIVER_NAME "fsl-lpuart"
229 #define DEV_NAME "ttyLP"
232 /* IMX lpuart has four extra unused regs located at the beginning */
233 #define IMX_REG_OFF 0x10
235 static DEFINE_IDA(fsl_lpuart_ida
);
238 struct uart_port port
;
240 unsigned int txfifo_size
;
241 unsigned int rxfifo_size
;
243 bool lpuart_dma_tx_use
;
244 bool lpuart_dma_rx_use
;
245 struct dma_chan
*dma_tx_chan
;
246 struct dma_chan
*dma_rx_chan
;
247 struct dma_async_tx_descriptor
*dma_tx_desc
;
248 struct dma_async_tx_descriptor
*dma_rx_desc
;
249 dma_cookie_t dma_tx_cookie
;
250 dma_cookie_t dma_rx_cookie
;
251 unsigned int dma_tx_bytes
;
252 unsigned int dma_rx_bytes
;
253 bool dma_tx_in_progress
;
254 unsigned int dma_rx_timeout
;
255 struct timer_list lpuart_timer
;
256 struct scatterlist rx_sgl
, tx_sgl
[2];
257 struct circ_buf rx_ring
;
258 int rx_dma_rng_buf_len
;
259 unsigned int dma_tx_nents
;
260 wait_queue_head_t dma_wait
;
263 struct lpuart_soc_data
{
268 static const struct lpuart_soc_data vf_data
= {
272 static const struct lpuart_soc_data ls_data
= {
273 .iotype
= UPIO_MEM32BE
,
276 static struct lpuart_soc_data imx_data
= {
277 .iotype
= UPIO_MEM32
,
278 .reg_off
= IMX_REG_OFF
,
281 static const struct of_device_id lpuart_dt_ids
[] = {
282 { .compatible
= "fsl,vf610-lpuart", .data
= &vf_data
, },
283 { .compatible
= "fsl,ls1021a-lpuart", .data
= &ls_data
, },
284 { .compatible
= "fsl,imx7ulp-lpuart", .data
= &imx_data
, },
287 MODULE_DEVICE_TABLE(of
, lpuart_dt_ids
);
289 /* Forward declare this for the dma callbacks*/
290 static void lpuart_dma_tx_complete(void *arg
);
292 static inline u32
lpuart32_read(struct uart_port
*port
, u32 off
)
294 switch (port
->iotype
) {
296 return readl(port
->membase
+ off
);
298 return ioread32be(port
->membase
+ off
);
304 static inline void lpuart32_write(struct uart_port
*port
, u32 val
,
307 switch (port
->iotype
) {
309 writel(val
, port
->membase
+ off
);
312 iowrite32be(val
, port
->membase
+ off
);
317 static void lpuart_stop_tx(struct uart_port
*port
)
321 temp
= readb(port
->membase
+ UARTCR2
);
322 temp
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
);
323 writeb(temp
, port
->membase
+ UARTCR2
);
326 static void lpuart32_stop_tx(struct uart_port
*port
)
330 temp
= lpuart32_read(port
, UARTCTRL
);
331 temp
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
);
332 lpuart32_write(port
, temp
, UARTCTRL
);
335 static void lpuart_stop_rx(struct uart_port
*port
)
339 temp
= readb(port
->membase
+ UARTCR2
);
340 writeb(temp
& ~UARTCR2_RE
, port
->membase
+ UARTCR2
);
343 static void lpuart32_stop_rx(struct uart_port
*port
)
347 temp
= lpuart32_read(port
, UARTCTRL
);
348 lpuart32_write(port
, temp
& ~UARTCTRL_RE
, UARTCTRL
);
351 static void lpuart_dma_tx(struct lpuart_port
*sport
)
353 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
354 struct scatterlist
*sgl
= sport
->tx_sgl
;
355 struct device
*dev
= sport
->port
.dev
;
358 if (sport
->dma_tx_in_progress
)
361 sport
->dma_tx_bytes
= uart_circ_chars_pending(xmit
);
363 if (xmit
->tail
< xmit
->head
|| xmit
->head
== 0) {
364 sport
->dma_tx_nents
= 1;
365 sg_init_one(sgl
, xmit
->buf
+ xmit
->tail
, sport
->dma_tx_bytes
);
367 sport
->dma_tx_nents
= 2;
368 sg_init_table(sgl
, 2);
369 sg_set_buf(sgl
, xmit
->buf
+ xmit
->tail
,
370 UART_XMIT_SIZE
- xmit
->tail
);
371 sg_set_buf(sgl
+ 1, xmit
->buf
, xmit
->head
);
374 ret
= dma_map_sg(dev
, sgl
, sport
->dma_tx_nents
, DMA_TO_DEVICE
);
376 dev_err(dev
, "DMA mapping error for TX.\n");
380 sport
->dma_tx_desc
= dmaengine_prep_slave_sg(sport
->dma_tx_chan
, sgl
,
382 DMA_MEM_TO_DEV
, DMA_PREP_INTERRUPT
);
383 if (!sport
->dma_tx_desc
) {
384 dma_unmap_sg(dev
, sgl
, sport
->dma_tx_nents
, DMA_TO_DEVICE
);
385 dev_err(dev
, "Cannot prepare TX slave DMA!\n");
389 sport
->dma_tx_desc
->callback
= lpuart_dma_tx_complete
;
390 sport
->dma_tx_desc
->callback_param
= sport
;
391 sport
->dma_tx_in_progress
= true;
392 sport
->dma_tx_cookie
= dmaengine_submit(sport
->dma_tx_desc
);
393 dma_async_issue_pending(sport
->dma_tx_chan
);
396 static void lpuart_dma_tx_complete(void *arg
)
398 struct lpuart_port
*sport
= arg
;
399 struct scatterlist
*sgl
= &sport
->tx_sgl
[0];
400 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
403 spin_lock_irqsave(&sport
->port
.lock
, flags
);
405 dma_unmap_sg(sport
->port
.dev
, sgl
, sport
->dma_tx_nents
, DMA_TO_DEVICE
);
407 xmit
->tail
= (xmit
->tail
+ sport
->dma_tx_bytes
) & (UART_XMIT_SIZE
- 1);
409 sport
->port
.icount
.tx
+= sport
->dma_tx_bytes
;
410 sport
->dma_tx_in_progress
= false;
411 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
413 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
414 uart_write_wakeup(&sport
->port
);
416 if (waitqueue_active(&sport
->dma_wait
)) {
417 wake_up(&sport
->dma_wait
);
421 spin_lock_irqsave(&sport
->port
.lock
, flags
);
423 if (!uart_circ_empty(xmit
) && !uart_tx_stopped(&sport
->port
))
424 lpuart_dma_tx(sport
);
426 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
429 static dma_addr_t
lpuart_dma_datareg_addr(struct lpuart_port
*sport
)
431 switch (sport
->port
.iotype
) {
433 return sport
->port
.mapbase
+ UARTDATA
;
435 return sport
->port
.mapbase
+ UARTDATA
+ sizeof(u32
) - 1;
437 return sport
->port
.mapbase
+ UARTDR
;
440 static int lpuart_dma_tx_request(struct uart_port
*port
)
442 struct lpuart_port
*sport
= container_of(port
,
443 struct lpuart_port
, port
);
444 struct dma_slave_config dma_tx_sconfig
= {};
447 dma_tx_sconfig
.dst_addr
= lpuart_dma_datareg_addr(sport
);
448 dma_tx_sconfig
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
449 dma_tx_sconfig
.dst_maxburst
= 1;
450 dma_tx_sconfig
.direction
= DMA_MEM_TO_DEV
;
451 ret
= dmaengine_slave_config(sport
->dma_tx_chan
, &dma_tx_sconfig
);
454 dev_err(sport
->port
.dev
,
455 "DMA slave config failed, err = %d\n", ret
);
462 static void lpuart_flush_buffer(struct uart_port
*port
)
464 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
466 if (sport
->lpuart_dma_tx_use
) {
467 if (sport
->dma_tx_in_progress
) {
468 dma_unmap_sg(sport
->port
.dev
, &sport
->tx_sgl
[0],
469 sport
->dma_tx_nents
, DMA_TO_DEVICE
);
470 sport
->dma_tx_in_progress
= false;
472 dmaengine_terminate_all(sport
->dma_tx_chan
);
476 #if defined(CONFIG_CONSOLE_POLL)
478 static int lpuart_poll_init(struct uart_port
*port
)
480 struct lpuart_port
*sport
= container_of(port
,
481 struct lpuart_port
, port
);
485 sport
->port
.fifosize
= 0;
487 spin_lock_irqsave(&sport
->port
.lock
, flags
);
488 /* Disable Rx & Tx */
489 writeb(0, sport
->port
.membase
+ UARTCR2
);
491 temp
= readb(sport
->port
.membase
+ UARTPFIFO
);
492 /* Enable Rx and Tx FIFO */
493 writeb(temp
| UARTPFIFO_RXFE
| UARTPFIFO_TXFE
,
494 sport
->port
.membase
+ UARTPFIFO
);
496 /* flush Tx and Rx FIFO */
497 writeb(UARTCFIFO_TXFLUSH
| UARTCFIFO_RXFLUSH
,
498 sport
->port
.membase
+ UARTCFIFO
);
500 /* explicitly clear RDRF */
501 if (readb(sport
->port
.membase
+ UARTSR1
) & UARTSR1_RDRF
) {
502 readb(sport
->port
.membase
+ UARTDR
);
503 writeb(UARTSFIFO_RXUF
, sport
->port
.membase
+ UARTSFIFO
);
506 writeb(0, sport
->port
.membase
+ UARTTWFIFO
);
507 writeb(1, sport
->port
.membase
+ UARTRWFIFO
);
509 /* Enable Rx and Tx */
510 writeb(UARTCR2_RE
| UARTCR2_TE
, sport
->port
.membase
+ UARTCR2
);
511 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
516 static void lpuart_poll_put_char(struct uart_port
*port
, unsigned char c
)
519 while (!(readb(port
->membase
+ UARTSR1
) & UARTSR1_TDRE
))
522 writeb(c
, port
->membase
+ UARTDR
);
525 static int lpuart_poll_get_char(struct uart_port
*port
)
527 if (!(readb(port
->membase
+ UARTSR1
) & UARTSR1_RDRF
))
530 return readb(port
->membase
+ UARTDR
);
533 static int lpuart32_poll_init(struct uart_port
*port
)
536 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
539 sport
->port
.fifosize
= 0;
541 spin_lock_irqsave(&sport
->port
.lock
, flags
);
543 /* Disable Rx & Tx */
544 writel(0, sport
->port
.membase
+ UARTCTRL
);
546 temp
= readl(sport
->port
.membase
+ UARTFIFO
);
548 /* Enable Rx and Tx FIFO */
549 writel(temp
| UARTFIFO_RXFE
| UARTFIFO_TXFE
,
550 sport
->port
.membase
+ UARTFIFO
);
552 /* flush Tx and Rx FIFO */
553 writel(UARTFIFO_TXFLUSH
| UARTFIFO_RXFLUSH
,
554 sport
->port
.membase
+ UARTFIFO
);
556 /* explicitly clear RDRF */
557 if (readl(sport
->port
.membase
+ UARTSTAT
) & UARTSTAT_RDRF
) {
558 readl(sport
->port
.membase
+ UARTDATA
);
559 writel(UARTFIFO_RXUF
, sport
->port
.membase
+ UARTFIFO
);
562 /* Enable Rx and Tx */
563 writel(UARTCTRL_RE
| UARTCTRL_TE
, sport
->port
.membase
+ UARTCTRL
);
564 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
569 static void lpuart32_poll_put_char(struct uart_port
*port
, unsigned char c
)
571 while (!(readl(port
->membase
+ UARTSTAT
) & UARTSTAT_TDRE
))
574 writel(c
, port
->membase
+ UARTDATA
);
577 static int lpuart32_poll_get_char(struct uart_port
*port
)
579 if (!(readl(port
->membase
+ UARTSTAT
) & UARTSTAT_RDRF
))
582 return readl(port
->membase
+ UARTDATA
);
586 static inline void lpuart_transmit_buffer(struct lpuart_port
*sport
)
588 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
590 while (!uart_circ_empty(xmit
) &&
591 (readb(sport
->port
.membase
+ UARTTCFIFO
) < sport
->txfifo_size
)) {
592 writeb(xmit
->buf
[xmit
->tail
], sport
->port
.membase
+ UARTDR
);
593 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
594 sport
->port
.icount
.tx
++;
597 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
598 uart_write_wakeup(&sport
->port
);
600 if (uart_circ_empty(xmit
))
601 lpuart_stop_tx(&sport
->port
);
604 static inline void lpuart32_transmit_buffer(struct lpuart_port
*sport
)
606 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
609 txcnt
= lpuart32_read(&sport
->port
, UARTWATER
);
610 txcnt
= txcnt
>> UARTWATER_TXCNT_OFF
;
611 txcnt
&= UARTWATER_COUNT_MASK
;
612 while (!uart_circ_empty(xmit
) && (txcnt
< sport
->txfifo_size
)) {
613 lpuart32_write(&sport
->port
, xmit
->buf
[xmit
->tail
], UARTDATA
);
614 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
615 sport
->port
.icount
.tx
++;
616 txcnt
= lpuart32_read(&sport
->port
, UARTWATER
);
617 txcnt
= txcnt
>> UARTWATER_TXCNT_OFF
;
618 txcnt
&= UARTWATER_COUNT_MASK
;
621 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
622 uart_write_wakeup(&sport
->port
);
624 if (uart_circ_empty(xmit
))
625 lpuart32_stop_tx(&sport
->port
);
628 static void lpuart_start_tx(struct uart_port
*port
)
630 struct lpuart_port
*sport
= container_of(port
,
631 struct lpuart_port
, port
);
632 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
635 temp
= readb(port
->membase
+ UARTCR2
);
636 writeb(temp
| UARTCR2_TIE
, port
->membase
+ UARTCR2
);
638 if (sport
->lpuart_dma_tx_use
) {
639 if (!uart_circ_empty(xmit
) && !uart_tx_stopped(port
))
640 lpuart_dma_tx(sport
);
642 if (readb(port
->membase
+ UARTSR1
) & UARTSR1_TDRE
)
643 lpuart_transmit_buffer(sport
);
647 static void lpuart32_start_tx(struct uart_port
*port
)
649 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
650 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
653 if (sport
->lpuart_dma_tx_use
) {
654 if (!uart_circ_empty(xmit
) && !uart_tx_stopped(port
))
655 lpuart_dma_tx(sport
);
657 temp
= lpuart32_read(port
, UARTCTRL
);
658 lpuart32_write(port
, temp
| UARTCTRL_TIE
, UARTCTRL
);
660 if (lpuart32_read(port
, UARTSTAT
) & UARTSTAT_TDRE
)
661 lpuart32_transmit_buffer(sport
);
665 /* return TIOCSER_TEMT when transmitter is not busy */
666 static unsigned int lpuart_tx_empty(struct uart_port
*port
)
668 struct lpuart_port
*sport
= container_of(port
,
669 struct lpuart_port
, port
);
670 unsigned char sr1
= readb(port
->membase
+ UARTSR1
);
671 unsigned char sfifo
= readb(port
->membase
+ UARTSFIFO
);
673 if (sport
->dma_tx_in_progress
)
676 if (sr1
& UARTSR1_TC
&& sfifo
& UARTSFIFO_TXEMPT
)
682 static unsigned int lpuart32_tx_empty(struct uart_port
*port
)
684 struct lpuart_port
*sport
= container_of(port
,
685 struct lpuart_port
, port
);
686 unsigned long stat
= lpuart32_read(port
, UARTSTAT
);
687 unsigned long sfifo
= lpuart32_read(port
, UARTFIFO
);
689 if (sport
->dma_tx_in_progress
)
692 if (stat
& UARTSTAT_TC
&& sfifo
& UARTFIFO_TXEMPT
)
698 static bool lpuart_is_32(struct lpuart_port
*sport
)
700 return sport
->port
.iotype
== UPIO_MEM32
||
701 sport
->port
.iotype
== UPIO_MEM32BE
;
704 static irqreturn_t
lpuart_txint(int irq
, void *dev_id
)
706 struct lpuart_port
*sport
= dev_id
;
707 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
710 spin_lock_irqsave(&sport
->port
.lock
, flags
);
711 if (sport
->port
.x_char
) {
712 if (lpuart_is_32(sport
))
713 lpuart32_write(&sport
->port
, sport
->port
.x_char
, UARTDATA
);
715 writeb(sport
->port
.x_char
, sport
->port
.membase
+ UARTDR
);
719 if (uart_circ_empty(xmit
) || uart_tx_stopped(&sport
->port
)) {
720 if (lpuart_is_32(sport
))
721 lpuart32_stop_tx(&sport
->port
);
723 lpuart_stop_tx(&sport
->port
);
727 if (lpuart_is_32(sport
))
728 lpuart32_transmit_buffer(sport
);
730 lpuart_transmit_buffer(sport
);
732 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
733 uart_write_wakeup(&sport
->port
);
736 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
740 static irqreturn_t
lpuart_rxint(int irq
, void *dev_id
)
742 struct lpuart_port
*sport
= dev_id
;
743 unsigned int flg
, ignored
= 0;
744 struct tty_port
*port
= &sport
->port
.state
->port
;
746 unsigned char rx
, sr
;
748 spin_lock_irqsave(&sport
->port
.lock
, flags
);
750 while (!(readb(sport
->port
.membase
+ UARTSFIFO
) & UARTSFIFO_RXEMPT
)) {
752 sport
->port
.icount
.rx
++;
754 * to clear the FE, OR, NF, FE, PE flags,
755 * read SR1 then read DR
757 sr
= readb(sport
->port
.membase
+ UARTSR1
);
758 rx
= readb(sport
->port
.membase
+ UARTDR
);
760 if (uart_handle_sysrq_char(&sport
->port
, (unsigned char)rx
))
763 if (sr
& (UARTSR1_PE
| UARTSR1_OR
| UARTSR1_FE
)) {
765 sport
->port
.icount
.parity
++;
766 else if (sr
& UARTSR1_FE
)
767 sport
->port
.icount
.frame
++;
770 sport
->port
.icount
.overrun
++;
772 if (sr
& sport
->port
.ignore_status_mask
) {
778 sr
&= sport
->port
.read_status_mask
;
782 else if (sr
& UARTSR1_FE
)
789 sport
->port
.sysrq
= 0;
793 tty_insert_flip_char(port
, rx
, flg
);
797 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
799 tty_flip_buffer_push(port
);
803 static irqreturn_t
lpuart32_rxint(int irq
, void *dev_id
)
805 struct lpuart_port
*sport
= dev_id
;
806 unsigned int flg
, ignored
= 0;
807 struct tty_port
*port
= &sport
->port
.state
->port
;
809 unsigned long rx
, sr
;
811 spin_lock_irqsave(&sport
->port
.lock
, flags
);
813 while (!(lpuart32_read(&sport
->port
, UARTFIFO
) & UARTFIFO_RXEMPT
)) {
815 sport
->port
.icount
.rx
++;
817 * to clear the FE, OR, NF, FE, PE flags,
818 * read STAT then read DATA reg
820 sr
= lpuart32_read(&sport
->port
, UARTSTAT
);
821 rx
= lpuart32_read(&sport
->port
, UARTDATA
);
824 if (uart_handle_sysrq_char(&sport
->port
, (unsigned char)rx
))
827 if (sr
& (UARTSTAT_PE
| UARTSTAT_OR
| UARTSTAT_FE
)) {
828 if (sr
& UARTSTAT_PE
)
829 sport
->port
.icount
.parity
++;
830 else if (sr
& UARTSTAT_FE
)
831 sport
->port
.icount
.frame
++;
833 if (sr
& UARTSTAT_OR
)
834 sport
->port
.icount
.overrun
++;
836 if (sr
& sport
->port
.ignore_status_mask
) {
842 sr
&= sport
->port
.read_status_mask
;
844 if (sr
& UARTSTAT_PE
)
846 else if (sr
& UARTSTAT_FE
)
849 if (sr
& UARTSTAT_OR
)
853 sport
->port
.sysrq
= 0;
857 tty_insert_flip_char(port
, rx
, flg
);
861 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
863 tty_flip_buffer_push(port
);
867 static irqreturn_t
lpuart_int(int irq
, void *dev_id
)
869 struct lpuart_port
*sport
= dev_id
;
872 sts
= readb(sport
->port
.membase
+ UARTSR1
);
874 if (sts
& UARTSR1_RDRF
)
875 lpuart_rxint(irq
, dev_id
);
877 if (sts
& UARTSR1_TDRE
)
878 lpuart_txint(irq
, dev_id
);
883 static irqreturn_t
lpuart32_int(int irq
, void *dev_id
)
885 struct lpuart_port
*sport
= dev_id
;
886 unsigned long sts
, rxcount
;
888 sts
= lpuart32_read(&sport
->port
, UARTSTAT
);
889 rxcount
= lpuart32_read(&sport
->port
, UARTWATER
);
890 rxcount
= rxcount
>> UARTWATER_RXCNT_OFF
;
892 if ((sts
& UARTSTAT_RDRF
|| rxcount
> 0) && !sport
->lpuart_dma_rx_use
)
893 lpuart32_rxint(irq
, dev_id
);
895 if ((sts
& UARTSTAT_TDRE
) && !sport
->lpuart_dma_tx_use
)
896 lpuart_txint(irq
, dev_id
);
898 lpuart32_write(&sport
->port
, sts
, UARTSTAT
);
902 static void lpuart_copy_rx_to_tty(struct lpuart_port
*sport
)
904 struct tty_port
*port
= &sport
->port
.state
->port
;
905 struct dma_tx_state state
;
906 enum dma_status dmastat
;
907 struct circ_buf
*ring
= &sport
->rx_ring
;
911 if (lpuart_is_32(sport
)) {
912 unsigned long sr
= lpuart32_read(&sport
->port
, UARTSTAT
);
914 if (sr
& (UARTSTAT_PE
| UARTSTAT_FE
)) {
915 /* Read DR to clear the error flags */
916 lpuart32_read(&sport
->port
, UARTDATA
);
918 if (sr
& UARTSTAT_PE
)
919 sport
->port
.icount
.parity
++;
920 else if (sr
& UARTSTAT_FE
)
921 sport
->port
.icount
.frame
++;
924 unsigned char sr
= readb(sport
->port
.membase
+ UARTSR1
);
926 if (sr
& (UARTSR1_PE
| UARTSR1_FE
)) {
927 /* Read DR to clear the error flags */
928 readb(sport
->port
.membase
+ UARTDR
);
931 sport
->port
.icount
.parity
++;
932 else if (sr
& UARTSR1_FE
)
933 sport
->port
.icount
.frame
++;
937 async_tx_ack(sport
->dma_rx_desc
);
939 spin_lock_irqsave(&sport
->port
.lock
, flags
);
941 dmastat
= dmaengine_tx_status(sport
->dma_rx_chan
,
942 sport
->dma_rx_cookie
,
945 if (dmastat
== DMA_ERROR
) {
946 dev_err(sport
->port
.dev
, "Rx DMA transfer failed!\n");
947 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
951 /* CPU claims ownership of RX DMA buffer */
952 dma_sync_sg_for_cpu(sport
->port
.dev
, &sport
->rx_sgl
, 1, DMA_FROM_DEVICE
);
955 * ring->head points to the end of data already written by the DMA.
956 * ring->tail points to the beginning of data to be read by the
958 * The current transfer size should not be larger than the dma buffer
961 ring
->head
= sport
->rx_sgl
.length
- state
.residue
;
962 BUG_ON(ring
->head
> sport
->rx_sgl
.length
);
964 * At this point ring->head may point to the first byte right after the
965 * last byte of the dma buffer:
966 * 0 <= ring->head <= sport->rx_sgl.length
968 * However ring->tail must always points inside the dma buffer:
969 * 0 <= ring->tail <= sport->rx_sgl.length - 1
971 * Since we use a ring buffer, we have to handle the case
972 * where head is lower than tail. In such a case, we first read from
973 * tail to the end of the buffer then reset tail.
975 if (ring
->head
< ring
->tail
) {
976 count
= sport
->rx_sgl
.length
- ring
->tail
;
978 tty_insert_flip_string(port
, ring
->buf
+ ring
->tail
, count
);
980 sport
->port
.icount
.rx
+= count
;
983 /* Finally we read data from tail to head */
984 if (ring
->tail
< ring
->head
) {
985 count
= ring
->head
- ring
->tail
;
986 tty_insert_flip_string(port
, ring
->buf
+ ring
->tail
, count
);
987 /* Wrap ring->head if needed */
988 if (ring
->head
>= sport
->rx_sgl
.length
)
990 ring
->tail
= ring
->head
;
991 sport
->port
.icount
.rx
+= count
;
994 dma_sync_sg_for_device(sport
->port
.dev
, &sport
->rx_sgl
, 1,
997 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
999 tty_flip_buffer_push(port
);
1000 mod_timer(&sport
->lpuart_timer
, jiffies
+ sport
->dma_rx_timeout
);
1003 static void lpuart_dma_rx_complete(void *arg
)
1005 struct lpuart_port
*sport
= arg
;
1007 lpuart_copy_rx_to_tty(sport
);
1010 static void lpuart_timer_func(struct timer_list
*t
)
1012 struct lpuart_port
*sport
= from_timer(sport
, t
, lpuart_timer
);
1014 lpuart_copy_rx_to_tty(sport
);
1017 static inline int lpuart_start_rx_dma(struct lpuart_port
*sport
)
1019 struct dma_slave_config dma_rx_sconfig
= {};
1020 struct circ_buf
*ring
= &sport
->rx_ring
;
1023 struct tty_port
*port
= &sport
->port
.state
->port
;
1024 struct tty_struct
*tty
= port
->tty
;
1025 struct ktermios
*termios
= &tty
->termios
;
1027 baud
= tty_get_baud_rate(tty
);
1029 bits
= (termios
->c_cflag
& CSIZE
) == CS7
? 9 : 10;
1030 if (termios
->c_cflag
& PARENB
)
1034 * Calculate length of one DMA buffer size to keep latency below
1035 * 10ms at any baud rate.
1037 sport
->rx_dma_rng_buf_len
= (DMA_RX_TIMEOUT
* baud
/ bits
/ 1000) * 2;
1038 sport
->rx_dma_rng_buf_len
= (1 << (fls(sport
->rx_dma_rng_buf_len
) - 1));
1039 if (sport
->rx_dma_rng_buf_len
< 16)
1040 sport
->rx_dma_rng_buf_len
= 16;
1042 ring
->buf
= kmalloc(sport
->rx_dma_rng_buf_len
, GFP_ATOMIC
);
1044 dev_err(sport
->port
.dev
, "Ring buf alloc failed\n");
1048 sg_init_one(&sport
->rx_sgl
, ring
->buf
, sport
->rx_dma_rng_buf_len
);
1049 sg_set_buf(&sport
->rx_sgl
, ring
->buf
, sport
->rx_dma_rng_buf_len
);
1050 nent
= dma_map_sg(sport
->port
.dev
, &sport
->rx_sgl
, 1, DMA_FROM_DEVICE
);
1053 dev_err(sport
->port
.dev
, "DMA Rx mapping error\n");
1057 dma_rx_sconfig
.src_addr
= lpuart_dma_datareg_addr(sport
);
1058 dma_rx_sconfig
.src_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
1059 dma_rx_sconfig
.src_maxburst
= 1;
1060 dma_rx_sconfig
.direction
= DMA_DEV_TO_MEM
;
1061 ret
= dmaengine_slave_config(sport
->dma_rx_chan
, &dma_rx_sconfig
);
1064 dev_err(sport
->port
.dev
,
1065 "DMA Rx slave config failed, err = %d\n", ret
);
1069 sport
->dma_rx_desc
= dmaengine_prep_dma_cyclic(sport
->dma_rx_chan
,
1070 sg_dma_address(&sport
->rx_sgl
),
1071 sport
->rx_sgl
.length
,
1072 sport
->rx_sgl
.length
/ 2,
1074 DMA_PREP_INTERRUPT
);
1075 if (!sport
->dma_rx_desc
) {
1076 dev_err(sport
->port
.dev
, "Cannot prepare cyclic DMA\n");
1080 sport
->dma_rx_desc
->callback
= lpuart_dma_rx_complete
;
1081 sport
->dma_rx_desc
->callback_param
= sport
;
1082 sport
->dma_rx_cookie
= dmaengine_submit(sport
->dma_rx_desc
);
1083 dma_async_issue_pending(sport
->dma_rx_chan
);
1085 if (lpuart_is_32(sport
)) {
1086 unsigned long temp
= lpuart32_read(&sport
->port
, UARTBAUD
);
1088 lpuart32_write(&sport
->port
, temp
| UARTBAUD_RDMAE
, UARTBAUD
);
1090 writeb(readb(sport
->port
.membase
+ UARTCR5
) | UARTCR5_RDMAS
,
1091 sport
->port
.membase
+ UARTCR5
);
1097 static void lpuart_dma_rx_free(struct uart_port
*port
)
1099 struct lpuart_port
*sport
= container_of(port
,
1100 struct lpuart_port
, port
);
1102 if (sport
->dma_rx_chan
)
1103 dmaengine_terminate_all(sport
->dma_rx_chan
);
1105 dma_unmap_sg(sport
->port
.dev
, &sport
->rx_sgl
, 1, DMA_FROM_DEVICE
);
1106 kfree(sport
->rx_ring
.buf
);
1107 sport
->rx_ring
.tail
= 0;
1108 sport
->rx_ring
.head
= 0;
1109 sport
->dma_rx_desc
= NULL
;
1110 sport
->dma_rx_cookie
= -EINVAL
;
1113 static int lpuart_config_rs485(struct uart_port
*port
,
1114 struct serial_rs485
*rs485
)
1116 struct lpuart_port
*sport
= container_of(port
,
1117 struct lpuart_port
, port
);
1119 u8 modem
= readb(sport
->port
.membase
+ UARTMODEM
) &
1120 ~(UARTMODEM_TXRTSPOL
| UARTMODEM_TXRTSE
);
1121 writeb(modem
, sport
->port
.membase
+ UARTMODEM
);
1123 /* clear unsupported configurations */
1124 rs485
->delay_rts_before_send
= 0;
1125 rs485
->delay_rts_after_send
= 0;
1126 rs485
->flags
&= ~SER_RS485_RX_DURING_TX
;
1128 if (rs485
->flags
& SER_RS485_ENABLED
) {
1129 /* Enable auto RS-485 RTS mode */
1130 modem
|= UARTMODEM_TXRTSE
;
1133 * RTS needs to be logic HIGH either during transer _or_ after
1134 * transfer, other variants are not supported by the hardware.
1137 if (!(rs485
->flags
& (SER_RS485_RTS_ON_SEND
|
1138 SER_RS485_RTS_AFTER_SEND
)))
1139 rs485
->flags
|= SER_RS485_RTS_ON_SEND
;
1141 if (rs485
->flags
& SER_RS485_RTS_ON_SEND
&&
1142 rs485
->flags
& SER_RS485_RTS_AFTER_SEND
)
1143 rs485
->flags
&= ~SER_RS485_RTS_AFTER_SEND
;
1146 * The hardware defaults to RTS logic HIGH while transfer.
1147 * Switch polarity in case RTS shall be logic HIGH
1149 * Note: UART is assumed to be active high.
1151 if (rs485
->flags
& SER_RS485_RTS_ON_SEND
)
1152 modem
&= ~UARTMODEM_TXRTSPOL
;
1153 else if (rs485
->flags
& SER_RS485_RTS_AFTER_SEND
)
1154 modem
|= UARTMODEM_TXRTSPOL
;
1157 /* Store the new configuration */
1158 sport
->port
.rs485
= *rs485
;
1160 writeb(modem
, sport
->port
.membase
+ UARTMODEM
);
1164 static unsigned int lpuart_get_mctrl(struct uart_port
*port
)
1166 unsigned int temp
= 0;
1169 reg
= readb(port
->membase
+ UARTMODEM
);
1170 if (reg
& UARTMODEM_TXCTSE
)
1173 if (reg
& UARTMODEM_RXRTSE
)
1179 static unsigned int lpuart32_get_mctrl(struct uart_port
*port
)
1181 unsigned int temp
= 0;
1184 reg
= lpuart32_read(port
, UARTMODIR
);
1185 if (reg
& UARTMODIR_TXCTSE
)
1188 if (reg
& UARTMODIR_RXRTSE
)
1194 static void lpuart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
1197 struct lpuart_port
*sport
= container_of(port
,
1198 struct lpuart_port
, port
);
1200 /* Make sure RXRTSE bit is not set when RS485 is enabled */
1201 if (!(sport
->port
.rs485
.flags
& SER_RS485_ENABLED
)) {
1202 temp
= readb(sport
->port
.membase
+ UARTMODEM
) &
1203 ~(UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1205 if (mctrl
& TIOCM_RTS
)
1206 temp
|= UARTMODEM_RXRTSE
;
1208 if (mctrl
& TIOCM_CTS
)
1209 temp
|= UARTMODEM_TXCTSE
;
1211 writeb(temp
, port
->membase
+ UARTMODEM
);
1215 static void lpuart32_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
1219 temp
= lpuart32_read(port
, UARTMODIR
) &
1220 ~(UARTMODIR_RXRTSE
| UARTMODIR_TXCTSE
);
1222 if (mctrl
& TIOCM_RTS
)
1223 temp
|= UARTMODIR_RXRTSE
;
1225 if (mctrl
& TIOCM_CTS
)
1226 temp
|= UARTMODIR_TXCTSE
;
1228 lpuart32_write(port
, temp
, UARTMODIR
);
1231 static void lpuart_break_ctl(struct uart_port
*port
, int break_state
)
1235 temp
= readb(port
->membase
+ UARTCR2
) & ~UARTCR2_SBK
;
1237 if (break_state
!= 0)
1238 temp
|= UARTCR2_SBK
;
1240 writeb(temp
, port
->membase
+ UARTCR2
);
1243 static void lpuart32_break_ctl(struct uart_port
*port
, int break_state
)
1247 temp
= lpuart32_read(port
, UARTCTRL
) & ~UARTCTRL_SBK
;
1249 if (break_state
!= 0)
1250 temp
|= UARTCTRL_SBK
;
1252 lpuart32_write(port
, temp
, UARTCTRL
);
1255 static void lpuart_setup_watermark(struct lpuart_port
*sport
)
1257 unsigned char val
, cr2
;
1258 unsigned char cr2_saved
;
1260 cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1262 cr2
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_TE
|
1263 UARTCR2_RIE
| UARTCR2_RE
);
1264 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
1266 val
= readb(sport
->port
.membase
+ UARTPFIFO
);
1267 writeb(val
| UARTPFIFO_TXFE
| UARTPFIFO_RXFE
,
1268 sport
->port
.membase
+ UARTPFIFO
);
1270 /* flush Tx and Rx FIFO */
1271 writeb(UARTCFIFO_TXFLUSH
| UARTCFIFO_RXFLUSH
,
1272 sport
->port
.membase
+ UARTCFIFO
);
1274 /* explicitly clear RDRF */
1275 if (readb(sport
->port
.membase
+ UARTSR1
) & UARTSR1_RDRF
) {
1276 readb(sport
->port
.membase
+ UARTDR
);
1277 writeb(UARTSFIFO_RXUF
, sport
->port
.membase
+ UARTSFIFO
);
1280 writeb(0, sport
->port
.membase
+ UARTTWFIFO
);
1281 writeb(1, sport
->port
.membase
+ UARTRWFIFO
);
1284 writeb(cr2_saved
, sport
->port
.membase
+ UARTCR2
);
1287 static void lpuart32_setup_watermark(struct lpuart_port
*sport
)
1289 unsigned long val
, ctrl
;
1290 unsigned long ctrl_saved
;
1292 ctrl
= lpuart32_read(&sport
->port
, UARTCTRL
);
1294 ctrl
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_TE
|
1295 UARTCTRL_RIE
| UARTCTRL_RE
);
1296 lpuart32_write(&sport
->port
, ctrl
, UARTCTRL
);
1298 /* enable FIFO mode */
1299 val
= lpuart32_read(&sport
->port
, UARTFIFO
);
1300 val
|= UARTFIFO_TXFE
| UARTFIFO_RXFE
;
1301 val
|= UARTFIFO_TXFLUSH
| UARTFIFO_RXFLUSH
;
1302 lpuart32_write(&sport
->port
, val
, UARTFIFO
);
1304 /* set the watermark */
1305 val
= (0x1 << UARTWATER_RXWATER_OFF
) | (0x0 << UARTWATER_TXWATER_OFF
);
1306 lpuart32_write(&sport
->port
, val
, UARTWATER
);
1309 lpuart32_write(&sport
->port
, ctrl_saved
, UARTCTRL
);
1312 static void rx_dma_timer_init(struct lpuart_port
*sport
)
1314 timer_setup(&sport
->lpuart_timer
, lpuart_timer_func
, 0);
1315 sport
->lpuart_timer
.expires
= jiffies
+ sport
->dma_rx_timeout
;
1316 add_timer(&sport
->lpuart_timer
);
1319 static int lpuart_startup(struct uart_port
*port
)
1321 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1322 unsigned long flags
;
1325 /* determine FIFO size and enable FIFO mode */
1326 temp
= readb(sport
->port
.membase
+ UARTPFIFO
);
1328 sport
->txfifo_size
= 0x1 << (((temp
>> UARTPFIFO_TXSIZE_OFF
) &
1329 UARTPFIFO_FIFOSIZE_MASK
) + 1);
1331 sport
->port
.fifosize
= sport
->txfifo_size
;
1333 sport
->rxfifo_size
= 0x1 << (((temp
>> UARTPFIFO_RXSIZE_OFF
) &
1334 UARTPFIFO_FIFOSIZE_MASK
) + 1);
1336 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1338 lpuart_setup_watermark(sport
);
1340 temp
= readb(sport
->port
.membase
+ UARTCR2
);
1341 temp
|= (UARTCR2_RIE
| UARTCR2_TIE
| UARTCR2_RE
| UARTCR2_TE
);
1342 writeb(temp
, sport
->port
.membase
+ UARTCR2
);
1344 if (sport
->dma_rx_chan
&& !lpuart_start_rx_dma(sport
)) {
1345 /* set Rx DMA timeout */
1346 sport
->dma_rx_timeout
= msecs_to_jiffies(DMA_RX_TIMEOUT
);
1347 if (!sport
->dma_rx_timeout
)
1348 sport
->dma_rx_timeout
= 1;
1350 sport
->lpuart_dma_rx_use
= true;
1351 rx_dma_timer_init(sport
);
1353 sport
->lpuart_dma_rx_use
= false;
1356 if (sport
->dma_tx_chan
&& !lpuart_dma_tx_request(port
)) {
1357 init_waitqueue_head(&sport
->dma_wait
);
1358 sport
->lpuart_dma_tx_use
= true;
1359 temp
= readb(port
->membase
+ UARTCR5
);
1360 writeb(temp
| UARTCR5_TDMAS
, port
->membase
+ UARTCR5
);
1362 sport
->lpuart_dma_tx_use
= false;
1365 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
1370 static int lpuart32_startup(struct uart_port
*port
)
1372 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1373 unsigned long flags
;
1376 /* determine FIFO size */
1377 temp
= lpuart32_read(&sport
->port
, UARTFIFO
);
1379 sport
->txfifo_size
= 0x1 << (((temp
>> UARTFIFO_TXSIZE_OFF
) &
1380 UARTFIFO_FIFOSIZE_MASK
) - 1);
1382 sport
->port
.fifosize
= sport
->txfifo_size
;
1384 sport
->rxfifo_size
= 0x1 << (((temp
>> UARTFIFO_RXSIZE_OFF
) &
1385 UARTFIFO_FIFOSIZE_MASK
) - 1);
1387 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1389 lpuart32_setup_watermark(sport
);
1391 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
1392 temp
|= UARTCTRL_RE
| UARTCTRL_TE
| UARTCTRL_ILIE
;
1393 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
1395 if (sport
->dma_rx_chan
&& !lpuart_start_rx_dma(sport
)) {
1396 /* set Rx DMA timeout */
1397 sport
->dma_rx_timeout
= msecs_to_jiffies(DMA_RX_TIMEOUT
);
1398 if (!sport
->dma_rx_timeout
)
1399 sport
->dma_rx_timeout
= 1;
1401 sport
->lpuart_dma_rx_use
= true;
1402 rx_dma_timer_init(sport
);
1404 sport
->lpuart_dma_rx_use
= false;
1407 if (sport
->dma_tx_chan
&& !lpuart_dma_tx_request(port
)) {
1408 init_waitqueue_head(&sport
->dma_wait
);
1409 sport
->lpuart_dma_tx_use
= true;
1410 temp
= lpuart32_read(&sport
->port
, UARTBAUD
);
1411 lpuart32_write(&sport
->port
, temp
| UARTBAUD_TDMAE
, UARTBAUD
);
1413 sport
->lpuart_dma_tx_use
= false;
1416 if (sport
->lpuart_dma_rx_use
) {
1417 /* RXWATER must be 0 */
1418 temp
= lpuart32_read(&sport
->port
, UARTWATER
);
1419 temp
&= ~(UARTWATER_WATER_MASK
<< UARTWATER_RXWATER_OFF
);
1420 lpuart32_write(&sport
->port
, temp
, UARTWATER
);
1422 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
1423 if (!sport
->lpuart_dma_rx_use
)
1424 temp
|= UARTCTRL_RIE
;
1425 if (!sport
->lpuart_dma_tx_use
)
1426 temp
|= UARTCTRL_TIE
;
1427 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
1429 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
1433 static void lpuart_shutdown(struct uart_port
*port
)
1435 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1437 unsigned long flags
;
1439 spin_lock_irqsave(&port
->lock
, flags
);
1441 /* disable Rx/Tx and interrupts */
1442 temp
= readb(port
->membase
+ UARTCR2
);
1443 temp
&= ~(UARTCR2_TE
| UARTCR2_RE
|
1444 UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_RIE
);
1445 writeb(temp
, port
->membase
+ UARTCR2
);
1447 spin_unlock_irqrestore(&port
->lock
, flags
);
1449 if (sport
->lpuart_dma_rx_use
) {
1450 del_timer_sync(&sport
->lpuart_timer
);
1451 lpuart_dma_rx_free(&sport
->port
);
1454 if (sport
->lpuart_dma_tx_use
) {
1455 if (wait_event_interruptible(sport
->dma_wait
,
1456 !sport
->dma_tx_in_progress
) != false) {
1457 sport
->dma_tx_in_progress
= false;
1458 dmaengine_terminate_all(sport
->dma_tx_chan
);
1461 lpuart_stop_tx(port
);
1465 static void lpuart32_shutdown(struct uart_port
*port
)
1467 struct lpuart_port
*sport
=
1468 container_of(port
, struct lpuart_port
, port
);
1470 unsigned long flags
;
1472 spin_lock_irqsave(&port
->lock
, flags
);
1474 /* disable Rx/Tx and interrupts */
1475 temp
= lpuart32_read(port
, UARTCTRL
);
1476 temp
&= ~(UARTCTRL_TE
| UARTCTRL_RE
|
1477 UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_RIE
);
1478 lpuart32_write(port
, temp
, UARTCTRL
);
1480 spin_unlock_irqrestore(&port
->lock
, flags
);
1482 if (sport
->lpuart_dma_rx_use
) {
1483 del_timer_sync(&sport
->lpuart_timer
);
1484 lpuart_dma_rx_free(&sport
->port
);
1487 if (sport
->lpuart_dma_tx_use
) {
1488 if (wait_event_interruptible(sport
->dma_wait
,
1489 !sport
->dma_tx_in_progress
)) {
1490 sport
->dma_tx_in_progress
= false;
1491 dmaengine_terminate_all(sport
->dma_tx_chan
);
1494 lpuart32_stop_tx(port
);
1499 lpuart_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
1500 struct ktermios
*old
)
1502 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1503 unsigned long flags
;
1504 unsigned char cr1
, old_cr1
, old_cr2
, cr3
, cr4
, bdh
, modem
;
1506 unsigned int old_csize
= old
? old
->c_cflag
& CSIZE
: CS8
;
1507 unsigned int sbr
, brfa
;
1509 cr1
= old_cr1
= readb(sport
->port
.membase
+ UARTCR1
);
1510 old_cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1511 cr3
= readb(sport
->port
.membase
+ UARTCR3
);
1512 cr4
= readb(sport
->port
.membase
+ UARTCR4
);
1513 bdh
= readb(sport
->port
.membase
+ UARTBDH
);
1514 modem
= readb(sport
->port
.membase
+ UARTMODEM
);
1516 * only support CS8 and CS7, and for CS7 must enable PE.
1523 while ((termios
->c_cflag
& CSIZE
) != CS8
&&
1524 (termios
->c_cflag
& CSIZE
) != CS7
) {
1525 termios
->c_cflag
&= ~CSIZE
;
1526 termios
->c_cflag
|= old_csize
;
1530 if ((termios
->c_cflag
& CSIZE
) == CS8
||
1531 (termios
->c_cflag
& CSIZE
) == CS7
)
1532 cr1
= old_cr1
& ~UARTCR1_M
;
1534 if (termios
->c_cflag
& CMSPAR
) {
1535 if ((termios
->c_cflag
& CSIZE
) != CS8
) {
1536 termios
->c_cflag
&= ~CSIZE
;
1537 termios
->c_cflag
|= CS8
;
1543 * When auto RS-485 RTS mode is enabled,
1544 * hardware flow control need to be disabled.
1546 if (sport
->port
.rs485
.flags
& SER_RS485_ENABLED
)
1547 termios
->c_cflag
&= ~CRTSCTS
;
1549 if (termios
->c_cflag
& CRTSCTS
) {
1550 modem
|= (UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1552 termios
->c_cflag
&= ~CRTSCTS
;
1553 modem
&= ~(UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1556 if (termios
->c_cflag
& CSTOPB
)
1557 termios
->c_cflag
&= ~CSTOPB
;
1559 /* parity must be enabled when CS7 to match 8-bits format */
1560 if ((termios
->c_cflag
& CSIZE
) == CS7
)
1561 termios
->c_cflag
|= PARENB
;
1563 if ((termios
->c_cflag
& PARENB
)) {
1564 if (termios
->c_cflag
& CMSPAR
) {
1566 if (termios
->c_cflag
& PARODD
)
1572 if ((termios
->c_cflag
& CSIZE
) == CS8
)
1574 if (termios
->c_cflag
& PARODD
)
1583 /* ask the core to calculate the divisor */
1584 baud
= uart_get_baud_rate(port
, termios
, old
, 50, port
->uartclk
/ 16);
1587 * Need to update the Ring buffer length according to the selected
1588 * baud rate and restart Rx DMA path.
1590 * Since timer function acqures sport->port.lock, need to stop before
1591 * acquring same lock because otherwise del_timer_sync() can deadlock.
1593 if (old
&& sport
->lpuart_dma_rx_use
) {
1594 del_timer_sync(&sport
->lpuart_timer
);
1595 lpuart_dma_rx_free(&sport
->port
);
1598 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1600 sport
->port
.read_status_mask
= 0;
1601 if (termios
->c_iflag
& INPCK
)
1602 sport
->port
.read_status_mask
|= (UARTSR1_FE
| UARTSR1_PE
);
1603 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
1604 sport
->port
.read_status_mask
|= UARTSR1_FE
;
1606 /* characters to ignore */
1607 sport
->port
.ignore_status_mask
= 0;
1608 if (termios
->c_iflag
& IGNPAR
)
1609 sport
->port
.ignore_status_mask
|= UARTSR1_PE
;
1610 if (termios
->c_iflag
& IGNBRK
) {
1611 sport
->port
.ignore_status_mask
|= UARTSR1_FE
;
1613 * if we're ignoring parity and break indicators,
1614 * ignore overruns too (for real raw support).
1616 if (termios
->c_iflag
& IGNPAR
)
1617 sport
->port
.ignore_status_mask
|= UARTSR1_OR
;
1620 /* update the per-port timeout */
1621 uart_update_timeout(port
, termios
->c_cflag
, baud
);
1623 /* wait transmit engin complete */
1624 while (!(readb(sport
->port
.membase
+ UARTSR1
) & UARTSR1_TC
))
1627 /* disable transmit and receive */
1628 writeb(old_cr2
& ~(UARTCR2_TE
| UARTCR2_RE
),
1629 sport
->port
.membase
+ UARTCR2
);
1631 sbr
= sport
->port
.uartclk
/ (16 * baud
);
1632 brfa
= ((sport
->port
.uartclk
- (16 * sbr
* baud
)) * 2) / baud
;
1633 bdh
&= ~UARTBDH_SBR_MASK
;
1634 bdh
|= (sbr
>> 8) & 0x1F;
1635 cr4
&= ~UARTCR4_BRFA_MASK
;
1636 brfa
&= UARTCR4_BRFA_MASK
;
1637 writeb(cr4
| brfa
, sport
->port
.membase
+ UARTCR4
);
1638 writeb(bdh
, sport
->port
.membase
+ UARTBDH
);
1639 writeb(sbr
& 0xFF, sport
->port
.membase
+ UARTBDL
);
1640 writeb(cr3
, sport
->port
.membase
+ UARTCR3
);
1641 writeb(cr1
, sport
->port
.membase
+ UARTCR1
);
1642 writeb(modem
, sport
->port
.membase
+ UARTMODEM
);
1644 /* restore control register */
1645 writeb(old_cr2
, sport
->port
.membase
+ UARTCR2
);
1647 if (old
&& sport
->lpuart_dma_rx_use
) {
1648 if (!lpuart_start_rx_dma(sport
))
1649 rx_dma_timer_init(sport
);
1651 sport
->lpuart_dma_rx_use
= false;
1654 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
1658 lpuart32_serial_setbrg(struct lpuart_port
*sport
, unsigned int baudrate
)
1660 u32 sbr
, osr
, baud_diff
, tmp_osr
, tmp_sbr
, tmp_diff
, tmp
;
1661 u32 clk
= sport
->port
.uartclk
;
1664 * The idea is to use the best OSR (over-sampling rate) possible.
1665 * Note, OSR is typically hard-set to 16 in other LPUART instantiations.
1666 * Loop to find the best OSR value possible, one that generates minimum
1667 * baud_diff iterate through the rest of the supported values of OSR.
1669 * Calculation Formula:
1670 * Baud Rate = baud clock / ((OSR+1) × SBR)
1672 baud_diff
= baudrate
;
1676 for (tmp_osr
= 4; tmp_osr
<= 32; tmp_osr
++) {
1677 /* calculate the temporary sbr value */
1678 tmp_sbr
= (clk
/ (baudrate
* tmp_osr
));
1683 * calculate the baud rate difference based on the temporary
1684 * osr and sbr values
1686 tmp_diff
= clk
/ (tmp_osr
* tmp_sbr
) - baudrate
;
1688 /* select best values between sbr and sbr+1 */
1689 tmp
= clk
/ (tmp_osr
* (tmp_sbr
+ 1));
1690 if (tmp_diff
> (baudrate
- tmp
)) {
1691 tmp_diff
= baudrate
- tmp
;
1695 if (tmp_diff
<= baud_diff
) {
1696 baud_diff
= tmp_diff
;
1705 /* handle buadrate outside acceptable rate */
1706 if (baud_diff
> ((baudrate
/ 100) * 3))
1707 dev_warn(sport
->port
.dev
,
1708 "unacceptable baud rate difference of more than 3%%\n");
1710 tmp
= lpuart32_read(&sport
->port
, UARTBAUD
);
1712 if ((osr
> 3) && (osr
< 8))
1713 tmp
|= UARTBAUD_BOTHEDGE
;
1715 tmp
&= ~(UARTBAUD_OSR_MASK
<< UARTBAUD_OSR_SHIFT
);
1716 tmp
|= (((osr
-1) & UARTBAUD_OSR_MASK
) << UARTBAUD_OSR_SHIFT
);
1718 tmp
&= ~UARTBAUD_SBR_MASK
;
1719 tmp
|= sbr
& UARTBAUD_SBR_MASK
;
1721 if (!sport
->lpuart_dma_rx_use
)
1722 tmp
&= ~UARTBAUD_RDMAE
;
1723 if (!sport
->lpuart_dma_tx_use
)
1724 tmp
&= ~UARTBAUD_TDMAE
;
1726 lpuart32_write(&sport
->port
, tmp
, UARTBAUD
);
1730 lpuart32_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
1731 struct ktermios
*old
)
1733 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1734 unsigned long flags
;
1735 unsigned long ctrl
, old_ctrl
, modem
;
1737 unsigned int old_csize
= old
? old
->c_cflag
& CSIZE
: CS8
;
1739 ctrl
= old_ctrl
= lpuart32_read(&sport
->port
, UARTCTRL
);
1740 modem
= lpuart32_read(&sport
->port
, UARTMODIR
);
1742 * only support CS8 and CS7, and for CS7 must enable PE.
1749 while ((termios
->c_cflag
& CSIZE
) != CS8
&&
1750 (termios
->c_cflag
& CSIZE
) != CS7
) {
1751 termios
->c_cflag
&= ~CSIZE
;
1752 termios
->c_cflag
|= old_csize
;
1756 if ((termios
->c_cflag
& CSIZE
) == CS8
||
1757 (termios
->c_cflag
& CSIZE
) == CS7
)
1758 ctrl
= old_ctrl
& ~UARTCTRL_M
;
1760 if (termios
->c_cflag
& CMSPAR
) {
1761 if ((termios
->c_cflag
& CSIZE
) != CS8
) {
1762 termios
->c_cflag
&= ~CSIZE
;
1763 termios
->c_cflag
|= CS8
;
1768 if (termios
->c_cflag
& CRTSCTS
) {
1769 modem
|= (UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1771 termios
->c_cflag
&= ~CRTSCTS
;
1772 modem
&= ~(UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1775 if (termios
->c_cflag
& CSTOPB
)
1776 termios
->c_cflag
&= ~CSTOPB
;
1778 /* parity must be enabled when CS7 to match 8-bits format */
1779 if ((termios
->c_cflag
& CSIZE
) == CS7
)
1780 termios
->c_cflag
|= PARENB
;
1782 if ((termios
->c_cflag
& PARENB
)) {
1783 if (termios
->c_cflag
& CMSPAR
) {
1784 ctrl
&= ~UARTCTRL_PE
;
1787 ctrl
|= UARTCTRL_PE
;
1788 if ((termios
->c_cflag
& CSIZE
) == CS8
)
1790 if (termios
->c_cflag
& PARODD
)
1791 ctrl
|= UARTCTRL_PT
;
1793 ctrl
&= ~UARTCTRL_PT
;
1796 ctrl
&= ~UARTCTRL_PE
;
1799 /* ask the core to calculate the divisor */
1800 baud
= uart_get_baud_rate(port
, termios
, old
, 50, port
->uartclk
/ 4);
1803 * Need to update the Ring buffer length according to the selected
1804 * baud rate and restart Rx DMA path.
1806 * Since timer function acqures sport->port.lock, need to stop before
1807 * acquring same lock because otherwise del_timer_sync() can deadlock.
1809 if (old
&& sport
->lpuart_dma_rx_use
) {
1810 del_timer_sync(&sport
->lpuart_timer
);
1811 lpuart_dma_rx_free(&sport
->port
);
1814 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1816 sport
->port
.read_status_mask
= 0;
1817 if (termios
->c_iflag
& INPCK
)
1818 sport
->port
.read_status_mask
|= (UARTSTAT_FE
| UARTSTAT_PE
);
1819 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
1820 sport
->port
.read_status_mask
|= UARTSTAT_FE
;
1822 /* characters to ignore */
1823 sport
->port
.ignore_status_mask
= 0;
1824 if (termios
->c_iflag
& IGNPAR
)
1825 sport
->port
.ignore_status_mask
|= UARTSTAT_PE
;
1826 if (termios
->c_iflag
& IGNBRK
) {
1827 sport
->port
.ignore_status_mask
|= UARTSTAT_FE
;
1829 * if we're ignoring parity and break indicators,
1830 * ignore overruns too (for real raw support).
1832 if (termios
->c_iflag
& IGNPAR
)
1833 sport
->port
.ignore_status_mask
|= UARTSTAT_OR
;
1836 /* update the per-port timeout */
1837 uart_update_timeout(port
, termios
->c_cflag
, baud
);
1839 /* wait transmit engin complete */
1840 while (!(lpuart32_read(&sport
->port
, UARTSTAT
) & UARTSTAT_TC
))
1843 /* disable transmit and receive */
1844 lpuart32_write(&sport
->port
, old_ctrl
& ~(UARTCTRL_TE
| UARTCTRL_RE
),
1847 lpuart32_serial_setbrg(sport
, baud
);
1848 lpuart32_write(&sport
->port
, modem
, UARTMODIR
);
1849 lpuart32_write(&sport
->port
, ctrl
, UARTCTRL
);
1850 /* restore control register */
1852 if (old
&& sport
->lpuart_dma_rx_use
) {
1853 if (!lpuart_start_rx_dma(sport
))
1854 rx_dma_timer_init(sport
);
1856 sport
->lpuart_dma_rx_use
= false;
1859 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
1862 static const char *lpuart_type(struct uart_port
*port
)
1864 return "FSL_LPUART";
1867 static void lpuart_release_port(struct uart_port
*port
)
1872 static int lpuart_request_port(struct uart_port
*port
)
1877 /* configure/autoconfigure the port */
1878 static void lpuart_config_port(struct uart_port
*port
, int flags
)
1880 if (flags
& UART_CONFIG_TYPE
)
1881 port
->type
= PORT_LPUART
;
1884 static int lpuart_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
1888 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_LPUART
)
1890 if (port
->irq
!= ser
->irq
)
1892 if (ser
->io_type
!= UPIO_MEM
)
1894 if (port
->uartclk
/ 16 != ser
->baud_base
)
1896 if (port
->iobase
!= ser
->port
)
1903 static const struct uart_ops lpuart_pops
= {
1904 .tx_empty
= lpuart_tx_empty
,
1905 .set_mctrl
= lpuart_set_mctrl
,
1906 .get_mctrl
= lpuart_get_mctrl
,
1907 .stop_tx
= lpuart_stop_tx
,
1908 .start_tx
= lpuart_start_tx
,
1909 .stop_rx
= lpuart_stop_rx
,
1910 .break_ctl
= lpuart_break_ctl
,
1911 .startup
= lpuart_startup
,
1912 .shutdown
= lpuart_shutdown
,
1913 .set_termios
= lpuart_set_termios
,
1914 .type
= lpuart_type
,
1915 .request_port
= lpuart_request_port
,
1916 .release_port
= lpuart_release_port
,
1917 .config_port
= lpuart_config_port
,
1918 .verify_port
= lpuart_verify_port
,
1919 .flush_buffer
= lpuart_flush_buffer
,
1920 #if defined(CONFIG_CONSOLE_POLL)
1921 .poll_init
= lpuart_poll_init
,
1922 .poll_get_char
= lpuart_poll_get_char
,
1923 .poll_put_char
= lpuart_poll_put_char
,
1927 static const struct uart_ops lpuart32_pops
= {
1928 .tx_empty
= lpuart32_tx_empty
,
1929 .set_mctrl
= lpuart32_set_mctrl
,
1930 .get_mctrl
= lpuart32_get_mctrl
,
1931 .stop_tx
= lpuart32_stop_tx
,
1932 .start_tx
= lpuart32_start_tx
,
1933 .stop_rx
= lpuart32_stop_rx
,
1934 .break_ctl
= lpuart32_break_ctl
,
1935 .startup
= lpuart32_startup
,
1936 .shutdown
= lpuart32_shutdown
,
1937 .set_termios
= lpuart32_set_termios
,
1938 .type
= lpuart_type
,
1939 .request_port
= lpuart_request_port
,
1940 .release_port
= lpuart_release_port
,
1941 .config_port
= lpuart_config_port
,
1942 .verify_port
= lpuart_verify_port
,
1943 .flush_buffer
= lpuart_flush_buffer
,
1944 #if defined(CONFIG_CONSOLE_POLL)
1945 .poll_init
= lpuart32_poll_init
,
1946 .poll_get_char
= lpuart32_poll_get_char
,
1947 .poll_put_char
= lpuart32_poll_put_char
,
1951 static struct lpuart_port
*lpuart_ports
[UART_NR
];
1953 #ifdef CONFIG_SERIAL_FSL_LPUART_CONSOLE
1954 static void lpuart_console_putchar(struct uart_port
*port
, int ch
)
1956 while (!(readb(port
->membase
+ UARTSR1
) & UARTSR1_TDRE
))
1959 writeb(ch
, port
->membase
+ UARTDR
);
1962 static void lpuart32_console_putchar(struct uart_port
*port
, int ch
)
1964 while (!(lpuart32_read(port
, UARTSTAT
) & UARTSTAT_TDRE
))
1967 lpuart32_write(port
, ch
, UARTDATA
);
1971 lpuart_console_write(struct console
*co
, const char *s
, unsigned int count
)
1973 struct lpuart_port
*sport
= lpuart_ports
[co
->index
];
1974 unsigned char old_cr2
, cr2
;
1975 unsigned long flags
;
1978 if (sport
->port
.sysrq
|| oops_in_progress
)
1979 locked
= spin_trylock_irqsave(&sport
->port
.lock
, flags
);
1981 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1983 /* first save CR2 and then disable interrupts */
1984 cr2
= old_cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1985 cr2
|= (UARTCR2_TE
| UARTCR2_RE
);
1986 cr2
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_RIE
);
1987 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
1989 uart_console_write(&sport
->port
, s
, count
, lpuart_console_putchar
);
1991 /* wait for transmitter finish complete and restore CR2 */
1992 while (!(readb(sport
->port
.membase
+ UARTSR1
) & UARTSR1_TC
))
1995 writeb(old_cr2
, sport
->port
.membase
+ UARTCR2
);
1998 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
2002 lpuart32_console_write(struct console
*co
, const char *s
, unsigned int count
)
2004 struct lpuart_port
*sport
= lpuart_ports
[co
->index
];
2005 unsigned long old_cr
, cr
;
2006 unsigned long flags
;
2009 if (sport
->port
.sysrq
|| oops_in_progress
)
2010 locked
= spin_trylock_irqsave(&sport
->port
.lock
, flags
);
2012 spin_lock_irqsave(&sport
->port
.lock
, flags
);
2014 /* first save CR2 and then disable interrupts */
2015 cr
= old_cr
= lpuart32_read(&sport
->port
, UARTCTRL
);
2016 cr
|= (UARTCTRL_TE
| UARTCTRL_RE
);
2017 cr
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_RIE
);
2018 lpuart32_write(&sport
->port
, cr
, UARTCTRL
);
2020 uart_console_write(&sport
->port
, s
, count
, lpuart32_console_putchar
);
2022 /* wait for transmitter finish complete and restore CR2 */
2023 while (!(lpuart32_read(&sport
->port
, UARTSTAT
) & UARTSTAT_TC
))
2026 lpuart32_write(&sport
->port
, old_cr
, UARTCTRL
);
2029 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
2033 * if the port was already initialised (eg, by a boot loader),
2034 * try to determine the current setup.
2037 lpuart_console_get_options(struct lpuart_port
*sport
, int *baud
,
2038 int *parity
, int *bits
)
2040 unsigned char cr
, bdh
, bdl
, brfa
;
2041 unsigned int sbr
, uartclk
, baud_raw
;
2043 cr
= readb(sport
->port
.membase
+ UARTCR2
);
2044 cr
&= UARTCR2_TE
| UARTCR2_RE
;
2048 /* ok, the port was enabled */
2050 cr
= readb(sport
->port
.membase
+ UARTCR1
);
2053 if (cr
& UARTCR1_PE
) {
2054 if (cr
& UARTCR1_PT
)
2065 bdh
= readb(sport
->port
.membase
+ UARTBDH
);
2066 bdh
&= UARTBDH_SBR_MASK
;
2067 bdl
= readb(sport
->port
.membase
+ UARTBDL
);
2071 brfa
= readb(sport
->port
.membase
+ UARTCR4
);
2072 brfa
&= UARTCR4_BRFA_MASK
;
2074 uartclk
= clk_get_rate(sport
->clk
);
2076 * baud = mod_clk/(16*(sbr[13]+(brfa)/32)
2078 baud_raw
= uartclk
/ (16 * (sbr
+ brfa
/ 32));
2080 if (*baud
!= baud_raw
)
2081 printk(KERN_INFO
"Serial: Console lpuart rounded baud rate"
2082 "from %d to %d\n", baud_raw
, *baud
);
2086 lpuart32_console_get_options(struct lpuart_port
*sport
, int *baud
,
2087 int *parity
, int *bits
)
2089 unsigned long cr
, bd
;
2090 unsigned int sbr
, uartclk
, baud_raw
;
2092 cr
= lpuart32_read(&sport
->port
, UARTCTRL
);
2093 cr
&= UARTCTRL_TE
| UARTCTRL_RE
;
2097 /* ok, the port was enabled */
2099 cr
= lpuart32_read(&sport
->port
, UARTCTRL
);
2102 if (cr
& UARTCTRL_PE
) {
2103 if (cr
& UARTCTRL_PT
)
2109 if (cr
& UARTCTRL_M
)
2114 bd
= lpuart32_read(&sport
->port
, UARTBAUD
);
2115 bd
&= UARTBAUD_SBR_MASK
;
2117 uartclk
= clk_get_rate(sport
->clk
);
2119 * baud = mod_clk/(16*(sbr[13]+(brfa)/32)
2121 baud_raw
= uartclk
/ (16 * sbr
);
2123 if (*baud
!= baud_raw
)
2124 printk(KERN_INFO
"Serial: Console lpuart rounded baud rate"
2125 "from %d to %d\n", baud_raw
, *baud
);
2128 static int __init
lpuart_console_setup(struct console
*co
, char *options
)
2130 struct lpuart_port
*sport
;
2137 * check whether an invalid uart number has been specified, and
2138 * if so, search for the first available port that does have
2141 if (co
->index
== -1 || co
->index
>= ARRAY_SIZE(lpuart_ports
))
2144 sport
= lpuart_ports
[co
->index
];
2149 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
2151 if (lpuart_is_32(sport
))
2152 lpuart32_console_get_options(sport
, &baud
, &parity
, &bits
);
2154 lpuart_console_get_options(sport
, &baud
, &parity
, &bits
);
2156 if (lpuart_is_32(sport
))
2157 lpuart32_setup_watermark(sport
);
2159 lpuart_setup_watermark(sport
);
2161 return uart_set_options(&sport
->port
, co
, baud
, parity
, bits
, flow
);
2164 static struct uart_driver lpuart_reg
;
2165 static struct console lpuart_console
= {
2167 .write
= lpuart_console_write
,
2168 .device
= uart_console_device
,
2169 .setup
= lpuart_console_setup
,
2170 .flags
= CON_PRINTBUFFER
,
2172 .data
= &lpuart_reg
,
2175 static struct console lpuart32_console
= {
2177 .write
= lpuart32_console_write
,
2178 .device
= uart_console_device
,
2179 .setup
= lpuart_console_setup
,
2180 .flags
= CON_PRINTBUFFER
,
2182 .data
= &lpuart_reg
,
2185 static void lpuart_early_write(struct console
*con
, const char *s
, unsigned n
)
2187 struct earlycon_device
*dev
= con
->data
;
2189 uart_console_write(&dev
->port
, s
, n
, lpuart_console_putchar
);
2192 static void lpuart32_early_write(struct console
*con
, const char *s
, unsigned n
)
2194 struct earlycon_device
*dev
= con
->data
;
2196 uart_console_write(&dev
->port
, s
, n
, lpuart32_console_putchar
);
2199 static int __init
lpuart_early_console_setup(struct earlycon_device
*device
,
2202 if (!device
->port
.membase
)
2205 device
->con
->write
= lpuart_early_write
;
2209 static int __init
lpuart32_early_console_setup(struct earlycon_device
*device
,
2212 if (!device
->port
.membase
)
2215 device
->port
.iotype
= UPIO_MEM32BE
;
2216 device
->con
->write
= lpuart32_early_write
;
2220 static int __init
lpuart32_imx_early_console_setup(struct earlycon_device
*device
,
2223 if (!device
->port
.membase
)
2226 device
->port
.iotype
= UPIO_MEM32
;
2227 device
->port
.membase
+= IMX_REG_OFF
;
2228 device
->con
->write
= lpuart32_early_write
;
2232 OF_EARLYCON_DECLARE(lpuart
, "fsl,vf610-lpuart", lpuart_early_console_setup
);
2233 OF_EARLYCON_DECLARE(lpuart32
, "fsl,ls1021a-lpuart", lpuart32_early_console_setup
);
2234 OF_EARLYCON_DECLARE(lpuart32
, "fsl,imx7ulp-lpuart", lpuart32_imx_early_console_setup
);
2235 EARLYCON_DECLARE(lpuart
, lpuart_early_console_setup
);
2236 EARLYCON_DECLARE(lpuart32
, lpuart32_early_console_setup
);
2238 #define LPUART_CONSOLE (&lpuart_console)
2239 #define LPUART32_CONSOLE (&lpuart32_console)
2241 #define LPUART_CONSOLE NULL
2242 #define LPUART32_CONSOLE NULL
2245 static struct uart_driver lpuart_reg
= {
2246 .owner
= THIS_MODULE
,
2247 .driver_name
= DRIVER_NAME
,
2248 .dev_name
= DEV_NAME
,
2249 .nr
= ARRAY_SIZE(lpuart_ports
),
2250 .cons
= LPUART_CONSOLE
,
2253 static int lpuart_probe(struct platform_device
*pdev
)
2255 const struct of_device_id
*of_id
= of_match_device(lpuart_dt_ids
,
2257 const struct lpuart_soc_data
*sdata
= of_id
->data
;
2258 struct device_node
*np
= pdev
->dev
.of_node
;
2259 struct lpuart_port
*sport
;
2260 struct resource
*res
;
2263 sport
= devm_kzalloc(&pdev
->dev
, sizeof(*sport
), GFP_KERNEL
);
2267 pdev
->dev
.coherent_dma_mask
= 0;
2269 ret
= of_alias_get_id(np
, "serial");
2271 ret
= ida_simple_get(&fsl_lpuart_ida
, 0, UART_NR
, GFP_KERNEL
);
2273 dev_err(&pdev
->dev
, "port line is full, add device failed\n");
2277 if (ret
>= ARRAY_SIZE(lpuart_ports
)) {
2278 dev_err(&pdev
->dev
, "serial%d out of range\n", ret
);
2281 sport
->port
.line
= ret
;
2282 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2283 sport
->port
.membase
= devm_ioremap_resource(&pdev
->dev
, res
);
2284 if (IS_ERR(sport
->port
.membase
))
2285 return PTR_ERR(sport
->port
.membase
);
2287 sport
->port
.membase
+= sdata
->reg_off
;
2288 sport
->port
.mapbase
= res
->start
;
2289 sport
->port
.dev
= &pdev
->dev
;
2290 sport
->port
.type
= PORT_LPUART
;
2291 ret
= platform_get_irq(pdev
, 0);
2293 dev_err(&pdev
->dev
, "cannot obtain irq\n");
2296 sport
->port
.irq
= ret
;
2297 sport
->port
.iotype
= sdata
->iotype
;
2298 if (lpuart_is_32(sport
))
2299 sport
->port
.ops
= &lpuart32_pops
;
2301 sport
->port
.ops
= &lpuart_pops
;
2302 sport
->port
.flags
= UPF_BOOT_AUTOCONF
;
2304 sport
->port
.rs485_config
= lpuart_config_rs485
;
2306 sport
->clk
= devm_clk_get(&pdev
->dev
, "ipg");
2307 if (IS_ERR(sport
->clk
)) {
2308 ret
= PTR_ERR(sport
->clk
);
2309 dev_err(&pdev
->dev
, "failed to get uart clk: %d\n", ret
);
2313 ret
= clk_prepare_enable(sport
->clk
);
2315 dev_err(&pdev
->dev
, "failed to enable uart clk: %d\n", ret
);
2319 sport
->port
.uartclk
= clk_get_rate(sport
->clk
);
2321 lpuart_ports
[sport
->port
.line
] = sport
;
2323 platform_set_drvdata(pdev
, &sport
->port
);
2325 if (lpuart_is_32(sport
)) {
2326 lpuart_reg
.cons
= LPUART32_CONSOLE
;
2327 ret
= devm_request_irq(&pdev
->dev
, sport
->port
.irq
, lpuart32_int
, 0,
2328 DRIVER_NAME
, sport
);
2330 lpuart_reg
.cons
= LPUART_CONSOLE
;
2331 ret
= devm_request_irq(&pdev
->dev
, sport
->port
.irq
, lpuart_int
, 0,
2332 DRIVER_NAME
, sport
);
2336 goto failed_irq_request
;
2338 ret
= uart_add_one_port(&lpuart_reg
, &sport
->port
);
2340 goto failed_attach_port
;
2342 uart_get_rs485_mode(&pdev
->dev
, &sport
->port
.rs485
);
2344 if (sport
->port
.rs485
.flags
& SER_RS485_RX_DURING_TX
)
2345 dev_err(&pdev
->dev
, "driver doesn't support RX during TX\n");
2347 if (sport
->port
.rs485
.delay_rts_before_send
||
2348 sport
->port
.rs485
.delay_rts_after_send
)
2349 dev_err(&pdev
->dev
, "driver doesn't support RTS delays\n");
2351 lpuart_config_rs485(&sport
->port
, &sport
->port
.rs485
);
2353 sport
->dma_tx_chan
= dma_request_slave_channel(sport
->port
.dev
, "tx");
2354 if (!sport
->dma_tx_chan
)
2355 dev_info(sport
->port
.dev
, "DMA tx channel request failed, "
2356 "operating without tx DMA\n");
2358 sport
->dma_rx_chan
= dma_request_slave_channel(sport
->port
.dev
, "rx");
2359 if (!sport
->dma_rx_chan
)
2360 dev_info(sport
->port
.dev
, "DMA rx channel request failed, "
2361 "operating without rx DMA\n");
2367 clk_disable_unprepare(sport
->clk
);
2371 static int lpuart_remove(struct platform_device
*pdev
)
2373 struct lpuart_port
*sport
= platform_get_drvdata(pdev
);
2375 uart_remove_one_port(&lpuart_reg
, &sport
->port
);
2377 ida_simple_remove(&fsl_lpuart_ida
, sport
->port
.line
);
2379 clk_disable_unprepare(sport
->clk
);
2381 if (sport
->dma_tx_chan
)
2382 dma_release_channel(sport
->dma_tx_chan
);
2384 if (sport
->dma_rx_chan
)
2385 dma_release_channel(sport
->dma_rx_chan
);
2390 #ifdef CONFIG_PM_SLEEP
2391 static int lpuart_suspend(struct device
*dev
)
2393 struct lpuart_port
*sport
= dev_get_drvdata(dev
);
2397 if (lpuart_is_32(sport
)) {
2398 /* disable Rx/Tx and interrupts */
2399 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
2400 temp
&= ~(UARTCTRL_TE
| UARTCTRL_TIE
| UARTCTRL_TCIE
);
2401 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
2403 /* disable Rx/Tx and interrupts */
2404 temp
= readb(sport
->port
.membase
+ UARTCR2
);
2405 temp
&= ~(UARTCR2_TE
| UARTCR2_TIE
| UARTCR2_TCIE
);
2406 writeb(temp
, sport
->port
.membase
+ UARTCR2
);
2409 uart_suspend_port(&lpuart_reg
, &sport
->port
);
2411 /* uart_suspend_port() might set wakeup flag */
2412 irq_wake
= irqd_is_wakeup_set(irq_get_irq_data(sport
->port
.irq
));
2414 if (sport
->lpuart_dma_rx_use
) {
2416 * EDMA driver during suspend will forcefully release any
2417 * non-idle DMA channels. If port wakeup is enabled or if port
2418 * is console port or 'no_console_suspend' is set the Rx DMA
2419 * cannot resume as as expected, hence gracefully release the
2420 * Rx DMA path before suspend and start Rx DMA path on resume.
2423 del_timer_sync(&sport
->lpuart_timer
);
2424 lpuart_dma_rx_free(&sport
->port
);
2427 /* Disable Rx DMA to use UART port as wakeup source */
2428 if (lpuart_is_32(sport
)) {
2429 temp
= lpuart32_read(&sport
->port
, UARTBAUD
);
2430 lpuart32_write(&sport
->port
, temp
& ~UARTBAUD_RDMAE
,
2433 writeb(readb(sport
->port
.membase
+ UARTCR5
) &
2434 ~UARTCR5_RDMAS
, sport
->port
.membase
+ UARTCR5
);
2438 if (sport
->lpuart_dma_tx_use
) {
2439 sport
->dma_tx_in_progress
= false;
2440 dmaengine_terminate_all(sport
->dma_tx_chan
);
2443 if (sport
->port
.suspended
&& !irq_wake
)
2444 clk_disable_unprepare(sport
->clk
);
2449 static int lpuart_resume(struct device
*dev
)
2451 struct lpuart_port
*sport
= dev_get_drvdata(dev
);
2452 bool irq_wake
= irqd_is_wakeup_set(irq_get_irq_data(sport
->port
.irq
));
2455 if (sport
->port
.suspended
&& !irq_wake
)
2456 clk_prepare_enable(sport
->clk
);
2458 if (lpuart_is_32(sport
)) {
2459 lpuart32_setup_watermark(sport
);
2460 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
2461 temp
|= UARTCTRL_RE
| UARTCTRL_TE
| UARTCTRL_ILIE
;
2462 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
2464 lpuart_setup_watermark(sport
);
2465 temp
= readb(sport
->port
.membase
+ UARTCR2
);
2466 temp
|= (UARTCR2_RIE
| UARTCR2_TIE
| UARTCR2_RE
| UARTCR2_TE
);
2467 writeb(temp
, sport
->port
.membase
+ UARTCR2
);
2470 if (sport
->lpuart_dma_rx_use
) {
2472 if (!lpuart_start_rx_dma(sport
))
2473 rx_dma_timer_init(sport
);
2475 sport
->lpuart_dma_rx_use
= false;
2479 if (sport
->dma_tx_chan
&& !lpuart_dma_tx_request(&sport
->port
)) {
2480 init_waitqueue_head(&sport
->dma_wait
);
2481 sport
->lpuart_dma_tx_use
= true;
2482 if (lpuart_is_32(sport
)) {
2483 temp
= lpuart32_read(&sport
->port
, UARTBAUD
);
2484 lpuart32_write(&sport
->port
,
2485 temp
| UARTBAUD_TDMAE
, UARTBAUD
);
2487 writeb(readb(sport
->port
.membase
+ UARTCR5
) |
2488 UARTCR5_TDMAS
, sport
->port
.membase
+ UARTCR5
);
2491 sport
->lpuart_dma_tx_use
= false;
2494 if (lpuart_is_32(sport
)) {
2495 if (sport
->lpuart_dma_rx_use
) {
2496 /* RXWATER must be 0 */
2497 temp
= lpuart32_read(&sport
->port
, UARTWATER
);
2498 temp
&= ~(UARTWATER_WATER_MASK
<<
2499 UARTWATER_RXWATER_OFF
);
2500 lpuart32_write(&sport
->port
, temp
, UARTWATER
);
2502 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
2503 if (!sport
->lpuart_dma_rx_use
)
2504 temp
|= UARTCTRL_RIE
;
2505 if (!sport
->lpuart_dma_tx_use
)
2506 temp
|= UARTCTRL_TIE
;
2507 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
2510 uart_resume_port(&lpuart_reg
, &sport
->port
);
2516 static SIMPLE_DEV_PM_OPS(lpuart_pm_ops
, lpuart_suspend
, lpuart_resume
);
2518 static struct platform_driver lpuart_driver
= {
2519 .probe
= lpuart_probe
,
2520 .remove
= lpuart_remove
,
2522 .name
= "fsl-lpuart",
2523 .of_match_table
= lpuart_dt_ids
,
2524 .pm
= &lpuart_pm_ops
,
2528 static int __init
lpuart_serial_init(void)
2530 int ret
= uart_register_driver(&lpuart_reg
);
2535 ret
= platform_driver_register(&lpuart_driver
);
2537 uart_unregister_driver(&lpuart_reg
);
2542 static void __exit
lpuart_serial_exit(void)
2544 ida_destroy(&fsl_lpuart_ida
);
2545 platform_driver_unregister(&lpuart_driver
);
2546 uart_unregister_driver(&lpuart_reg
);
2549 module_init(lpuart_serial_init
);
2550 module_exit(lpuart_serial_exit
);
2552 MODULE_DESCRIPTION("Freescale lpuart serial port driver");
2553 MODULE_LICENSE("GPL v2");