1 // SPDX-License-Identifier: GPL-2.0+
3 * Freescale lpuart serial port driver
5 * Copyright 2012-2014 Freescale Semiconductor, Inc.
8 #include <linux/bitfield.h>
9 #include <linux/bits.h>
10 #include <linux/circ_buf.h>
11 #include <linux/clk.h>
12 #include <linux/console.h>
13 #include <linux/delay.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/dmaengine.h>
16 #include <linux/dmapool.h>
18 #include <linux/iopoll.h>
19 #include <linux/irq.h>
20 #include <linux/module.h>
22 #include <linux/of_dma.h>
23 #include <linux/pinctrl/consumer.h>
24 #include <linux/platform_device.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/serial_core.h>
27 #include <linux/slab.h>
28 #include <linux/tty_flip.h>
30 /* All registers are 8-bit width */
40 #define UARTMODEM 0x0d
41 #define UARTPFIFO 0x10
42 #define UARTCFIFO 0x11
43 #define UARTSFIFO 0x12
44 #define UARTTWFIFO 0x13
45 #define UARTTCFIFO 0x14
46 #define UARTRWFIFO 0x15
48 #define UARTBDH_LBKDIE 0x80
49 #define UARTBDH_RXEDGIE 0x40
50 #define UARTBDH_SBR_MASK 0x1f
52 #define UARTCR1_LOOPS 0x80
53 #define UARTCR1_RSRC 0x20
54 #define UARTCR1_M 0x10
55 #define UARTCR1_WAKE 0x08
56 #define UARTCR1_ILT 0x04
57 #define UARTCR1_PE 0x02
58 #define UARTCR1_PT 0x01
60 #define UARTCR2_TIE 0x80
61 #define UARTCR2_TCIE 0x40
62 #define UARTCR2_RIE 0x20
63 #define UARTCR2_ILIE 0x10
64 #define UARTCR2_TE 0x08
65 #define UARTCR2_RE 0x04
66 #define UARTCR2_RWU 0x02
67 #define UARTCR2_SBK 0x01
69 #define UARTSR1_TDRE 0x80
70 #define UARTSR1_TC 0x40
71 #define UARTSR1_RDRF 0x20
72 #define UARTSR1_IDLE 0x10
73 #define UARTSR1_OR 0x08
74 #define UARTSR1_NF 0x04
75 #define UARTSR1_FE 0x02
76 #define UARTSR1_PE 0x01
78 #define UARTCR3_R8 0x80
79 #define UARTCR3_T8 0x40
80 #define UARTCR3_TXDIR 0x20
81 #define UARTCR3_TXINV 0x10
82 #define UARTCR3_ORIE 0x08
83 #define UARTCR3_NEIE 0x04
84 #define UARTCR3_FEIE 0x02
85 #define UARTCR3_PEIE 0x01
87 #define UARTCR4_MAEN1 0x80
88 #define UARTCR4_MAEN2 0x40
89 #define UARTCR4_M10 0x20
90 #define UARTCR4_BRFA_MASK 0x1f
91 #define UARTCR4_BRFA_OFF 0
93 #define UARTCR5_TDMAS 0x80
94 #define UARTCR5_RDMAS 0x20
96 #define UARTMODEM_RXRTSE 0x08
97 #define UARTMODEM_TXRTSPOL 0x04
98 #define UARTMODEM_TXRTSE 0x02
99 #define UARTMODEM_TXCTSE 0x01
101 #define UARTPFIFO_TXFE 0x80
102 #define UARTPFIFO_FIFOSIZE_MASK 0x7
103 #define UARTPFIFO_TXSIZE_OFF 4
104 #define UARTPFIFO_RXFE 0x08
105 #define UARTPFIFO_RXSIZE_OFF 0
107 #define UARTCFIFO_TXFLUSH 0x80
108 #define UARTCFIFO_RXFLUSH 0x40
109 #define UARTCFIFO_RXOFE 0x04
110 #define UARTCFIFO_TXOFE 0x02
111 #define UARTCFIFO_RXUFE 0x01
113 #define UARTSFIFO_TXEMPT 0x80
114 #define UARTSFIFO_RXEMPT 0x40
115 #define UARTSFIFO_RXOF 0x04
116 #define UARTSFIFO_TXOF 0x02
117 #define UARTSFIFO_RXUF 0x01
119 /* 32-bit global registers only for i.MX7ULP/i.MX8x
120 * Used to reset all internal logic and registers, except the Global Register.
122 #define UART_GLOBAL 0x8
124 /* 32-bit register definition */
125 #define UARTBAUD 0x00
126 #define UARTSTAT 0x04
127 #define UARTCTRL 0x08
128 #define UARTDATA 0x0C
129 #define UARTMATCH 0x10
130 #define UARTMODIR 0x14
131 #define UARTFIFO 0x18
132 #define UARTWATER 0x1c
134 #define UARTBAUD_MAEN1 0x80000000
135 #define UARTBAUD_MAEN2 0x40000000
136 #define UARTBAUD_M10 0x20000000
137 #define UARTBAUD_TDMAE 0x00800000
138 #define UARTBAUD_RDMAE 0x00200000
139 #define UARTBAUD_MATCFG 0x00400000
140 #define UARTBAUD_BOTHEDGE 0x00020000
141 #define UARTBAUD_RESYNCDIS 0x00010000
142 #define UARTBAUD_LBKDIE 0x00008000
143 #define UARTBAUD_RXEDGIE 0x00004000
144 #define UARTBAUD_SBNS 0x00002000
145 #define UARTBAUD_SBR 0x00000000
146 #define UARTBAUD_SBR_MASK 0x1fff
147 #define UARTBAUD_OSR_MASK 0x1f
148 #define UARTBAUD_OSR_SHIFT 24
150 #define UARTSTAT_LBKDIF 0x80000000
151 #define UARTSTAT_RXEDGIF 0x40000000
152 #define UARTSTAT_MSBF 0x20000000
153 #define UARTSTAT_RXINV 0x10000000
154 #define UARTSTAT_RWUID 0x08000000
155 #define UARTSTAT_BRK13 0x04000000
156 #define UARTSTAT_LBKDE 0x02000000
157 #define UARTSTAT_RAF 0x01000000
158 #define UARTSTAT_TDRE 0x00800000
159 #define UARTSTAT_TC 0x00400000
160 #define UARTSTAT_RDRF 0x00200000
161 #define UARTSTAT_IDLE 0x00100000
162 #define UARTSTAT_OR 0x00080000
163 #define UARTSTAT_NF 0x00040000
164 #define UARTSTAT_FE 0x00020000
165 #define UARTSTAT_PE 0x00010000
166 #define UARTSTAT_MA1F 0x00008000
167 #define UARTSTAT_M21F 0x00004000
169 #define UARTCTRL_R8T9 0x80000000
170 #define UARTCTRL_R9T8 0x40000000
171 #define UARTCTRL_TXDIR 0x20000000
172 #define UARTCTRL_TXINV 0x10000000
173 #define UARTCTRL_ORIE 0x08000000
174 #define UARTCTRL_NEIE 0x04000000
175 #define UARTCTRL_FEIE 0x02000000
176 #define UARTCTRL_PEIE 0x01000000
177 #define UARTCTRL_TIE 0x00800000
178 #define UARTCTRL_TCIE 0x00400000
179 #define UARTCTRL_RIE 0x00200000
180 #define UARTCTRL_ILIE 0x00100000
181 #define UARTCTRL_TE 0x00080000
182 #define UARTCTRL_RE 0x00040000
183 #define UARTCTRL_RWU 0x00020000
184 #define UARTCTRL_SBK 0x00010000
185 #define UARTCTRL_MA1IE 0x00008000
186 #define UARTCTRL_MA2IE 0x00004000
187 #define UARTCTRL_IDLECFG GENMASK(10, 8)
188 #define UARTCTRL_LOOPS 0x00000080
189 #define UARTCTRL_DOZEEN 0x00000040
190 #define UARTCTRL_RSRC 0x00000020
191 #define UARTCTRL_M 0x00000010
192 #define UARTCTRL_WAKE 0x00000008
193 #define UARTCTRL_ILT 0x00000004
194 #define UARTCTRL_PE 0x00000002
195 #define UARTCTRL_PT 0x00000001
197 #define UARTDATA_NOISY 0x00008000
198 #define UARTDATA_PARITYE 0x00004000
199 #define UARTDATA_FRETSC 0x00002000
200 #define UARTDATA_RXEMPT 0x00001000
201 #define UARTDATA_IDLINE 0x00000800
202 #define UARTDATA_MASK 0x3ff
204 #define UARTMODIR_IREN 0x00020000
205 #define UARTMODIR_RTSWATER GENMASK(10, 8)
206 #define UARTMODIR_TXCTSSRC 0x00000020
207 #define UARTMODIR_TXCTSC 0x00000010
208 #define UARTMODIR_RXRTSE 0x00000008
209 #define UARTMODIR_TXRTSPOL 0x00000004
210 #define UARTMODIR_TXRTSE 0x00000002
211 #define UARTMODIR_TXCTSE 0x00000001
213 #define UARTFIFO_TXEMPT 0x00800000
214 #define UARTFIFO_RXEMPT 0x00400000
215 #define UARTFIFO_TXOF 0x00020000
216 #define UARTFIFO_RXUF 0x00010000
217 #define UARTFIFO_TXFLUSH 0x00008000
218 #define UARTFIFO_RXFLUSH 0x00004000
219 #define UARTFIFO_RXIDEN GENMASK(12, 10)
220 #define UARTFIFO_TXOFE 0x00000200
221 #define UARTFIFO_RXUFE 0x00000100
222 #define UARTFIFO_TXFE 0x00000080
223 #define UARTFIFO_FIFOSIZE_MASK 0x7
224 #define UARTFIFO_TXSIZE_OFF 4
225 #define UARTFIFO_RXFE 0x00000008
226 #define UARTFIFO_RXSIZE_OFF 0
227 #define UARTFIFO_DEPTH(x) (0x1 << ((x) ? ((x) + 1) : 0))
229 #define UARTWATER_COUNT_MASK 0xff
230 #define UARTWATER_TXCNT_OFF 8
231 #define UARTWATER_RXCNT_OFF 24
232 #define UARTWATER_WATER_MASK 0xff
233 #define UARTWATER_TXWATER_OFF 0
234 #define UARTWATER_RXWATER_OFF 16
236 #define UART_GLOBAL_RST 0x2
237 #define GLOBAL_RST_MIN_US 20
238 #define GLOBAL_RST_MAX_US 40
240 /* Rx DMA timeout in ms, which is used to calculate Rx ring buffer size */
241 #define DMA_RX_TIMEOUT (10)
242 #define DMA_RX_IDLE_CHARS 8
243 #define UART_AUTOSUSPEND_TIMEOUT 3000
245 #define DRIVER_NAME "fsl-lpuart"
246 #define DEV_NAME "ttyLP"
249 /* IMX lpuart has four extra unused regs located at the beginning */
250 #define IMX_REG_OFF 0x10
263 struct uart_port port
;
264 enum lpuart_type devtype
;
266 struct clk
*baud_clk
;
267 unsigned int txfifo_size
;
268 unsigned int rxfifo_size
;
271 bool lpuart_dma_tx_use
;
272 bool lpuart_dma_rx_use
;
273 struct dma_chan
*dma_tx_chan
;
274 struct dma_chan
*dma_rx_chan
;
275 struct dma_async_tx_descriptor
*dma_tx_desc
;
276 struct dma_async_tx_descriptor
*dma_rx_desc
;
277 dma_cookie_t dma_tx_cookie
;
278 dma_cookie_t dma_rx_cookie
;
279 unsigned int dma_tx_bytes
;
280 unsigned int dma_rx_bytes
;
281 bool dma_tx_in_progress
;
282 unsigned int dma_rx_timeout
;
283 struct timer_list lpuart_timer
;
284 struct scatterlist rx_sgl
, tx_sgl
[2];
285 struct circ_buf rx_ring
;
286 int rx_dma_rng_buf_len
;
288 unsigned int dma_tx_nents
;
289 wait_queue_head_t dma_wait
;
290 bool is_cs7
; /* Set to true when character size is 7 */
291 /* and the parity is enabled */
295 struct lpuart_soc_data
{
296 enum lpuart_type devtype
;
302 static const struct lpuart_soc_data vf_data
= {
303 .devtype
= VF610_LPUART
,
308 static const struct lpuart_soc_data ls1021a_data
= {
309 .devtype
= LS1021A_LPUART
,
310 .iotype
= UPIO_MEM32BE
,
314 static const struct lpuart_soc_data ls1028a_data
= {
315 .devtype
= LS1028A_LPUART
,
316 .iotype
= UPIO_MEM32
,
320 static struct lpuart_soc_data imx7ulp_data
= {
321 .devtype
= IMX7ULP_LPUART
,
322 .iotype
= UPIO_MEM32
,
323 .reg_off
= IMX_REG_OFF
,
327 static struct lpuart_soc_data imx8ulp_data
= {
328 .devtype
= IMX8ULP_LPUART
,
329 .iotype
= UPIO_MEM32
,
330 .reg_off
= IMX_REG_OFF
,
334 static struct lpuart_soc_data imx8qxp_data
= {
335 .devtype
= IMX8QXP_LPUART
,
336 .iotype
= UPIO_MEM32
,
337 .reg_off
= IMX_REG_OFF
,
338 .rx_watermark
= 7, /* A lower watermark is ideal for low baud rates. */
340 static struct lpuart_soc_data imxrt1050_data
= {
341 .devtype
= IMXRT1050_LPUART
,
342 .iotype
= UPIO_MEM32
,
343 .reg_off
= IMX_REG_OFF
,
347 static const struct of_device_id lpuart_dt_ids
[] = {
348 { .compatible
= "fsl,vf610-lpuart", .data
= &vf_data
, },
349 { .compatible
= "fsl,ls1021a-lpuart", .data
= &ls1021a_data
, },
350 { .compatible
= "fsl,ls1028a-lpuart", .data
= &ls1028a_data
, },
351 { .compatible
= "fsl,imx7ulp-lpuart", .data
= &imx7ulp_data
, },
352 { .compatible
= "fsl,imx8ulp-lpuart", .data
= &imx8ulp_data
, },
353 { .compatible
= "fsl,imx8qxp-lpuart", .data
= &imx8qxp_data
, },
354 { .compatible
= "fsl,imxrt1050-lpuart", .data
= &imxrt1050_data
},
357 MODULE_DEVICE_TABLE(of
, lpuart_dt_ids
);
359 /* Forward declare this for the dma callbacks*/
360 static void lpuart_dma_tx_complete(void *arg
);
362 static inline bool is_layerscape_lpuart(struct lpuart_port
*sport
)
364 return (sport
->devtype
== LS1021A_LPUART
||
365 sport
->devtype
== LS1028A_LPUART
);
368 static inline bool is_imx7ulp_lpuart(struct lpuart_port
*sport
)
370 return sport
->devtype
== IMX7ULP_LPUART
;
373 static inline bool is_imx8ulp_lpuart(struct lpuart_port
*sport
)
375 return sport
->devtype
== IMX8ULP_LPUART
;
378 static inline bool is_imx8qxp_lpuart(struct lpuart_port
*sport
)
380 return sport
->devtype
== IMX8QXP_LPUART
;
383 static inline u32
lpuart32_read(struct uart_port
*port
, u32 off
)
385 switch (port
->iotype
) {
387 return readl(port
->membase
+ off
);
389 return ioread32be(port
->membase
+ off
);
395 static inline void lpuart32_write(struct uart_port
*port
, u32 val
,
398 switch (port
->iotype
) {
400 writel(val
, port
->membase
+ off
);
403 iowrite32be(val
, port
->membase
+ off
);
408 static int __lpuart_enable_clks(struct lpuart_port
*sport
, bool is_en
)
413 ret
= clk_prepare_enable(sport
->ipg_clk
);
417 ret
= clk_prepare_enable(sport
->baud_clk
);
419 clk_disable_unprepare(sport
->ipg_clk
);
423 clk_disable_unprepare(sport
->baud_clk
);
424 clk_disable_unprepare(sport
->ipg_clk
);
430 static unsigned int lpuart_get_baud_clk_rate(struct lpuart_port
*sport
)
432 if (is_imx8qxp_lpuart(sport
))
433 return clk_get_rate(sport
->baud_clk
);
435 return clk_get_rate(sport
->ipg_clk
);
438 #define lpuart_enable_clks(x) __lpuart_enable_clks(x, true)
439 #define lpuart_disable_clks(x) __lpuart_enable_clks(x, false)
441 static void lpuart_stop_tx(struct uart_port
*port
)
445 temp
= readb(port
->membase
+ UARTCR2
);
446 temp
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
);
447 writeb(temp
, port
->membase
+ UARTCR2
);
450 static void lpuart32_stop_tx(struct uart_port
*port
)
454 temp
= lpuart32_read(port
, UARTCTRL
);
455 temp
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
);
456 lpuart32_write(port
, temp
, UARTCTRL
);
459 static void lpuart_stop_rx(struct uart_port
*port
)
463 temp
= readb(port
->membase
+ UARTCR2
);
464 writeb(temp
& ~UARTCR2_RE
, port
->membase
+ UARTCR2
);
467 static void lpuart32_stop_rx(struct uart_port
*port
)
471 temp
= lpuart32_read(port
, UARTCTRL
);
472 lpuart32_write(port
, temp
& ~UARTCTRL_RE
, UARTCTRL
);
475 static void lpuart_dma_tx(struct lpuart_port
*sport
)
477 struct tty_port
*tport
= &sport
->port
.state
->port
;
478 struct scatterlist
*sgl
= sport
->tx_sgl
;
479 struct device
*dev
= sport
->port
.dev
;
480 struct dma_chan
*chan
= sport
->dma_tx_chan
;
483 if (sport
->dma_tx_in_progress
)
486 sg_init_table(sgl
, ARRAY_SIZE(sport
->tx_sgl
));
487 sport
->dma_tx_bytes
= kfifo_len(&tport
->xmit_fifo
);
488 sport
->dma_tx_nents
= kfifo_dma_out_prepare(&tport
->xmit_fifo
, sgl
,
489 ARRAY_SIZE(sport
->tx_sgl
), sport
->dma_tx_bytes
);
491 ret
= dma_map_sg(chan
->device
->dev
, sgl
, sport
->dma_tx_nents
,
494 dev_err(dev
, "DMA mapping error for TX.\n");
498 sport
->dma_tx_desc
= dmaengine_prep_slave_sg(chan
, sgl
,
501 if (!sport
->dma_tx_desc
) {
502 dma_unmap_sg(chan
->device
->dev
, sgl
, sport
->dma_tx_nents
,
504 dev_err(dev
, "Cannot prepare TX slave DMA!\n");
508 sport
->dma_tx_desc
->callback
= lpuart_dma_tx_complete
;
509 sport
->dma_tx_desc
->callback_param
= sport
;
510 sport
->dma_tx_in_progress
= true;
511 sport
->dma_tx_cookie
= dmaengine_submit(sport
->dma_tx_desc
);
512 dma_async_issue_pending(chan
);
515 static bool lpuart_stopped_or_empty(struct uart_port
*port
)
517 return kfifo_is_empty(&port
->state
->port
.xmit_fifo
) ||
518 uart_tx_stopped(port
);
521 static void lpuart_dma_tx_complete(void *arg
)
523 struct lpuart_port
*sport
= arg
;
524 struct scatterlist
*sgl
= &sport
->tx_sgl
[0];
525 struct tty_port
*tport
= &sport
->port
.state
->port
;
526 struct dma_chan
*chan
= sport
->dma_tx_chan
;
529 uart_port_lock_irqsave(&sport
->port
, &flags
);
530 if (!sport
->dma_tx_in_progress
) {
531 uart_port_unlock_irqrestore(&sport
->port
, flags
);
535 dma_unmap_sg(chan
->device
->dev
, sgl
, sport
->dma_tx_nents
,
538 uart_xmit_advance(&sport
->port
, sport
->dma_tx_bytes
);
539 sport
->dma_tx_in_progress
= false;
540 uart_port_unlock_irqrestore(&sport
->port
, flags
);
542 if (kfifo_len(&tport
->xmit_fifo
) < WAKEUP_CHARS
)
543 uart_write_wakeup(&sport
->port
);
545 if (waitqueue_active(&sport
->dma_wait
)) {
546 wake_up(&sport
->dma_wait
);
550 uart_port_lock_irqsave(&sport
->port
, &flags
);
552 if (!lpuart_stopped_or_empty(&sport
->port
))
553 lpuart_dma_tx(sport
);
555 uart_port_unlock_irqrestore(&sport
->port
, flags
);
558 static dma_addr_t
lpuart_dma_datareg_addr(struct lpuart_port
*sport
)
560 switch (sport
->port
.iotype
) {
562 return sport
->port
.mapbase
+ UARTDATA
;
564 return sport
->port
.mapbase
+ UARTDATA
+ sizeof(u32
) - 1;
566 return sport
->port
.mapbase
+ UARTDR
;
569 static int lpuart_dma_tx_request(struct uart_port
*port
)
571 struct lpuart_port
*sport
= container_of(port
,
572 struct lpuart_port
, port
);
573 struct dma_slave_config dma_tx_sconfig
= {};
576 dma_tx_sconfig
.dst_addr
= lpuart_dma_datareg_addr(sport
);
577 dma_tx_sconfig
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
578 dma_tx_sconfig
.dst_maxburst
= 1;
579 dma_tx_sconfig
.direction
= DMA_MEM_TO_DEV
;
580 ret
= dmaengine_slave_config(sport
->dma_tx_chan
, &dma_tx_sconfig
);
583 dev_err(sport
->port
.dev
,
584 "DMA slave config failed, err = %d\n", ret
);
591 static bool lpuart_is_32(struct lpuart_port
*sport
)
593 return sport
->port
.iotype
== UPIO_MEM32
||
594 sport
->port
.iotype
== UPIO_MEM32BE
;
597 static void lpuart_flush_buffer(struct uart_port
*port
)
599 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
600 struct dma_chan
*chan
= sport
->dma_tx_chan
;
603 if (sport
->lpuart_dma_tx_use
) {
604 if (sport
->dma_tx_in_progress
) {
605 dma_unmap_sg(chan
->device
->dev
, &sport
->tx_sgl
[0],
606 sport
->dma_tx_nents
, DMA_TO_DEVICE
);
607 sport
->dma_tx_in_progress
= false;
609 dmaengine_terminate_async(chan
);
612 if (lpuart_is_32(sport
)) {
613 val
= lpuart32_read(&sport
->port
, UARTFIFO
);
614 val
|= UARTFIFO_TXFLUSH
| UARTFIFO_RXFLUSH
;
615 lpuart32_write(&sport
->port
, val
, UARTFIFO
);
617 val
= readb(sport
->port
.membase
+ UARTCFIFO
);
618 val
|= UARTCFIFO_TXFLUSH
| UARTCFIFO_RXFLUSH
;
619 writeb(val
, sport
->port
.membase
+ UARTCFIFO
);
623 static void lpuart_wait_bit_set(struct uart_port
*port
, unsigned int offset
,
626 while (!(readb(port
->membase
+ offset
) & bit
))
630 static void lpuart32_wait_bit_set(struct uart_port
*port
, unsigned int offset
,
633 while (!(lpuart32_read(port
, offset
) & bit
))
637 #if defined(CONFIG_CONSOLE_POLL)
639 static int lpuart_poll_init(struct uart_port
*port
)
641 struct lpuart_port
*sport
= container_of(port
,
642 struct lpuart_port
, port
);
646 sport
->port
.fifosize
= 0;
648 uart_port_lock_irqsave(&sport
->port
, &flags
);
649 /* Disable Rx & Tx */
650 writeb(0, sport
->port
.membase
+ UARTCR2
);
652 temp
= readb(sport
->port
.membase
+ UARTPFIFO
);
653 /* Enable Rx and Tx FIFO */
654 writeb(temp
| UARTPFIFO_RXFE
| UARTPFIFO_TXFE
,
655 sport
->port
.membase
+ UARTPFIFO
);
657 /* flush Tx and Rx FIFO */
658 writeb(UARTCFIFO_TXFLUSH
| UARTCFIFO_RXFLUSH
,
659 sport
->port
.membase
+ UARTCFIFO
);
661 /* explicitly clear RDRF */
662 if (readb(sport
->port
.membase
+ UARTSR1
) & UARTSR1_RDRF
) {
663 readb(sport
->port
.membase
+ UARTDR
);
664 writeb(UARTSFIFO_RXUF
, sport
->port
.membase
+ UARTSFIFO
);
667 writeb(0, sport
->port
.membase
+ UARTTWFIFO
);
668 writeb(1, sport
->port
.membase
+ UARTRWFIFO
);
670 /* Enable Rx and Tx */
671 writeb(UARTCR2_RE
| UARTCR2_TE
, sport
->port
.membase
+ UARTCR2
);
672 uart_port_unlock_irqrestore(&sport
->port
, flags
);
677 static void lpuart_poll_put_char(struct uart_port
*port
, unsigned char c
)
680 lpuart_wait_bit_set(port
, UARTSR1
, UARTSR1_TDRE
);
681 writeb(c
, port
->membase
+ UARTDR
);
684 static int lpuart_poll_get_char(struct uart_port
*port
)
686 if (!(readb(port
->membase
+ UARTSR1
) & UARTSR1_RDRF
))
689 return readb(port
->membase
+ UARTDR
);
692 static int lpuart32_poll_init(struct uart_port
*port
)
695 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
698 sport
->port
.fifosize
= 0;
700 uart_port_lock_irqsave(&sport
->port
, &flags
);
702 /* Disable Rx & Tx */
703 lpuart32_write(&sport
->port
, 0, UARTCTRL
);
705 temp
= lpuart32_read(&sport
->port
, UARTFIFO
);
707 /* Enable Rx and Tx FIFO */
708 lpuart32_write(&sport
->port
, temp
| UARTFIFO_RXFE
| UARTFIFO_TXFE
, UARTFIFO
);
710 /* flush Tx and Rx FIFO */
711 lpuart32_write(&sport
->port
, UARTFIFO_TXFLUSH
| UARTFIFO_RXFLUSH
, UARTFIFO
);
713 /* explicitly clear RDRF */
714 if (lpuart32_read(&sport
->port
, UARTSTAT
) & UARTSTAT_RDRF
) {
715 lpuart32_read(&sport
->port
, UARTDATA
);
716 lpuart32_write(&sport
->port
, UARTFIFO_RXUF
, UARTFIFO
);
719 /* Enable Rx and Tx */
720 lpuart32_write(&sport
->port
, UARTCTRL_RE
| UARTCTRL_TE
, UARTCTRL
);
721 uart_port_unlock_irqrestore(&sport
->port
, flags
);
726 static void lpuart32_poll_put_char(struct uart_port
*port
, unsigned char c
)
728 lpuart32_wait_bit_set(port
, UARTSTAT
, UARTSTAT_TDRE
);
729 lpuart32_write(port
, c
, UARTDATA
);
732 static int lpuart32_poll_get_char(struct uart_port
*port
)
734 if (!(lpuart32_read(port
, UARTWATER
) >> UARTWATER_RXCNT_OFF
))
737 return lpuart32_read(port
, UARTDATA
);
741 static inline void lpuart_transmit_buffer(struct lpuart_port
*sport
)
743 struct uart_port
*port
= &sport
->port
;
746 uart_port_tx(port
, ch
,
747 readb(port
->membase
+ UARTTCFIFO
) < sport
->txfifo_size
,
748 writeb(ch
, port
->membase
+ UARTDR
));
751 static inline void lpuart32_transmit_buffer(struct lpuart_port
*sport
)
753 struct tty_port
*tport
= &sport
->port
.state
->port
;
757 if (sport
->port
.x_char
) {
758 lpuart32_write(&sport
->port
, sport
->port
.x_char
, UARTDATA
);
759 sport
->port
.icount
.tx
++;
760 sport
->port
.x_char
= 0;
764 if (lpuart_stopped_or_empty(&sport
->port
)) {
765 lpuart32_stop_tx(&sport
->port
);
769 txcnt
= lpuart32_read(&sport
->port
, UARTWATER
);
770 txcnt
= txcnt
>> UARTWATER_TXCNT_OFF
;
771 txcnt
&= UARTWATER_COUNT_MASK
;
772 while (txcnt
< sport
->txfifo_size
&&
773 uart_fifo_get(&sport
->port
, &c
)) {
774 lpuart32_write(&sport
->port
, c
, UARTDATA
);
775 txcnt
= lpuart32_read(&sport
->port
, UARTWATER
);
776 txcnt
= txcnt
>> UARTWATER_TXCNT_OFF
;
777 txcnt
&= UARTWATER_COUNT_MASK
;
780 if (kfifo_len(&tport
->xmit_fifo
) < WAKEUP_CHARS
)
781 uart_write_wakeup(&sport
->port
);
783 if (kfifo_is_empty(&tport
->xmit_fifo
))
784 lpuart32_stop_tx(&sport
->port
);
787 static void lpuart_start_tx(struct uart_port
*port
)
789 struct lpuart_port
*sport
= container_of(port
,
790 struct lpuart_port
, port
);
793 temp
= readb(port
->membase
+ UARTCR2
);
794 writeb(temp
| UARTCR2_TIE
, port
->membase
+ UARTCR2
);
796 if (sport
->lpuart_dma_tx_use
) {
797 if (!lpuart_stopped_or_empty(port
))
798 lpuart_dma_tx(sport
);
800 if (readb(port
->membase
+ UARTSR1
) & UARTSR1_TDRE
)
801 lpuart_transmit_buffer(sport
);
805 static void lpuart32_start_tx(struct uart_port
*port
)
807 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
810 if (sport
->lpuart_dma_tx_use
) {
811 if (!lpuart_stopped_or_empty(port
))
812 lpuart_dma_tx(sport
);
814 temp
= lpuart32_read(port
, UARTCTRL
);
815 lpuart32_write(port
, temp
| UARTCTRL_TIE
, UARTCTRL
);
817 if (lpuart32_read(port
, UARTSTAT
) & UARTSTAT_TDRE
)
818 lpuart32_transmit_buffer(sport
);
823 lpuart_uart_pm(struct uart_port
*port
, unsigned int state
, unsigned int oldstate
)
826 case UART_PM_STATE_OFF
:
827 pm_runtime_mark_last_busy(port
->dev
);
828 pm_runtime_put_autosuspend(port
->dev
);
831 pm_runtime_get_sync(port
->dev
);
836 /* return TIOCSER_TEMT when transmitter is not busy */
837 static unsigned int lpuart_tx_empty(struct uart_port
*port
)
839 struct lpuart_port
*sport
= container_of(port
,
840 struct lpuart_port
, port
);
841 unsigned char sr1
= readb(port
->membase
+ UARTSR1
);
842 unsigned char sfifo
= readb(port
->membase
+ UARTSFIFO
);
844 if (sport
->dma_tx_in_progress
)
847 if (sr1
& UARTSR1_TC
&& sfifo
& UARTSFIFO_TXEMPT
)
853 static unsigned int lpuart32_tx_empty(struct uart_port
*port
)
855 struct lpuart_port
*sport
= container_of(port
,
856 struct lpuart_port
, port
);
857 unsigned long stat
= lpuart32_read(port
, UARTSTAT
);
858 unsigned long sfifo
= lpuart32_read(port
, UARTFIFO
);
859 unsigned long ctrl
= lpuart32_read(port
, UARTCTRL
);
861 if (sport
->dma_tx_in_progress
)
865 * LPUART Transmission Complete Flag may never be set while queuing a break
866 * character, so avoid checking for transmission complete when UARTCTRL_SBK
869 if ((stat
& UARTSTAT_TC
&& sfifo
& UARTFIFO_TXEMPT
) || ctrl
& UARTCTRL_SBK
)
875 static void lpuart_txint(struct lpuart_port
*sport
)
877 uart_port_lock(&sport
->port
);
878 lpuart_transmit_buffer(sport
);
879 uart_port_unlock(&sport
->port
);
882 static void lpuart_rxint(struct lpuart_port
*sport
)
884 unsigned int flg
, ignored
= 0, overrun
= 0;
885 struct tty_port
*port
= &sport
->port
.state
->port
;
886 unsigned char rx
, sr
;
888 uart_port_lock(&sport
->port
);
890 while (!(readb(sport
->port
.membase
+ UARTSFIFO
) & UARTSFIFO_RXEMPT
)) {
892 sport
->port
.icount
.rx
++;
894 * to clear the FE, OR, NF, FE, PE flags,
895 * read SR1 then read DR
897 sr
= readb(sport
->port
.membase
+ UARTSR1
);
898 rx
= readb(sport
->port
.membase
+ UARTDR
);
900 if (uart_prepare_sysrq_char(&sport
->port
, rx
))
903 if (sr
& (UARTSR1_PE
| UARTSR1_OR
| UARTSR1_FE
)) {
905 sport
->port
.icount
.parity
++;
906 else if (sr
& UARTSR1_FE
)
907 sport
->port
.icount
.frame
++;
912 if (sr
& sport
->port
.ignore_status_mask
) {
918 sr
&= sport
->port
.read_status_mask
;
922 else if (sr
& UARTSR1_FE
)
928 sport
->port
.sysrq
= 0;
931 if (tty_insert_flip_char(port
, rx
, flg
) == 0)
932 sport
->port
.icount
.buf_overrun
++;
937 sport
->port
.icount
.overrun
+= overrun
;
940 * Overruns cause FIFO pointers to become missaligned.
941 * Flushing the receive FIFO reinitializes the pointers.
943 writeb(UARTCFIFO_RXFLUSH
, sport
->port
.membase
+ UARTCFIFO
);
944 writeb(UARTSFIFO_RXOF
, sport
->port
.membase
+ UARTSFIFO
);
947 uart_unlock_and_check_sysrq(&sport
->port
);
949 tty_flip_buffer_push(port
);
952 static void lpuart32_txint(struct lpuart_port
*sport
)
954 uart_port_lock(&sport
->port
);
955 lpuart32_transmit_buffer(sport
);
956 uart_port_unlock(&sport
->port
);
959 static void lpuart32_rxint(struct lpuart_port
*sport
)
961 unsigned int flg
, ignored
= 0;
962 struct tty_port
*port
= &sport
->port
.state
->port
;
963 unsigned long rx
, sr
;
966 uart_port_lock(&sport
->port
);
968 while (!(lpuart32_read(&sport
->port
, UARTFIFO
) & UARTFIFO_RXEMPT
)) {
970 sport
->port
.icount
.rx
++;
972 * to clear the FE, OR, NF, FE, PE flags,
973 * read STAT then read DATA reg
975 sr
= lpuart32_read(&sport
->port
, UARTSTAT
);
976 rx
= lpuart32_read(&sport
->port
, UARTDATA
);
980 * The LPUART can't distinguish between a break and a framing error,
981 * thus we assume it is a break if the received data is zero.
983 is_break
= (sr
& UARTSTAT_FE
) && !rx
;
985 if (is_break
&& uart_handle_break(&sport
->port
))
988 if (uart_prepare_sysrq_char(&sport
->port
, rx
))
991 if (sr
& (UARTSTAT_PE
| UARTSTAT_OR
| UARTSTAT_FE
)) {
992 if (sr
& UARTSTAT_PE
) {
993 sport
->port
.icount
.parity
++;
994 } else if (sr
& UARTSTAT_FE
) {
996 sport
->port
.icount
.brk
++;
998 sport
->port
.icount
.frame
++;
1001 if (sr
& UARTSTAT_OR
)
1002 sport
->port
.icount
.overrun
++;
1004 if (sr
& sport
->port
.ignore_status_mask
) {
1005 if (++ignored
> 100)
1010 sr
&= sport
->port
.read_status_mask
;
1012 if (sr
& UARTSTAT_PE
) {
1014 } else if (sr
& UARTSTAT_FE
) {
1021 if (sr
& UARTSTAT_OR
)
1028 if (tty_insert_flip_char(port
, rx
, flg
) == 0)
1029 sport
->port
.icount
.buf_overrun
++;
1033 uart_unlock_and_check_sysrq(&sport
->port
);
1035 tty_flip_buffer_push(port
);
1038 static irqreturn_t
lpuart_int(int irq
, void *dev_id
)
1040 struct lpuart_port
*sport
= dev_id
;
1043 sts
= readb(sport
->port
.membase
+ UARTSR1
);
1045 /* SysRq, using dma, check for linebreak by framing err. */
1046 if (sts
& UARTSR1_FE
&& sport
->lpuart_dma_rx_use
) {
1047 readb(sport
->port
.membase
+ UARTDR
);
1048 uart_handle_break(&sport
->port
);
1049 /* linebreak produces some garbage, removing it */
1050 writeb(UARTCFIFO_RXFLUSH
, sport
->port
.membase
+ UARTCFIFO
);
1054 if (sts
& UARTSR1_RDRF
&& !sport
->lpuart_dma_rx_use
)
1055 lpuart_rxint(sport
);
1057 if (sts
& UARTSR1_TDRE
&& !sport
->lpuart_dma_tx_use
)
1058 lpuart_txint(sport
);
1063 static inline void lpuart_handle_sysrq_chars(struct uart_port
*port
,
1064 unsigned char *p
, int count
)
1067 if (*p
&& uart_handle_sysrq_char(port
, *p
))
1073 static void lpuart_handle_sysrq(struct lpuart_port
*sport
)
1075 struct circ_buf
*ring
= &sport
->rx_ring
;
1078 if (ring
->head
< ring
->tail
) {
1079 count
= sport
->rx_sgl
.length
- ring
->tail
;
1080 lpuart_handle_sysrq_chars(&sport
->port
,
1081 ring
->buf
+ ring
->tail
, count
);
1085 if (ring
->head
> ring
->tail
) {
1086 count
= ring
->head
- ring
->tail
;
1087 lpuart_handle_sysrq_chars(&sport
->port
,
1088 ring
->buf
+ ring
->tail
, count
);
1089 ring
->tail
= ring
->head
;
1093 static int lpuart_tty_insert_flip_string(struct tty_port
*port
,
1094 unsigned char *chars
, size_t size
, bool is_cs7
)
1099 for (i
= 0; i
< size
; i
++)
1101 return tty_insert_flip_string(port
, chars
, size
);
1104 static void lpuart_copy_rx_to_tty(struct lpuart_port
*sport
)
1106 struct tty_port
*port
= &sport
->port
.state
->port
;
1107 struct dma_tx_state state
;
1108 enum dma_status dmastat
;
1109 struct dma_chan
*chan
= sport
->dma_rx_chan
;
1110 struct circ_buf
*ring
= &sport
->rx_ring
;
1111 unsigned long flags
;
1114 if (lpuart_is_32(sport
)) {
1115 unsigned long sr
= lpuart32_read(&sport
->port
, UARTSTAT
);
1117 if (sr
& (UARTSTAT_PE
| UARTSTAT_FE
)) {
1118 /* Clear the error flags */
1119 lpuart32_write(&sport
->port
, sr
, UARTSTAT
);
1121 if (sr
& UARTSTAT_PE
)
1122 sport
->port
.icount
.parity
++;
1123 else if (sr
& UARTSTAT_FE
)
1124 sport
->port
.icount
.frame
++;
1127 unsigned char sr
= readb(sport
->port
.membase
+ UARTSR1
);
1129 if (sr
& (UARTSR1_PE
| UARTSR1_FE
)) {
1132 /* Disable receiver during this operation... */
1133 cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1135 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
1137 /* Read DR to clear the error flags */
1138 readb(sport
->port
.membase
+ UARTDR
);
1140 if (sr
& UARTSR1_PE
)
1141 sport
->port
.icount
.parity
++;
1142 else if (sr
& UARTSR1_FE
)
1143 sport
->port
.icount
.frame
++;
1145 * At this point parity/framing error is
1146 * cleared However, since the DMA already read
1147 * the data register and we had to read it
1148 * again after reading the status register to
1149 * properly clear the flags, the FIFO actually
1150 * underflowed... This requires a clearing of
1153 if (readb(sport
->port
.membase
+ UARTSFIFO
) &
1155 writeb(UARTSFIFO_RXUF
,
1156 sport
->port
.membase
+ UARTSFIFO
);
1157 writeb(UARTCFIFO_RXFLUSH
,
1158 sport
->port
.membase
+ UARTCFIFO
);
1162 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
1166 async_tx_ack(sport
->dma_rx_desc
);
1168 uart_port_lock_irqsave(&sport
->port
, &flags
);
1170 dmastat
= dmaengine_tx_status(chan
, sport
->dma_rx_cookie
, &state
);
1171 if (dmastat
== DMA_ERROR
) {
1172 dev_err(sport
->port
.dev
, "Rx DMA transfer failed!\n");
1173 uart_port_unlock_irqrestore(&sport
->port
, flags
);
1177 /* CPU claims ownership of RX DMA buffer */
1178 dma_sync_sg_for_cpu(chan
->device
->dev
, &sport
->rx_sgl
, 1,
1182 * ring->head points to the end of data already written by the DMA.
1183 * ring->tail points to the beginning of data to be read by the
1185 * The current transfer size should not be larger than the dma buffer
1188 ring
->head
= sport
->rx_sgl
.length
- state
.residue
;
1189 BUG_ON(ring
->head
> sport
->rx_sgl
.length
);
1192 * Silent handling of keys pressed in the sysrq timeframe
1194 if (sport
->port
.sysrq
) {
1195 lpuart_handle_sysrq(sport
);
1200 * At this point ring->head may point to the first byte right after the
1201 * last byte of the dma buffer:
1202 * 0 <= ring->head <= sport->rx_sgl.length
1204 * However ring->tail must always points inside the dma buffer:
1205 * 0 <= ring->tail <= sport->rx_sgl.length - 1
1207 * Since we use a ring buffer, we have to handle the case
1208 * where head is lower than tail. In such a case, we first read from
1209 * tail to the end of the buffer then reset tail.
1211 if (ring
->head
< ring
->tail
) {
1212 count
= sport
->rx_sgl
.length
- ring
->tail
;
1214 copied
= lpuart_tty_insert_flip_string(port
, ring
->buf
+ ring
->tail
,
1215 count
, sport
->is_cs7
);
1216 if (copied
!= count
)
1217 sport
->port
.icount
.buf_overrun
++;
1219 sport
->port
.icount
.rx
+= copied
;
1222 /* Finally we read data from tail to head */
1223 if (ring
->tail
< ring
->head
) {
1224 count
= ring
->head
- ring
->tail
;
1225 copied
= lpuart_tty_insert_flip_string(port
, ring
->buf
+ ring
->tail
,
1226 count
, sport
->is_cs7
);
1227 if (copied
!= count
)
1228 sport
->port
.icount
.buf_overrun
++;
1229 /* Wrap ring->head if needed */
1230 if (ring
->head
>= sport
->rx_sgl
.length
)
1232 ring
->tail
= ring
->head
;
1233 sport
->port
.icount
.rx
+= copied
;
1236 sport
->last_residue
= state
.residue
;
1239 dma_sync_sg_for_device(chan
->device
->dev
, &sport
->rx_sgl
, 1,
1242 uart_port_unlock_irqrestore(&sport
->port
, flags
);
1244 tty_flip_buffer_push(port
);
1245 if (!sport
->dma_idle_int
)
1246 mod_timer(&sport
->lpuart_timer
, jiffies
+ sport
->dma_rx_timeout
);
1249 static void lpuart_dma_rx_complete(void *arg
)
1251 struct lpuart_port
*sport
= arg
;
1253 lpuart_copy_rx_to_tty(sport
);
1256 static void lpuart32_dma_idleint(struct lpuart_port
*sport
)
1258 enum dma_status dmastat
;
1259 struct dma_chan
*chan
= sport
->dma_rx_chan
;
1260 struct circ_buf
*ring
= &sport
->rx_ring
;
1261 struct dma_tx_state state
;
1264 dmastat
= dmaengine_tx_status(chan
, sport
->dma_rx_cookie
, &state
);
1265 if (dmastat
== DMA_ERROR
) {
1266 dev_err(sport
->port
.dev
, "Rx DMA transfer failed!\n");
1270 ring
->head
= sport
->rx_sgl
.length
- state
.residue
;
1271 count
= CIRC_CNT(ring
->head
, ring
->tail
, sport
->rx_sgl
.length
);
1273 /* Check if new data received before copying */
1275 lpuart_copy_rx_to_tty(sport
);
1278 static irqreturn_t
lpuart32_int(int irq
, void *dev_id
)
1280 struct lpuart_port
*sport
= dev_id
;
1281 unsigned long sts
, rxcount
;
1283 sts
= lpuart32_read(&sport
->port
, UARTSTAT
);
1284 rxcount
= lpuart32_read(&sport
->port
, UARTWATER
);
1285 rxcount
= rxcount
>> UARTWATER_RXCNT_OFF
;
1287 if ((sts
& UARTSTAT_RDRF
|| rxcount
> 0) && !sport
->lpuart_dma_rx_use
)
1288 lpuart32_rxint(sport
);
1290 if ((sts
& UARTSTAT_TDRE
) && !sport
->lpuart_dma_tx_use
)
1291 lpuart32_txint(sport
);
1293 if ((sts
& UARTSTAT_IDLE
) && sport
->lpuart_dma_rx_use
&& sport
->dma_idle_int
)
1294 lpuart32_dma_idleint(sport
);
1296 lpuart32_write(&sport
->port
, sts
, UARTSTAT
);
1301 * Timer function to simulate the hardware EOP (End Of Package) event.
1302 * The timer callback is to check for new RX data and copy to TTY buffer.
1303 * If no new data are received since last interval, the EOP condition is
1304 * met, complete the DMA transfer by copying the data. Otherwise, just
1307 static void lpuart_timer_func(struct timer_list
*t
)
1309 struct lpuart_port
*sport
= from_timer(sport
, t
, lpuart_timer
);
1310 enum dma_status dmastat
;
1311 struct dma_chan
*chan
= sport
->dma_rx_chan
;
1312 struct circ_buf
*ring
= &sport
->rx_ring
;
1313 struct dma_tx_state state
;
1314 unsigned long flags
;
1317 dmastat
= dmaengine_tx_status(chan
, sport
->dma_rx_cookie
, &state
);
1318 if (dmastat
== DMA_ERROR
) {
1319 dev_err(sport
->port
.dev
, "Rx DMA transfer failed!\n");
1323 ring
->head
= sport
->rx_sgl
.length
- state
.residue
;
1324 count
= CIRC_CNT(ring
->head
, ring
->tail
, sport
->rx_sgl
.length
);
1326 /* Check if new data received before copying */
1327 if ((count
!= 0) && (sport
->last_residue
== state
.residue
))
1328 lpuart_copy_rx_to_tty(sport
);
1330 mod_timer(&sport
->lpuart_timer
,
1331 jiffies
+ sport
->dma_rx_timeout
);
1333 if (uart_port_trylock_irqsave(&sport
->port
, &flags
)) {
1334 sport
->last_residue
= state
.residue
;
1335 uart_port_unlock_irqrestore(&sport
->port
, flags
);
1339 static inline int lpuart_start_rx_dma(struct lpuart_port
*sport
)
1341 struct dma_slave_config dma_rx_sconfig
= {};
1342 struct circ_buf
*ring
= &sport
->rx_ring
;
1344 struct tty_port
*port
= &sport
->port
.state
->port
;
1345 struct tty_struct
*tty
= port
->tty
;
1346 struct ktermios
*termios
= &tty
->termios
;
1347 struct dma_chan
*chan
= sport
->dma_rx_chan
;
1348 unsigned int bits
= tty_get_frame_size(termios
->c_cflag
);
1349 unsigned int baud
= tty_get_baud_rate(tty
);
1352 * Calculate length of one DMA buffer size to keep latency below
1353 * 10ms at any baud rate.
1355 sport
->rx_dma_rng_buf_len
= (DMA_RX_TIMEOUT
* baud
/ bits
/ 1000) * 2;
1356 sport
->rx_dma_rng_buf_len
= (1 << fls(sport
->rx_dma_rng_buf_len
));
1357 sport
->rx_dma_rng_buf_len
= max_t(int,
1358 sport
->rxfifo_size
* 2,
1359 sport
->rx_dma_rng_buf_len
);
1361 * Keep this condition check in case rxfifo_size is unavailable
1364 if (sport
->rx_dma_rng_buf_len
< 16)
1365 sport
->rx_dma_rng_buf_len
= 16;
1367 sport
->last_residue
= 0;
1368 sport
->dma_rx_timeout
= max(nsecs_to_jiffies(
1369 sport
->port
.frame_time
* DMA_RX_IDLE_CHARS
), 1UL);
1371 ring
->buf
= kzalloc(sport
->rx_dma_rng_buf_len
, GFP_ATOMIC
);
1375 sg_init_one(&sport
->rx_sgl
, ring
->buf
, sport
->rx_dma_rng_buf_len
);
1376 nent
= dma_map_sg(chan
->device
->dev
, &sport
->rx_sgl
, 1,
1380 dev_err(sport
->port
.dev
, "DMA Rx mapping error\n");
1384 dma_rx_sconfig
.src_addr
= lpuart_dma_datareg_addr(sport
);
1385 dma_rx_sconfig
.src_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
1386 dma_rx_sconfig
.src_maxburst
= 1;
1387 dma_rx_sconfig
.direction
= DMA_DEV_TO_MEM
;
1388 ret
= dmaengine_slave_config(chan
, &dma_rx_sconfig
);
1391 dev_err(sport
->port
.dev
,
1392 "DMA Rx slave config failed, err = %d\n", ret
);
1396 sport
->dma_rx_desc
= dmaengine_prep_dma_cyclic(chan
,
1397 sg_dma_address(&sport
->rx_sgl
),
1398 sport
->rx_sgl
.length
,
1399 sport
->rx_sgl
.length
/ 2,
1401 DMA_PREP_INTERRUPT
);
1402 if (!sport
->dma_rx_desc
) {
1403 dev_err(sport
->port
.dev
, "Cannot prepare cyclic DMA\n");
1407 sport
->dma_rx_desc
->callback
= lpuart_dma_rx_complete
;
1408 sport
->dma_rx_desc
->callback_param
= sport
;
1409 sport
->dma_rx_cookie
= dmaengine_submit(sport
->dma_rx_desc
);
1410 dma_async_issue_pending(chan
);
1412 if (lpuart_is_32(sport
)) {
1413 unsigned long temp
= lpuart32_read(&sport
->port
, UARTBAUD
);
1415 lpuart32_write(&sport
->port
, temp
| UARTBAUD_RDMAE
, UARTBAUD
);
1417 if (sport
->dma_idle_int
) {
1418 unsigned long ctrl
= lpuart32_read(&sport
->port
, UARTCTRL
);
1420 lpuart32_write(&sport
->port
, ctrl
| UARTCTRL_ILIE
, UARTCTRL
);
1423 writeb(readb(sport
->port
.membase
+ UARTCR5
) | UARTCR5_RDMAS
,
1424 sport
->port
.membase
+ UARTCR5
);
1430 static void lpuart_dma_rx_free(struct uart_port
*port
)
1432 struct lpuart_port
*sport
= container_of(port
,
1433 struct lpuart_port
, port
);
1434 struct dma_chan
*chan
= sport
->dma_rx_chan
;
1436 dmaengine_terminate_sync(chan
);
1437 if (!sport
->dma_idle_int
)
1438 del_timer_sync(&sport
->lpuart_timer
);
1440 dma_unmap_sg(chan
->device
->dev
, &sport
->rx_sgl
, 1, DMA_FROM_DEVICE
);
1441 kfree(sport
->rx_ring
.buf
);
1442 sport
->rx_ring
.tail
= 0;
1443 sport
->rx_ring
.head
= 0;
1444 sport
->dma_rx_desc
= NULL
;
1445 sport
->dma_rx_cookie
= -EINVAL
;
1448 static int lpuart_config_rs485(struct uart_port
*port
, struct ktermios
*termios
,
1449 struct serial_rs485
*rs485
)
1451 struct lpuart_port
*sport
= container_of(port
,
1452 struct lpuart_port
, port
);
1454 u8 modem
= readb(sport
->port
.membase
+ UARTMODEM
) &
1455 ~(UARTMODEM_TXRTSPOL
| UARTMODEM_TXRTSE
);
1456 writeb(modem
, sport
->port
.membase
+ UARTMODEM
);
1458 if (rs485
->flags
& SER_RS485_ENABLED
) {
1459 /* Enable auto RS-485 RTS mode */
1460 modem
|= UARTMODEM_TXRTSE
;
1463 * The hardware defaults to RTS logic HIGH while transfer.
1464 * Switch polarity in case RTS shall be logic HIGH
1466 * Note: UART is assumed to be active high.
1468 if (rs485
->flags
& SER_RS485_RTS_ON_SEND
)
1469 modem
|= UARTMODEM_TXRTSPOL
;
1470 else if (rs485
->flags
& SER_RS485_RTS_AFTER_SEND
)
1471 modem
&= ~UARTMODEM_TXRTSPOL
;
1474 writeb(modem
, sport
->port
.membase
+ UARTMODEM
);
1478 static int lpuart32_config_rs485(struct uart_port
*port
, struct ktermios
*termios
,
1479 struct serial_rs485
*rs485
)
1481 struct lpuart_port
*sport
= container_of(port
,
1482 struct lpuart_port
, port
);
1484 unsigned long modem
= lpuart32_read(&sport
->port
, UARTMODIR
)
1485 & ~(UARTMODIR_TXRTSPOL
| UARTMODIR_TXRTSE
);
1486 lpuart32_write(&sport
->port
, modem
, UARTMODIR
);
1488 if (rs485
->flags
& SER_RS485_ENABLED
) {
1489 /* Enable auto RS-485 RTS mode */
1490 modem
|= UARTMODIR_TXRTSE
;
1493 * The hardware defaults to RTS logic HIGH while transfer.
1494 * Switch polarity in case RTS shall be logic HIGH
1496 * Note: UART is assumed to be active high.
1498 if (rs485
->flags
& SER_RS485_RTS_ON_SEND
)
1499 modem
|= UARTMODIR_TXRTSPOL
;
1500 else if (rs485
->flags
& SER_RS485_RTS_AFTER_SEND
)
1501 modem
&= ~UARTMODIR_TXRTSPOL
;
1504 lpuart32_write(&sport
->port
, modem
, UARTMODIR
);
1508 static unsigned int lpuart_get_mctrl(struct uart_port
*port
)
1510 unsigned int mctrl
= 0;
1513 reg
= readb(port
->membase
+ UARTCR1
);
1514 if (reg
& UARTCR1_LOOPS
)
1515 mctrl
|= TIOCM_LOOP
;
1520 static unsigned int lpuart32_get_mctrl(struct uart_port
*port
)
1522 unsigned int mctrl
= TIOCM_CAR
| TIOCM_DSR
| TIOCM_CTS
;
1525 reg
= lpuart32_read(port
, UARTCTRL
);
1526 if (reg
& UARTCTRL_LOOPS
)
1527 mctrl
|= TIOCM_LOOP
;
1532 static void lpuart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
1536 reg
= readb(port
->membase
+ UARTCR1
);
1538 /* for internal loopback we need LOOPS=1 and RSRC=0 */
1539 reg
&= ~(UARTCR1_LOOPS
| UARTCR1_RSRC
);
1540 if (mctrl
& TIOCM_LOOP
)
1541 reg
|= UARTCR1_LOOPS
;
1543 writeb(reg
, port
->membase
+ UARTCR1
);
1546 static void lpuart32_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
1550 reg
= lpuart32_read(port
, UARTCTRL
);
1552 /* for internal loopback we need LOOPS=1 and RSRC=0 */
1553 reg
&= ~(UARTCTRL_LOOPS
| UARTCTRL_RSRC
);
1554 if (mctrl
& TIOCM_LOOP
)
1555 reg
|= UARTCTRL_LOOPS
;
1557 lpuart32_write(port
, reg
, UARTCTRL
);
1560 static void lpuart_break_ctl(struct uart_port
*port
, int break_state
)
1564 temp
= readb(port
->membase
+ UARTCR2
) & ~UARTCR2_SBK
;
1566 if (break_state
!= 0)
1567 temp
|= UARTCR2_SBK
;
1569 writeb(temp
, port
->membase
+ UARTCR2
);
1572 static void lpuart32_break_ctl(struct uart_port
*port
, int break_state
)
1576 temp
= lpuart32_read(port
, UARTCTRL
);
1579 * LPUART IP now has two known bugs, one is CTS has higher priority than the
1580 * break signal, which causes the break signal sending through UARTCTRL_SBK
1581 * may impacted by the CTS input if the HW flow control is enabled. It
1582 * exists on all platforms we support in this driver.
1583 * Another bug is i.MX8QM LPUART may have an additional break character
1584 * being sent after SBK was cleared.
1585 * To avoid above two bugs, we use Transmit Data Inversion function to send
1586 * the break signal instead of UARTCTRL_SBK.
1588 if (break_state
!= 0) {
1590 * Disable the transmitter to prevent any data from being sent out
1591 * during break, then invert the TX line to send break.
1593 temp
&= ~UARTCTRL_TE
;
1594 lpuart32_write(port
, temp
, UARTCTRL
);
1595 temp
|= UARTCTRL_TXINV
;
1596 lpuart32_write(port
, temp
, UARTCTRL
);
1598 /* Disable the TXINV to turn off break and re-enable transmitter. */
1599 temp
&= ~UARTCTRL_TXINV
;
1600 lpuart32_write(port
, temp
, UARTCTRL
);
1601 temp
|= UARTCTRL_TE
;
1602 lpuart32_write(port
, temp
, UARTCTRL
);
1606 static void lpuart_setup_watermark(struct lpuart_port
*sport
)
1608 unsigned char val
, cr2
;
1609 unsigned char cr2_saved
;
1611 cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1613 cr2
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_TE
|
1614 UARTCR2_RIE
| UARTCR2_RE
);
1615 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
1617 val
= readb(sport
->port
.membase
+ UARTPFIFO
);
1618 writeb(val
| UARTPFIFO_TXFE
| UARTPFIFO_RXFE
,
1619 sport
->port
.membase
+ UARTPFIFO
);
1621 /* flush Tx and Rx FIFO */
1622 writeb(UARTCFIFO_TXFLUSH
| UARTCFIFO_RXFLUSH
,
1623 sport
->port
.membase
+ UARTCFIFO
);
1625 /* explicitly clear RDRF */
1626 if (readb(sport
->port
.membase
+ UARTSR1
) & UARTSR1_RDRF
) {
1627 readb(sport
->port
.membase
+ UARTDR
);
1628 writeb(UARTSFIFO_RXUF
, sport
->port
.membase
+ UARTSFIFO
);
1631 if (uart_console(&sport
->port
))
1632 sport
->rx_watermark
= 1;
1633 writeb(0, sport
->port
.membase
+ UARTTWFIFO
);
1634 writeb(sport
->rx_watermark
, sport
->port
.membase
+ UARTRWFIFO
);
1637 writeb(cr2_saved
, sport
->port
.membase
+ UARTCR2
);
1640 static void lpuart_setup_watermark_enable(struct lpuart_port
*sport
)
1644 lpuart_setup_watermark(sport
);
1646 cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1647 cr2
|= UARTCR2_RIE
| UARTCR2_RE
| UARTCR2_TE
;
1648 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
1651 static void lpuart32_setup_watermark(struct lpuart_port
*sport
)
1653 unsigned long val
, ctrl
;
1654 unsigned long ctrl_saved
;
1656 ctrl
= lpuart32_read(&sport
->port
, UARTCTRL
);
1658 ctrl
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_TE
|
1659 UARTCTRL_RIE
| UARTCTRL_RE
| UARTCTRL_ILIE
);
1660 lpuart32_write(&sport
->port
, ctrl
, UARTCTRL
);
1662 /* enable FIFO mode */
1663 val
= lpuart32_read(&sport
->port
, UARTFIFO
);
1664 val
|= UARTFIFO_TXFE
| UARTFIFO_RXFE
;
1665 val
|= UARTFIFO_TXFLUSH
| UARTFIFO_RXFLUSH
;
1666 val
|= FIELD_PREP(UARTFIFO_RXIDEN
, 0x3);
1667 lpuart32_write(&sport
->port
, val
, UARTFIFO
);
1669 /* set the watermark */
1670 if (uart_console(&sport
->port
))
1671 sport
->rx_watermark
= 1;
1672 val
= (sport
->rx_watermark
<< UARTWATER_RXWATER_OFF
) |
1673 (0x0 << UARTWATER_TXWATER_OFF
);
1674 lpuart32_write(&sport
->port
, val
, UARTWATER
);
1676 /* set RTS watermark */
1677 if (!uart_console(&sport
->port
)) {
1678 val
= lpuart32_read(&sport
->port
, UARTMODIR
);
1679 val
|= FIELD_PREP(UARTMODIR_RTSWATER
, sport
->rxfifo_size
>> 1);
1680 lpuart32_write(&sport
->port
, val
, UARTMODIR
);
1684 lpuart32_write(&sport
->port
, ctrl_saved
, UARTCTRL
);
1687 static void lpuart32_setup_watermark_enable(struct lpuart_port
*sport
)
1691 lpuart32_setup_watermark(sport
);
1693 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
1694 temp
|= UARTCTRL_RE
| UARTCTRL_TE
;
1695 temp
|= FIELD_PREP(UARTCTRL_IDLECFG
, 0x7);
1696 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
1699 static void rx_dma_timer_init(struct lpuart_port
*sport
)
1701 if (sport
->dma_idle_int
)
1704 timer_setup(&sport
->lpuart_timer
, lpuart_timer_func
, 0);
1705 sport
->lpuart_timer
.expires
= jiffies
+ sport
->dma_rx_timeout
;
1706 add_timer(&sport
->lpuart_timer
);
1709 static void lpuart_request_dma(struct lpuart_port
*sport
)
1711 sport
->dma_tx_chan
= dma_request_chan(sport
->port
.dev
, "tx");
1712 if (IS_ERR(sport
->dma_tx_chan
)) {
1713 dev_dbg_once(sport
->port
.dev
,
1714 "DMA tx channel request failed, operating without tx DMA (%ld)\n",
1715 PTR_ERR(sport
->dma_tx_chan
));
1716 sport
->dma_tx_chan
= NULL
;
1719 sport
->dma_rx_chan
= dma_request_chan(sport
->port
.dev
, "rx");
1720 if (IS_ERR(sport
->dma_rx_chan
)) {
1721 dev_dbg_once(sport
->port
.dev
,
1722 "DMA rx channel request failed, operating without rx DMA (%ld)\n",
1723 PTR_ERR(sport
->dma_rx_chan
));
1724 sport
->dma_rx_chan
= NULL
;
1728 static void lpuart_tx_dma_startup(struct lpuart_port
*sport
)
1733 if (uart_console(&sport
->port
))
1736 if (!sport
->dma_tx_chan
)
1739 ret
= lpuart_dma_tx_request(&sport
->port
);
1743 init_waitqueue_head(&sport
->dma_wait
);
1744 sport
->lpuart_dma_tx_use
= true;
1745 if (lpuart_is_32(sport
)) {
1746 uartbaud
= lpuart32_read(&sport
->port
, UARTBAUD
);
1747 lpuart32_write(&sport
->port
,
1748 uartbaud
| UARTBAUD_TDMAE
, UARTBAUD
);
1750 writeb(readb(sport
->port
.membase
+ UARTCR5
) |
1751 UARTCR5_TDMAS
, sport
->port
.membase
+ UARTCR5
);
1757 sport
->lpuart_dma_tx_use
= false;
1760 static void lpuart_rx_dma_startup(struct lpuart_port
*sport
)
1765 if (uart_console(&sport
->port
))
1768 if (!sport
->dma_rx_chan
)
1771 /* set default Rx DMA timeout */
1772 sport
->dma_rx_timeout
= msecs_to_jiffies(DMA_RX_TIMEOUT
);
1774 ret
= lpuart_start_rx_dma(sport
);
1778 if (!sport
->dma_rx_timeout
)
1779 sport
->dma_rx_timeout
= 1;
1781 sport
->lpuart_dma_rx_use
= true;
1782 rx_dma_timer_init(sport
);
1784 if (sport
->port
.has_sysrq
&& !lpuart_is_32(sport
)) {
1785 cr3
= readb(sport
->port
.membase
+ UARTCR3
);
1786 cr3
|= UARTCR3_FEIE
;
1787 writeb(cr3
, sport
->port
.membase
+ UARTCR3
);
1793 sport
->lpuart_dma_rx_use
= false;
1796 static void lpuart_hw_setup(struct lpuart_port
*sport
)
1798 unsigned long flags
;
1800 uart_port_lock_irqsave(&sport
->port
, &flags
);
1802 lpuart_setup_watermark_enable(sport
);
1804 lpuart_rx_dma_startup(sport
);
1805 lpuart_tx_dma_startup(sport
);
1807 uart_port_unlock_irqrestore(&sport
->port
, flags
);
1810 static int lpuart_startup(struct uart_port
*port
)
1812 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1815 /* determine FIFO size and enable FIFO mode */
1816 temp
= readb(sport
->port
.membase
+ UARTPFIFO
);
1818 sport
->txfifo_size
= UARTFIFO_DEPTH((temp
>> UARTPFIFO_TXSIZE_OFF
) &
1819 UARTPFIFO_FIFOSIZE_MASK
);
1820 sport
->port
.fifosize
= sport
->txfifo_size
;
1822 sport
->rxfifo_size
= UARTFIFO_DEPTH((temp
>> UARTPFIFO_RXSIZE_OFF
) &
1823 UARTPFIFO_FIFOSIZE_MASK
);
1825 lpuart_request_dma(sport
);
1826 lpuart_hw_setup(sport
);
1831 static void lpuart32_hw_disable(struct lpuart_port
*sport
)
1835 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
1836 temp
&= ~(UARTCTRL_RIE
| UARTCTRL_ILIE
| UARTCTRL_RE
|
1837 UARTCTRL_TIE
| UARTCTRL_TE
);
1838 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
1841 static void lpuart32_configure(struct lpuart_port
*sport
)
1845 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
1846 if (!sport
->lpuart_dma_rx_use
)
1847 temp
|= UARTCTRL_RIE
| UARTCTRL_ILIE
;
1848 if (!sport
->lpuart_dma_tx_use
)
1849 temp
|= UARTCTRL_TIE
;
1850 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
1853 static void lpuart32_hw_setup(struct lpuart_port
*sport
)
1855 unsigned long flags
;
1857 uart_port_lock_irqsave(&sport
->port
, &flags
);
1859 lpuart32_hw_disable(sport
);
1861 lpuart_rx_dma_startup(sport
);
1862 lpuart_tx_dma_startup(sport
);
1864 lpuart32_setup_watermark_enable(sport
);
1865 lpuart32_configure(sport
);
1867 uart_port_unlock_irqrestore(&sport
->port
, flags
);
1870 static int lpuart32_startup(struct uart_port
*port
)
1872 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1875 /* determine FIFO size */
1876 temp
= lpuart32_read(&sport
->port
, UARTFIFO
);
1878 sport
->txfifo_size
= UARTFIFO_DEPTH((temp
>> UARTFIFO_TXSIZE_OFF
) &
1879 UARTFIFO_FIFOSIZE_MASK
);
1880 sport
->port
.fifosize
= sport
->txfifo_size
;
1882 sport
->rxfifo_size
= UARTFIFO_DEPTH((temp
>> UARTFIFO_RXSIZE_OFF
) &
1883 UARTFIFO_FIFOSIZE_MASK
);
1886 * The LS1021A and LS1028A have a fixed FIFO depth of 16 words.
1887 * Although they support the RX/TXSIZE fields, their encoding is
1888 * different. Eg the reference manual states 0b101 is 16 words.
1890 if (is_layerscape_lpuart(sport
)) {
1891 sport
->rxfifo_size
= 16;
1892 sport
->txfifo_size
= 16;
1893 sport
->port
.fifosize
= sport
->txfifo_size
;
1896 lpuart_request_dma(sport
);
1897 lpuart32_hw_setup(sport
);
1902 static void lpuart_dma_shutdown(struct lpuart_port
*sport
)
1904 if (sport
->lpuart_dma_rx_use
) {
1905 lpuart_dma_rx_free(&sport
->port
);
1906 sport
->lpuart_dma_rx_use
= false;
1909 if (sport
->lpuart_dma_tx_use
) {
1910 if (wait_event_interruptible_timeout(sport
->dma_wait
,
1911 !sport
->dma_tx_in_progress
, msecs_to_jiffies(300)) <= 0) {
1912 sport
->dma_tx_in_progress
= false;
1913 dmaengine_terminate_sync(sport
->dma_tx_chan
);
1915 sport
->lpuart_dma_tx_use
= false;
1918 if (sport
->dma_tx_chan
)
1919 dma_release_channel(sport
->dma_tx_chan
);
1920 if (sport
->dma_rx_chan
)
1921 dma_release_channel(sport
->dma_rx_chan
);
1924 static void lpuart_shutdown(struct uart_port
*port
)
1926 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1928 unsigned long flags
;
1930 uart_port_lock_irqsave(port
, &flags
);
1932 /* disable Rx/Tx and interrupts */
1933 temp
= readb(port
->membase
+ UARTCR2
);
1934 temp
&= ~(UARTCR2_TE
| UARTCR2_RE
|
1935 UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_RIE
);
1936 writeb(temp
, port
->membase
+ UARTCR2
);
1938 uart_port_unlock_irqrestore(port
, flags
);
1940 lpuart_dma_shutdown(sport
);
1943 static void lpuart32_shutdown(struct uart_port
*port
)
1945 struct lpuart_port
*sport
=
1946 container_of(port
, struct lpuart_port
, port
);
1948 unsigned long flags
;
1950 uart_port_lock_irqsave(port
, &flags
);
1953 temp
= lpuart32_read(&sport
->port
, UARTSTAT
);
1954 lpuart32_write(&sport
->port
, temp
, UARTSTAT
);
1956 /* disable Rx/Tx DMA */
1957 temp
= lpuart32_read(port
, UARTBAUD
);
1958 temp
&= ~(UARTBAUD_TDMAE
| UARTBAUD_RDMAE
);
1959 lpuart32_write(port
, temp
, UARTBAUD
);
1961 /* disable Rx/Tx and interrupts and break condition */
1962 temp
= lpuart32_read(port
, UARTCTRL
);
1963 temp
&= ~(UARTCTRL_TE
| UARTCTRL_RE
| UARTCTRL_ILIE
|
1964 UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_RIE
| UARTCTRL_SBK
);
1965 lpuart32_write(port
, temp
, UARTCTRL
);
1967 uart_port_unlock_irqrestore(port
, flags
);
1969 lpuart_dma_shutdown(sport
);
1973 lpuart_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
1974 const struct ktermios
*old
)
1976 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1977 unsigned long flags
;
1978 unsigned char cr1
, old_cr1
, old_cr2
, cr3
, cr4
, bdh
, modem
;
1980 unsigned int old_csize
= old
? old
->c_cflag
& CSIZE
: CS8
;
1981 unsigned int sbr
, brfa
;
1983 cr1
= old_cr1
= readb(sport
->port
.membase
+ UARTCR1
);
1984 old_cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1985 cr3
= readb(sport
->port
.membase
+ UARTCR3
);
1986 cr4
= readb(sport
->port
.membase
+ UARTCR4
);
1987 bdh
= readb(sport
->port
.membase
+ UARTBDH
);
1988 modem
= readb(sport
->port
.membase
+ UARTMODEM
);
1990 * only support CS8 and CS7, and for CS7 must enable PE.
1997 while ((termios
->c_cflag
& CSIZE
) != CS8
&&
1998 (termios
->c_cflag
& CSIZE
) != CS7
) {
1999 termios
->c_cflag
&= ~CSIZE
;
2000 termios
->c_cflag
|= old_csize
;
2004 if ((termios
->c_cflag
& CSIZE
) == CS8
||
2005 (termios
->c_cflag
& CSIZE
) == CS7
)
2006 cr1
= old_cr1
& ~UARTCR1_M
;
2008 if (termios
->c_cflag
& CMSPAR
) {
2009 if ((termios
->c_cflag
& CSIZE
) != CS8
) {
2010 termios
->c_cflag
&= ~CSIZE
;
2011 termios
->c_cflag
|= CS8
;
2017 * When auto RS-485 RTS mode is enabled,
2018 * hardware flow control need to be disabled.
2020 if (sport
->port
.rs485
.flags
& SER_RS485_ENABLED
)
2021 termios
->c_cflag
&= ~CRTSCTS
;
2023 if (termios
->c_cflag
& CRTSCTS
)
2024 modem
|= UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
;
2026 modem
&= ~(UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
2028 termios
->c_cflag
&= ~CSTOPB
;
2030 /* parity must be enabled when CS7 to match 8-bits format */
2031 if ((termios
->c_cflag
& CSIZE
) == CS7
)
2032 termios
->c_cflag
|= PARENB
;
2034 if (termios
->c_cflag
& PARENB
) {
2035 if (termios
->c_cflag
& CMSPAR
) {
2037 if (termios
->c_cflag
& PARODD
)
2043 if ((termios
->c_cflag
& CSIZE
) == CS8
)
2045 if (termios
->c_cflag
& PARODD
)
2054 /* ask the core to calculate the divisor */
2055 baud
= uart_get_baud_rate(port
, termios
, old
, 50, port
->uartclk
/ 16);
2058 * Need to update the Ring buffer length according to the selected
2059 * baud rate and restart Rx DMA path.
2061 * Since timer function acqures sport->port.lock, need to stop before
2062 * acquring same lock because otherwise del_timer_sync() can deadlock.
2064 if (old
&& sport
->lpuart_dma_rx_use
)
2065 lpuart_dma_rx_free(&sport
->port
);
2067 uart_port_lock_irqsave(&sport
->port
, &flags
);
2069 sport
->port
.read_status_mask
= 0;
2070 if (termios
->c_iflag
& INPCK
)
2071 sport
->port
.read_status_mask
|= UARTSR1_FE
| UARTSR1_PE
;
2072 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
2073 sport
->port
.read_status_mask
|= UARTSR1_FE
;
2075 /* characters to ignore */
2076 sport
->port
.ignore_status_mask
= 0;
2077 if (termios
->c_iflag
& IGNPAR
)
2078 sport
->port
.ignore_status_mask
|= UARTSR1_PE
;
2079 if (termios
->c_iflag
& IGNBRK
) {
2080 sport
->port
.ignore_status_mask
|= UARTSR1_FE
;
2082 * if we're ignoring parity and break indicators,
2083 * ignore overruns too (for real raw support).
2085 if (termios
->c_iflag
& IGNPAR
)
2086 sport
->port
.ignore_status_mask
|= UARTSR1_OR
;
2089 /* update the per-port timeout */
2090 uart_update_timeout(port
, termios
->c_cflag
, baud
);
2092 /* wait transmit engin complete */
2093 lpuart_wait_bit_set(&sport
->port
, UARTSR1
, UARTSR1_TC
);
2095 /* disable transmit and receive */
2096 writeb(old_cr2
& ~(UARTCR2_TE
| UARTCR2_RE
),
2097 sport
->port
.membase
+ UARTCR2
);
2099 sbr
= sport
->port
.uartclk
/ (16 * baud
);
2100 brfa
= ((sport
->port
.uartclk
- (16 * sbr
* baud
)) * 2) / baud
;
2101 bdh
&= ~UARTBDH_SBR_MASK
;
2102 bdh
|= (sbr
>> 8) & 0x1F;
2103 cr4
&= ~UARTCR4_BRFA_MASK
;
2104 brfa
&= UARTCR4_BRFA_MASK
;
2105 writeb(cr4
| brfa
, sport
->port
.membase
+ UARTCR4
);
2106 writeb(bdh
, sport
->port
.membase
+ UARTBDH
);
2107 writeb(sbr
& 0xFF, sport
->port
.membase
+ UARTBDL
);
2108 writeb(cr3
, sport
->port
.membase
+ UARTCR3
);
2109 writeb(cr1
, sport
->port
.membase
+ UARTCR1
);
2110 writeb(modem
, sport
->port
.membase
+ UARTMODEM
);
2112 /* restore control register */
2113 writeb(old_cr2
, sport
->port
.membase
+ UARTCR2
);
2115 if (old
&& sport
->lpuart_dma_rx_use
) {
2116 if (!lpuart_start_rx_dma(sport
))
2117 rx_dma_timer_init(sport
);
2119 sport
->lpuart_dma_rx_use
= false;
2122 uart_port_unlock_irqrestore(&sport
->port
, flags
);
2125 static void __lpuart32_serial_setbrg(struct uart_port
*port
,
2126 unsigned int baudrate
, bool use_rx_dma
,
2129 u32 sbr
, osr
, baud_diff
, tmp_osr
, tmp_sbr
, tmp_diff
, tmp
;
2130 u32 clk
= port
->uartclk
;
2133 * The idea is to use the best OSR (over-sampling rate) possible.
2134 * Note, OSR is typically hard-set to 16 in other LPUART instantiations.
2135 * Loop to find the best OSR value possible, one that generates minimum
2136 * baud_diff iterate through the rest of the supported values of OSR.
2138 * Calculation Formula:
2139 * Baud Rate = baud clock / ((OSR+1) × SBR)
2141 baud_diff
= baudrate
;
2145 for (tmp_osr
= 4; tmp_osr
<= 32; tmp_osr
++) {
2146 /* calculate the temporary sbr value */
2147 tmp_sbr
= (clk
/ (baudrate
* tmp_osr
));
2152 * calculate the baud rate difference based on the temporary
2153 * osr and sbr values
2155 tmp_diff
= clk
/ (tmp_osr
* tmp_sbr
) - baudrate
;
2157 /* select best values between sbr and sbr+1 */
2158 tmp
= clk
/ (tmp_osr
* (tmp_sbr
+ 1));
2159 if (tmp_diff
> (baudrate
- tmp
)) {
2160 tmp_diff
= baudrate
- tmp
;
2164 if (tmp_sbr
> UARTBAUD_SBR_MASK
)
2167 if (tmp_diff
<= baud_diff
) {
2168 baud_diff
= tmp_diff
;
2177 /* handle buadrate outside acceptable rate */
2178 if (baud_diff
> ((baudrate
/ 100) * 3))
2180 "unacceptable baud rate difference of more than 3%%\n");
2182 tmp
= lpuart32_read(port
, UARTBAUD
);
2184 if ((osr
> 3) && (osr
< 8))
2185 tmp
|= UARTBAUD_BOTHEDGE
;
2187 tmp
&= ~(UARTBAUD_OSR_MASK
<< UARTBAUD_OSR_SHIFT
);
2188 tmp
|= ((osr
-1) & UARTBAUD_OSR_MASK
) << UARTBAUD_OSR_SHIFT
;
2190 tmp
&= ~UARTBAUD_SBR_MASK
;
2191 tmp
|= sbr
& UARTBAUD_SBR_MASK
;
2194 tmp
&= ~UARTBAUD_RDMAE
;
2196 tmp
&= ~UARTBAUD_TDMAE
;
2198 lpuart32_write(port
, tmp
, UARTBAUD
);
2201 static void lpuart32_serial_setbrg(struct lpuart_port
*sport
,
2202 unsigned int baudrate
)
2204 __lpuart32_serial_setbrg(&sport
->port
, baudrate
,
2205 sport
->lpuart_dma_rx_use
,
2206 sport
->lpuart_dma_tx_use
);
2211 lpuart32_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
2212 const struct ktermios
*old
)
2214 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
2215 unsigned long flags
;
2216 unsigned long ctrl
, old_ctrl
, bd
, modem
;
2218 unsigned int old_csize
= old
? old
->c_cflag
& CSIZE
: CS8
;
2220 ctrl
= old_ctrl
= lpuart32_read(&sport
->port
, UARTCTRL
);
2221 bd
= lpuart32_read(&sport
->port
, UARTBAUD
);
2222 modem
= lpuart32_read(&sport
->port
, UARTMODIR
);
2223 sport
->is_cs7
= false;
2225 * only support CS8 and CS7, and for CS7 must enable PE.
2232 while ((termios
->c_cflag
& CSIZE
) != CS8
&&
2233 (termios
->c_cflag
& CSIZE
) != CS7
) {
2234 termios
->c_cflag
&= ~CSIZE
;
2235 termios
->c_cflag
|= old_csize
;
2239 if ((termios
->c_cflag
& CSIZE
) == CS8
||
2240 (termios
->c_cflag
& CSIZE
) == CS7
)
2241 ctrl
= old_ctrl
& ~UARTCTRL_M
;
2243 if (termios
->c_cflag
& CMSPAR
) {
2244 if ((termios
->c_cflag
& CSIZE
) != CS8
) {
2245 termios
->c_cflag
&= ~CSIZE
;
2246 termios
->c_cflag
|= CS8
;
2252 * When auto RS-485 RTS mode is enabled,
2253 * hardware flow control need to be disabled.
2255 if (sport
->port
.rs485
.flags
& SER_RS485_ENABLED
)
2256 termios
->c_cflag
&= ~CRTSCTS
;
2258 if (termios
->c_cflag
& CRTSCTS
)
2259 modem
|= UARTMODIR_RXRTSE
| UARTMODIR_TXCTSE
;
2261 modem
&= ~(UARTMODIR_RXRTSE
| UARTMODIR_TXCTSE
);
2263 if (termios
->c_cflag
& CSTOPB
)
2264 bd
|= UARTBAUD_SBNS
;
2266 bd
&= ~UARTBAUD_SBNS
;
2268 /* parity must be enabled when CS7 to match 8-bits format */
2269 if ((termios
->c_cflag
& CSIZE
) == CS7
)
2270 termios
->c_cflag
|= PARENB
;
2272 if ((termios
->c_cflag
& PARENB
)) {
2273 if (termios
->c_cflag
& CMSPAR
) {
2274 ctrl
&= ~UARTCTRL_PE
;
2277 ctrl
|= UARTCTRL_PE
;
2278 if ((termios
->c_cflag
& CSIZE
) == CS8
)
2280 if (termios
->c_cflag
& PARODD
)
2281 ctrl
|= UARTCTRL_PT
;
2283 ctrl
&= ~UARTCTRL_PT
;
2286 ctrl
&= ~UARTCTRL_PE
;
2289 /* ask the core to calculate the divisor */
2290 baud
= uart_get_baud_rate(port
, termios
, old
, 50, port
->uartclk
/ 4);
2293 * Need to update the Ring buffer length according to the selected
2294 * baud rate and restart Rx DMA path.
2296 * Since timer function acqures sport->port.lock, need to stop before
2297 * acquring same lock because otherwise del_timer_sync() can deadlock.
2299 if (old
&& sport
->lpuart_dma_rx_use
)
2300 lpuart_dma_rx_free(&sport
->port
);
2302 uart_port_lock_irqsave(&sport
->port
, &flags
);
2304 sport
->port
.read_status_mask
= 0;
2305 if (termios
->c_iflag
& INPCK
)
2306 sport
->port
.read_status_mask
|= UARTSTAT_FE
| UARTSTAT_PE
;
2307 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
2308 sport
->port
.read_status_mask
|= UARTSTAT_FE
;
2310 /* characters to ignore */
2311 sport
->port
.ignore_status_mask
= 0;
2312 if (termios
->c_iflag
& IGNPAR
)
2313 sport
->port
.ignore_status_mask
|= UARTSTAT_PE
;
2314 if (termios
->c_iflag
& IGNBRK
) {
2315 sport
->port
.ignore_status_mask
|= UARTSTAT_FE
;
2317 * if we're ignoring parity and break indicators,
2318 * ignore overruns too (for real raw support).
2320 if (termios
->c_iflag
& IGNPAR
)
2321 sport
->port
.ignore_status_mask
|= UARTSTAT_OR
;
2324 /* update the per-port timeout */
2325 uart_update_timeout(port
, termios
->c_cflag
, baud
);
2328 * LPUART Transmission Complete Flag may never be set while queuing a break
2329 * character, so skip waiting for transmission complete when UARTCTRL_SBK is
2332 if (!(old_ctrl
& UARTCTRL_SBK
)) {
2333 lpuart32_write(&sport
->port
, 0, UARTMODIR
);
2334 lpuart32_wait_bit_set(&sport
->port
, UARTSTAT
, UARTSTAT_TC
);
2337 /* disable transmit and receive */
2338 lpuart32_write(&sport
->port
, old_ctrl
& ~(UARTCTRL_TE
| UARTCTRL_RE
),
2341 lpuart32_write(&sport
->port
, bd
, UARTBAUD
);
2342 lpuart32_serial_setbrg(sport
, baud
);
2343 /* disable CTS before enabling UARTCTRL_TE to avoid pending idle preamble */
2344 lpuart32_write(&sport
->port
, modem
& ~UARTMODIR_TXCTSE
, UARTMODIR
);
2345 /* restore control register */
2346 lpuart32_write(&sport
->port
, ctrl
, UARTCTRL
);
2347 /* re-enable the CTS if needed */
2348 lpuart32_write(&sport
->port
, modem
, UARTMODIR
);
2350 if ((ctrl
& (UARTCTRL_PE
| UARTCTRL_M
)) == UARTCTRL_PE
)
2351 sport
->is_cs7
= true;
2353 if (old
&& sport
->lpuart_dma_rx_use
) {
2354 if (!lpuart_start_rx_dma(sport
))
2355 rx_dma_timer_init(sport
);
2357 sport
->lpuart_dma_rx_use
= false;
2360 uart_port_unlock_irqrestore(&sport
->port
, flags
);
2363 static const char *lpuart_type(struct uart_port
*port
)
2365 return "FSL_LPUART";
2368 static void lpuart_release_port(struct uart_port
*port
)
2373 static int lpuart_request_port(struct uart_port
*port
)
2378 /* configure/autoconfigure the port */
2379 static void lpuart_config_port(struct uart_port
*port
, int flags
)
2381 if (flags
& UART_CONFIG_TYPE
)
2382 port
->type
= PORT_LPUART
;
2385 static int lpuart_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
2389 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_LPUART
)
2391 if (port
->irq
!= ser
->irq
)
2393 if (ser
->io_type
!= UPIO_MEM
)
2395 if (port
->uartclk
/ 16 != ser
->baud_base
)
2397 if (port
->iobase
!= ser
->port
)
2404 static const struct uart_ops lpuart_pops
= {
2405 .tx_empty
= lpuart_tx_empty
,
2406 .set_mctrl
= lpuart_set_mctrl
,
2407 .get_mctrl
= lpuart_get_mctrl
,
2408 .stop_tx
= lpuart_stop_tx
,
2409 .start_tx
= lpuart_start_tx
,
2410 .stop_rx
= lpuart_stop_rx
,
2411 .break_ctl
= lpuart_break_ctl
,
2412 .startup
= lpuart_startup
,
2413 .shutdown
= lpuart_shutdown
,
2414 .set_termios
= lpuart_set_termios
,
2415 .pm
= lpuart_uart_pm
,
2416 .type
= lpuart_type
,
2417 .request_port
= lpuart_request_port
,
2418 .release_port
= lpuart_release_port
,
2419 .config_port
= lpuart_config_port
,
2420 .verify_port
= lpuart_verify_port
,
2421 .flush_buffer
= lpuart_flush_buffer
,
2422 #if defined(CONFIG_CONSOLE_POLL)
2423 .poll_init
= lpuart_poll_init
,
2424 .poll_get_char
= lpuart_poll_get_char
,
2425 .poll_put_char
= lpuart_poll_put_char
,
2429 static const struct uart_ops lpuart32_pops
= {
2430 .tx_empty
= lpuart32_tx_empty
,
2431 .set_mctrl
= lpuart32_set_mctrl
,
2432 .get_mctrl
= lpuart32_get_mctrl
,
2433 .stop_tx
= lpuart32_stop_tx
,
2434 .start_tx
= lpuart32_start_tx
,
2435 .stop_rx
= lpuart32_stop_rx
,
2436 .break_ctl
= lpuart32_break_ctl
,
2437 .startup
= lpuart32_startup
,
2438 .shutdown
= lpuart32_shutdown
,
2439 .set_termios
= lpuart32_set_termios
,
2440 .pm
= lpuart_uart_pm
,
2441 .type
= lpuart_type
,
2442 .request_port
= lpuart_request_port
,
2443 .release_port
= lpuart_release_port
,
2444 .config_port
= lpuart_config_port
,
2445 .verify_port
= lpuart_verify_port
,
2446 .flush_buffer
= lpuart_flush_buffer
,
2447 #if defined(CONFIG_CONSOLE_POLL)
2448 .poll_init
= lpuart32_poll_init
,
2449 .poll_get_char
= lpuart32_poll_get_char
,
2450 .poll_put_char
= lpuart32_poll_put_char
,
2454 static struct lpuart_port
*lpuart_ports
[UART_NR
];
2456 #ifdef CONFIG_SERIAL_FSL_LPUART_CONSOLE
2457 static void lpuart_console_putchar(struct uart_port
*port
, unsigned char ch
)
2459 lpuart_wait_bit_set(port
, UARTSR1
, UARTSR1_TDRE
);
2460 writeb(ch
, port
->membase
+ UARTDR
);
2463 static void lpuart32_console_putchar(struct uart_port
*port
, unsigned char ch
)
2465 lpuart32_wait_bit_set(port
, UARTSTAT
, UARTSTAT_TDRE
);
2466 lpuart32_write(port
, ch
, UARTDATA
);
2470 lpuart_console_write(struct console
*co
, const char *s
, unsigned int count
)
2472 struct lpuart_port
*sport
= lpuart_ports
[co
->index
];
2473 unsigned char old_cr2
, cr2
;
2474 unsigned long flags
;
2477 if (oops_in_progress
)
2478 locked
= uart_port_trylock_irqsave(&sport
->port
, &flags
);
2480 uart_port_lock_irqsave(&sport
->port
, &flags
);
2482 /* first save CR2 and then disable interrupts */
2483 cr2
= old_cr2
= readb(sport
->port
.membase
+ UARTCR2
);
2484 cr2
|= UARTCR2_TE
| UARTCR2_RE
;
2485 cr2
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_RIE
);
2486 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
2488 uart_console_write(&sport
->port
, s
, count
, lpuart_console_putchar
);
2490 /* wait for transmitter finish complete and restore CR2 */
2491 lpuart_wait_bit_set(&sport
->port
, UARTSR1
, UARTSR1_TC
);
2493 writeb(old_cr2
, sport
->port
.membase
+ UARTCR2
);
2496 uart_port_unlock_irqrestore(&sport
->port
, flags
);
2500 lpuart32_console_write(struct console
*co
, const char *s
, unsigned int count
)
2502 struct lpuart_port
*sport
= lpuart_ports
[co
->index
];
2503 unsigned long old_cr
, cr
;
2504 unsigned long flags
;
2507 if (oops_in_progress
)
2508 locked
= uart_port_trylock_irqsave(&sport
->port
, &flags
);
2510 uart_port_lock_irqsave(&sport
->port
, &flags
);
2512 /* first save CR2 and then disable interrupts */
2513 cr
= old_cr
= lpuart32_read(&sport
->port
, UARTCTRL
);
2514 cr
|= UARTCTRL_TE
| UARTCTRL_RE
;
2515 cr
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_RIE
);
2516 lpuart32_write(&sport
->port
, cr
, UARTCTRL
);
2518 uart_console_write(&sport
->port
, s
, count
, lpuart32_console_putchar
);
2520 /* wait for transmitter finish complete and restore CR2 */
2521 lpuart32_wait_bit_set(&sport
->port
, UARTSTAT
, UARTSTAT_TC
);
2523 lpuart32_write(&sport
->port
, old_cr
, UARTCTRL
);
2526 uart_port_unlock_irqrestore(&sport
->port
, flags
);
2530 * if the port was already initialised (eg, by a boot loader),
2531 * try to determine the current setup.
2534 lpuart_console_get_options(struct lpuart_port
*sport
, int *baud
,
2535 int *parity
, int *bits
)
2537 unsigned char cr
, bdh
, bdl
, brfa
;
2538 unsigned int sbr
, uartclk
, baud_raw
;
2540 cr
= readb(sport
->port
.membase
+ UARTCR2
);
2541 cr
&= UARTCR2_TE
| UARTCR2_RE
;
2545 /* ok, the port was enabled */
2547 cr
= readb(sport
->port
.membase
+ UARTCR1
);
2550 if (cr
& UARTCR1_PE
) {
2551 if (cr
& UARTCR1_PT
)
2562 bdh
= readb(sport
->port
.membase
+ UARTBDH
);
2563 bdh
&= UARTBDH_SBR_MASK
;
2564 bdl
= readb(sport
->port
.membase
+ UARTBDL
);
2568 brfa
= readb(sport
->port
.membase
+ UARTCR4
);
2569 brfa
&= UARTCR4_BRFA_MASK
;
2571 uartclk
= lpuart_get_baud_clk_rate(sport
);
2573 * baud = mod_clk/(16*(sbr[13]+(brfa)/32)
2575 baud_raw
= uartclk
/ (16 * (sbr
+ brfa
/ 32));
2577 if (*baud
!= baud_raw
)
2578 dev_info(sport
->port
.dev
, "Serial: Console lpuart rounded baud rate"
2579 "from %d to %d\n", baud_raw
, *baud
);
2583 lpuart32_console_get_options(struct lpuart_port
*sport
, int *baud
,
2584 int *parity
, int *bits
)
2586 unsigned long cr
, bd
;
2587 unsigned int sbr
, uartclk
, baud_raw
;
2589 cr
= lpuart32_read(&sport
->port
, UARTCTRL
);
2590 cr
&= UARTCTRL_TE
| UARTCTRL_RE
;
2594 /* ok, the port was enabled */
2596 cr
= lpuart32_read(&sport
->port
, UARTCTRL
);
2599 if (cr
& UARTCTRL_PE
) {
2600 if (cr
& UARTCTRL_PT
)
2606 if (cr
& UARTCTRL_M
)
2611 bd
= lpuart32_read(&sport
->port
, UARTBAUD
);
2612 bd
&= UARTBAUD_SBR_MASK
;
2617 uartclk
= lpuart_get_baud_clk_rate(sport
);
2619 * baud = mod_clk/(16*(sbr[13]+(brfa)/32)
2621 baud_raw
= uartclk
/ (16 * sbr
);
2623 if (*baud
!= baud_raw
)
2624 dev_info(sport
->port
.dev
, "Serial: Console lpuart rounded baud rate"
2625 "from %d to %d\n", baud_raw
, *baud
);
2628 static int __init
lpuart_console_setup(struct console
*co
, char *options
)
2630 struct lpuart_port
*sport
;
2637 * check whether an invalid uart number has been specified, and
2638 * if so, search for the first available port that does have
2641 if (co
->index
== -1 || co
->index
>= ARRAY_SIZE(lpuart_ports
))
2644 sport
= lpuart_ports
[co
->index
];
2649 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
2651 if (lpuart_is_32(sport
))
2652 lpuart32_console_get_options(sport
, &baud
, &parity
, &bits
);
2654 lpuart_console_get_options(sport
, &baud
, &parity
, &bits
);
2656 if (lpuart_is_32(sport
))
2657 lpuart32_setup_watermark(sport
);
2659 lpuart_setup_watermark(sport
);
2661 return uart_set_options(&sport
->port
, co
, baud
, parity
, bits
, flow
);
2664 static struct uart_driver lpuart_reg
;
2665 static struct console lpuart_console
= {
2667 .write
= lpuart_console_write
,
2668 .device
= uart_console_device
,
2669 .setup
= lpuart_console_setup
,
2670 .flags
= CON_PRINTBUFFER
,
2672 .data
= &lpuart_reg
,
2675 static struct console lpuart32_console
= {
2677 .write
= lpuart32_console_write
,
2678 .device
= uart_console_device
,
2679 .setup
= lpuart_console_setup
,
2680 .flags
= CON_PRINTBUFFER
,
2682 .data
= &lpuart_reg
,
2685 static void lpuart_early_write(struct console
*con
, const char *s
, unsigned n
)
2687 struct earlycon_device
*dev
= con
->data
;
2689 uart_console_write(&dev
->port
, s
, n
, lpuart_console_putchar
);
2692 static void lpuart32_early_write(struct console
*con
, const char *s
, unsigned n
)
2694 struct earlycon_device
*dev
= con
->data
;
2696 uart_console_write(&dev
->port
, s
, n
, lpuart32_console_putchar
);
2699 static int __init
lpuart_early_console_setup(struct earlycon_device
*device
,
2702 if (!device
->port
.membase
)
2705 device
->con
->write
= lpuart_early_write
;
2709 static int __init
lpuart32_early_console_setup(struct earlycon_device
*device
,
2712 if (!device
->port
.membase
)
2715 if (device
->port
.iotype
!= UPIO_MEM32
)
2716 device
->port
.iotype
= UPIO_MEM32BE
;
2718 device
->con
->write
= lpuart32_early_write
;
2722 static int __init
ls1028a_early_console_setup(struct earlycon_device
*device
,
2727 if (!device
->port
.membase
)
2730 device
->port
.iotype
= UPIO_MEM32
;
2731 device
->con
->write
= lpuart32_early_write
;
2733 /* set the baudrate */
2734 if (device
->port
.uartclk
&& device
->baud
)
2735 __lpuart32_serial_setbrg(&device
->port
, device
->baud
,
2738 /* enable transmitter */
2739 cr
= lpuart32_read(&device
->port
, UARTCTRL
);
2741 lpuart32_write(&device
->port
, cr
, UARTCTRL
);
2746 static int __init
lpuart32_imx_early_console_setup(struct earlycon_device
*device
,
2749 if (!device
->port
.membase
)
2752 device
->port
.iotype
= UPIO_MEM32
;
2753 device
->port
.membase
+= IMX_REG_OFF
;
2754 device
->con
->write
= lpuart32_early_write
;
2758 OF_EARLYCON_DECLARE(lpuart
, "fsl,vf610-lpuart", lpuart_early_console_setup
);
2759 OF_EARLYCON_DECLARE(lpuart32
, "fsl,ls1021a-lpuart", lpuart32_early_console_setup
);
2760 OF_EARLYCON_DECLARE(lpuart32
, "fsl,ls1028a-lpuart", ls1028a_early_console_setup
);
2761 OF_EARLYCON_DECLARE(lpuart32
, "fsl,imx7ulp-lpuart", lpuart32_imx_early_console_setup
);
2762 OF_EARLYCON_DECLARE(lpuart32
, "fsl,imx8ulp-lpuart", lpuart32_imx_early_console_setup
);
2763 OF_EARLYCON_DECLARE(lpuart32
, "fsl,imx8qxp-lpuart", lpuart32_imx_early_console_setup
);
2764 OF_EARLYCON_DECLARE(lpuart32
, "fsl,imxrt1050-lpuart", lpuart32_imx_early_console_setup
);
2765 EARLYCON_DECLARE(lpuart
, lpuart_early_console_setup
);
2766 EARLYCON_DECLARE(lpuart32
, lpuart32_early_console_setup
);
2768 #define LPUART_CONSOLE (&lpuart_console)
2769 #define LPUART32_CONSOLE (&lpuart32_console)
2771 #define LPUART_CONSOLE NULL
2772 #define LPUART32_CONSOLE NULL
2775 static struct uart_driver lpuart_reg
= {
2776 .owner
= THIS_MODULE
,
2777 .driver_name
= DRIVER_NAME
,
2778 .dev_name
= DEV_NAME
,
2779 .nr
= ARRAY_SIZE(lpuart_ports
),
2780 .cons
= LPUART_CONSOLE
,
2783 static const struct serial_rs485 lpuart_rs485_supported
= {
2784 .flags
= SER_RS485_ENABLED
| SER_RS485_RTS_ON_SEND
| SER_RS485_RTS_AFTER_SEND
,
2785 /* delay_rts_* and RX_DURING_TX are not supported */
2788 static int lpuart_global_reset(struct lpuart_port
*sport
)
2790 struct uart_port
*port
= &sport
->port
;
2791 void __iomem
*global_addr
;
2792 unsigned long ctrl
, bd
;
2793 unsigned int val
= 0;
2796 ret
= clk_prepare_enable(sport
->ipg_clk
);
2798 dev_err(sport
->port
.dev
, "failed to enable uart ipg clk: %d\n", ret
);
2802 if (is_imx7ulp_lpuart(sport
) || is_imx8ulp_lpuart(sport
) || is_imx8qxp_lpuart(sport
)) {
2804 * If the transmitter is used by earlycon, wait for transmit engine to
2805 * complete and then reset.
2807 ctrl
= lpuart32_read(port
, UARTCTRL
);
2808 if (ctrl
& UARTCTRL_TE
) {
2809 bd
= lpuart32_read(&sport
->port
, UARTBAUD
);
2810 if (read_poll_timeout(lpuart32_tx_empty
, val
, val
, 1, 100000, false,
2812 dev_warn(sport
->port
.dev
,
2813 "timeout waiting for transmit engine to complete\n");
2814 clk_disable_unprepare(sport
->ipg_clk
);
2819 global_addr
= port
->membase
+ UART_GLOBAL
- IMX_REG_OFF
;
2820 writel(UART_GLOBAL_RST
, global_addr
);
2821 usleep_range(GLOBAL_RST_MIN_US
, GLOBAL_RST_MAX_US
);
2822 writel(0, global_addr
);
2823 usleep_range(GLOBAL_RST_MIN_US
, GLOBAL_RST_MAX_US
);
2825 /* Recover the transmitter for earlycon. */
2826 if (ctrl
& UARTCTRL_TE
) {
2827 lpuart32_write(port
, bd
, UARTBAUD
);
2828 lpuart32_write(port
, ctrl
, UARTCTRL
);
2832 clk_disable_unprepare(sport
->ipg_clk
);
2836 static int lpuart_probe(struct platform_device
*pdev
)
2838 const struct lpuart_soc_data
*sdata
= of_device_get_match_data(&pdev
->dev
);
2839 struct device_node
*np
= pdev
->dev
.of_node
;
2840 struct lpuart_port
*sport
;
2841 struct resource
*res
;
2842 irq_handler_t handler
;
2845 sport
= devm_kzalloc(&pdev
->dev
, sizeof(*sport
), GFP_KERNEL
);
2849 sport
->port
.membase
= devm_platform_get_and_ioremap_resource(pdev
, 0, &res
);
2850 if (IS_ERR(sport
->port
.membase
))
2851 return PTR_ERR(sport
->port
.membase
);
2853 sport
->port
.membase
+= sdata
->reg_off
;
2854 sport
->port
.mapbase
= res
->start
+ sdata
->reg_off
;
2855 sport
->port
.dev
= &pdev
->dev
;
2856 sport
->port
.type
= PORT_LPUART
;
2857 sport
->devtype
= sdata
->devtype
;
2858 sport
->rx_watermark
= sdata
->rx_watermark
;
2859 sport
->dma_idle_int
= is_imx7ulp_lpuart(sport
) || is_imx8ulp_lpuart(sport
) ||
2860 is_imx8qxp_lpuart(sport
);
2861 ret
= platform_get_irq(pdev
, 0);
2864 sport
->port
.irq
= ret
;
2865 sport
->port
.iotype
= sdata
->iotype
;
2866 if (lpuart_is_32(sport
))
2867 sport
->port
.ops
= &lpuart32_pops
;
2869 sport
->port
.ops
= &lpuart_pops
;
2870 sport
->port
.has_sysrq
= IS_ENABLED(CONFIG_SERIAL_FSL_LPUART_CONSOLE
);
2871 sport
->port
.flags
= UPF_BOOT_AUTOCONF
;
2873 if (lpuart_is_32(sport
))
2874 sport
->port
.rs485_config
= lpuart32_config_rs485
;
2876 sport
->port
.rs485_config
= lpuart_config_rs485
;
2877 sport
->port
.rs485_supported
= lpuart_rs485_supported
;
2879 sport
->ipg_clk
= devm_clk_get(&pdev
->dev
, "ipg");
2880 if (IS_ERR(sport
->ipg_clk
)) {
2881 ret
= PTR_ERR(sport
->ipg_clk
);
2882 return dev_err_probe(&pdev
->dev
, ret
, "failed to get uart ipg clk\n");
2885 sport
->baud_clk
= NULL
;
2886 if (is_imx8qxp_lpuart(sport
)) {
2887 sport
->baud_clk
= devm_clk_get(&pdev
->dev
, "baud");
2888 if (IS_ERR(sport
->baud_clk
)) {
2889 ret
= PTR_ERR(sport
->baud_clk
);
2890 return dev_err_probe(&pdev
->dev
, ret
, "failed to get uart baud clk\n");
2894 ret
= of_alias_get_id(np
, "serial");
2896 dev_err(&pdev
->dev
, "failed to get alias id, errno %d\n", ret
);
2899 if (ret
>= ARRAY_SIZE(lpuart_ports
)) {
2900 dev_err(&pdev
->dev
, "serial%d out of range\n", ret
);
2903 sport
->port
.line
= ret
;
2905 ret
= lpuart_enable_clks(sport
);
2908 sport
->port
.uartclk
= lpuart_get_baud_clk_rate(sport
);
2910 lpuart_ports
[sport
->port
.line
] = sport
;
2912 platform_set_drvdata(pdev
, &sport
->port
);
2914 if (lpuart_is_32(sport
)) {
2915 lpuart_reg
.cons
= LPUART32_CONSOLE
;
2916 handler
= lpuart32_int
;
2918 lpuart_reg
.cons
= LPUART_CONSOLE
;
2919 handler
= lpuart_int
;
2922 pm_runtime_use_autosuspend(&pdev
->dev
);
2923 pm_runtime_set_autosuspend_delay(&pdev
->dev
, UART_AUTOSUSPEND_TIMEOUT
);
2924 pm_runtime_set_active(&pdev
->dev
);
2925 pm_runtime_enable(&pdev
->dev
);
2926 pm_runtime_mark_last_busy(&pdev
->dev
);
2928 ret
= lpuart_global_reset(sport
);
2932 ret
= uart_get_rs485_mode(&sport
->port
);
2934 goto failed_get_rs485
;
2936 ret
= uart_add_one_port(&lpuart_reg
, &sport
->port
);
2938 goto failed_attach_port
;
2940 ret
= devm_request_irq(&pdev
->dev
, sport
->port
.irq
, handler
, 0,
2941 DRIVER_NAME
, sport
);
2943 goto failed_irq_request
;
2948 uart_remove_one_port(&lpuart_reg
, &sport
->port
);
2952 pm_runtime_disable(&pdev
->dev
);
2953 pm_runtime_set_suspended(&pdev
->dev
);
2954 pm_runtime_dont_use_autosuspend(&pdev
->dev
);
2955 lpuart_disable_clks(sport
);
2959 static void lpuart_remove(struct platform_device
*pdev
)
2961 struct lpuart_port
*sport
= platform_get_drvdata(pdev
);
2963 uart_remove_one_port(&lpuart_reg
, &sport
->port
);
2965 lpuart_disable_clks(sport
);
2967 if (sport
->dma_tx_chan
)
2968 dma_release_channel(sport
->dma_tx_chan
);
2970 if (sport
->dma_rx_chan
)
2971 dma_release_channel(sport
->dma_rx_chan
);
2973 pm_runtime_disable(&pdev
->dev
);
2974 pm_runtime_set_suspended(&pdev
->dev
);
2975 pm_runtime_dont_use_autosuspend(&pdev
->dev
);
2978 static int lpuart_runtime_suspend(struct device
*dev
)
2980 struct platform_device
*pdev
= to_platform_device(dev
);
2981 struct lpuart_port
*sport
= platform_get_drvdata(pdev
);
2983 lpuart_disable_clks(sport
);
2988 static int lpuart_runtime_resume(struct device
*dev
)
2990 struct platform_device
*pdev
= to_platform_device(dev
);
2991 struct lpuart_port
*sport
= platform_get_drvdata(pdev
);
2993 return lpuart_enable_clks(sport
);
2996 static void serial_lpuart_enable_wakeup(struct lpuart_port
*sport
, bool on
)
2998 unsigned int val
, baud
;
3000 if (lpuart_is_32(sport
)) {
3001 val
= lpuart32_read(&sport
->port
, UARTCTRL
);
3002 baud
= lpuart32_read(&sport
->port
, UARTBAUD
);
3004 /* set rx_watermark to 0 in wakeup source mode */
3005 lpuart32_write(&sport
->port
, 0, UARTWATER
);
3006 val
|= UARTCTRL_RIE
;
3007 /* clear RXEDGIF flag before enable RXEDGIE interrupt */
3008 lpuart32_write(&sport
->port
, UARTSTAT_RXEDGIF
, UARTSTAT
);
3009 baud
|= UARTBAUD_RXEDGIE
;
3011 val
&= ~UARTCTRL_RIE
;
3012 baud
&= ~UARTBAUD_RXEDGIE
;
3014 lpuart32_write(&sport
->port
, val
, UARTCTRL
);
3015 lpuart32_write(&sport
->port
, baud
, UARTBAUD
);
3017 val
= readb(sport
->port
.membase
+ UARTCR2
);
3021 val
&= ~UARTCR2_RIE
;
3022 writeb(val
, sport
->port
.membase
+ UARTCR2
);
3026 static bool lpuart_uport_is_active(struct lpuart_port
*sport
)
3028 struct tty_port
*port
= &sport
->port
.state
->port
;
3029 struct tty_struct
*tty
;
3030 struct device
*tty_dev
;
3033 tty
= tty_port_tty_get(port
);
3036 may_wake
= tty_dev
&& device_may_wakeup(tty_dev
);
3040 if ((tty_port_initialized(port
) && may_wake
) ||
3041 (!console_suspend_enabled
&& uart_console(&sport
->port
)))
3047 static int lpuart_suspend_noirq(struct device
*dev
)
3049 struct lpuart_port
*sport
= dev_get_drvdata(dev
);
3050 bool irq_wake
= irqd_is_wakeup_set(irq_get_irq_data(sport
->port
.irq
));
3052 if (lpuart_uport_is_active(sport
))
3053 serial_lpuart_enable_wakeup(sport
, !!irq_wake
);
3055 pinctrl_pm_select_sleep_state(dev
);
3060 static int lpuart_resume_noirq(struct device
*dev
)
3062 struct lpuart_port
*sport
= dev_get_drvdata(dev
);
3065 pinctrl_pm_select_default_state(dev
);
3067 if (lpuart_uport_is_active(sport
)) {
3068 serial_lpuart_enable_wakeup(sport
, false);
3070 /* clear the wakeup flags */
3071 if (lpuart_is_32(sport
)) {
3072 val
= lpuart32_read(&sport
->port
, UARTSTAT
);
3073 lpuart32_write(&sport
->port
, val
, UARTSTAT
);
3080 static int lpuart_suspend(struct device
*dev
)
3082 struct lpuart_port
*sport
= dev_get_drvdata(dev
);
3083 unsigned long temp
, flags
;
3085 uart_suspend_port(&lpuart_reg
, &sport
->port
);
3087 if (lpuart_uport_is_active(sport
)) {
3088 uart_port_lock_irqsave(&sport
->port
, &flags
);
3089 if (lpuart_is_32(sport
)) {
3090 /* disable Rx/Tx and interrupts */
3091 temp
= lpuart32_read(&sport
->port
, UARTCTRL
);
3092 temp
&= ~(UARTCTRL_TE
| UARTCTRL_TIE
| UARTCTRL_TCIE
);
3093 lpuart32_write(&sport
->port
, temp
, UARTCTRL
);
3095 /* disable Rx/Tx and interrupts */
3096 temp
= readb(sport
->port
.membase
+ UARTCR2
);
3097 temp
&= ~(UARTCR2_TE
| UARTCR2_TIE
| UARTCR2_TCIE
);
3098 writeb(temp
, sport
->port
.membase
+ UARTCR2
);
3100 uart_port_unlock_irqrestore(&sport
->port
, flags
);
3102 if (sport
->lpuart_dma_rx_use
) {
3104 * EDMA driver during suspend will forcefully release any
3105 * non-idle DMA channels. If port wakeup is enabled or if port
3106 * is console port or 'no_console_suspend' is set the Rx DMA
3107 * cannot resume as expected, hence gracefully release the
3108 * Rx DMA path before suspend and start Rx DMA path on resume.
3110 lpuart_dma_rx_free(&sport
->port
);
3112 /* Disable Rx DMA to use UART port as wakeup source */
3113 uart_port_lock_irqsave(&sport
->port
, &flags
);
3114 if (lpuart_is_32(sport
)) {
3115 temp
= lpuart32_read(&sport
->port
, UARTBAUD
);
3116 lpuart32_write(&sport
->port
, temp
& ~UARTBAUD_RDMAE
,
3119 writeb(readb(sport
->port
.membase
+ UARTCR5
) &
3120 ~UARTCR5_RDMAS
, sport
->port
.membase
+ UARTCR5
);
3122 uart_port_unlock_irqrestore(&sport
->port
, flags
);
3125 if (sport
->lpuart_dma_tx_use
) {
3126 uart_port_lock_irqsave(&sport
->port
, &flags
);
3127 if (lpuart_is_32(sport
)) {
3128 temp
= lpuart32_read(&sport
->port
, UARTBAUD
);
3129 temp
&= ~UARTBAUD_TDMAE
;
3130 lpuart32_write(&sport
->port
, temp
, UARTBAUD
);
3132 temp
= readb(sport
->port
.membase
+ UARTCR5
);
3133 temp
&= ~UARTCR5_TDMAS
;
3134 writeb(temp
, sport
->port
.membase
+ UARTCR5
);
3136 uart_port_unlock_irqrestore(&sport
->port
, flags
);
3137 sport
->dma_tx_in_progress
= false;
3138 dmaengine_terminate_sync(sport
->dma_tx_chan
);
3140 } else if (pm_runtime_active(sport
->port
.dev
)) {
3141 lpuart_disable_clks(sport
);
3142 pm_runtime_disable(sport
->port
.dev
);
3143 pm_runtime_set_suspended(sport
->port
.dev
);
3149 static void lpuart_console_fixup(struct lpuart_port
*sport
)
3151 struct tty_port
*port
= &sport
->port
.state
->port
;
3152 struct uart_port
*uport
= &sport
->port
;
3153 struct ktermios termios
;
3155 /* i.MX7ULP enter VLLS mode that lpuart module power off and registers
3156 * all lost no matter the port is wakeup source.
3157 * For console port, console baud rate setting lost and print messy
3158 * log when enable the console port as wakeup source. To avoid the
3159 * issue happen, user should not enable uart port as wakeup source
3160 * in VLLS mode, or restore console setting here.
3162 if (is_imx7ulp_lpuart(sport
) && lpuart_uport_is_active(sport
) &&
3163 console_suspend_enabled
&& uart_console(&sport
->port
)) {
3165 mutex_lock(&port
->mutex
);
3166 memset(&termios
, 0, sizeof(struct ktermios
));
3167 termios
.c_cflag
= uport
->cons
->cflag
;
3168 if (port
->tty
&& termios
.c_cflag
== 0)
3169 termios
= port
->tty
->termios
;
3170 uport
->ops
->set_termios(uport
, &termios
, NULL
);
3171 mutex_unlock(&port
->mutex
);
3175 static int lpuart_resume(struct device
*dev
)
3177 struct lpuart_port
*sport
= dev_get_drvdata(dev
);
3180 if (lpuart_uport_is_active(sport
)) {
3181 if (lpuart_is_32(sport
))
3182 lpuart32_hw_setup(sport
);
3184 lpuart_hw_setup(sport
);
3185 } else if (pm_runtime_active(sport
->port
.dev
)) {
3186 ret
= lpuart_enable_clks(sport
);
3189 pm_runtime_set_active(sport
->port
.dev
);
3190 pm_runtime_enable(sport
->port
.dev
);
3193 lpuart_console_fixup(sport
);
3194 uart_resume_port(&lpuart_reg
, &sport
->port
);
3199 static const struct dev_pm_ops lpuart_pm_ops
= {
3200 RUNTIME_PM_OPS(lpuart_runtime_suspend
,
3201 lpuart_runtime_resume
, NULL
)
3202 NOIRQ_SYSTEM_SLEEP_PM_OPS(lpuart_suspend_noirq
,
3203 lpuart_resume_noirq
)
3204 SYSTEM_SLEEP_PM_OPS(lpuart_suspend
, lpuart_resume
)
3207 static struct platform_driver lpuart_driver
= {
3208 .probe
= lpuart_probe
,
3209 .remove_new
= lpuart_remove
,
3211 .name
= "fsl-lpuart",
3212 .of_match_table
= lpuart_dt_ids
,
3213 .pm
= pm_ptr(&lpuart_pm_ops
),
3217 static int __init
lpuart_serial_init(void)
3219 int ret
= uart_register_driver(&lpuart_reg
);
3224 ret
= platform_driver_register(&lpuart_driver
);
3226 uart_unregister_driver(&lpuart_reg
);
3231 static void __exit
lpuart_serial_exit(void)
3233 platform_driver_unregister(&lpuart_driver
);
3234 uart_unregister_driver(&lpuart_reg
);
3237 module_init(lpuart_serial_init
);
3238 module_exit(lpuart_serial_exit
);
3240 MODULE_DESCRIPTION("Freescale lpuart serial port driver");
3241 MODULE_LICENSE("GPL v2");