blob: 7356a848751e8f2bd81d0012e2a502cab7939b8c [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
317 * clears after being set, reread conditionally.
318 */
319 if (sport->ucr2 & UCR2_SRST)
320 sport->ucr2 = readl(sport->port.membase + offset);
321 return sport->ucr2;
322 break;
323 case UCR3:
324 return sport->ucr3;
325 break;
326 case UCR4:
327 return sport->ucr4;
328 break;
329 case UFCR:
330 return sport->ufcr;
331 break;
332 default:
333 return readl(sport->port.membase + offset);
334 }
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100335}
336
Shawn Guofe6b5402011-06-25 02:04:33 +0800337static inline unsigned uts_reg(struct imx_port *sport)
338{
339 return sport->devdata->uts_reg;
340}
341
342static inline int is_imx1_uart(struct imx_port *sport)
343{
344 return sport->devdata->devtype == IMX1_UART;
345}
346
347static inline int is_imx21_uart(struct imx_port *sport)
348{
349 return sport->devdata->devtype == IMX21_UART;
350}
351
Martyn Welch1c06bde62016-09-01 11:30:46 +0200352static inline int is_imx53_uart(struct imx_port *sport)
353{
354 return sport->devdata->devtype == IMX53_UART;
355}
356
Huang Shijiea496e622013-07-08 17:14:17 +0800357static inline int is_imx6q_uart(struct imx_port *sport)
358{
359 return sport->devdata->devtype == IMX6Q_UART;
360}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200362 * Save and restore functions for UCR1, UCR2 and UCR3 registers
363 */
Fabio Estevam93d94b32014-11-12 15:55:07 -0200364#if defined(CONFIG_SERIAL_IMX_CONSOLE)
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100365static void imx_port_ucrs_save(struct imx_port *sport,
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200366 struct imx_port_ucrs *ucr)
367{
368 /* save control registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100369 ucr->ucr1 = imx_uart_readl(sport, UCR1);
370 ucr->ucr2 = imx_uart_readl(sport, UCR2);
371 ucr->ucr3 = imx_uart_readl(sport, UCR3);
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200372}
373
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100374static void imx_port_ucrs_restore(struct imx_port *sport,
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200375 struct imx_port_ucrs *ucr)
376{
377 /* restore control registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100378 imx_uart_writel(sport, ucr->ucr1, UCR1);
379 imx_uart_writel(sport, ucr->ucr2, UCR2);
380 imx_uart_writel(sport, ucr->ucr3, UCR3);
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200381}
Fabio Estevame8bfa762013-06-05 00:58:46 -0300382#endif
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200383
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100384static void imx_port_rts_active(struct imx_port *sport, unsigned long *ucr2)
385{
Fabio Estevambc2be232017-01-30 09:12:12 -0200386 *ucr2 &= ~(UCR2_CTSC | UCR2_CTS);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100387
Ian Jamisona0983c72017-09-21 10:13:12 +0200388 sport->port.mctrl |= TIOCM_RTS;
389 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100390}
391
392static void imx_port_rts_inactive(struct imx_port *sport, unsigned long *ucr2)
393{
Fabio Estevambc2be232017-01-30 09:12:12 -0200394 *ucr2 &= ~UCR2_CTSC;
395 *ucr2 |= UCR2_CTS;
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100396
Ian Jamisona0983c72017-09-21 10:13:12 +0200397 sport->port.mctrl &= ~TIOCM_RTS;
398 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100399}
400
401static void imx_port_rts_auto(struct imx_port *sport, unsigned long *ucr2)
402{
403 *ucr2 |= UCR2_CTSC;
404}
405
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100406/* called with port.lock taken and irqs off */
Russell Kingb129a8c2005-08-31 10:12:14 +0100407static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100410 unsigned long temp;
411
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700412 /*
413 * We are maybe in the SMP context, so if the DMA TX thread is running
414 * on other cpu, we have to wait for it to finish.
415 */
Uwe Kleine-König686351f2018-03-02 11:07:21 +0100416 if (sport->dma_is_txing)
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700417 return;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800418
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100419 temp = imx_uart_readl(sport, UCR1);
420 imx_uart_writel(sport, temp & ~UCR1_TXMPTYEN, UCR1);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100421
422 /* in rs485 mode disable transmitter if shifter is empty */
423 if (port->rs485.flags & SER_RS485_ENABLED &&
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100424 imx_uart_readl(sport, USR2) & USR2_TXDC) {
425 temp = imx_uart_readl(sport, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100426 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100427 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -0200428 else
429 imx_port_rts_inactive(sport, &temp);
Baruch Siach7d1cadc2016-02-29 14:34:10 +0200430 temp |= UCR2_RXEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100431 imx_uart_writel(sport, temp, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100432
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100433 temp = imx_uart_readl(sport, UCR4);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100434 temp &= ~UCR4_TCEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100435 imx_uart_writel(sport, temp, UCR4);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100439/* called with port.lock taken and irqs off */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static void imx_stop_rx(struct uart_port *port)
441{
442 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100443 unsigned long temp;
444
Uwe Kleine-König686351f2018-03-02 11:07:21 +0100445 if (sport->dma_is_rxing) {
Huang Shijie45564a62014-09-19 15:33:12 +0800446 if (sport->port.suspended) {
447 dmaengine_terminate_all(sport->dma_chan_rx);
448 sport->dma_is_rxing = 0;
449 } else {
450 return;
451 }
452 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800453
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100454 temp = imx_uart_readl(sport, UCR2);
455 imx_uart_writel(sport, temp & ~UCR2_RXEN, UCR2);
Huang Shijie85878392014-05-23 12:32:54 +0800456
457 /* disable the `Receiver Ready Interrrupt` */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100458 temp = imx_uart_readl(sport, UCR1);
459 imx_uart_writel(sport, temp & ~UCR1_RRDYEN, UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100462/* called with port.lock taken and irqs off */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463static void imx_enable_ms(struct uart_port *port)
464{
465 struct imx_port *sport = (struct imx_port *)port;
466
467 mod_timer(&sport->timer, jiffies);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100468
469 mctrl_gpio_enable_ms(sport->gpios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Jiada Wang91a1a902014-12-09 18:11:36 +0900472static void imx_dma_tx(struct imx_port *sport);
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100473
474/* called with port.lock taken and irqs off */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static inline void imx_transmit_buffer(struct imx_port *sport)
476{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700477 struct circ_buf *xmit = &sport->port.state->xmit;
Jiada Wang91a1a902014-12-09 18:11:36 +0900478 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400480 if (sport->port.x_char) {
481 /* Send next char */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100482 imx_uart_writel(sport, sport->port.x_char, URTX0);
Jiada Wang7e2fb5a2014-12-09 18:11:35 +0900483 sport->port.icount.tx++;
484 sport->port.x_char = 0;
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400485 return;
486 }
487
488 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
489 imx_stop_tx(&sport->port);
490 return;
491 }
492
Jiada Wang91a1a902014-12-09 18:11:36 +0900493 if (sport->dma_is_enabled) {
494 /*
495 * We've just sent a X-char Ensure the TX DMA is enabled
496 * and the TX IRQ is disabled.
497 **/
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100498 temp = imx_uart_readl(sport, UCR1);
Jiada Wang91a1a902014-12-09 18:11:36 +0900499 temp &= ~UCR1_TXMPTYEN;
500 if (sport->dma_is_txing) {
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +0100501 temp |= UCR1_TXDMAEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100502 imx_uart_writel(sport, temp, UCR1);
Jiada Wang91a1a902014-12-09 18:11:36 +0900503 } else {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100504 imx_uart_writel(sport, temp, UCR1);
Jiada Wang91a1a902014-12-09 18:11:36 +0900505 imx_dma_tx(sport);
506 }
Jiada Wang91a1a902014-12-09 18:11:36 +0900507
Ian Jamison5aabd3b2017-08-28 09:02:29 +0100508 return;
Uwe Kleine-König0c549222018-03-02 11:07:22 +0100509 }
Ian Jamison5aabd3b2017-08-28 09:02:29 +0100510
511 while (!uart_circ_empty(xmit) &&
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100512 !(imx_uart_readl(sport, uts_reg(sport)) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* send xmit->buf[xmit->tail]
514 * out the port here */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100515 imx_uart_writel(sport, xmit->buf[xmit->tail], URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100516 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Fabian Godehardt977757312009-06-11 14:37:19 +0100520 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
521 uart_write_wakeup(&sport->port);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100524 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800527static void dma_tx_callback(void *data)
528{
529 struct imx_port *sport = data;
530 struct scatterlist *sgl = &sport->tx_sgl[0];
531 struct circ_buf *xmit = &sport->port.state->xmit;
532 unsigned long flags;
Dirk Behmea2c718c2014-12-09 18:11:31 +0900533 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800534
Dirk Behme42f752b2014-12-09 18:11:28 +0900535 spin_lock_irqsave(&sport->port.lock, flags);
536
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800537 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
538
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100539 temp = imx_uart_readl(sport, UCR1);
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +0100540 temp &= ~UCR1_TXDMAEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100541 imx_uart_writel(sport, temp, UCR1);
Dirk Behmea2c718c2014-12-09 18:11:31 +0900542
Dirk Behme42f752b2014-12-09 18:11:28 +0900543 /* update the stat */
544 xmit->tail = (xmit->tail + sport->tx_bytes) & (UART_XMIT_SIZE - 1);
545 sport->port.icount.tx += sport->tx_bytes;
546
547 dev_dbg(sport->port.dev, "we finish the TX DMA.\n");
548
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800549 sport->dma_is_txing = 0;
550
Jiada Wangd64b8602014-12-09 18:11:29 +0900551 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
552 uart_write_wakeup(&sport->port);
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700553
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900554 if (!uart_circ_empty(xmit) && !uart_tx_stopped(&sport->port))
555 imx_dma_tx(sport);
Uwe Kleine-König64432a82017-07-18 14:01:52 +0200556
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900557 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800558}
559
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100560/* called with port.lock taken and irqs off */
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800561static void imx_dma_tx(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800562{
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800563 struct circ_buf *xmit = &sport->port.state->xmit;
564 struct scatterlist *sgl = sport->tx_sgl;
565 struct dma_async_tx_descriptor *desc;
566 struct dma_chan *chan = sport->dma_chan_tx;
567 struct device *dev = sport->port.dev;
Dirk Behmea2c718c2014-12-09 18:11:31 +0900568 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800569 int ret;
570
Dirk Behme42f752b2014-12-09 18:11:28 +0900571 if (sport->dma_is_txing)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800572 return;
573
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800574 sport->tx_bytes = uart_circ_chars_pending(xmit);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800575
Dirk Behme7942f852014-12-09 18:11:25 +0900576 if (xmit->tail < xmit->head) {
577 sport->dma_tx_nents = 1;
578 sg_init_one(sgl, xmit->buf + xmit->tail, sport->tx_bytes);
579 } else {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800580 sport->dma_tx_nents = 2;
581 sg_init_table(sgl, 2);
582 sg_set_buf(sgl, xmit->buf + xmit->tail,
583 UART_XMIT_SIZE - xmit->tail);
584 sg_set_buf(sgl + 1, xmit->buf, xmit->head);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800585 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800586
587 ret = dma_map_sg(dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
588 if (ret == 0) {
589 dev_err(dev, "DMA mapping error for TX.\n");
590 return;
591 }
592 desc = dmaengine_prep_slave_sg(chan, sgl, sport->dma_tx_nents,
593 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT);
594 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +0900595 dma_unmap_sg(dev, sgl, sport->dma_tx_nents,
596 DMA_TO_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800597 dev_err(dev, "We cannot prepare for the TX slave dma!\n");
598 return;
599 }
600 desc->callback = dma_tx_callback;
601 desc->callback_param = sport;
602
603 dev_dbg(dev, "TX: prepare to send %lu bytes by DMA.\n",
604 uart_circ_chars_pending(xmit));
Dirk Behmea2c718c2014-12-09 18:11:31 +0900605
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100606 temp = imx_uart_readl(sport, UCR1);
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +0100607 temp |= UCR1_TXDMAEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100608 imx_uart_writel(sport, temp, UCR1);
Dirk Behmea2c718c2014-12-09 18:11:31 +0900609
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800610 /* fire it */
611 sport->dma_is_txing = 1;
612 dmaengine_submit(desc);
613 dma_async_issue_pending(chan);
614 return;
615}
616
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100617/* called with port.lock taken and irqs off */
Russell Kingb129a8c2005-08-31 10:12:14 +0100618static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100621 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100623 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100624 temp = imx_uart_readl(sport, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100625 if (port->rs485.flags & SER_RS485_RTS_ON_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100626 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -0200627 else
628 imx_port_rts_inactive(sport, &temp);
Baruch Siach7d1cadc2016-02-29 14:34:10 +0200629 if (!(port->rs485.flags & SER_RS485_RX_DURING_TX))
630 temp &= ~UCR2_RXEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100631 imx_uart_writel(sport, temp, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100632
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100633 /* enable transmitter and shifter empty irq */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100634 temp = imx_uart_readl(sport, UCR4);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100635 temp |= UCR4_TCEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100636 imx_uart_writel(sport, temp, UCR4);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100637 }
638
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800639 if (!sport->dma_is_enabled) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100640 temp = imx_uart_readl(sport, UCR1);
641 imx_uart_writel(sport, temp | UCR1_TXMPTYEN, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800644 if (sport->dma_is_enabled) {
Jiada Wang91a1a902014-12-09 18:11:36 +0900645 if (sport->port.x_char) {
646 /* We have X-char to send, so enable TX IRQ and
647 * disable TX DMA to let TX interrupt to send X-char */
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100648 temp = imx_uart_readl(sport, UCR1);
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +0100649 temp &= ~UCR1_TXDMAEN;
Jiada Wang91a1a902014-12-09 18:11:36 +0900650 temp |= UCR1_TXMPTYEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100651 imx_uart_writel(sport, temp, UCR1);
Jiada Wang91a1a902014-12-09 18:11:36 +0900652 return;
653 }
654
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400655 if (!uart_circ_empty(&port->state->xmit) &&
656 !uart_tx_stopped(port))
657 imx_dma_tx(sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800658 return;
659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
David Howells7d12e782006-10-05 14:55:46 +0100662static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100663{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800664 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200665 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100666 unsigned long flags;
667
668 spin_lock_irqsave(&sport->port.lock, flags);
669
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100670 imx_uart_writel(sport, USR1_RTSD, USR1);
671 val = imx_uart_readl(sport, USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100672 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700673 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100674
675 spin_unlock_irqrestore(&sport->port.lock, flags);
676 return IRQ_HANDLED;
677}
678
David Howells7d12e782006-10-05 14:55:46 +0100679static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800681 struct imx_port *sport = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 unsigned long flags;
683
Sachin Kamat82313e62013-01-07 10:25:02 +0530684 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 imx_transmit_buffer(sport);
Sachin Kamat82313e62013-01-07 10:25:02 +0530686 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return IRQ_HANDLED;
688}
689
David Howells7d12e782006-10-05 14:55:46 +0100690static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
692 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530693 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100694 struct tty_port *port = &sport->port.state->port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100695 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Sachin Kamat82313e62013-01-07 10:25:02 +0530697 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100699 while (imx_uart_readl(sport, USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 flg = TTY_NORMAL;
701 sport->port.icount.rx++;
702
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100703 rx = imx_uart_readl(sport, URXD0);
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100704
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100705 temp = imx_uart_readl(sport, USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100706 if (temp & USR2_BRCD) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100707 imx_uart_writel(sport, USR2_BRCD, USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100708 if (uart_handle_break(&sport->port))
709 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100712 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100713 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Hui Wang019dc9e2011-08-24 17:41:47 +0800715 if (unlikely(rx & URXD_ERR)) {
716 if (rx & URXD_BRK)
717 sport->port.icount.brk++;
718 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100719 sport->port.icount.parity++;
720 else if (rx & URXD_FRMERR)
721 sport->port.icount.frame++;
722 if (rx & URXD_OVRRUN)
723 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Sascha Hauer864eeed2008-04-17 08:39:22 +0100725 if (rx & sport->port.ignore_status_mask) {
726 if (++ignored > 100)
727 goto out;
728 continue;
729 }
730
Eric Nelson8d267fd2014-12-18 12:37:13 -0700731 rx &= (sport->port.read_status_mask | 0xFF);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100732
Hui Wang019dc9e2011-08-24 17:41:47 +0800733 if (rx & URXD_BRK)
734 flg = TTY_BREAK;
735 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100736 flg = TTY_PARITY;
737 else if (rx & URXD_FRMERR)
738 flg = TTY_FRAME;
739 if (rx & URXD_OVRRUN)
740 flg = TTY_OVERRUN;
741
742#ifdef SUPPORT_SYSRQ
743 sport->port.sysrq = 0;
744#endif
745 }
746
Jiada Wang55d86932014-12-09 18:11:22 +0900747 if (sport->port.ignore_status_mask & URXD_DUMMY_READ)
748 goto out;
749
Manfred Schlaegl9b289932015-06-20 19:25:35 +0200750 if (tty_insert_flip_char(port, rx, flg) == 0)
751 sport->port.icount.buf_overrun++;
Sascha Hauer864eeed2008-04-17 08:39:22 +0100752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530755 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100756 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Nandor Han41d98b52016-08-08 15:38:28 +0300760static void clear_rx_errors(struct imx_port *sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800761
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100762/*
763 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
764 */
765static unsigned int imx_get_hwmctrl(struct imx_port *sport)
766{
767 unsigned int tmp = TIOCM_DSR;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100768 unsigned usr1 = imx_uart_readl(sport, USR1);
769 unsigned usr2 = imx_uart_readl(sport, USR2);
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100770
771 if (usr1 & USR1_RTSS)
772 tmp |= TIOCM_CTS;
773
774 /* in DCE mode DCDIN is always 0 */
Sascha Hauer4b75f802016-09-26 15:55:31 +0200775 if (!(usr2 & USR2_DCDIN))
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100776 tmp |= TIOCM_CAR;
777
778 if (sport->dte_mode)
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100779 if (!(imx_uart_readl(sport, USR2) & USR2_RIIN))
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100780 tmp |= TIOCM_RI;
781
782 return tmp;
783}
784
785/*
786 * Handle any change of modem status signal since we were last called.
787 */
788static void imx_mctrl_check(struct imx_port *sport)
789{
790 unsigned int status, changed;
791
792 status = imx_get_hwmctrl(sport);
793 changed = status ^ sport->old_status;
794
795 if (changed == 0)
796 return;
797
798 sport->old_status = status;
799
800 if (changed & TIOCM_RI && status & TIOCM_RI)
801 sport->port.icount.rng++;
802 if (changed & TIOCM_DSR)
803 sport->port.icount.dsr++;
804 if (changed & TIOCM_CAR)
805 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
806 if (changed & TIOCM_CTS)
807 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
808
809 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
810}
811
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200812static irqreturn_t imx_int(int irq, void *dev_id)
813{
814 struct imx_port *sport = dev_id;
Uwe Kleine-König43776892018-02-18 22:02:44 +0100815 unsigned int usr1, usr2, ucr1, ucr2, ucr3, ucr4;
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100816 irqreturn_t ret = IRQ_NONE;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200817
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100818 usr1 = imx_uart_readl(sport, USR1);
819 usr2 = imx_uart_readl(sport, USR2);
820 ucr1 = imx_uart_readl(sport, UCR1);
821 ucr2 = imx_uart_readl(sport, UCR2);
822 ucr3 = imx_uart_readl(sport, UCR3);
823 ucr4 = imx_uart_readl(sport, UCR4);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200824
Uwe Kleine-König43776892018-02-18 22:02:44 +0100825 /*
826 * Even if a condition is true that can trigger an irq only handle it if
827 * the respective irq source is enabled. This prevents some undesired
828 * actions, for example if a character that sits in the RX FIFO and that
829 * should be fetched via DMA is tried to be fetched using PIO. Or the
830 * receiver is currently off and so reading from URXD0 results in an
831 * exception. So just mask the (raw) status bits for disabled irqs.
832 */
833 if ((ucr1 & UCR1_RRDYEN) == 0)
834 usr1 &= ~USR1_RRDY;
835 if ((ucr2 & UCR2_ATEN) == 0)
836 usr1 &= ~USR1_AGTIM;
837 if ((ucr1 & UCR1_TXMPTYEN) == 0)
838 usr1 &= ~USR1_TRDY;
839 if ((ucr4 & UCR4_TCEN) == 0)
840 usr2 &= ~USR2_TXDC;
841 if ((ucr3 & UCR3_DTRDEN) == 0)
842 usr1 &= ~USR1_DTRD;
843 if ((ucr1 & UCR1_RTSDEN) == 0)
844 usr1 &= ~USR1_RTSD;
845 if ((ucr3 & UCR3_AWAKEN) == 0)
846 usr1 &= ~USR1_AWAKE;
847 if ((ucr4 & UCR4_OREN) == 0)
848 usr2 &= ~USR2_ORE;
849
850 if (usr1 & (USR1_RRDY | USR1_AGTIM)) {
Troy Kisky9ce99a32017-10-20 14:20:20 -0700851 imx_rxint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100852 ret = IRQ_HANDLED;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800853 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200854
Uwe Kleine-König43776892018-02-18 22:02:44 +0100855 if ((usr1 & USR1_TRDY) || (usr2 & USR2_TXDC)) {
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200856 imx_txint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100857 ret = IRQ_HANDLED;
858 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200859
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100860 if (usr1 & USR1_DTRD) {
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100861 unsigned long flags;
862
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100863 imx_uart_writel(sport, USR1_DTRD, USR1);
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100864
865 spin_lock_irqsave(&sport->port.lock, flags);
866 imx_mctrl_check(sport);
867 spin_unlock_irqrestore(&sport->port.lock, flags);
868
869 ret = IRQ_HANDLED;
870 }
871
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100872 if (usr1 & USR1_RTSD) {
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200873 imx_rtsint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100874 ret = IRQ_HANDLED;
875 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200876
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100877 if (usr1 & USR1_AWAKE) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100878 imx_uart_writel(sport, USR1_AWAKE, USR1);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100879 ret = IRQ_HANDLED;
880 }
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200881
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100882 if (usr2 & USR2_ORE) {
Alexander Steinf1f836e2013-05-14 17:06:07 +0200883 sport->port.icount.overrun++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100884 imx_uart_writel(sport, USR2_ORE, USR2);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100885 ret = IRQ_HANDLED;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200886 }
887
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100888 return ret;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200889}
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891/*
892 * Return TIOCSER_TEMT when transmitter is not busy.
893 */
894static unsigned int imx_tx_empty(struct uart_port *port)
895{
896 struct imx_port *sport = (struct imx_port *)port;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800897 unsigned int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100899 ret = (imx_uart_readl(sport, USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800900
901 /* If the TX DMA is working, return 0. */
Uwe Kleine-König686351f2018-03-02 11:07:21 +0100902 if (sport->dma_is_txing)
Huang Shijie1ce43e52013-10-11 18:30:59 +0800903 ret = 0;
904
905 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100908/* called with port.lock taken and irqs off */
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100909static unsigned int imx_get_mctrl(struct uart_port *port)
910{
911 struct imx_port *sport = (struct imx_port *)port;
912 unsigned int ret = imx_get_hwmctrl(sport);
913
914 mctrl_gpio_get(sport->gpios, &ret);
915
916 return ret;
917}
918
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +0100919/* called with port.lock taken and irqs off */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
921{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100922 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100923 unsigned long temp;
924
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100925 if (!(port->rs485.flags & SER_RS485_ENABLED)) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100926 temp = imx_uart_readl(sport, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100927 temp &= ~(UCR2_CTS | UCR2_CTSC);
928 if (mctrl & TIOCM_RTS)
929 temp |= UCR2_CTS | UCR2_CTSC;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100930 imx_uart_writel(sport, temp, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100931 }
Huang Shijie6b471a92013-11-29 17:29:24 +0800932
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100933 temp = imx_uart_readl(sport, UCR3) & ~UCR3_DSR;
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200934 if (!(mctrl & TIOCM_DTR))
935 temp |= UCR3_DSR;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100936 imx_uart_writel(sport, temp, UCR3);
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200937
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100938 temp = imx_uart_readl(sport, uts_reg(sport)) & ~UTS_LOOP;
Huang Shijie6b471a92013-11-29 17:29:24 +0800939 if (mctrl & TIOCM_LOOP)
940 temp |= UTS_LOOP;
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100941 imx_uart_writel(sport, temp, uts_reg(sport));
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100942
943 mctrl_gpio_set(sport->gpios, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
946/*
947 * Interrupts always disabled.
948 */
949static void imx_break_ctl(struct uart_port *port, int break_state)
950{
951 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100952 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 spin_lock_irqsave(&sport->port.lock, flags);
955
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100956 temp = imx_uart_readl(sport, UCR1) & ~UCR1_SNDBRK;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100957
Sachin Kamat82313e62013-01-07 10:25:02 +0530958 if (break_state != 0)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100959 temp |= UCR1_SNDBRK;
960
Uwe Kleine-König27c84422018-03-02 11:07:19 +0100961 imx_uart_writel(sport, temp, UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 spin_unlock_irqrestore(&sport->port.lock, flags);
964}
965
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200966/*
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200967 * This is our per-port timeout handler, for checking the
968 * modem status signals.
969 */
Kees Cooke99e88a2017-10-16 14:43:17 -0700970static void imx_timeout(struct timer_list *t)
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200971{
Kees Cooke99e88a2017-10-16 14:43:17 -0700972 struct imx_port *sport = from_timer(sport, t, timer);
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200973 unsigned long flags;
974
975 if (sport->port.state) {
976 spin_lock_irqsave(&sport->port.lock, flags);
977 imx_mctrl_check(sport);
978 spin_unlock_irqrestore(&sport->port.lock, flags);
979
980 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
981 }
982}
983
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +0200984#define RX_BUF_SIZE (PAGE_SIZE)
985
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800986/*
Lucas Stach905c0de2015-09-04 17:52:41 +0200987 * There are two kinds of RX DMA interrupts(such as in the MX6Q):
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800988 * [1] the RX DMA buffer is full.
Lucas Stach905c0de2015-09-04 17:52:41 +0200989 * [2] the aging timer expires
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800990 *
Lucas Stach905c0de2015-09-04 17:52:41 +0200991 * Condition [2] is triggered when a character has been sitting in the FIFO
992 * for at least 8 byte durations.
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800993 */
994static void dma_rx_callback(void *data)
995{
996 struct imx_port *sport = data;
997 struct dma_chan *chan = sport->dma_chan_rx;
998 struct scatterlist *sgl = &sport->rx_sgl;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800999 struct tty_port *port = &sport->port.state->port;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001000 struct dma_tx_state state;
Nandor Han9d297232016-08-08 15:38:27 +03001001 struct circ_buf *rx_ring = &sport->rx_ring;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001002 enum dma_status status;
Nandor Han9d297232016-08-08 15:38:27 +03001003 unsigned int w_bytes = 0;
1004 unsigned int r_bytes;
1005 unsigned int bd_size;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001006
Huang Shijief0ef8832013-10-11 18:31:01 +08001007 status = dmaengine_tx_status(chan, (dma_cookie_t)0, &state);
Philipp Zabel392bcee2015-05-19 10:54:09 +02001008
Nandor Han9d297232016-08-08 15:38:27 +03001009 if (status == DMA_ERROR) {
Nandor Han41d98b52016-08-08 15:38:28 +03001010 clear_rx_errors(sport);
Nandor Han9d297232016-08-08 15:38:27 +03001011 return;
Robin Gongee5e7c12014-12-09 18:11:33 +09001012 }
Lucas Stach976b39c2015-09-04 17:52:39 +02001013
Nandor Han9d297232016-08-08 15:38:27 +03001014 if (!(sport->port.ignore_status_mask & URXD_DUMMY_READ)) {
1015
1016 /*
1017 * The state-residue variable represents the empty space
1018 * relative to the entire buffer. Taking this in consideration
1019 * the head is always calculated base on the buffer total
1020 * length - DMA transaction residue. The UART script from the
1021 * SDMA firmware will jump to the next buffer descriptor,
1022 * once a DMA transaction if finalized (IMX53 RM - A.4.1.2.4).
1023 * Taking this in consideration the tail is always at the
1024 * beginning of the buffer descriptor that contains the head.
1025 */
1026
1027 /* Calculate the head */
1028 rx_ring->head = sg_dma_len(sgl) - state.residue;
1029
1030 /* Calculate the tail. */
1031 bd_size = sg_dma_len(sgl) / sport->rx_periods;
1032 rx_ring->tail = ((rx_ring->head-1) / bd_size) * bd_size;
1033
1034 if (rx_ring->head <= sg_dma_len(sgl) &&
1035 rx_ring->head > rx_ring->tail) {
1036
1037 /* Move data from tail to head */
1038 r_bytes = rx_ring->head - rx_ring->tail;
1039
1040 /* CPU claims ownership of RX DMA buffer */
1041 dma_sync_sg_for_cpu(sport->port.dev, sgl, 1,
1042 DMA_FROM_DEVICE);
1043
1044 w_bytes = tty_insert_flip_string(port,
1045 sport->rx_buf + rx_ring->tail, r_bytes);
1046
1047 /* UART retrieves ownership of RX DMA buffer */
1048 dma_sync_sg_for_device(sport->port.dev, sgl, 1,
1049 DMA_FROM_DEVICE);
1050
1051 if (w_bytes != r_bytes)
1052 sport->port.icount.buf_overrun++;
1053
1054 sport->port.icount.rx += w_bytes;
1055 } else {
1056 WARN_ON(rx_ring->head > sg_dma_len(sgl));
1057 WARN_ON(rx_ring->head <= rx_ring->tail);
1058 }
1059 }
1060
1061 if (w_bytes) {
1062 tty_flip_buffer_push(port);
1063 dev_dbg(sport->port.dev, "We get %d bytes.\n", w_bytes);
1064 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001065}
1066
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001067/* RX DMA buffer periods */
1068#define RX_DMA_PERIODS 4
1069
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001070static int start_rx_dma(struct imx_port *sport)
1071{
1072 struct scatterlist *sgl = &sport->rx_sgl;
1073 struct dma_chan *chan = sport->dma_chan_rx;
1074 struct device *dev = sport->port.dev;
1075 struct dma_async_tx_descriptor *desc;
1076 int ret;
1077
Nandor Han9d297232016-08-08 15:38:27 +03001078 sport->rx_ring.head = 0;
1079 sport->rx_ring.tail = 0;
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001080 sport->rx_periods = RX_DMA_PERIODS;
Nandor Han9d297232016-08-08 15:38:27 +03001081
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001082 sg_init_one(sgl, sport->rx_buf, RX_BUF_SIZE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001083 ret = dma_map_sg(dev, sgl, 1, DMA_FROM_DEVICE);
1084 if (ret == 0) {
1085 dev_err(dev, "DMA mapping error for RX.\n");
1086 return -EINVAL;
1087 }
Nandor Han9d297232016-08-08 15:38:27 +03001088
1089 desc = dmaengine_prep_dma_cyclic(chan, sg_dma_address(sgl),
1090 sg_dma_len(sgl), sg_dma_len(sgl) / sport->rx_periods,
1091 DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT);
1092
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001093 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +09001094 dma_unmap_sg(dev, sgl, 1, DMA_FROM_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001095 dev_err(dev, "We cannot prepare for the RX slave dma!\n");
1096 return -EINVAL;
1097 }
1098 desc->callback = dma_rx_callback;
1099 desc->callback_param = sport;
1100
1101 dev_dbg(dev, "RX: prepare for the DMA.\n");
Romain Perier4139fd72017-09-28 11:03:49 +01001102 sport->dma_is_rxing = 1;
Nandor Han9d297232016-08-08 15:38:27 +03001103 sport->rx_cookie = dmaengine_submit(desc);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001104 dma_async_issue_pending(chan);
1105 return 0;
1106}
1107
Nandor Han41d98b52016-08-08 15:38:28 +03001108static void clear_rx_errors(struct imx_port *sport)
1109{
Troy Kisky45ca6732018-02-23 18:27:50 -08001110 struct tty_port *port = &sport->port.state->port;
Nandor Han41d98b52016-08-08 15:38:28 +03001111 unsigned int status_usr1, status_usr2;
1112
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001113 status_usr1 = imx_uart_readl(sport, USR1);
1114 status_usr2 = imx_uart_readl(sport, USR2);
Nandor Han41d98b52016-08-08 15:38:28 +03001115
1116 if (status_usr2 & USR2_BRCD) {
1117 sport->port.icount.brk++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001118 imx_uart_writel(sport, USR2_BRCD, USR2);
Troy Kisky45ca6732018-02-23 18:27:50 -08001119 uart_handle_break(&sport->port);
1120 if (tty_insert_flip_char(port, 0, TTY_BREAK) == 0)
1121 sport->port.icount.buf_overrun++;
1122 tty_flip_buffer_push(port);
1123 } else {
1124 dev_err(sport->port.dev, "DMA transaction error.\n");
1125 if (status_usr1 & USR1_FRAMERR) {
1126 sport->port.icount.frame++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001127 imx_uart_writel(sport, USR1_FRAMERR, USR1);
Troy Kisky45ca6732018-02-23 18:27:50 -08001128 } else if (status_usr1 & USR1_PARITYERR) {
1129 sport->port.icount.parity++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001130 imx_uart_writel(sport, USR1_PARITYERR, USR1);
Troy Kisky45ca6732018-02-23 18:27:50 -08001131 }
Nandor Han41d98b52016-08-08 15:38:28 +03001132 }
1133
1134 if (status_usr2 & USR2_ORE) {
1135 sport->port.icount.overrun++;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001136 imx_uart_writel(sport, USR2_ORE, USR2);
Nandor Han41d98b52016-08-08 15:38:28 +03001137 }
1138
1139}
1140
Lucas Stachcc323822015-09-04 17:52:37 +02001141#define TXTL_DEFAULT 2 /* reset default */
1142#define RXTL_DEFAULT 1 /* reset default */
Lucas Stach184bd702015-09-04 17:52:40 +02001143#define TXTL_DMA 8 /* DMA burst setting */
1144#define RXTL_DMA 9 /* DMA burst setting */
Lucas Stachcc323822015-09-04 17:52:37 +02001145
1146static void imx_setup_ufcr(struct imx_port *sport,
1147 unsigned char txwl, unsigned char rxwl)
1148{
1149 unsigned int val;
1150
1151 /* set receiver / transmitter trigger level */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001152 val = imx_uart_readl(sport, UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
Lucas Stachcc323822015-09-04 17:52:37 +02001153 val |= txwl << UFCR_TXTL_SHF | rxwl;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001154 imx_uart_writel(sport, val, UFCR);
Lucas Stachcc323822015-09-04 17:52:37 +02001155}
1156
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001157static void imx_uart_dma_exit(struct imx_port *sport)
1158{
1159 if (sport->dma_chan_rx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001160 dmaengine_terminate_sync(sport->dma_chan_rx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001161 dma_release_channel(sport->dma_chan_rx);
1162 sport->dma_chan_rx = NULL;
Nandor Han9d297232016-08-08 15:38:27 +03001163 sport->rx_cookie = -EINVAL;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001164 kfree(sport->rx_buf);
1165 sport->rx_buf = NULL;
1166 }
1167
1168 if (sport->dma_chan_tx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001169 dmaengine_terminate_sync(sport->dma_chan_tx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001170 dma_release_channel(sport->dma_chan_tx);
1171 sport->dma_chan_tx = NULL;
1172 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001173}
1174
1175static int imx_uart_dma_init(struct imx_port *sport)
1176{
Huang Shijieb09c74a2013-08-29 16:29:25 +08001177 struct dma_slave_config slave_config = {};
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001178 struct device *dev = sport->port.dev;
1179 int ret;
1180
1181 /* Prepare for RX : */
1182 sport->dma_chan_rx = dma_request_slave_channel(dev, "rx");
1183 if (!sport->dma_chan_rx) {
1184 dev_dbg(dev, "cannot get the DMA channel.\n");
1185 ret = -EINVAL;
1186 goto err;
1187 }
1188
1189 slave_config.direction = DMA_DEV_TO_MEM;
1190 slave_config.src_addr = sport->port.mapbase + URXD0;
1191 slave_config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001192 /* one byte less than the watermark level to enable the aging timer */
1193 slave_config.src_maxburst = RXTL_DMA - 1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001194 ret = dmaengine_slave_config(sport->dma_chan_rx, &slave_config);
1195 if (ret) {
1196 dev_err(dev, "error in RX dma configuration.\n");
1197 goto err;
1198 }
1199
Martyn Welchf654b23c2017-09-28 11:07:40 +01001200 sport->rx_buf = kzalloc(RX_BUF_SIZE, GFP_KERNEL);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001201 if (!sport->rx_buf) {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001202 ret = -ENOMEM;
1203 goto err;
1204 }
Nandor Han9d297232016-08-08 15:38:27 +03001205 sport->rx_ring.buf = sport->rx_buf;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001206
1207 /* Prepare for TX : */
1208 sport->dma_chan_tx = dma_request_slave_channel(dev, "tx");
1209 if (!sport->dma_chan_tx) {
1210 dev_err(dev, "cannot get the TX DMA channel!\n");
1211 ret = -EINVAL;
1212 goto err;
1213 }
1214
1215 slave_config.direction = DMA_MEM_TO_DEV;
1216 slave_config.dst_addr = sport->port.mapbase + URTX0;
1217 slave_config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001218 slave_config.dst_maxburst = TXTL_DMA;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001219 ret = dmaengine_slave_config(sport->dma_chan_tx, &slave_config);
1220 if (ret) {
1221 dev_err(dev, "error in TX dma configuration.");
1222 goto err;
1223 }
1224
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001225 return 0;
1226err:
1227 imx_uart_dma_exit(sport);
1228 return ret;
1229}
1230
1231static void imx_enable_dma(struct imx_port *sport)
1232{
1233 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001234
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001235 /* set UCR1 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001236 temp = imx_uart_readl(sport, UCR1);
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +01001237 temp |= UCR1_RXDMAEN | UCR1_TXDMAEN | UCR1_ATDMAEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001238 imx_uart_writel(sport, temp, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001239
Lucas Stach184bd702015-09-04 17:52:40 +02001240 imx_setup_ufcr(sport, TXTL_DMA, RXTL_DMA);
1241
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001242 sport->dma_is_enabled = 1;
1243}
1244
1245static void imx_disable_dma(struct imx_port *sport)
1246{
1247 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001248
1249 /* clear UCR1 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001250 temp = imx_uart_readl(sport, UCR1);
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +01001251 temp &= ~(UCR1_RXDMAEN | UCR1_TXDMAEN | UCR1_ATDMAEN);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001252 imx_uart_writel(sport, temp, UCR1);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001253
1254 /* clear UCR2 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001255 temp = imx_uart_readl(sport, UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001256 temp &= ~(UCR2_CTSC | UCR2_CTS | UCR2_ATEN);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001257 imx_uart_writel(sport, temp, UCR2);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001258
Lucas Stach184bd702015-09-04 17:52:40 +02001259 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
1260
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001261 sport->dma_is_enabled = 0;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001262}
1263
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001264/* half the RX buffer size */
1265#define CTSTL 16
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267static int imx_startup(struct uart_port *port)
1268{
1269 struct imx_port *sport = (struct imx_port *)port;
Fabio Estevam458e2c82015-07-27 15:15:59 -03001270 int retval, i;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001271 unsigned long flags, temp;
Uwe Kleine-König4238c002018-02-18 22:02:45 +01001272 int dma_is_inited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Huang Shijie1cf93e02013-06-28 13:39:42 +08001274 retval = clk_prepare_enable(sport->clk_per);
1275 if (retval)
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001276 return retval;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001277 retval = clk_prepare_enable(sport->clk_ipg);
1278 if (retval) {
1279 clk_disable_unprepare(sport->clk_per);
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001280 return retval;
Huang Shijie0c375502013-06-09 10:01:19 +08001281 }
Huang Shijie28eb4272013-06-04 09:59:33 +08001282
Lucas Stachcc323822015-09-04 17:52:37 +02001283 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 /* disable the DREN bit (Data Ready interrupt enable) before
1286 * requesting IRQs
1287 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001288 temp = imx_uart_readl(sport, UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001289
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001290 /* set the trigger level for CTS */
Sachin Kamat82313e62013-01-07 10:25:02 +05301291 temp &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
1292 temp |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001293
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001294 imx_uart_writel(sport, temp & ~UCR4_DREN, UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Lucas Stach7e115772015-09-04 17:52:42 +02001296 /* Can we enable the DMA support? */
Uwe Kleine-König4238c002018-02-18 22:02:45 +01001297 if (!uart_console(port) && imx_uart_dma_init(sport) == 0)
1298 dma_is_inited = 1;
Lucas Stach7e115772015-09-04 17:52:42 +02001299
Jiada Wang53794182015-04-13 18:31:43 +09001300 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijie772f8992014-05-21 08:56:28 +08001301 /* Reset fifo's and state machines */
Fabio Estevam458e2c82015-07-27 15:15:59 -03001302 i = 100;
1303
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001304 temp = imx_uart_readl(sport, UCR2);
Fabio Estevam458e2c82015-07-27 15:15:59 -03001305 temp &= ~UCR2_SRST;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001306 imx_uart_writel(sport, temp, UCR2);
Fabio Estevam458e2c82015-07-27 15:15:59 -03001307
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001308 while (!(imx_uart_readl(sport, UCR2) & UCR2_SRST) && (--i > 0))
Fabio Estevam458e2c82015-07-27 15:15:59 -03001309 udelay(1);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 /*
1312 * Finally, clear and enable interrupts
1313 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001314 imx_uart_writel(sport, USR1_RTSD | USR1_DTRD, USR1);
1315 imx_uart_writel(sport, USR2_ORE, USR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Uwe Kleine-König42afa622018-02-18 22:02:46 +01001317 if (dma_is_inited)
Lucas Stach7e115772015-09-04 17:52:42 +02001318 imx_enable_dma(sport);
1319
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001320 temp = imx_uart_readl(sport, UCR1) & ~UCR1_RRDYEN;
Troy Kisky1f043572017-11-16 11:14:53 -07001321 if (!sport->dma_is_enabled)
1322 temp |= UCR1_RRDYEN;
1323 temp |= UCR1_UARTEN;
Nandor Han6376cd32017-06-28 15:59:36 +02001324 if (sport->have_rtscts)
1325 temp |= UCR1_RTSDEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001326
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001327 imx_uart_writel(sport, temp, UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001329 temp = imx_uart_readl(sport, UCR4) & ~UCR4_OREN;
Troy Kisky1f043572017-11-16 11:14:53 -07001330 if (!sport->dma_is_enabled)
1331 temp |= UCR4_OREN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001332 imx_uart_writel(sport, temp, UCR4);
Jiada Wang6f026d6b2014-12-09 18:11:34 +09001333
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001334 temp = imx_uart_readl(sport, UCR2) & ~UCR2_ATEN;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001335 temp |= (UCR2_RXEN | UCR2_TXEN);
Lucas Stachbff09b02013-05-30 15:47:04 +02001336 if (!sport->have_rtscts)
1337 temp |= UCR2_IRTS;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001338 /*
1339 * make sure the edge sensitive RTS-irq is disabled,
1340 * we're using RTSD instead.
1341 */
1342 if (!is_imx1_uart(sport))
1343 temp &= ~UCR2_RTSEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001344 imx_uart_writel(sport, temp, UCR2);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001345
Huang Shijiea496e622013-07-08 17:14:17 +08001346 if (!is_imx1_uart(sport)) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001347 temp = imx_uart_readl(sport, UCR3);
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001348
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02001349 temp |= UCR3_DTRDEN | UCR3_RI | UCR3_DCD;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001350
1351 if (sport->dte_mode)
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02001352 /* disable broken interrupts */
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001353 temp &= ~(UCR3_RI | UCR3_DCD);
1354
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001355 imx_uart_writel(sport, temp, UCR3);
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001356 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +02001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /*
1359 * Enable modem status interrupts
1360 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 imx_enable_ms(&sport->port);
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001362
1363 /*
Peter Senna Tschudin4dec2f12017-05-14 14:35:15 +02001364 * Start RX DMA immediately instead of waiting for RX FIFO interrupts.
1365 * In our iMX53 the average delay for the first reception dropped from
1366 * approximately 35000 microseconds to 1000 microseconds.
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001367 */
Troy Kisky1f043572017-11-16 11:14:53 -07001368 if (sport->dma_is_enabled)
Peter Senna Tschudin4dec2f12017-05-14 14:35:15 +02001369 start_rx_dma(sport);
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001370
Sachin Kamat82313e62013-01-07 10:25:02 +05301371 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
1376static void imx_shutdown(struct uart_port *port)
1377{
1378 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001379 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001380 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001382 if (sport->dma_is_enabled) {
Nandor Han9d297232016-08-08 15:38:27 +03001383 sport->dma_is_rxing = 0;
1384 sport->dma_is_txing = 0;
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001385 dmaengine_terminate_sync(sport->dma_chan_tx);
1386 dmaengine_terminate_sync(sport->dma_chan_rx);
Huang Shijiea4688bc2014-09-19 15:42:57 +08001387
Jiada Wang73631812014-12-09 18:11:23 +09001388 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijiea4688bc2014-09-19 15:42:57 +08001389 imx_stop_tx(port);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001390 imx_stop_rx(port);
1391 imx_disable_dma(sport);
Jiada Wang73631812014-12-09 18:11:23 +09001392 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001393 imx_uart_dma_exit(sport);
1394 }
1395
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001396 mctrl_gpio_disable_ms(sport->gpios);
1397
Xinyu Chen9ec18822012-08-27 09:36:51 +02001398 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001399 temp = imx_uart_readl(sport, UCR2);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001400 temp &= ~(UCR2_TXEN);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001401 imx_uart_writel(sport, temp, UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001402 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /*
1405 * Stop our timer.
1406 */
1407 del_timer_sync(&sport->timer);
1408
1409 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 * Disable all interrupts, port and break condition.
1411 */
1412
Xinyu Chen9ec18822012-08-27 09:36:51 +02001413 spin_lock_irqsave(&sport->port.lock, flags);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001414 temp = imx_uart_readl(sport, UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001415 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001416
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001417 imx_uart_writel(sport, temp, UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001418 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +08001419
Huang Shijie1cf93e02013-06-28 13:39:42 +08001420 clk_disable_unprepare(sport->clk_per);
1421 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +01001424/* called with port.lock taken and irqs off */
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001425static void imx_flush_buffer(struct uart_port *port)
1426{
1427 struct imx_port *sport = (struct imx_port *)port;
Dirk Behme82e86ae2014-12-09 18:11:27 +09001428 struct scatterlist *sgl = &sport->tx_sgl[0];
Dirk Behmea2c718c2014-12-09 18:11:31 +09001429 unsigned long temp;
Fabio Estevam4f86a952015-02-07 15:46:41 -02001430 int i = 100, ubir, ubmr, uts;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001431
Dirk Behme82e86ae2014-12-09 18:11:27 +09001432 if (!sport->dma_chan_tx)
1433 return;
1434
1435 sport->tx_bytes = 0;
1436 dmaengine_terminate_all(sport->dma_chan_tx);
1437 if (sport->dma_is_txing) {
1438 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents,
1439 DMA_TO_DEVICE);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001440 temp = imx_uart_readl(sport, UCR1);
Uwe Kleine-König302e8dc2018-02-27 22:44:55 +01001441 temp &= ~UCR1_TXDMAEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001442 imx_uart_writel(sport, temp, UCR1);
Martyn Welch0f7bdbd2017-09-28 11:38:51 +01001443 sport->dma_is_txing = 0;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001444 }
Fabio Estevam934084a2015-01-13 10:00:26 -02001445
1446 /*
1447 * According to the Reference Manual description of the UART SRST bit:
Martyn Welch263763c2017-10-04 17:13:27 +01001448 *
Fabio Estevam934084a2015-01-13 10:00:26 -02001449 * "Reset the transmit and receive state machines,
1450 * all FIFOs and register USR1, USR2, UBIR, UBMR, UBRC, URXD, UTXD
Martyn Welch263763c2017-10-04 17:13:27 +01001451 * and UTS[6-3]".
1452 *
1453 * We don't need to restore the old values from USR1, USR2, URXD and
1454 * UTXD. UBRC is read only, so only save/restore the other three
1455 * registers.
Fabio Estevam934084a2015-01-13 10:00:26 -02001456 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001457 ubir = imx_uart_readl(sport, UBIR);
1458 ubmr = imx_uart_readl(sport, UBMR);
1459 uts = imx_uart_readl(sport, IMX21_UTS);
Fabio Estevam934084a2015-01-13 10:00:26 -02001460
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001461 temp = imx_uart_readl(sport, UCR2);
Fabio Estevam934084a2015-01-13 10:00:26 -02001462 temp &= ~UCR2_SRST;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001463 imx_uart_writel(sport, temp, UCR2);
Fabio Estevam934084a2015-01-13 10:00:26 -02001464
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001465 while (!(imx_uart_readl(sport, UCR2) & UCR2_SRST) && (--i > 0))
Fabio Estevam934084a2015-01-13 10:00:26 -02001466 udelay(1);
1467
1468 /* Restore the registers */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001469 imx_uart_writel(sport, ubir, UBIR);
1470 imx_uart_writel(sport, ubmr, UBMR);
1471 imx_uart_writel(sport, uts, IMX21_UTS);
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001472}
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474static void
Alan Cox606d0992006-12-08 02:38:45 -08001475imx_set_termios(struct uart_port *port, struct ktermios *termios,
1476 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 struct imx_port *sport = (struct imx_port *)port;
1479 unsigned long flags;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001480 unsigned long ucr2, old_ucr1, old_ucr2;
1481 unsigned int baud, quot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001483 unsigned long div, ufcr;
Oskar Schirmer534fca02009-06-11 14:52:23 +01001484 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001485 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 * We only support CS7 and CS8.
1489 */
1490 while ((termios->c_cflag & CSIZE) != CS7 &&
1491 (termios->c_cflag & CSIZE) != CS8) {
1492 termios->c_cflag &= ~CSIZE;
1493 termios->c_cflag |= old_csize;
1494 old_csize = CS8;
1495 }
1496
1497 if ((termios->c_cflag & CSIZE) == CS8)
1498 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
1499 else
1500 ucr2 = UCR2_SRST | UCR2_IRTS;
1501
1502 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +05301503 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +01001504 ucr2 &= ~UCR2_IRTS;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001505
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001506 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001507 /*
1508 * RTS is mandatory for rs485 operation, so keep
1509 * it under manual control and keep transmitter
1510 * disabled.
1511 */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001512 if (port->rs485.flags &
1513 SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001514 imx_port_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001515 else
1516 imx_port_rts_inactive(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001517 } else {
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001518 imx_port_rts_auto(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001519 }
Sascha Hauer5b802342006-05-04 14:07:42 +01001520 } else {
1521 termios->c_cflag &= ~CRTSCTS;
1522 }
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001523 } else if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001524 /* disable transmitter */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001525 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001526 imx_port_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001527 else
1528 imx_port_rts_inactive(sport, &ucr2);
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001529 }
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 if (termios->c_cflag & CSTOPB)
1533 ucr2 |= UCR2_STPB;
1534 if (termios->c_cflag & PARENB) {
1535 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +00001536 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 ucr2 |= UCR2_PROE;
1538 }
1539
Eric Miao995234d2011-12-23 05:39:27 +08001540 del_timer_sync(&sport->timer);
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 /*
1543 * Ask the core to calculate the divisor for us.
1544 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001545 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 quot = uart_get_divisor(port, baud);
1547
1548 spin_lock_irqsave(&sport->port.lock, flags);
1549
1550 sport->port.read_status_mask = 0;
1551 if (termios->c_iflag & INPCK)
1552 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
1553 if (termios->c_iflag & (BRKINT | PARMRK))
1554 sport->port.read_status_mask |= URXD_BRK;
1555
1556 /*
1557 * Characters to ignore
1558 */
1559 sport->port.ignore_status_mask = 0;
1560 if (termios->c_iflag & IGNPAR)
Eric Nelson865cea82014-12-18 12:37:14 -07001561 sport->port.ignore_status_mask |= URXD_PRERR | URXD_FRMERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 if (termios->c_iflag & IGNBRK) {
1563 sport->port.ignore_status_mask |= URXD_BRK;
1564 /*
1565 * If we're ignoring parity and break indicators,
1566 * ignore overruns too (for real raw support).
1567 */
1568 if (termios->c_iflag & IGNPAR)
1569 sport->port.ignore_status_mask |= URXD_OVRRUN;
1570 }
1571
Jiada Wang55d86932014-12-09 18:11:22 +09001572 if ((termios->c_cflag & CREAD) == 0)
1573 sport->port.ignore_status_mask |= URXD_DUMMY_READ;
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 /*
1576 * Update the per-port timeout.
1577 */
1578 uart_update_timeout(port, termios->c_cflag, baud);
1579
1580 /*
1581 * disable interrupts and drain transmitter
1582 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001583 old_ucr1 = imx_uart_readl(sport, UCR1);
1584 imx_uart_writel(sport,
1585 old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1586 UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001588 while (!(imx_uart_readl(sport, USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 barrier();
1590
1591 /* then, disable everything */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001592 old_ucr2 = imx_uart_readl(sport, UCR2);
1593 imx_uart_writel(sport, old_ucr2 & ~(UCR2_TXEN | UCR2_RXEN), UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001594 old_ucr2 &= (UCR2_TXEN | UCR2_RXEN | UCR2_ATEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001596 /* custom-baudrate handling */
1597 div = sport->port.uartclk / (baud * 16);
1598 if (baud == 38400 && quot != div)
1599 baud = sport->port.uartclk / (quot * 16);
Hubert Feurstein09bd00f2013-07-18 18:52:49 +02001600
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001601 div = sport->port.uartclk / (baud * 16);
1602 if (div > 7)
1603 div = 7;
1604 if (!div)
1605 div = 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001606
Oskar Schirmer534fca02009-06-11 14:52:23 +01001607 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1608 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001609
Alan Coxeab4f5a2010-06-01 22:52:52 +02001610 tdiv64 = sport->port.uartclk;
1611 tdiv64 *= num;
1612 do_div(tdiv64, denom * 16 * div);
1613 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001614 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001615
Oskar Schirmer534fca02009-06-11 14:52:23 +01001616 num -= 1;
1617 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001618
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001619 ufcr = imx_uart_readl(sport, UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001620 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001621 imx_uart_writel(sport, ufcr, UFCR);
Sascha Hauer036bb152008-07-05 10:02:44 +02001622
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001623 imx_uart_writel(sport, num, UBIR);
1624 imx_uart_writel(sport, denom, UBMR);
Oskar Schirmer534fca02009-06-11 14:52:23 +01001625
Huang Shijiea496e622013-07-08 17:14:17 +08001626 if (!is_imx1_uart(sport))
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001627 imx_uart_writel(sport, sport->port.uartclk / div / 1000,
1628 IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001630 imx_uart_writel(sport, old_ucr1, UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001631
1632 /* set the parity, stop bits and data size */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001633 imx_uart_writel(sport, ucr2 | old_ucr2, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1636 imx_enable_ms(&sport->port);
1637
1638 spin_unlock_irqrestore(&sport->port.lock, flags);
1639}
1640
1641static const char *imx_type(struct uart_port *port)
1642{
1643 struct imx_port *sport = (struct imx_port *)port;
1644
1645 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1646}
1647
1648/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 * Configure/autoconfigure the port.
1650 */
1651static void imx_config_port(struct uart_port *port, int flags)
1652{
1653 struct imx_port *sport = (struct imx_port *)port;
1654
Alexander Shiyanda82f992014-02-22 16:01:33 +04001655 if (flags & UART_CONFIG_TYPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 sport->port.type = PORT_IMX;
1657}
1658
1659/*
1660 * Verify the new serial_struct (for TIOCSSERIAL).
1661 * The only change we allow are to the flags and type, and
1662 * even then only between PORT_IMX and PORT_UNKNOWN
1663 */
1664static int
1665imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1666{
1667 struct imx_port *sport = (struct imx_port *)port;
1668 int ret = 0;
1669
1670 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1671 ret = -EINVAL;
1672 if (sport->port.irq != ser->irq)
1673 ret = -EINVAL;
1674 if (ser->io_type != UPIO_MEM)
1675 ret = -EINVAL;
1676 if (sport->port.uartclk / 16 != ser->baud_base)
1677 ret = -EINVAL;
Olof Johanssona50c44c2013-09-11 21:27:53 -07001678 if (sport->port.mapbase != (unsigned long)ser->iomem_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 ret = -EINVAL;
1680 if (sport->port.iobase != ser->port)
1681 ret = -EINVAL;
1682 if (ser->hub6 != 0)
1683 ret = -EINVAL;
1684 return ret;
1685}
1686
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001687#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001688
1689static int imx_poll_init(struct uart_port *port)
1690{
1691 struct imx_port *sport = (struct imx_port *)port;
1692 unsigned long flags;
1693 unsigned long temp;
1694 int retval;
1695
1696 retval = clk_prepare_enable(sport->clk_ipg);
1697 if (retval)
1698 return retval;
1699 retval = clk_prepare_enable(sport->clk_per);
1700 if (retval)
1701 clk_disable_unprepare(sport->clk_ipg);
1702
Lucas Stachcc323822015-09-04 17:52:37 +02001703 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001704
1705 spin_lock_irqsave(&sport->port.lock, flags);
1706
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001707 temp = imx_uart_readl(sport, UCR1);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001708 if (is_imx1_uart(sport))
1709 temp |= IMX1_UCR1_UARTCLKEN;
1710 temp |= UCR1_UARTEN | UCR1_RRDYEN;
1711 temp &= ~(UCR1_TXMPTYEN | UCR1_RTSDEN);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001712 imx_uart_writel(sport, temp, UCR1);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001713
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001714 temp = imx_uart_readl(sport, UCR2);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001715 temp |= UCR2_RXEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001716 imx_uart_writel(sport, temp, UCR2);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001717
1718 spin_unlock_irqrestore(&sport->port.lock, flags);
1719
1720 return 0;
1721}
1722
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001723static int imx_poll_get_char(struct uart_port *port)
1724{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001725 struct imx_port *sport = (struct imx_port *)port;
1726 if (!(imx_uart_readl(sport, USR2) & USR2_RDR))
Dirk Behme26c47412014-09-03 12:33:53 +01001727 return NO_POLL_CHAR;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001728
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001729 return imx_uart_readl(sport, URXD0) & URXD_RX_DATA;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001730}
1731
1732static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1733{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001734 struct imx_port *sport = (struct imx_port *)port;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001735 unsigned int status;
1736
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001737 /* drain */
1738 do {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001739 status = imx_uart_readl(sport, USR1);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001740 } while (~status & USR1_TRDY);
1741
1742 /* write */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001743 imx_uart_writel(sport, c, URTX0);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001744
1745 /* flush */
1746 do {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001747 status = imx_uart_readl(sport, USR2);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001748 } while (~status & USR2_TXDC);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001749}
1750#endif
1751
Uwe Kleine-König6aed2a82018-02-27 22:44:56 +01001752/* called with port.lock taken and irqs off or from .probe without locking */
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001753static int imx_rs485_config(struct uart_port *port,
1754 struct serial_rs485 *rs485conf)
1755{
1756 struct imx_port *sport = (struct imx_port *)port;
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001757 unsigned long temp;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001758
1759 /* unimplemented */
1760 rs485conf->delay_rts_before_send = 0;
1761 rs485conf->delay_rts_after_send = 0;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001762
1763 /* RTS is required to control the transmitter */
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02001764 if (!sport->have_rtscts && !sport->have_rtsgpio)
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001765 rs485conf->flags &= ~SER_RS485_ENABLED;
1766
1767 if (rs485conf->flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001768 /* disable transmitter */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001769 temp = imx_uart_readl(sport, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001770 if (rs485conf->flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001771 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -02001772 else
1773 imx_port_rts_inactive(sport, &temp);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001774 imx_uart_writel(sport, temp, UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001775 }
1776
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001777 /* Make sure Rx is enabled in case Tx is active with Rx disabled */
1778 if (!(rs485conf->flags & SER_RS485_ENABLED) ||
1779 rs485conf->flags & SER_RS485_RX_DURING_TX) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001780 temp = imx_uart_readl(sport, UCR2);
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001781 temp |= UCR2_RXEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001782 imx_uart_writel(sport, temp, UCR2);
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001783 }
1784
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001785 port->rs485 = *rs485conf;
1786
1787 return 0;
1788}
1789
Julia Lawall069a47e2016-09-01 19:51:35 +02001790static const struct uart_ops imx_pops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 .tx_empty = imx_tx_empty,
1792 .set_mctrl = imx_set_mctrl,
1793 .get_mctrl = imx_get_mctrl,
1794 .stop_tx = imx_stop_tx,
1795 .start_tx = imx_start_tx,
1796 .stop_rx = imx_stop_rx,
1797 .enable_ms = imx_enable_ms,
1798 .break_ctl = imx_break_ctl,
1799 .startup = imx_startup,
1800 .shutdown = imx_shutdown,
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001801 .flush_buffer = imx_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 .set_termios = imx_set_termios,
1803 .type = imx_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 .config_port = imx_config_port,
1805 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001806#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001807 .poll_init = imx_poll_init,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001808 .poll_get_char = imx_poll_get_char,
1809 .poll_put_char = imx_poll_put_char,
1810#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811};
1812
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001813static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001816static void imx_console_putchar(struct uart_port *port, int ch)
1817{
1818 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001819
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001820 while (imx_uart_readl(sport, uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001821 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001822
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001823 imx_uart_writel(sport, ch, URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001824}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826/*
1827 * Interrupts are disabled on entering
1828 */
1829static void
1830imx_console_write(struct console *co, const char *s, unsigned int count)
1831{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001832 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001833 struct imx_port_ucrs old_ucr;
1834 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001835 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001836 int locked = 1;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001837 int retval;
1838
Fabio Estevam0c727a42015-08-18 12:43:12 -03001839 retval = clk_enable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001840 if (retval)
1841 return;
Fabio Estevam0c727a42015-08-18 12:43:12 -03001842 retval = clk_enable(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001843 if (retval) {
Fabio Estevam0c727a42015-08-18 12:43:12 -03001844 clk_disable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001845 return;
1846 }
Xinyu Chen9ec18822012-08-27 09:36:51 +02001847
Thomas Gleixner677fe552013-02-14 21:01:06 +01001848 if (sport->port.sysrq)
1849 locked = 0;
1850 else if (oops_in_progress)
1851 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1852 else
1853 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001856 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001858 imx_port_ucrs_save(sport, &old_ucr);
Dirk Behme0ad5a812011-12-22 09:57:52 +01001859 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Shawn Guofe6b5402011-06-25 02:04:33 +08001861 if (is_imx1_uart(sport))
1862 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001863 ucr1 |= UCR1_UARTEN;
1864 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1865
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001866 imx_uart_writel(sport, ucr1, UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001867
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001868 imx_uart_writel(sport, old_ucr.ucr2 | UCR2_TXEN, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Russell Kingd3587882006-03-20 20:00:09 +00001870 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
1872 /*
1873 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001874 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001876 while (!(imx_uart_readl(sport, USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001878 imx_port_ucrs_restore(sport, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001879
Thomas Gleixner677fe552013-02-14 21:01:06 +01001880 if (locked)
1881 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001882
Fabio Estevam0c727a42015-08-18 12:43:12 -03001883 clk_disable(sport->clk_ipg);
1884 clk_disable(sport->clk_per);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
1887/*
1888 * If the port was already initialised (eg, by a boot loader),
1889 * try to determine the current setup.
1890 */
1891static void __init
1892imx_console_get_options(struct imx_port *sport, int *baud,
1893 int *parity, int *bits)
1894{
Sascha Hauer587897f2005-04-29 22:46:40 +01001895
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001896 if (imx_uart_readl(sport, UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301898 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001899 unsigned int baud_raw;
1900 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001902 ucr2 = imx_uart_readl(sport, UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 *parity = 'n';
1905 if (ucr2 & UCR2_PREN) {
1906 if (ucr2 & UCR2_PROE)
1907 *parity = 'o';
1908 else
1909 *parity = 'e';
1910 }
1911
1912 if (ucr2 & UCR2_WS)
1913 *bits = 8;
1914 else
1915 *bits = 7;
1916
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001917 ubir = imx_uart_readl(sport, UBIR) & 0xffff;
1918 ubmr = imx_uart_readl(sport, UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Uwe Kleine-König27c84422018-03-02 11:07:19 +01001920 ucfr_rfdiv = (imx_uart_readl(sport, UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001921 if (ucfr_rfdiv == 6)
1922 ucfr_rfdiv = 7;
1923 else
1924 ucfr_rfdiv = 6 - ucfr_rfdiv;
1925
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001926 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001927 uartclk /= ucfr_rfdiv;
1928
1929 { /*
1930 * The next code provides exact computation of
1931 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1932 * without need of float support or long long division,
1933 * which would be required to prevent 32bit arithmetic overflow
1934 */
1935 unsigned int mul = ubir + 1;
1936 unsigned int div = 16 * (ubmr + 1);
1937 unsigned int rem = uartclk % div;
1938
1939 baud_raw = (uartclk / div) * mul;
1940 baud_raw += (rem * mul + div / 2) / div;
1941 *baud = (baud_raw + 50) / 100 * 100;
1942 }
1943
Sachin Kamat82313e62013-01-07 10:25:02 +05301944 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301945 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01001946 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 }
1948}
1949
1950static int __init
1951imx_console_setup(struct console *co, char *options)
1952{
1953 struct imx_port *sport;
1954 int baud = 9600;
1955 int bits = 8;
1956 int parity = 'n';
1957 int flow = 'n';
Huang Shijie1cf93e02013-06-28 13:39:42 +08001958 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 /*
1961 * Check whether an invalid uart number has been specified, and
1962 * if so, search for the first available port that does have
1963 * console support.
1964 */
1965 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1966 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001967 sport = imx_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05301968 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04001969 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Huang Shijie1cf93e02013-06-28 13:39:42 +08001971 /* For setting the registers, we only need to enable the ipg clock. */
1972 retval = clk_prepare_enable(sport->clk_ipg);
1973 if (retval)
1974 goto error_console;
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (options)
1977 uart_parse_options(options, &baud, &parity, &bits, &flow);
1978 else
1979 imx_console_get_options(sport, &baud, &parity, &bits);
1980
Lucas Stachcc323822015-09-04 17:52:37 +02001981 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Sascha Hauer587897f2005-04-29 22:46:40 +01001982
Huang Shijie1cf93e02013-06-28 13:39:42 +08001983 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow);
1984
Fabio Estevam0c727a42015-08-18 12:43:12 -03001985 clk_disable(sport->clk_ipg);
1986 if (retval) {
1987 clk_unprepare(sport->clk_ipg);
1988 goto error_console;
1989 }
1990
1991 retval = clk_prepare(sport->clk_per);
1992 if (retval)
1993 clk_disable_unprepare(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001994
1995error_console:
1996 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997}
1998
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001999static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02002001 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 .write = imx_console_write,
2003 .device = uart_console_device,
2004 .setup = imx_console_setup,
2005 .flags = CON_PRINTBUFFER,
2006 .index = -1,
2007 .data = &imx_reg,
2008};
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010#define IMX_CONSOLE &imx_console
Lucas Stach913c6c02015-08-28 11:56:19 +02002011
2012#ifdef CONFIG_OF
2013static void imx_console_early_putchar(struct uart_port *port, int ch)
2014{
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002015 struct imx_port *sport = (struct imx_port *)port;
2016
2017 while (imx_uart_readl(sport, IMX21_UTS) & UTS_TXFULL)
Lucas Stach913c6c02015-08-28 11:56:19 +02002018 cpu_relax();
2019
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002020 imx_uart_writel(sport, ch, URTX0);
Lucas Stach913c6c02015-08-28 11:56:19 +02002021}
2022
2023static void imx_console_early_write(struct console *con, const char *s,
2024 unsigned count)
2025{
2026 struct earlycon_device *dev = con->data;
2027
2028 uart_console_write(&dev->port, s, count, imx_console_early_putchar);
2029}
2030
2031static int __init
2032imx_console_early_setup(struct earlycon_device *dev, const char *opt)
2033{
2034 if (!dev->port.membase)
2035 return -ENODEV;
2036
2037 dev->con->write = imx_console_early_write;
2038
2039 return 0;
2040}
2041OF_EARLYCON_DECLARE(ec_imx6q, "fsl,imx6q-uart", imx_console_early_setup);
2042OF_EARLYCON_DECLARE(ec_imx21, "fsl,imx21-uart", imx_console_early_setup);
2043#endif
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045#else
2046#define IMX_CONSOLE NULL
2047#endif
2048
2049static struct uart_driver imx_reg = {
2050 .owner = THIS_MODULE,
2051 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02002052 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 .major = SERIAL_IMX_MAJOR,
2054 .minor = MINOR_START,
2055 .nr = ARRAY_SIZE(imx_ports),
2056 .cons = IMX_CONSOLE,
2057};
2058
Shawn Guo22698aa2011-06-25 02:04:34 +08002059#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002060/*
2061 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
2062 * could successfully get all information from dt or a negative errno.
2063 */
Shawn Guo22698aa2011-06-25 02:04:34 +08002064static int serial_imx_probe_dt(struct imx_port *sport,
2065 struct platform_device *pdev)
2066{
2067 struct device_node *np = pdev->dev.of_node;
Shawn Guoff059672011-09-22 14:48:13 +08002068 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002069
LABBE Corentin5f8b9042015-11-24 15:36:57 +01002070 sport->devdata = of_device_get_match_data(&pdev->dev);
2071 if (!sport->devdata)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002072 /* no device tree device */
2073 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002074
Shawn Guoff059672011-09-22 14:48:13 +08002075 ret = of_alias_get_id(np, "serial");
2076 if (ret < 0) {
2077 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01002078 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08002079 }
2080 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002081
Geert Uytterhoeven1006ed72016-04-22 17:22:21 +02002082 if (of_get_property(np, "uart-has-rtscts", NULL) ||
2083 of_get_property(np, "fsl,uart-has-rtscts", NULL) /* deprecated */)
Shawn Guo22698aa2011-06-25 02:04:34 +08002084 sport->have_rtscts = 1;
2085
Huang Shijie20ff2fe2013-05-30 14:07:12 +08002086 if (of_get_property(np, "fsl,dte-mode", NULL))
2087 sport->dte_mode = 1;
2088
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02002089 if (of_get_property(np, "rts-gpios", NULL))
2090 sport->have_rtsgpio = 1;
2091
Shawn Guo22698aa2011-06-25 02:04:34 +08002092 return 0;
2093}
2094#else
2095static inline int serial_imx_probe_dt(struct imx_port *sport,
2096 struct platform_device *pdev)
2097{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002098 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002099}
2100#endif
2101
2102static void serial_imx_probe_pdata(struct imx_port *sport,
2103 struct platform_device *pdev)
2104{
Jingoo Han574de552013-07-30 17:06:57 +09002105 struct imxuart_platform_data *pdata = dev_get_platdata(&pdev->dev);
Shawn Guo22698aa2011-06-25 02:04:34 +08002106
2107 sport->port.line = pdev->id;
2108 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
2109
2110 if (!pdata)
2111 return;
2112
2113 if (pdata->flags & IMXUART_HAVE_RTSCTS)
2114 sport->have_rtscts = 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002115}
2116
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002117static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002119 struct imx_port *sport;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002120 void __iomem *base;
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002121 int ret = 0, reg;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002122 struct resource *res;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002123 int txirq, rxirq, rtsirq;
Sascha Hauer5b802342006-05-04 14:07:42 +01002124
Sachin Kamat42d34192013-01-07 10:25:06 +05302125 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002126 if (!sport)
2127 return -ENOMEM;
2128
Shawn Guo22698aa2011-06-25 02:04:34 +08002129 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002130 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08002131 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002132 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05302133 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002134
Geert Uytterhoeven56734442018-02-23 14:38:31 +01002135 if (sport->port.line >= ARRAY_SIZE(imx_ports)) {
2136 dev_err(&pdev->dev, "serial%d out of range\n",
2137 sport->port.line);
2138 return -EINVAL;
2139 }
2140
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002141 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Alexander Shiyanda82f992014-02-22 16:01:33 +04002142 base = devm_ioremap_resource(&pdev->dev, res);
2143 if (IS_ERR(base))
2144 return PTR_ERR(base);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002145
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002146 rxirq = platform_get_irq(pdev, 0);
2147 txirq = platform_get_irq(pdev, 1);
2148 rtsirq = platform_get_irq(pdev, 2);
2149
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002150 sport->port.dev = &pdev->dev;
2151 sport->port.mapbase = res->start;
2152 sport->port.membase = base;
2153 sport->port.type = PORT_IMX,
2154 sport->port.iotype = UPIO_MEM;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002155 sport->port.irq = rxirq;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002156 sport->port.fifosize = 32;
2157 sport->port.ops = &imx_pops;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01002158 sport->port.rs485_config = imx_rs485_config;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002159 sport->port.flags = UPF_BOOT_AUTOCONF;
Kees Cooke99e88a2017-10-16 14:43:17 -07002160 timer_setup(&sport->timer, imx_timeout, 0);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002161
Uwe Kleine-König58362d52015-12-13 11:30:03 +01002162 sport->gpios = mctrl_gpio_init(&sport->port, 0);
2163 if (IS_ERR(sport->gpios))
2164 return PTR_ERR(sport->gpios);
2165
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002166 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
2167 if (IS_ERR(sport->clk_ipg)) {
2168 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002169 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302170 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002171 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002172
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002173 sport->clk_per = devm_clk_get(&pdev->dev, "per");
2174 if (IS_ERR(sport->clk_per)) {
2175 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002176 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302177 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002178 }
2179
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002180 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002181
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002182 /* For register access, we only need to enable the ipg clock. */
2183 ret = clk_prepare_enable(sport->clk_ipg);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002184 if (ret) {
2185 dev_err(&pdev->dev, "failed to enable per clk: %d\n", ret);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002186 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002187 }
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002188
Uwe Kleine-König3a0ab622018-03-02 11:07:20 +01002189 /* initialize shadow register values */
2190 sport->ucr1 = readl(sport->port.membase + UCR1);
2191 sport->ucr2 = readl(sport->port.membase + UCR2);
2192 sport->ucr3 = readl(sport->port.membase + UCR3);
2193 sport->ucr4 = readl(sport->port.membase + UCR4);
2194 sport->ufcr = readl(sport->port.membase + UFCR);
2195
Lukas Wunner743f93f2017-11-24 23:26:40 +01002196 uart_get_rs485_mode(&pdev->dev, &sport->port.rs485);
2197
Lukas Wunnerb8f3bff2017-11-24 23:26:40 +01002198 if (sport->port.rs485.flags & SER_RS485_ENABLED &&
2199 (!sport->have_rtscts || !sport->have_rtsgpio))
2200 dev_err(&pdev->dev, "no RTS control, disabling rs485\n");
2201
2202 imx_rs485_config(&sport->port, &sport->port.rs485);
2203
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002204 /* Disable interrupts before requesting them */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002205 reg = imx_uart_readl(sport, UCR1);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002206 reg &= ~(UCR1_ADEN | UCR1_TRDYEN | UCR1_IDEN | UCR1_RRDYEN |
2207 UCR1_TXMPTYEN | UCR1_RTSDEN);
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002208 imx_uart_writel(sport, reg, UCR1);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002209
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002210 if (!is_imx1_uart(sport) && sport->dte_mode) {
2211 /*
2212 * The DCEDTE bit changes the direction of DSR, DCD, DTR and RI
2213 * and influences if UCR3_RI and UCR3_DCD changes the level of RI
2214 * and DCD (when they are outputs) or enables the respective
2215 * irqs. So set this bit early, i.e. before requesting irqs.
2216 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002217 reg = imx_uart_readl(sport, UFCR);
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002218 if (!(reg & UFCR_DCEDTE))
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002219 imx_uart_writel(sport, reg | UFCR_DCEDTE, UFCR);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002220
2221 /*
2222 * Disable UCR3_RI and UCR3_DCD irqs. They are also not
2223 * enabled later because they cannot be cleared
2224 * (confirmed on i.MX25) which makes them unusable.
2225 */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002226 imx_uart_writel(sport,
2227 IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP | UCR3_DSR,
2228 UCR3);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002229
2230 } else {
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002231 unsigned long ucr3 = UCR3_DSR;
2232
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002233 reg = imx_uart_readl(sport, UFCR);
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002234 if (reg & UFCR_DCEDTE)
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002235 imx_uart_writel(sport, reg & ~UFCR_DCEDTE, UFCR);
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002236
2237 if (!is_imx1_uart(sport))
2238 ucr3 |= IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002239 imx_uart_writel(sport, ucr3, UCR3);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002240 }
2241
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002242 clk_disable_unprepare(sport->clk_ipg);
2243
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002244 /*
2245 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
2246 * chips only have one interrupt.
2247 */
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002248 if (txirq > 0) {
2249 ret = devm_request_irq(&pdev->dev, rxirq, imx_rxint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002250 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002251 if (ret) {
2252 dev_err(&pdev->dev, "failed to request rx irq: %d\n",
2253 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002254 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002255 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002256
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002257 ret = devm_request_irq(&pdev->dev, txirq, imx_txint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002258 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002259 if (ret) {
2260 dev_err(&pdev->dev, "failed to request tx irq: %d\n",
2261 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002262 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002263 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002264 } else {
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002265 ret = devm_request_irq(&pdev->dev, rxirq, imx_int, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002266 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002267 if (ret) {
2268 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002269 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002270 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002271 }
2272
Shawn Guo22698aa2011-06-25 02:04:34 +08002273 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01002274
Richard Zhao0a86a862012-09-18 16:14:58 +08002275 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002276
Alexander Shiyan45af7802014-02-22 16:01:35 +04002277 return uart_add_one_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
2279
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002280static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002282 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Alexander Shiyan45af7802014-02-22 16:01:35 +04002284 return uart_remove_one_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285}
2286
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002287static void serial_imx_restore_context(struct imx_port *sport)
2288{
2289 if (!sport->context_saved)
2290 return;
2291
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002292 imx_uart_writel(sport, sport->saved_reg[4], UFCR);
2293 imx_uart_writel(sport, sport->saved_reg[5], UESC);
2294 imx_uart_writel(sport, sport->saved_reg[6], UTIM);
2295 imx_uart_writel(sport, sport->saved_reg[7], UBIR);
2296 imx_uart_writel(sport, sport->saved_reg[8], UBMR);
2297 imx_uart_writel(sport, sport->saved_reg[9], IMX21_UTS);
2298 imx_uart_writel(sport, sport->saved_reg[0], UCR1);
2299 imx_uart_writel(sport, sport->saved_reg[1] | UCR2_SRST, UCR2);
2300 imx_uart_writel(sport, sport->saved_reg[2], UCR3);
2301 imx_uart_writel(sport, sport->saved_reg[3], UCR4);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002302 sport->context_saved = false;
2303}
2304
2305static void serial_imx_save_context(struct imx_port *sport)
2306{
2307 /* Save necessary regs */
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002308 sport->saved_reg[0] = imx_uart_readl(sport, UCR1);
2309 sport->saved_reg[1] = imx_uart_readl(sport, UCR2);
2310 sport->saved_reg[2] = imx_uart_readl(sport, UCR3);
2311 sport->saved_reg[3] = imx_uart_readl(sport, UCR4);
2312 sport->saved_reg[4] = imx_uart_readl(sport, UFCR);
2313 sport->saved_reg[5] = imx_uart_readl(sport, UESC);
2314 sport->saved_reg[6] = imx_uart_readl(sport, UTIM);
2315 sport->saved_reg[7] = imx_uart_readl(sport, UBIR);
2316 sport->saved_reg[8] = imx_uart_readl(sport, UBMR);
2317 sport->saved_reg[9] = imx_uart_readl(sport, IMX21_UTS);
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002318 sport->context_saved = true;
2319}
2320
Eduardo Valentin189550b2015-08-11 10:21:21 -07002321static void serial_imx_enable_wakeup(struct imx_port *sport, bool on)
2322{
2323 unsigned int val;
2324
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002325 val = imx_uart_readl(sport, UCR3);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002326 if (on) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002327 imx_uart_writel(sport, USR1_AWAKE, USR1);
Eduardo Valentin189550b2015-08-11 10:21:21 -07002328 val |= UCR3_AWAKEN;
Martin Kaiser09df0b32018-01-05 17:46:43 +01002329 }
Eduardo Valentin189550b2015-08-11 10:21:21 -07002330 else
2331 val &= ~UCR3_AWAKEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002332 imx_uart_writel(sport, val, UCR3);
Eduardo Valentinbc857342015-08-11 10:21:22 -07002333
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002334 if (sport->have_rtscts) {
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002335 val = imx_uart_readl(sport, UCR1);
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002336 if (on)
2337 val |= UCR1_RTSDEN;
2338 else
2339 val &= ~UCR1_RTSDEN;
Uwe Kleine-König27c84422018-03-02 11:07:19 +01002340 imx_uart_writel(sport, val, UCR1);
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002341 }
Eduardo Valentin189550b2015-08-11 10:21:21 -07002342}
2343
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002344static int imx_serial_port_suspend_noirq(struct device *dev)
2345{
2346 struct platform_device *pdev = to_platform_device(dev);
2347 struct imx_port *sport = platform_get_drvdata(pdev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002348
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002349 serial_imx_save_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002350
2351 clk_disable(sport->clk_ipg);
2352
2353 return 0;
2354}
2355
2356static int imx_serial_port_resume_noirq(struct device *dev)
2357{
2358 struct platform_device *pdev = to_platform_device(dev);
2359 struct imx_port *sport = platform_get_drvdata(pdev);
2360 int ret;
2361
2362 ret = clk_enable(sport->clk_ipg);
2363 if (ret)
2364 return ret;
2365
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002366 serial_imx_restore_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002367
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002368 return 0;
2369}
2370
2371static int imx_serial_port_suspend(struct device *dev)
2372{
2373 struct platform_device *pdev = to_platform_device(dev);
2374 struct imx_port *sport = platform_get_drvdata(pdev);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002375 int ret;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002376
2377 uart_suspend_port(&imx_reg, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002378 disable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002379
Martin Kaiser09df0b32018-01-05 17:46:43 +01002380 ret = clk_prepare_enable(sport->clk_ipg);
2381 if (ret)
2382 return ret;
2383
2384 /* enable wakeup from i.MX UART */
2385 serial_imx_enable_wakeup(sport, true);
2386
2387 return 0;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002388}
2389
2390static int imx_serial_port_resume(struct device *dev)
2391{
2392 struct platform_device *pdev = to_platform_device(dev);
2393 struct imx_port *sport = platform_get_drvdata(pdev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002394
2395 /* disable wakeup from i.MX UART */
Eduardo Valentin189550b2015-08-11 10:21:21 -07002396 serial_imx_enable_wakeup(sport, false);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002397
2398 uart_resume_port(&imx_reg, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002399 enable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002400
Martin Kaiser09df0b32018-01-05 17:46:43 +01002401 clk_disable_unprepare(sport->clk_ipg);
Martin Fuzzey29add682016-01-05 16:53:31 +01002402
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002403 return 0;
2404}
2405
Philipp Zabel94be6d72017-11-01 13:51:41 +01002406static int imx_serial_port_freeze(struct device *dev)
2407{
2408 struct platform_device *pdev = to_platform_device(dev);
2409 struct imx_port *sport = platform_get_drvdata(pdev);
2410
2411 uart_suspend_port(&imx_reg, &sport->port);
2412
Martin Kaiser09df0b32018-01-05 17:46:43 +01002413 return clk_prepare_enable(sport->clk_ipg);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002414}
2415
2416static int imx_serial_port_thaw(struct device *dev)
2417{
2418 struct platform_device *pdev = to_platform_device(dev);
2419 struct imx_port *sport = platform_get_drvdata(pdev);
2420
2421 uart_resume_port(&imx_reg, &sport->port);
2422
Martin Kaiser09df0b32018-01-05 17:46:43 +01002423 clk_disable_unprepare(sport->clk_ipg);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002424
2425 return 0;
2426}
2427
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002428static const struct dev_pm_ops imx_serial_port_pm_ops = {
2429 .suspend_noirq = imx_serial_port_suspend_noirq,
2430 .resume_noirq = imx_serial_port_resume_noirq,
Philipp Zabel94be6d72017-11-01 13:51:41 +01002431 .freeze_noirq = imx_serial_port_suspend_noirq,
2432 .restore_noirq = imx_serial_port_resume_noirq,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002433 .suspend = imx_serial_port_suspend,
2434 .resume = imx_serial_port_resume,
Philipp Zabel94be6d72017-11-01 13:51:41 +01002435 .freeze = imx_serial_port_freeze,
2436 .thaw = imx_serial_port_thaw,
2437 .restore = imx_serial_port_thaw,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002438};
2439
Russell King3ae5eae2005-11-09 22:32:44 +00002440static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01002441 .probe = serial_imx_probe,
2442 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Shawn Guofe6b5402011-06-25 02:04:33 +08002444 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00002445 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01002446 .name = "imx-uart",
Shawn Guo22698aa2011-06-25 02:04:34 +08002447 .of_match_table = imx_uart_dt_ids,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002448 .pm = &imx_serial_port_pm_ops,
Russell King3ae5eae2005-11-09 22:32:44 +00002449 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450};
2451
2452static int __init imx_serial_init(void)
2453{
Fabio Estevamf0fd1b72014-10-27 14:49:40 -02002454 int ret = uart_register_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 if (ret)
2457 return ret;
2458
Russell King3ae5eae2005-11-09 22:32:44 +00002459 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 if (ret != 0)
2461 uart_unregister_driver(&imx_reg);
2462
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01002463 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
2465
2466static void __exit imx_serial_exit(void)
2467{
Russell Kingc889b892005-11-21 17:05:21 +00002468 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01002469 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
2472module_init(imx_serial_init);
2473module_exit(imx_serial_exit);
2474
2475MODULE_AUTHOR("Sascha Hauer");
2476MODULE_DESCRIPTION("IMX generic serial port driver");
2477MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07002478MODULE_ALIAS("platform:imx-uart");