blob: 239c0fa2e9816805cd134fad697495f7f7929d4b [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>
Oskar Schirmer534fca02009-06-11 14:52:23 +010027#include <linux/rational.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Shawn Guo22698aa2011-06-25 02:04:34 +080029#include <linux/of.h>
30#include <linux/of_device.h>
Sachin Kamate32a9f82013-01-07 10:25:03 +053031#include <linux/io.h>
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080032#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/irq.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020035#include <linux/platform_data/serial-imx.h>
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080036#include <linux/platform_data/dma-imx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Uwe Kleine-König58362d52015-12-13 11:30:03 +010038#include "serial_mctrl_gpio.h"
39
Sascha Hauerff4bfb22007-04-26 08:26:13 +010040/* Register definitions */
41#define URXD0 0x0 /* Receiver Register */
42#define URTX0 0x40 /* Transmitter Register */
43#define UCR1 0x80 /* Control Register 1 */
44#define UCR2 0x84 /* Control Register 2 */
45#define UCR3 0x88 /* Control Register 3 */
46#define UCR4 0x8c /* Control Register 4 */
47#define UFCR 0x90 /* FIFO Control Register */
48#define USR1 0x94 /* Status Register 1 */
49#define USR2 0x98 /* Status Register 2 */
50#define UESC 0x9c /* Escape Character Register */
51#define UTIM 0xa0 /* Escape Timer Register */
52#define UBIR 0xa4 /* BRM Incremental Register */
53#define UBMR 0xa8 /* BRM Modulator Register */
54#define UBRC 0xac /* Baud Rate Count Register */
Shawn Guofe6b5402011-06-25 02:04:33 +080055#define IMX21_ONEMS 0xb0 /* One Millisecond register */
56#define IMX1_UTS 0xd0 /* UART Test Register on i.mx1 */
57#define IMX21_UTS 0xb4 /* UART Test Register on all other i.mx*/
Sascha Hauerff4bfb22007-04-26 08:26:13 +010058
59/* UART Control Register Bit Fields.*/
Jiada Wang55d86932014-12-09 18:11:22 +090060#define URXD_DUMMY_READ (1<<16)
Sachin Kamat82313e62013-01-07 10:25:02 +053061#define URXD_CHARRDY (1<<15)
62#define URXD_ERR (1<<14)
63#define URXD_OVRRUN (1<<13)
64#define URXD_FRMERR (1<<12)
65#define URXD_BRK (1<<11)
66#define URXD_PRERR (1<<10)
Dirk Behme26c47412014-09-03 12:33:53 +010067#define URXD_RX_DATA (0xFF<<0)
Sachin Kamat82313e62013-01-07 10:25:02 +053068#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
69#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
70#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
71#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080072#define UCR1_ICD_REG(x) (((x) & 3) << 10) /* idle condition detect */
Sachin Kamat82313e62013-01-07 10:25:02 +053073#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +010074#define UCR1_RXDMAEN (1<<8) /* Recv ready DMA enable */
Sachin Kamat82313e62013-01-07 10:25:02 +053075#define UCR1_IREN (1<<7) /* Infrared interface enable */
76#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
77#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
78#define UCR1_SNDBRK (1<<4) /* Send break */
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +010079#define UCR1_TXDMAEN (1<<3) /* Transmitter ready DMA enable */
Sachin Kamat82313e62013-01-07 10:25:02 +053080#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080081#define UCR1_ATDMAEN (1<<2) /* Aging DMA Timer Enable */
Sachin Kamat82313e62013-01-07 10:25:02 +053082#define UCR1_DOZE (1<<1) /* Doze */
83#define UCR1_UARTEN (1<<0) /* UART enabled */
84#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
85#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
86#define UCR2_CTSC (1<<13) /* CTS pin control */
87#define UCR2_CTS (1<<12) /* Clear to send */
88#define UCR2_ESCEN (1<<11) /* Escape enable */
89#define UCR2_PREN (1<<8) /* Parity enable */
90#define UCR2_PROE (1<<7) /* Parity odd/even */
91#define UCR2_STPB (1<<6) /* Stop */
92#define UCR2_WS (1<<5) /* Word size */
93#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
94#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
95#define UCR2_TXEN (1<<2) /* Transmitter enabled */
96#define UCR2_RXEN (1<<1) /* Receiver enabled */
97#define UCR2_SRST (1<<0) /* SW reset */
98#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
99#define UCR3_PARERREN (1<<12) /* Parity enable */
100#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
101#define UCR3_DSR (1<<10) /* Data set ready */
102#define UCR3_DCD (1<<9) /* Data carrier detect */
103#define UCR3_RI (1<<8) /* Ring indicator */
Fabio Estevamb38cb7d2014-05-14 15:55:03 -0300104#define UCR3_ADNIMP (1<<7) /* Autobaud Detection Not Improved */
Sachin Kamat82313e62013-01-07 10:25:02 +0530105#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
106#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
107#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100108#define UCR3_DTRDEN (1<<3) /* Data Terminal Ready Delta Enable. */
Sachin Kamat82313e62013-01-07 10:25:02 +0530109#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
110#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
111#define UCR3_BPEN (1<<0) /* Preset registers enable */
112#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
113#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
114#define UCR4_INVR (1<<9) /* Inverted infrared reception */
115#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
116#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
117#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800118#define UCR4_IDDMAEN (1<<6) /* DMA IDLE Condition Detected */
Sachin Kamat82313e62013-01-07 10:25:02 +0530119#define UCR4_IRSC (1<<5) /* IR special case */
120#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
121#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
122#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
123#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
124#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
125#define UFCR_DCEDTE (1<<6) /* DCE/DTE mode select */
126#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
127#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
128#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
129#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
130#define USR1_RTSS (1<<14) /* RTS pin status */
131#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
132#define USR1_RTSD (1<<12) /* RTS delta */
133#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
134#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
135#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
Lucas Stach86a04ba2015-09-04 17:52:38 +0200136#define USR1_AGTIM (1<<8) /* Ageing timer interrupt flag */
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100137#define USR1_DTRD (1<<7) /* DTR Delta */
Sachin Kamat82313e62013-01-07 10:25:02 +0530138#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
139#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
140#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
141#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
142#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
143#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
144#define USR2_IDLE (1<<12) /* Idle condition */
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200145#define USR2_RIDELT (1<<10) /* Ring Interrupt Delta */
146#define USR2_RIIN (1<<9) /* Ring Indicator Input */
Sachin Kamat82313e62013-01-07 10:25:02 +0530147#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
148#define USR2_WAKE (1<<7) /* Wake */
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200149#define USR2_DCDIN (1<<5) /* Data Carrier Detect Input */
Sachin Kamat82313e62013-01-07 10:25:02 +0530150#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
151#define USR2_TXDC (1<<3) /* Transmitter complete */
152#define USR2_BRCD (1<<2) /* Break condition */
153#define USR2_ORE (1<<1) /* Overrun error */
154#define USR2_RDR (1<<0) /* Recv data ready */
155#define UTS_FRCPERR (1<<13) /* Force parity error */
156#define UTS_LOOP (1<<12) /* Loop tx and rx */
157#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
158#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
159#define UTS_TXFULL (1<<4) /* TxFIFO full */
160#define UTS_RXFULL (1<<3) /* RxFIFO full */
161#define UTS_SOFTRST (1<<0) /* Software reset */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/* We've been assigned a range on the "Low-density serial ports" major */
Sachin Kamat82313e62013-01-07 10:25:02 +0530164#define SERIAL_IMX_MAJOR 207
165#define MINOR_START 16
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200166#define DEV_NAME "ttymxc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * This determines how often we check the modem status signals
170 * for any change. They generally aren't connected to an IRQ
171 * so we have to poll them. We also check immediately before
172 * filling the TX fifo incase CTS has been dropped.
173 */
174#define MCTRL_TIMEOUT (250*HZ/1000)
175
176#define DRIVER_NAME "IMX-uart"
177
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200178#define UART_NR 8
179
Uwe Kleine-Königf95661b2015-02-24 11:17:09 +0100180/* i.MX21 type uart runs on all i.mx except i.MX1 and i.MX6q */
Shawn Guofe6b5402011-06-25 02:04:33 +0800181enum imx_uart_type {
182 IMX1_UART,
183 IMX21_UART,
Martyn Welch1c06bde62016-09-01 11:30:46 +0200184 IMX53_UART,
Huang Shijiea496e622013-07-08 17:14:17 +0800185 IMX6Q_UART,
Shawn Guofe6b5402011-06-25 02:04:33 +0800186};
187
188/* device type dependent stuff */
189struct imx_uart_data {
190 unsigned uts_reg;
191 enum imx_uart_type devtype;
192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194struct imx_port {
195 struct uart_port port;
196 struct timer_list timer;
197 unsigned int old_status;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100198 unsigned int have_rtscts:1;
Fabio Estevam7b7e8e82017-01-07 19:29:13 -0200199 unsigned int have_rtsgpio:1;
Huang Shijie20ff2fe2013-05-30 14:07:12 +0800200 unsigned int dte_mode:1;
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100201 struct clk *clk_ipg;
202 struct clk *clk_per;
Uwe Kleine-König7d0b0662012-05-21 21:57:39 +0200203 const struct imx_uart_data *devdata;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800204
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100205 struct mctrl_gpios *gpios;
206
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100207 /* shadow registers */
208 unsigned int ucr1;
209 unsigned int ucr2;
210 unsigned int ucr3;
211 unsigned int ucr4;
212 unsigned int ufcr;
213
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800214 /* DMA fields */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800215 unsigned int dma_is_enabled:1;
216 unsigned int dma_is_rxing:1;
217 unsigned int dma_is_txing:1;
218 struct dma_chan *dma_chan_rx, *dma_chan_tx;
219 struct scatterlist rx_sgl, tx_sgl[2];
220 void *rx_buf;
Nandor Han9d297232016-08-08 15:38:27 +0300221 struct circ_buf rx_ring;
222 unsigned int rx_periods;
223 dma_cookie_t rx_cookie;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800224 unsigned int tx_bytes;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800225 unsigned int dma_tx_nents;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -0500226 unsigned int saved_reg[10];
Eduardo Valentinc868cbb2015-08-11 10:21:23 -0700227 bool context_saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
Dirk Behme0ad5a812011-12-22 09:57:52 +0100230struct imx_port_ucrs {
231 unsigned int ucr1;
232 unsigned int ucr2;
233 unsigned int ucr3;
234};
235
Shawn Guofe6b5402011-06-25 02:04:33 +0800236static struct imx_uart_data imx_uart_devdata[] = {
237 [IMX1_UART] = {
238 .uts_reg = IMX1_UTS,
239 .devtype = IMX1_UART,
240 },
241 [IMX21_UART] = {
242 .uts_reg = IMX21_UTS,
243 .devtype = IMX21_UART,
244 },
Martyn Welch1c06bde62016-09-01 11:30:46 +0200245 [IMX53_UART] = {
246 .uts_reg = IMX21_UTS,
247 .devtype = IMX53_UART,
248 },
Huang Shijiea496e622013-07-08 17:14:17 +0800249 [IMX6Q_UART] = {
250 .uts_reg = IMX21_UTS,
251 .devtype = IMX6Q_UART,
252 },
Shawn Guofe6b5402011-06-25 02:04:33 +0800253};
254
Krzysztof Kozlowski31ada042015-05-02 00:40:02 +0900255static const struct platform_device_id imx_uart_devtype[] = {
Shawn Guofe6b5402011-06-25 02:04:33 +0800256 {
257 .name = "imx1-uart",
258 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
259 }, {
260 .name = "imx21-uart",
261 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
262 }, {
Martyn Welch1c06bde62016-09-01 11:30:46 +0200263 .name = "imx53-uart",
264 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX53_UART],
265 }, {
Huang Shijiea496e622013-07-08 17:14:17 +0800266 .name = "imx6q-uart",
267 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX6Q_UART],
268 }, {
Shawn Guofe6b5402011-06-25 02:04:33 +0800269 /* sentinel */
270 }
271};
272MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
273
Sanjeev Sharmaad3d4fd2015-02-03 16:16:06 +0530274static const struct of_device_id imx_uart_dt_ids[] = {
Huang Shijiea496e622013-07-08 17:14:17 +0800275 { .compatible = "fsl,imx6q-uart", .data = &imx_uart_devdata[IMX6Q_UART], },
Martyn Welch1c06bde62016-09-01 11:30:46 +0200276 { .compatible = "fsl,imx53-uart", .data = &imx_uart_devdata[IMX53_UART], },
Shawn Guo22698aa2011-06-25 02:04:34 +0800277 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
278 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
279 { /* sentinel */ }
280};
281MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
282
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100283static void imx_uart_writel(struct imx_port *sport, u32 val, u32 offset)
284{
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100285 switch (offset) {
286 case UCR1:
287 sport->ucr1 = val;
288 break;
289 case UCR2:
290 sport->ucr2 = val;
291 break;
292 case UCR3:
293 sport->ucr3 = val;
294 break;
295 case UCR4:
296 sport->ucr4 = val;
297 break;
298 case UFCR:
299 sport->ufcr = val;
300 break;
301 default:
302 break;
303 }
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100304 writel(val, sport->port.membase + offset);
305}
306
307static u32 imx_uart_readl(struct imx_port *sport, u32 offset)
308{
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100309 switch (offset) {
310 case UCR1:
311 return sport->ucr1;
312 break;
313 case UCR2:
314 /*
315 * UCR2_SRST is the only bit in the cached registers that might
316 * differ from the value that was last written. As it only
Uwe Kleine-König728e74a2018-06-12 11:58:37 +0200317 * automatically becomes one after being cleared, reread
318 * conditionally.
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100319 */
Stefan Agner0aa821d2018-04-20 14:44:07 +0200320 if (!(sport->ucr2 & UCR2_SRST))
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +0100321 sport->ucr2 = readl(sport->port.membase + offset);
322 return sport->ucr2;
323 break;
324 case UCR3:
325 return sport->ucr3;
326 break;
327 case UCR4:
328 return sport->ucr4;
329 break;
330 case UFCR:
331 return sport->ufcr;
332 break;
333 default:
334 return readl(sport->port.membase + offset);
335 }
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100336}
337
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100338static inline unsigned imx_uart_uts_reg(struct imx_port *sport)
Shawn Guofe6b5402011-06-25 02:04:33 +0800339{
340 return sport->devdata->uts_reg;
341}
342
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100343static inline int imx_uart_is_imx1(struct imx_port *sport)
Shawn Guofe6b5402011-06-25 02:04:33 +0800344{
345 return sport->devdata->devtype == IMX1_UART;
346}
347
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100348static inline int imx_uart_is_imx21(struct imx_port *sport)
Shawn Guofe6b5402011-06-25 02:04:33 +0800349{
350 return sport->devdata->devtype == IMX21_UART;
351}
352
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100353static inline int imx_uart_is_imx53(struct imx_port *sport)
Martyn Welch1c06bde62016-09-01 11:30:46 +0200354{
355 return sport->devdata->devtype == IMX53_UART;
356}
357
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100358static inline int imx_uart_is_imx6q(struct imx_port *sport)
Huang Shijiea496e622013-07-08 17:14:17 +0800359{
360 return sport->devdata->devtype == IMX6Q_UART;
361}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200363 * Save and restore functions for UCR1, UCR2 and UCR3 registers
364 */
Fabio Estevam93d94b32014-11-12 15:55:07 -0200365#if defined(CONFIG_SERIAL_IMX_CONSOLE)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100366static void imx_uart_ucrs_save(struct imx_port *sport,
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200367 struct imx_port_ucrs *ucr)
368{
369 /* save control registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100370 ucr->ucr1 = imx_uart_readl(sport, UCR1);
371 ucr->ucr2 = imx_uart_readl(sport, UCR2);
372 ucr->ucr3 = imx_uart_readl(sport, UCR3);
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200373}
374
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100375static void imx_uart_ucrs_restore(struct imx_port *sport,
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200376 struct imx_port_ucrs *ucr)
377{
378 /* restore control registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100379 imx_uart_writel(sport, ucr->ucr1, UCR1);
380 imx_uart_writel(sport, ucr->ucr2, UCR2);
381 imx_uart_writel(sport, ucr->ucr3, UCR3);
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200382}
Fabio Estevame8bfa762013-06-05 00:58:46 -0300383#endif
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200384
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100385static void imx_uart_rts_active(struct imx_port *sport, u32 *ucr2)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100386{
Fabio Estevambc2be232017-01-30 09:12:12 -0200387 *ucr2 &= ~(UCR2_CTSC | UCR2_CTS);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100388
Ian Jamisona0983c72017-09-21 10:13:12 +0200389 sport->port.mctrl |= TIOCM_RTS;
390 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100391}
392
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100393static void imx_uart_rts_inactive(struct imx_port *sport, u32 *ucr2)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100394{
Fabio Estevambc2be232017-01-30 09:12:12 -0200395 *ucr2 &= ~UCR2_CTSC;
396 *ucr2 |= UCR2_CTS;
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100397
Ian Jamisona0983c72017-09-21 10:13:12 +0200398 sport->port.mctrl &= ~TIOCM_RTS;
399 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100400}
401
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100402static void imx_uart_rts_auto(struct imx_port *sport, u32 *ucr2)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100403{
404 *ucr2 |= UCR2_CTSC;
405}
406
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100407/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100408static void imx_uart_start_rx(struct uart_port *port)
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100409{
410 struct imx_port *sport = (struct imx_port *)port;
411 unsigned int ucr1, ucr2;
412
413 ucr1 = imx_uart_readl(sport, UCR1);
414 ucr2 = imx_uart_readl(sport, UCR2);
415
416 ucr2 |= UCR2_RXEN;
417
418 if (sport->dma_is_enabled) {
419 ucr1 |= UCR1_RXDMAEN | UCR1_ATDMAEN;
420 } else {
421 ucr1 |= UCR1_RRDYEN;
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +0100422 ucr2 |= UCR2_ATEN;
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100423 }
424
425 /* Write UCR2 first as it includes RXEN */
426 imx_uart_writel(sport, ucr2, UCR2);
427 imx_uart_writel(sport, ucr1, UCR1);
428}
429
430/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100431static void imx_uart_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100434 u32 ucr1;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100435
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700436 /*
437 * We are maybe in the SMP context, so if the DMA TX thread is running
438 * on other cpu, we have to wait for it to finish.
439 */
Uwe Kleine-König686351f2018-03-02 11:07:21 +0100440 if (sport->dma_is_txing)
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700441 return;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800442
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100443 ucr1 = imx_uart_readl(sport, UCR1);
444 imx_uart_writel(sport, ucr1 & ~UCR1_TXMPTYEN, UCR1);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100445
446 /* in rs485 mode disable transmitter if shifter is empty */
447 if (port->rs485.flags & SER_RS485_ENABLED &&
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100448 imx_uart_readl(sport, USR2) & USR2_TXDC) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100449 u32 ucr2 = imx_uart_readl(sport, UCR2), ucr4;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100450 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100451 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -0200452 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100453 imx_uart_rts_inactive(sport, &ucr2);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100454 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100455
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100456 imx_uart_start_rx(port);
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100457
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100458 ucr4 = imx_uart_readl(sport, UCR4);
459 ucr4 &= ~UCR4_TCEN;
460 imx_uart_writel(sport, ucr4, UCR4);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100464/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100465static void imx_uart_stop_rx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100468 u32 ucr1, ucr2;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100469
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100470 ucr1 = imx_uart_readl(sport, UCR1);
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100471 ucr2 = imx_uart_readl(sport, UCR2);
472
473 if (sport->dma_is_enabled) {
474 ucr1 &= ~(UCR1_RXDMAEN | UCR1_ATDMAEN);
475 } else {
476 ucr1 &= ~UCR1_RRDYEN;
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +0100477 ucr2 &= ~UCR2_ATEN;
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100478 }
479 imx_uart_writel(sport, ucr1, UCR1);
480
481 ucr2 &= ~UCR2_RXEN;
482 imx_uart_writel(sport, ucr2, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100485/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100486static void imx_uart_enable_ms(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct imx_port *sport = (struct imx_port *)port;
489
490 mod_timer(&sport->timer, jiffies);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100491
492 mctrl_gpio_enable_ms(sport->gpios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100495static void imx_uart_dma_tx(struct imx_port *sport);
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100496
497/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100498static inline void imx_uart_transmit_buffer(struct imx_port *sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700500 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400502 if (sport->port.x_char) {
503 /* Send next char */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100504 imx_uart_writel(sport, sport->port.x_char, URTX0);
Jiada Wang7e2fb5a2014-12-09 18:11:35 +0900505 sport->port.icount.tx++;
506 sport->port.x_char = 0;
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400507 return;
508 }
509
510 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100511 imx_uart_stop_tx(&sport->port);
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400512 return;
513 }
514
Jiada Wang91a1a902014-12-09 18:11:36 +0900515 if (sport->dma_is_enabled) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100516 u32 ucr1;
Jiada Wang91a1a902014-12-09 18:11:36 +0900517 /*
518 * We've just sent a X-char Ensure the TX DMA is enabled
519 * and the TX IRQ is disabled.
520 **/
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100521 ucr1 = imx_uart_readl(sport, UCR1);
522 ucr1 &= ~UCR1_TXMPTYEN;
Jiada Wang91a1a902014-12-09 18:11:36 +0900523 if (sport->dma_is_txing) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100524 ucr1 |= UCR1_TXDMAEN;
525 imx_uart_writel(sport, ucr1, UCR1);
Jiada Wang91a1a902014-12-09 18:11:36 +0900526 } else {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100527 imx_uart_writel(sport, ucr1, UCR1);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100528 imx_uart_dma_tx(sport);
Jiada Wang91a1a902014-12-09 18:11:36 +0900529 }
Jiada Wang91a1a902014-12-09 18:11:36 +0900530
Ian Jamison5aabd3b2017-08-28 09:02:29 +0100531 return;
Uwe Kleine-König0c549222018-03-02 11:07:22 +0100532 }
Ian Jamison5aabd3b2017-08-28 09:02:29 +0100533
534 while (!uart_circ_empty(xmit) &&
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100535 !(imx_uart_readl(sport, imx_uart_uts_reg(sport)) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /* send xmit->buf[xmit->tail]
537 * out the port here */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100538 imx_uart_writel(sport, xmit->buf[xmit->tail], URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100539 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Fabian Godehardt977757312009-06-11 14:37:19 +0100543 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
544 uart_write_wakeup(&sport->port);
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (uart_circ_empty(xmit))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100547 imx_uart_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100550static void imx_uart_dma_tx_callback(void *data)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800551{
552 struct imx_port *sport = data;
553 struct scatterlist *sgl = &sport->tx_sgl[0];
554 struct circ_buf *xmit = &sport->port.state->xmit;
555 unsigned long flags;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100556 u32 ucr1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800557
Dirk Behme42f752b2014-12-09 18:11:28 +0900558 spin_lock_irqsave(&sport->port.lock, flags);
559
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800560 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
561
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100562 ucr1 = imx_uart_readl(sport, UCR1);
563 ucr1 &= ~UCR1_TXDMAEN;
564 imx_uart_writel(sport, ucr1, UCR1);
Dirk Behmea2c718c2014-12-09 18:11:31 +0900565
Dirk Behme42f752b2014-12-09 18:11:28 +0900566 /* update the stat */
567 xmit->tail = (xmit->tail + sport->tx_bytes) & (UART_XMIT_SIZE - 1);
568 sport->port.icount.tx += sport->tx_bytes;
569
570 dev_dbg(sport->port.dev, "we finish the TX DMA.\n");
571
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800572 sport->dma_is_txing = 0;
573
Jiada Wangd64b8602014-12-09 18:11:29 +0900574 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
575 uart_write_wakeup(&sport->port);
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700576
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900577 if (!uart_circ_empty(xmit) && !uart_tx_stopped(&sport->port))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100578 imx_uart_dma_tx(sport);
Uwe Kleine-König18665412018-03-02 11:07:28 +0100579 else if (sport->port.rs485.flags & SER_RS485_ENABLED) {
580 u32 ucr4 = imx_uart_readl(sport, UCR4);
581 ucr4 |= UCR4_TCEN;
582 imx_uart_writel(sport, ucr4, UCR4);
583 }
Uwe Kleine-König64432a82017-07-18 14:01:52 +0200584
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900585 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800586}
587
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100588/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100589static void imx_uart_dma_tx(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800590{
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800591 struct circ_buf *xmit = &sport->port.state->xmit;
592 struct scatterlist *sgl = sport->tx_sgl;
593 struct dma_async_tx_descriptor *desc;
594 struct dma_chan *chan = sport->dma_chan_tx;
595 struct device *dev = sport->port.dev;
Uwe Kleine-König18665412018-03-02 11:07:28 +0100596 u32 ucr1, ucr4;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800597 int ret;
598
Dirk Behme42f752b2014-12-09 18:11:28 +0900599 if (sport->dma_is_txing)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800600 return;
601
Uwe Kleine-König18665412018-03-02 11:07:28 +0100602 ucr4 = imx_uart_readl(sport, UCR4);
603 ucr4 &= ~UCR4_TCEN;
604 imx_uart_writel(sport, ucr4, UCR4);
605
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800606 sport->tx_bytes = uart_circ_chars_pending(xmit);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800607
Dirk Behme7942f852014-12-09 18:11:25 +0900608 if (xmit->tail < xmit->head) {
609 sport->dma_tx_nents = 1;
610 sg_init_one(sgl, xmit->buf + xmit->tail, sport->tx_bytes);
611 } else {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800612 sport->dma_tx_nents = 2;
613 sg_init_table(sgl, 2);
614 sg_set_buf(sgl, xmit->buf + xmit->tail,
615 UART_XMIT_SIZE - xmit->tail);
616 sg_set_buf(sgl + 1, xmit->buf, xmit->head);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800617 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800618
619 ret = dma_map_sg(dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
620 if (ret == 0) {
621 dev_err(dev, "DMA mapping error for TX.\n");
622 return;
623 }
624 desc = dmaengine_prep_slave_sg(chan, sgl, sport->dma_tx_nents,
625 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT);
626 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +0900627 dma_unmap_sg(dev, sgl, sport->dma_tx_nents,
628 DMA_TO_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800629 dev_err(dev, "We cannot prepare for the TX slave dma!\n");
630 return;
631 }
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100632 desc->callback = imx_uart_dma_tx_callback;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800633 desc->callback_param = sport;
634
635 dev_dbg(dev, "TX: prepare to send %lu bytes by DMA.\n",
636 uart_circ_chars_pending(xmit));
Dirk Behmea2c718c2014-12-09 18:11:31 +0900637
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100638 ucr1 = imx_uart_readl(sport, UCR1);
639 ucr1 |= UCR1_TXDMAEN;
640 imx_uart_writel(sport, ucr1, UCR1);
Dirk Behmea2c718c2014-12-09 18:11:31 +0900641
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800642 /* fire it */
643 sport->dma_is_txing = 1;
644 dmaengine_submit(desc);
645 dma_async_issue_pending(chan);
646 return;
647}
648
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100649/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100650static void imx_uart_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100653 u32 ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Uwe Kleine-König48669b62018-03-02 11:07:29 +0100655 if (!sport->port.x_char && uart_circ_empty(&port->state->xmit))
656 return;
657
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100658 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König18665412018-03-02 11:07:28 +0100659 u32 ucr2;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100660
661 ucr2 = imx_uart_readl(sport, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100662 if (port->rs485.flags & SER_RS485_RTS_ON_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100663 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -0200664 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100665 imx_uart_rts_inactive(sport, &ucr2);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100666 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100667
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100668 if (!(port->rs485.flags & SER_RS485_RX_DURING_TX))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100669 imx_uart_stop_rx(port);
Uwe Kleine-König76821e22018-03-02 11:07:26 +0100670
Uwe Kleine-König18665412018-03-02 11:07:28 +0100671 /*
672 * Enable transmitter and shifter empty irq only if DMA is off.
673 * In the DMA case this is done in the tx-callback.
674 */
675 if (!sport->dma_is_enabled) {
676 u32 ucr4 = imx_uart_readl(sport, UCR4);
677 ucr4 |= UCR4_TCEN;
678 imx_uart_writel(sport, ucr4, UCR4);
679 }
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100680 }
681
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800682 if (!sport->dma_is_enabled) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100683 ucr1 = imx_uart_readl(sport, UCR1);
684 imx_uart_writel(sport, ucr1 | UCR1_TXMPTYEN, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800687 if (sport->dma_is_enabled) {
Jiada Wang91a1a902014-12-09 18:11:36 +0900688 if (sport->port.x_char) {
689 /* We have X-char to send, so enable TX IRQ and
690 * disable TX DMA to let TX interrupt to send X-char */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100691 ucr1 = imx_uart_readl(sport, UCR1);
692 ucr1 &= ~UCR1_TXDMAEN;
693 ucr1 |= UCR1_TXMPTYEN;
694 imx_uart_writel(sport, ucr1, UCR1);
Jiada Wang91a1a902014-12-09 18:11:36 +0900695 return;
696 }
697
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400698 if (!uart_circ_empty(&port->state->xmit) &&
699 !uart_tx_stopped(port))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100700 imx_uart_dma_tx(sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800701 return;
702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100705static irqreturn_t imx_uart_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100706{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800707 struct imx_port *sport = dev_id;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100708 u32 usr1;
Sascha Hauerceca6292005-10-12 19:58:08 +0100709 unsigned long flags;
710
711 spin_lock_irqsave(&sport->port.lock, flags);
712
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
718 spin_unlock_irqrestore(&sport->port.lock, flags);
719 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 unsigned long flags;
726
Sachin Kamat82313e62013-01-07 10:25:02 +0530727 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100728 imx_uart_transmit_buffer(sport);
Sachin Kamat82313e62013-01-07 10:25:02 +0530729 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return IRQ_HANDLED;
731}
732
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100733static irqreturn_t imx_uart_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530736 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100737 struct tty_port *port = &sport->port.state->port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100738 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Sachin Kamat82313e62013-01-07 10:25:02 +0530740 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100742 while (imx_uart_readl(sport, USR2) & USR2_RDR) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100743 u32 usr2;
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 flg = TTY_NORMAL;
746 sport->port.icount.rx++;
747
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100748 rx = imx_uart_readl(sport, URXD0);
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100749
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100750 usr2 = imx_uart_readl(sport, USR2);
751 if (usr2 & USR2_BRCD) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100752 imx_uart_writel(sport, USR2_BRCD, USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100753 if (uart_handle_break(&sport->port))
754 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100757 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100758 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Hui Wang019dc9e2011-08-24 17:41:47 +0800760 if (unlikely(rx & URXD_ERR)) {
761 if (rx & URXD_BRK)
762 sport->port.icount.brk++;
763 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100764 sport->port.icount.parity++;
765 else if (rx & URXD_FRMERR)
766 sport->port.icount.frame++;
767 if (rx & URXD_OVRRUN)
768 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Sascha Hauer864eeed2008-04-17 08:39:22 +0100770 if (rx & sport->port.ignore_status_mask) {
771 if (++ignored > 100)
772 goto out;
773 continue;
774 }
775
Eric Nelson8d267fd2014-12-18 12:37:13 -0700776 rx &= (sport->port.read_status_mask | 0xFF);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100777
Hui Wang019dc9e2011-08-24 17:41:47 +0800778 if (rx & URXD_BRK)
779 flg = TTY_BREAK;
780 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100781 flg = TTY_PARITY;
782 else if (rx & URXD_FRMERR)
783 flg = TTY_FRAME;
784 if (rx & URXD_OVRRUN)
785 flg = TTY_OVERRUN;
786
787#ifdef SUPPORT_SYSRQ
788 sport->port.sysrq = 0;
789#endif
790 }
791
Jiada Wang55d86932014-12-09 18:11:22 +0900792 if (sport->port.ignore_status_mask & URXD_DUMMY_READ)
793 goto out;
794
Manfred Schlaegl9b289932015-06-20 19:25:35 +0200795 if (tty_insert_flip_char(port, rx, flg) == 0)
796 sport->port.icount.buf_overrun++;
Sascha Hauer864eeed2008-04-17 08:39:22 +0100797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530800 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100801 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100805static void imx_uart_clear_rx_errors(struct imx_port *sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800806
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100807/*
808 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
809 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100810static unsigned int imx_uart_get_hwmctrl(struct imx_port *sport)
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100811{
812 unsigned int tmp = TIOCM_DSR;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100813 unsigned usr1 = imx_uart_readl(sport, USR1);
814 unsigned usr2 = imx_uart_readl(sport, USR2);
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100815
816 if (usr1 & USR1_RTSS)
817 tmp |= TIOCM_CTS;
818
819 /* in DCE mode DCDIN is always 0 */
Sascha Hauer4b75f802016-09-26 15:55:31 +0200820 if (!(usr2 & USR2_DCDIN))
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100821 tmp |= TIOCM_CAR;
822
823 if (sport->dte_mode)
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100824 if (!(imx_uart_readl(sport, USR2) & USR2_RIIN))
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100825 tmp |= TIOCM_RI;
826
827 return tmp;
828}
829
830/*
831 * Handle any change of modem status signal since we were last called.
832 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100833static void imx_uart_mctrl_check(struct imx_port *sport)
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100834{
835 unsigned int status, changed;
836
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100837 status = imx_uart_get_hwmctrl(sport);
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100838 changed = status ^ sport->old_status;
839
840 if (changed == 0)
841 return;
842
843 sport->old_status = status;
844
845 if (changed & TIOCM_RI && status & TIOCM_RI)
846 sport->port.icount.rng++;
847 if (changed & TIOCM_DSR)
848 sport->port.icount.dsr++;
849 if (changed & TIOCM_CAR)
850 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
851 if (changed & TIOCM_CTS)
852 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
853
854 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
855}
856
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100857static irqreturn_t imx_uart_int(int irq, void *dev_id)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200858{
859 struct imx_port *sport = dev_id;
Uwe Kleine-König43776892018-02-18 22:02:44 +0100860 unsigned int usr1, usr2, ucr1, ucr2, ucr3, ucr4;
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100861 irqreturn_t ret = IRQ_NONE;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200862
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100863 usr1 = imx_uart_readl(sport, USR1);
864 usr2 = imx_uart_readl(sport, USR2);
865 ucr1 = imx_uart_readl(sport, UCR1);
866 ucr2 = imx_uart_readl(sport, UCR2);
867 ucr3 = imx_uart_readl(sport, UCR3);
868 ucr4 = imx_uart_readl(sport, UCR4);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200869
Uwe Kleine-König43776892018-02-18 22:02:44 +0100870 /*
871 * Even if a condition is true that can trigger an irq only handle it if
872 * the respective irq source is enabled. This prevents some undesired
873 * actions, for example if a character that sits in the RX FIFO and that
874 * should be fetched via DMA is tried to be fetched using PIO. Or the
875 * receiver is currently off and so reading from URXD0 results in an
876 * exception. So just mask the (raw) status bits for disabled irqs.
877 */
878 if ((ucr1 & UCR1_RRDYEN) == 0)
879 usr1 &= ~USR1_RRDY;
880 if ((ucr2 & UCR2_ATEN) == 0)
881 usr1 &= ~USR1_AGTIM;
882 if ((ucr1 & UCR1_TXMPTYEN) == 0)
883 usr1 &= ~USR1_TRDY;
884 if ((ucr4 & UCR4_TCEN) == 0)
885 usr2 &= ~USR2_TXDC;
886 if ((ucr3 & UCR3_DTRDEN) == 0)
887 usr1 &= ~USR1_DTRD;
888 if ((ucr1 & UCR1_RTSDEN) == 0)
889 usr1 &= ~USR1_RTSD;
890 if ((ucr3 & UCR3_AWAKEN) == 0)
891 usr1 &= ~USR1_AWAKE;
892 if ((ucr4 & UCR4_OREN) == 0)
893 usr2 &= ~USR2_ORE;
894
895 if (usr1 & (USR1_RRDY | USR1_AGTIM)) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100896 imx_uart_rxint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100897 ret = IRQ_HANDLED;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800898 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200899
Uwe Kleine-König43776892018-02-18 22:02:44 +0100900 if ((usr1 & USR1_TRDY) || (usr2 & USR2_TXDC)) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100901 imx_uart_txint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100902 ret = IRQ_HANDLED;
903 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200904
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100905 if (usr1 & USR1_DTRD) {
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100906 unsigned long flags;
907
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100908 imx_uart_writel(sport, USR1_DTRD, USR1);
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100909
910 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100911 imx_uart_mctrl_check(sport);
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100912 spin_unlock_irqrestore(&sport->port.lock, flags);
913
914 ret = IRQ_HANDLED;
915 }
916
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100917 if (usr1 & USR1_RTSD) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100918 imx_uart_rtsint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100919 ret = IRQ_HANDLED;
920 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200921
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100922 if (usr1 & USR1_AWAKE) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100923 imx_uart_writel(sport, USR1_AWAKE, USR1);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100924 ret = IRQ_HANDLED;
925 }
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200926
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100927 if (usr2 & USR2_ORE) {
Alexander Steinf1f836e2013-05-14 17:06:07 +0200928 sport->port.icount.overrun++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100929 imx_uart_writel(sport, USR2_ORE, USR2);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100930 ret = IRQ_HANDLED;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200931 }
932
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100933 return ret;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200934}
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936/*
937 * Return TIOCSER_TEMT when transmitter is not busy.
938 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100939static unsigned int imx_uart_tx_empty(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
941 struct imx_port *sport = (struct imx_port *)port;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800942 unsigned int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100944 ret = (imx_uart_readl(sport, USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800945
946 /* If the TX DMA is working, return 0. */
Uwe Kleine-König686351f2018-03-02 11:07:21 +0100947 if (sport->dma_is_txing)
Huang Shijie1ce43e52013-10-11 18:30:59 +0800948 ret = 0;
949
950 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100953/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100954static unsigned int imx_uart_get_mctrl(struct uart_port *port)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100955{
956 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100957 unsigned int ret = imx_uart_get_hwmctrl(sport);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100958
959 mctrl_gpio_get(sport->gpios, &ret);
960
961 return ret;
962}
963
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100964/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100965static void imx_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100967 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100968 u32 ucr3, uts;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100969
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100970 if (!(port->rs485.flags & SER_RS485_ENABLED)) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100971 u32 ucr2;
972
973 ucr2 = imx_uart_readl(sport, UCR2);
974 ucr2 &= ~(UCR2_CTS | UCR2_CTSC);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100975 if (mctrl & TIOCM_RTS)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100976 ucr2 |= UCR2_CTS | UCR2_CTSC;
977 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100978 }
Huang Shijie6b471a92013-11-29 17:29:24 +0800979
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100980 ucr3 = imx_uart_readl(sport, UCR3) & ~UCR3_DSR;
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200981 if (!(mctrl & TIOCM_DTR))
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100982 ucr3 |= UCR3_DSR;
983 imx_uart_writel(sport, ucr3, UCR3);
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200984
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100985 uts = imx_uart_readl(sport, imx_uart_uts_reg(sport)) & ~UTS_LOOP;
Huang Shijie6b471a92013-11-29 17:29:24 +0800986 if (mctrl & TIOCM_LOOP)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100987 uts |= UTS_LOOP;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100988 imx_uart_writel(sport, uts, imx_uart_uts_reg(sport));
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100989
990 mctrl_gpio_set(sport->gpios, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
993/*
994 * Interrupts always disabled.
995 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +0100996static void imx_uart_break_ctl(struct uart_port *port, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +0100999 unsigned long flags;
1000 u32 ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 spin_lock_irqsave(&sport->port.lock, flags);
1003
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001004 ucr1 = imx_uart_readl(sport, UCR1) & ~UCR1_SNDBRK;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001005
Sachin Kamat82313e62013-01-07 10:25:02 +05301006 if (break_state != 0)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001007 ucr1 |= UCR1_SNDBRK;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001008
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001009 imx_uart_writel(sport, ucr1, UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 spin_unlock_irqrestore(&sport->port.lock, flags);
1012}
1013
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001014/*
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001015 * This is our per-port timeout handler, for checking the
1016 * modem status signals.
1017 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001018static void imx_uart_timeout(struct timer_list *t)
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001019{
Kees Cooke99e88a2017-10-16 14:43:17 -07001020 struct imx_port *sport = from_timer(sport, t, timer);
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001021 unsigned long flags;
1022
1023 if (sport->port.state) {
1024 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001025 imx_uart_mctrl_check(sport);
Uwe Kleine-Königcc568842015-10-18 21:34:47 +02001026 spin_unlock_irqrestore(&sport->port.lock, flags);
1027
1028 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
1029 }
1030}
1031
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001032#define RX_BUF_SIZE (PAGE_SIZE)
1033
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001034/*
Lucas Stach905c0de2015-09-04 17:52:41 +02001035 * There are two kinds of RX DMA interrupts(such as in the MX6Q):
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001036 * [1] the RX DMA buffer is full.
Lucas Stach905c0de2015-09-04 17:52:41 +02001037 * [2] the aging timer expires
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001038 *
Lucas Stach905c0de2015-09-04 17:52:41 +02001039 * Condition [2] is triggered when a character has been sitting in the FIFO
1040 * for at least 8 byte durations.
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001041 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001042static void imx_uart_dma_rx_callback(void *data)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001043{
1044 struct imx_port *sport = data;
1045 struct dma_chan *chan = sport->dma_chan_rx;
1046 struct scatterlist *sgl = &sport->rx_sgl;
Huang Shijie7cb92fd2013-10-15 15:23:40 +08001047 struct tty_port *port = &sport->port.state->port;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001048 struct dma_tx_state state;
Nandor Han9d297232016-08-08 15:38:27 +03001049 struct circ_buf *rx_ring = &sport->rx_ring;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001050 enum dma_status status;
Nandor Han9d297232016-08-08 15:38:27 +03001051 unsigned int w_bytes = 0;
1052 unsigned int r_bytes;
1053 unsigned int bd_size;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001054
Robin Gongfb7f1bf2018-06-20 00:56:58 +08001055 status = dmaengine_tx_status(chan, sport->rx_cookie, &state);
Philipp Zabel392bceed2015-05-19 10:54:09 +02001056
Nandor Han9d297232016-08-08 15:38:27 +03001057 if (status == DMA_ERROR) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001058 imx_uart_clear_rx_errors(sport);
Nandor Han9d297232016-08-08 15:38:27 +03001059 return;
Robin Gongee5e7c12014-12-09 18:11:33 +09001060 }
Lucas Stach976b39c2015-09-04 17:52:39 +02001061
Nandor Han9d297232016-08-08 15:38:27 +03001062 if (!(sport->port.ignore_status_mask & URXD_DUMMY_READ)) {
1063
1064 /*
1065 * The state-residue variable represents the empty space
1066 * relative to the entire buffer. Taking this in consideration
1067 * the head is always calculated base on the buffer total
1068 * length - DMA transaction residue. The UART script from the
1069 * SDMA firmware will jump to the next buffer descriptor,
1070 * once a DMA transaction if finalized (IMX53 RM - A.4.1.2.4).
1071 * Taking this in consideration the tail is always at the
1072 * beginning of the buffer descriptor that contains the head.
1073 */
1074
1075 /* Calculate the head */
1076 rx_ring->head = sg_dma_len(sgl) - state.residue;
1077
1078 /* Calculate the tail. */
1079 bd_size = sg_dma_len(sgl) / sport->rx_periods;
1080 rx_ring->tail = ((rx_ring->head-1) / bd_size) * bd_size;
1081
1082 if (rx_ring->head <= sg_dma_len(sgl) &&
1083 rx_ring->head > rx_ring->tail) {
1084
1085 /* Move data from tail to head */
1086 r_bytes = rx_ring->head - rx_ring->tail;
1087
1088 /* CPU claims ownership of RX DMA buffer */
1089 dma_sync_sg_for_cpu(sport->port.dev, sgl, 1,
1090 DMA_FROM_DEVICE);
1091
1092 w_bytes = tty_insert_flip_string(port,
1093 sport->rx_buf + rx_ring->tail, r_bytes);
1094
1095 /* UART retrieves ownership of RX DMA buffer */
1096 dma_sync_sg_for_device(sport->port.dev, sgl, 1,
1097 DMA_FROM_DEVICE);
1098
1099 if (w_bytes != r_bytes)
1100 sport->port.icount.buf_overrun++;
1101
1102 sport->port.icount.rx += w_bytes;
1103 } else {
1104 WARN_ON(rx_ring->head > sg_dma_len(sgl));
1105 WARN_ON(rx_ring->head <= rx_ring->tail);
1106 }
1107 }
1108
1109 if (w_bytes) {
1110 tty_flip_buffer_push(port);
1111 dev_dbg(sport->port.dev, "We get %d bytes.\n", w_bytes);
1112 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001113}
1114
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001115/* RX DMA buffer periods */
1116#define RX_DMA_PERIODS 4
1117
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001118static int imx_uart_start_rx_dma(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001119{
1120 struct scatterlist *sgl = &sport->rx_sgl;
1121 struct dma_chan *chan = sport->dma_chan_rx;
1122 struct device *dev = sport->port.dev;
1123 struct dma_async_tx_descriptor *desc;
1124 int ret;
1125
Nandor Han9d297232016-08-08 15:38:27 +03001126 sport->rx_ring.head = 0;
1127 sport->rx_ring.tail = 0;
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001128 sport->rx_periods = RX_DMA_PERIODS;
Nandor Han9d297232016-08-08 15:38:27 +03001129
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001130 sg_init_one(sgl, sport->rx_buf, RX_BUF_SIZE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001131 ret = dma_map_sg(dev, sgl, 1, DMA_FROM_DEVICE);
1132 if (ret == 0) {
1133 dev_err(dev, "DMA mapping error for RX.\n");
1134 return -EINVAL;
1135 }
Nandor Han9d297232016-08-08 15:38:27 +03001136
1137 desc = dmaengine_prep_dma_cyclic(chan, sg_dma_address(sgl),
1138 sg_dma_len(sgl), sg_dma_len(sgl) / sport->rx_periods,
1139 DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT);
1140
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001141 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +09001142 dma_unmap_sg(dev, sgl, 1, DMA_FROM_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001143 dev_err(dev, "We cannot prepare for the RX slave dma!\n");
1144 return -EINVAL;
1145 }
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001146 desc->callback = imx_uart_dma_rx_callback;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001147 desc->callback_param = sport;
1148
1149 dev_dbg(dev, "RX: prepare for the DMA.\n");
Romain Perier4139fd72017-09-28 11:03:49 +01001150 sport->dma_is_rxing = 1;
Nandor Han9d297232016-08-08 15:38:27 +03001151 sport->rx_cookie = dmaengine_submit(desc);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001152 dma_async_issue_pending(chan);
1153 return 0;
1154}
1155
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001156static void imx_uart_clear_rx_errors(struct imx_port *sport)
Nandor Han41d98b52016-08-08 15:38:28 +03001157{
Troy Kisky45ca6732018-02-23 18:27:50 -08001158 struct tty_port *port = &sport->port.state->port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001159 u32 usr1, usr2;
Nandor Han41d98b52016-08-08 15:38:28 +03001160
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001161 usr1 = imx_uart_readl(sport, USR1);
1162 usr2 = imx_uart_readl(sport, USR2);
Nandor Han41d98b52016-08-08 15:38:28 +03001163
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001164 if (usr2 & USR2_BRCD) {
Nandor Han41d98b52016-08-08 15:38:28 +03001165 sport->port.icount.brk++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001166 imx_uart_writel(sport, USR2_BRCD, USR2);
Troy Kisky45ca6732018-02-23 18:27:50 -08001167 uart_handle_break(&sport->port);
1168 if (tty_insert_flip_char(port, 0, TTY_BREAK) == 0)
1169 sport->port.icount.buf_overrun++;
1170 tty_flip_buffer_push(port);
1171 } else {
1172 dev_err(sport->port.dev, "DMA transaction error.\n");
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001173 if (usr1 & USR1_FRAMERR) {
Troy Kisky45ca6732018-02-23 18:27:50 -08001174 sport->port.icount.frame++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001175 imx_uart_writel(sport, USR1_FRAMERR, USR1);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001176 } else if (usr1 & USR1_PARITYERR) {
Troy Kisky45ca6732018-02-23 18:27:50 -08001177 sport->port.icount.parity++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001178 imx_uart_writel(sport, USR1_PARITYERR, USR1);
Troy Kisky45ca6732018-02-23 18:27:50 -08001179 }
Nandor Han41d98b52016-08-08 15:38:28 +03001180 }
1181
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001182 if (usr2 & USR2_ORE) {
Nandor Han41d98b52016-08-08 15:38:28 +03001183 sport->port.icount.overrun++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001184 imx_uart_writel(sport, USR2_ORE, USR2);
Nandor Han41d98b52016-08-08 15:38:28 +03001185 }
1186
1187}
1188
Lucas Stachcc323822015-09-04 17:52:37 +02001189#define TXTL_DEFAULT 2 /* reset default */
1190#define RXTL_DEFAULT 1 /* reset default */
Lucas Stach184bd702015-09-04 17:52:40 +02001191#define TXTL_DMA 8 /* DMA burst setting */
1192#define RXTL_DMA 9 /* DMA burst setting */
Lucas Stachcc323822015-09-04 17:52:37 +02001193
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001194static void imx_uart_setup_ufcr(struct imx_port *sport,
1195 unsigned char txwl, unsigned char rxwl)
Lucas Stachcc323822015-09-04 17:52:37 +02001196{
1197 unsigned int val;
1198
1199 /* set receiver / transmitter trigger level */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001200 val = imx_uart_readl(sport, UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
Lucas Stachcc323822015-09-04 17:52:37 +02001201 val |= txwl << UFCR_TXTL_SHF | rxwl;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001202 imx_uart_writel(sport, val, UFCR);
Lucas Stachcc323822015-09-04 17:52:37 +02001203}
1204
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001205static void imx_uart_dma_exit(struct imx_port *sport)
1206{
1207 if (sport->dma_chan_rx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001208 dmaengine_terminate_sync(sport->dma_chan_rx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001209 dma_release_channel(sport->dma_chan_rx);
1210 sport->dma_chan_rx = NULL;
Nandor Han9d297232016-08-08 15:38:27 +03001211 sport->rx_cookie = -EINVAL;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001212 kfree(sport->rx_buf);
1213 sport->rx_buf = NULL;
1214 }
1215
1216 if (sport->dma_chan_tx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001217 dmaengine_terminate_sync(sport->dma_chan_tx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001218 dma_release_channel(sport->dma_chan_tx);
1219 sport->dma_chan_tx = NULL;
1220 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001221}
1222
1223static int imx_uart_dma_init(struct imx_port *sport)
1224{
Huang Shijieb09c74a2013-08-29 16:29:25 +08001225 struct dma_slave_config slave_config = {};
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001226 struct device *dev = sport->port.dev;
1227 int ret;
1228
1229 /* Prepare for RX : */
1230 sport->dma_chan_rx = dma_request_slave_channel(dev, "rx");
1231 if (!sport->dma_chan_rx) {
1232 dev_dbg(dev, "cannot get the DMA channel.\n");
1233 ret = -EINVAL;
1234 goto err;
1235 }
1236
1237 slave_config.direction = DMA_DEV_TO_MEM;
1238 slave_config.src_addr = sport->port.mapbase + URXD0;
1239 slave_config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001240 /* one byte less than the watermark level to enable the aging timer */
1241 slave_config.src_maxburst = RXTL_DMA - 1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001242 ret = dmaengine_slave_config(sport->dma_chan_rx, &slave_config);
1243 if (ret) {
1244 dev_err(dev, "error in RX dma configuration.\n");
1245 goto err;
1246 }
1247
Martyn Welchf654b23c2017-09-28 11:07:40 +01001248 sport->rx_buf = kzalloc(RX_BUF_SIZE, GFP_KERNEL);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001249 if (!sport->rx_buf) {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001250 ret = -ENOMEM;
1251 goto err;
1252 }
Nandor Han9d297232016-08-08 15:38:27 +03001253 sport->rx_ring.buf = sport->rx_buf;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001254
1255 /* Prepare for TX : */
1256 sport->dma_chan_tx = dma_request_slave_channel(dev, "tx");
1257 if (!sport->dma_chan_tx) {
1258 dev_err(dev, "cannot get the TX DMA channel!\n");
1259 ret = -EINVAL;
1260 goto err;
1261 }
1262
1263 slave_config.direction = DMA_MEM_TO_DEV;
1264 slave_config.dst_addr = sport->port.mapbase + URTX0;
1265 slave_config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001266 slave_config.dst_maxburst = TXTL_DMA;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001267 ret = dmaengine_slave_config(sport->dma_chan_tx, &slave_config);
1268 if (ret) {
1269 dev_err(dev, "error in TX dma configuration.");
1270 goto err;
1271 }
1272
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001273 return 0;
1274err:
1275 imx_uart_dma_exit(sport);
1276 return ret;
1277}
1278
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001279static void imx_uart_enable_dma(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001280{
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001281 u32 ucr1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001282
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001283 imx_uart_setup_ufcr(sport, TXTL_DMA, RXTL_DMA);
Uwe Kleine-König02b0abd32018-03-02 11:07:24 +01001284
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001285 /* set UCR1 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001286 ucr1 = imx_uart_readl(sport, UCR1);
1287 ucr1 |= UCR1_RXDMAEN | UCR1_TXDMAEN | UCR1_ATDMAEN;
1288 imx_uart_writel(sport, ucr1, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001289
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001290 sport->dma_is_enabled = 1;
1291}
1292
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001293static void imx_uart_disable_dma(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001294{
Sebastian Reichel676a31d2018-05-07 23:36:09 +02001295 u32 ucr1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001296
1297 /* clear UCR1 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001298 ucr1 = imx_uart_readl(sport, UCR1);
1299 ucr1 &= ~(UCR1_RXDMAEN | UCR1_TXDMAEN | UCR1_ATDMAEN);
1300 imx_uart_writel(sport, ucr1, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001301
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001302 imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Lucas Stach184bd702015-09-04 17:52:40 +02001303
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001304 sport->dma_is_enabled = 0;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001305}
1306
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001307/* half the RX buffer size */
1308#define CTSTL 16
1309
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001310static int imx_uart_startup(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 struct imx_port *sport = (struct imx_port *)port;
Fabio Estevam458e2c82015-07-27 15:15:59 -03001313 int retval, i;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001314 unsigned long flags;
Uwe Kleine-König4238c002018-02-18 22:02:45 +01001315 int dma_is_inited = 0;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001316 u32 ucr1, ucr2, ucr4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Huang Shijie1cf93e02013-06-28 13:39:42 +08001318 retval = clk_prepare_enable(sport->clk_per);
1319 if (retval)
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001320 return retval;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001321 retval = clk_prepare_enable(sport->clk_ipg);
1322 if (retval) {
1323 clk_disable_unprepare(sport->clk_per);
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001324 return retval;
Huang Shijie0c375502013-06-09 10:01:19 +08001325 }
Huang Shijie28eb4272013-06-04 09:59:33 +08001326
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001327 imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 /* disable the DREN bit (Data Ready interrupt enable) before
1330 * requesting IRQs
1331 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001332 ucr4 = imx_uart_readl(sport, UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001333
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001334 /* set the trigger level for CTS */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001335 ucr4 &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
1336 ucr4 |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001337
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001338 imx_uart_writel(sport, ucr4 & ~UCR4_DREN, UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Lucas Stach7e115772015-09-04 17:52:42 +02001340 /* Can we enable the DMA support? */
Uwe Kleine-König4238c002018-02-18 22:02:45 +01001341 if (!uart_console(port) && imx_uart_dma_init(sport) == 0)
1342 dma_is_inited = 1;
Lucas Stach7e115772015-09-04 17:52:42 +02001343
Jiada Wang53794182015-04-13 18:31:43 +09001344 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijie772f8992014-05-21 08:56:28 +08001345 /* Reset fifo's and state machines */
Fabio Estevam458e2c82015-07-27 15:15:59 -03001346 i = 100;
1347
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001348 ucr2 = imx_uart_readl(sport, UCR2);
1349 ucr2 &= ~UCR2_SRST;
1350 imx_uart_writel(sport, ucr2, UCR2);
Fabio Estevam458e2c82015-07-27 15:15:59 -03001351
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001352 while (!(imx_uart_readl(sport, UCR2) & UCR2_SRST) && (--i > 0))
Fabio Estevam458e2c82015-07-27 15:15:59 -03001353 udelay(1);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 /*
1356 * Finally, clear and enable interrupts
1357 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001358 imx_uart_writel(sport, USR1_RTSD | USR1_DTRD, USR1);
1359 imx_uart_writel(sport, USR2_ORE, USR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001361 ucr1 = imx_uart_readl(sport, UCR1) & ~UCR1_RRDYEN;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001362 ucr1 |= UCR1_UARTEN;
Nandor Han6376cd32017-06-28 15:59:36 +02001363 if (sport->have_rtscts)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001364 ucr1 |= UCR1_RTSDEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001365
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001366 imx_uart_writel(sport, ucr1, UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001368 ucr4 = imx_uart_readl(sport, UCR4) & ~UCR4_OREN;
Troy Kisky1f043572017-11-16 11:14:53 -07001369 if (!sport->dma_is_enabled)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001370 ucr4 |= UCR4_OREN;
1371 imx_uart_writel(sport, ucr4, UCR4);
Jiada Wang6f026d6b2014-12-09 18:11:34 +09001372
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001373 ucr2 = imx_uart_readl(sport, UCR2) & ~UCR2_ATEN;
1374 ucr2 |= (UCR2_RXEN | UCR2_TXEN);
Lucas Stachbff09b02013-05-30 15:47:04 +02001375 if (!sport->have_rtscts)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001376 ucr2 |= UCR2_IRTS;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001377 /*
1378 * make sure the edge sensitive RTS-irq is disabled,
1379 * we're using RTSD instead.
1380 */
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 ucr2 &= ~UCR2_RTSEN;
1383 imx_uart_writel(sport, ucr2, UCR2);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001384
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001385 if (!imx_uart_is_imx1(sport)) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001386 u32 ucr3;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001387
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001388 ucr3 = imx_uart_readl(sport, UCR3);
1389
1390 ucr3 |= UCR3_DTRDEN | UCR3_RI | UCR3_DCD;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001391
1392 if (sport->dte_mode)
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02001393 /* disable broken interrupts */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001394 ucr3 &= ~(UCR3_RI | UCR3_DCD);
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001395
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001396 imx_uart_writel(sport, ucr3, UCR3);
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001397 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +02001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /*
1400 * Enable modem status interrupts
1401 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001402 imx_uart_enable_ms(&sport->port);
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001403
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001404 if (dma_is_inited) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001405 imx_uart_enable_dma(sport);
1406 imx_uart_start_rx_dma(sport);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001407 } else {
1408 ucr1 = imx_uart_readl(sport, UCR1);
1409 ucr1 |= UCR1_RRDYEN;
1410 imx_uart_writel(sport, ucr1, UCR1);
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001411
1412 ucr2 = imx_uart_readl(sport, UCR2);
1413 ucr2 |= UCR2_ATEN;
1414 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001415 }
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001416
Sachin Kamat82313e62013-01-07 10:25:02 +05301417 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001422static void imx_uart_shutdown(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 struct imx_port *sport = (struct imx_port *)port;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001425 unsigned long flags;
Sebastian Reichel339c7a82018-05-24 19:30:24 +02001426 u32 ucr1, ucr2, ucr4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001428 if (sport->dma_is_enabled) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001429 dmaengine_terminate_sync(sport->dma_chan_tx);
Sebastian Reichel7722c242018-05-07 23:36:10 +02001430 if (sport->dma_is_txing) {
1431 dma_unmap_sg(sport->port.dev, &sport->tx_sgl[0],
1432 sport->dma_tx_nents, DMA_TO_DEVICE);
1433 sport->dma_is_txing = 0;
1434 }
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001435 dmaengine_terminate_sync(sport->dma_chan_rx);
Sebastian Reichel7722c242018-05-07 23:36:10 +02001436 if (sport->dma_is_rxing) {
1437 dma_unmap_sg(sport->port.dev, &sport->rx_sgl,
1438 1, DMA_FROM_DEVICE);
1439 sport->dma_is_rxing = 0;
1440 }
Huang Shijiea4688bc2014-09-19 15:42:57 +08001441
Jiada Wang73631812014-12-09 18:11:23 +09001442 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001443 imx_uart_stop_tx(port);
1444 imx_uart_stop_rx(port);
1445 imx_uart_disable_dma(sport);
Jiada Wang73631812014-12-09 18:11:23 +09001446 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001447 imx_uart_dma_exit(sport);
1448 }
1449
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001450 mctrl_gpio_disable_ms(sport->gpios);
1451
Xinyu Chen9ec18822012-08-27 09:36:51 +02001452 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001453 ucr2 = imx_uart_readl(sport, UCR2);
Sebastian Reichel0fdf1782018-05-24 19:30:23 +02001454 ucr2 &= ~(UCR2_TXEN | UCR2_ATEN);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001455 imx_uart_writel(sport, ucr2, UCR2);
Sebastian Reichel339c7a82018-05-24 19:30:24 +02001456
1457 ucr4 = imx_uart_readl(sport, UCR4);
1458 ucr4 &= ~UCR4_OREN;
1459 imx_uart_writel(sport, ucr4, UCR4);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001460 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 /*
1463 * Stop our timer.
1464 */
1465 del_timer_sync(&sport->timer);
1466
1467 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 * Disable all interrupts, port and break condition.
1469 */
1470
Xinyu Chen9ec18822012-08-27 09:36:51 +02001471 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001472 ucr1 = imx_uart_readl(sport, UCR1);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001473 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN | UCR1_RXDMAEN | UCR1_ATDMAEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001474
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001475 imx_uart_writel(sport, ucr1, UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001476 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +08001477
Huang Shijie1cf93e02013-06-28 13:39:42 +08001478 clk_disable_unprepare(sport->clk_per);
1479 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +01001482/* called with port.lock taken and irqs off */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001483static void imx_uart_flush_buffer(struct uart_port *port)
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001484{
1485 struct imx_port *sport = (struct imx_port *)port;
Dirk Behme82e86ae2014-12-09 18:11:27 +09001486 struct scatterlist *sgl = &sport->tx_sgl[0];
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001487 u32 ucr2;
Fabio Estevam4f86a952015-02-07 15:46:41 -02001488 int i = 100, ubir, ubmr, uts;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001489
Dirk Behme82e86ae2014-12-09 18:11:27 +09001490 if (!sport->dma_chan_tx)
1491 return;
1492
1493 sport->tx_bytes = 0;
1494 dmaengine_terminate_all(sport->dma_chan_tx);
1495 if (sport->dma_is_txing) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001496 u32 ucr1;
1497
Dirk Behme82e86ae2014-12-09 18:11:27 +09001498 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents,
1499 DMA_TO_DEVICE);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001500 ucr1 = imx_uart_readl(sport, UCR1);
1501 ucr1 &= ~UCR1_TXDMAEN;
1502 imx_uart_writel(sport, ucr1, UCR1);
Martyn Welch0f7bdbd2017-09-28 11:38:51 +01001503 sport->dma_is_txing = 0;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001504 }
Fabio Estevam934084a2015-01-13 10:00:26 -02001505
1506 /*
1507 * According to the Reference Manual description of the UART SRST bit:
Martyn Welch263763c2017-10-04 17:13:27 +01001508 *
Fabio Estevam934084a2015-01-13 10:00:26 -02001509 * "Reset the transmit and receive state machines,
1510 * all FIFOs and register USR1, USR2, UBIR, UBMR, UBRC, URXD, UTXD
Martyn Welch263763c2017-10-04 17:13:27 +01001511 * and UTS[6-3]".
1512 *
1513 * We don't need to restore the old values from USR1, USR2, URXD and
1514 * UTXD. UBRC is read only, so only save/restore the other three
1515 * registers.
Fabio Estevam934084a2015-01-13 10:00:26 -02001516 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001517 ubir = imx_uart_readl(sport, UBIR);
1518 ubmr = imx_uart_readl(sport, UBMR);
1519 uts = imx_uart_readl(sport, IMX21_UTS);
Fabio Estevam934084a2015-01-13 10:00:26 -02001520
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001521 ucr2 = imx_uart_readl(sport, UCR2);
1522 ucr2 &= ~UCR2_SRST;
1523 imx_uart_writel(sport, ucr2, UCR2);
Fabio Estevam934084a2015-01-13 10:00:26 -02001524
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001525 while (!(imx_uart_readl(sport, UCR2) & UCR2_SRST) && (--i > 0))
Fabio Estevam934084a2015-01-13 10:00:26 -02001526 udelay(1);
1527
1528 /* Restore the registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001529 imx_uart_writel(sport, ubir, UBIR);
1530 imx_uart_writel(sport, ubmr, UBMR);
1531 imx_uart_writel(sport, uts, IMX21_UTS);
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001532}
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534static void
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001535imx_uart_set_termios(struct uart_port *port, struct ktermios *termios,
1536 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
1538 struct imx_port *sport = (struct imx_port *)port;
1539 unsigned long flags;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001540 u32 ucr2, old_ucr1, old_ucr2, ufcr;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001541 unsigned int baud, quot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001543 unsigned long div;
Oskar Schirmer534fca02009-06-11 14:52:23 +01001544 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001545 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 * We only support CS7 and CS8.
1549 */
1550 while ((termios->c_cflag & CSIZE) != CS7 &&
1551 (termios->c_cflag & CSIZE) != CS8) {
1552 termios->c_cflag &= ~CSIZE;
1553 termios->c_cflag |= old_csize;
1554 old_csize = CS8;
1555 }
1556
1557 if ((termios->c_cflag & CSIZE) == CS8)
1558 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
1559 else
1560 ucr2 = UCR2_SRST | UCR2_IRTS;
1561
1562 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +05301563 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +01001564 ucr2 &= ~UCR2_IRTS;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001565
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001566 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001567 /*
1568 * RTS is mandatory for rs485 operation, so keep
1569 * it under manual control and keep transmitter
1570 * disabled.
1571 */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001572 if (port->rs485.flags &
1573 SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001574 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001575 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001576 imx_uart_rts_inactive(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001577 } else {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001578 imx_uart_rts_auto(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001579 }
Sascha Hauer5b802342006-05-04 14:07:42 +01001580 } else {
1581 termios->c_cflag &= ~CRTSCTS;
1582 }
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001583 } else if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001584 /* disable transmitter */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001585 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001586 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001587 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001588 imx_uart_rts_inactive(sport, &ucr2);
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001589 }
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 if (termios->c_cflag & CSTOPB)
1593 ucr2 |= UCR2_STPB;
1594 if (termios->c_cflag & PARENB) {
1595 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +00001596 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 ucr2 |= UCR2_PROE;
1598 }
1599
Eric Miao995234d2011-12-23 05:39:27 +08001600 del_timer_sync(&sport->timer);
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 /*
1603 * Ask the core to calculate the divisor for us.
1604 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001605 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 quot = uart_get_divisor(port, baud);
1607
1608 spin_lock_irqsave(&sport->port.lock, flags);
1609
1610 sport->port.read_status_mask = 0;
1611 if (termios->c_iflag & INPCK)
1612 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
1613 if (termios->c_iflag & (BRKINT | PARMRK))
1614 sport->port.read_status_mask |= URXD_BRK;
1615
1616 /*
1617 * Characters to ignore
1618 */
1619 sport->port.ignore_status_mask = 0;
1620 if (termios->c_iflag & IGNPAR)
Eric Nelson865cea82014-12-18 12:37:14 -07001621 sport->port.ignore_status_mask |= URXD_PRERR | URXD_FRMERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (termios->c_iflag & IGNBRK) {
1623 sport->port.ignore_status_mask |= URXD_BRK;
1624 /*
1625 * If we're ignoring parity and break indicators,
1626 * ignore overruns too (for real raw support).
1627 */
1628 if (termios->c_iflag & IGNPAR)
1629 sport->port.ignore_status_mask |= URXD_OVRRUN;
1630 }
1631
Jiada Wang55d86932014-12-09 18:11:22 +09001632 if ((termios->c_cflag & CREAD) == 0)
1633 sport->port.ignore_status_mask |= URXD_DUMMY_READ;
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 /*
1636 * Update the per-port timeout.
1637 */
1638 uart_update_timeout(port, termios->c_cflag, baud);
1639
1640 /*
1641 * disable interrupts and drain transmitter
1642 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001643 old_ucr1 = imx_uart_readl(sport, UCR1);
1644 imx_uart_writel(sport,
1645 old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1646 UCR1);
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001647 old_ucr2 = imx_uart_readl(sport, UCR2);
1648 imx_uart_writel(sport, old_ucr2 & ~UCR2_ATEN, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001650 while (!(imx_uart_readl(sport, USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 barrier();
1652
1653 /* then, disable everything */
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001654 imx_uart_writel(sport, old_ucr2 & ~(UCR2_TXEN | UCR2_RXEN | UCR2_ATEN), UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001655 old_ucr2 &= (UCR2_TXEN | UCR2_RXEN | UCR2_ATEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001657 /* custom-baudrate handling */
1658 div = sport->port.uartclk / (baud * 16);
1659 if (baud == 38400 && quot != div)
1660 baud = sport->port.uartclk / (quot * 16);
Hubert Feurstein09bd00f2013-07-18 18:52:49 +02001661
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001662 div = sport->port.uartclk / (baud * 16);
1663 if (div > 7)
1664 div = 7;
1665 if (!div)
1666 div = 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001667
Oskar Schirmer534fca02009-06-11 14:52:23 +01001668 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1669 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001670
Alan Coxeab4f5a2010-06-01 22:52:52 +02001671 tdiv64 = sport->port.uartclk;
1672 tdiv64 *= num;
1673 do_div(tdiv64, denom * 16 * div);
1674 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001675 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001676
Oskar Schirmer534fca02009-06-11 14:52:23 +01001677 num -= 1;
1678 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001679
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001680 ufcr = imx_uart_readl(sport, UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001681 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001682 imx_uart_writel(sport, ufcr, UFCR);
Sascha Hauer036bb152008-07-05 10:02:44 +02001683
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001684 imx_uart_writel(sport, num, UBIR);
1685 imx_uart_writel(sport, denom, UBMR);
Oskar Schirmer534fca02009-06-11 14:52:23 +01001686
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001687 if (!imx_uart_is_imx1(sport))
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001688 imx_uart_writel(sport, sport->port.uartclk / div / 1000,
1689 IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001691 imx_uart_writel(sport, old_ucr1, UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001692
1693 /* set the parity, stop bits and data size */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001694 imx_uart_writel(sport, ucr2 | old_ucr2, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001697 imx_uart_enable_ms(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 spin_unlock_irqrestore(&sport->port.lock, flags);
1700}
1701
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001702static const char *imx_uart_type(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
1704 struct imx_port *sport = (struct imx_port *)port;
1705
1706 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1707}
1708
1709/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 * Configure/autoconfigure the port.
1711 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001712static void imx_uart_config_port(struct uart_port *port, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 struct imx_port *sport = (struct imx_port *)port;
1715
Alexander Shiyanda82f992014-02-22 16:01:33 +04001716 if (flags & UART_CONFIG_TYPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 sport->port.type = PORT_IMX;
1718}
1719
1720/*
1721 * Verify the new serial_struct (for TIOCSSERIAL).
1722 * The only change we allow are to the flags and type, and
1723 * even then only between PORT_IMX and PORT_UNKNOWN
1724 */
1725static int
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001726imx_uart_verify_port(struct uart_port *port, struct serial_struct *ser)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
1728 struct imx_port *sport = (struct imx_port *)port;
1729 int ret = 0;
1730
1731 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1732 ret = -EINVAL;
1733 if (sport->port.irq != ser->irq)
1734 ret = -EINVAL;
1735 if (ser->io_type != UPIO_MEM)
1736 ret = -EINVAL;
1737 if (sport->port.uartclk / 16 != ser->baud_base)
1738 ret = -EINVAL;
Olof Johanssona50c44c2013-09-11 21:27:53 -07001739 if (sport->port.mapbase != (unsigned long)ser->iomem_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 ret = -EINVAL;
1741 if (sport->port.iobase != ser->port)
1742 ret = -EINVAL;
1743 if (ser->hub6 != 0)
1744 ret = -EINVAL;
1745 return ret;
1746}
1747
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001748#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001749
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001750static int imx_uart_poll_init(struct uart_port *port)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001751{
1752 struct imx_port *sport = (struct imx_port *)port;
1753 unsigned long flags;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001754 u32 ucr1, ucr2;
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001755 int retval;
1756
1757 retval = clk_prepare_enable(sport->clk_ipg);
1758 if (retval)
1759 return retval;
1760 retval = clk_prepare_enable(sport->clk_per);
1761 if (retval)
1762 clk_disable_unprepare(sport->clk_ipg);
1763
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001764 imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001765
1766 spin_lock_irqsave(&sport->port.lock, flags);
1767
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001768 /*
1769 * Be careful about the order of enabling bits here. First enable the
1770 * receiver (UARTEN + RXEN) and only then the corresponding irqs.
1771 * This prevents that a character that already sits in the RX fifo is
1772 * triggering an irq but the try to fetch it from there results in an
1773 * exception because UARTEN or RXEN is still off.
1774 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001775 ucr1 = imx_uart_readl(sport, UCR1);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001776 ucr2 = imx_uart_readl(sport, UCR2);
1777
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001778 if (imx_uart_is_imx1(sport))
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001779 ucr1 |= IMX1_UCR1_UARTCLKEN;
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001780
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001781 ucr1 |= UCR1_UARTEN;
1782 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RTSDEN | UCR1_RRDYEN);
1783
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001784 ucr2 |= UCR2_RXEN;
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001785 ucr2 &= ~UCR2_ATEN;
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001786
1787 imx_uart_writel(sport, ucr1, UCR1);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001788 imx_uart_writel(sport, ucr2, UCR2);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001789
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001790 /* now enable irqs */
1791 imx_uart_writel(sport, ucr1 | UCR1_RRDYEN, UCR1);
Uwe Kleine-König81ca8e82018-03-02 11:07:27 +01001792 imx_uart_writel(sport, ucr2 | UCR2_ATEN, UCR2);
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001793
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001794 spin_unlock_irqrestore(&sport->port.lock, flags);
1795
1796 return 0;
1797}
1798
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001799static int imx_uart_poll_get_char(struct uart_port *port)
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001800{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001801 struct imx_port *sport = (struct imx_port *)port;
1802 if (!(imx_uart_readl(sport, USR2) & USR2_RDR))
Dirk Behme26c47412014-09-03 12:33:53 +01001803 return NO_POLL_CHAR;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001804
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001805 return imx_uart_readl(sport, URXD0) & URXD_RX_DATA;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001806}
1807
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001808static void imx_uart_poll_put_char(struct uart_port *port, unsigned char c)
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001809{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001810 struct imx_port *sport = (struct imx_port *)port;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001811 unsigned int status;
1812
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001813 /* drain */
1814 do {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001815 status = imx_uart_readl(sport, USR1);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001816 } while (~status & USR1_TRDY);
1817
1818 /* write */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001819 imx_uart_writel(sport, c, URTX0);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001820
1821 /* flush */
1822 do {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001823 status = imx_uart_readl(sport, USR2);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001824 } while (~status & USR2_TXDC);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001825}
1826#endif
1827
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +01001828/* called with port.lock taken and irqs off or from .probe without locking */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001829static int imx_uart_rs485_config(struct uart_port *port,
1830 struct serial_rs485 *rs485conf)
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001831{
1832 struct imx_port *sport = (struct imx_port *)port;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001833 u32 ucr2;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001834
1835 /* unimplemented */
1836 rs485conf->delay_rts_before_send = 0;
1837 rs485conf->delay_rts_after_send = 0;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001838
1839 /* RTS is required to control the transmitter */
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02001840 if (!sport->have_rtscts && !sport->have_rtsgpio)
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001841 rs485conf->flags &= ~SER_RS485_ENABLED;
1842
1843 if (rs485conf->flags & SER_RS485_ENABLED) {
Stefan Agner6d215f82018-04-19 17:39:16 +02001844 /* Enable receiver if low-active RTS signal is requested */
1845 if (sport->have_rtscts && !sport->have_rtsgpio &&
1846 !(rs485conf->flags & SER_RS485_RTS_ON_SEND))
1847 rs485conf->flags |= SER_RS485_RX_DURING_TX;
1848
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001849 /* disable transmitter */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001850 ucr2 = imx_uart_readl(sport, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001851 if (rs485conf->flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001852 imx_uart_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001853 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001854 imx_uart_rts_inactive(sport, &ucr2);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01001855 imx_uart_writel(sport, ucr2, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001856 }
1857
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001858 /* Make sure Rx is enabled in case Tx is active with Rx disabled */
1859 if (!(rs485conf->flags & SER_RS485_ENABLED) ||
Uwe Kleine-König76821e22018-03-02 11:07:26 +01001860 rs485conf->flags & SER_RS485_RX_DURING_TX)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001861 imx_uart_start_rx(port);
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001862
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001863 port->rs485 = *rs485conf;
1864
1865 return 0;
1866}
1867
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001868static const struct uart_ops imx_uart_pops = {
1869 .tx_empty = imx_uart_tx_empty,
1870 .set_mctrl = imx_uart_set_mctrl,
1871 .get_mctrl = imx_uart_get_mctrl,
1872 .stop_tx = imx_uart_stop_tx,
1873 .start_tx = imx_uart_start_tx,
1874 .stop_rx = imx_uart_stop_rx,
1875 .enable_ms = imx_uart_enable_ms,
1876 .break_ctl = imx_uart_break_ctl,
1877 .startup = imx_uart_startup,
1878 .shutdown = imx_uart_shutdown,
1879 .flush_buffer = imx_uart_flush_buffer,
1880 .set_termios = imx_uart_set_termios,
1881 .type = imx_uart_type,
1882 .config_port = imx_uart_config_port,
1883 .verify_port = imx_uart_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001884#if defined(CONFIG_CONSOLE_POLL)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001885 .poll_init = imx_uart_poll_init,
1886 .poll_get_char = imx_uart_poll_get_char,
1887 .poll_put_char = imx_uart_poll_put_char,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001888#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889};
1890
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001891static struct imx_port *imx_uart_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893#ifdef CONFIG_SERIAL_IMX_CONSOLE
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001894static void imx_uart_console_putchar(struct uart_port *port, int ch)
Russell Kingd3587882006-03-20 20:00:09 +00001895{
1896 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001897
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001898 while (imx_uart_readl(sport, imx_uart_uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001899 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001900
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001901 imx_uart_writel(sport, ch, URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001902}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904/*
1905 * Interrupts are disabled on entering
1906 */
1907static void
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001908imx_uart_console_write(struct console *co, const char *s, unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001910 struct imx_port *sport = imx_uart_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001911 struct imx_port_ucrs old_ucr;
1912 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001913 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001914 int locked = 1;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001915 int retval;
1916
Fabio Estevam0c727a42015-08-18 12:43:12 -03001917 retval = clk_enable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001918 if (retval)
1919 return;
Fabio Estevam0c727a42015-08-18 12:43:12 -03001920 retval = clk_enable(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001921 if (retval) {
Fabio Estevam0c727a42015-08-18 12:43:12 -03001922 clk_disable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001923 return;
1924 }
Xinyu Chen9ec18822012-08-27 09:36:51 +02001925
Thomas Gleixner677fe552013-02-14 21:01:06 +01001926 if (sport->port.sysrq)
1927 locked = 0;
1928 else if (oops_in_progress)
1929 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1930 else
1931 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001934 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001936 imx_uart_ucrs_save(sport, &old_ucr);
Dirk Behme0ad5a812011-12-22 09:57:52 +01001937 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001939 if (imx_uart_is_imx1(sport))
Shawn Guofe6b5402011-06-25 02:04:33 +08001940 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001941 ucr1 |= UCR1_UARTEN;
1942 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1943
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001944 imx_uart_writel(sport, ucr1, UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001945
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001946 imx_uart_writel(sport, old_ucr.ucr2 | UCR2_TXEN, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001948 uart_console_write(&sport->port, s, count, imx_uart_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 /*
1951 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001952 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001954 while (!(imx_uart_readl(sport, USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001956 imx_uart_ucrs_restore(sport, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001957
Thomas Gleixner677fe552013-02-14 21:01:06 +01001958 if (locked)
1959 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001960
Fabio Estevam0c727a42015-08-18 12:43:12 -03001961 clk_disable(sport->clk_ipg);
1962 clk_disable(sport->clk_per);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
1964
1965/*
1966 * If the port was already initialised (eg, by a boot loader),
1967 * try to determine the current setup.
1968 */
1969static void __init
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01001970imx_uart_console_get_options(struct imx_port *sport, int *baud,
1971 int *parity, int *bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
Sascha Hauer587897f2005-04-29 22:46:40 +01001973
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001974 if (imx_uart_readl(sport, UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301976 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001977 unsigned int baud_raw;
1978 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001980 ucr2 = imx_uart_readl(sport, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 *parity = 'n';
1983 if (ucr2 & UCR2_PREN) {
1984 if (ucr2 & UCR2_PROE)
1985 *parity = 'o';
1986 else
1987 *parity = 'e';
1988 }
1989
1990 if (ucr2 & UCR2_WS)
1991 *bits = 8;
1992 else
1993 *bits = 7;
1994
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001995 ubir = imx_uart_readl(sport, UBIR) & 0xffff;
1996 ubmr = imx_uart_readl(sport, UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001998 ucfr_rfdiv = (imx_uart_readl(sport, UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001999 if (ucfr_rfdiv == 6)
2000 ucfr_rfdiv = 7;
2001 else
2002 ucfr_rfdiv = 6 - ucfr_rfdiv;
2003
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002004 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01002005 uartclk /= ucfr_rfdiv;
2006
2007 { /*
2008 * The next code provides exact computation of
2009 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
2010 * without need of float support or long long division,
2011 * which would be required to prevent 32bit arithmetic overflow
2012 */
2013 unsigned int mul = ubir + 1;
2014 unsigned int div = 16 * (ubmr + 1);
2015 unsigned int rem = uartclk % div;
2016
2017 baud_raw = (uartclk / div) * mul;
2018 baud_raw += (rem * mul + div / 2) / div;
2019 *baud = (baud_raw + 50) / 100 * 100;
2020 }
2021
Sachin Kamat82313e62013-01-07 10:25:02 +05302022 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05302023 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01002024 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
2026}
2027
2028static int __init
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002029imx_uart_console_setup(struct console *co, char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
2031 struct imx_port *sport;
2032 int baud = 9600;
2033 int bits = 8;
2034 int parity = 'n';
2035 int flow = 'n';
Huang Shijie1cf93e02013-06-28 13:39:42 +08002036 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038 /*
2039 * Check whether an invalid uart number has been specified, and
2040 * if so, search for the first available port that does have
2041 * console support.
2042 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002043 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_uart_ports))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 co->index = 0;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002045 sport = imx_uart_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05302046 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04002047 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Huang Shijie1cf93e02013-06-28 13:39:42 +08002049 /* For setting the registers, we only need to enable the ipg clock. */
2050 retval = clk_prepare_enable(sport->clk_ipg);
2051 if (retval)
2052 goto error_console;
2053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 if (options)
2055 uart_parse_options(options, &baud, &parity, &bits, &flow);
2056 else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002057 imx_uart_console_get_options(sport, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002059 imx_uart_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Sascha Hauer587897f2005-04-29 22:46:40 +01002060
Huang Shijie1cf93e02013-06-28 13:39:42 +08002061 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow);
2062
Fabio Estevam0c727a42015-08-18 12:43:12 -03002063 clk_disable(sport->clk_ipg);
2064 if (retval) {
2065 clk_unprepare(sport->clk_ipg);
2066 goto error_console;
2067 }
2068
2069 retval = clk_prepare(sport->clk_per);
2070 if (retval)
2071 clk_disable_unprepare(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08002072
2073error_console:
2074 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075}
2076
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002077static struct uart_driver imx_uart_uart_driver;
2078static struct console imx_uart_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02002079 .name = DEV_NAME,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002080 .write = imx_uart_console_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 .device = uart_console_device,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002082 .setup = imx_uart_console_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 .flags = CON_PRINTBUFFER,
2084 .index = -1,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002085 .data = &imx_uart_uart_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086};
2087
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002088#define IMX_CONSOLE &imx_uart_console
Lucas Stach913c6c02015-08-28 11:56:19 +02002089
2090#ifdef CONFIG_OF
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002091static void imx_uart_console_early_putchar(struct uart_port *port, int ch)
Lucas Stach913c6c02015-08-28 11:56:19 +02002092{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002093 struct imx_port *sport = (struct imx_port *)port;
2094
2095 while (imx_uart_readl(sport, IMX21_UTS) & UTS_TXFULL)
Lucas Stach913c6c02015-08-28 11:56:19 +02002096 cpu_relax();
2097
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002098 imx_uart_writel(sport, ch, URTX0);
Lucas Stach913c6c02015-08-28 11:56:19 +02002099}
2100
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002101static void imx_uart_console_early_write(struct console *con, const char *s,
2102 unsigned count)
Lucas Stach913c6c02015-08-28 11:56:19 +02002103{
2104 struct earlycon_device *dev = con->data;
2105
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002106 uart_console_write(&dev->port, s, count, imx_uart_console_early_putchar);
Lucas Stach913c6c02015-08-28 11:56:19 +02002107}
2108
2109static int __init
2110imx_console_early_setup(struct earlycon_device *dev, const char *opt)
2111{
2112 if (!dev->port.membase)
2113 return -ENODEV;
2114
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002115 dev->con->write = imx_uart_console_early_write;
Lucas Stach913c6c02015-08-28 11:56:19 +02002116
2117 return 0;
2118}
2119OF_EARLYCON_DECLARE(ec_imx6q, "fsl,imx6q-uart", imx_console_early_setup);
2120OF_EARLYCON_DECLARE(ec_imx21, "fsl,imx21-uart", imx_console_early_setup);
2121#endif
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123#else
2124#define IMX_CONSOLE NULL
2125#endif
2126
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002127static struct uart_driver imx_uart_uart_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 .owner = THIS_MODULE,
2129 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02002130 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 .major = SERIAL_IMX_MAJOR,
2132 .minor = MINOR_START,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002133 .nr = ARRAY_SIZE(imx_uart_ports),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 .cons = IMX_CONSOLE,
2135};
2136
Shawn Guo22698aa2011-06-25 02:04:34 +08002137#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002138/*
2139 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
2140 * could successfully get all information from dt or a negative errno.
2141 */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002142static int imx_uart_probe_dt(struct imx_port *sport,
2143 struct platform_device *pdev)
Shawn Guo22698aa2011-06-25 02:04:34 +08002144{
2145 struct device_node *np = pdev->dev.of_node;
Shawn Guoff059672011-09-22 14:48:13 +08002146 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002147
LABBE Corentin5f8b9042015-11-24 15:36:57 +01002148 sport->devdata = of_device_get_match_data(&pdev->dev);
2149 if (!sport->devdata)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002150 /* no device tree device */
2151 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002152
Shawn Guoff059672011-09-22 14:48:13 +08002153 ret = of_alias_get_id(np, "serial");
2154 if (ret < 0) {
2155 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01002156 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08002157 }
2158 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002159
Geert Uytterhoeven1006ed72016-04-22 17:22:21 +02002160 if (of_get_property(np, "uart-has-rtscts", NULL) ||
2161 of_get_property(np, "fsl,uart-has-rtscts", NULL) /* deprecated */)
Shawn Guo22698aa2011-06-25 02:04:34 +08002162 sport->have_rtscts = 1;
2163
Huang Shijie20ff2fe2013-05-30 14:07:12 +08002164 if (of_get_property(np, "fsl,dte-mode", NULL))
2165 sport->dte_mode = 1;
2166
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02002167 if (of_get_property(np, "rts-gpios", NULL))
2168 sport->have_rtsgpio = 1;
2169
Shawn Guo22698aa2011-06-25 02:04:34 +08002170 return 0;
2171}
2172#else
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002173static inline int imx_uart_probe_dt(struct imx_port *sport,
2174 struct platform_device *pdev)
Shawn Guo22698aa2011-06-25 02:04:34 +08002175{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002176 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002177}
2178#endif
2179
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002180static void imx_uart_probe_pdata(struct imx_port *sport,
2181 struct platform_device *pdev)
Shawn Guo22698aa2011-06-25 02:04:34 +08002182{
Jingoo Han574de552013-07-30 17:06:57 +09002183 struct imxuart_platform_data *pdata = dev_get_platdata(&pdev->dev);
Shawn Guo22698aa2011-06-25 02:04:34 +08002184
2185 sport->port.line = pdev->id;
2186 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
2187
2188 if (!pdata)
2189 return;
2190
2191 if (pdata->flags & IMXUART_HAVE_RTSCTS)
2192 sport->have_rtscts = 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002193}
2194
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002195static int imx_uart_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002197 struct imx_port *sport;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002198 void __iomem *base;
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002199 int ret = 0;
2200 u32 ucr1;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002201 struct resource *res;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002202 int txirq, rxirq, rtsirq;
Sascha Hauer5b802342006-05-04 14:07:42 +01002203
Sachin Kamat42d34192013-01-07 10:25:06 +05302204 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002205 if (!sport)
2206 return -ENOMEM;
2207
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002208 ret = imx_uart_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002209 if (ret > 0)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002210 imx_uart_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002211 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05302212 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002213
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002214 if (sport->port.line >= ARRAY_SIZE(imx_uart_ports)) {
Geert Uytterhoeven56734442018-02-23 14:38:31 +01002215 dev_err(&pdev->dev, "serial%d out of range\n",
2216 sport->port.line);
2217 return -EINVAL;
2218 }
2219
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002220 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Alexander Shiyanda82f992014-02-22 16:01:33 +04002221 base = devm_ioremap_resource(&pdev->dev, res);
2222 if (IS_ERR(base))
2223 return PTR_ERR(base);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002224
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002225 rxirq = platform_get_irq(pdev, 0);
2226 txirq = platform_get_irq(pdev, 1);
2227 rtsirq = platform_get_irq(pdev, 2);
2228
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002229 sport->port.dev = &pdev->dev;
2230 sport->port.mapbase = res->start;
2231 sport->port.membase = base;
2232 sport->port.type = PORT_IMX,
2233 sport->port.iotype = UPIO_MEM;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002234 sport->port.irq = rxirq;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002235 sport->port.fifosize = 32;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002236 sport->port.ops = &imx_uart_pops;
2237 sport->port.rs485_config = imx_uart_rs485_config;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002238 sport->port.flags = UPF_BOOT_AUTOCONF;
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002239 timer_setup(&sport->timer, imx_uart_timeout, 0);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002240
Uwe Kleine-König58362d52015-12-13 11:30:03 +01002241 sport->gpios = mctrl_gpio_init(&sport->port, 0);
2242 if (IS_ERR(sport->gpios))
2243 return PTR_ERR(sport->gpios);
2244
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002245 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
2246 if (IS_ERR(sport->clk_ipg)) {
2247 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002248 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302249 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002250 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002251
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002252 sport->clk_per = devm_clk_get(&pdev->dev, "per");
2253 if (IS_ERR(sport->clk_per)) {
2254 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002255 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302256 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002257 }
2258
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002259 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002260
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002261 /* For register access, we only need to enable the ipg clock. */
2262 ret = clk_prepare_enable(sport->clk_ipg);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002263 if (ret) {
2264 dev_err(&pdev->dev, "failed to enable per clk: %d\n", ret);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002265 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002266 }
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002267
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +01002268 /* initialize shadow register values */
2269 sport->ucr1 = readl(sport->port.membase + UCR1);
2270 sport->ucr2 = readl(sport->port.membase + UCR2);
2271 sport->ucr3 = readl(sport->port.membase + UCR3);
2272 sport->ucr4 = readl(sport->port.membase + UCR4);
2273 sport->ufcr = readl(sport->port.membase + UFCR);
2274
Lukas Wunner743f93f2017-11-24 23:26:40 +01002275 uart_get_rs485_mode(&pdev->dev, &sport->port.rs485);
2276
Lukas Wunnerb8f3bff2017-11-24 23:26:40 +01002277 if (sport->port.rs485.flags & SER_RS485_ENABLED &&
phil eichinger5d7f77e2018-02-19 10:24:15 +01002278 (!sport->have_rtscts && !sport->have_rtsgpio))
Lukas Wunnerb8f3bff2017-11-24 23:26:40 +01002279 dev_err(&pdev->dev, "no RTS control, disabling rs485\n");
2280
Stefan Agner6d215f82018-04-19 17:39:16 +02002281 /*
2282 * If using the i.MX UART RTS/CTS control then the RTS (CTS_B)
2283 * signal cannot be set low during transmission in case the
2284 * receiver is off (limitation of the i.MX UART IP).
2285 */
2286 if (sport->port.rs485.flags & SER_RS485_ENABLED &&
2287 sport->have_rtscts && !sport->have_rtsgpio &&
2288 (!(sport->port.rs485.flags & SER_RS485_RTS_ON_SEND) &&
2289 !(sport->port.rs485.flags & SER_RS485_RX_DURING_TX)))
2290 dev_err(&pdev->dev,
2291 "low-active RTS not possible when receiver is off, enabling receiver\n");
2292
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002293 imx_uart_rs485_config(&sport->port, &sport->port.rs485);
Lukas Wunnerb8f3bff2017-11-24 23:26:40 +01002294
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002295 /* Disable interrupts before requesting them */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002296 ucr1 = imx_uart_readl(sport, UCR1);
2297 ucr1 &= ~(UCR1_ADEN | UCR1_TRDYEN | UCR1_IDEN | UCR1_RRDYEN |
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002298 UCR1_TXMPTYEN | UCR1_RTSDEN);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002299 imx_uart_writel(sport, ucr1, UCR1);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002300
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002301 if (!imx_uart_is_imx1(sport) && sport->dte_mode) {
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002302 /*
2303 * The DCEDTE bit changes the direction of DSR, DCD, DTR and RI
2304 * and influences if UCR3_RI and UCR3_DCD changes the level of RI
2305 * and DCD (when they are outputs) or enables the respective
2306 * irqs. So set this bit early, i.e. before requesting irqs.
2307 */
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002308 u32 ufcr = imx_uart_readl(sport, UFCR);
2309 if (!(ufcr & UFCR_DCEDTE))
2310 imx_uart_writel(sport, ufcr | UFCR_DCEDTE, UFCR);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002311
2312 /*
2313 * Disable UCR3_RI and UCR3_DCD irqs. They are also not
2314 * enabled later because they cannot be cleared
2315 * (confirmed on i.MX25) which makes them unusable.
2316 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002317 imx_uart_writel(sport,
2318 IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP | UCR3_DSR,
2319 UCR3);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002320
2321 } else {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002322 u32 ucr3 = UCR3_DSR;
2323 u32 ufcr = imx_uart_readl(sport, UFCR);
2324 if (ufcr & UFCR_DCEDTE)
2325 imx_uart_writel(sport, ufcr & ~UFCR_DCEDTE, UFCR);
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002326
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002327 if (!imx_uart_is_imx1(sport))
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002328 ucr3 |= IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002329 imx_uart_writel(sport, ucr3, UCR3);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002330 }
2331
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002332 clk_disable_unprepare(sport->clk_ipg);
2333
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002334 /*
2335 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
2336 * chips only have one interrupt.
2337 */
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002338 if (txirq > 0) {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002339 ret = devm_request_irq(&pdev->dev, rxirq, imx_uart_rxint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002340 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002341 if (ret) {
2342 dev_err(&pdev->dev, "failed to request rx irq: %d\n",
2343 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002344 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002345 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002346
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002347 ret = devm_request_irq(&pdev->dev, txirq, imx_uart_txint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002348 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002349 if (ret) {
2350 dev_err(&pdev->dev, "failed to request tx irq: %d\n",
2351 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002352 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002353 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002354 } else {
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002355 ret = devm_request_irq(&pdev->dev, rxirq, imx_uart_int, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002356 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002357 if (ret) {
2358 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002359 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002360 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002361 }
2362
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002363 imx_uart_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01002364
Richard Zhao0a86a862012-09-18 16:14:58 +08002365 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002366
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002367 return uart_add_one_port(&imx_uart_uart_driver, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368}
2369
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002370static int imx_uart_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002372 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002374 return uart_remove_one_port(&imx_uart_uart_driver, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375}
2376
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002377static void imx_uart_restore_context(struct imx_port *sport)
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002378{
2379 if (!sport->context_saved)
2380 return;
2381
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002382 imx_uart_writel(sport, sport->saved_reg[4], UFCR);
2383 imx_uart_writel(sport, sport->saved_reg[5], UESC);
2384 imx_uart_writel(sport, sport->saved_reg[6], UTIM);
2385 imx_uart_writel(sport, sport->saved_reg[7], UBIR);
2386 imx_uart_writel(sport, sport->saved_reg[8], UBMR);
2387 imx_uart_writel(sport, sport->saved_reg[9], IMX21_UTS);
2388 imx_uart_writel(sport, sport->saved_reg[0], UCR1);
2389 imx_uart_writel(sport, sport->saved_reg[1] | UCR2_SRST, UCR2);
2390 imx_uart_writel(sport, sport->saved_reg[2], UCR3);
2391 imx_uart_writel(sport, sport->saved_reg[3], UCR4);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002392 sport->context_saved = false;
2393}
2394
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002395static void imx_uart_save_context(struct imx_port *sport)
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002396{
2397 /* Save necessary regs */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002398 sport->saved_reg[0] = imx_uart_readl(sport, UCR1);
2399 sport->saved_reg[1] = imx_uart_readl(sport, UCR2);
2400 sport->saved_reg[2] = imx_uart_readl(sport, UCR3);
2401 sport->saved_reg[3] = imx_uart_readl(sport, UCR4);
2402 sport->saved_reg[4] = imx_uart_readl(sport, UFCR);
2403 sport->saved_reg[5] = imx_uart_readl(sport, UESC);
2404 sport->saved_reg[6] = imx_uart_readl(sport, UTIM);
2405 sport->saved_reg[7] = imx_uart_readl(sport, UBIR);
2406 sport->saved_reg[8] = imx_uart_readl(sport, UBMR);
2407 sport->saved_reg[9] = imx_uart_readl(sport, IMX21_UTS);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002408 sport->context_saved = true;
2409}
2410
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002411static void imx_uart_enable_wakeup(struct imx_port *sport, bool on)
Eduardo Valentin189550b2015-08-11 10:21:21 -07002412{
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002413 u32 ucr3;
Eduardo Valentin189550b2015-08-11 10:21:21 -07002414
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002415 ucr3 = imx_uart_readl(sport, UCR3);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002416 if (on) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002417 imx_uart_writel(sport, USR1_AWAKE, USR1);
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002418 ucr3 |= UCR3_AWAKEN;
2419 } else {
2420 ucr3 &= ~UCR3_AWAKEN;
Martin Kaiser09df0b32018-01-05 17:46:43 +01002421 }
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002422 imx_uart_writel(sport, ucr3, UCR3);
Eduardo Valentinbc857342015-08-11 10:21:22 -07002423
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002424 if (sport->have_rtscts) {
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002425 u32 ucr1 = imx_uart_readl(sport, UCR1);
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002426 if (on)
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002427 ucr1 |= UCR1_RTSDEN;
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002428 else
Uwe Kleine-König4444dcf2018-03-02 11:07:23 +01002429 ucr1 &= ~UCR1_RTSDEN;
2430 imx_uart_writel(sport, ucr1, UCR1);
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002431 }
Eduardo Valentin189550b2015-08-11 10:21:21 -07002432}
2433
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002434static int imx_uart_suspend_noirq(struct device *dev)
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002435{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002436 struct imx_port *sport = dev_get_drvdata(dev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002437
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002438 imx_uart_save_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002439
2440 clk_disable(sport->clk_ipg);
2441
2442 return 0;
2443}
2444
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002445static int imx_uart_resume_noirq(struct device *dev)
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002446{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002447 struct imx_port *sport = dev_get_drvdata(dev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002448 int ret;
2449
2450 ret = clk_enable(sport->clk_ipg);
2451 if (ret)
2452 return ret;
2453
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002454 imx_uart_restore_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002455
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002456 return 0;
2457}
2458
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002459static int imx_uart_suspend(struct device *dev)
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002460{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002461 struct imx_port *sport = dev_get_drvdata(dev);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002462 int ret;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002463
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002464 uart_suspend_port(&imx_uart_uart_driver, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002465 disable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002466
Martin Kaiser09df0b32018-01-05 17:46:43 +01002467 ret = clk_prepare_enable(sport->clk_ipg);
2468 if (ret)
2469 return ret;
2470
2471 /* enable wakeup from i.MX UART */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002472 imx_uart_enable_wakeup(sport, true);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002473
2474 return 0;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002475}
2476
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002477static int imx_uart_resume(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);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002480
2481 /* disable wakeup from i.MX UART */
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002482 imx_uart_enable_wakeup(sport, false);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002483
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002484 uart_resume_port(&imx_uart_uart_driver, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002485 enable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002486
Martin Kaiser09df0b32018-01-05 17:46:43 +01002487 clk_disable_unprepare(sport->clk_ipg);
Martin Fuzzey29add682016-01-05 16:53:31 +01002488
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002489 return 0;
2490}
2491
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002492static int imx_uart_freeze(struct device *dev)
Philipp Zabel94be6d72017-11-01 13:51:41 +01002493{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002494 struct imx_port *sport = dev_get_drvdata(dev);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002495
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002496 uart_suspend_port(&imx_uart_uart_driver, &sport->port);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002497
Martin Kaiser09df0b32018-01-05 17:46:43 +01002498 return clk_prepare_enable(sport->clk_ipg);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002499}
2500
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002501static int imx_uart_thaw(struct device *dev)
Philipp Zabel94be6d72017-11-01 13:51:41 +01002502{
Wolfram Sanga406c4b2018-04-19 16:06:23 +02002503 struct imx_port *sport = dev_get_drvdata(dev);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002504
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002505 uart_resume_port(&imx_uart_uart_driver, &sport->port);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002506
Martin Kaiser09df0b32018-01-05 17:46:43 +01002507 clk_disable_unprepare(sport->clk_ipg);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002508
2509 return 0;
2510}
2511
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002512static const struct dev_pm_ops imx_uart_pm_ops = {
2513 .suspend_noirq = imx_uart_suspend_noirq,
2514 .resume_noirq = imx_uart_resume_noirq,
2515 .freeze_noirq = imx_uart_suspend_noirq,
2516 .restore_noirq = imx_uart_resume_noirq,
2517 .suspend = imx_uart_suspend,
2518 .resume = imx_uart_resume,
2519 .freeze = imx_uart_freeze,
2520 .thaw = imx_uart_thaw,
2521 .restore = imx_uart_thaw,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002522};
2523
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002524static struct platform_driver imx_uart_platform_driver = {
2525 .probe = imx_uart_probe,
2526 .remove = imx_uart_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002528 .id_table = imx_uart_devtype,
2529 .driver = {
2530 .name = "imx-uart",
Shawn Guo22698aa2011-06-25 02:04:34 +08002531 .of_match_table = imx_uart_dt_ids,
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002532 .pm = &imx_uart_pm_ops,
Russell King3ae5eae2005-11-09 22:32:44 +00002533 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534};
2535
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002536static int __init imx_uart_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002538 int ret = uart_register_driver(&imx_uart_uart_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 if (ret)
2541 return ret;
2542
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002543 ret = platform_driver_register(&imx_uart_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 if (ret != 0)
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002545 uart_unregister_driver(&imx_uart_uart_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01002547 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002550static void __exit imx_uart_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002552 platform_driver_unregister(&imx_uart_platform_driver);
2553 uart_unregister_driver(&imx_uart_uart_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554}
2555
Uwe Kleine-König9d1a50a2018-03-02 11:07:30 +01002556module_init(imx_uart_init);
2557module_exit(imx_uart_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559MODULE_AUTHOR("Sascha Hauer");
2560MODULE_DESCRIPTION("IMX generic serial port driver");
2561MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07002562MODULE_ALIAS("platform:imx-uart");