blob: dff75dc947311cd588437363db8578cf8f180351 [file] [log] [blame]
Greg Kroah-Hartmane3b3d0f2017-11-06 18:11:51 +01001// SPDX-License-Identifier: GPL-2.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01003 * Driver for Motorola/Freescale IMX serial ports
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01005 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01007 * Author: Sascha Hauer <sascha@saschahauer.de>
8 * Copyright (C) 2004 Pengutronix
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#if defined(CONFIG_SERIAL_IMX_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
12#define SUPPORT_SYSRQ
13#endif
14
15#include <linux/module.h>
16#include <linux/ioport.h>
17#include <linux/init.h>
18#include <linux/console.h>
19#include <linux/sysrq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010020#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/tty.h>
22#include <linux/tty_flip.h>
23#include <linux/serial_core.h>
24#include <linux/serial.h>
Sascha Hauer38a41fd2008-07-05 10:02:46 +020025#include <linux/clk.h>
Fabian Godehardtb6e49132009-06-11 14:53:18 +010026#include <linux/delay.h>
Anson Huangfcfed1be2018-09-05 09:24:27 +080027#include <linux/pinctrl/consumer.h>
Oskar Schirmer534fca02009-06-11 14:52:23 +010028#include <linux/rational.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Shawn Guo22698aa2011-06-25 02:04:34 +080030#include <linux/of.h>
31#include <linux/of_device.h>
Sachin Kamate32a9f82013-01-07 10:25:03 +053032#include <linux/io.h>
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080033#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/irq.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020036#include <linux/platform_data/serial-imx.h>
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080037#include <linux/platform_data/dma-imx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Uwe Kleine-König58362d52015-12-13 11:30:03 +010039#include "serial_mctrl_gpio.h"
40
Sascha Hauerff4bfb22007-04-26 08:26:13 +010041/* Register definitions */
42#define URXD0 0x0 /* Receiver Register */
43#define URTX0 0x40 /* Transmitter Register */
44#define UCR1 0x80 /* Control Register 1 */
45#define UCR2 0x84 /* Control Register 2 */
46#define UCR3 0x88 /* Control Register 3 */
47#define UCR4 0x8c /* Control Register 4 */
48#define UFCR 0x90 /* FIFO Control Register */
49#define USR1 0x94 /* Status Register 1 */
50#define USR2 0x98 /* Status Register 2 */
51#define UESC 0x9c /* Escape Character Register */
52#define UTIM 0xa0 /* Escape Timer Register */
53#define UBIR 0xa4 /* BRM Incremental Register */
54#define UBMR 0xa8 /* BRM Modulator Register */
55#define UBRC 0xac /* Baud Rate Count Register */
Shawn Guofe6b5402011-06-25 02:04:33 +080056#define IMX21_ONEMS 0xb0 /* One Millisecond register */
57#define IMX1_UTS 0xd0 /* UART Test Register on i.mx1 */
58#define IMX21_UTS 0xb4 /* UART Test Register on all other i.mx*/
Sascha Hauerff4bfb22007-04-26 08:26:13 +010059
60/* UART Control Register Bit Fields.*/
Jiada Wang55d86932014-12-09 18:11:22 +090061#define URXD_DUMMY_READ (1<<16)
Sachin Kamat82313e62013-01-07 10:25:02 +053062#define URXD_CHARRDY (1<<15)
63#define URXD_ERR (1<<14)
64#define URXD_OVRRUN (1<<13)
65#define URXD_FRMERR (1<<12)
66#define URXD_BRK (1<<11)
67#define URXD_PRERR (1<<10)
Dirk Behme26c47412014-09-03 12:33:53 +010068#define URXD_RX_DATA (0xFF<<0)
Sachin Kamat82313e62013-01-07 10:25:02 +053069#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
70#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
71#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
72#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080073#define UCR1_ICD_REG(x) (((x) & 3) << 10) /* idle condition detect */
Sachin Kamat82313e62013-01-07 10:25:02 +053074#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +010075#define UCR1_RXDMAEN (1<<8) /* Recv ready DMA enable */
Sachin Kamat82313e62013-01-07 10:25:02 +053076#define UCR1_IREN (1<<7) /* Infrared interface enable */
77#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
78#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
79#define UCR1_SNDBRK (1<<4) /* Send break */
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +010080#define UCR1_TXDMAEN (1<<3) /* Transmitter ready DMA enable */
Sachin Kamat82313e62013-01-07 10:25:02 +053081#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080082#define UCR1_ATDMAEN (1<<2) /* Aging DMA Timer Enable */
Sachin Kamat82313e62013-01-07 10:25:02 +053083#define UCR1_DOZE (1<<1) /* Doze */
84#define UCR1_UARTEN (1<<0) /* UART enabled */
85#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
86#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
87#define UCR2_CTSC (1<<13) /* CTS pin control */
88#define UCR2_CTS (1<<12) /* Clear to send */
89#define UCR2_ESCEN (1<<11) /* Escape enable */
90#define UCR2_PREN (1<<8) /* Parity enable */
91#define UCR2_PROE (1<<7) /* Parity odd/even */
92#define UCR2_STPB (1<<6) /* Stop */
93#define UCR2_WS (1<<5) /* Word size */
94#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
95#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
96#define UCR2_TXEN (1<<2) /* Transmitter enabled */
97#define UCR2_RXEN (1<<1) /* Receiver enabled */
98#define UCR2_SRST (1<<0) /* SW reset */
99#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
100#define UCR3_PARERREN (1<<12) /* Parity enable */
101#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
102#define UCR3_DSR (1<<10) /* Data set ready */
103#define UCR3_DCD (1<<9) /* Data carrier detect */
104#define UCR3_RI (1<<8) /* Ring indicator */
Fabio Estevamb38cb7d2014-05-14 15:55:03 -0300105#define UCR3_ADNIMP (1<<7) /* Autobaud Detection Not Improved */
Sachin Kamat82313e62013-01-07 10:25:02 +0530106#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
107#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
108#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100109#define UCR3_DTRDEN (1<<3) /* Data Terminal Ready Delta Enable. */
Sachin Kamat82313e62013-01-07 10:25:02 +0530110#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
111#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
112#define UCR3_BPEN (1<<0) /* Preset registers enable */
113#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
114#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
115#define UCR4_INVR (1<<9) /* Inverted infrared reception */
116#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
117#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
118#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800119#define UCR4_IDDMAEN (1<<6) /* DMA IDLE Condition Detected */
Sachin Kamat82313e62013-01-07 10:25:02 +0530120#define UCR4_IRSC (1<<5) /* IR special case */
121#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
122#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
123#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
124#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
125#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
126#define UFCR_DCEDTE (1<<6) /* DCE/DTE mode select */
127#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
128#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
129#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
130#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
131#define USR1_RTSS (1<<14) /* RTS pin status */
132#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
133#define USR1_RTSD (1<<12) /* RTS delta */
134#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
135#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
136#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
Lucas Stach86a04ba2015-09-04 17:52:38 +0200137#define USR1_AGTIM (1<<8) /* Ageing timer interrupt flag */
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100138#define USR1_DTRD (1<<7) /* DTR Delta */
Sachin Kamat82313e62013-01-07 10:25:02 +0530139#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
140#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
141#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
142#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
143#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
144#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
145#define USR2_IDLE (1<<12) /* Idle condition */
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200146#define USR2_RIDELT (1<<10) /* Ring Interrupt Delta */
147#define USR2_RIIN (1<<9) /* Ring Indicator Input */
Sachin Kamat82313e62013-01-07 10:25:02 +0530148#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
149#define USR2_WAKE (1<<7) /* Wake */
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200150#define USR2_DCDIN (1<<5) /* Data Carrier Detect Input */
Sachin Kamat82313e62013-01-07 10:25:02 +0530151#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
152#define USR2_TXDC (1<<3) /* Transmitter complete */
153#define USR2_BRCD (1<<2) /* Break condition */
154#define USR2_ORE (1<<1) /* Overrun error */
155#define USR2_RDR (1<<0) /* Recv data ready */
156#define UTS_FRCPERR (1<<13) /* Force parity error */
157#define UTS_LOOP (1<<12) /* Loop tx and rx */
158#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
159#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
160#define UTS_TXFULL (1<<4) /* TxFIFO full */
161#define UTS_RXFULL (1<<3) /* RxFIFO full */
162#define UTS_SOFTRST (1<<0) /* Software reset */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/* We've been assigned a range on the "Low-density serial ports" major */
Sachin Kamat82313e62013-01-07 10:25:02 +0530165#define SERIAL_IMX_MAJOR 207
166#define MINOR_START 16
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200167#define DEV_NAME "ttymxc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * This determines how often we check the modem status signals
171 * for any change. They generally aren't connected to an IRQ
172 * so we have to poll them. We also check immediately before
173 * filling the TX fifo incase CTS has been dropped.
174 */
175#define MCTRL_TIMEOUT (250*HZ/1000)
176
177#define DRIVER_NAME "IMX-uart"
178
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200179#define UART_NR 8
180
Uwe Kleine-Königf95661b2015-02-24 11:17:09 +0100181/* i.MX21 type uart runs on all i.mx except i.MX1 and i.MX6q */
Shawn Guofe6b5402011-06-25 02:04:33 +0800182enum imx_uart_type {
183 IMX1_UART,
184 IMX21_UART,
Martyn Welch1c06bde62016-09-01 11:30:46 +0200185 IMX53_UART,
Huang Shijiea496e622013-07-08 17:14:17 +0800186 IMX6Q_UART,
Shawn Guofe6b5402011-06-25 02:04:33 +0800187};
188
189/* device type dependent stuff */
190struct imx_uart_data {
191 unsigned uts_reg;
192 enum imx_uart_type devtype;
193};
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195struct imx_port {
196 struct uart_port port;
197 struct timer_list timer;
198 unsigned int old_status;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100199 unsigned int have_rtscts:1;
Fabio Estevam7b7e8e82017-01-07 19:29:13 -0200200 unsigned int have_rtsgpio:1;
Huang Shijie20ff2fe2013-05-30 14:07:12 +0800201 unsigned int dte_mode:1;
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100202 struct clk *clk_ipg;
203 struct clk *clk_per;
Uwe Kleine-König7d0b0662012-05-21 21:57:39 +0200204 const struct imx_uart_data *devdata;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800205
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100206 struct mctrl_gpios *gpios;
207
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100208 /* shadow registers */
209 unsigned int ucr1;
210 unsigned int ucr2;
211 unsigned int ucr3;
212 unsigned int ucr4;
213 unsigned int ufcr;
214
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800215 /* DMA fields */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800216 unsigned int dma_is_enabled:1;
217 unsigned int dma_is_rxing:1;
218 unsigned int dma_is_txing:1;
219 struct dma_chan *dma_chan_rx, *dma_chan_tx;
220 struct scatterlist rx_sgl, tx_sgl[2];
221 void *rx_buf;
Nandor Han9d297232016-08-08 15:38:27 +0300222 struct circ_buf rx_ring;
223 unsigned int rx_periods;
224 dma_cookie_t rx_cookie;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800225 unsigned int tx_bytes;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800226 unsigned int dma_tx_nents;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -0500227 unsigned int saved_reg[10];
Eduardo Valentinc868cbb2015-08-11 10:21:23 -0700228 bool context_saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229};
230
Dirk Behme0ad5a812011-12-22 09:57:52 +0100231struct imx_port_ucrs {
232 unsigned int ucr1;
233 unsigned int ucr2;
234 unsigned int ucr3;
235};
236
Shawn Guofe6b5402011-06-25 02:04:33 +0800237static struct imx_uart_data imx_uart_devdata[] = {
238 [IMX1_UART] = {
239 .uts_reg = IMX1_UTS,
240 .devtype = IMX1_UART,
241 },
242 [IMX21_UART] = {
243 .uts_reg = IMX21_UTS,
244 .devtype = IMX21_UART,
245 },
Martyn Welch1c06bde62016-09-01 11:30:46 +0200246 [IMX53_UART] = {
247 .uts_reg = IMX21_UTS,
248 .devtype = IMX53_UART,
249 },
Huang Shijiea496e622013-07-08 17:14:17 +0800250 [IMX6Q_UART] = {
251 .uts_reg = IMX21_UTS,
252 .devtype = IMX6Q_UART,
253 },
Shawn Guofe6b5402011-06-25 02:04:33 +0800254};
255
Krzysztof Kozlowski31ada042015-05-02 00:40:02 +0900256static const struct platform_device_id imx_uart_devtype[] = {
Shawn Guofe6b5402011-06-25 02:04:33 +0800257 {
258 .name = "imx1-uart",
259 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
260 }, {
261 .name = "imx21-uart",
262 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
263 }, {
Martyn Welch1c06bde62016-09-01 11:30:46 +0200264 .name = "imx53-uart",
265 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX53_UART],
266 }, {
Huang Shijiea496e622013-07-08 17:14:17 +0800267 .name = "imx6q-uart",
268 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX6Q_UART],
269 }, {
Shawn Guofe6b5402011-06-25 02:04:33 +0800270 /* sentinel */
271 }
272};
273MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
274
Sanjeev Sharmaad3d4fd2015-02-03 16:16:06 +0530275static const struct of_device_id imx_uart_dt_ids[] = {
Huang Shijiea496e622013-07-08 17:14:17 +0800276 { .compatible = "fsl,imx6q-uart", .data = &imx_uart_devdata[IMX6Q_UART], },
Martyn Welch1c06bde62016-09-01 11:30:46 +0200277 { .compatible = "fsl,imx53-uart", .data = &imx_uart_devdata[IMX53_UART], },
Shawn Guo22698aa2011-06-25 02:04:34 +0800278 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
279 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
280 { /* sentinel */ }
281};
282MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
283
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100284static void imx_uart_writel(struct imx_port *sport, u32 val, u32 offset)
285{
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100286 switch (offset) {
287 case UCR1:
288 sport->ucr1 = val;
289 break;
290 case UCR2:
291 sport->ucr2 = val;
292 break;
293 case UCR3:
294 sport->ucr3 = val;
295 break;
296 case UCR4:
297 sport->ucr4 = val;
298 break;
299 case UFCR:
300 sport->ufcr = val;
301 break;
302 default:
303 break;
304 }
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100305 writel(val, sport->port.membase + offset);
306}
307
308static u32 imx_uart_readl(struct imx_port *sport, u32 offset)
309{
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100310 switch (offset) {
311 case UCR1:
312 return sport->ucr1;
313 break;
314 case UCR2:
315 /*
316 * UCR2_SRST is the only bit in the cached registers that might
317 * differ from the value that was last written. As it only
Uwe Kleine-König728e74a2018-06-12 11:58:37 +0200318 * automatically becomes one after being cleared, reread
319 * conditionally.
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100320 */
Stefan Agner0aa821d2018-04-20 14:44:07 +0200321 if (!(sport->ucr2 & UCR2_SRST))
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100322 sport->ucr2 = readl(sport->port.membase + offset);
323 return sport->ucr2;
324 break;
325 case UCR3:
326 return sport->ucr3;
327 break;
328 case UCR4:
329 return sport->ucr4;
330 break;
331 case UFCR:
332 return sport->ufcr;
333 break;
334 default:
335 return readl(sport->port.membase + offset);
336 }
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100337}
338
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100339static inline unsigned imx_uart_uts_reg(struct imx_port *sport)
Shawn Guofe6b5402011-06-25 02:04:33 +0800340{
341 return sport->devdata->uts_reg;
342}
343
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100344static inline int imx_uart_is_imx1(struct imx_port *sport)
Shawn Guofe6b5402011-06-25 02:04:33 +0800345{
346 return sport->devdata->devtype == IMX1_UART;
347}
348
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100349static inline int imx_uart_is_imx21(struct imx_port *sport)
Shawn Guofe6b5402011-06-25 02:04:33 +0800350{
351 return sport->devdata->devtype == IMX21_UART;
352}
353
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100354static inline int imx_uart_is_imx53(struct imx_port *sport)
Martyn Welch1c06bde62016-09-01 11:30:46 +0200355{
356 return sport->devdata->devtype == IMX53_UART;
357}
358
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100359static inline int imx_uart_is_imx6q(struct imx_port *sport)
Huang Shijiea496e622013-07-08 17:14:17 +0800360{
361 return sport->devdata->devtype == IMX6Q_UART;
362}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200364 * Save and restore functions for UCR1, UCR2 and UCR3 registers
365 */
Fabio Estevam93d94b32014-11-12 15:55:07 -0200366#if defined(CONFIG_SERIAL_IMX_CONSOLE)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100367static void imx_uart_ucrs_save(struct imx_port *sport,
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200368 struct imx_port_ucrs *ucr)
369{
370 /* save control registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100371 ucr->ucr1 = imx_uart_readl(sport, UCR1);
372 ucr->ucr2 = imx_uart_readl(sport, UCR2);
373 ucr->ucr3 = imx_uart_readl(sport, UCR3);
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200374}
375
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100376static void imx_uart_ucrs_restore(struct imx_port *sport,
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200377 struct imx_port_ucrs *ucr)
378{
379 /* restore control registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100380 imx_uart_writel(sport, ucr->ucr1, UCR1);
381 imx_uart_writel(sport, ucr->ucr2, UCR2);
382 imx_uart_writel(sport, ucr->ucr3, UCR3);
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200383}
Fabio Estevame8bfa762013-06-05 00:58:46 -0300384#endif
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200385
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100386static void imx_uart_rts_active(struct imx_port *sport, u32 *ucr2)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100387{
Fabio Estevambc2be232017-01-30 09:12:12 -0200388 *ucr2 &= ~(UCR2_CTSC | UCR2_CTS);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100389
Ian Jamisona0983c72017-09-21 10:13:12 +0200390 sport->port.mctrl |= TIOCM_RTS;
391 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100392}
393
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100394static void imx_uart_rts_inactive(struct imx_port *sport, u32 *ucr2)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100395{
Fabio Estevambc2be232017-01-30 09:12:12 -0200396 *ucr2 &= ~UCR2_CTSC;
397 *ucr2 |= UCR2_CTS;
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100398
Ian Jamisona0983c72017-09-21 10:13:12 +0200399 sport->port.mctrl &= ~TIOCM_RTS;
400 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100401}
402
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100403static void imx_uart_rts_auto(struct imx_port *sport, u32 *ucr2)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100404{
405 *ucr2 |= UCR2_CTSC;
406}
407
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100408/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100409static void imx_uart_start_rx(struct uart_port *port)
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100410{
411 struct imx_port *sport = (struct imx_port *)port;
412 unsigned int ucr1, ucr2;
413
414 ucr1 = imx_uart_readl(sport, UCR1);
415 ucr2 = imx_uart_readl(sport, UCR2);
416
417 ucr2 |= UCR2_RXEN;
418
419 if (sport->dma_is_enabled) {
420 ucr1 |= UCR1_RXDMAEN | UCR1_ATDMAEN;
421 } else {
422 ucr1 |= UCR1_RRDYEN;
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +0100423 ucr2 |= UCR2_ATEN;
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100424 }
425
426 /* Write UCR2 first as it includes RXEN */
427 imx_uart_writel(sport, ucr2, UCR2);
428 imx_uart_writel(sport, ucr1, UCR1);
429}
430
431/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100432static void imx_uart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100435 u32 ucr1;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100436
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700437 /*
438 * We are maybe in the SMP context, so if the DMA TX thread is running
439 * on other cpu, we have to wait for it to finish.
440 */
Uwe Kleine-König686351f2018-03-02 11:07:21 +0100441 if (sport->dma_is_txing)
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700442 return;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800443
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100444 ucr1 = imx_uart_readl(sport, UCR1);
445 imx_uart_writel(sport, ucr1 & ~UCR1_TXMPTYEN, UCR1);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100446
447 /* in rs485 mode disable transmitter if shifter is empty */
448 if (port->rs485.flags & SER_RS485_ENABLED &&
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100449 imx_uart_readl(sport, USR2) & USR2_TXDC) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100450 u32 ucr2 = imx_uart_readl(sport, UCR2), ucr4;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100451 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100452 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -0200453 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100454 imx_uart_rts_inactive(sport, &ucr2);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100455 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100456
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100457 imx_uart_start_rx(port);
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100458
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100459 ucr4 = imx_uart_readl(sport, UCR4);
460 ucr4 &= ~UCR4_TCEN;
461 imx_uart_writel(sport, ucr4, UCR4);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100465/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100466static void imx_uart_stop_rx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100469 u32 ucr1, ucr2;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100470
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100471 ucr1 = imx_uart_readl(sport, UCR1);
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100472 ucr2 = imx_uart_readl(sport, UCR2);
473
474 if (sport->dma_is_enabled) {
475 ucr1 &= ~(UCR1_RXDMAEN | UCR1_ATDMAEN);
476 } else {
477 ucr1 &= ~UCR1_RRDYEN;
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +0100478 ucr2 &= ~UCR2_ATEN;
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100479 }
480 imx_uart_writel(sport, ucr1, UCR1);
481
482 ucr2 &= ~UCR2_RXEN;
483 imx_uart_writel(sport, ucr2, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100486/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100487static void imx_uart_enable_ms(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct imx_port *sport = (struct imx_port *)port;
490
491 mod_timer(&sport->timer, jiffies);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100492
493 mctrl_gpio_enable_ms(sport->gpios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100496static void imx_uart_dma_tx(struct imx_port *sport);
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100497
498/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100499static inline void imx_uart_transmit_buffer(struct imx_port *sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700501 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400503 if (sport->port.x_char) {
504 /* Send next char */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100505 imx_uart_writel(sport, sport->port.x_char, URTX0);
Jiada Wang7e2fb5a2014-12-09 18:11:35 +0900506 sport->port.icount.tx++;
507 sport->port.x_char = 0;
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400508 return;
509 }
510
511 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100512 imx_uart_stop_tx(&sport->port);
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400513 return;
514 }
515
Jiada Wang91a1a902014-12-09 18:11:36 +0900516 if (sport->dma_is_enabled) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100517 u32 ucr1;
Jiada Wang91a1a902014-12-09 18:11:36 +0900518 /*
519 * We've just sent a X-char Ensure the TX DMA is enabled
520 * and the TX IRQ is disabled.
521 **/
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100522 ucr1 = imx_uart_readl(sport, UCR1);
523 ucr1 &= ~UCR1_TXMPTYEN;
Jiada Wang91a1a902014-12-09 18:11:36 +0900524 if (sport->dma_is_txing) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100525 ucr1 |= UCR1_TXDMAEN;
526 imx_uart_writel(sport, ucr1, UCR1);
Jiada Wang91a1a902014-12-09 18:11:36 +0900527 } else {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100528 imx_uart_writel(sport, ucr1, UCR1);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100529 imx_uart_dma_tx(sport);
Jiada Wang91a1a902014-12-09 18:11:36 +0900530 }
Jiada Wang91a1a902014-12-09 18:11:36 +0900531
Ian Jamison5aabd3b2017-08-28 09:02:29 +0100532 return;
Uwe Kleine-König0c549222018-03-02 11:07:22 +0100533 }
Ian Jamison5aabd3b2017-08-28 09:02:29 +0100534
535 while (!uart_circ_empty(xmit) &&
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100536 !(imx_uart_readl(sport, imx_uart_uts_reg(sport)) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /* send xmit->buf[xmit->tail]
538 * out the port here */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100539 imx_uart_writel(sport, xmit->buf[xmit->tail], URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100540 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Fabian Godehardt977757312009-06-11 14:37:19 +0100544 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
545 uart_write_wakeup(&sport->port);
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (uart_circ_empty(xmit))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100548 imx_uart_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100551static void imx_uart_dma_tx_callback(void *data)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800552{
553 struct imx_port *sport = data;
554 struct scatterlist *sgl = &sport->tx_sgl[0];
555 struct circ_buf *xmit = &sport->port.state->xmit;
556 unsigned long flags;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100557 u32 ucr1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800558
Dirk Behme42f752b2014-12-09 18:11:28 +0900559 spin_lock_irqsave(&sport->port.lock, flags);
560
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800561 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
562
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100563 ucr1 = imx_uart_readl(sport, UCR1);
564 ucr1 &= ~UCR1_TXDMAEN;
565 imx_uart_writel(sport, ucr1, UCR1);
Dirk Behmea2c718c2014-12-09 18:11:31 +0900566
Dirk Behme42f752b2014-12-09 18:11:28 +0900567 /* update the stat */
568 xmit->tail = (xmit->tail + sport->tx_bytes) & (UART_XMIT_SIZE - 1);
569 sport->port.icount.tx += sport->tx_bytes;
570
571 dev_dbg(sport->port.dev, "we finish the TX DMA.\n");
572
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800573 sport->dma_is_txing = 0;
574
Jiada Wangd64b8602014-12-09 18:11:29 +0900575 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
576 uart_write_wakeup(&sport->port);
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700577
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900578 if (!uart_circ_empty(xmit) && !uart_tx_stopped(&sport->port))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100579 imx_uart_dma_tx(sport);
Uwe Kleine-König18665412018-03-02 11:07:28 +0100580 else if (sport->port.rs485.flags & SER_RS485_ENABLED) {
581 u32 ucr4 = imx_uart_readl(sport, UCR4);
582 ucr4 |= UCR4_TCEN;
583 imx_uart_writel(sport, ucr4, UCR4);
584 }
Uwe Kleine-König64432a82017-07-18 14:01:52 +0200585
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900586 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800587}
588
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100589/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100590static void imx_uart_dma_tx(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800591{
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800592 struct circ_buf *xmit = &sport->port.state->xmit;
593 struct scatterlist *sgl = sport->tx_sgl;
594 struct dma_async_tx_descriptor *desc;
595 struct dma_chan *chan = sport->dma_chan_tx;
596 struct device *dev = sport->port.dev;
Uwe Kleine-König18665412018-03-02 11:07:28 +0100597 u32 ucr1, ucr4;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800598 int ret;
599
Dirk Behme42f752b2014-12-09 18:11:28 +0900600 if (sport->dma_is_txing)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800601 return;
602
Uwe Kleine-König18665412018-03-02 11:07:28 +0100603 ucr4 = imx_uart_readl(sport, UCR4);
604 ucr4 &= ~UCR4_TCEN;
605 imx_uart_writel(sport, ucr4, UCR4);
606
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800607 sport->tx_bytes = uart_circ_chars_pending(xmit);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800608
Dirk Behme7942f852014-12-09 18:11:25 +0900609 if (xmit->tail < xmit->head) {
610 sport->dma_tx_nents = 1;
611 sg_init_one(sgl, xmit->buf + xmit->tail, sport->tx_bytes);
612 } else {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800613 sport->dma_tx_nents = 2;
614 sg_init_table(sgl, 2);
615 sg_set_buf(sgl, xmit->buf + xmit->tail,
616 UART_XMIT_SIZE - xmit->tail);
617 sg_set_buf(sgl + 1, xmit->buf, xmit->head);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800618 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800619
620 ret = dma_map_sg(dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
621 if (ret == 0) {
622 dev_err(dev, "DMA mapping error for TX.\n");
623 return;
624 }
625 desc = dmaengine_prep_slave_sg(chan, sgl, sport->dma_tx_nents,
626 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT);
627 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +0900628 dma_unmap_sg(dev, sgl, sport->dma_tx_nents,
629 DMA_TO_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800630 dev_err(dev, "We cannot prepare for the TX slave dma!\n");
631 return;
632 }
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100633 desc->callback = imx_uart_dma_tx_callback;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800634 desc->callback_param = sport;
635
636 dev_dbg(dev, "TX: prepare to send %lu bytes by DMA.\n",
637 uart_circ_chars_pending(xmit));
Dirk Behmea2c718c2014-12-09 18:11:31 +0900638
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100639 ucr1 = imx_uart_readl(sport, UCR1);
640 ucr1 |= UCR1_TXDMAEN;
641 imx_uart_writel(sport, ucr1, UCR1);
Dirk Behmea2c718c2014-12-09 18:11:31 +0900642
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800643 /* fire it */
644 sport->dma_is_txing = 1;
645 dmaengine_submit(desc);
646 dma_async_issue_pending(chan);
647 return;
648}
649
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100650/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100651static void imx_uart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100654 u32 ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Uwe Kleine-König48669b62018-03-02 11:07:29 +0100656 if (!sport->port.x_char && uart_circ_empty(&port->state->xmit))
657 return;
658
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100659 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König18665412018-03-02 11:07:28 +0100660 u32 ucr2;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100661
662 ucr2 = imx_uart_readl(sport, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100663 if (port->rs485.flags & SER_RS485_RTS_ON_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100664 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -0200665 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100666 imx_uart_rts_inactive(sport, &ucr2);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100667 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100668
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100669 if (!(port->rs485.flags & SER_RS485_RX_DURING_TX))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100670 imx_uart_stop_rx(port);
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100671
Uwe Kleine-König18665412018-03-02 11:07:28 +0100672 /*
673 * Enable transmitter and shifter empty irq only if DMA is off.
674 * In the DMA case this is done in the tx-callback.
675 */
676 if (!sport->dma_is_enabled) {
677 u32 ucr4 = imx_uart_readl(sport, UCR4);
678 ucr4 |= UCR4_TCEN;
679 imx_uart_writel(sport, ucr4, UCR4);
680 }
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100681 }
682
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800683 if (!sport->dma_is_enabled) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100684 ucr1 = imx_uart_readl(sport, UCR1);
685 imx_uart_writel(sport, ucr1 | UCR1_TXMPTYEN, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800688 if (sport->dma_is_enabled) {
Jiada Wang91a1a902014-12-09 18:11:36 +0900689 if (sport->port.x_char) {
690 /* We have X-char to send, so enable TX IRQ and
691 * disable TX DMA to let TX interrupt to send X-char */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100692 ucr1 = imx_uart_readl(sport, UCR1);
693 ucr1 &= ~UCR1_TXDMAEN;
694 ucr1 |= UCR1_TXMPTYEN;
695 imx_uart_writel(sport, ucr1, UCR1);
Jiada Wang91a1a902014-12-09 18:11:36 +0900696 return;
697 }
698
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400699 if (!uart_circ_empty(&port->state->xmit) &&
700 !uart_tx_stopped(port))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100701 imx_uart_dma_tx(sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800702 return;
703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100706static irqreturn_t imx_uart_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100707{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800708 struct imx_port *sport = dev_id;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100709 u32 usr1;
Sascha Hauerceca6292005-10-12 19:58:08 +0100710
jun qianc9749912018-08-27 07:49:04 -0700711 spin_lock(&sport->port.lock);
Sascha Hauerceca6292005-10-12 19:58:08 +0100712
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100713 imx_uart_writel(sport, USR1_RTSD, USR1);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100714 usr1 = imx_uart_readl(sport, USR1) & USR1_RTSS;
715 uart_handle_cts_change(&sport->port, !!usr1);
Alan Coxbdc04e32009-09-19 13:13:31 -0700716 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100717
jun qianc9749912018-08-27 07:49:04 -0700718 spin_unlock(&sport->port.lock);
Sascha Hauerceca6292005-10-12 19:58:08 +0100719 return IRQ_HANDLED;
720}
721
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100722static irqreturn_t imx_uart_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800724 struct imx_port *sport = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
jun qianc9749912018-08-27 07:49:04 -0700726 spin_lock(&sport->port.lock);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100727 imx_uart_transmit_buffer(sport);
jun qianc9749912018-08-27 07:49:04 -0700728 spin_unlock(&sport->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return IRQ_HANDLED;
730}
731
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100732static irqreturn_t imx_uart_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530735 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100736 struct tty_port *port = &sport->port.state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
jun qianc9749912018-08-27 07:49:04 -0700738 spin_lock(&sport->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100740 while (imx_uart_readl(sport, USR2) & USR2_RDR) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100741 u32 usr2;
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 flg = TTY_NORMAL;
744 sport->port.icount.rx++;
745
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100746 rx = imx_uart_readl(sport, URXD0);
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100747
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100748 usr2 = imx_uart_readl(sport, USR2);
749 if (usr2 & USR2_BRCD) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100750 imx_uart_writel(sport, USR2_BRCD, USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100751 if (uart_handle_break(&sport->port))
752 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100755 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100756 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Hui Wang019dc9e2011-08-24 17:41:47 +0800758 if (unlikely(rx & URXD_ERR)) {
759 if (rx & URXD_BRK)
760 sport->port.icount.brk++;
761 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100762 sport->port.icount.parity++;
763 else if (rx & URXD_FRMERR)
764 sport->port.icount.frame++;
765 if (rx & URXD_OVRRUN)
766 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Sascha Hauer864eeed2008-04-17 08:39:22 +0100768 if (rx & sport->port.ignore_status_mask) {
769 if (++ignored > 100)
770 goto out;
771 continue;
772 }
773
Eric Nelson8d267fd2014-12-18 12:37:13 -0700774 rx &= (sport->port.read_status_mask | 0xFF);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100775
Hui Wang019dc9e2011-08-24 17:41:47 +0800776 if (rx & URXD_BRK)
777 flg = TTY_BREAK;
778 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100779 flg = TTY_PARITY;
780 else if (rx & URXD_FRMERR)
781 flg = TTY_FRAME;
782 if (rx & URXD_OVRRUN)
783 flg = TTY_OVERRUN;
784
785#ifdef SUPPORT_SYSRQ
786 sport->port.sysrq = 0;
787#endif
788 }
789
Jiada Wang55d86932014-12-09 18:11:22 +0900790 if (sport->port.ignore_status_mask & URXD_DUMMY_READ)
791 goto out;
792
Manfred Schlaegl9b289932015-06-20 19:25:35 +0200793 if (tty_insert_flip_char(port, rx, flg) == 0)
794 sport->port.icount.buf_overrun++;
Sascha Hauer864eeed2008-04-17 08:39:22 +0100795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797out:
jun qianc9749912018-08-27 07:49:04 -0700798 spin_unlock(&sport->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100799 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100803static void imx_uart_clear_rx_errors(struct imx_port *sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800804
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100805/*
806 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
807 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100808static unsigned int imx_uart_get_hwmctrl(struct imx_port *sport)
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100809{
810 unsigned int tmp = TIOCM_DSR;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100811 unsigned usr1 = imx_uart_readl(sport, USR1);
812 unsigned usr2 = imx_uart_readl(sport, USR2);
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100813
814 if (usr1 & USR1_RTSS)
815 tmp |= TIOCM_CTS;
816
817 /* in DCE mode DCDIN is always 0 */
Sascha Hauer4b75f802016-09-26 15:55:31 +0200818 if (!(usr2 & USR2_DCDIN))
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100819 tmp |= TIOCM_CAR;
820
821 if (sport->dte_mode)
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100822 if (!(imx_uart_readl(sport, USR2) & USR2_RIIN))
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100823 tmp |= TIOCM_RI;
824
825 return tmp;
826}
827
828/*
829 * Handle any change of modem status signal since we were last called.
830 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100831static void imx_uart_mctrl_check(struct imx_port *sport)
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100832{
833 unsigned int status, changed;
834
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100835 status = imx_uart_get_hwmctrl(sport);
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100836 changed = status ^ sport->old_status;
837
838 if (changed == 0)
839 return;
840
841 sport->old_status = status;
842
843 if (changed & TIOCM_RI && status & TIOCM_RI)
844 sport->port.icount.rng++;
845 if (changed & TIOCM_DSR)
846 sport->port.icount.dsr++;
847 if (changed & TIOCM_CAR)
848 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
849 if (changed & TIOCM_CTS)
850 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
851
852 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
853}
854
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100855static irqreturn_t imx_uart_int(int irq, void *dev_id)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200856{
857 struct imx_port *sport = dev_id;
Uwe Kleine-König43776892018-02-18 22:02:44 +0100858 unsigned int usr1, usr2, ucr1, ucr2, ucr3, ucr4;
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100859 irqreturn_t ret = IRQ_NONE;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200860
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100861 usr1 = imx_uart_readl(sport, USR1);
862 usr2 = imx_uart_readl(sport, USR2);
863 ucr1 = imx_uart_readl(sport, UCR1);
864 ucr2 = imx_uart_readl(sport, UCR2);
865 ucr3 = imx_uart_readl(sport, UCR3);
866 ucr4 = imx_uart_readl(sport, UCR4);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200867
Uwe Kleine-König43776892018-02-18 22:02:44 +0100868 /*
869 * Even if a condition is true that can trigger an irq only handle it if
870 * the respective irq source is enabled. This prevents some undesired
871 * actions, for example if a character that sits in the RX FIFO and that
872 * should be fetched via DMA is tried to be fetched using PIO. Or the
873 * receiver is currently off and so reading from URXD0 results in an
874 * exception. So just mask the (raw) status bits for disabled irqs.
875 */
876 if ((ucr1 & UCR1_RRDYEN) == 0)
877 usr1 &= ~USR1_RRDY;
878 if ((ucr2 & UCR2_ATEN) == 0)
879 usr1 &= ~USR1_AGTIM;
880 if ((ucr1 & UCR1_TXMPTYEN) == 0)
881 usr1 &= ~USR1_TRDY;
882 if ((ucr4 & UCR4_TCEN) == 0)
883 usr2 &= ~USR2_TXDC;
884 if ((ucr3 & UCR3_DTRDEN) == 0)
885 usr1 &= ~USR1_DTRD;
886 if ((ucr1 & UCR1_RTSDEN) == 0)
887 usr1 &= ~USR1_RTSD;
888 if ((ucr3 & UCR3_AWAKEN) == 0)
889 usr1 &= ~USR1_AWAKE;
890 if ((ucr4 & UCR4_OREN) == 0)
891 usr2 &= ~USR2_ORE;
892
893 if (usr1 & (USR1_RRDY | USR1_AGTIM)) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100894 imx_uart_rxint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100895 ret = IRQ_HANDLED;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800896 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200897
Uwe Kleine-König43776892018-02-18 22:02:44 +0100898 if ((usr1 & USR1_TRDY) || (usr2 & USR2_TXDC)) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100899 imx_uart_txint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100900 ret = IRQ_HANDLED;
901 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200902
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100903 if (usr1 & USR1_DTRD) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100904 imx_uart_writel(sport, USR1_DTRD, USR1);
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100905
jun qianc9749912018-08-27 07:49:04 -0700906 spin_lock(&sport->port.lock);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100907 imx_uart_mctrl_check(sport);
jun qianc9749912018-08-27 07:49:04 -0700908 spin_unlock(&sport->port.lock);
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100909
910 ret = IRQ_HANDLED;
911 }
912
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100913 if (usr1 & USR1_RTSD) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100914 imx_uart_rtsint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100915 ret = IRQ_HANDLED;
916 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200917
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100918 if (usr1 & USR1_AWAKE) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100919 imx_uart_writel(sport, USR1_AWAKE, USR1);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100920 ret = IRQ_HANDLED;
921 }
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200922
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100923 if (usr2 & USR2_ORE) {
Alexander Steinf1f836e2013-05-14 17:06:07 +0200924 sport->port.icount.overrun++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100925 imx_uart_writel(sport, USR2_ORE, USR2);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100926 ret = IRQ_HANDLED;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200927 }
928
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100929 return ret;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932/*
933 * Return TIOCSER_TEMT when transmitter is not busy.
934 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100935static unsigned int imx_uart_tx_empty(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937 struct imx_port *sport = (struct imx_port *)port;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800938 unsigned int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100940 ret = (imx_uart_readl(sport, USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800941
942 /* If the TX DMA is working, return 0. */
Uwe Kleine-König686351f2018-03-02 11:07:21 +0100943 if (sport->dma_is_txing)
Huang Shijie1ce43e52013-10-11 18:30:59 +0800944 ret = 0;
945
946 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100949/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100950static unsigned int imx_uart_get_mctrl(struct uart_port *port)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100951{
952 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100953 unsigned int ret = imx_uart_get_hwmctrl(sport);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100954
955 mctrl_gpio_get(sport->gpios, &ret);
956
957 return ret;
958}
959
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100960/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100961static void imx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100963 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100964 u32 ucr3, uts;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100965
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100966 if (!(port->rs485.flags & SER_RS485_ENABLED)) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100967 u32 ucr2;
968
969 ucr2 = imx_uart_readl(sport, UCR2);
970 ucr2 &= ~(UCR2_CTS | UCR2_CTSC);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100971 if (mctrl & TIOCM_RTS)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100972 ucr2 |= UCR2_CTS | UCR2_CTSC;
973 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100974 }
Huang Shijie6b471a92013-11-29 17:29:24 +0800975
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100976 ucr3 = imx_uart_readl(sport, UCR3) & ~UCR3_DSR;
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200977 if (!(mctrl & TIOCM_DTR))
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100978 ucr3 |= UCR3_DSR;
979 imx_uart_writel(sport, ucr3, UCR3);
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200980
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100981 uts = imx_uart_readl(sport, imx_uart_uts_reg(sport)) & ~UTS_LOOP;
Huang Shijie6b471a92013-11-29 17:29:24 +0800982 if (mctrl & TIOCM_LOOP)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100983 uts |= UTS_LOOP;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100984 imx_uart_writel(sport, uts, imx_uart_uts_reg(sport));
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100985
986 mctrl_gpio_set(sport->gpios, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
989/*
990 * Interrupts always disabled.
991 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100992static void imx_uart_break_ctl(struct uart_port *port, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100995 unsigned long flags;
996 u32 ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 spin_lock_irqsave(&sport->port.lock, flags);
999
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001000 ucr1 = imx_uart_readl(sport, UCR1) & ~UCR1_SNDBRK;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001001
Sachin Kamat82313e62013-01-07 10:25:02 +05301002 if (break_state != 0)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001003 ucr1 |= UCR1_SNDBRK;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001004
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001005 imx_uart_writel(sport, ucr1, UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 spin_unlock_irqrestore(&sport->port.lock, flags);
1008}
1009
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001010/*
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001011 * This is our per-port timeout handler, for checking the
1012 * modem status signals.
1013 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001014static void imx_uart_timeout(struct timer_list *t)
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001015{
Kees Cooke99e88a2017-10-16 14:43:17 -07001016 struct imx_port *sport = from_timer(sport, t, timer);
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001017 unsigned long flags;
1018
1019 if (sport->port.state) {
1020 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001021 imx_uart_mctrl_check(sport);
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001022 spin_unlock_irqrestore(&sport->port.lock, flags);
1023
1024 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
1025 }
1026}
1027
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001028#define RX_BUF_SIZE (PAGE_SIZE)
1029
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001030/*
Lucas Stach905c0de2015-09-04 17:52:41 +02001031 * There are two kinds of RX DMA interrupts(such as in the MX6Q):
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001032 * [1] the RX DMA buffer is full.
Lucas Stach905c0de2015-09-04 17:52:41 +02001033 * [2] the aging timer expires
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001034 *
Lucas Stach905c0de2015-09-04 17:52:41 +02001035 * Condition [2] is triggered when a character has been sitting in the FIFO
1036 * for at least 8 byte durations.
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001037 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001038static void imx_uart_dma_rx_callback(void *data)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001039{
1040 struct imx_port *sport = data;
1041 struct dma_chan *chan = sport->dma_chan_rx;
1042 struct scatterlist *sgl = &sport->rx_sgl;
Huang Shijie7cb92fd2013-10-15 15:23:40 +08001043 struct tty_port *port = &sport->port.state->port;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001044 struct dma_tx_state state;
Nandor Han9d297232016-08-08 15:38:27 +03001045 struct circ_buf *rx_ring = &sport->rx_ring;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001046 enum dma_status status;
Nandor Han9d297232016-08-08 15:38:27 +03001047 unsigned int w_bytes = 0;
1048 unsigned int r_bytes;
1049 unsigned int bd_size;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001050
Robin Gongfb7f1bf2018-06-20 00:56:58 +08001051 status = dmaengine_tx_status(chan, sport->rx_cookie, &state);
Philipp Zabel392bceed2015-05-19 10:54:09 +02001052
Nandor Han9d297232016-08-08 15:38:27 +03001053 if (status == DMA_ERROR) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001054 imx_uart_clear_rx_errors(sport);
Nandor Han9d297232016-08-08 15:38:27 +03001055 return;
Robin Gongee5e7c12014-12-09 18:11:33 +09001056 }
Lucas Stach976b39c2015-09-04 17:52:39 +02001057
Nandor Han9d297232016-08-08 15:38:27 +03001058 if (!(sport->port.ignore_status_mask & URXD_DUMMY_READ)) {
1059
1060 /*
1061 * The state-residue variable represents the empty space
1062 * relative to the entire buffer. Taking this in consideration
1063 * the head is always calculated base on the buffer total
1064 * length - DMA transaction residue. The UART script from the
1065 * SDMA firmware will jump to the next buffer descriptor,
1066 * once a DMA transaction if finalized (IMX53 RM - A.4.1.2.4).
1067 * Taking this in consideration the tail is always at the
1068 * beginning of the buffer descriptor that contains the head.
1069 */
1070
1071 /* Calculate the head */
1072 rx_ring->head = sg_dma_len(sgl) - state.residue;
1073
1074 /* Calculate the tail. */
1075 bd_size = sg_dma_len(sgl) / sport->rx_periods;
1076 rx_ring->tail = ((rx_ring->head-1) / bd_size) * bd_size;
1077
1078 if (rx_ring->head <= sg_dma_len(sgl) &&
1079 rx_ring->head > rx_ring->tail) {
1080
1081 /* Move data from tail to head */
1082 r_bytes = rx_ring->head - rx_ring->tail;
1083
1084 /* CPU claims ownership of RX DMA buffer */
1085 dma_sync_sg_for_cpu(sport->port.dev, sgl, 1,
1086 DMA_FROM_DEVICE);
1087
1088 w_bytes = tty_insert_flip_string(port,
1089 sport->rx_buf + rx_ring->tail, r_bytes);
1090
1091 /* UART retrieves ownership of RX DMA buffer */
1092 dma_sync_sg_for_device(sport->port.dev, sgl, 1,
1093 DMA_FROM_DEVICE);
1094
1095 if (w_bytes != r_bytes)
1096 sport->port.icount.buf_overrun++;
1097
1098 sport->port.icount.rx += w_bytes;
1099 } else {
1100 WARN_ON(rx_ring->head > sg_dma_len(sgl));
1101 WARN_ON(rx_ring->head <= rx_ring->tail);
1102 }
1103 }
1104
1105 if (w_bytes) {
1106 tty_flip_buffer_push(port);
1107 dev_dbg(sport->port.dev, "We get %d bytes.\n", w_bytes);
1108 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001109}
1110
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001111/* RX DMA buffer periods */
1112#define RX_DMA_PERIODS 4
1113
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001114static int imx_uart_start_rx_dma(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001115{
1116 struct scatterlist *sgl = &sport->rx_sgl;
1117 struct dma_chan *chan = sport->dma_chan_rx;
1118 struct device *dev = sport->port.dev;
1119 struct dma_async_tx_descriptor *desc;
1120 int ret;
1121
Nandor Han9d297232016-08-08 15:38:27 +03001122 sport->rx_ring.head = 0;
1123 sport->rx_ring.tail = 0;
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001124 sport->rx_periods = RX_DMA_PERIODS;
Nandor Han9d297232016-08-08 15:38:27 +03001125
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001126 sg_init_one(sgl, sport->rx_buf, RX_BUF_SIZE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001127 ret = dma_map_sg(dev, sgl, 1, DMA_FROM_DEVICE);
1128 if (ret == 0) {
1129 dev_err(dev, "DMA mapping error for RX.\n");
1130 return -EINVAL;
1131 }
Nandor Han9d297232016-08-08 15:38:27 +03001132
1133 desc = dmaengine_prep_dma_cyclic(chan, sg_dma_address(sgl),
1134 sg_dma_len(sgl), sg_dma_len(sgl) / sport->rx_periods,
1135 DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT);
1136
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001137 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +09001138 dma_unmap_sg(dev, sgl, 1, DMA_FROM_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001139 dev_err(dev, "We cannot prepare for the RX slave dma!\n");
1140 return -EINVAL;
1141 }
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001142 desc->callback = imx_uart_dma_rx_callback;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001143 desc->callback_param = sport;
1144
1145 dev_dbg(dev, "RX: prepare for the DMA.\n");
Romain Perier4139fd72017-09-28 11:03:49 +01001146 sport->dma_is_rxing = 1;
Nandor Han9d297232016-08-08 15:38:27 +03001147 sport->rx_cookie = dmaengine_submit(desc);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001148 dma_async_issue_pending(chan);
1149 return 0;
1150}
1151
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001152static void imx_uart_clear_rx_errors(struct imx_port *sport)
Nandor Han41d98b52016-08-08 15:38:28 +03001153{
Troy Kisky45ca6732018-02-23 18:27:50 -08001154 struct tty_port *port = &sport->port.state->port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001155 u32 usr1, usr2;
Nandor Han41d98b52016-08-08 15:38:28 +03001156
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001157 usr1 = imx_uart_readl(sport, USR1);
1158 usr2 = imx_uart_readl(sport, USR2);
Nandor Han41d98b52016-08-08 15:38:28 +03001159
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001160 if (usr2 & USR2_BRCD) {
Nandor Han41d98b52016-08-08 15:38:28 +03001161 sport->port.icount.brk++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001162 imx_uart_writel(sport, USR2_BRCD, USR2);
Troy Kisky45ca6732018-02-23 18:27:50 -08001163 uart_handle_break(&sport->port);
1164 if (tty_insert_flip_char(port, 0, TTY_BREAK) == 0)
1165 sport->port.icount.buf_overrun++;
1166 tty_flip_buffer_push(port);
1167 } else {
1168 dev_err(sport->port.dev, "DMA transaction error.\n");
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001169 if (usr1 & USR1_FRAMERR) {
Troy Kisky45ca6732018-02-23 18:27:50 -08001170 sport->port.icount.frame++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001171 imx_uart_writel(sport, USR1_FRAMERR, USR1);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001172 } else if (usr1 & USR1_PARITYERR) {
Troy Kisky45ca6732018-02-23 18:27:50 -08001173 sport->port.icount.parity++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001174 imx_uart_writel(sport, USR1_PARITYERR, USR1);
Troy Kisky45ca6732018-02-23 18:27:50 -08001175 }
Nandor Han41d98b52016-08-08 15:38:28 +03001176 }
1177
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001178 if (usr2 & USR2_ORE) {
Nandor Han41d98b52016-08-08 15:38:28 +03001179 sport->port.icount.overrun++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001180 imx_uart_writel(sport, USR2_ORE, USR2);
Nandor Han41d98b52016-08-08 15:38:28 +03001181 }
1182
1183}
1184
Lucas Stachcc323822015-09-04 17:52:37 +02001185#define TXTL_DEFAULT 2 /* reset default */
1186#define RXTL_DEFAULT 1 /* reset default */
Lucas Stach184bd702015-09-04 17:52:40 +02001187#define TXTL_DMA 8 /* DMA burst setting */
1188#define RXTL_DMA 9 /* DMA burst setting */
Lucas Stachcc323822015-09-04 17:52:37 +02001189
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001190static void imx_uart_setup_ufcr(struct imx_port *sport,
1191 unsigned char txwl, unsigned char rxwl)
Lucas Stachcc323822015-09-04 17:52:37 +02001192{
1193 unsigned int val;
1194
1195 /* set receiver / transmitter trigger level */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001196 val = imx_uart_readl(sport, UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
Lucas Stachcc323822015-09-04 17:52:37 +02001197 val |= txwl << UFCR_TXTL_SHF | rxwl;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001198 imx_uart_writel(sport, val, UFCR);
Lucas Stachcc323822015-09-04 17:52:37 +02001199}
1200
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001201static void imx_uart_dma_exit(struct imx_port *sport)
1202{
1203 if (sport->dma_chan_rx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001204 dmaengine_terminate_sync(sport->dma_chan_rx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001205 dma_release_channel(sport->dma_chan_rx);
1206 sport->dma_chan_rx = NULL;
Nandor Han9d297232016-08-08 15:38:27 +03001207 sport->rx_cookie = -EINVAL;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001208 kfree(sport->rx_buf);
1209 sport->rx_buf = NULL;
1210 }
1211
1212 if (sport->dma_chan_tx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001213 dmaengine_terminate_sync(sport->dma_chan_tx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001214 dma_release_channel(sport->dma_chan_tx);
1215 sport->dma_chan_tx = NULL;
1216 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001217}
1218
1219static int imx_uart_dma_init(struct imx_port *sport)
1220{
Huang Shijieb09c74a2013-08-29 16:29:25 +08001221 struct dma_slave_config slave_config = {};
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001222 struct device *dev = sport->port.dev;
1223 int ret;
1224
1225 /* Prepare for RX : */
1226 sport->dma_chan_rx = dma_request_slave_channel(dev, "rx");
1227 if (!sport->dma_chan_rx) {
1228 dev_dbg(dev, "cannot get the DMA channel.\n");
1229 ret = -EINVAL;
1230 goto err;
1231 }
1232
1233 slave_config.direction = DMA_DEV_TO_MEM;
1234 slave_config.src_addr = sport->port.mapbase + URXD0;
1235 slave_config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001236 /* one byte less than the watermark level to enable the aging timer */
1237 slave_config.src_maxburst = RXTL_DMA - 1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001238 ret = dmaengine_slave_config(sport->dma_chan_rx, &slave_config);
1239 if (ret) {
1240 dev_err(dev, "error in RX dma configuration.\n");
1241 goto err;
1242 }
1243
Martyn Welchf654b23c2017-09-28 11:07:40 +01001244 sport->rx_buf = kzalloc(RX_BUF_SIZE, GFP_KERNEL);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001245 if (!sport->rx_buf) {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001246 ret = -ENOMEM;
1247 goto err;
1248 }
Nandor Han9d297232016-08-08 15:38:27 +03001249 sport->rx_ring.buf = sport->rx_buf;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001250
1251 /* Prepare for TX : */
1252 sport->dma_chan_tx = dma_request_slave_channel(dev, "tx");
1253 if (!sport->dma_chan_tx) {
1254 dev_err(dev, "cannot get the TX DMA channel!\n");
1255 ret = -EINVAL;
1256 goto err;
1257 }
1258
1259 slave_config.direction = DMA_MEM_TO_DEV;
1260 slave_config.dst_addr = sport->port.mapbase + URTX0;
1261 slave_config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001262 slave_config.dst_maxburst = TXTL_DMA;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001263 ret = dmaengine_slave_config(sport->dma_chan_tx, &slave_config);
1264 if (ret) {
1265 dev_err(dev, "error in TX dma configuration.");
1266 goto err;
1267 }
1268
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001269 return 0;
1270err:
1271 imx_uart_dma_exit(sport);
1272 return ret;
1273}
1274
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001275static void imx_uart_enable_dma(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001276{
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001277 u32 ucr1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001278
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001279 imx_uart_setup_ufcr(sport, TXTL_DMA, RXTL_DMA);
Uwe Kleine-König02b0abd32018-03-02 11:07:24 +01001280
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001281 /* set UCR1 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001282 ucr1 = imx_uart_readl(sport, UCR1);
1283 ucr1 |= UCR1_RXDMAEN | UCR1_TXDMAEN | UCR1_ATDMAEN;
1284 imx_uart_writel(sport, ucr1, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001285
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001286 sport->dma_is_enabled = 1;
1287}
1288
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001289static void imx_uart_disable_dma(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001290{
Sebastian Reichel676a31d2018-05-07 23:36:09 +02001291 u32 ucr1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001292
1293 /* clear UCR1 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001294 ucr1 = imx_uart_readl(sport, UCR1);
1295 ucr1 &= ~(UCR1_RXDMAEN | UCR1_TXDMAEN | UCR1_ATDMAEN);
1296 imx_uart_writel(sport, ucr1, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001297
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001298 imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Lucas Stach184bd702015-09-04 17:52:40 +02001299
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001300 sport->dma_is_enabled = 0;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001301}
1302
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001303/* half the RX buffer size */
1304#define CTSTL 16
1305
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001306static int imx_uart_startup(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 struct imx_port *sport = (struct imx_port *)port;
Fabio Estevam458e2c82015-07-27 15:15:59 -03001309 int retval, i;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001310 unsigned long flags;
Uwe Kleine-König4238c002018-02-18 22:02:45 +01001311 int dma_is_inited = 0;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001312 u32 ucr1, ucr2, ucr4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Huang Shijie1cf93e02013-06-28 13:39:42 +08001314 retval = clk_prepare_enable(sport->clk_per);
1315 if (retval)
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001316 return retval;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001317 retval = clk_prepare_enable(sport->clk_ipg);
1318 if (retval) {
1319 clk_disable_unprepare(sport->clk_per);
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001320 return retval;
Huang Shijie0c375502013-06-09 10:01:19 +08001321 }
Huang Shijie28eb4272013-06-04 09:59:33 +08001322
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001323 imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 /* disable the DREN bit (Data Ready interrupt enable) before
1326 * requesting IRQs
1327 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001328 ucr4 = imx_uart_readl(sport, UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001329
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001330 /* set the trigger level for CTS */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001331 ucr4 &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
1332 ucr4 |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001333
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001334 imx_uart_writel(sport, ucr4 & ~UCR4_DREN, UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Lucas Stach7e115772015-09-04 17:52:42 +02001336 /* Can we enable the DMA support? */
Uwe Kleine-König4238c002018-02-18 22:02:45 +01001337 if (!uart_console(port) && imx_uart_dma_init(sport) == 0)
1338 dma_is_inited = 1;
Lucas Stach7e115772015-09-04 17:52:42 +02001339
Jiada Wang53794182015-04-13 18:31:43 +09001340 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijie772f8992014-05-21 08:56:28 +08001341 /* Reset fifo's and state machines */
Fabio Estevam458e2c82015-07-27 15:15:59 -03001342 i = 100;
1343
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001344 ucr2 = imx_uart_readl(sport, UCR2);
1345 ucr2 &= ~UCR2_SRST;
1346 imx_uart_writel(sport, ucr2, UCR2);
Fabio Estevam458e2c82015-07-27 15:15:59 -03001347
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001348 while (!(imx_uart_readl(sport, UCR2) & UCR2_SRST) && (--i > 0))
Fabio Estevam458e2c82015-07-27 15:15:59 -03001349 udelay(1);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 /*
1352 * Finally, clear and enable interrupts
1353 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001354 imx_uart_writel(sport, USR1_RTSD | USR1_DTRD, USR1);
1355 imx_uart_writel(sport, USR2_ORE, USR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001357 ucr1 = imx_uart_readl(sport, UCR1) & ~UCR1_RRDYEN;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001358 ucr1 |= UCR1_UARTEN;
Nandor Han6376cd32017-06-28 15:59:36 +02001359 if (sport->have_rtscts)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001360 ucr1 |= UCR1_RTSDEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001361
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001362 imx_uart_writel(sport, ucr1, UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001364 ucr4 = imx_uart_readl(sport, UCR4) & ~UCR4_OREN;
Troy Kisky1f043572017-11-16 11:14:53 -07001365 if (!sport->dma_is_enabled)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001366 ucr4 |= UCR4_OREN;
1367 imx_uart_writel(sport, ucr4, UCR4);
Jiada Wang6f026d6b2014-12-09 18:11:34 +09001368
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001369 ucr2 = imx_uart_readl(sport, UCR2) & ~UCR2_ATEN;
1370 ucr2 |= (UCR2_RXEN | UCR2_TXEN);
Lucas Stachbff09b02013-05-30 15:47:04 +02001371 if (!sport->have_rtscts)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001372 ucr2 |= UCR2_IRTS;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001373 /*
1374 * make sure the edge sensitive RTS-irq is disabled,
1375 * we're using RTSD instead.
1376 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001377 if (!imx_uart_is_imx1(sport))
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001378 ucr2 &= ~UCR2_RTSEN;
1379 imx_uart_writel(sport, ucr2, UCR2);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001380
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001381 if (!imx_uart_is_imx1(sport)) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001382 u32 ucr3;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001383
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001384 ucr3 = imx_uart_readl(sport, UCR3);
1385
1386 ucr3 |= UCR3_DTRDEN | UCR3_RI | UCR3_DCD;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001387
1388 if (sport->dte_mode)
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02001389 /* disable broken interrupts */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001390 ucr3 &= ~(UCR3_RI | UCR3_DCD);
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001391
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001392 imx_uart_writel(sport, ucr3, UCR3);
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001393 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +02001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /*
1396 * Enable modem status interrupts
1397 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001398 imx_uart_enable_ms(&sport->port);
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001399
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001400 if (dma_is_inited) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001401 imx_uart_enable_dma(sport);
1402 imx_uart_start_rx_dma(sport);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001403 } else {
1404 ucr1 = imx_uart_readl(sport, UCR1);
1405 ucr1 |= UCR1_RRDYEN;
1406 imx_uart_writel(sport, ucr1, UCR1);
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001407
1408 ucr2 = imx_uart_readl(sport, UCR2);
1409 ucr2 |= UCR2_ATEN;
1410 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001411 }
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001412
Sachin Kamat82313e62013-01-07 10:25:02 +05301413 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001418static void imx_uart_shutdown(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
1420 struct imx_port *sport = (struct imx_port *)port;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001421 unsigned long flags;
Sebastian Reichel339c7a82018-05-24 19:30:24 +02001422 u32 ucr1, ucr2, ucr4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001424 if (sport->dma_is_enabled) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001425 dmaengine_terminate_sync(sport->dma_chan_tx);
Sebastian Reichel7722c242018-05-07 23:36:10 +02001426 if (sport->dma_is_txing) {
1427 dma_unmap_sg(sport->port.dev, &sport->tx_sgl[0],
1428 sport->dma_tx_nents, DMA_TO_DEVICE);
1429 sport->dma_is_txing = 0;
1430 }
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001431 dmaengine_terminate_sync(sport->dma_chan_rx);
Sebastian Reichel7722c242018-05-07 23:36:10 +02001432 if (sport->dma_is_rxing) {
1433 dma_unmap_sg(sport->port.dev, &sport->rx_sgl,
1434 1, DMA_FROM_DEVICE);
1435 sport->dma_is_rxing = 0;
1436 }
Huang Shijiea4688bc2014-09-19 15:42:57 +08001437
Jiada Wang73631812014-12-09 18:11:23 +09001438 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001439 imx_uart_stop_tx(port);
1440 imx_uart_stop_rx(port);
1441 imx_uart_disable_dma(sport);
Jiada Wang73631812014-12-09 18:11:23 +09001442 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001443 imx_uart_dma_exit(sport);
1444 }
1445
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001446 mctrl_gpio_disable_ms(sport->gpios);
1447
Xinyu Chen9ec18822012-08-27 09:36:51 +02001448 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001449 ucr2 = imx_uart_readl(sport, UCR2);
Sebastian Reichel0fdf1782018-05-24 19:30:23 +02001450 ucr2 &= ~(UCR2_TXEN | UCR2_ATEN);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001451 imx_uart_writel(sport, ucr2, UCR2);
Sebastian Reichel339c7a82018-05-24 19:30:24 +02001452
1453 ucr4 = imx_uart_readl(sport, UCR4);
1454 ucr4 &= ~UCR4_OREN;
1455 imx_uart_writel(sport, ucr4, UCR4);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001456 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 /*
1459 * Stop our timer.
1460 */
1461 del_timer_sync(&sport->timer);
1462
1463 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 * Disable all interrupts, port and break condition.
1465 */
1466
Xinyu Chen9ec18822012-08-27 09:36:51 +02001467 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001468 ucr1 = imx_uart_readl(sport, UCR1);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001469 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN | UCR1_RXDMAEN | UCR1_ATDMAEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001470
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001471 imx_uart_writel(sport, ucr1, UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001472 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +08001473
Huang Shijie1cf93e02013-06-28 13:39:42 +08001474 clk_disable_unprepare(sport->clk_per);
1475 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +01001478/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001479static void imx_uart_flush_buffer(struct uart_port *port)
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001480{
1481 struct imx_port *sport = (struct imx_port *)port;
Dirk Behme82e86ae2014-12-09 18:11:27 +09001482 struct scatterlist *sgl = &sport->tx_sgl[0];
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001483 u32 ucr2;
Fabio Estevam4f86a952015-02-07 15:46:41 -02001484 int i = 100, ubir, ubmr, uts;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001485
Dirk Behme82e86ae2014-12-09 18:11:27 +09001486 if (!sport->dma_chan_tx)
1487 return;
1488
1489 sport->tx_bytes = 0;
1490 dmaengine_terminate_all(sport->dma_chan_tx);
1491 if (sport->dma_is_txing) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001492 u32 ucr1;
1493
Dirk Behme82e86ae2014-12-09 18:11:27 +09001494 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents,
1495 DMA_TO_DEVICE);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001496 ucr1 = imx_uart_readl(sport, UCR1);
1497 ucr1 &= ~UCR1_TXDMAEN;
1498 imx_uart_writel(sport, ucr1, UCR1);
Martyn Welch0f7bdbd2017-09-28 11:38:51 +01001499 sport->dma_is_txing = 0;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001500 }
Fabio Estevam934084a2015-01-13 10:00:26 -02001501
1502 /*
1503 * According to the Reference Manual description of the UART SRST bit:
Martyn Welch263763c2017-10-04 17:13:27 +01001504 *
Fabio Estevam934084a2015-01-13 10:00:26 -02001505 * "Reset the transmit and receive state machines,
1506 * all FIFOs and register USR1, USR2, UBIR, UBMR, UBRC, URXD, UTXD
Martyn Welch263763c2017-10-04 17:13:27 +01001507 * and UTS[6-3]".
1508 *
1509 * We don't need to restore the old values from USR1, USR2, URXD and
1510 * UTXD. UBRC is read only, so only save/restore the other three
1511 * registers.
Fabio Estevam934084a2015-01-13 10:00:26 -02001512 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001513 ubir = imx_uart_readl(sport, UBIR);
1514 ubmr = imx_uart_readl(sport, UBMR);
1515 uts = imx_uart_readl(sport, IMX21_UTS);
Fabio Estevam934084a2015-01-13 10:00:26 -02001516
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001517 ucr2 = imx_uart_readl(sport, UCR2);
1518 ucr2 &= ~UCR2_SRST;
1519 imx_uart_writel(sport, ucr2, UCR2);
Fabio Estevam934084a2015-01-13 10:00:26 -02001520
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001521 while (!(imx_uart_readl(sport, UCR2) & UCR2_SRST) && (--i > 0))
Fabio Estevam934084a2015-01-13 10:00:26 -02001522 udelay(1);
1523
1524 /* Restore the registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001525 imx_uart_writel(sport, ubir, UBIR);
1526 imx_uart_writel(sport, ubmr, UBMR);
1527 imx_uart_writel(sport, uts, IMX21_UTS);
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001528}
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530static void
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001531imx_uart_set_termios(struct uart_port *port, struct ktermios *termios,
1532 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
1534 struct imx_port *sport = (struct imx_port *)port;
1535 unsigned long flags;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001536 u32 ucr2, old_ucr1, old_ucr2, ufcr;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001537 unsigned int baud, quot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001539 unsigned long div;
Oskar Schirmer534fca02009-06-11 14:52:23 +01001540 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001541 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 * We only support CS7 and CS8.
1545 */
1546 while ((termios->c_cflag & CSIZE) != CS7 &&
1547 (termios->c_cflag & CSIZE) != CS8) {
1548 termios->c_cflag &= ~CSIZE;
1549 termios->c_cflag |= old_csize;
1550 old_csize = CS8;
1551 }
1552
1553 if ((termios->c_cflag & CSIZE) == CS8)
1554 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
1555 else
1556 ucr2 = UCR2_SRST | UCR2_IRTS;
1557
1558 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +05301559 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +01001560 ucr2 &= ~UCR2_IRTS;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001561
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001562 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001563 /*
1564 * RTS is mandatory for rs485 operation, so keep
1565 * it under manual control and keep transmitter
1566 * disabled.
1567 */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001568 if (port->rs485.flags &
1569 SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001570 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001571 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001572 imx_uart_rts_inactive(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001573 } else {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001574 imx_uart_rts_auto(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001575 }
Sascha Hauer5b802342006-05-04 14:07:42 +01001576 } else {
1577 termios->c_cflag &= ~CRTSCTS;
1578 }
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001579 } else if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001580 /* disable transmitter */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001581 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001582 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001583 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001584 imx_uart_rts_inactive(sport, &ucr2);
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001585 }
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 if (termios->c_cflag & CSTOPB)
1589 ucr2 |= UCR2_STPB;
1590 if (termios->c_cflag & PARENB) {
1591 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +00001592 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 ucr2 |= UCR2_PROE;
1594 }
1595
Eric Miao995234d2011-12-23 05:39:27 +08001596 del_timer_sync(&sport->timer);
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 /*
1599 * Ask the core to calculate the divisor for us.
1600 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001601 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 quot = uart_get_divisor(port, baud);
1603
1604 spin_lock_irqsave(&sport->port.lock, flags);
1605
1606 sport->port.read_status_mask = 0;
1607 if (termios->c_iflag & INPCK)
1608 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
1609 if (termios->c_iflag & (BRKINT | PARMRK))
1610 sport->port.read_status_mask |= URXD_BRK;
1611
1612 /*
1613 * Characters to ignore
1614 */
1615 sport->port.ignore_status_mask = 0;
1616 if (termios->c_iflag & IGNPAR)
Eric Nelson865cea82014-12-18 12:37:14 -07001617 sport->port.ignore_status_mask |= URXD_PRERR | URXD_FRMERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (termios->c_iflag & IGNBRK) {
1619 sport->port.ignore_status_mask |= URXD_BRK;
1620 /*
1621 * If we're ignoring parity and break indicators,
1622 * ignore overruns too (for real raw support).
1623 */
1624 if (termios->c_iflag & IGNPAR)
1625 sport->port.ignore_status_mask |= URXD_OVRRUN;
1626 }
1627
Jiada Wang55d86932014-12-09 18:11:22 +09001628 if ((termios->c_cflag & CREAD) == 0)
1629 sport->port.ignore_status_mask |= URXD_DUMMY_READ;
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 /*
1632 * Update the per-port timeout.
1633 */
1634 uart_update_timeout(port, termios->c_cflag, baud);
1635
1636 /*
1637 * disable interrupts and drain transmitter
1638 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001639 old_ucr1 = imx_uart_readl(sport, UCR1);
1640 imx_uart_writel(sport,
1641 old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1642 UCR1);
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001643 old_ucr2 = imx_uart_readl(sport, UCR2);
1644 imx_uart_writel(sport, old_ucr2 & ~UCR2_ATEN, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001646 while (!(imx_uart_readl(sport, USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 barrier();
1648
1649 /* then, disable everything */
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001650 imx_uart_writel(sport, old_ucr2 & ~(UCR2_TXEN | UCR2_RXEN | UCR2_ATEN), UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001651 old_ucr2 &= (UCR2_TXEN | UCR2_RXEN | UCR2_ATEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001653 /* custom-baudrate handling */
1654 div = sport->port.uartclk / (baud * 16);
1655 if (baud == 38400 && quot != div)
1656 baud = sport->port.uartclk / (quot * 16);
Hubert Feurstein09bd00f2013-07-18 18:52:49 +02001657
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001658 div = sport->port.uartclk / (baud * 16);
1659 if (div > 7)
1660 div = 7;
1661 if (!div)
1662 div = 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001663
Oskar Schirmer534fca02009-06-11 14:52:23 +01001664 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1665 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001666
Alan Coxeab4f5a2010-06-01 22:52:52 +02001667 tdiv64 = sport->port.uartclk;
1668 tdiv64 *= num;
1669 do_div(tdiv64, denom * 16 * div);
1670 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001671 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001672
Oskar Schirmer534fca02009-06-11 14:52:23 +01001673 num -= 1;
1674 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001675
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001676 ufcr = imx_uart_readl(sport, UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001677 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001678 imx_uart_writel(sport, ufcr, UFCR);
Sascha Hauer036bb152008-07-05 10:02:44 +02001679
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001680 imx_uart_writel(sport, num, UBIR);
1681 imx_uart_writel(sport, denom, UBMR);
Oskar Schirmer534fca02009-06-11 14:52:23 +01001682
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001683 if (!imx_uart_is_imx1(sport))
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001684 imx_uart_writel(sport, sport->port.uartclk / div / 1000,
1685 IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001687 imx_uart_writel(sport, old_ucr1, UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001688
1689 /* set the parity, stop bits and data size */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001690 imx_uart_writel(sport, ucr2 | old_ucr2, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001693 imx_uart_enable_ms(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 spin_unlock_irqrestore(&sport->port.lock, flags);
1696}
1697
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001698static const char *imx_uart_type(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 struct imx_port *sport = (struct imx_port *)port;
1701
1702 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1703}
1704
1705/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 * Configure/autoconfigure the port.
1707 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001708static void imx_uart_config_port(struct uart_port *port, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
1710 struct imx_port *sport = (struct imx_port *)port;
1711
Alexander Shiyanda82f992014-02-22 16:01:33 +04001712 if (flags & UART_CONFIG_TYPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 sport->port.type = PORT_IMX;
1714}
1715
1716/*
1717 * Verify the new serial_struct (for TIOCSSERIAL).
1718 * The only change we allow are to the flags and type, and
1719 * even then only between PORT_IMX and PORT_UNKNOWN
1720 */
1721static int
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001722imx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
1724 struct imx_port *sport = (struct imx_port *)port;
1725 int ret = 0;
1726
1727 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1728 ret = -EINVAL;
1729 if (sport->port.irq != ser->irq)
1730 ret = -EINVAL;
1731 if (ser->io_type != UPIO_MEM)
1732 ret = -EINVAL;
1733 if (sport->port.uartclk / 16 != ser->baud_base)
1734 ret = -EINVAL;
Olof Johanssona50c44c2013-09-11 21:27:53 -07001735 if (sport->port.mapbase != (unsigned long)ser->iomem_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 ret = -EINVAL;
1737 if (sport->port.iobase != ser->port)
1738 ret = -EINVAL;
1739 if (ser->hub6 != 0)
1740 ret = -EINVAL;
1741 return ret;
1742}
1743
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001744#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001745
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001746static int imx_uart_poll_init(struct uart_port *port)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001747{
1748 struct imx_port *sport = (struct imx_port *)port;
1749 unsigned long flags;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001750 u32 ucr1, ucr2;
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001751 int retval;
1752
1753 retval = clk_prepare_enable(sport->clk_ipg);
1754 if (retval)
1755 return retval;
1756 retval = clk_prepare_enable(sport->clk_per);
1757 if (retval)
1758 clk_disable_unprepare(sport->clk_ipg);
1759
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001760 imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001761
1762 spin_lock_irqsave(&sport->port.lock, flags);
1763
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001764 /*
1765 * Be careful about the order of enabling bits here. First enable the
1766 * receiver (UARTEN + RXEN) and only then the corresponding irqs.
1767 * This prevents that a character that already sits in the RX fifo is
1768 * triggering an irq but the try to fetch it from there results in an
1769 * exception because UARTEN or RXEN is still off.
1770 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001771 ucr1 = imx_uart_readl(sport, UCR1);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001772 ucr2 = imx_uart_readl(sport, UCR2);
1773
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001774 if (imx_uart_is_imx1(sport))
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001775 ucr1 |= IMX1_UCR1_UARTCLKEN;
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001776
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001777 ucr1 |= UCR1_UARTEN;
1778 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RTSDEN | UCR1_RRDYEN);
1779
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001780 ucr2 |= UCR2_RXEN;
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001781 ucr2 &= ~UCR2_ATEN;
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001782
1783 imx_uart_writel(sport, ucr1, UCR1);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001784 imx_uart_writel(sport, ucr2, UCR2);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001785
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001786 /* now enable irqs */
1787 imx_uart_writel(sport, ucr1 | UCR1_RRDYEN, UCR1);
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001788 imx_uart_writel(sport, ucr2 | UCR2_ATEN, UCR2);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001789
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001790 spin_unlock_irqrestore(&sport->port.lock, flags);
1791
1792 return 0;
1793}
1794
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001795static int imx_uart_poll_get_char(struct uart_port *port)
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001796{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001797 struct imx_port *sport = (struct imx_port *)port;
1798 if (!(imx_uart_readl(sport, USR2) & USR2_RDR))
Dirk Behme26c47412014-09-03 12:33:53 +01001799 return NO_POLL_CHAR;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001800
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001801 return imx_uart_readl(sport, URXD0) & URXD_RX_DATA;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001802}
1803
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001804static void imx_uart_poll_put_char(struct uart_port *port, unsigned char c)
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001805{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001806 struct imx_port *sport = (struct imx_port *)port;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001807 unsigned int status;
1808
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001809 /* drain */
1810 do {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001811 status = imx_uart_readl(sport, USR1);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001812 } while (~status & USR1_TRDY);
1813
1814 /* write */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001815 imx_uart_writel(sport, c, URTX0);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001816
1817 /* flush */
1818 do {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001819 status = imx_uart_readl(sport, USR2);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001820 } while (~status & USR2_TXDC);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001821}
1822#endif
1823
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +01001824/* called with port.lock taken and irqs off or from .probe without locking */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001825static int imx_uart_rs485_config(struct uart_port *port,
1826 struct serial_rs485 *rs485conf)
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001827{
1828 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001829 u32 ucr2;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001830
1831 /* unimplemented */
1832 rs485conf->delay_rts_before_send = 0;
1833 rs485conf->delay_rts_after_send = 0;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001834
1835 /* RTS is required to control the transmitter */
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02001836 if (!sport->have_rtscts && !sport->have_rtsgpio)
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001837 rs485conf->flags &= ~SER_RS485_ENABLED;
1838
1839 if (rs485conf->flags & SER_RS485_ENABLED) {
Stefan Agner6d215f82018-04-19 17:39:16 +02001840 /* Enable receiver if low-active RTS signal is requested */
1841 if (sport->have_rtscts && !sport->have_rtsgpio &&
1842 !(rs485conf->flags & SER_RS485_RTS_ON_SEND))
1843 rs485conf->flags |= SER_RS485_RX_DURING_TX;
1844
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001845 /* disable transmitter */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001846 ucr2 = imx_uart_readl(sport, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001847 if (rs485conf->flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001848 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001849 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001850 imx_uart_rts_inactive(sport, &ucr2);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001851 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001852 }
1853
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001854 /* Make sure Rx is enabled in case Tx is active with Rx disabled */
1855 if (!(rs485conf->flags & SER_RS485_ENABLED) ||
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001856 rs485conf->flags & SER_RS485_RX_DURING_TX)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001857 imx_uart_start_rx(port);
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001858
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001859 port->rs485 = *rs485conf;
1860
1861 return 0;
1862}
1863
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001864static const struct uart_ops imx_uart_pops = {
1865 .tx_empty = imx_uart_tx_empty,
1866 .set_mctrl = imx_uart_set_mctrl,
1867 .get_mctrl = imx_uart_get_mctrl,
1868 .stop_tx = imx_uart_stop_tx,
1869 .start_tx = imx_uart_start_tx,
1870 .stop_rx = imx_uart_stop_rx,
1871 .enable_ms = imx_uart_enable_ms,
1872 .break_ctl = imx_uart_break_ctl,
1873 .startup = imx_uart_startup,
1874 .shutdown = imx_uart_shutdown,
1875 .flush_buffer = imx_uart_flush_buffer,
1876 .set_termios = imx_uart_set_termios,
1877 .type = imx_uart_type,
1878 .config_port = imx_uart_config_port,
1879 .verify_port = imx_uart_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001880#if defined(CONFIG_CONSOLE_POLL)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001881 .poll_init = imx_uart_poll_init,
1882 .poll_get_char = imx_uart_poll_get_char,
1883 .poll_put_char = imx_uart_poll_put_char,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001884#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885};
1886
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001887static struct imx_port *imx_uart_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889#ifdef CONFIG_SERIAL_IMX_CONSOLE
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001890static void imx_uart_console_putchar(struct uart_port *port, int ch)
Russell Kingd3587882006-03-20 20:00:09 +00001891{
1892 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001893
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001894 while (imx_uart_readl(sport, imx_uart_uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001895 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001896
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001897 imx_uart_writel(sport, ch, URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001898}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900/*
1901 * Interrupts are disabled on entering
1902 */
1903static void
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001904imx_uart_console_write(struct console *co, const char *s, unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001906 struct imx_port *sport = imx_uart_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001907 struct imx_port_ucrs old_ucr;
1908 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001909 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001910 int locked = 1;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001911 int retval;
1912
Fabio Estevam0c727a42015-08-18 12:43:12 -03001913 retval = clk_enable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001914 if (retval)
1915 return;
Fabio Estevam0c727a42015-08-18 12:43:12 -03001916 retval = clk_enable(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001917 if (retval) {
Fabio Estevam0c727a42015-08-18 12:43:12 -03001918 clk_disable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001919 return;
1920 }
Xinyu Chen9ec18822012-08-27 09:36:51 +02001921
Thomas Gleixner677fe552013-02-14 21:01:06 +01001922 if (sport->port.sysrq)
1923 locked = 0;
1924 else if (oops_in_progress)
1925 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1926 else
1927 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001930 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001932 imx_uart_ucrs_save(sport, &old_ucr);
Dirk Behme0ad5a812011-12-22 09:57:52 +01001933 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001935 if (imx_uart_is_imx1(sport))
Shawn Guofe6b5402011-06-25 02:04:33 +08001936 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001937 ucr1 |= UCR1_UARTEN;
1938 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1939
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001940 imx_uart_writel(sport, ucr1, UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001941
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001942 imx_uart_writel(sport, old_ucr.ucr2 | UCR2_TXEN, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001944 uart_console_write(&sport->port, s, count, imx_uart_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 /*
1947 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001948 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001950 while (!(imx_uart_readl(sport, USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001952 imx_uart_ucrs_restore(sport, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001953
Thomas Gleixner677fe552013-02-14 21:01:06 +01001954 if (locked)
1955 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001956
Fabio Estevam0c727a42015-08-18 12:43:12 -03001957 clk_disable(sport->clk_ipg);
1958 clk_disable(sport->clk_per);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
1961/*
1962 * If the port was already initialised (eg, by a boot loader),
1963 * try to determine the current setup.
1964 */
1965static void __init
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001966imx_uart_console_get_options(struct imx_port *sport, int *baud,
1967 int *parity, int *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
Sascha Hauer587897f2005-04-29 22:46:40 +01001969
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001970 if (imx_uart_readl(sport, UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301972 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001973 unsigned int baud_raw;
1974 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001976 ucr2 = imx_uart_readl(sport, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 *parity = 'n';
1979 if (ucr2 & UCR2_PREN) {
1980 if (ucr2 & UCR2_PROE)
1981 *parity = 'o';
1982 else
1983 *parity = 'e';
1984 }
1985
1986 if (ucr2 & UCR2_WS)
1987 *bits = 8;
1988 else
1989 *bits = 7;
1990
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001991 ubir = imx_uart_readl(sport, UBIR) & 0xffff;
1992 ubmr = imx_uart_readl(sport, UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001994 ucfr_rfdiv = (imx_uart_readl(sport, UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001995 if (ucfr_rfdiv == 6)
1996 ucfr_rfdiv = 7;
1997 else
1998 ucfr_rfdiv = 6 - ucfr_rfdiv;
1999
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002000 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01002001 uartclk /= ucfr_rfdiv;
2002
2003 { /*
2004 * The next code provides exact computation of
2005 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
2006 * without need of float support or long long division,
2007 * which would be required to prevent 32bit arithmetic overflow
2008 */
2009 unsigned int mul = ubir + 1;
2010 unsigned int div = 16 * (ubmr + 1);
2011 unsigned int rem = uartclk % div;
2012
2013 baud_raw = (uartclk / div) * mul;
2014 baud_raw += (rem * mul + div / 2) / div;
2015 *baud = (baud_raw + 50) / 100 * 100;
2016 }
2017
Sachin Kamat82313e62013-01-07 10:25:02 +05302018 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05302019 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01002020 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 }
2022}
2023
2024static int __init
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002025imx_uart_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
2027 struct imx_port *sport;
2028 int baud = 9600;
2029 int bits = 8;
2030 int parity = 'n';
2031 int flow = 'n';
Huang Shijie1cf93e02013-06-28 13:39:42 +08002032 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034 /*
2035 * Check whether an invalid uart number has been specified, and
2036 * if so, search for the first available port that does have
2037 * console support.
2038 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002039 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_uart_ports))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 co->index = 0;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002041 sport = imx_uart_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05302042 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04002043 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Huang Shijie1cf93e02013-06-28 13:39:42 +08002045 /* For setting the registers, we only need to enable the ipg clock. */
2046 retval = clk_prepare_enable(sport->clk_ipg);
2047 if (retval)
2048 goto error_console;
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (options)
2051 uart_parse_options(options, &baud, &parity, &bits, &flow);
2052 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002053 imx_uart_console_get_options(sport, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002055 imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Sascha Hauer587897f2005-04-29 22:46:40 +01002056
Huang Shijie1cf93e02013-06-28 13:39:42 +08002057 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow);
2058
Fabio Estevam0c727a42015-08-18 12:43:12 -03002059 clk_disable(sport->clk_ipg);
2060 if (retval) {
2061 clk_unprepare(sport->clk_ipg);
2062 goto error_console;
2063 }
2064
2065 retval = clk_prepare(sport->clk_per);
2066 if (retval)
Stefan Agner63fd4b92018-11-14 18:49:38 +01002067 clk_unprepare(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08002068
2069error_console:
2070 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002073static struct uart_driver imx_uart_uart_driver;
2074static struct console imx_uart_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02002075 .name = DEV_NAME,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002076 .write = imx_uart_console_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 .device = uart_console_device,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002078 .setup = imx_uart_console_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 .flags = CON_PRINTBUFFER,
2080 .index = -1,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002081 .data = &imx_uart_uart_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082};
2083
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002084#define IMX_CONSOLE &imx_uart_console
Lucas Stach913c6c02015-08-28 11:56:19 +02002085
2086#ifdef CONFIG_OF
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002087static void imx_uart_console_early_putchar(struct uart_port *port, int ch)
Lucas Stach913c6c02015-08-28 11:56:19 +02002088{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002089 struct imx_port *sport = (struct imx_port *)port;
2090
2091 while (imx_uart_readl(sport, IMX21_UTS) & UTS_TXFULL)
Lucas Stach913c6c02015-08-28 11:56:19 +02002092 cpu_relax();
2093
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002094 imx_uart_writel(sport, ch, URTX0);
Lucas Stach913c6c02015-08-28 11:56:19 +02002095}
2096
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002097static void imx_uart_console_early_write(struct console *con, const char *s,
2098 unsigned count)
Lucas Stach913c6c02015-08-28 11:56:19 +02002099{
2100 struct earlycon_device *dev = con->data;
2101
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002102 uart_console_write(&dev->port, s, count, imx_uart_console_early_putchar);
Lucas Stach913c6c02015-08-28 11:56:19 +02002103}
2104
2105static int __init
2106imx_console_early_setup(struct earlycon_device *dev, const char *opt)
2107{
2108 if (!dev->port.membase)
2109 return -ENODEV;
2110
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002111 dev->con->write = imx_uart_console_early_write;
Lucas Stach913c6c02015-08-28 11:56:19 +02002112
2113 return 0;
2114}
2115OF_EARLYCON_DECLARE(ec_imx6q, "fsl,imx6q-uart", imx_console_early_setup);
2116OF_EARLYCON_DECLARE(ec_imx21, "fsl,imx21-uart", imx_console_early_setup);
2117#endif
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119#else
2120#define IMX_CONSOLE NULL
2121#endif
2122
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002123static struct uart_driver imx_uart_uart_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 .owner = THIS_MODULE,
2125 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02002126 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 .major = SERIAL_IMX_MAJOR,
2128 .minor = MINOR_START,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002129 .nr = ARRAY_SIZE(imx_uart_ports),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 .cons = IMX_CONSOLE,
2131};
2132
Shawn Guo22698aa2011-06-25 02:04:34 +08002133#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002134/*
2135 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
2136 * could successfully get all information from dt or a negative errno.
2137 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002138static int imx_uart_probe_dt(struct imx_port *sport,
2139 struct platform_device *pdev)
Shawn Guo22698aa2011-06-25 02:04:34 +08002140{
2141 struct device_node *np = pdev->dev.of_node;
Shawn Guoff059672011-09-22 14:48:13 +08002142 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002143
LABBE Corentin5f8b9042015-11-24 15:36:57 +01002144 sport->devdata = of_device_get_match_data(&pdev->dev);
2145 if (!sport->devdata)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002146 /* no device tree device */
2147 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002148
Shawn Guoff059672011-09-22 14:48:13 +08002149 ret = of_alias_get_id(np, "serial");
2150 if (ret < 0) {
2151 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01002152 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08002153 }
2154 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002155
Geert Uytterhoeven1006ed72016-04-22 17:22:21 +02002156 if (of_get_property(np, "uart-has-rtscts", NULL) ||
2157 of_get_property(np, "fsl,uart-has-rtscts", NULL) /* deprecated */)
Shawn Guo22698aa2011-06-25 02:04:34 +08002158 sport->have_rtscts = 1;
2159
Huang Shijie20ff2fe2013-05-30 14:07:12 +08002160 if (of_get_property(np, "fsl,dte-mode", NULL))
2161 sport->dte_mode = 1;
2162
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02002163 if (of_get_property(np, "rts-gpios", NULL))
2164 sport->have_rtsgpio = 1;
2165
Shawn Guo22698aa2011-06-25 02:04:34 +08002166 return 0;
2167}
2168#else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002169static inline int imx_uart_probe_dt(struct imx_port *sport,
2170 struct platform_device *pdev)
Shawn Guo22698aa2011-06-25 02:04:34 +08002171{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002172 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002173}
2174#endif
2175
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002176static void imx_uart_probe_pdata(struct imx_port *sport,
2177 struct platform_device *pdev)
Shawn Guo22698aa2011-06-25 02:04:34 +08002178{
Jingoo Han574de552013-07-30 17:06:57 +09002179 struct imxuart_platform_data *pdata = dev_get_platdata(&pdev->dev);
Shawn Guo22698aa2011-06-25 02:04:34 +08002180
2181 sport->port.line = pdev->id;
2182 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
2183
2184 if (!pdata)
2185 return;
2186
2187 if (pdata->flags & IMXUART_HAVE_RTSCTS)
2188 sport->have_rtscts = 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002189}
2190
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002191static int imx_uart_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002193 struct imx_port *sport;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002194 void __iomem *base;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002195 int ret = 0;
2196 u32 ucr1;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002197 struct resource *res;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002198 int txirq, rxirq, rtsirq;
Sascha Hauer5b802342006-05-04 14:07:42 +01002199
Sachin Kamat42d34192013-01-07 10:25:06 +05302200 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002201 if (!sport)
2202 return -ENOMEM;
2203
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002204 ret = imx_uart_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002205 if (ret > 0)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002206 imx_uart_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002207 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05302208 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002209
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002210 if (sport->port.line >= ARRAY_SIZE(imx_uart_ports)) {
Geert Uytterhoeven56734442018-02-23 14:38:31 +01002211 dev_err(&pdev->dev, "serial%d out of range\n",
2212 sport->port.line);
2213 return -EINVAL;
2214 }
2215
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002216 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Alexander Shiyanda82f992014-02-22 16:01:33 +04002217 base = devm_ioremap_resource(&pdev->dev, res);
2218 if (IS_ERR(base))
2219 return PTR_ERR(base);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002220
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002221 rxirq = platform_get_irq(pdev, 0);
2222 txirq = platform_get_irq(pdev, 1);
2223 rtsirq = platform_get_irq(pdev, 2);
2224
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002225 sport->port.dev = &pdev->dev;
2226 sport->port.mapbase = res->start;
2227 sport->port.membase = base;
2228 sport->port.type = PORT_IMX,
2229 sport->port.iotype = UPIO_MEM;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002230 sport->port.irq = rxirq;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002231 sport->port.fifosize = 32;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002232 sport->port.ops = &imx_uart_pops;
2233 sport->port.rs485_config = imx_uart_rs485_config;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002234 sport->port.flags = UPF_BOOT_AUTOCONF;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002235 timer_setup(&sport->timer, imx_uart_timeout, 0);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002236
Uwe Kleine-König58362d52015-12-13 11:30:03 +01002237 sport->gpios = mctrl_gpio_init(&sport->port, 0);
2238 if (IS_ERR(sport->gpios))
2239 return PTR_ERR(sport->gpios);
2240
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002241 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
2242 if (IS_ERR(sport->clk_ipg)) {
2243 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002244 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302245 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002246 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002247
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002248 sport->clk_per = devm_clk_get(&pdev->dev, "per");
2249 if (IS_ERR(sport->clk_per)) {
2250 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002251 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302252 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002253 }
2254
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002255 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002256
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002257 /* For register access, we only need to enable the ipg clock. */
2258 ret = clk_prepare_enable(sport->clk_ipg);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002259 if (ret) {
2260 dev_err(&pdev->dev, "failed to enable per clk: %d\n", ret);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002261 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002262 }
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002263
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +01002264 /* initialize shadow register values */
2265 sport->ucr1 = readl(sport->port.membase + UCR1);
2266 sport->ucr2 = readl(sport->port.membase + UCR2);
2267 sport->ucr3 = readl(sport->port.membase + UCR3);
2268 sport->ucr4 = readl(sport->port.membase + UCR4);
2269 sport->ufcr = readl(sport->port.membase + UFCR);
2270
Lukas Wunner743f93f2017-11-24 23:26:40 +01002271 uart_get_rs485_mode(&pdev->dev, &sport->port.rs485);
2272
Lukas Wunnerb8f3bff2017-11-24 23:26:40 +01002273 if (sport->port.rs485.flags & SER_RS485_ENABLED &&
phil eichinger5d7f77e2018-02-19 10:24:15 +01002274 (!sport->have_rtscts && !sport->have_rtsgpio))
Lukas Wunnerb8f3bff2017-11-24 23:26:40 +01002275 dev_err(&pdev->dev, "no RTS control, disabling rs485\n");
2276
Stefan Agner6d215f82018-04-19 17:39:16 +02002277 /*
2278 * If using the i.MX UART RTS/CTS control then the RTS (CTS_B)
2279 * signal cannot be set low during transmission in case the
2280 * receiver is off (limitation of the i.MX UART IP).
2281 */
2282 if (sport->port.rs485.flags & SER_RS485_ENABLED &&
2283 sport->have_rtscts && !sport->have_rtsgpio &&
2284 (!(sport->port.rs485.flags & SER_RS485_RTS_ON_SEND) &&
2285 !(sport->port.rs485.flags & SER_RS485_RX_DURING_TX)))
2286 dev_err(&pdev->dev,
2287 "low-active RTS not possible when receiver is off, enabling receiver\n");
2288
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002289 imx_uart_rs485_config(&sport->port, &sport->port.rs485);
Lukas Wunnerb8f3bff2017-11-24 23:26:40 +01002290
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002291 /* Disable interrupts before requesting them */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002292 ucr1 = imx_uart_readl(sport, UCR1);
2293 ucr1 &= ~(UCR1_ADEN | UCR1_TRDYEN | UCR1_IDEN | UCR1_RRDYEN |
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002294 UCR1_TXMPTYEN | UCR1_RTSDEN);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002295 imx_uart_writel(sport, ucr1, UCR1);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002296
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002297 if (!imx_uart_is_imx1(sport) && sport->dte_mode) {
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002298 /*
2299 * The DCEDTE bit changes the direction of DSR, DCD, DTR and RI
2300 * and influences if UCR3_RI and UCR3_DCD changes the level of RI
2301 * and DCD (when they are outputs) or enables the respective
2302 * irqs. So set this bit early, i.e. before requesting irqs.
2303 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002304 u32 ufcr = imx_uart_readl(sport, UFCR);
2305 if (!(ufcr & UFCR_DCEDTE))
2306 imx_uart_writel(sport, ufcr | UFCR_DCEDTE, UFCR);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002307
2308 /*
2309 * Disable UCR3_RI and UCR3_DCD irqs. They are also not
2310 * enabled later because they cannot be cleared
2311 * (confirmed on i.MX25) which makes them unusable.
2312 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002313 imx_uart_writel(sport,
2314 IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP | UCR3_DSR,
2315 UCR3);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002316
2317 } else {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002318 u32 ucr3 = UCR3_DSR;
2319 u32 ufcr = imx_uart_readl(sport, UFCR);
2320 if (ufcr & UFCR_DCEDTE)
2321 imx_uart_writel(sport, ufcr & ~UFCR_DCEDTE, UFCR);
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002322
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002323 if (!imx_uart_is_imx1(sport))
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002324 ucr3 |= IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002325 imx_uart_writel(sport, ucr3, UCR3);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002326 }
2327
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002328 clk_disable_unprepare(sport->clk_ipg);
2329
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002330 /*
2331 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
2332 * chips only have one interrupt.
2333 */
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002334 if (txirq > 0) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002335 ret = devm_request_irq(&pdev->dev, rxirq, imx_uart_rxint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002336 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002337 if (ret) {
2338 dev_err(&pdev->dev, "failed to request rx irq: %d\n",
2339 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002340 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002341 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002342
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002343 ret = devm_request_irq(&pdev->dev, txirq, imx_uart_txint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002344 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002345 if (ret) {
2346 dev_err(&pdev->dev, "failed to request tx irq: %d\n",
2347 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002348 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002349 }
Uwe Kleine-König7e620982018-09-20 14:11:17 +02002350
2351 ret = devm_request_irq(&pdev->dev, rtsirq, imx_uart_rtsint, 0,
2352 dev_name(&pdev->dev), sport);
2353 if (ret) {
2354 dev_err(&pdev->dev, "failed to request rts irq: %d\n",
2355 ret);
2356 return ret;
2357 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002358 } else {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002359 ret = devm_request_irq(&pdev->dev, rxirq, imx_uart_int, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002360 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002361 if (ret) {
2362 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002363 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002364 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002365 }
2366
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002367 imx_uart_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01002368
Richard Zhao0a86a862012-09-18 16:14:58 +08002369 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002370
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002371 return uart_add_one_port(&imx_uart_uart_driver, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002374static int imx_uart_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002376 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002378 return uart_remove_one_port(&imx_uart_uart_driver, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002381static void imx_uart_restore_context(struct imx_port *sport)
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002382{
Anson Huang07b5e162018-09-05 09:24:26 +08002383 unsigned long flags;
2384
2385 spin_lock_irqsave(&sport->port.lock, flags);
2386 if (!sport->context_saved) {
2387 spin_unlock_irqrestore(&sport->port.lock, flags);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002388 return;
Anson Huang07b5e162018-09-05 09:24:26 +08002389 }
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002390
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002391 imx_uart_writel(sport, sport->saved_reg[4], UFCR);
2392 imx_uart_writel(sport, sport->saved_reg[5], UESC);
2393 imx_uart_writel(sport, sport->saved_reg[6], UTIM);
2394 imx_uart_writel(sport, sport->saved_reg[7], UBIR);
2395 imx_uart_writel(sport, sport->saved_reg[8], UBMR);
2396 imx_uart_writel(sport, sport->saved_reg[9], IMX21_UTS);
2397 imx_uart_writel(sport, sport->saved_reg[0], UCR1);
2398 imx_uart_writel(sport, sport->saved_reg[1] | UCR2_SRST, UCR2);
2399 imx_uart_writel(sport, sport->saved_reg[2], UCR3);
2400 imx_uart_writel(sport, sport->saved_reg[3], UCR4);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002401 sport->context_saved = false;
Anson Huang07b5e162018-09-05 09:24:26 +08002402 spin_unlock_irqrestore(&sport->port.lock, flags);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002403}
2404
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002405static void imx_uart_save_context(struct imx_port *sport)
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002406{
Anson Huang07b5e162018-09-05 09:24:26 +08002407 unsigned long flags;
2408
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002409 /* Save necessary regs */
Anson Huang07b5e162018-09-05 09:24:26 +08002410 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002411 sport->saved_reg[0] = imx_uart_readl(sport, UCR1);
2412 sport->saved_reg[1] = imx_uart_readl(sport, UCR2);
2413 sport->saved_reg[2] = imx_uart_readl(sport, UCR3);
2414 sport->saved_reg[3] = imx_uart_readl(sport, UCR4);
2415 sport->saved_reg[4] = imx_uart_readl(sport, UFCR);
2416 sport->saved_reg[5] = imx_uart_readl(sport, UESC);
2417 sport->saved_reg[6] = imx_uart_readl(sport, UTIM);
2418 sport->saved_reg[7] = imx_uart_readl(sport, UBIR);
2419 sport->saved_reg[8] = imx_uart_readl(sport, UBMR);
2420 sport->saved_reg[9] = imx_uart_readl(sport, IMX21_UTS);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002421 sport->context_saved = true;
Anson Huang07b5e162018-09-05 09:24:26 +08002422 spin_unlock_irqrestore(&sport->port.lock, flags);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002423}
2424
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002425static void imx_uart_enable_wakeup(struct imx_port *sport, bool on)
Eduardo Valentin189550b2015-08-11 10:21:21 -07002426{
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002427 u32 ucr3;
Eduardo Valentin189550b2015-08-11 10:21:21 -07002428
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002429 ucr3 = imx_uart_readl(sport, UCR3);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002430 if (on) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002431 imx_uart_writel(sport, USR1_AWAKE, USR1);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002432 ucr3 |= UCR3_AWAKEN;
2433 } else {
2434 ucr3 &= ~UCR3_AWAKEN;
Martin Kaiser09df0b32018-01-05 17:46:43 +01002435 }
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002436 imx_uart_writel(sport, ucr3, UCR3);
Eduardo Valentinbc857342015-08-11 10:21:22 -07002437
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002438 if (sport->have_rtscts) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002439 u32 ucr1 = imx_uart_readl(sport, UCR1);
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002440 if (on)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002441 ucr1 |= UCR1_RTSDEN;
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002442 else
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002443 ucr1 &= ~UCR1_RTSDEN;
2444 imx_uart_writel(sport, ucr1, UCR1);
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002445 }
Eduardo Valentin189550b2015-08-11 10:21:21 -07002446}
2447
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002448static int imx_uart_suspend_noirq(struct device *dev)
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002449{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002450 struct imx_port *sport = dev_get_drvdata(dev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002451
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002452 imx_uart_save_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002453
2454 clk_disable(sport->clk_ipg);
2455
Anson Huangfcfed1be2018-09-05 09:24:27 +08002456 pinctrl_pm_select_sleep_state(dev);
2457
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002458 return 0;
2459}
2460
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002461static int imx_uart_resume_noirq(struct device *dev)
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002462{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002463 struct imx_port *sport = dev_get_drvdata(dev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002464 int ret;
2465
Anson Huangfcfed1be2018-09-05 09:24:27 +08002466 pinctrl_pm_select_default_state(dev);
2467
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002468 ret = clk_enable(sport->clk_ipg);
2469 if (ret)
2470 return ret;
2471
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002472 imx_uart_restore_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002473
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002474 return 0;
2475}
2476
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002477static int imx_uart_suspend(struct device *dev)
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002478{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002479 struct imx_port *sport = dev_get_drvdata(dev);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002480 int ret;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002481
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002482 uart_suspend_port(&imx_uart_uart_driver, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002483 disable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002484
Martin Kaiser09df0b32018-01-05 17:46:43 +01002485 ret = clk_prepare_enable(sport->clk_ipg);
2486 if (ret)
2487 return ret;
2488
2489 /* enable wakeup from i.MX UART */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002490 imx_uart_enable_wakeup(sport, true);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002491
2492 return 0;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002493}
2494
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002495static int imx_uart_resume(struct device *dev)
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002496{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002497 struct imx_port *sport = dev_get_drvdata(dev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002498
2499 /* disable wakeup from i.MX UART */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002500 imx_uart_enable_wakeup(sport, false);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002501
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002502 uart_resume_port(&imx_uart_uart_driver, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002503 enable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002504
Martin Kaiser09df0b32018-01-05 17:46:43 +01002505 clk_disable_unprepare(sport->clk_ipg);
Martin Fuzzey29add682016-01-05 16:53:31 +01002506
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002507 return 0;
2508}
2509
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002510static int imx_uart_freeze(struct device *dev)
Philipp Zabel94be6d72017-11-01 13:51:41 +01002511{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002512 struct imx_port *sport = dev_get_drvdata(dev);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002513
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002514 uart_suspend_port(&imx_uart_uart_driver, &sport->port);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002515
Martin Kaiser09df0b32018-01-05 17:46:43 +01002516 return clk_prepare_enable(sport->clk_ipg);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002517}
2518
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002519static int imx_uart_thaw(struct device *dev)
Philipp Zabel94be6d72017-11-01 13:51:41 +01002520{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002521 struct imx_port *sport = dev_get_drvdata(dev);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002522
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002523 uart_resume_port(&imx_uart_uart_driver, &sport->port);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002524
Martin Kaiser09df0b32018-01-05 17:46:43 +01002525 clk_disable_unprepare(sport->clk_ipg);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002526
2527 return 0;
2528}
2529
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002530static const struct dev_pm_ops imx_uart_pm_ops = {
2531 .suspend_noirq = imx_uart_suspend_noirq,
2532 .resume_noirq = imx_uart_resume_noirq,
2533 .freeze_noirq = imx_uart_suspend_noirq,
2534 .restore_noirq = imx_uart_resume_noirq,
2535 .suspend = imx_uart_suspend,
2536 .resume = imx_uart_resume,
2537 .freeze = imx_uart_freeze,
2538 .thaw = imx_uart_thaw,
2539 .restore = imx_uart_thaw,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002540};
2541
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002542static struct platform_driver imx_uart_platform_driver = {
2543 .probe = imx_uart_probe,
2544 .remove = imx_uart_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002546 .id_table = imx_uart_devtype,
2547 .driver = {
2548 .name = "imx-uart",
Shawn Guo22698aa2011-06-25 02:04:34 +08002549 .of_match_table = imx_uart_dt_ids,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002550 .pm = &imx_uart_pm_ops,
Russell King3ae5eae2005-11-09 22:32:44 +00002551 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552};
2553
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002554static int __init imx_uart_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555{
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002556 int ret = uart_register_driver(&imx_uart_uart_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 if (ret)
2559 return ret;
2560
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002561 ret = platform_driver_register(&imx_uart_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 if (ret != 0)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002563 uart_unregister_driver(&imx_uart_uart_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01002565 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
2567
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002568static void __exit imx_uart_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002570 platform_driver_unregister(&imx_uart_platform_driver);
2571 uart_unregister_driver(&imx_uart_uart_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572}
2573
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002574module_init(imx_uart_init);
2575module_exit(imx_uart_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
2577MODULE_AUTHOR("Sascha Hauer");
2578MODULE_DESCRIPTION("IMX generic serial port driver");
2579MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07002580MODULE_ALIAS("platform:imx-uart");