blob: e4b3d9123a03312b3985e8f1db7840e13e6a38e3 [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 */
74#define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
75#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 */
79#define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
80#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
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800207 /* DMA fields */
208 unsigned int dma_is_inited:1;
209 unsigned int dma_is_enabled:1;
210 unsigned int dma_is_rxing:1;
211 unsigned int dma_is_txing:1;
212 struct dma_chan *dma_chan_rx, *dma_chan_tx;
213 struct scatterlist rx_sgl, tx_sgl[2];
214 void *rx_buf;
Nandor Han9d297232016-08-08 15:38:27 +0300215 struct circ_buf rx_ring;
216 unsigned int rx_periods;
217 dma_cookie_t rx_cookie;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800218 unsigned int tx_bytes;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800219 unsigned int dma_tx_nents;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -0500220 unsigned int saved_reg[10];
Eduardo Valentinc868cbb2015-08-11 10:21:23 -0700221 bool context_saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223
Dirk Behme0ad5a812011-12-22 09:57:52 +0100224struct imx_port_ucrs {
225 unsigned int ucr1;
226 unsigned int ucr2;
227 unsigned int ucr3;
228};
229
Shawn Guofe6b5402011-06-25 02:04:33 +0800230static struct imx_uart_data imx_uart_devdata[] = {
231 [IMX1_UART] = {
232 .uts_reg = IMX1_UTS,
233 .devtype = IMX1_UART,
234 },
235 [IMX21_UART] = {
236 .uts_reg = IMX21_UTS,
237 .devtype = IMX21_UART,
238 },
Martyn Welch1c06bde62016-09-01 11:30:46 +0200239 [IMX53_UART] = {
240 .uts_reg = IMX21_UTS,
241 .devtype = IMX53_UART,
242 },
Huang Shijiea496e622013-07-08 17:14:17 +0800243 [IMX6Q_UART] = {
244 .uts_reg = IMX21_UTS,
245 .devtype = IMX6Q_UART,
246 },
Shawn Guofe6b5402011-06-25 02:04:33 +0800247};
248
Krzysztof Kozlowski31ada042015-05-02 00:40:02 +0900249static const struct platform_device_id imx_uart_devtype[] = {
Shawn Guofe6b5402011-06-25 02:04:33 +0800250 {
251 .name = "imx1-uart",
252 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
253 }, {
254 .name = "imx21-uart",
255 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
256 }, {
Martyn Welch1c06bde62016-09-01 11:30:46 +0200257 .name = "imx53-uart",
258 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX53_UART],
259 }, {
Huang Shijiea496e622013-07-08 17:14:17 +0800260 .name = "imx6q-uart",
261 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX6Q_UART],
262 }, {
Shawn Guofe6b5402011-06-25 02:04:33 +0800263 /* sentinel */
264 }
265};
266MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
267
Sanjeev Sharmaad3d4fd2015-02-03 16:16:06 +0530268static const struct of_device_id imx_uart_dt_ids[] = {
Huang Shijiea496e622013-07-08 17:14:17 +0800269 { .compatible = "fsl,imx6q-uart", .data = &imx_uart_devdata[IMX6Q_UART], },
Martyn Welch1c06bde62016-09-01 11:30:46 +0200270 { .compatible = "fsl,imx53-uart", .data = &imx_uart_devdata[IMX53_UART], },
Shawn Guo22698aa2011-06-25 02:04:34 +0800271 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
272 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
273 { /* sentinel */ }
274};
275MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
276
Shawn Guofe6b5402011-06-25 02:04:33 +0800277static inline unsigned uts_reg(struct imx_port *sport)
278{
279 return sport->devdata->uts_reg;
280}
281
282static inline int is_imx1_uart(struct imx_port *sport)
283{
284 return sport->devdata->devtype == IMX1_UART;
285}
286
287static inline int is_imx21_uart(struct imx_port *sport)
288{
289 return sport->devdata->devtype == IMX21_UART;
290}
291
Martyn Welch1c06bde62016-09-01 11:30:46 +0200292static inline int is_imx53_uart(struct imx_port *sport)
293{
294 return sport->devdata->devtype == IMX53_UART;
295}
296
Huang Shijiea496e622013-07-08 17:14:17 +0800297static inline int is_imx6q_uart(struct imx_port *sport)
298{
299 return sport->devdata->devtype == IMX6Q_UART;
300}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200302 * Save and restore functions for UCR1, UCR2 and UCR3 registers
303 */
Fabio Estevam93d94b32014-11-12 15:55:07 -0200304#if defined(CONFIG_SERIAL_IMX_CONSOLE)
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200305static void imx_port_ucrs_save(struct uart_port *port,
306 struct imx_port_ucrs *ucr)
307{
308 /* save control registers */
309 ucr->ucr1 = readl(port->membase + UCR1);
310 ucr->ucr2 = readl(port->membase + UCR2);
311 ucr->ucr3 = readl(port->membase + UCR3);
312}
313
314static void imx_port_ucrs_restore(struct uart_port *port,
315 struct imx_port_ucrs *ucr)
316{
317 /* restore control registers */
318 writel(ucr->ucr1, port->membase + UCR1);
319 writel(ucr->ucr2, port->membase + UCR2);
320 writel(ucr->ucr3, port->membase + UCR3);
321}
Fabio Estevame8bfa762013-06-05 00:58:46 -0300322#endif
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200323
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100324static void imx_port_rts_active(struct imx_port *sport, unsigned long *ucr2)
325{
Fabio Estevambc2be232017-01-30 09:12:12 -0200326 *ucr2 &= ~(UCR2_CTSC | UCR2_CTS);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100327
Ian Jamisona0983c72017-09-21 10:13:12 +0200328 sport->port.mctrl |= TIOCM_RTS;
329 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100330}
331
332static void imx_port_rts_inactive(struct imx_port *sport, unsigned long *ucr2)
333{
Fabio Estevambc2be232017-01-30 09:12:12 -0200334 *ucr2 &= ~UCR2_CTSC;
335 *ucr2 |= UCR2_CTS;
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100336
Ian Jamisona0983c72017-09-21 10:13:12 +0200337 sport->port.mctrl &= ~TIOCM_RTS;
338 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100339}
340
341static void imx_port_rts_auto(struct imx_port *sport, unsigned long *ucr2)
342{
343 *ucr2 |= UCR2_CTSC;
344}
345
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200346/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * interrupts disabled on entry
348 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100349static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100352 unsigned long temp;
353
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700354 /*
355 * We are maybe in the SMP context, so if the DMA TX thread is running
356 * on other cpu, we have to wait for it to finish.
357 */
358 if (sport->dma_is_enabled && sport->dma_is_txing)
359 return;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800360
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100361 temp = readl(port->membase + UCR1);
362 writel(temp & ~UCR1_TXMPTYEN, port->membase + UCR1);
363
364 /* in rs485 mode disable transmitter if shifter is empty */
365 if (port->rs485.flags & SER_RS485_ENABLED &&
366 readl(port->membase + USR2) & USR2_TXDC) {
367 temp = readl(port->membase + UCR2);
368 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100369 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -0200370 else
371 imx_port_rts_inactive(sport, &temp);
Baruch Siach7d1cadc2016-02-29 14:34:10 +0200372 temp |= UCR2_RXEN;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100373 writel(temp, port->membase + UCR2);
374
375 temp = readl(port->membase + UCR4);
376 temp &= ~UCR4_TCEN;
377 writel(temp, port->membase + UCR4);
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
381/*
382 * interrupts disabled on entry
383 */
384static void imx_stop_rx(struct uart_port *port)
385{
386 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100387 unsigned long temp;
388
Huang Shijie45564a62014-09-19 15:33:12 +0800389 if (sport->dma_is_enabled && sport->dma_is_rxing) {
390 if (sport->port.suspended) {
391 dmaengine_terminate_all(sport->dma_chan_rx);
392 sport->dma_is_rxing = 0;
393 } else {
394 return;
395 }
396 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800397
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100398 temp = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +0530399 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2);
Huang Shijie85878392014-05-23 12:32:54 +0800400
401 /* disable the `Receiver Ready Interrrupt` */
402 temp = readl(sport->port.membase + UCR1);
403 writel(temp & ~UCR1_RRDYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406/*
407 * Set the modem control timer to fire immediately.
408 */
409static void imx_enable_ms(struct uart_port *port)
410{
411 struct imx_port *sport = (struct imx_port *)port;
412
413 mod_timer(&sport->timer, jiffies);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100414
415 mctrl_gpio_enable_ms(sport->gpios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Jiada Wang91a1a902014-12-09 18:11:36 +0900418static void imx_dma_tx(struct imx_port *sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static inline void imx_transmit_buffer(struct imx_port *sport)
420{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700421 struct circ_buf *xmit = &sport->port.state->xmit;
Jiada Wang91a1a902014-12-09 18:11:36 +0900422 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400424 if (sport->port.x_char) {
425 /* Send next char */
426 writel(sport->port.x_char, sport->port.membase + URTX0);
Jiada Wang7e2fb5a2014-12-09 18:11:35 +0900427 sport->port.icount.tx++;
428 sport->port.x_char = 0;
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400429 return;
430 }
431
432 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
433 imx_stop_tx(&sport->port);
434 return;
435 }
436
Jiada Wang91a1a902014-12-09 18:11:36 +0900437 if (sport->dma_is_enabled) {
438 /*
439 * We've just sent a X-char Ensure the TX DMA is enabled
440 * and the TX IRQ is disabled.
441 **/
442 temp = readl(sport->port.membase + UCR1);
443 temp &= ~UCR1_TXMPTYEN;
444 if (sport->dma_is_txing) {
445 temp |= UCR1_TDMAEN;
446 writel(temp, sport->port.membase + UCR1);
447 } else {
448 writel(temp, sport->port.membase + UCR1);
449 imx_dma_tx(sport);
450 }
451 }
452
Ian Jamison5aabd3b2017-08-28 09:02:29 +0100453 if (sport->dma_is_txing)
454 return;
455
456 while (!uart_circ_empty(xmit) &&
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400457 !(readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* send xmit->buf[xmit->tail]
459 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100460 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100461 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Fabian Godehardt977757312009-06-11 14:37:19 +0100465 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
466 uart_write_wakeup(&sport->port);
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100469 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800472static void dma_tx_callback(void *data)
473{
474 struct imx_port *sport = data;
475 struct scatterlist *sgl = &sport->tx_sgl[0];
476 struct circ_buf *xmit = &sport->port.state->xmit;
477 unsigned long flags;
Dirk Behmea2c718c2014-12-09 18:11:31 +0900478 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800479
Dirk Behme42f752b2014-12-09 18:11:28 +0900480 spin_lock_irqsave(&sport->port.lock, flags);
481
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800482 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
483
Dirk Behmea2c718c2014-12-09 18:11:31 +0900484 temp = readl(sport->port.membase + UCR1);
485 temp &= ~UCR1_TDMAEN;
486 writel(temp, sport->port.membase + UCR1);
487
Dirk Behme42f752b2014-12-09 18:11:28 +0900488 /* update the stat */
489 xmit->tail = (xmit->tail + sport->tx_bytes) & (UART_XMIT_SIZE - 1);
490 sport->port.icount.tx += sport->tx_bytes;
491
492 dev_dbg(sport->port.dev, "we finish the TX DMA.\n");
493
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800494 sport->dma_is_txing = 0;
495
Jiada Wangd64b8602014-12-09 18:11:29 +0900496 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
497 uart_write_wakeup(&sport->port);
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700498
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900499 if (!uart_circ_empty(xmit) && !uart_tx_stopped(&sport->port))
500 imx_dma_tx(sport);
Uwe Kleine-König64432a82017-07-18 14:01:52 +0200501
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900502 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800503}
504
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800505static void imx_dma_tx(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800506{
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800507 struct circ_buf *xmit = &sport->port.state->xmit;
508 struct scatterlist *sgl = sport->tx_sgl;
509 struct dma_async_tx_descriptor *desc;
510 struct dma_chan *chan = sport->dma_chan_tx;
511 struct device *dev = sport->port.dev;
Dirk Behmea2c718c2014-12-09 18:11:31 +0900512 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800513 int ret;
514
Dirk Behme42f752b2014-12-09 18:11:28 +0900515 if (sport->dma_is_txing)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800516 return;
517
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800518 sport->tx_bytes = uart_circ_chars_pending(xmit);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800519
Dirk Behme7942f852014-12-09 18:11:25 +0900520 if (xmit->tail < xmit->head) {
521 sport->dma_tx_nents = 1;
522 sg_init_one(sgl, xmit->buf + xmit->tail, sport->tx_bytes);
523 } else {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800524 sport->dma_tx_nents = 2;
525 sg_init_table(sgl, 2);
526 sg_set_buf(sgl, xmit->buf + xmit->tail,
527 UART_XMIT_SIZE - xmit->tail);
528 sg_set_buf(sgl + 1, xmit->buf, xmit->head);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800529 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800530
531 ret = dma_map_sg(dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
532 if (ret == 0) {
533 dev_err(dev, "DMA mapping error for TX.\n");
534 return;
535 }
536 desc = dmaengine_prep_slave_sg(chan, sgl, sport->dma_tx_nents,
537 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT);
538 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +0900539 dma_unmap_sg(dev, sgl, sport->dma_tx_nents,
540 DMA_TO_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800541 dev_err(dev, "We cannot prepare for the TX slave dma!\n");
542 return;
543 }
544 desc->callback = dma_tx_callback;
545 desc->callback_param = sport;
546
547 dev_dbg(dev, "TX: prepare to send %lu bytes by DMA.\n",
548 uart_circ_chars_pending(xmit));
Dirk Behmea2c718c2014-12-09 18:11:31 +0900549
550 temp = readl(sport->port.membase + UCR1);
551 temp |= UCR1_TDMAEN;
552 writel(temp, sport->port.membase + UCR1);
553
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800554 /* fire it */
555 sport->dma_is_txing = 1;
556 dmaengine_submit(desc);
557 dma_async_issue_pending(chan);
558 return;
559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561/*
562 * interrupts disabled on entry
563 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100564static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100567 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100569 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100570 temp = readl(port->membase + UCR2);
571 if (port->rs485.flags & SER_RS485_RTS_ON_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100572 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -0200573 else
574 imx_port_rts_inactive(sport, &temp);
Baruch Siach7d1cadc2016-02-29 14:34:10 +0200575 if (!(port->rs485.flags & SER_RS485_RX_DURING_TX))
576 temp &= ~UCR2_RXEN;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100577 writel(temp, port->membase + UCR2);
578
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100579 /* enable transmitter and shifter empty irq */
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100580 temp = readl(port->membase + UCR4);
581 temp |= UCR4_TCEN;
582 writel(temp, port->membase + UCR4);
583 }
584
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800585 if (!sport->dma_is_enabled) {
586 temp = readl(sport->port.membase + UCR1);
587 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800590 if (sport->dma_is_enabled) {
Jiada Wang91a1a902014-12-09 18:11:36 +0900591 if (sport->port.x_char) {
592 /* We have X-char to send, so enable TX IRQ and
593 * disable TX DMA to let TX interrupt to send X-char */
594 temp = readl(sport->port.membase + UCR1);
595 temp &= ~UCR1_TDMAEN;
596 temp |= UCR1_TXMPTYEN;
597 writel(temp, sport->port.membase + UCR1);
598 return;
599 }
600
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400601 if (!uart_circ_empty(&port->state->xmit) &&
602 !uart_tx_stopped(port))
603 imx_dma_tx(sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800604 return;
605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
David Howells7d12e782006-10-05 14:55:46 +0100608static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100609{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800610 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200611 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100612 unsigned long flags;
613
614 spin_lock_irqsave(&sport->port.lock, flags);
615
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100616 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200617 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100618 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700619 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100620
621 spin_unlock_irqrestore(&sport->port.lock, flags);
622 return IRQ_HANDLED;
623}
624
David Howells7d12e782006-10-05 14:55:46 +0100625static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800627 struct imx_port *sport = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 unsigned long flags;
629
Sachin Kamat82313e62013-01-07 10:25:02 +0530630 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 imx_transmit_buffer(sport);
Sachin Kamat82313e62013-01-07 10:25:02 +0530632 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return IRQ_HANDLED;
634}
635
David Howells7d12e782006-10-05 14:55:46 +0100636static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530639 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100640 struct tty_port *port = &sport->port.state->port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100641 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Sachin Kamat82313e62013-01-07 10:25:02 +0530643 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100645 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 flg = TTY_NORMAL;
647 sport->port.icount.rx++;
648
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100649 rx = readl(sport->port.membase + URXD0);
650
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100651 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100652 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100653 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100654 if (uart_handle_break(&sport->port))
655 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100658 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100659 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Hui Wang019dc9e2011-08-24 17:41:47 +0800661 if (unlikely(rx & URXD_ERR)) {
662 if (rx & URXD_BRK)
663 sport->port.icount.brk++;
664 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100665 sport->port.icount.parity++;
666 else if (rx & URXD_FRMERR)
667 sport->port.icount.frame++;
668 if (rx & URXD_OVRRUN)
669 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Sascha Hauer864eeed2008-04-17 08:39:22 +0100671 if (rx & sport->port.ignore_status_mask) {
672 if (++ignored > 100)
673 goto out;
674 continue;
675 }
676
Eric Nelson8d267fd2014-12-18 12:37:13 -0700677 rx &= (sport->port.read_status_mask | 0xFF);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100678
Hui Wang019dc9e2011-08-24 17:41:47 +0800679 if (rx & URXD_BRK)
680 flg = TTY_BREAK;
681 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100682 flg = TTY_PARITY;
683 else if (rx & URXD_FRMERR)
684 flg = TTY_FRAME;
685 if (rx & URXD_OVRRUN)
686 flg = TTY_OVERRUN;
687
688#ifdef SUPPORT_SYSRQ
689 sport->port.sysrq = 0;
690#endif
691 }
692
Jiada Wang55d86932014-12-09 18:11:22 +0900693 if (sport->port.ignore_status_mask & URXD_DUMMY_READ)
694 goto out;
695
Manfred Schlaegl9b289932015-06-20 19:25:35 +0200696 if (tty_insert_flip_char(port, rx, flg) == 0)
697 sport->port.icount.buf_overrun++;
Sascha Hauer864eeed2008-04-17 08:39:22 +0100698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530701 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100702 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
Peter Senna Tschudin18a42082017-04-07 11:45:24 +0200706static void imx_disable_rx_int(struct imx_port *sport)
707{
708 unsigned long temp;
709
Peter Senna Tschudin18a42082017-04-07 11:45:24 +0200710 /* disable the receiver ready and aging timer interrupts */
711 temp = readl(sport->port.membase + UCR1);
712 temp &= ~(UCR1_RRDYEN);
713 writel(temp, sport->port.membase + UCR1);
714
715 temp = readl(sport->port.membase + UCR2);
716 temp &= ~(UCR2_ATEN);
717 writel(temp, sport->port.membase + UCR2);
718
719 /* disable the rx errors interrupts */
720 temp = readl(sport->port.membase + UCR4);
721 temp &= ~UCR4_OREN;
722 writel(temp, sport->port.membase + UCR4);
723}
724
Nandor Han41d98b52016-08-08 15:38:28 +0300725static void clear_rx_errors(struct imx_port *sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800726
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100727/*
728 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
729 */
730static unsigned int imx_get_hwmctrl(struct imx_port *sport)
731{
732 unsigned int tmp = TIOCM_DSR;
733 unsigned usr1 = readl(sport->port.membase + USR1);
Sascha Hauer4b75f802016-09-26 15:55:31 +0200734 unsigned usr2 = readl(sport->port.membase + USR2);
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100735
736 if (usr1 & USR1_RTSS)
737 tmp |= TIOCM_CTS;
738
739 /* in DCE mode DCDIN is always 0 */
Sascha Hauer4b75f802016-09-26 15:55:31 +0200740 if (!(usr2 & USR2_DCDIN))
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100741 tmp |= TIOCM_CAR;
742
743 if (sport->dte_mode)
744 if (!(readl(sport->port.membase + USR2) & USR2_RIIN))
745 tmp |= TIOCM_RI;
746
747 return tmp;
748}
749
750/*
751 * Handle any change of modem status signal since we were last called.
752 */
753static void imx_mctrl_check(struct imx_port *sport)
754{
755 unsigned int status, changed;
756
757 status = imx_get_hwmctrl(sport);
758 changed = status ^ sport->old_status;
759
760 if (changed == 0)
761 return;
762
763 sport->old_status = status;
764
765 if (changed & TIOCM_RI && status & TIOCM_RI)
766 sport->port.icount.rng++;
767 if (changed & TIOCM_DSR)
768 sport->port.icount.dsr++;
769 if (changed & TIOCM_CAR)
770 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
771 if (changed & TIOCM_CTS)
772 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
773
774 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
775}
776
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200777static irqreturn_t imx_int(int irq, void *dev_id)
778{
779 struct imx_port *sport = dev_id;
780 unsigned int sts;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200781 unsigned int sts2;
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100782 irqreturn_t ret = IRQ_NONE;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200783
784 sts = readl(sport->port.membase + USR1);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100785 sts2 = readl(sport->port.membase + USR2);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200786
Troy Kisky9ce99a32017-10-20 14:20:20 -0700787 if (!sport->dma_is_enabled && (sts & (USR1_RRDY | USR1_AGTIM))) {
788 imx_rxint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100789 ret = IRQ_HANDLED;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800790 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200791
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100792 if ((sts & USR1_TRDY &&
793 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN) ||
794 (sts2 & USR2_TXDC &&
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100795 readl(sport->port.membase + UCR4) & UCR4_TCEN)) {
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200796 imx_txint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100797 ret = IRQ_HANDLED;
798 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200799
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100800 if (sts & USR1_DTRD) {
801 unsigned long flags;
802
803 if (sts & USR1_DTRD)
804 writel(USR1_DTRD, sport->port.membase + USR1);
805
806 spin_lock_irqsave(&sport->port.lock, flags);
807 imx_mctrl_check(sport);
808 spin_unlock_irqrestore(&sport->port.lock, flags);
809
810 ret = IRQ_HANDLED;
811 }
812
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100813 if (sts & USR1_RTSD) {
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200814 imx_rtsint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100815 ret = IRQ_HANDLED;
816 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200817
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100818 if (sts & USR1_AWAKE) {
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200819 writel(USR1_AWAKE, sport->port.membase + USR1);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100820 ret = IRQ_HANDLED;
821 }
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200822
Alexander Steinf1f836e2013-05-14 17:06:07 +0200823 if (sts2 & USR2_ORE) {
Alexander Steinf1f836e2013-05-14 17:06:07 +0200824 sport->port.icount.overrun++;
Uwe Kleine-König91555ce2015-02-24 11:17:05 +0100825 writel(USR2_ORE, sport->port.membase + USR2);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100826 ret = IRQ_HANDLED;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200827 }
828
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100829 return ret;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832/*
833 * Return TIOCSER_TEMT when transmitter is not busy.
834 */
835static unsigned int imx_tx_empty(struct uart_port *port)
836{
837 struct imx_port *sport = (struct imx_port *)port;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800838 unsigned int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Huang Shijie1ce43e52013-10-11 18:30:59 +0800840 ret = (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
841
842 /* If the TX DMA is working, return 0. */
843 if (sport->dma_is_enabled && sport->dma_is_txing)
844 ret = 0;
845
846 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100849static unsigned int imx_get_mctrl(struct uart_port *port)
850{
851 struct imx_port *sport = (struct imx_port *)port;
852 unsigned int ret = imx_get_hwmctrl(sport);
853
854 mctrl_gpio_get(sport->gpios, &ret);
855
856 return ret;
857}
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
860{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100861 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100862 unsigned long temp;
863
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100864 if (!(port->rs485.flags & SER_RS485_ENABLED)) {
865 temp = readl(sport->port.membase + UCR2);
866 temp &= ~(UCR2_CTS | UCR2_CTSC);
867 if (mctrl & TIOCM_RTS)
868 temp |= UCR2_CTS | UCR2_CTSC;
869 writel(temp, sport->port.membase + UCR2);
870 }
Huang Shijie6b471a92013-11-29 17:29:24 +0800871
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200872 temp = readl(sport->port.membase + UCR3) & ~UCR3_DSR;
873 if (!(mctrl & TIOCM_DTR))
874 temp |= UCR3_DSR;
875 writel(temp, sport->port.membase + UCR3);
876
Huang Shijie6b471a92013-11-29 17:29:24 +0800877 temp = readl(sport->port.membase + uts_reg(sport)) & ~UTS_LOOP;
878 if (mctrl & TIOCM_LOOP)
879 temp |= UTS_LOOP;
880 writel(temp, sport->port.membase + uts_reg(sport));
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100881
882 mctrl_gpio_set(sport->gpios, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885/*
886 * Interrupts always disabled.
887 */
888static void imx_break_ctl(struct uart_port *port, int break_state)
889{
890 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100891 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 spin_lock_irqsave(&sport->port.lock, flags);
894
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100895 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
896
Sachin Kamat82313e62013-01-07 10:25:02 +0530897 if (break_state != 0)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100898 temp |= UCR1_SNDBRK;
899
900 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 spin_unlock_irqrestore(&sport->port.lock, flags);
903}
904
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200905/*
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200906 * This is our per-port timeout handler, for checking the
907 * modem status signals.
908 */
Kees Cooke99e88a2017-10-16 14:43:17 -0700909static void imx_timeout(struct timer_list *t)
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200910{
Kees Cooke99e88a2017-10-16 14:43:17 -0700911 struct imx_port *sport = from_timer(sport, t, timer);
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200912 unsigned long flags;
913
914 if (sport->port.state) {
915 spin_lock_irqsave(&sport->port.lock, flags);
916 imx_mctrl_check(sport);
917 spin_unlock_irqrestore(&sport->port.lock, flags);
918
919 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
920 }
921}
922
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +0200923#define RX_BUF_SIZE (PAGE_SIZE)
924
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800925/*
Lucas Stach905c0de2015-09-04 17:52:41 +0200926 * There are two kinds of RX DMA interrupts(such as in the MX6Q):
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800927 * [1] the RX DMA buffer is full.
Lucas Stach905c0de2015-09-04 17:52:41 +0200928 * [2] the aging timer expires
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800929 *
Lucas Stach905c0de2015-09-04 17:52:41 +0200930 * Condition [2] is triggered when a character has been sitting in the FIFO
931 * for at least 8 byte durations.
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800932 */
933static void dma_rx_callback(void *data)
934{
935 struct imx_port *sport = data;
936 struct dma_chan *chan = sport->dma_chan_rx;
937 struct scatterlist *sgl = &sport->rx_sgl;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800938 struct tty_port *port = &sport->port.state->port;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800939 struct dma_tx_state state;
Nandor Han9d297232016-08-08 15:38:27 +0300940 struct circ_buf *rx_ring = &sport->rx_ring;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800941 enum dma_status status;
Nandor Han9d297232016-08-08 15:38:27 +0300942 unsigned int w_bytes = 0;
943 unsigned int r_bytes;
944 unsigned int bd_size;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800945
Huang Shijief0ef8832013-10-11 18:31:01 +0800946 status = dmaengine_tx_status(chan, (dma_cookie_t)0, &state);
Philipp Zabel392bceed2015-05-19 10:54:09 +0200947
Nandor Han9d297232016-08-08 15:38:27 +0300948 if (status == DMA_ERROR) {
949 dev_err(sport->port.dev, "DMA transaction error.\n");
Nandor Han41d98b52016-08-08 15:38:28 +0300950 clear_rx_errors(sport);
Nandor Han9d297232016-08-08 15:38:27 +0300951 return;
Robin Gongee5e7c12014-12-09 18:11:33 +0900952 }
Lucas Stach976b39c2015-09-04 17:52:39 +0200953
Nandor Han9d297232016-08-08 15:38:27 +0300954 if (!(sport->port.ignore_status_mask & URXD_DUMMY_READ)) {
955
956 /*
957 * The state-residue variable represents the empty space
958 * relative to the entire buffer. Taking this in consideration
959 * the head is always calculated base on the buffer total
960 * length - DMA transaction residue. The UART script from the
961 * SDMA firmware will jump to the next buffer descriptor,
962 * once a DMA transaction if finalized (IMX53 RM - A.4.1.2.4).
963 * Taking this in consideration the tail is always at the
964 * beginning of the buffer descriptor that contains the head.
965 */
966
967 /* Calculate the head */
968 rx_ring->head = sg_dma_len(sgl) - state.residue;
969
970 /* Calculate the tail. */
971 bd_size = sg_dma_len(sgl) / sport->rx_periods;
972 rx_ring->tail = ((rx_ring->head-1) / bd_size) * bd_size;
973
974 if (rx_ring->head <= sg_dma_len(sgl) &&
975 rx_ring->head > rx_ring->tail) {
976
977 /* Move data from tail to head */
978 r_bytes = rx_ring->head - rx_ring->tail;
979
980 /* CPU claims ownership of RX DMA buffer */
981 dma_sync_sg_for_cpu(sport->port.dev, sgl, 1,
982 DMA_FROM_DEVICE);
983
984 w_bytes = tty_insert_flip_string(port,
985 sport->rx_buf + rx_ring->tail, r_bytes);
986
987 /* UART retrieves ownership of RX DMA buffer */
988 dma_sync_sg_for_device(sport->port.dev, sgl, 1,
989 DMA_FROM_DEVICE);
990
991 if (w_bytes != r_bytes)
992 sport->port.icount.buf_overrun++;
993
994 sport->port.icount.rx += w_bytes;
995 } else {
996 WARN_ON(rx_ring->head > sg_dma_len(sgl));
997 WARN_ON(rx_ring->head <= rx_ring->tail);
998 }
999 }
1000
1001 if (w_bytes) {
1002 tty_flip_buffer_push(port);
1003 dev_dbg(sport->port.dev, "We get %d bytes.\n", w_bytes);
1004 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001005}
1006
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001007/* RX DMA buffer periods */
1008#define RX_DMA_PERIODS 4
1009
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001010static int start_rx_dma(struct imx_port *sport)
1011{
1012 struct scatterlist *sgl = &sport->rx_sgl;
1013 struct dma_chan *chan = sport->dma_chan_rx;
1014 struct device *dev = sport->port.dev;
1015 struct dma_async_tx_descriptor *desc;
1016 int ret;
1017
Nandor Han9d297232016-08-08 15:38:27 +03001018 sport->rx_ring.head = 0;
1019 sport->rx_ring.tail = 0;
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001020 sport->rx_periods = RX_DMA_PERIODS;
Nandor Han9d297232016-08-08 15:38:27 +03001021
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001022 sg_init_one(sgl, sport->rx_buf, RX_BUF_SIZE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001023 ret = dma_map_sg(dev, sgl, 1, DMA_FROM_DEVICE);
1024 if (ret == 0) {
1025 dev_err(dev, "DMA mapping error for RX.\n");
1026 return -EINVAL;
1027 }
Nandor Han9d297232016-08-08 15:38:27 +03001028
1029 desc = dmaengine_prep_dma_cyclic(chan, sg_dma_address(sgl),
1030 sg_dma_len(sgl), sg_dma_len(sgl) / sport->rx_periods,
1031 DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT);
1032
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001033 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +09001034 dma_unmap_sg(dev, sgl, 1, DMA_FROM_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001035 dev_err(dev, "We cannot prepare for the RX slave dma!\n");
1036 return -EINVAL;
1037 }
1038 desc->callback = dma_rx_callback;
1039 desc->callback_param = sport;
1040
1041 dev_dbg(dev, "RX: prepare for the DMA.\n");
Romain Perier4139fd72017-09-28 11:03:49 +01001042 sport->dma_is_rxing = 1;
Nandor Han9d297232016-08-08 15:38:27 +03001043 sport->rx_cookie = dmaengine_submit(desc);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001044 dma_async_issue_pending(chan);
1045 return 0;
1046}
1047
Nandor Han41d98b52016-08-08 15:38:28 +03001048static void clear_rx_errors(struct imx_port *sport)
1049{
1050 unsigned int status_usr1, status_usr2;
1051
1052 status_usr1 = readl(sport->port.membase + USR1);
1053 status_usr2 = readl(sport->port.membase + USR2);
1054
1055 if (status_usr2 & USR2_BRCD) {
1056 sport->port.icount.brk++;
1057 writel(USR2_BRCD, sport->port.membase + USR2);
1058 } else if (status_usr1 & USR1_FRAMERR) {
1059 sport->port.icount.frame++;
1060 writel(USR1_FRAMERR, sport->port.membase + USR1);
1061 } else if (status_usr1 & USR1_PARITYERR) {
1062 sport->port.icount.parity++;
1063 writel(USR1_PARITYERR, sport->port.membase + USR1);
1064 }
1065
1066 if (status_usr2 & USR2_ORE) {
1067 sport->port.icount.overrun++;
1068 writel(USR2_ORE, sport->port.membase + USR2);
1069 }
1070
1071}
1072
Lucas Stachcc323822015-09-04 17:52:37 +02001073#define TXTL_DEFAULT 2 /* reset default */
1074#define RXTL_DEFAULT 1 /* reset default */
Lucas Stach184bd702015-09-04 17:52:40 +02001075#define TXTL_DMA 8 /* DMA burst setting */
1076#define RXTL_DMA 9 /* DMA burst setting */
Lucas Stachcc323822015-09-04 17:52:37 +02001077
1078static void imx_setup_ufcr(struct imx_port *sport,
1079 unsigned char txwl, unsigned char rxwl)
1080{
1081 unsigned int val;
1082
1083 /* set receiver / transmitter trigger level */
1084 val = readl(sport->port.membase + UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
1085 val |= txwl << UFCR_TXTL_SHF | rxwl;
1086 writel(val, sport->port.membase + UFCR);
1087}
1088
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001089static void imx_uart_dma_exit(struct imx_port *sport)
1090{
1091 if (sport->dma_chan_rx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001092 dmaengine_terminate_sync(sport->dma_chan_rx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001093 dma_release_channel(sport->dma_chan_rx);
1094 sport->dma_chan_rx = NULL;
Nandor Han9d297232016-08-08 15:38:27 +03001095 sport->rx_cookie = -EINVAL;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001096 kfree(sport->rx_buf);
1097 sport->rx_buf = NULL;
1098 }
1099
1100 if (sport->dma_chan_tx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001101 dmaengine_terminate_sync(sport->dma_chan_tx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001102 dma_release_channel(sport->dma_chan_tx);
1103 sport->dma_chan_tx = NULL;
1104 }
1105
1106 sport->dma_is_inited = 0;
1107}
1108
1109static int imx_uart_dma_init(struct imx_port *sport)
1110{
Huang Shijieb09c74a2013-08-29 16:29:25 +08001111 struct dma_slave_config slave_config = {};
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001112 struct device *dev = sport->port.dev;
1113 int ret;
1114
1115 /* Prepare for RX : */
1116 sport->dma_chan_rx = dma_request_slave_channel(dev, "rx");
1117 if (!sport->dma_chan_rx) {
1118 dev_dbg(dev, "cannot get the DMA channel.\n");
1119 ret = -EINVAL;
1120 goto err;
1121 }
1122
1123 slave_config.direction = DMA_DEV_TO_MEM;
1124 slave_config.src_addr = sport->port.mapbase + URXD0;
1125 slave_config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001126 /* one byte less than the watermark level to enable the aging timer */
1127 slave_config.src_maxburst = RXTL_DMA - 1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001128 ret = dmaengine_slave_config(sport->dma_chan_rx, &slave_config);
1129 if (ret) {
1130 dev_err(dev, "error in RX dma configuration.\n");
1131 goto err;
1132 }
1133
Martyn Welchf654b23c2017-09-28 11:07:40 +01001134 sport->rx_buf = kzalloc(RX_BUF_SIZE, GFP_KERNEL);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001135 if (!sport->rx_buf) {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001136 ret = -ENOMEM;
1137 goto err;
1138 }
Nandor Han9d297232016-08-08 15:38:27 +03001139 sport->rx_ring.buf = sport->rx_buf;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001140
1141 /* Prepare for TX : */
1142 sport->dma_chan_tx = dma_request_slave_channel(dev, "tx");
1143 if (!sport->dma_chan_tx) {
1144 dev_err(dev, "cannot get the TX DMA channel!\n");
1145 ret = -EINVAL;
1146 goto err;
1147 }
1148
1149 slave_config.direction = DMA_MEM_TO_DEV;
1150 slave_config.dst_addr = sport->port.mapbase + URTX0;
1151 slave_config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001152 slave_config.dst_maxburst = TXTL_DMA;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001153 ret = dmaengine_slave_config(sport->dma_chan_tx, &slave_config);
1154 if (ret) {
1155 dev_err(dev, "error in TX dma configuration.");
1156 goto err;
1157 }
1158
1159 sport->dma_is_inited = 1;
1160
1161 return 0;
1162err:
1163 imx_uart_dma_exit(sport);
1164 return ret;
1165}
1166
1167static void imx_enable_dma(struct imx_port *sport)
1168{
1169 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001170
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001171 /* set UCR1 */
1172 temp = readl(sport->port.membase + UCR1);
Lucas Stach905c0de2015-09-04 17:52:41 +02001173 temp |= UCR1_RDMAEN | UCR1_TDMAEN | UCR1_ATDMAEN;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001174 writel(temp, sport->port.membase + UCR1);
1175
Lucas Stach184bd702015-09-04 17:52:40 +02001176 imx_setup_ufcr(sport, TXTL_DMA, RXTL_DMA);
1177
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001178 sport->dma_is_enabled = 1;
1179}
1180
1181static void imx_disable_dma(struct imx_port *sport)
1182{
1183 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001184
1185 /* clear UCR1 */
1186 temp = readl(sport->port.membase + UCR1);
1187 temp &= ~(UCR1_RDMAEN | UCR1_TDMAEN | UCR1_ATDMAEN);
1188 writel(temp, sport->port.membase + UCR1);
1189
1190 /* clear UCR2 */
1191 temp = readl(sport->port.membase + UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001192 temp &= ~(UCR2_CTSC | UCR2_CTS | UCR2_ATEN);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001193 writel(temp, sport->port.membase + UCR2);
1194
Lucas Stach184bd702015-09-04 17:52:40 +02001195 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
1196
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001197 sport->dma_is_enabled = 0;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001198}
1199
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001200/* half the RX buffer size */
1201#define CTSTL 16
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203static int imx_startup(struct uart_port *port)
1204{
1205 struct imx_port *sport = (struct imx_port *)port;
Fabio Estevam458e2c82015-07-27 15:15:59 -03001206 int retval, i;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001207 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Huang Shijie1cf93e02013-06-28 13:39:42 +08001209 retval = clk_prepare_enable(sport->clk_per);
1210 if (retval)
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001211 return retval;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001212 retval = clk_prepare_enable(sport->clk_ipg);
1213 if (retval) {
1214 clk_disable_unprepare(sport->clk_per);
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001215 return retval;
Huang Shijie0c375502013-06-09 10:01:19 +08001216 }
Huang Shijie28eb4272013-06-04 09:59:33 +08001217
Lucas Stachcc323822015-09-04 17:52:37 +02001218 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 /* disable the DREN bit (Data Ready interrupt enable) before
1221 * requesting IRQs
1222 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001223 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001224
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001225 /* set the trigger level for CTS */
Sachin Kamat82313e62013-01-07 10:25:02 +05301226 temp &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
1227 temp |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001228
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001229 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Lucas Stach7e115772015-09-04 17:52:42 +02001231 /* Can we enable the DMA support? */
Martyn Welch1c06bde62016-09-01 11:30:46 +02001232 if (!uart_console(port) && !sport->dma_is_inited)
Lucas Stach7e115772015-09-04 17:52:42 +02001233 imx_uart_dma_init(sport);
1234
Jiada Wang53794182015-04-13 18:31:43 +09001235 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijie772f8992014-05-21 08:56:28 +08001236 /* Reset fifo's and state machines */
Fabio Estevam458e2c82015-07-27 15:15:59 -03001237 i = 100;
1238
1239 temp = readl(sport->port.membase + UCR2);
1240 temp &= ~UCR2_SRST;
1241 writel(temp, sport->port.membase + UCR2);
1242
1243 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) && (--i > 0))
1244 udelay(1);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 /*
1247 * Finally, clear and enable interrupts
1248 */
Uwe Kleine-König27e16502016-03-24 14:24:25 +01001249 writel(USR1_RTSD | USR1_DTRD, sport->port.membase + USR1);
Uwe Kleine-König91555ce2015-02-24 11:17:05 +01001250 writel(USR2_ORE, sport->port.membase + USR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Lucas Stach7e115772015-09-04 17:52:42 +02001252 if (sport->dma_is_inited && !sport->dma_is_enabled)
1253 imx_enable_dma(sport);
1254
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001255 temp = readl(sport->port.membase + UCR1);
Nandor Han6376cd32017-06-28 15:59:36 +02001256 temp |= UCR1_RRDYEN | UCR1_UARTEN;
1257 if (sport->have_rtscts)
1258 temp |= UCR1_RTSDEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001259
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001260 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Jiada Wang6f026d6b2014-12-09 18:11:34 +09001262 temp = readl(sport->port.membase + UCR4);
1263 temp |= UCR4_OREN;
1264 writel(temp, sport->port.membase + UCR4);
1265
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001266 temp = readl(sport->port.membase + UCR2);
1267 temp |= (UCR2_RXEN | UCR2_TXEN);
Lucas Stachbff09b02013-05-30 15:47:04 +02001268 if (!sport->have_rtscts)
1269 temp |= UCR2_IRTS;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001270 /*
1271 * make sure the edge sensitive RTS-irq is disabled,
1272 * we're using RTSD instead.
1273 */
1274 if (!is_imx1_uart(sport))
1275 temp &= ~UCR2_RTSEN;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001276 writel(temp, sport->port.membase + UCR2);
1277
Huang Shijiea496e622013-07-08 17:14:17 +08001278 if (!is_imx1_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001279 temp = readl(sport->port.membase + UCR3);
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001280
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02001281 temp |= UCR3_DTRDEN | UCR3_RI | UCR3_DCD;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001282
1283 if (sport->dte_mode)
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02001284 /* disable broken interrupts */
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001285 temp &= ~(UCR3_RI | UCR3_DCD);
1286
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001287 writel(temp, sport->port.membase + UCR3);
1288 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +02001289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 /*
1291 * Enable modem status interrupts
1292 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 imx_enable_ms(&sport->port);
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001294
1295 /*
Peter Senna Tschudin4dec2f12017-05-14 14:35:15 +02001296 * Start RX DMA immediately instead of waiting for RX FIFO interrupts.
1297 * In our iMX53 the average delay for the first reception dropped from
1298 * approximately 35000 microseconds to 1000 microseconds.
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001299 */
1300 if (sport->dma_is_enabled) {
Peter Senna Tschudin4dec2f12017-05-14 14:35:15 +02001301 imx_disable_rx_int(sport);
1302 start_rx_dma(sport);
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001303 }
1304
Sachin Kamat82313e62013-01-07 10:25:02 +05301305 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
1310static void imx_shutdown(struct uart_port *port)
1311{
1312 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001313 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001314 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001316 if (sport->dma_is_enabled) {
Nandor Han9d297232016-08-08 15:38:27 +03001317 sport->dma_is_rxing = 0;
1318 sport->dma_is_txing = 0;
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001319 dmaengine_terminate_sync(sport->dma_chan_tx);
1320 dmaengine_terminate_sync(sport->dma_chan_rx);
Huang Shijiea4688bc2014-09-19 15:42:57 +08001321
Jiada Wang73631812014-12-09 18:11:23 +09001322 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijiea4688bc2014-09-19 15:42:57 +08001323 imx_stop_tx(port);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001324 imx_stop_rx(port);
1325 imx_disable_dma(sport);
Jiada Wang73631812014-12-09 18:11:23 +09001326 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001327 imx_uart_dma_exit(sport);
1328 }
1329
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001330 mctrl_gpio_disable_ms(sport->gpios);
1331
Xinyu Chen9ec18822012-08-27 09:36:51 +02001332 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001333 temp = readl(sport->port.membase + UCR2);
1334 temp &= ~(UCR2_TXEN);
1335 writel(temp, sport->port.membase + UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001336 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /*
1339 * Stop our timer.
1340 */
1341 del_timer_sync(&sport->timer);
1342
1343 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 * Disable all interrupts, port and break condition.
1345 */
1346
Xinyu Chen9ec18822012-08-27 09:36:51 +02001347 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001348 temp = readl(sport->port.membase + UCR1);
1349 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001350
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001351 writel(temp, sport->port.membase + UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001352 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +08001353
Huang Shijie1cf93e02013-06-28 13:39:42 +08001354 clk_disable_unprepare(sport->clk_per);
1355 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001358static void imx_flush_buffer(struct uart_port *port)
1359{
1360 struct imx_port *sport = (struct imx_port *)port;
Dirk Behme82e86ae2014-12-09 18:11:27 +09001361 struct scatterlist *sgl = &sport->tx_sgl[0];
Dirk Behmea2c718c2014-12-09 18:11:31 +09001362 unsigned long temp;
Fabio Estevam4f86a952015-02-07 15:46:41 -02001363 int i = 100, ubir, ubmr, uts;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001364
Dirk Behme82e86ae2014-12-09 18:11:27 +09001365 if (!sport->dma_chan_tx)
1366 return;
1367
1368 sport->tx_bytes = 0;
1369 dmaengine_terminate_all(sport->dma_chan_tx);
1370 if (sport->dma_is_txing) {
1371 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents,
1372 DMA_TO_DEVICE);
Dirk Behmea2c718c2014-12-09 18:11:31 +09001373 temp = readl(sport->port.membase + UCR1);
1374 temp &= ~UCR1_TDMAEN;
1375 writel(temp, sport->port.membase + UCR1);
Martyn Welch0f7bdbd2017-09-28 11:38:51 +01001376 sport->dma_is_txing = 0;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001377 }
Fabio Estevam934084a2015-01-13 10:00:26 -02001378
1379 /*
1380 * According to the Reference Manual description of the UART SRST bit:
Martyn Welch263763c2017-10-04 17:13:27 +01001381 *
Fabio Estevam934084a2015-01-13 10:00:26 -02001382 * "Reset the transmit and receive state machines,
1383 * all FIFOs and register USR1, USR2, UBIR, UBMR, UBRC, URXD, UTXD
Martyn Welch263763c2017-10-04 17:13:27 +01001384 * and UTS[6-3]".
1385 *
1386 * We don't need to restore the old values from USR1, USR2, URXD and
1387 * UTXD. UBRC is read only, so only save/restore the other three
1388 * registers.
Fabio Estevam934084a2015-01-13 10:00:26 -02001389 */
1390 ubir = readl(sport->port.membase + UBIR);
1391 ubmr = readl(sport->port.membase + UBMR);
Fabio Estevam934084a2015-01-13 10:00:26 -02001392 uts = readl(sport->port.membase + IMX21_UTS);
1393
1394 temp = readl(sport->port.membase + UCR2);
1395 temp &= ~UCR2_SRST;
1396 writel(temp, sport->port.membase + UCR2);
1397
1398 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) && (--i > 0))
1399 udelay(1);
1400
1401 /* Restore the registers */
1402 writel(ubir, sport->port.membase + UBIR);
1403 writel(ubmr, sport->port.membase + UBMR);
Fabio Estevam934084a2015-01-13 10:00:26 -02001404 writel(uts, sport->port.membase + IMX21_UTS);
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001405}
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407static void
Alan Cox606d0992006-12-08 02:38:45 -08001408imx_set_termios(struct uart_port *port, struct ktermios *termios,
1409 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
1411 struct imx_port *sport = (struct imx_port *)port;
1412 unsigned long flags;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001413 unsigned long ucr2, old_ucr1, old_ucr2;
1414 unsigned int baud, quot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001416 unsigned long div, ufcr;
Oskar Schirmer534fca02009-06-11 14:52:23 +01001417 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001418 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 * We only support CS7 and CS8.
1422 */
1423 while ((termios->c_cflag & CSIZE) != CS7 &&
1424 (termios->c_cflag & CSIZE) != CS8) {
1425 termios->c_cflag &= ~CSIZE;
1426 termios->c_cflag |= old_csize;
1427 old_csize = CS8;
1428 }
1429
1430 if ((termios->c_cflag & CSIZE) == CS8)
1431 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
1432 else
1433 ucr2 = UCR2_SRST | UCR2_IRTS;
1434
1435 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +05301436 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +01001437 ucr2 &= ~UCR2_IRTS;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001438
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001439 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001440 /*
1441 * RTS is mandatory for rs485 operation, so keep
1442 * it under manual control and keep transmitter
1443 * disabled.
1444 */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001445 if (port->rs485.flags &
1446 SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001447 imx_port_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001448 else
1449 imx_port_rts_inactive(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001450 } else {
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001451 imx_port_rts_auto(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001452 }
Sascha Hauer5b802342006-05-04 14:07:42 +01001453 } else {
1454 termios->c_cflag &= ~CRTSCTS;
1455 }
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001456 } else if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001457 /* disable transmitter */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001458 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001459 imx_port_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001460 else
1461 imx_port_rts_inactive(sport, &ucr2);
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001462 }
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 if (termios->c_cflag & CSTOPB)
1466 ucr2 |= UCR2_STPB;
1467 if (termios->c_cflag & PARENB) {
1468 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +00001469 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 ucr2 |= UCR2_PROE;
1471 }
1472
Eric Miao995234d2011-12-23 05:39:27 +08001473 del_timer_sync(&sport->timer);
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 /*
1476 * Ask the core to calculate the divisor for us.
1477 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001478 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 quot = uart_get_divisor(port, baud);
1480
1481 spin_lock_irqsave(&sport->port.lock, flags);
1482
1483 sport->port.read_status_mask = 0;
1484 if (termios->c_iflag & INPCK)
1485 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
1486 if (termios->c_iflag & (BRKINT | PARMRK))
1487 sport->port.read_status_mask |= URXD_BRK;
1488
1489 /*
1490 * Characters to ignore
1491 */
1492 sport->port.ignore_status_mask = 0;
1493 if (termios->c_iflag & IGNPAR)
Eric Nelson865cea82014-12-18 12:37:14 -07001494 sport->port.ignore_status_mask |= URXD_PRERR | URXD_FRMERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if (termios->c_iflag & IGNBRK) {
1496 sport->port.ignore_status_mask |= URXD_BRK;
1497 /*
1498 * If we're ignoring parity and break indicators,
1499 * ignore overruns too (for real raw support).
1500 */
1501 if (termios->c_iflag & IGNPAR)
1502 sport->port.ignore_status_mask |= URXD_OVRRUN;
1503 }
1504
Jiada Wang55d86932014-12-09 18:11:22 +09001505 if ((termios->c_cflag & CREAD) == 0)
1506 sport->port.ignore_status_mask |= URXD_DUMMY_READ;
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 /*
1509 * Update the per-port timeout.
1510 */
1511 uart_update_timeout(port, termios->c_cflag, baud);
1512
1513 /*
1514 * disable interrupts and drain transmitter
1515 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001516 old_ucr1 = readl(sport->port.membase + UCR1);
1517 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1518 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Sachin Kamat82313e62013-01-07 10:25:02 +05301520 while (!(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 barrier();
1522
1523 /* then, disable everything */
Lucas Stach86a04ba2015-09-04 17:52:38 +02001524 old_ucr2 = readl(sport->port.membase + UCR2);
1525 writel(old_ucr2 & ~(UCR2_TXEN | UCR2_RXEN),
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001526 sport->port.membase + UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001527 old_ucr2 &= (UCR2_TXEN | UCR2_RXEN | UCR2_ATEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001529 /* custom-baudrate handling */
1530 div = sport->port.uartclk / (baud * 16);
1531 if (baud == 38400 && quot != div)
1532 baud = sport->port.uartclk / (quot * 16);
Hubert Feurstein09bd00f2013-07-18 18:52:49 +02001533
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001534 div = sport->port.uartclk / (baud * 16);
1535 if (div > 7)
1536 div = 7;
1537 if (!div)
1538 div = 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001539
Oskar Schirmer534fca02009-06-11 14:52:23 +01001540 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1541 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001542
Alan Coxeab4f5a2010-06-01 22:52:52 +02001543 tdiv64 = sport->port.uartclk;
1544 tdiv64 *= num;
1545 do_div(tdiv64, denom * 16 * div);
1546 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001547 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001548
Oskar Schirmer534fca02009-06-11 14:52:23 +01001549 num -= 1;
1550 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001551
1552 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001553 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +02001554 writel(ufcr, sport->port.membase + UFCR);
1555
Oskar Schirmer534fca02009-06-11 14:52:23 +01001556 writel(num, sport->port.membase + UBIR);
1557 writel(denom, sport->port.membase + UBMR);
1558
Huang Shijiea496e622013-07-08 17:14:17 +08001559 if (!is_imx1_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001560 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001561 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001563 writel(old_ucr1, sport->port.membase + UCR1);
1564
1565 /* set the parity, stop bits and data size */
Lucas Stach86a04ba2015-09-04 17:52:38 +02001566 writel(ucr2 | old_ucr2, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1569 imx_enable_ms(&sport->port);
1570
1571 spin_unlock_irqrestore(&sport->port.lock, flags);
1572}
1573
1574static const char *imx_type(struct uart_port *port)
1575{
1576 struct imx_port *sport = (struct imx_port *)port;
1577
1578 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1579}
1580
1581/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 * Configure/autoconfigure the port.
1583 */
1584static void imx_config_port(struct uart_port *port, int flags)
1585{
1586 struct imx_port *sport = (struct imx_port *)port;
1587
Alexander Shiyanda82f992014-02-22 16:01:33 +04001588 if (flags & UART_CONFIG_TYPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 sport->port.type = PORT_IMX;
1590}
1591
1592/*
1593 * Verify the new serial_struct (for TIOCSSERIAL).
1594 * The only change we allow are to the flags and type, and
1595 * even then only between PORT_IMX and PORT_UNKNOWN
1596 */
1597static int
1598imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1599{
1600 struct imx_port *sport = (struct imx_port *)port;
1601 int ret = 0;
1602
1603 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1604 ret = -EINVAL;
1605 if (sport->port.irq != ser->irq)
1606 ret = -EINVAL;
1607 if (ser->io_type != UPIO_MEM)
1608 ret = -EINVAL;
1609 if (sport->port.uartclk / 16 != ser->baud_base)
1610 ret = -EINVAL;
Olof Johanssona50c44c2013-09-11 21:27:53 -07001611 if (sport->port.mapbase != (unsigned long)ser->iomem_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 ret = -EINVAL;
1613 if (sport->port.iobase != ser->port)
1614 ret = -EINVAL;
1615 if (ser->hub6 != 0)
1616 ret = -EINVAL;
1617 return ret;
1618}
1619
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001620#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001621
1622static int imx_poll_init(struct uart_port *port)
1623{
1624 struct imx_port *sport = (struct imx_port *)port;
1625 unsigned long flags;
1626 unsigned long temp;
1627 int retval;
1628
1629 retval = clk_prepare_enable(sport->clk_ipg);
1630 if (retval)
1631 return retval;
1632 retval = clk_prepare_enable(sport->clk_per);
1633 if (retval)
1634 clk_disable_unprepare(sport->clk_ipg);
1635
Lucas Stachcc323822015-09-04 17:52:37 +02001636 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001637
1638 spin_lock_irqsave(&sport->port.lock, flags);
1639
1640 temp = readl(sport->port.membase + UCR1);
1641 if (is_imx1_uart(sport))
1642 temp |= IMX1_UCR1_UARTCLKEN;
1643 temp |= UCR1_UARTEN | UCR1_RRDYEN;
1644 temp &= ~(UCR1_TXMPTYEN | UCR1_RTSDEN);
1645 writel(temp, sport->port.membase + UCR1);
1646
1647 temp = readl(sport->port.membase + UCR2);
1648 temp |= UCR2_RXEN;
1649 writel(temp, sport->port.membase + UCR2);
1650
1651 spin_unlock_irqrestore(&sport->port.lock, flags);
1652
1653 return 0;
1654}
1655
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001656static int imx_poll_get_char(struct uart_port *port)
1657{
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001658 if (!(readl_relaxed(port->membase + USR2) & USR2_RDR))
Dirk Behme26c47412014-09-03 12:33:53 +01001659 return NO_POLL_CHAR;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001660
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001661 return readl_relaxed(port->membase + URXD0) & URXD_RX_DATA;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001662}
1663
1664static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1665{
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001666 unsigned int status;
1667
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001668 /* drain */
1669 do {
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001670 status = readl_relaxed(port->membase + USR1);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001671 } while (~status & USR1_TRDY);
1672
1673 /* write */
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001674 writel_relaxed(c, port->membase + URTX0);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001675
1676 /* flush */
1677 do {
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001678 status = readl_relaxed(port->membase + USR2);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001679 } while (~status & USR2_TXDC);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001680}
1681#endif
1682
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001683static int imx_rs485_config(struct uart_port *port,
1684 struct serial_rs485 *rs485conf)
1685{
1686 struct imx_port *sport = (struct imx_port *)port;
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001687 unsigned long temp;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001688
1689 /* unimplemented */
1690 rs485conf->delay_rts_before_send = 0;
1691 rs485conf->delay_rts_after_send = 0;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001692
1693 /* RTS is required to control the transmitter */
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02001694 if (!sport->have_rtscts && !sport->have_rtsgpio)
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001695 rs485conf->flags &= ~SER_RS485_ENABLED;
1696
1697 if (rs485conf->flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001698 /* disable transmitter */
1699 temp = readl(sport->port.membase + UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001700 if (rs485conf->flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001701 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -02001702 else
1703 imx_port_rts_inactive(sport, &temp);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001704 writel(temp, sport->port.membase + UCR2);
1705 }
1706
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001707 /* Make sure Rx is enabled in case Tx is active with Rx disabled */
1708 if (!(rs485conf->flags & SER_RS485_ENABLED) ||
1709 rs485conf->flags & SER_RS485_RX_DURING_TX) {
1710 temp = readl(sport->port.membase + UCR2);
1711 temp |= UCR2_RXEN;
1712 writel(temp, sport->port.membase + UCR2);
1713 }
1714
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001715 port->rs485 = *rs485conf;
1716
1717 return 0;
1718}
1719
Julia Lawall069a47e2016-09-01 19:51:35 +02001720static const struct uart_ops imx_pops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 .tx_empty = imx_tx_empty,
1722 .set_mctrl = imx_set_mctrl,
1723 .get_mctrl = imx_get_mctrl,
1724 .stop_tx = imx_stop_tx,
1725 .start_tx = imx_start_tx,
1726 .stop_rx = imx_stop_rx,
1727 .enable_ms = imx_enable_ms,
1728 .break_ctl = imx_break_ctl,
1729 .startup = imx_startup,
1730 .shutdown = imx_shutdown,
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001731 .flush_buffer = imx_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 .set_termios = imx_set_termios,
1733 .type = imx_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 .config_port = imx_config_port,
1735 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001736#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001737 .poll_init = imx_poll_init,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001738 .poll_get_char = imx_poll_get_char,
1739 .poll_put_char = imx_poll_put_char,
1740#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741};
1742
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001743static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001746static void imx_console_putchar(struct uart_port *port, int ch)
1747{
1748 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001749
Shawn Guofe6b5402011-06-25 02:04:33 +08001750 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001751 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001752
1753 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001754}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756/*
1757 * Interrupts are disabled on entering
1758 */
1759static void
1760imx_console_write(struct console *co, const char *s, unsigned int count)
1761{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001762 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001763 struct imx_port_ucrs old_ucr;
1764 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001765 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001766 int locked = 1;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001767 int retval;
1768
Fabio Estevam0c727a42015-08-18 12:43:12 -03001769 retval = clk_enable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001770 if (retval)
1771 return;
Fabio Estevam0c727a42015-08-18 12:43:12 -03001772 retval = clk_enable(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001773 if (retval) {
Fabio Estevam0c727a42015-08-18 12:43:12 -03001774 clk_disable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001775 return;
1776 }
Xinyu Chen9ec18822012-08-27 09:36:51 +02001777
Thomas Gleixner677fe552013-02-14 21:01:06 +01001778 if (sport->port.sysrq)
1779 locked = 0;
1780 else if (oops_in_progress)
1781 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1782 else
1783 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001786 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001788 imx_port_ucrs_save(&sport->port, &old_ucr);
1789 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Shawn Guofe6b5402011-06-25 02:04:33 +08001791 if (is_imx1_uart(sport))
1792 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001793 ucr1 |= UCR1_UARTEN;
1794 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1795
1796 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001797
Dirk Behme0ad5a812011-12-22 09:57:52 +01001798 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Russell Kingd3587882006-03-20 20:00:09 +00001800 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 /*
1803 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001804 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001806 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Dirk Behme0ad5a812011-12-22 09:57:52 +01001808 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001809
Thomas Gleixner677fe552013-02-14 21:01:06 +01001810 if (locked)
1811 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001812
Fabio Estevam0c727a42015-08-18 12:43:12 -03001813 clk_disable(sport->clk_ipg);
1814 clk_disable(sport->clk_per);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817/*
1818 * If the port was already initialised (eg, by a boot loader),
1819 * try to determine the current setup.
1820 */
1821static void __init
1822imx_console_get_options(struct imx_port *sport, int *baud,
1823 int *parity, int *bits)
1824{
Sascha Hauer587897f2005-04-29 22:46:40 +01001825
Roel Kluin2e2eb502009-12-09 12:31:36 -08001826 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301828 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001829 unsigned int baud_raw;
1830 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001832 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 *parity = 'n';
1835 if (ucr2 & UCR2_PREN) {
1836 if (ucr2 & UCR2_PROE)
1837 *parity = 'o';
1838 else
1839 *parity = 'e';
1840 }
1841
1842 if (ucr2 & UCR2_WS)
1843 *bits = 8;
1844 else
1845 *bits = 7;
1846
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001847 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1848 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001850 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001851 if (ucfr_rfdiv == 6)
1852 ucfr_rfdiv = 7;
1853 else
1854 ucfr_rfdiv = 6 - ucfr_rfdiv;
1855
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001856 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001857 uartclk /= ucfr_rfdiv;
1858
1859 { /*
1860 * The next code provides exact computation of
1861 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1862 * without need of float support or long long division,
1863 * which would be required to prevent 32bit arithmetic overflow
1864 */
1865 unsigned int mul = ubir + 1;
1866 unsigned int div = 16 * (ubmr + 1);
1867 unsigned int rem = uartclk % div;
1868
1869 baud_raw = (uartclk / div) * mul;
1870 baud_raw += (rem * mul + div / 2) / div;
1871 *baud = (baud_raw + 50) / 100 * 100;
1872 }
1873
Sachin Kamat82313e62013-01-07 10:25:02 +05301874 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301875 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01001876 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
1878}
1879
1880static int __init
1881imx_console_setup(struct console *co, char *options)
1882{
1883 struct imx_port *sport;
1884 int baud = 9600;
1885 int bits = 8;
1886 int parity = 'n';
1887 int flow = 'n';
Huang Shijie1cf93e02013-06-28 13:39:42 +08001888 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 /*
1891 * Check whether an invalid uart number has been specified, and
1892 * if so, search for the first available port that does have
1893 * console support.
1894 */
1895 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1896 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001897 sport = imx_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05301898 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04001899 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Huang Shijie1cf93e02013-06-28 13:39:42 +08001901 /* For setting the registers, we only need to enable the ipg clock. */
1902 retval = clk_prepare_enable(sport->clk_ipg);
1903 if (retval)
1904 goto error_console;
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (options)
1907 uart_parse_options(options, &baud, &parity, &bits, &flow);
1908 else
1909 imx_console_get_options(sport, &baud, &parity, &bits);
1910
Lucas Stachcc323822015-09-04 17:52:37 +02001911 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Sascha Hauer587897f2005-04-29 22:46:40 +01001912
Huang Shijie1cf93e02013-06-28 13:39:42 +08001913 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow);
1914
Fabio Estevam0c727a42015-08-18 12:43:12 -03001915 clk_disable(sport->clk_ipg);
1916 if (retval) {
1917 clk_unprepare(sport->clk_ipg);
1918 goto error_console;
1919 }
1920
1921 retval = clk_prepare(sport->clk_per);
1922 if (retval)
1923 clk_disable_unprepare(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001924
1925error_console:
1926 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001929static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001931 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 .write = imx_console_write,
1933 .device = uart_console_device,
1934 .setup = imx_console_setup,
1935 .flags = CON_PRINTBUFFER,
1936 .index = -1,
1937 .data = &imx_reg,
1938};
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940#define IMX_CONSOLE &imx_console
Lucas Stach913c6c02015-08-28 11:56:19 +02001941
1942#ifdef CONFIG_OF
1943static void imx_console_early_putchar(struct uart_port *port, int ch)
1944{
1945 while (readl_relaxed(port->membase + IMX21_UTS) & UTS_TXFULL)
1946 cpu_relax();
1947
1948 writel_relaxed(ch, port->membase + URTX0);
1949}
1950
1951static void imx_console_early_write(struct console *con, const char *s,
1952 unsigned count)
1953{
1954 struct earlycon_device *dev = con->data;
1955
1956 uart_console_write(&dev->port, s, count, imx_console_early_putchar);
1957}
1958
1959static int __init
1960imx_console_early_setup(struct earlycon_device *dev, const char *opt)
1961{
1962 if (!dev->port.membase)
1963 return -ENODEV;
1964
1965 dev->con->write = imx_console_early_write;
1966
1967 return 0;
1968}
1969OF_EARLYCON_DECLARE(ec_imx6q, "fsl,imx6q-uart", imx_console_early_setup);
1970OF_EARLYCON_DECLARE(ec_imx21, "fsl,imx21-uart", imx_console_early_setup);
1971#endif
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973#else
1974#define IMX_CONSOLE NULL
1975#endif
1976
1977static struct uart_driver imx_reg = {
1978 .owner = THIS_MODULE,
1979 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001980 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 .major = SERIAL_IMX_MAJOR,
1982 .minor = MINOR_START,
1983 .nr = ARRAY_SIZE(imx_ports),
1984 .cons = IMX_CONSOLE,
1985};
1986
Shawn Guo22698aa2011-06-25 02:04:34 +08001987#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001988/*
1989 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1990 * could successfully get all information from dt or a negative errno.
1991 */
Shawn Guo22698aa2011-06-25 02:04:34 +08001992static int serial_imx_probe_dt(struct imx_port *sport,
1993 struct platform_device *pdev)
1994{
1995 struct device_node *np = pdev->dev.of_node;
Shawn Guoff059672011-09-22 14:48:13 +08001996 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001997
LABBE Corentin5f8b9042015-11-24 15:36:57 +01001998 sport->devdata = of_device_get_match_data(&pdev->dev);
1999 if (!sport->devdata)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002000 /* no device tree device */
2001 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002002
Shawn Guoff059672011-09-22 14:48:13 +08002003 ret = of_alias_get_id(np, "serial");
2004 if (ret < 0) {
2005 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01002006 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08002007 }
2008 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002009
Geert Uytterhoeven1006ed72016-04-22 17:22:21 +02002010 if (of_get_property(np, "uart-has-rtscts", NULL) ||
2011 of_get_property(np, "fsl,uart-has-rtscts", NULL) /* deprecated */)
Shawn Guo22698aa2011-06-25 02:04:34 +08002012 sport->have_rtscts = 1;
2013
Huang Shijie20ff2fe2013-05-30 14:07:12 +08002014 if (of_get_property(np, "fsl,dte-mode", NULL))
2015 sport->dte_mode = 1;
2016
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02002017 if (of_get_property(np, "rts-gpios", NULL))
2018 sport->have_rtsgpio = 1;
2019
Sascha Hauer8b25deb2017-09-21 10:13:11 +02002020 of_get_rs485_mode(np, &sport->port.rs485);
2021
Shawn Guo22698aa2011-06-25 02:04:34 +08002022 return 0;
2023}
2024#else
2025static inline int serial_imx_probe_dt(struct imx_port *sport,
2026 struct platform_device *pdev)
2027{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002028 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002029}
2030#endif
2031
2032static void serial_imx_probe_pdata(struct imx_port *sport,
2033 struct platform_device *pdev)
2034{
Jingoo Han574de552013-07-30 17:06:57 +09002035 struct imxuart_platform_data *pdata = dev_get_platdata(&pdev->dev);
Shawn Guo22698aa2011-06-25 02:04:34 +08002036
2037 sport->port.line = pdev->id;
2038 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
2039
2040 if (!pdata)
2041 return;
2042
2043 if (pdata->flags & IMXUART_HAVE_RTSCTS)
2044 sport->have_rtscts = 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002045}
2046
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002047static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002049 struct imx_port *sport;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002050 void __iomem *base;
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002051 int ret = 0, reg;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002052 struct resource *res;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002053 int txirq, rxirq, rtsirq;
Sascha Hauer5b802342006-05-04 14:07:42 +01002054
Sachin Kamat42d34192013-01-07 10:25:06 +05302055 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002056 if (!sport)
2057 return -ENOMEM;
2058
Shawn Guo22698aa2011-06-25 02:04:34 +08002059 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002060 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08002061 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002062 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05302063 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002064
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002065 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Alexander Shiyanda82f992014-02-22 16:01:33 +04002066 base = devm_ioremap_resource(&pdev->dev, res);
2067 if (IS_ERR(base))
2068 return PTR_ERR(base);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002069
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002070 rxirq = platform_get_irq(pdev, 0);
2071 txirq = platform_get_irq(pdev, 1);
2072 rtsirq = platform_get_irq(pdev, 2);
2073
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002074 sport->port.dev = &pdev->dev;
2075 sport->port.mapbase = res->start;
2076 sport->port.membase = base;
2077 sport->port.type = PORT_IMX,
2078 sport->port.iotype = UPIO_MEM;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002079 sport->port.irq = rxirq;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002080 sport->port.fifosize = 32;
2081 sport->port.ops = &imx_pops;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01002082 sport->port.rs485_config = imx_rs485_config;
Sascha Hauer8b25deb2017-09-21 10:13:11 +02002083 sport->port.rs485.flags |= SER_RS485_RTS_ON_SEND;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002084 sport->port.flags = UPF_BOOT_AUTOCONF;
Kees Cooke99e88a2017-10-16 14:43:17 -07002085 timer_setup(&sport->timer, imx_timeout, 0);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002086
Uwe Kleine-König58362d52015-12-13 11:30:03 +01002087 sport->gpios = mctrl_gpio_init(&sport->port, 0);
2088 if (IS_ERR(sport->gpios))
2089 return PTR_ERR(sport->gpios);
2090
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002091 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
2092 if (IS_ERR(sport->clk_ipg)) {
2093 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002094 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302095 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002096 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002097
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002098 sport->clk_per = devm_clk_get(&pdev->dev, "per");
2099 if (IS_ERR(sport->clk_per)) {
2100 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002101 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302102 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002103 }
2104
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002105 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002106
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002107 /* For register access, we only need to enable the ipg clock. */
2108 ret = clk_prepare_enable(sport->clk_ipg);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002109 if (ret) {
2110 dev_err(&pdev->dev, "failed to enable per clk: %d\n", ret);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002111 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002112 }
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002113
2114 /* Disable interrupts before requesting them */
2115 reg = readl_relaxed(sport->port.membase + UCR1);
2116 reg &= ~(UCR1_ADEN | UCR1_TRDYEN | UCR1_IDEN | UCR1_RRDYEN |
2117 UCR1_TXMPTYEN | UCR1_RTSDEN);
2118 writel_relaxed(reg, sport->port.membase + UCR1);
2119
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002120 if (!is_imx1_uart(sport) && sport->dte_mode) {
2121 /*
2122 * The DCEDTE bit changes the direction of DSR, DCD, DTR and RI
2123 * and influences if UCR3_RI and UCR3_DCD changes the level of RI
2124 * and DCD (when they are outputs) or enables the respective
2125 * irqs. So set this bit early, i.e. before requesting irqs.
2126 */
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002127 reg = readl(sport->port.membase + UFCR);
2128 if (!(reg & UFCR_DCEDTE))
2129 writel(reg | UFCR_DCEDTE, sport->port.membase + UFCR);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002130
2131 /*
2132 * Disable UCR3_RI and UCR3_DCD irqs. They are also not
2133 * enabled later because they cannot be cleared
2134 * (confirmed on i.MX25) which makes them unusable.
2135 */
2136 writel(IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP | UCR3_DSR,
2137 sport->port.membase + UCR3);
2138
2139 } else {
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002140 unsigned long ucr3 = UCR3_DSR;
2141
2142 reg = readl(sport->port.membase + UFCR);
2143 if (reg & UFCR_DCEDTE)
2144 writel(reg & ~UFCR_DCEDTE, sport->port.membase + UFCR);
2145
2146 if (!is_imx1_uart(sport))
2147 ucr3 |= IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP;
2148 writel(ucr3, sport->port.membase + UCR3);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002149 }
2150
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002151 clk_disable_unprepare(sport->clk_ipg);
2152
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002153 /*
2154 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
2155 * chips only have one interrupt.
2156 */
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002157 if (txirq > 0) {
2158 ret = devm_request_irq(&pdev->dev, rxirq, imx_rxint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002159 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002160 if (ret) {
2161 dev_err(&pdev->dev, "failed to request rx irq: %d\n",
2162 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002163 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002164 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002165
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002166 ret = devm_request_irq(&pdev->dev, txirq, imx_txint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002167 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002168 if (ret) {
2169 dev_err(&pdev->dev, "failed to request tx irq: %d\n",
2170 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002171 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002172 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002173 } else {
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002174 ret = devm_request_irq(&pdev->dev, rxirq, imx_int, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002175 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002176 if (ret) {
2177 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002178 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002179 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002180 }
2181
Shawn Guo22698aa2011-06-25 02:04:34 +08002182 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01002183
Richard Zhao0a86a862012-09-18 16:14:58 +08002184 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002185
Alexander Shiyan45af7802014-02-22 16:01:35 +04002186 return uart_add_one_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002189static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002191 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Alexander Shiyan45af7802014-02-22 16:01:35 +04002193 return uart_remove_one_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002196static void serial_imx_restore_context(struct imx_port *sport)
2197{
2198 if (!sport->context_saved)
2199 return;
2200
2201 writel(sport->saved_reg[4], sport->port.membase + UFCR);
2202 writel(sport->saved_reg[5], sport->port.membase + UESC);
2203 writel(sport->saved_reg[6], sport->port.membase + UTIM);
2204 writel(sport->saved_reg[7], sport->port.membase + UBIR);
2205 writel(sport->saved_reg[8], sport->port.membase + UBMR);
2206 writel(sport->saved_reg[9], sport->port.membase + IMX21_UTS);
2207 writel(sport->saved_reg[0], sport->port.membase + UCR1);
2208 writel(sport->saved_reg[1] | UCR2_SRST, sport->port.membase + UCR2);
2209 writel(sport->saved_reg[2], sport->port.membase + UCR3);
2210 writel(sport->saved_reg[3], sport->port.membase + UCR4);
2211 sport->context_saved = false;
2212}
2213
2214static void serial_imx_save_context(struct imx_port *sport)
2215{
2216 /* Save necessary regs */
2217 sport->saved_reg[0] = readl(sport->port.membase + UCR1);
2218 sport->saved_reg[1] = readl(sport->port.membase + UCR2);
2219 sport->saved_reg[2] = readl(sport->port.membase + UCR3);
2220 sport->saved_reg[3] = readl(sport->port.membase + UCR4);
2221 sport->saved_reg[4] = readl(sport->port.membase + UFCR);
2222 sport->saved_reg[5] = readl(sport->port.membase + UESC);
2223 sport->saved_reg[6] = readl(sport->port.membase + UTIM);
2224 sport->saved_reg[7] = readl(sport->port.membase + UBIR);
2225 sport->saved_reg[8] = readl(sport->port.membase + UBMR);
2226 sport->saved_reg[9] = readl(sport->port.membase + IMX21_UTS);
2227 sport->context_saved = true;
2228}
2229
Eduardo Valentin189550b2015-08-11 10:21:21 -07002230static void serial_imx_enable_wakeup(struct imx_port *sport, bool on)
2231{
2232 unsigned int val;
2233
2234 val = readl(sport->port.membase + UCR3);
2235 if (on)
2236 val |= UCR3_AWAKEN;
2237 else
2238 val &= ~UCR3_AWAKEN;
2239 writel(val, sport->port.membase + UCR3);
Eduardo Valentinbc857342015-08-11 10:21:22 -07002240
2241 val = readl(sport->port.membase + UCR1);
2242 if (on)
2243 val |= UCR1_RTSDEN;
2244 else
2245 val &= ~UCR1_RTSDEN;
2246 writel(val, sport->port.membase + UCR1);
Eduardo Valentin189550b2015-08-11 10:21:21 -07002247}
2248
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002249static int imx_serial_port_suspend_noirq(struct device *dev)
2250{
2251 struct platform_device *pdev = to_platform_device(dev);
2252 struct imx_port *sport = platform_get_drvdata(pdev);
2253 int ret;
2254
2255 ret = clk_enable(sport->clk_ipg);
2256 if (ret)
2257 return ret;
2258
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002259 serial_imx_save_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002260
2261 clk_disable(sport->clk_ipg);
2262
2263 return 0;
2264}
2265
2266static int imx_serial_port_resume_noirq(struct device *dev)
2267{
2268 struct platform_device *pdev = to_platform_device(dev);
2269 struct imx_port *sport = platform_get_drvdata(pdev);
2270 int ret;
2271
2272 ret = clk_enable(sport->clk_ipg);
2273 if (ret)
2274 return ret;
2275
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002276 serial_imx_restore_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002277
2278 clk_disable(sport->clk_ipg);
2279
2280 return 0;
2281}
2282
2283static int imx_serial_port_suspend(struct device *dev)
2284{
2285 struct platform_device *pdev = to_platform_device(dev);
2286 struct imx_port *sport = platform_get_drvdata(pdev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002287
2288 /* enable wakeup from i.MX UART */
Eduardo Valentin189550b2015-08-11 10:21:21 -07002289 serial_imx_enable_wakeup(sport, true);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002290
2291 uart_suspend_port(&imx_reg, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002292 disable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002293
Martin Fuzzey29add682016-01-05 16:53:31 +01002294 /* Needed to enable clock in suspend_noirq */
2295 return clk_prepare(sport->clk_ipg);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002296}
2297
2298static int imx_serial_port_resume(struct device *dev)
2299{
2300 struct platform_device *pdev = to_platform_device(dev);
2301 struct imx_port *sport = platform_get_drvdata(pdev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002302
2303 /* disable wakeup from i.MX UART */
Eduardo Valentin189550b2015-08-11 10:21:21 -07002304 serial_imx_enable_wakeup(sport, false);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002305
2306 uart_resume_port(&imx_reg, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002307 enable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002308
Martin Fuzzey29add682016-01-05 16:53:31 +01002309 clk_unprepare(sport->clk_ipg);
2310
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002311 return 0;
2312}
2313
Philipp Zabel94be6d72017-11-01 13:51:41 +01002314static int imx_serial_port_freeze(struct device *dev)
2315{
2316 struct platform_device *pdev = to_platform_device(dev);
2317 struct imx_port *sport = platform_get_drvdata(pdev);
2318
2319 uart_suspend_port(&imx_reg, &sport->port);
2320
2321 /* Needed to enable clock in suspend_noirq */
2322 return clk_prepare(sport->clk_ipg);
2323}
2324
2325static int imx_serial_port_thaw(struct device *dev)
2326{
2327 struct platform_device *pdev = to_platform_device(dev);
2328 struct imx_port *sport = platform_get_drvdata(pdev);
2329
2330 uart_resume_port(&imx_reg, &sport->port);
2331
2332 clk_unprepare(sport->clk_ipg);
2333
2334 return 0;
2335}
2336
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002337static const struct dev_pm_ops imx_serial_port_pm_ops = {
2338 .suspend_noirq = imx_serial_port_suspend_noirq,
2339 .resume_noirq = imx_serial_port_resume_noirq,
Philipp Zabel94be6d72017-11-01 13:51:41 +01002340 .freeze_noirq = imx_serial_port_suspend_noirq,
2341 .restore_noirq = imx_serial_port_resume_noirq,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002342 .suspend = imx_serial_port_suspend,
2343 .resume = imx_serial_port_resume,
Philipp Zabel94be6d72017-11-01 13:51:41 +01002344 .freeze = imx_serial_port_freeze,
2345 .thaw = imx_serial_port_thaw,
2346 .restore = imx_serial_port_thaw,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002347};
2348
Russell King3ae5eae2005-11-09 22:32:44 +00002349static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01002350 .probe = serial_imx_probe,
2351 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Shawn Guofe6b5402011-06-25 02:04:33 +08002353 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00002354 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01002355 .name = "imx-uart",
Shawn Guo22698aa2011-06-25 02:04:34 +08002356 .of_match_table = imx_uart_dt_ids,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002357 .pm = &imx_serial_port_pm_ops,
Russell King3ae5eae2005-11-09 22:32:44 +00002358 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359};
2360
2361static int __init imx_serial_init(void)
2362{
Fabio Estevamf0fd1b72014-10-27 14:49:40 -02002363 int ret = uart_register_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if (ret)
2366 return ret;
2367
Russell King3ae5eae2005-11-09 22:32:44 +00002368 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (ret != 0)
2370 uart_unregister_driver(&imx_reg);
2371
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01002372 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373}
2374
2375static void __exit imx_serial_exit(void)
2376{
Russell Kingc889b892005-11-21 17:05:21 +00002377 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01002378 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
2381module_init(imx_serial_init);
2382module_exit(imx_serial_exit);
2383
2384MODULE_AUTHOR("Sascha Hauer");
2385MODULE_DESCRIPTION("IMX generic serial port driver");
2386MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07002387MODULE_ALIAS("platform:imx-uart");