2 * Freescale lpuart serial port driver
4 * Copyright 2012-2014 Freescale Semiconductor, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #if defined(CONFIG_SERIAL_FSL_LPUART_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
16 #include <linux/clk.h>
17 #include <linux/console.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/dmaengine.h>
20 #include <linux/dmapool.h>
22 #include <linux/irq.h>
23 #include <linux/module.h>
25 #include <linux/of_device.h>
26 #include <linux/of_dma.h>
27 #include <linux/serial_core.h>
28 #include <linux/slab.h>
29 #include <linux/tty_flip.h>
31 /* All registers are 8-bit width */
41 #define UARTMODEM 0x0d
42 #define UARTPFIFO 0x10
43 #define UARTCFIFO 0x11
44 #define UARTSFIFO 0x12
45 #define UARTTWFIFO 0x13
46 #define UARTTCFIFO 0x14
47 #define UARTRWFIFO 0x15
49 #define UARTBDH_LBKDIE 0x80
50 #define UARTBDH_RXEDGIE 0x40
51 #define UARTBDH_SBR_MASK 0x1f
53 #define UARTCR1_LOOPS 0x80
54 #define UARTCR1_RSRC 0x20
55 #define UARTCR1_M 0x10
56 #define UARTCR1_WAKE 0x08
57 #define UARTCR1_ILT 0x04
58 #define UARTCR1_PE 0x02
59 #define UARTCR1_PT 0x01
61 #define UARTCR2_TIE 0x80
62 #define UARTCR2_TCIE 0x40
63 #define UARTCR2_RIE 0x20
64 #define UARTCR2_ILIE 0x10
65 #define UARTCR2_TE 0x08
66 #define UARTCR2_RE 0x04
67 #define UARTCR2_RWU 0x02
68 #define UARTCR2_SBK 0x01
70 #define UARTSR1_TDRE 0x80
71 #define UARTSR1_TC 0x40
72 #define UARTSR1_RDRF 0x20
73 #define UARTSR1_IDLE 0x10
74 #define UARTSR1_OR 0x08
75 #define UARTSR1_NF 0x04
76 #define UARTSR1_FE 0x02
77 #define UARTSR1_PE 0x01
79 #define UARTCR3_R8 0x80
80 #define UARTCR3_T8 0x40
81 #define UARTCR3_TXDIR 0x20
82 #define UARTCR3_TXINV 0x10
83 #define UARTCR3_ORIE 0x08
84 #define UARTCR3_NEIE 0x04
85 #define UARTCR3_FEIE 0x02
86 #define UARTCR3_PEIE 0x01
88 #define UARTCR4_MAEN1 0x80
89 #define UARTCR4_MAEN2 0x40
90 #define UARTCR4_M10 0x20
91 #define UARTCR4_BRFA_MASK 0x1f
92 #define UARTCR4_BRFA_OFF 0
94 #define UARTCR5_TDMAS 0x80
95 #define UARTCR5_RDMAS 0x20
97 #define UARTMODEM_RXRTSE 0x08
98 #define UARTMODEM_TXRTSPOL 0x04
99 #define UARTMODEM_TXRTSE 0x02
100 #define UARTMODEM_TXCTSE 0x01
102 #define UARTPFIFO_TXFE 0x80
103 #define UARTPFIFO_FIFOSIZE_MASK 0x7
104 #define UARTPFIFO_TXSIZE_OFF 4
105 #define UARTPFIFO_RXFE 0x08
106 #define UARTPFIFO_RXSIZE_OFF 0
108 #define UARTCFIFO_TXFLUSH 0x80
109 #define UARTCFIFO_RXFLUSH 0x40
110 #define UARTCFIFO_RXOFE 0x04
111 #define UARTCFIFO_TXOFE 0x02
112 #define UARTCFIFO_RXUFE 0x01
114 #define UARTSFIFO_TXEMPT 0x80
115 #define UARTSFIFO_RXEMPT 0x40
116 #define UARTSFIFO_RXOF 0x04
117 #define UARTSFIFO_TXOF 0x02
118 #define UARTSFIFO_RXUF 0x01
120 /* 32-bit register defination */
121 #define UARTBAUD 0x00
122 #define UARTSTAT 0x04
123 #define UARTCTRL 0x08
124 #define UARTDATA 0x0C
125 #define UARTMATCH 0x10
126 #define UARTMODIR 0x14
127 #define UARTFIFO 0x18
128 #define UARTWATER 0x1c
130 #define UARTBAUD_MAEN1 0x80000000
131 #define UARTBAUD_MAEN2 0x40000000
132 #define UARTBAUD_M10 0x20000000
133 #define UARTBAUD_TDMAE 0x00800000
134 #define UARTBAUD_RDMAE 0x00200000
135 #define UARTBAUD_MATCFG 0x00400000
136 #define UARTBAUD_BOTHEDGE 0x00020000
137 #define UARTBAUD_RESYNCDIS 0x00010000
138 #define UARTBAUD_LBKDIE 0x00008000
139 #define UARTBAUD_RXEDGIE 0x00004000
140 #define UARTBAUD_SBNS 0x00002000
141 #define UARTBAUD_SBR 0x00000000
142 #define UARTBAUD_SBR_MASK 0x1fff
144 #define UARTSTAT_LBKDIF 0x80000000
145 #define UARTSTAT_RXEDGIF 0x40000000
146 #define UARTSTAT_MSBF 0x20000000
147 #define UARTSTAT_RXINV 0x10000000
148 #define UARTSTAT_RWUID 0x08000000
149 #define UARTSTAT_BRK13 0x04000000
150 #define UARTSTAT_LBKDE 0x02000000
151 #define UARTSTAT_RAF 0x01000000
152 #define UARTSTAT_TDRE 0x00800000
153 #define UARTSTAT_TC 0x00400000
154 #define UARTSTAT_RDRF 0x00200000
155 #define UARTSTAT_IDLE 0x00100000
156 #define UARTSTAT_OR 0x00080000
157 #define UARTSTAT_NF 0x00040000
158 #define UARTSTAT_FE 0x00020000
159 #define UARTSTAT_PE 0x00010000
160 #define UARTSTAT_MA1F 0x00008000
161 #define UARTSTAT_M21F 0x00004000
163 #define UARTCTRL_R8T9 0x80000000
164 #define UARTCTRL_R9T8 0x40000000
165 #define UARTCTRL_TXDIR 0x20000000
166 #define UARTCTRL_TXINV 0x10000000
167 #define UARTCTRL_ORIE 0x08000000
168 #define UARTCTRL_NEIE 0x04000000
169 #define UARTCTRL_FEIE 0x02000000
170 #define UARTCTRL_PEIE 0x01000000
171 #define UARTCTRL_TIE 0x00800000
172 #define UARTCTRL_TCIE 0x00400000
173 #define UARTCTRL_RIE 0x00200000
174 #define UARTCTRL_ILIE 0x00100000
175 #define UARTCTRL_TE 0x00080000
176 #define UARTCTRL_RE 0x00040000
177 #define UARTCTRL_RWU 0x00020000
178 #define UARTCTRL_SBK 0x00010000
179 #define UARTCTRL_MA1IE 0x00008000
180 #define UARTCTRL_MA2IE 0x00004000
181 #define UARTCTRL_IDLECFG 0x00000100
182 #define UARTCTRL_LOOPS 0x00000080
183 #define UARTCTRL_DOZEEN 0x00000040
184 #define UARTCTRL_RSRC 0x00000020
185 #define UARTCTRL_M 0x00000010
186 #define UARTCTRL_WAKE 0x00000008
187 #define UARTCTRL_ILT 0x00000004
188 #define UARTCTRL_PE 0x00000002
189 #define UARTCTRL_PT 0x00000001
191 #define UARTDATA_NOISY 0x00008000
192 #define UARTDATA_PARITYE 0x00004000
193 #define UARTDATA_FRETSC 0x00002000
194 #define UARTDATA_RXEMPT 0x00001000
195 #define UARTDATA_IDLINE 0x00000800
196 #define UARTDATA_MASK 0x3ff
198 #define UARTMODIR_IREN 0x00020000
199 #define UARTMODIR_TXCTSSRC 0x00000020
200 #define UARTMODIR_TXCTSC 0x00000010
201 #define UARTMODIR_RXRTSE 0x00000008
202 #define UARTMODIR_TXRTSPOL 0x00000004
203 #define UARTMODIR_TXRTSE 0x00000002
204 #define UARTMODIR_TXCTSE 0x00000001
206 #define UARTFIFO_TXEMPT 0x00800000
207 #define UARTFIFO_RXEMPT 0x00400000
208 #define UARTFIFO_TXOF 0x00020000
209 #define UARTFIFO_RXUF 0x00010000
210 #define UARTFIFO_TXFLUSH 0x00008000
211 #define UARTFIFO_RXFLUSH 0x00004000
212 #define UARTFIFO_TXOFE 0x00000200
213 #define UARTFIFO_RXUFE 0x00000100
214 #define UARTFIFO_TXFE 0x00000080
215 #define UARTFIFO_FIFOSIZE_MASK 0x7
216 #define UARTFIFO_TXSIZE_OFF 4
217 #define UARTFIFO_RXFE 0x00000008
218 #define UARTFIFO_RXSIZE_OFF 0
220 #define UARTWATER_COUNT_MASK 0xff
221 #define UARTWATER_TXCNT_OFF 8
222 #define UARTWATER_RXCNT_OFF 24
223 #define UARTWATER_WATER_MASK 0xff
224 #define UARTWATER_TXWATER_OFF 0
225 #define UARTWATER_RXWATER_OFF 16
227 #define FSL_UART_RX_DMA_BUFFER_SIZE 64
229 #define DRIVER_NAME "fsl-lpuart"
230 #define DEV_NAME "ttyLP"
234 struct uart_port port
;
236 unsigned int txfifo_size
;
237 unsigned int rxfifo_size
;
240 bool lpuart_dma_tx_use
;
241 bool lpuart_dma_rx_use
;
242 struct dma_chan
*dma_tx_chan
;
243 struct dma_chan
*dma_rx_chan
;
244 struct dma_async_tx_descriptor
*dma_tx_desc
;
245 struct dma_async_tx_descriptor
*dma_rx_desc
;
246 dma_addr_t dma_tx_buf_bus
;
247 dma_addr_t dma_rx_buf_bus
;
248 dma_cookie_t dma_tx_cookie
;
249 dma_cookie_t dma_rx_cookie
;
250 unsigned char *dma_tx_buf_virt
;
251 unsigned char *dma_rx_buf_virt
;
252 unsigned int dma_tx_bytes
;
253 unsigned int dma_rx_bytes
;
254 int dma_tx_in_progress
;
255 int dma_rx_in_progress
;
256 unsigned int dma_rx_timeout
;
257 struct timer_list lpuart_timer
;
260 static const struct of_device_id lpuart_dt_ids
[] = {
262 .compatible
= "fsl,vf610-lpuart",
265 .compatible
= "fsl,ls1021a-lpuart",
269 MODULE_DEVICE_TABLE(of
, lpuart_dt_ids
);
271 /* Forward declare this for the dma callbacks*/
272 static void lpuart_dma_tx_complete(void *arg
);
273 static void lpuart_dma_rx_complete(void *arg
);
275 static u32
lpuart32_read(void __iomem
*addr
)
277 return ioread32be(addr
);
280 static void lpuart32_write(u32 val
, void __iomem
*addr
)
282 iowrite32be(val
, addr
);
285 static void lpuart_stop_tx(struct uart_port
*port
)
289 temp
= readb(port
->membase
+ UARTCR2
);
290 temp
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
);
291 writeb(temp
, port
->membase
+ UARTCR2
);
294 static void lpuart32_stop_tx(struct uart_port
*port
)
298 temp
= lpuart32_read(port
->membase
+ UARTCTRL
);
299 temp
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
);
300 lpuart32_write(temp
, port
->membase
+ UARTCTRL
);
303 static void lpuart_stop_rx(struct uart_port
*port
)
307 temp
= readb(port
->membase
+ UARTCR2
);
308 writeb(temp
& ~UARTCR2_RE
, port
->membase
+ UARTCR2
);
311 static void lpuart32_stop_rx(struct uart_port
*port
)
315 temp
= lpuart32_read(port
->membase
+ UARTCTRL
);
316 lpuart32_write(temp
& ~UARTCTRL_RE
, port
->membase
+ UARTCTRL
);
319 static void lpuart_copy_rx_to_tty(struct lpuart_port
*sport
,
320 struct tty_port
*tty
, int count
)
324 sport
->port
.icount
.rx
+= count
;
327 dev_err(sport
->port
.dev
, "No tty port\n");
331 dma_sync_single_for_cpu(sport
->port
.dev
, sport
->dma_rx_buf_bus
,
332 FSL_UART_RX_DMA_BUFFER_SIZE
, DMA_FROM_DEVICE
);
333 copied
= tty_insert_flip_string(tty
,
334 ((unsigned char *)(sport
->dma_rx_buf_virt
)), count
);
336 if (copied
!= count
) {
338 dev_err(sport
->port
.dev
, "RxData copy to tty layer failed\n");
341 dma_sync_single_for_device(sport
->port
.dev
, sport
->dma_rx_buf_bus
,
342 FSL_UART_RX_DMA_BUFFER_SIZE
, DMA_TO_DEVICE
);
345 static void lpuart_pio_tx(struct lpuart_port
*sport
)
347 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
350 spin_lock_irqsave(&sport
->port
.lock
, flags
);
352 while (!uart_circ_empty(xmit
) &&
353 readb(sport
->port
.membase
+ UARTTCFIFO
) < sport
->txfifo_size
) {
354 writeb(xmit
->buf
[xmit
->tail
], sport
->port
.membase
+ UARTDR
);
355 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
356 sport
->port
.icount
.tx
++;
359 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
360 uart_write_wakeup(&sport
->port
);
362 if (uart_circ_empty(xmit
))
363 writeb(readb(sport
->port
.membase
+ UARTCR5
) | UARTCR5_TDMAS
,
364 sport
->port
.membase
+ UARTCR5
);
366 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
369 static int lpuart_dma_tx(struct lpuart_port
*sport
, unsigned long count
)
371 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
372 dma_addr_t tx_bus_addr
;
374 dma_sync_single_for_device(sport
->port
.dev
, sport
->dma_tx_buf_bus
,
375 UART_XMIT_SIZE
, DMA_TO_DEVICE
);
376 sport
->dma_tx_bytes
= count
& ~(sport
->txfifo_size
- 1);
377 tx_bus_addr
= sport
->dma_tx_buf_bus
+ xmit
->tail
;
378 sport
->dma_tx_desc
= dmaengine_prep_slave_single(sport
->dma_tx_chan
,
379 tx_bus_addr
, sport
->dma_tx_bytes
,
380 DMA_MEM_TO_DEV
, DMA_PREP_INTERRUPT
);
382 if (!sport
->dma_tx_desc
) {
383 dev_err(sport
->port
.dev
, "Not able to get desc for tx\n");
387 sport
->dma_tx_desc
->callback
= lpuart_dma_tx_complete
;
388 sport
->dma_tx_desc
->callback_param
= sport
;
389 sport
->dma_tx_in_progress
= 1;
390 sport
->dma_tx_cookie
= dmaengine_submit(sport
->dma_tx_desc
);
391 dma_async_issue_pending(sport
->dma_tx_chan
);
396 static void lpuart_prepare_tx(struct lpuart_port
*sport
)
398 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
399 unsigned long count
= CIRC_CNT_TO_END(xmit
->head
,
400 xmit
->tail
, UART_XMIT_SIZE
);
405 if (count
< sport
->txfifo_size
)
406 writeb(readb(sport
->port
.membase
+ UARTCR5
) & ~UARTCR5_TDMAS
,
407 sport
->port
.membase
+ UARTCR5
);
409 writeb(readb(sport
->port
.membase
+ UARTCR5
) | UARTCR5_TDMAS
,
410 sport
->port
.membase
+ UARTCR5
);
411 lpuart_dma_tx(sport
, count
);
415 static void lpuart_dma_tx_complete(void *arg
)
417 struct lpuart_port
*sport
= arg
;
418 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
421 async_tx_ack(sport
->dma_tx_desc
);
423 spin_lock_irqsave(&sport
->port
.lock
, flags
);
425 xmit
->tail
= (xmit
->tail
+ sport
->dma_tx_bytes
) & (UART_XMIT_SIZE
- 1);
426 sport
->dma_tx_in_progress
= 0;
428 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
429 uart_write_wakeup(&sport
->port
);
431 lpuart_prepare_tx(sport
);
433 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
436 static int lpuart_dma_rx(struct lpuart_port
*sport
)
438 dma_sync_single_for_device(sport
->port
.dev
, sport
->dma_rx_buf_bus
,
439 FSL_UART_RX_DMA_BUFFER_SIZE
, DMA_TO_DEVICE
);
440 sport
->dma_rx_desc
= dmaengine_prep_slave_single(sport
->dma_rx_chan
,
441 sport
->dma_rx_buf_bus
, FSL_UART_RX_DMA_BUFFER_SIZE
,
442 DMA_DEV_TO_MEM
, DMA_PREP_INTERRUPT
);
444 if (!sport
->dma_rx_desc
) {
445 dev_err(sport
->port
.dev
, "Not able to get desc for rx\n");
449 sport
->dma_rx_desc
->callback
= lpuart_dma_rx_complete
;
450 sport
->dma_rx_desc
->callback_param
= sport
;
451 sport
->dma_rx_in_progress
= 1;
452 sport
->dma_rx_cookie
= dmaengine_submit(sport
->dma_rx_desc
);
453 dma_async_issue_pending(sport
->dma_rx_chan
);
458 static void lpuart_flush_buffer(struct uart_port
*port
)
460 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
461 if (sport
->lpuart_dma_tx_use
) {
462 dmaengine_terminate_all(sport
->dma_tx_chan
);
463 sport
->dma_tx_in_progress
= 0;
467 static void lpuart_dma_rx_complete(void *arg
)
469 struct lpuart_port
*sport
= arg
;
470 struct tty_port
*port
= &sport
->port
.state
->port
;
473 async_tx_ack(sport
->dma_rx_desc
);
474 mod_timer(&sport
->lpuart_timer
, jiffies
+ sport
->dma_rx_timeout
);
476 spin_lock_irqsave(&sport
->port
.lock
, flags
);
478 sport
->dma_rx_in_progress
= 0;
479 lpuart_copy_rx_to_tty(sport
, port
, FSL_UART_RX_DMA_BUFFER_SIZE
);
480 tty_flip_buffer_push(port
);
481 lpuart_dma_rx(sport
);
483 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
486 static void lpuart_timer_func(unsigned long data
)
488 struct lpuart_port
*sport
= (struct lpuart_port
*)data
;
489 struct tty_port
*port
= &sport
->port
.state
->port
;
490 struct dma_tx_state state
;
495 del_timer(&sport
->lpuart_timer
);
496 dmaengine_pause(sport
->dma_rx_chan
);
497 dmaengine_tx_status(sport
->dma_rx_chan
, sport
->dma_rx_cookie
, &state
);
498 dmaengine_terminate_all(sport
->dma_rx_chan
);
499 count
= FSL_UART_RX_DMA_BUFFER_SIZE
- state
.residue
;
500 async_tx_ack(sport
->dma_rx_desc
);
502 spin_lock_irqsave(&sport
->port
.lock
, flags
);
504 sport
->dma_rx_in_progress
= 0;
505 lpuart_copy_rx_to_tty(sport
, port
, count
);
506 tty_flip_buffer_push(port
);
507 temp
= readb(sport
->port
.membase
+ UARTCR5
);
508 writeb(temp
& ~UARTCR5_RDMAS
, sport
->port
.membase
+ UARTCR5
);
510 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
513 static inline void lpuart_prepare_rx(struct lpuart_port
*sport
)
518 spin_lock_irqsave(&sport
->port
.lock
, flags
);
520 sport
->lpuart_timer
.expires
= jiffies
+ sport
->dma_rx_timeout
;
521 add_timer(&sport
->lpuart_timer
);
523 lpuart_dma_rx(sport
);
524 temp
= readb(sport
->port
.membase
+ UARTCR5
);
525 writeb(temp
| UARTCR5_RDMAS
, sport
->port
.membase
+ UARTCR5
);
527 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
530 static inline void lpuart_transmit_buffer(struct lpuart_port
*sport
)
532 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
534 while (!uart_circ_empty(xmit
) &&
535 (readb(sport
->port
.membase
+ UARTTCFIFO
) < sport
->txfifo_size
)) {
536 writeb(xmit
->buf
[xmit
->tail
], sport
->port
.membase
+ UARTDR
);
537 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
538 sport
->port
.icount
.tx
++;
541 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
542 uart_write_wakeup(&sport
->port
);
544 if (uart_circ_empty(xmit
))
545 lpuart_stop_tx(&sport
->port
);
548 static inline void lpuart32_transmit_buffer(struct lpuart_port
*sport
)
550 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
553 txcnt
= lpuart32_read(sport
->port
.membase
+ UARTWATER
);
554 txcnt
= txcnt
>> UARTWATER_TXCNT_OFF
;
555 txcnt
&= UARTWATER_COUNT_MASK
;
556 while (!uart_circ_empty(xmit
) && (txcnt
< sport
->txfifo_size
)) {
557 lpuart32_write(xmit
->buf
[xmit
->tail
], sport
->port
.membase
+ UARTDATA
);
558 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
559 sport
->port
.icount
.tx
++;
560 txcnt
= lpuart32_read(sport
->port
.membase
+ UARTWATER
);
561 txcnt
= txcnt
>> UARTWATER_TXCNT_OFF
;
562 txcnt
&= UARTWATER_COUNT_MASK
;
565 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
566 uart_write_wakeup(&sport
->port
);
568 if (uart_circ_empty(xmit
))
569 lpuart32_stop_tx(&sport
->port
);
572 static void lpuart_start_tx(struct uart_port
*port
)
574 struct lpuart_port
*sport
= container_of(port
,
575 struct lpuart_port
, port
);
576 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
579 temp
= readb(port
->membase
+ UARTCR2
);
580 writeb(temp
| UARTCR2_TIE
, port
->membase
+ UARTCR2
);
582 if (sport
->lpuart_dma_tx_use
) {
583 if (!uart_circ_empty(xmit
) && !sport
->dma_tx_in_progress
)
584 lpuart_prepare_tx(sport
);
586 if (readb(port
->membase
+ UARTSR1
) & UARTSR1_TDRE
)
587 lpuart_transmit_buffer(sport
);
591 static void lpuart32_start_tx(struct uart_port
*port
)
593 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
596 temp
= lpuart32_read(port
->membase
+ UARTCTRL
);
597 lpuart32_write(temp
| UARTCTRL_TIE
, port
->membase
+ UARTCTRL
);
599 if (lpuart32_read(port
->membase
+ UARTSTAT
) & UARTSTAT_TDRE
)
600 lpuart32_transmit_buffer(sport
);
603 static irqreturn_t
lpuart_txint(int irq
, void *dev_id
)
605 struct lpuart_port
*sport
= dev_id
;
606 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
609 spin_lock_irqsave(&sport
->port
.lock
, flags
);
610 if (sport
->port
.x_char
) {
612 lpuart32_write(sport
->port
.x_char
, sport
->port
.membase
+ UARTDATA
);
614 writeb(sport
->port
.x_char
, sport
->port
.membase
+ UARTDR
);
618 if (uart_circ_empty(xmit
) || uart_tx_stopped(&sport
->port
)) {
620 lpuart32_stop_tx(&sport
->port
);
622 lpuart_stop_tx(&sport
->port
);
627 lpuart32_transmit_buffer(sport
);
629 lpuart_transmit_buffer(sport
);
631 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
632 uart_write_wakeup(&sport
->port
);
635 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
639 static irqreturn_t
lpuart_rxint(int irq
, void *dev_id
)
641 struct lpuart_port
*sport
= dev_id
;
642 unsigned int flg
, ignored
= 0;
643 struct tty_port
*port
= &sport
->port
.state
->port
;
645 unsigned char rx
, sr
;
647 spin_lock_irqsave(&sport
->port
.lock
, flags
);
649 while (!(readb(sport
->port
.membase
+ UARTSFIFO
) & UARTSFIFO_RXEMPT
)) {
651 sport
->port
.icount
.rx
++;
653 * to clear the FE, OR, NF, FE, PE flags,
654 * read SR1 then read DR
656 sr
= readb(sport
->port
.membase
+ UARTSR1
);
657 rx
= readb(sport
->port
.membase
+ UARTDR
);
659 if (uart_handle_sysrq_char(&sport
->port
, (unsigned char)rx
))
662 if (sr
& (UARTSR1_PE
| UARTSR1_OR
| UARTSR1_FE
)) {
664 sport
->port
.icount
.parity
++;
665 else if (sr
& UARTSR1_FE
)
666 sport
->port
.icount
.frame
++;
669 sport
->port
.icount
.overrun
++;
671 if (sr
& sport
->port
.ignore_status_mask
) {
677 sr
&= sport
->port
.read_status_mask
;
681 else if (sr
& UARTSR1_FE
)
688 sport
->port
.sysrq
= 0;
692 tty_insert_flip_char(port
, rx
, flg
);
696 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
698 tty_flip_buffer_push(port
);
702 static irqreturn_t
lpuart32_rxint(int irq
, void *dev_id
)
704 struct lpuart_port
*sport
= dev_id
;
705 unsigned int flg
, ignored
= 0;
706 struct tty_port
*port
= &sport
->port
.state
->port
;
708 unsigned long rx
, sr
;
710 spin_lock_irqsave(&sport
->port
.lock
, flags
);
712 while (!(lpuart32_read(sport
->port
.membase
+ UARTFIFO
) & UARTFIFO_RXEMPT
)) {
714 sport
->port
.icount
.rx
++;
716 * to clear the FE, OR, NF, FE, PE flags,
717 * read STAT then read DATA reg
719 sr
= lpuart32_read(sport
->port
.membase
+ UARTSTAT
);
720 rx
= lpuart32_read(sport
->port
.membase
+ UARTDATA
);
723 if (uart_handle_sysrq_char(&sport
->port
, (unsigned char)rx
))
726 if (sr
& (UARTSTAT_PE
| UARTSTAT_OR
| UARTSTAT_FE
)) {
727 if (sr
& UARTSTAT_PE
)
728 sport
->port
.icount
.parity
++;
729 else if (sr
& UARTSTAT_FE
)
730 sport
->port
.icount
.frame
++;
732 if (sr
& UARTSTAT_OR
)
733 sport
->port
.icount
.overrun
++;
735 if (sr
& sport
->port
.ignore_status_mask
) {
741 sr
&= sport
->port
.read_status_mask
;
743 if (sr
& UARTSTAT_PE
)
745 else if (sr
& UARTSTAT_FE
)
748 if (sr
& UARTSTAT_OR
)
752 sport
->port
.sysrq
= 0;
756 tty_insert_flip_char(port
, rx
, flg
);
760 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
762 tty_flip_buffer_push(port
);
766 static irqreturn_t
lpuart_int(int irq
, void *dev_id
)
768 struct lpuart_port
*sport
= dev_id
;
769 unsigned char sts
, crdma
;
771 sts
= readb(sport
->port
.membase
+ UARTSR1
);
772 crdma
= readb(sport
->port
.membase
+ UARTCR5
);
774 if (sts
& UARTSR1_RDRF
&& !(crdma
& UARTCR5_RDMAS
)) {
775 if (sport
->lpuart_dma_rx_use
)
776 lpuart_prepare_rx(sport
);
778 lpuart_rxint(irq
, dev_id
);
780 if (sts
& UARTSR1_TDRE
&& !(crdma
& UARTCR5_TDMAS
)) {
781 if (sport
->lpuart_dma_tx_use
)
782 lpuart_pio_tx(sport
);
784 lpuart_txint(irq
, dev_id
);
790 static irqreturn_t
lpuart32_int(int irq
, void *dev_id
)
792 struct lpuart_port
*sport
= dev_id
;
793 unsigned long sts
, rxcount
;
795 sts
= lpuart32_read(sport
->port
.membase
+ UARTSTAT
);
796 rxcount
= lpuart32_read(sport
->port
.membase
+ UARTWATER
);
797 rxcount
= rxcount
>> UARTWATER_RXCNT_OFF
;
799 if (sts
& UARTSTAT_RDRF
|| rxcount
> 0)
800 lpuart32_rxint(irq
, dev_id
);
802 if ((sts
& UARTSTAT_TDRE
) &&
803 !(lpuart32_read(sport
->port
.membase
+ UARTBAUD
) & UARTBAUD_TDMAE
))
804 lpuart_txint(irq
, dev_id
);
806 lpuart32_write(sts
, sport
->port
.membase
+ UARTSTAT
);
810 /* return TIOCSER_TEMT when transmitter is not busy */
811 static unsigned int lpuart_tx_empty(struct uart_port
*port
)
813 return (readb(port
->membase
+ UARTSR1
) & UARTSR1_TC
) ?
817 static unsigned int lpuart32_tx_empty(struct uart_port
*port
)
819 return (lpuart32_read(port
->membase
+ UARTSTAT
) & UARTSTAT_TC
) ?
823 static unsigned int lpuart_get_mctrl(struct uart_port
*port
)
825 unsigned int temp
= 0;
828 reg
= readb(port
->membase
+ UARTMODEM
);
829 if (reg
& UARTMODEM_TXCTSE
)
832 if (reg
& UARTMODEM_RXRTSE
)
838 static unsigned int lpuart32_get_mctrl(struct uart_port
*port
)
840 unsigned int temp
= 0;
843 reg
= lpuart32_read(port
->membase
+ UARTMODIR
);
844 if (reg
& UARTMODIR_TXCTSE
)
847 if (reg
& UARTMODIR_RXRTSE
)
853 static void lpuart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
857 temp
= readb(port
->membase
+ UARTMODEM
) &
858 ~(UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
860 if (mctrl
& TIOCM_RTS
)
861 temp
|= UARTMODEM_RXRTSE
;
863 if (mctrl
& TIOCM_CTS
)
864 temp
|= UARTMODEM_TXCTSE
;
866 writeb(temp
, port
->membase
+ UARTMODEM
);
869 static void lpuart32_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
873 temp
= lpuart32_read(port
->membase
+ UARTMODIR
) &
874 ~(UARTMODIR_RXRTSE
| UARTMODIR_TXCTSE
);
876 if (mctrl
& TIOCM_RTS
)
877 temp
|= UARTMODIR_RXRTSE
;
879 if (mctrl
& TIOCM_CTS
)
880 temp
|= UARTMODIR_TXCTSE
;
882 lpuart32_write(temp
, port
->membase
+ UARTMODIR
);
885 static void lpuart_break_ctl(struct uart_port
*port
, int break_state
)
889 temp
= readb(port
->membase
+ UARTCR2
) & ~UARTCR2_SBK
;
891 if (break_state
!= 0)
894 writeb(temp
, port
->membase
+ UARTCR2
);
897 static void lpuart32_break_ctl(struct uart_port
*port
, int break_state
)
901 temp
= lpuart32_read(port
->membase
+ UARTCTRL
) & ~UARTCTRL_SBK
;
903 if (break_state
!= 0)
904 temp
|= UARTCTRL_SBK
;
906 lpuart32_write(temp
, port
->membase
+ UARTCTRL
);
909 static void lpuart_setup_watermark(struct lpuart_port
*sport
)
911 unsigned char val
, cr2
;
912 unsigned char cr2_saved
;
914 cr2
= readb(sport
->port
.membase
+ UARTCR2
);
916 cr2
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_TE
|
917 UARTCR2_RIE
| UARTCR2_RE
);
918 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
920 val
= readb(sport
->port
.membase
+ UARTPFIFO
);
921 writeb(val
| UARTPFIFO_TXFE
| UARTPFIFO_RXFE
,
922 sport
->port
.membase
+ UARTPFIFO
);
924 /* explicitly clear RDRF */
925 readb(sport
->port
.membase
+ UARTSR1
);
927 /* flush Tx and Rx FIFO */
928 writeb(UARTCFIFO_TXFLUSH
| UARTCFIFO_RXFLUSH
,
929 sport
->port
.membase
+ UARTCFIFO
);
931 writeb(0, sport
->port
.membase
+ UARTTWFIFO
);
932 writeb(1, sport
->port
.membase
+ UARTRWFIFO
);
935 writeb(cr2_saved
, sport
->port
.membase
+ UARTCR2
);
938 static void lpuart32_setup_watermark(struct lpuart_port
*sport
)
940 unsigned long val
, ctrl
;
941 unsigned long ctrl_saved
;
943 ctrl
= lpuart32_read(sport
->port
.membase
+ UARTCTRL
);
945 ctrl
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_TE
|
946 UARTCTRL_RIE
| UARTCTRL_RE
);
947 lpuart32_write(ctrl
, sport
->port
.membase
+ UARTCTRL
);
949 /* enable FIFO mode */
950 val
= lpuart32_read(sport
->port
.membase
+ UARTFIFO
);
951 val
|= UARTFIFO_TXFE
| UARTFIFO_RXFE
;
952 val
|= UARTFIFO_TXFLUSH
| UARTFIFO_RXFLUSH
;
953 lpuart32_write(val
, sport
->port
.membase
+ UARTFIFO
);
955 /* set the watermark */
956 val
= (0x1 << UARTWATER_RXWATER_OFF
) | (0x0 << UARTWATER_TXWATER_OFF
);
957 lpuart32_write(val
, sport
->port
.membase
+ UARTWATER
);
960 lpuart32_write(ctrl_saved
, sport
->port
.membase
+ UARTCTRL
);
963 static int lpuart_dma_tx_request(struct uart_port
*port
)
965 struct lpuart_port
*sport
= container_of(port
,
966 struct lpuart_port
, port
);
967 struct dma_slave_config dma_tx_sconfig
;
969 unsigned char *dma_buf
;
972 dma_bus
= dma_map_single(sport
->dma_tx_chan
->device
->dev
,
973 sport
->port
.state
->xmit
.buf
,
974 UART_XMIT_SIZE
, DMA_TO_DEVICE
);
976 if (dma_mapping_error(sport
->dma_tx_chan
->device
->dev
, dma_bus
)) {
977 dev_err(sport
->port
.dev
, "dma_map_single tx failed\n");
981 dma_buf
= sport
->port
.state
->xmit
.buf
;
982 dma_tx_sconfig
.dst_addr
= sport
->port
.mapbase
+ UARTDR
;
983 dma_tx_sconfig
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
984 dma_tx_sconfig
.dst_maxburst
= sport
->txfifo_size
;
985 dma_tx_sconfig
.direction
= DMA_MEM_TO_DEV
;
986 ret
= dmaengine_slave_config(sport
->dma_tx_chan
, &dma_tx_sconfig
);
989 dev_err(sport
->port
.dev
,
990 "Dma slave config failed, err = %d\n", ret
);
994 sport
->dma_tx_buf_virt
= dma_buf
;
995 sport
->dma_tx_buf_bus
= dma_bus
;
996 sport
->dma_tx_in_progress
= 0;
1001 static int lpuart_dma_rx_request(struct uart_port
*port
)
1003 struct lpuart_port
*sport
= container_of(port
,
1004 struct lpuart_port
, port
);
1005 struct dma_slave_config dma_rx_sconfig
;
1007 unsigned char *dma_buf
;
1010 dma_buf
= devm_kzalloc(sport
->port
.dev
,
1011 FSL_UART_RX_DMA_BUFFER_SIZE
, GFP_KERNEL
);
1014 dev_err(sport
->port
.dev
, "Dma rx alloc failed\n");
1018 dma_bus
= dma_map_single(sport
->dma_rx_chan
->device
->dev
, dma_buf
,
1019 FSL_UART_RX_DMA_BUFFER_SIZE
, DMA_FROM_DEVICE
);
1021 if (dma_mapping_error(sport
->dma_rx_chan
->device
->dev
, dma_bus
)) {
1022 dev_err(sport
->port
.dev
, "dma_map_single rx failed\n");
1026 dma_rx_sconfig
.src_addr
= sport
->port
.mapbase
+ UARTDR
;
1027 dma_rx_sconfig
.src_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
1028 dma_rx_sconfig
.src_maxburst
= 1;
1029 dma_rx_sconfig
.direction
= DMA_DEV_TO_MEM
;
1030 ret
= dmaengine_slave_config(sport
->dma_rx_chan
, &dma_rx_sconfig
);
1033 dev_err(sport
->port
.dev
,
1034 "Dma slave config failed, err = %d\n", ret
);
1038 sport
->dma_rx_buf_virt
= dma_buf
;
1039 sport
->dma_rx_buf_bus
= dma_bus
;
1040 sport
->dma_rx_in_progress
= 0;
1045 static void lpuart_dma_tx_free(struct uart_port
*port
)
1047 struct lpuart_port
*sport
= container_of(port
,
1048 struct lpuart_port
, port
);
1050 dma_unmap_single(sport
->port
.dev
, sport
->dma_tx_buf_bus
,
1051 UART_XMIT_SIZE
, DMA_TO_DEVICE
);
1053 sport
->dma_tx_buf_bus
= 0;
1054 sport
->dma_tx_buf_virt
= NULL
;
1057 static void lpuart_dma_rx_free(struct uart_port
*port
)
1059 struct lpuart_port
*sport
= container_of(port
,
1060 struct lpuart_port
, port
);
1062 dma_unmap_single(sport
->port
.dev
, sport
->dma_rx_buf_bus
,
1063 FSL_UART_RX_DMA_BUFFER_SIZE
, DMA_FROM_DEVICE
);
1065 sport
->dma_rx_buf_bus
= 0;
1066 sport
->dma_rx_buf_virt
= NULL
;
1069 static int lpuart_startup(struct uart_port
*port
)
1071 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1073 unsigned long flags
;
1076 /* determine FIFO size and enable FIFO mode */
1077 temp
= readb(sport
->port
.membase
+ UARTPFIFO
);
1079 sport
->txfifo_size
= 0x1 << (((temp
>> UARTPFIFO_TXSIZE_OFF
) &
1080 UARTPFIFO_FIFOSIZE_MASK
) + 1);
1082 sport
->port
.fifosize
= sport
->txfifo_size
;
1084 sport
->rxfifo_size
= 0x1 << (((temp
>> UARTPFIFO_RXSIZE_OFF
) &
1085 UARTPFIFO_FIFOSIZE_MASK
) + 1);
1087 if (sport
->dma_rx_chan
&& !lpuart_dma_rx_request(port
)) {
1088 sport
->lpuart_dma_rx_use
= true;
1089 setup_timer(&sport
->lpuart_timer
, lpuart_timer_func
,
1090 (unsigned long)sport
);
1092 sport
->lpuart_dma_rx_use
= false;
1095 if (sport
->dma_tx_chan
&& !lpuart_dma_tx_request(port
)) {
1096 sport
->lpuart_dma_tx_use
= true;
1097 temp
= readb(port
->membase
+ UARTCR5
);
1098 temp
&= ~UARTCR5_RDMAS
;
1099 writeb(temp
| UARTCR5_TDMAS
, port
->membase
+ UARTCR5
);
1101 sport
->lpuart_dma_tx_use
= false;
1103 ret
= devm_request_irq(port
->dev
, port
->irq
, lpuart_int
, 0,
1104 DRIVER_NAME
, sport
);
1108 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1110 lpuart_setup_watermark(sport
);
1112 temp
= readb(sport
->port
.membase
+ UARTCR2
);
1113 temp
|= (UARTCR2_RIE
| UARTCR2_TIE
| UARTCR2_RE
| UARTCR2_TE
);
1114 writeb(temp
, sport
->port
.membase
+ UARTCR2
);
1116 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
1120 static int lpuart32_startup(struct uart_port
*port
)
1122 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1124 unsigned long flags
;
1127 /* determine FIFO size */
1128 temp
= lpuart32_read(sport
->port
.membase
+ UARTFIFO
);
1130 sport
->txfifo_size
= 0x1 << (((temp
>> UARTFIFO_TXSIZE_OFF
) &
1131 UARTFIFO_FIFOSIZE_MASK
) - 1);
1133 sport
->rxfifo_size
= 0x1 << (((temp
>> UARTFIFO_RXSIZE_OFF
) &
1134 UARTFIFO_FIFOSIZE_MASK
) - 1);
1136 ret
= devm_request_irq(port
->dev
, port
->irq
, lpuart32_int
, 0,
1137 DRIVER_NAME
, sport
);
1141 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1143 lpuart32_setup_watermark(sport
);
1145 temp
= lpuart32_read(sport
->port
.membase
+ UARTCTRL
);
1146 temp
|= (UARTCTRL_RIE
| UARTCTRL_TIE
| UARTCTRL_RE
| UARTCTRL_TE
);
1147 temp
|= UARTCTRL_ILIE
;
1148 lpuart32_write(temp
, sport
->port
.membase
+ UARTCTRL
);
1150 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
1154 static void lpuart_shutdown(struct uart_port
*port
)
1156 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1158 unsigned long flags
;
1160 spin_lock_irqsave(&port
->lock
, flags
);
1162 /* disable Rx/Tx and interrupts */
1163 temp
= readb(port
->membase
+ UARTCR2
);
1164 temp
&= ~(UARTCR2_TE
| UARTCR2_RE
|
1165 UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_RIE
);
1166 writeb(temp
, port
->membase
+ UARTCR2
);
1168 spin_unlock_irqrestore(&port
->lock
, flags
);
1170 devm_free_irq(port
->dev
, port
->irq
, sport
);
1172 if (sport
->lpuart_dma_rx_use
) {
1173 lpuart_dma_rx_free(&sport
->port
);
1174 del_timer_sync(&sport
->lpuart_timer
);
1177 if (sport
->lpuart_dma_tx_use
)
1178 lpuart_dma_tx_free(&sport
->port
);
1181 static void lpuart32_shutdown(struct uart_port
*port
)
1183 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1185 unsigned long flags
;
1187 spin_lock_irqsave(&port
->lock
, flags
);
1189 /* disable Rx/Tx and interrupts */
1190 temp
= lpuart32_read(port
->membase
+ UARTCTRL
);
1191 temp
&= ~(UARTCTRL_TE
| UARTCTRL_RE
|
1192 UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_RIE
);
1193 lpuart32_write(temp
, port
->membase
+ UARTCTRL
);
1195 spin_unlock_irqrestore(&port
->lock
, flags
);
1197 devm_free_irq(port
->dev
, port
->irq
, sport
);
1201 lpuart_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
1202 struct ktermios
*old
)
1204 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1205 unsigned long flags
;
1206 unsigned char cr1
, old_cr1
, old_cr2
, cr4
, bdh
, modem
;
1208 unsigned int old_csize
= old
? old
->c_cflag
& CSIZE
: CS8
;
1209 unsigned int sbr
, brfa
;
1211 cr1
= old_cr1
= readb(sport
->port
.membase
+ UARTCR1
);
1212 old_cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1213 cr4
= readb(sport
->port
.membase
+ UARTCR4
);
1214 bdh
= readb(sport
->port
.membase
+ UARTBDH
);
1215 modem
= readb(sport
->port
.membase
+ UARTMODEM
);
1217 * only support CS8 and CS7, and for CS7 must enable PE.
1224 while ((termios
->c_cflag
& CSIZE
) != CS8
&&
1225 (termios
->c_cflag
& CSIZE
) != CS7
) {
1226 termios
->c_cflag
&= ~CSIZE
;
1227 termios
->c_cflag
|= old_csize
;
1231 if ((termios
->c_cflag
& CSIZE
) == CS8
||
1232 (termios
->c_cflag
& CSIZE
) == CS7
)
1233 cr1
= old_cr1
& ~UARTCR1_M
;
1235 if (termios
->c_cflag
& CMSPAR
) {
1236 if ((termios
->c_cflag
& CSIZE
) != CS8
) {
1237 termios
->c_cflag
&= ~CSIZE
;
1238 termios
->c_cflag
|= CS8
;
1243 if (termios
->c_cflag
& CRTSCTS
) {
1244 modem
|= (UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1246 termios
->c_cflag
&= ~CRTSCTS
;
1247 modem
&= ~(UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1250 if (termios
->c_cflag
& CSTOPB
)
1251 termios
->c_cflag
&= ~CSTOPB
;
1253 /* parity must be enabled when CS7 to match 8-bits format */
1254 if ((termios
->c_cflag
& CSIZE
) == CS7
)
1255 termios
->c_cflag
|= PARENB
;
1257 if ((termios
->c_cflag
& PARENB
)) {
1258 if (termios
->c_cflag
& CMSPAR
) {
1263 if ((termios
->c_cflag
& CSIZE
) == CS8
)
1265 if (termios
->c_cflag
& PARODD
)
1272 /* ask the core to calculate the divisor */
1273 baud
= uart_get_baud_rate(port
, termios
, old
, 50, port
->uartclk
/ 16);
1275 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1277 sport
->port
.read_status_mask
= 0;
1278 if (termios
->c_iflag
& INPCK
)
1279 sport
->port
.read_status_mask
|= (UARTSR1_FE
| UARTSR1_PE
);
1280 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
1281 sport
->port
.read_status_mask
|= UARTSR1_FE
;
1283 /* characters to ignore */
1284 sport
->port
.ignore_status_mask
= 0;
1285 if (termios
->c_iflag
& IGNPAR
)
1286 sport
->port
.ignore_status_mask
|= UARTSR1_PE
;
1287 if (termios
->c_iflag
& IGNBRK
) {
1288 sport
->port
.ignore_status_mask
|= UARTSR1_FE
;
1290 * if we're ignoring parity and break indicators,
1291 * ignore overruns too (for real raw support).
1293 if (termios
->c_iflag
& IGNPAR
)
1294 sport
->port
.ignore_status_mask
|= UARTSR1_OR
;
1297 /* update the per-port timeout */
1298 uart_update_timeout(port
, termios
->c_cflag
, baud
);
1300 if (sport
->lpuart_dma_rx_use
) {
1301 /* Calculate delay for 1.5 DMA buffers */
1302 sport
->dma_rx_timeout
= (sport
->port
.timeout
- HZ
/ 50) *
1303 FSL_UART_RX_DMA_BUFFER_SIZE
* 3 /
1304 sport
->rxfifo_size
/ 2;
1305 dev_dbg(port
->dev
, "DMA Rx t-out %ums, tty t-out %u jiffies\n",
1306 sport
->dma_rx_timeout
* 1000 / HZ
, sport
->port
.timeout
);
1307 if (sport
->dma_rx_timeout
< msecs_to_jiffies(20))
1308 sport
->dma_rx_timeout
= msecs_to_jiffies(20);
1311 /* wait transmit engin complete */
1312 while (!(readb(sport
->port
.membase
+ UARTSR1
) & UARTSR1_TC
))
1315 /* disable transmit and receive */
1316 writeb(old_cr2
& ~(UARTCR2_TE
| UARTCR2_RE
),
1317 sport
->port
.membase
+ UARTCR2
);
1319 sbr
= sport
->port
.uartclk
/ (16 * baud
);
1320 brfa
= ((sport
->port
.uartclk
- (16 * sbr
* baud
)) * 2) / baud
;
1321 bdh
&= ~UARTBDH_SBR_MASK
;
1322 bdh
|= (sbr
>> 8) & 0x1F;
1323 cr4
&= ~UARTCR4_BRFA_MASK
;
1324 brfa
&= UARTCR4_BRFA_MASK
;
1325 writeb(cr4
| brfa
, sport
->port
.membase
+ UARTCR4
);
1326 writeb(bdh
, sport
->port
.membase
+ UARTBDH
);
1327 writeb(sbr
& 0xFF, sport
->port
.membase
+ UARTBDL
);
1328 writeb(cr1
, sport
->port
.membase
+ UARTCR1
);
1329 writeb(modem
, sport
->port
.membase
+ UARTMODEM
);
1331 /* restore control register */
1332 writeb(old_cr2
, sport
->port
.membase
+ UARTCR2
);
1334 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
1338 lpuart32_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
1339 struct ktermios
*old
)
1341 struct lpuart_port
*sport
= container_of(port
, struct lpuart_port
, port
);
1342 unsigned long flags
;
1343 unsigned long ctrl
, old_ctrl
, bd
, modem
;
1345 unsigned int old_csize
= old
? old
->c_cflag
& CSIZE
: CS8
;
1348 ctrl
= old_ctrl
= lpuart32_read(sport
->port
.membase
+ UARTCTRL
);
1349 bd
= lpuart32_read(sport
->port
.membase
+ UARTBAUD
);
1350 modem
= lpuart32_read(sport
->port
.membase
+ UARTMODIR
);
1352 * only support CS8 and CS7, and for CS7 must enable PE.
1359 while ((termios
->c_cflag
& CSIZE
) != CS8
&&
1360 (termios
->c_cflag
& CSIZE
) != CS7
) {
1361 termios
->c_cflag
&= ~CSIZE
;
1362 termios
->c_cflag
|= old_csize
;
1366 if ((termios
->c_cflag
& CSIZE
) == CS8
||
1367 (termios
->c_cflag
& CSIZE
) == CS7
)
1368 ctrl
= old_ctrl
& ~UARTCTRL_M
;
1370 if (termios
->c_cflag
& CMSPAR
) {
1371 if ((termios
->c_cflag
& CSIZE
) != CS8
) {
1372 termios
->c_cflag
&= ~CSIZE
;
1373 termios
->c_cflag
|= CS8
;
1378 if (termios
->c_cflag
& CRTSCTS
) {
1379 modem
|= (UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1381 termios
->c_cflag
&= ~CRTSCTS
;
1382 modem
&= ~(UARTMODEM_RXRTSE
| UARTMODEM_TXCTSE
);
1385 if (termios
->c_cflag
& CSTOPB
)
1386 termios
->c_cflag
&= ~CSTOPB
;
1388 /* parity must be enabled when CS7 to match 8-bits format */
1389 if ((termios
->c_cflag
& CSIZE
) == CS7
)
1390 termios
->c_cflag
|= PARENB
;
1392 if ((termios
->c_cflag
& PARENB
)) {
1393 if (termios
->c_cflag
& CMSPAR
) {
1394 ctrl
&= ~UARTCTRL_PE
;
1398 if ((termios
->c_cflag
& CSIZE
) == CS8
)
1400 if (termios
->c_cflag
& PARODD
)
1401 ctrl
|= UARTCTRL_PT
;
1403 ctrl
&= ~UARTCTRL_PT
;
1407 /* ask the core to calculate the divisor */
1408 baud
= uart_get_baud_rate(port
, termios
, old
, 50, port
->uartclk
/ 16);
1410 spin_lock_irqsave(&sport
->port
.lock
, flags
);
1412 sport
->port
.read_status_mask
= 0;
1413 if (termios
->c_iflag
& INPCK
)
1414 sport
->port
.read_status_mask
|= (UARTSTAT_FE
| UARTSTAT_PE
);
1415 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
1416 sport
->port
.read_status_mask
|= UARTSTAT_FE
;
1418 /* characters to ignore */
1419 sport
->port
.ignore_status_mask
= 0;
1420 if (termios
->c_iflag
& IGNPAR
)
1421 sport
->port
.ignore_status_mask
|= UARTSTAT_PE
;
1422 if (termios
->c_iflag
& IGNBRK
) {
1423 sport
->port
.ignore_status_mask
|= UARTSTAT_FE
;
1425 * if we're ignoring parity and break indicators,
1426 * ignore overruns too (for real raw support).
1428 if (termios
->c_iflag
& IGNPAR
)
1429 sport
->port
.ignore_status_mask
|= UARTSTAT_OR
;
1432 /* update the per-port timeout */
1433 uart_update_timeout(port
, termios
->c_cflag
, baud
);
1435 /* wait transmit engin complete */
1436 while (!(lpuart32_read(sport
->port
.membase
+ UARTSTAT
) & UARTSTAT_TC
))
1439 /* disable transmit and receive */
1440 lpuart32_write(old_ctrl
& ~(UARTCTRL_TE
| UARTCTRL_RE
),
1441 sport
->port
.membase
+ UARTCTRL
);
1443 sbr
= sport
->port
.uartclk
/ (16 * baud
);
1444 bd
&= ~UARTBAUD_SBR_MASK
;
1445 bd
|= sbr
& UARTBAUD_SBR_MASK
;
1446 bd
|= UARTBAUD_BOTHEDGE
;
1447 bd
&= ~(UARTBAUD_TDMAE
| UARTBAUD_RDMAE
);
1448 lpuart32_write(bd
, sport
->port
.membase
+ UARTBAUD
);
1449 lpuart32_write(modem
, sport
->port
.membase
+ UARTMODIR
);
1450 lpuart32_write(ctrl
, sport
->port
.membase
+ UARTCTRL
);
1451 /* restore control register */
1453 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
1456 static const char *lpuart_type(struct uart_port
*port
)
1458 return "FSL_LPUART";
1461 static void lpuart_release_port(struct uart_port
*port
)
1466 static int lpuart_request_port(struct uart_port
*port
)
1471 /* configure/autoconfigure the port */
1472 static void lpuart_config_port(struct uart_port
*port
, int flags
)
1474 if (flags
& UART_CONFIG_TYPE
)
1475 port
->type
= PORT_LPUART
;
1478 static int lpuart_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
1482 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_LPUART
)
1484 if (port
->irq
!= ser
->irq
)
1486 if (ser
->io_type
!= UPIO_MEM
)
1488 if (port
->uartclk
/ 16 != ser
->baud_base
)
1490 if (port
->iobase
!= ser
->port
)
1497 static struct uart_ops lpuart_pops
= {
1498 .tx_empty
= lpuart_tx_empty
,
1499 .set_mctrl
= lpuart_set_mctrl
,
1500 .get_mctrl
= lpuart_get_mctrl
,
1501 .stop_tx
= lpuart_stop_tx
,
1502 .start_tx
= lpuart_start_tx
,
1503 .stop_rx
= lpuart_stop_rx
,
1504 .break_ctl
= lpuart_break_ctl
,
1505 .startup
= lpuart_startup
,
1506 .shutdown
= lpuart_shutdown
,
1507 .set_termios
= lpuart_set_termios
,
1508 .type
= lpuart_type
,
1509 .request_port
= lpuart_request_port
,
1510 .release_port
= lpuart_release_port
,
1511 .config_port
= lpuart_config_port
,
1512 .verify_port
= lpuart_verify_port
,
1513 .flush_buffer
= lpuart_flush_buffer
,
1516 static struct uart_ops lpuart32_pops
= {
1517 .tx_empty
= lpuart32_tx_empty
,
1518 .set_mctrl
= lpuart32_set_mctrl
,
1519 .get_mctrl
= lpuart32_get_mctrl
,
1520 .stop_tx
= lpuart32_stop_tx
,
1521 .start_tx
= lpuart32_start_tx
,
1522 .stop_rx
= lpuart32_stop_rx
,
1523 .break_ctl
= lpuart32_break_ctl
,
1524 .startup
= lpuart32_startup
,
1525 .shutdown
= lpuart32_shutdown
,
1526 .set_termios
= lpuart32_set_termios
,
1527 .type
= lpuart_type
,
1528 .request_port
= lpuart_request_port
,
1529 .release_port
= lpuart_release_port
,
1530 .config_port
= lpuart_config_port
,
1531 .verify_port
= lpuart_verify_port
,
1532 .flush_buffer
= lpuart_flush_buffer
,
1535 static struct lpuart_port
*lpuart_ports
[UART_NR
];
1537 #ifdef CONFIG_SERIAL_FSL_LPUART_CONSOLE
1538 static void lpuart_console_putchar(struct uart_port
*port
, int ch
)
1540 while (!(readb(port
->membase
+ UARTSR1
) & UARTSR1_TDRE
))
1543 writeb(ch
, port
->membase
+ UARTDR
);
1546 static void lpuart32_console_putchar(struct uart_port
*port
, int ch
)
1548 while (!(lpuart32_read(port
->membase
+ UARTSTAT
) & UARTSTAT_TDRE
))
1551 lpuart32_write(ch
, port
->membase
+ UARTDATA
);
1555 lpuart_console_write(struct console
*co
, const char *s
, unsigned int count
)
1557 struct lpuart_port
*sport
= lpuart_ports
[co
->index
];
1558 unsigned char old_cr2
, cr2
;
1560 /* first save CR2 and then disable interrupts */
1561 cr2
= old_cr2
= readb(sport
->port
.membase
+ UARTCR2
);
1562 cr2
|= (UARTCR2_TE
| UARTCR2_RE
);
1563 cr2
&= ~(UARTCR2_TIE
| UARTCR2_TCIE
| UARTCR2_RIE
);
1564 writeb(cr2
, sport
->port
.membase
+ UARTCR2
);
1566 uart_console_write(&sport
->port
, s
, count
, lpuart_console_putchar
);
1568 /* wait for transmitter finish complete and restore CR2 */
1569 while (!(readb(sport
->port
.membase
+ UARTSR1
) & UARTSR1_TC
))
1572 writeb(old_cr2
, sport
->port
.membase
+ UARTCR2
);
1576 lpuart32_console_write(struct console
*co
, const char *s
, unsigned int count
)
1578 struct lpuart_port
*sport
= lpuart_ports
[co
->index
];
1579 unsigned long old_cr
, cr
;
1581 /* first save CR2 and then disable interrupts */
1582 cr
= old_cr
= lpuart32_read(sport
->port
.membase
+ UARTCTRL
);
1583 cr
|= (UARTCTRL_TE
| UARTCTRL_RE
);
1584 cr
&= ~(UARTCTRL_TIE
| UARTCTRL_TCIE
| UARTCTRL_RIE
);
1585 lpuart32_write(cr
, sport
->port
.membase
+ UARTCTRL
);
1587 uart_console_write(&sport
->port
, s
, count
, lpuart32_console_putchar
);
1589 /* wait for transmitter finish complete and restore CR2 */
1590 while (!(lpuart32_read(sport
->port
.membase
+ UARTSTAT
) & UARTSTAT_TC
))
1593 lpuart32_write(old_cr
, sport
->port
.membase
+ UARTCTRL
);
1597 * if the port was already initialised (eg, by a boot loader),
1598 * try to determine the current setup.
1601 lpuart_console_get_options(struct lpuart_port
*sport
, int *baud
,
1602 int *parity
, int *bits
)
1604 unsigned char cr
, bdh
, bdl
, brfa
;
1605 unsigned int sbr
, uartclk
, baud_raw
;
1607 cr
= readb(sport
->port
.membase
+ UARTCR2
);
1608 cr
&= UARTCR2_TE
| UARTCR2_RE
;
1612 /* ok, the port was enabled */
1614 cr
= readb(sport
->port
.membase
+ UARTCR1
);
1617 if (cr
& UARTCR1_PE
) {
1618 if (cr
& UARTCR1_PT
)
1629 bdh
= readb(sport
->port
.membase
+ UARTBDH
);
1630 bdh
&= UARTBDH_SBR_MASK
;
1631 bdl
= readb(sport
->port
.membase
+ UARTBDL
);
1635 brfa
= readb(sport
->port
.membase
+ UARTCR4
);
1636 brfa
&= UARTCR4_BRFA_MASK
;
1638 uartclk
= clk_get_rate(sport
->clk
);
1640 * baud = mod_clk/(16*(sbr[13]+(brfa)/32)
1642 baud_raw
= uartclk
/ (16 * (sbr
+ brfa
/ 32));
1644 if (*baud
!= baud_raw
)
1645 printk(KERN_INFO
"Serial: Console lpuart rounded baud rate"
1646 "from %d to %d\n", baud_raw
, *baud
);
1650 lpuart32_console_get_options(struct lpuart_port
*sport
, int *baud
,
1651 int *parity
, int *bits
)
1653 unsigned long cr
, bd
;
1654 unsigned int sbr
, uartclk
, baud_raw
;
1656 cr
= lpuart32_read(sport
->port
.membase
+ UARTCTRL
);
1657 cr
&= UARTCTRL_TE
| UARTCTRL_RE
;
1661 /* ok, the port was enabled */
1663 cr
= lpuart32_read(sport
->port
.membase
+ UARTCTRL
);
1666 if (cr
& UARTCTRL_PE
) {
1667 if (cr
& UARTCTRL_PT
)
1673 if (cr
& UARTCTRL_M
)
1678 bd
= lpuart32_read(sport
->port
.membase
+ UARTBAUD
);
1679 bd
&= UARTBAUD_SBR_MASK
;
1681 uartclk
= clk_get_rate(sport
->clk
);
1683 * baud = mod_clk/(16*(sbr[13]+(brfa)/32)
1685 baud_raw
= uartclk
/ (16 * sbr
);
1687 if (*baud
!= baud_raw
)
1688 printk(KERN_INFO
"Serial: Console lpuart rounded baud rate"
1689 "from %d to %d\n", baud_raw
, *baud
);
1692 static int __init
lpuart_console_setup(struct console
*co
, char *options
)
1694 struct lpuart_port
*sport
;
1701 * check whether an invalid uart number has been specified, and
1702 * if so, search for the first available port that does have
1705 if (co
->index
== -1 || co
->index
>= ARRAY_SIZE(lpuart_ports
))
1708 sport
= lpuart_ports
[co
->index
];
1713 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1715 if (sport
->lpuart32
)
1716 lpuart32_console_get_options(sport
, &baud
, &parity
, &bits
);
1718 lpuart_console_get_options(sport
, &baud
, &parity
, &bits
);
1720 if (sport
->lpuart32
)
1721 lpuart32_setup_watermark(sport
);
1723 lpuart_setup_watermark(sport
);
1725 return uart_set_options(&sport
->port
, co
, baud
, parity
, bits
, flow
);
1728 static struct uart_driver lpuart_reg
;
1729 static struct console lpuart_console
= {
1731 .write
= lpuart_console_write
,
1732 .device
= uart_console_device
,
1733 .setup
= lpuart_console_setup
,
1734 .flags
= CON_PRINTBUFFER
,
1736 .data
= &lpuart_reg
,
1739 static struct console lpuart32_console
= {
1741 .write
= lpuart32_console_write
,
1742 .device
= uart_console_device
,
1743 .setup
= lpuart_console_setup
,
1744 .flags
= CON_PRINTBUFFER
,
1746 .data
= &lpuart_reg
,
1749 static void lpuart_early_write(struct console
*con
, const char *s
, unsigned n
)
1751 struct earlycon_device
*dev
= con
->data
;
1753 uart_console_write(&dev
->port
, s
, n
, lpuart_console_putchar
);
1756 static void lpuart32_early_write(struct console
*con
, const char *s
, unsigned n
)
1758 struct earlycon_device
*dev
= con
->data
;
1760 uart_console_write(&dev
->port
, s
, n
, lpuart32_console_putchar
);
1763 static int __init
lpuart_early_console_setup(struct earlycon_device
*device
,
1766 if (!device
->port
.membase
)
1769 device
->con
->write
= lpuart_early_write
;
1773 static int __init
lpuart32_early_console_setup(struct earlycon_device
*device
,
1776 if (!device
->port
.membase
)
1779 device
->con
->write
= lpuart32_early_write
;
1783 OF_EARLYCON_DECLARE(lpuart
, "fsl,vf610-lpuart", lpuart_early_console_setup
);
1784 OF_EARLYCON_DECLARE(lpuart32
, "fsl,ls1021a-lpuart", lpuart32_early_console_setup
);
1785 EARLYCON_DECLARE(lpuart
, lpuart_early_console_setup
);
1786 EARLYCON_DECLARE(lpuart32
, lpuart32_early_console_setup
);
1788 #define LPUART_CONSOLE (&lpuart_console)
1789 #define LPUART32_CONSOLE (&lpuart32_console)
1791 #define LPUART_CONSOLE NULL
1792 #define LPUART32_CONSOLE NULL
1795 static struct uart_driver lpuart_reg
= {
1796 .owner
= THIS_MODULE
,
1797 .driver_name
= DRIVER_NAME
,
1798 .dev_name
= DEV_NAME
,
1799 .nr
= ARRAY_SIZE(lpuart_ports
),
1800 .cons
= LPUART_CONSOLE
,
1803 static int lpuart_probe(struct platform_device
*pdev
)
1805 struct device_node
*np
= pdev
->dev
.of_node
;
1806 struct lpuart_port
*sport
;
1807 struct resource
*res
;
1810 sport
= devm_kzalloc(&pdev
->dev
, sizeof(*sport
), GFP_KERNEL
);
1814 pdev
->dev
.coherent_dma_mask
= 0;
1816 ret
= of_alias_get_id(np
, "serial");
1818 dev_err(&pdev
->dev
, "failed to get alias id, errno %d\n", ret
);
1821 sport
->port
.line
= ret
;
1822 sport
->lpuart32
= of_device_is_compatible(np
, "fsl,ls1021a-lpuart");
1824 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1825 sport
->port
.membase
= devm_ioremap_resource(&pdev
->dev
, res
);
1826 if (IS_ERR(sport
->port
.membase
))
1827 return PTR_ERR(sport
->port
.membase
);
1829 sport
->port
.mapbase
= res
->start
;
1830 sport
->port
.dev
= &pdev
->dev
;
1831 sport
->port
.type
= PORT_LPUART
;
1832 sport
->port
.iotype
= UPIO_MEM
;
1833 sport
->port
.irq
= platform_get_irq(pdev
, 0);
1834 if (sport
->lpuart32
)
1835 sport
->port
.ops
= &lpuart32_pops
;
1837 sport
->port
.ops
= &lpuart_pops
;
1838 sport
->port
.flags
= UPF_BOOT_AUTOCONF
;
1840 sport
->clk
= devm_clk_get(&pdev
->dev
, "ipg");
1841 if (IS_ERR(sport
->clk
)) {
1842 ret
= PTR_ERR(sport
->clk
);
1843 dev_err(&pdev
->dev
, "failed to get uart clk: %d\n", ret
);
1847 ret
= clk_prepare_enable(sport
->clk
);
1849 dev_err(&pdev
->dev
, "failed to enable uart clk: %d\n", ret
);
1853 sport
->port
.uartclk
= clk_get_rate(sport
->clk
);
1855 lpuart_ports
[sport
->port
.line
] = sport
;
1857 platform_set_drvdata(pdev
, &sport
->port
);
1859 if (sport
->lpuart32
)
1860 lpuart_reg
.cons
= LPUART32_CONSOLE
;
1862 lpuart_reg
.cons
= LPUART_CONSOLE
;
1864 ret
= uart_add_one_port(&lpuart_reg
, &sport
->port
);
1866 clk_disable_unprepare(sport
->clk
);
1870 sport
->dma_tx_chan
= dma_request_slave_channel(sport
->port
.dev
, "tx");
1871 if (!sport
->dma_tx_chan
)
1872 dev_info(sport
->port
.dev
, "DMA tx channel request failed, "
1873 "operating without tx DMA\n");
1875 sport
->dma_rx_chan
= dma_request_slave_channel(sport
->port
.dev
, "rx");
1876 if (!sport
->dma_rx_chan
)
1877 dev_info(sport
->port
.dev
, "DMA rx channel request failed, "
1878 "operating without rx DMA\n");
1883 static int lpuart_remove(struct platform_device
*pdev
)
1885 struct lpuart_port
*sport
= platform_get_drvdata(pdev
);
1887 uart_remove_one_port(&lpuart_reg
, &sport
->port
);
1889 clk_disable_unprepare(sport
->clk
);
1891 if (sport
->dma_tx_chan
)
1892 dma_release_channel(sport
->dma_tx_chan
);
1894 if (sport
->dma_rx_chan
)
1895 dma_release_channel(sport
->dma_rx_chan
);
1900 #ifdef CONFIG_PM_SLEEP
1901 static int lpuart_suspend(struct device
*dev
)
1903 struct lpuart_port
*sport
= dev_get_drvdata(dev
);
1906 if (sport
->lpuart32
) {
1907 /* disable Rx/Tx and interrupts */
1908 temp
= lpuart32_read(sport
->port
.membase
+ UARTCTRL
);
1909 temp
&= ~(UARTCTRL_TE
| UARTCTRL_TIE
| UARTCTRL_TCIE
);
1910 lpuart32_write(temp
, sport
->port
.membase
+ UARTCTRL
);
1912 /* disable Rx/Tx and interrupts */
1913 temp
= readb(sport
->port
.membase
+ UARTCR2
);
1914 temp
&= ~(UARTCR2_TE
| UARTCR2_TIE
| UARTCR2_TCIE
);
1915 writeb(temp
, sport
->port
.membase
+ UARTCR2
);
1918 uart_suspend_port(&lpuart_reg
, &sport
->port
);
1923 static int lpuart_resume(struct device
*dev
)
1925 struct lpuart_port
*sport
= dev_get_drvdata(dev
);
1928 if (sport
->lpuart32
) {
1929 lpuart32_setup_watermark(sport
);
1930 temp
= lpuart32_read(sport
->port
.membase
+ UARTCTRL
);
1931 temp
|= (UARTCTRL_RIE
| UARTCTRL_TIE
| UARTCTRL_RE
|
1932 UARTCTRL_TE
| UARTCTRL_ILIE
);
1933 lpuart32_write(temp
, sport
->port
.membase
+ UARTCTRL
);
1935 lpuart_setup_watermark(sport
);
1936 temp
= readb(sport
->port
.membase
+ UARTCR2
);
1937 temp
|= (UARTCR2_RIE
| UARTCR2_TIE
| UARTCR2_RE
| UARTCR2_TE
);
1938 writeb(temp
, sport
->port
.membase
+ UARTCR2
);
1941 uart_resume_port(&lpuart_reg
, &sport
->port
);
1947 static SIMPLE_DEV_PM_OPS(lpuart_pm_ops
, lpuart_suspend
, lpuart_resume
);
1949 static struct platform_driver lpuart_driver
= {
1950 .probe
= lpuart_probe
,
1951 .remove
= lpuart_remove
,
1953 .name
= "fsl-lpuart",
1954 .of_match_table
= lpuart_dt_ids
,
1955 .pm
= &lpuart_pm_ops
,
1959 static int __init
lpuart_serial_init(void)
1961 int ret
= uart_register_driver(&lpuart_reg
);
1966 ret
= platform_driver_register(&lpuart_driver
);
1968 uart_unregister_driver(&lpuart_reg
);
1973 static void __exit
lpuart_serial_exit(void)
1975 platform_driver_unregister(&lpuart_driver
);
1976 uart_unregister_driver(&lpuart_reg
);
1979 module_init(lpuart_serial_init
);
1980 module_exit(lpuart_serial_exit
);
1982 MODULE_DESCRIPTION("Freescale lpuart serial port driver");
1983 MODULE_LICENSE("GPL v2");