blob: 0df2b1c091aea5860a0b42240e49c2acd72f9ca3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01002 * Driver for Motorola/Freescale IMX serial ports
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01004 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01006 * Author: Sascha Hauer <sascha@saschahauer.de>
7 * Copyright (C) 2004 Pengutronix
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#if defined(CONFIG_SERIAL_IMX_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
21#define SUPPORT_SYSRQ
22#endif
23
24#include <linux/module.h>
25#include <linux/ioport.h>
26#include <linux/init.h>
27#include <linux/console.h>
28#include <linux/sysrq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010029#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/tty.h>
31#include <linux/tty_flip.h>
32#include <linux/serial_core.h>
33#include <linux/serial.h>
Sascha Hauer38a41fd2008-07-05 10:02:46 +020034#include <linux/clk.h>
Fabian Godehardtb6e49132009-06-11 14:53:18 +010035#include <linux/delay.h>
Oskar Schirmer534fca02009-06-11 14:52:23 +010036#include <linux/rational.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Shawn Guo22698aa2011-06-25 02:04:34 +080038#include <linux/of.h>
39#include <linux/of_device.h>
Sachin Kamate32a9f82013-01-07 10:25:03 +053040#include <linux/io.h>
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080041#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/irq.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020044#include <linux/platform_data/serial-imx.h>
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080045#include <linux/platform_data/dma-imx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Uwe Kleine-König58362d52015-12-13 11:30:03 +010047#include "serial_mctrl_gpio.h"
48
Sascha Hauerff4bfb22007-04-26 08:26:13 +010049/* Register definitions */
50#define URXD0 0x0 /* Receiver Register */
51#define URTX0 0x40 /* Transmitter Register */
52#define UCR1 0x80 /* Control Register 1 */
53#define UCR2 0x84 /* Control Register 2 */
54#define UCR3 0x88 /* Control Register 3 */
55#define UCR4 0x8c /* Control Register 4 */
56#define UFCR 0x90 /* FIFO Control Register */
57#define USR1 0x94 /* Status Register 1 */
58#define USR2 0x98 /* Status Register 2 */
59#define UESC 0x9c /* Escape Character Register */
60#define UTIM 0xa0 /* Escape Timer Register */
61#define UBIR 0xa4 /* BRM Incremental Register */
62#define UBMR 0xa8 /* BRM Modulator Register */
63#define UBRC 0xac /* Baud Rate Count Register */
Shawn Guofe6b5402011-06-25 02:04:33 +080064#define IMX21_ONEMS 0xb0 /* One Millisecond register */
65#define IMX1_UTS 0xd0 /* UART Test Register on i.mx1 */
66#define IMX21_UTS 0xb4 /* UART Test Register on all other i.mx*/
Sascha Hauerff4bfb22007-04-26 08:26:13 +010067
68/* UART Control Register Bit Fields.*/
Jiada Wang55d86932014-12-09 18:11:22 +090069#define URXD_DUMMY_READ (1<<16)
Sachin Kamat82313e62013-01-07 10:25:02 +053070#define URXD_CHARRDY (1<<15)
71#define URXD_ERR (1<<14)
72#define URXD_OVRRUN (1<<13)
73#define URXD_FRMERR (1<<12)
74#define URXD_BRK (1<<11)
75#define URXD_PRERR (1<<10)
Dirk Behme26c47412014-09-03 12:33:53 +010076#define URXD_RX_DATA (0xFF<<0)
Sachin Kamat82313e62013-01-07 10:25:02 +053077#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
78#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
79#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
80#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080081#define UCR1_ICD_REG(x) (((x) & 3) << 10) /* idle condition detect */
Sachin Kamat82313e62013-01-07 10:25:02 +053082#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
83#define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
84#define UCR1_IREN (1<<7) /* Infrared interface enable */
85#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
86#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
87#define UCR1_SNDBRK (1<<4) /* Send break */
88#define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
89#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080090#define UCR1_ATDMAEN (1<<2) /* Aging DMA Timer Enable */
Sachin Kamat82313e62013-01-07 10:25:02 +053091#define UCR1_DOZE (1<<1) /* Doze */
92#define UCR1_UARTEN (1<<0) /* UART enabled */
93#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
94#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
95#define UCR2_CTSC (1<<13) /* CTS pin control */
96#define UCR2_CTS (1<<12) /* Clear to send */
97#define UCR2_ESCEN (1<<11) /* Escape enable */
98#define UCR2_PREN (1<<8) /* Parity enable */
99#define UCR2_PROE (1<<7) /* Parity odd/even */
100#define UCR2_STPB (1<<6) /* Stop */
101#define UCR2_WS (1<<5) /* Word size */
102#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
103#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
104#define UCR2_TXEN (1<<2) /* Transmitter enabled */
105#define UCR2_RXEN (1<<1) /* Receiver enabled */
106#define UCR2_SRST (1<<0) /* SW reset */
107#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
108#define UCR3_PARERREN (1<<12) /* Parity enable */
109#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
110#define UCR3_DSR (1<<10) /* Data set ready */
111#define UCR3_DCD (1<<9) /* Data carrier detect */
112#define UCR3_RI (1<<8) /* Ring indicator */
Fabio Estevamb38cb7d2014-05-14 15:55:03 -0300113#define UCR3_ADNIMP (1<<7) /* Autobaud Detection Not Improved */
Sachin Kamat82313e62013-01-07 10:25:02 +0530114#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
115#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
116#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100117#define UCR3_DTRDEN (1<<3) /* Data Terminal Ready Delta Enable. */
Sachin Kamat82313e62013-01-07 10:25:02 +0530118#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
119#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
120#define UCR3_BPEN (1<<0) /* Preset registers enable */
121#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
122#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
123#define UCR4_INVR (1<<9) /* Inverted infrared reception */
124#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
125#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
126#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800127#define UCR4_IDDMAEN (1<<6) /* DMA IDLE Condition Detected */
Sachin Kamat82313e62013-01-07 10:25:02 +0530128#define UCR4_IRSC (1<<5) /* IR special case */
129#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
130#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
131#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
132#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
133#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
134#define UFCR_DCEDTE (1<<6) /* DCE/DTE mode select */
135#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
136#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
137#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
138#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
139#define USR1_RTSS (1<<14) /* RTS pin status */
140#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
141#define USR1_RTSD (1<<12) /* RTS delta */
142#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
143#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
144#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
Lucas Stach86a04ba2015-09-04 17:52:38 +0200145#define USR1_AGTIM (1<<8) /* Ageing timer interrupt flag */
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100146#define USR1_DTRD (1<<7) /* DTR Delta */
Sachin Kamat82313e62013-01-07 10:25:02 +0530147#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
148#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
149#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
150#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
151#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
152#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
153#define USR2_IDLE (1<<12) /* Idle condition */
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200154#define USR2_RIDELT (1<<10) /* Ring Interrupt Delta */
155#define USR2_RIIN (1<<9) /* Ring Indicator Input */
Sachin Kamat82313e62013-01-07 10:25:02 +0530156#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
157#define USR2_WAKE (1<<7) /* Wake */
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200158#define USR2_DCDIN (1<<5) /* Data Carrier Detect Input */
Sachin Kamat82313e62013-01-07 10:25:02 +0530159#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
160#define USR2_TXDC (1<<3) /* Transmitter complete */
161#define USR2_BRCD (1<<2) /* Break condition */
162#define USR2_ORE (1<<1) /* Overrun error */
163#define USR2_RDR (1<<0) /* Recv data ready */
164#define UTS_FRCPERR (1<<13) /* Force parity error */
165#define UTS_LOOP (1<<12) /* Loop tx and rx */
166#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
167#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
168#define UTS_TXFULL (1<<4) /* TxFIFO full */
169#define UTS_RXFULL (1<<3) /* RxFIFO full */
170#define UTS_SOFTRST (1<<0) /* Software reset */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* We've been assigned a range on the "Low-density serial ports" major */
Sachin Kamat82313e62013-01-07 10:25:02 +0530173#define SERIAL_IMX_MAJOR 207
174#define MINOR_START 16
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200175#define DEV_NAME "ttymxc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * This determines how often we check the modem status signals
179 * for any change. They generally aren't connected to an IRQ
180 * so we have to poll them. We also check immediately before
181 * filling the TX fifo incase CTS has been dropped.
182 */
183#define MCTRL_TIMEOUT (250*HZ/1000)
184
185#define DRIVER_NAME "IMX-uart"
186
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200187#define UART_NR 8
188
Uwe Kleine-Königf95661b2015-02-24 11:17:09 +0100189/* i.MX21 type uart runs on all i.mx except i.MX1 and i.MX6q */
Shawn Guofe6b5402011-06-25 02:04:33 +0800190enum imx_uart_type {
191 IMX1_UART,
192 IMX21_UART,
Huang Shijiea496e622013-07-08 17:14:17 +0800193 IMX6Q_UART,
Shawn Guofe6b5402011-06-25 02:04:33 +0800194};
195
196/* device type dependent stuff */
197struct imx_uart_data {
198 unsigned uts_reg;
199 enum imx_uart_type devtype;
200};
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202struct imx_port {
203 struct uart_port port;
204 struct timer_list timer;
205 unsigned int old_status;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100206 unsigned int have_rtscts:1;
Huang Shijie20ff2fe2013-05-30 14:07:12 +0800207 unsigned int dte_mode:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100208 unsigned int irda_inv_rx:1;
209 unsigned int irda_inv_tx:1;
210 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100211 struct clk *clk_ipg;
212 struct clk *clk_per;
Uwe Kleine-König7d0b0662012-05-21 21:57:39 +0200213 const struct imx_uart_data *devdata;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800214
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100215 struct mctrl_gpios *gpios;
216
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800217 /* DMA fields */
218 unsigned int dma_is_inited:1;
219 unsigned int dma_is_enabled:1;
220 unsigned int dma_is_rxing:1;
221 unsigned int dma_is_txing:1;
222 struct dma_chan *dma_chan_rx, *dma_chan_tx;
223 struct scatterlist rx_sgl, tx_sgl[2];
224 void *rx_buf;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800225 unsigned int tx_bytes;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800226 unsigned int dma_tx_nents;
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700227 wait_queue_head_t dma_wait;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -0500228 unsigned int saved_reg[10];
Eduardo Valentinc868cbb2015-08-11 10:21:23 -0700229 bool context_saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230};
231
Dirk Behme0ad5a812011-12-22 09:57:52 +0100232struct imx_port_ucrs {
233 unsigned int ucr1;
234 unsigned int ucr2;
235 unsigned int ucr3;
236};
237
Shawn Guofe6b5402011-06-25 02:04:33 +0800238static struct imx_uart_data imx_uart_devdata[] = {
239 [IMX1_UART] = {
240 .uts_reg = IMX1_UTS,
241 .devtype = IMX1_UART,
242 },
243 [IMX21_UART] = {
244 .uts_reg = IMX21_UTS,
245 .devtype = IMX21_UART,
246 },
Huang Shijiea496e622013-07-08 17:14:17 +0800247 [IMX6Q_UART] = {
248 .uts_reg = IMX21_UTS,
249 .devtype = IMX6Q_UART,
250 },
Shawn Guofe6b5402011-06-25 02:04:33 +0800251};
252
Krzysztof Kozlowski31ada042015-05-02 00:40:02 +0900253static const struct platform_device_id imx_uart_devtype[] = {
Shawn Guofe6b5402011-06-25 02:04:33 +0800254 {
255 .name = "imx1-uart",
256 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
257 }, {
258 .name = "imx21-uart",
259 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
260 }, {
Huang Shijiea496e622013-07-08 17:14:17 +0800261 .name = "imx6q-uart",
262 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX6Q_UART],
263 }, {
Shawn Guofe6b5402011-06-25 02:04:33 +0800264 /* sentinel */
265 }
266};
267MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
268
Sanjeev Sharmaad3d4fd2015-02-03 16:16:06 +0530269static const struct of_device_id imx_uart_dt_ids[] = {
Huang Shijiea496e622013-07-08 17:14:17 +0800270 { .compatible = "fsl,imx6q-uart", .data = &imx_uart_devdata[IMX6Q_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
Huang Shijiea496e622013-07-08 17:14:17 +0800292static inline int is_imx6q_uart(struct imx_port *sport)
293{
294 return sport->devdata->devtype == IMX6Q_UART;
295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200297 * Save and restore functions for UCR1, UCR2 and UCR3 registers
298 */
Fabio Estevam93d94b32014-11-12 15:55:07 -0200299#if defined(CONFIG_SERIAL_IMX_CONSOLE)
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200300static void imx_port_ucrs_save(struct uart_port *port,
301 struct imx_port_ucrs *ucr)
302{
303 /* save control registers */
304 ucr->ucr1 = readl(port->membase + UCR1);
305 ucr->ucr2 = readl(port->membase + UCR2);
306 ucr->ucr3 = readl(port->membase + UCR3);
307}
308
309static void imx_port_ucrs_restore(struct uart_port *port,
310 struct imx_port_ucrs *ucr)
311{
312 /* restore control registers */
313 writel(ucr->ucr1, port->membase + UCR1);
314 writel(ucr->ucr2, port->membase + UCR2);
315 writel(ucr->ucr3, port->membase + UCR3);
316}
Fabio Estevame8bfa762013-06-05 00:58:46 -0300317#endif
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200318
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100319static void imx_port_rts_active(struct imx_port *sport, unsigned long *ucr2)
320{
321 *ucr2 &= ~UCR2_CTSC;
322 *ucr2 |= UCR2_CTS;
323
324 mctrl_gpio_set(sport->gpios, sport->port.mctrl | TIOCM_RTS);
325}
326
327static void imx_port_rts_inactive(struct imx_port *sport, unsigned long *ucr2)
328{
329 *ucr2 &= ~(UCR2_CTSC | UCR2_CTS);
330
331 mctrl_gpio_set(sport->gpios, sport->port.mctrl & ~TIOCM_RTS);
332}
333
334static void imx_port_rts_auto(struct imx_port *sport, unsigned long *ucr2)
335{
336 *ucr2 |= UCR2_CTSC;
337}
338
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200339/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * interrupts disabled on entry
341 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100342static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100345 unsigned long temp;
346
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700347 /*
348 * We are maybe in the SMP context, so if the DMA TX thread is running
349 * on other cpu, we have to wait for it to finish.
350 */
351 if (sport->dma_is_enabled && sport->dma_is_txing)
352 return;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800353
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100354 temp = readl(port->membase + UCR1);
355 writel(temp & ~UCR1_TXMPTYEN, port->membase + UCR1);
356
357 /* in rs485 mode disable transmitter if shifter is empty */
358 if (port->rs485.flags & SER_RS485_ENABLED &&
359 readl(port->membase + USR2) & USR2_TXDC) {
360 temp = readl(port->membase + UCR2);
361 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100362 imx_port_rts_inactive(sport, &temp);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100363 else
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100364 imx_port_rts_active(sport, &temp);
Baruch Siach7d1cadc2016-02-29 14:34:10 +0200365 temp |= UCR2_RXEN;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100366 writel(temp, port->membase + UCR2);
367
368 temp = readl(port->membase + UCR4);
369 temp &= ~UCR4_TCEN;
370 writel(temp, port->membase + UCR4);
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374/*
375 * interrupts disabled on entry
376 */
377static void imx_stop_rx(struct uart_port *port)
378{
379 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100380 unsigned long temp;
381
Huang Shijie45564a62014-09-19 15:33:12 +0800382 if (sport->dma_is_enabled && sport->dma_is_rxing) {
383 if (sport->port.suspended) {
384 dmaengine_terminate_all(sport->dma_chan_rx);
385 sport->dma_is_rxing = 0;
386 } else {
387 return;
388 }
389 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800390
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100391 temp = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +0530392 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2);
Huang Shijie85878392014-05-23 12:32:54 +0800393
394 /* disable the `Receiver Ready Interrrupt` */
395 temp = readl(sport->port.membase + UCR1);
396 writel(temp & ~UCR1_RRDYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399/*
400 * Set the modem control timer to fire immediately.
401 */
402static void imx_enable_ms(struct uart_port *port)
403{
404 struct imx_port *sport = (struct imx_port *)port;
405
406 mod_timer(&sport->timer, jiffies);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100407
408 mctrl_gpio_enable_ms(sport->gpios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Jiada Wang91a1a902014-12-09 18:11:36 +0900411static void imx_dma_tx(struct imx_port *sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static inline void imx_transmit_buffer(struct imx_port *sport)
413{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700414 struct circ_buf *xmit = &sport->port.state->xmit;
Jiada Wang91a1a902014-12-09 18:11:36 +0900415 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400417 if (sport->port.x_char) {
418 /* Send next char */
419 writel(sport->port.x_char, sport->port.membase + URTX0);
Jiada Wang7e2fb5a2014-12-09 18:11:35 +0900420 sport->port.icount.tx++;
421 sport->port.x_char = 0;
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400422 return;
423 }
424
425 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
426 imx_stop_tx(&sport->port);
427 return;
428 }
429
Jiada Wang91a1a902014-12-09 18:11:36 +0900430 if (sport->dma_is_enabled) {
431 /*
432 * We've just sent a X-char Ensure the TX DMA is enabled
433 * and the TX IRQ is disabled.
434 **/
435 temp = readl(sport->port.membase + UCR1);
436 temp &= ~UCR1_TXMPTYEN;
437 if (sport->dma_is_txing) {
438 temp |= UCR1_TDMAEN;
439 writel(temp, sport->port.membase + UCR1);
440 } else {
441 writel(temp, sport->port.membase + UCR1);
442 imx_dma_tx(sport);
443 }
444 }
445
Volker Ernst4e4e6602010-10-13 11:03:57 +0200446 while (!uart_circ_empty(xmit) &&
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400447 !(readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /* send xmit->buf[xmit->tail]
449 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100450 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100451 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Fabian Godehardt977757312009-06-11 14:37:19 +0100455 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
456 uart_write_wakeup(&sport->port);
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100459 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800462static void dma_tx_callback(void *data)
463{
464 struct imx_port *sport = data;
465 struct scatterlist *sgl = &sport->tx_sgl[0];
466 struct circ_buf *xmit = &sport->port.state->xmit;
467 unsigned long flags;
Dirk Behmea2c718c2014-12-09 18:11:31 +0900468 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800469
Dirk Behme42f752b2014-12-09 18:11:28 +0900470 spin_lock_irqsave(&sport->port.lock, flags);
471
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800472 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
473
Dirk Behmea2c718c2014-12-09 18:11:31 +0900474 temp = readl(sport->port.membase + UCR1);
475 temp &= ~UCR1_TDMAEN;
476 writel(temp, sport->port.membase + UCR1);
477
Dirk Behme42f752b2014-12-09 18:11:28 +0900478 /* update the stat */
479 xmit->tail = (xmit->tail + sport->tx_bytes) & (UART_XMIT_SIZE - 1);
480 sport->port.icount.tx += sport->tx_bytes;
481
482 dev_dbg(sport->port.dev, "we finish the TX DMA.\n");
483
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800484 sport->dma_is_txing = 0;
485
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800486 spin_unlock_irqrestore(&sport->port.lock, flags);
487
Jiada Wangd64b8602014-12-09 18:11:29 +0900488 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
489 uart_write_wakeup(&sport->port);
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700490
491 if (waitqueue_active(&sport->dma_wait)) {
492 wake_up(&sport->dma_wait);
493 dev_dbg(sport->port.dev, "exit in %s.\n", __func__);
494 return;
495 }
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900496
497 spin_lock_irqsave(&sport->port.lock, flags);
498 if (!uart_circ_empty(xmit) && !uart_tx_stopped(&sport->port))
499 imx_dma_tx(sport);
500 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800501}
502
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800503static void imx_dma_tx(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800504{
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800505 struct circ_buf *xmit = &sport->port.state->xmit;
506 struct scatterlist *sgl = sport->tx_sgl;
507 struct dma_async_tx_descriptor *desc;
508 struct dma_chan *chan = sport->dma_chan_tx;
509 struct device *dev = sport->port.dev;
Dirk Behmea2c718c2014-12-09 18:11:31 +0900510 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800511 int ret;
512
Dirk Behme42f752b2014-12-09 18:11:28 +0900513 if (sport->dma_is_txing)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800514 return;
515
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800516 sport->tx_bytes = uart_circ_chars_pending(xmit);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800517
Dirk Behme7942f852014-12-09 18:11:25 +0900518 if (xmit->tail < xmit->head) {
519 sport->dma_tx_nents = 1;
520 sg_init_one(sgl, xmit->buf + xmit->tail, sport->tx_bytes);
521 } else {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800522 sport->dma_tx_nents = 2;
523 sg_init_table(sgl, 2);
524 sg_set_buf(sgl, xmit->buf + xmit->tail,
525 UART_XMIT_SIZE - xmit->tail);
526 sg_set_buf(sgl + 1, xmit->buf, xmit->head);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800527 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800528
529 ret = dma_map_sg(dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
530 if (ret == 0) {
531 dev_err(dev, "DMA mapping error for TX.\n");
532 return;
533 }
534 desc = dmaengine_prep_slave_sg(chan, sgl, sport->dma_tx_nents,
535 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT);
536 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +0900537 dma_unmap_sg(dev, sgl, sport->dma_tx_nents,
538 DMA_TO_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800539 dev_err(dev, "We cannot prepare for the TX slave dma!\n");
540 return;
541 }
542 desc->callback = dma_tx_callback;
543 desc->callback_param = sport;
544
545 dev_dbg(dev, "TX: prepare to send %lu bytes by DMA.\n",
546 uart_circ_chars_pending(xmit));
Dirk Behmea2c718c2014-12-09 18:11:31 +0900547
548 temp = readl(sport->port.membase + UCR1);
549 temp |= UCR1_TDMAEN;
550 writel(temp, sport->port.membase + UCR1);
551
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800552 /* fire it */
553 sport->dma_is_txing = 1;
554 dmaengine_submit(desc);
555 dma_async_issue_pending(chan);
556 return;
557}
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559/*
560 * interrupts disabled on entry
561 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100562static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100565 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100567 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100568 temp = readl(port->membase + UCR2);
569 if (port->rs485.flags & SER_RS485_RTS_ON_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100570 imx_port_rts_inactive(sport, &temp);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100571 else
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100572 imx_port_rts_active(sport, &temp);
Baruch Siach7d1cadc2016-02-29 14:34:10 +0200573 if (!(port->rs485.flags & SER_RS485_RX_DURING_TX))
574 temp &= ~UCR2_RXEN;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100575 writel(temp, port->membase + UCR2);
576
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100577 /* enable transmitter and shifter empty irq */
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100578 temp = readl(port->membase + UCR4);
579 temp |= UCR4_TCEN;
580 writel(temp, port->membase + UCR4);
581 }
582
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800583 if (!sport->dma_is_enabled) {
584 temp = readl(sport->port.membase + UCR1);
585 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800588 if (sport->dma_is_enabled) {
Jiada Wang91a1a902014-12-09 18:11:36 +0900589 if (sport->port.x_char) {
590 /* We have X-char to send, so enable TX IRQ and
591 * disable TX DMA to let TX interrupt to send X-char */
592 temp = readl(sport->port.membase + UCR1);
593 temp &= ~UCR1_TDMAEN;
594 temp |= UCR1_TXMPTYEN;
595 writel(temp, sport->port.membase + UCR1);
596 return;
597 }
598
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400599 if (!uart_circ_empty(&port->state->xmit) &&
600 !uart_tx_stopped(port))
601 imx_dma_tx(sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800602 return;
603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
David Howells7d12e782006-10-05 14:55:46 +0100606static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100607{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800608 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200609 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100610 unsigned long flags;
611
612 spin_lock_irqsave(&sport->port.lock, flags);
613
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100614 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200615 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100616 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700617 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100618
619 spin_unlock_irqrestore(&sport->port.lock, flags);
620 return IRQ_HANDLED;
621}
622
David Howells7d12e782006-10-05 14:55:46 +0100623static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800625 struct imx_port *sport = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 unsigned long flags;
627
Sachin Kamat82313e62013-01-07 10:25:02 +0530628 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 imx_transmit_buffer(sport);
Sachin Kamat82313e62013-01-07 10:25:02 +0530630 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return IRQ_HANDLED;
632}
633
David Howells7d12e782006-10-05 14:55:46 +0100634static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530637 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100638 struct tty_port *port = &sport->port.state->port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100639 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Sachin Kamat82313e62013-01-07 10:25:02 +0530641 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100643 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 flg = TTY_NORMAL;
645 sport->port.icount.rx++;
646
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100647 rx = readl(sport->port.membase + URXD0);
648
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100649 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100650 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100651 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100652 if (uart_handle_break(&sport->port))
653 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100656 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100657 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Hui Wang019dc9e2011-08-24 17:41:47 +0800659 if (unlikely(rx & URXD_ERR)) {
660 if (rx & URXD_BRK)
661 sport->port.icount.brk++;
662 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100663 sport->port.icount.parity++;
664 else if (rx & URXD_FRMERR)
665 sport->port.icount.frame++;
666 if (rx & URXD_OVRRUN)
667 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Sascha Hauer864eeed2008-04-17 08:39:22 +0100669 if (rx & sport->port.ignore_status_mask) {
670 if (++ignored > 100)
671 goto out;
672 continue;
673 }
674
Eric Nelson8d267fd2014-12-18 12:37:13 -0700675 rx &= (sport->port.read_status_mask | 0xFF);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100676
Hui Wang019dc9e2011-08-24 17:41:47 +0800677 if (rx & URXD_BRK)
678 flg = TTY_BREAK;
679 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100680 flg = TTY_PARITY;
681 else if (rx & URXD_FRMERR)
682 flg = TTY_FRAME;
683 if (rx & URXD_OVRRUN)
684 flg = TTY_OVERRUN;
685
686#ifdef SUPPORT_SYSRQ
687 sport->port.sysrq = 0;
688#endif
689 }
690
Jiada Wang55d86932014-12-09 18:11:22 +0900691 if (sport->port.ignore_status_mask & URXD_DUMMY_READ)
692 goto out;
693
Manfred Schlaegl9b289932015-06-20 19:25:35 +0200694 if (tty_insert_flip_char(port, rx, flg) == 0)
695 sport->port.icount.buf_overrun++;
Sascha Hauer864eeed2008-04-17 08:39:22 +0100696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530699 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100700 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800704static int start_rx_dma(struct imx_port *sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800705/*
706 * If the RXFIFO is filled with some data, and then we
707 * arise a DMA operation to receive them.
708 */
709static void imx_dma_rxint(struct imx_port *sport)
710{
711 unsigned long temp;
Jiada Wang73631812014-12-09 18:11:23 +0900712 unsigned long flags;
713
714 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800715
716 temp = readl(sport->port.membase + USR2);
717 if ((temp & USR2_RDR) && !sport->dma_is_rxing) {
718 sport->dma_is_rxing = 1;
719
Lucas Stach86a04ba2015-09-04 17:52:38 +0200720 /* disable the receiver ready and aging timer interrupts */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800721 temp = readl(sport->port.membase + UCR1);
722 temp &= ~(UCR1_RRDYEN);
723 writel(temp, sport->port.membase + UCR1);
724
Lucas Stach86a04ba2015-09-04 17:52:38 +0200725 temp = readl(sport->port.membase + UCR2);
726 temp &= ~(UCR2_ATEN);
727 writel(temp, sport->port.membase + UCR2);
728
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800729 /* tell the DMA to receive the data. */
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800730 start_rx_dma(sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800731 }
Jiada Wang73631812014-12-09 18:11:23 +0900732
733 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800734}
735
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100736/*
737 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
738 */
739static unsigned int imx_get_hwmctrl(struct imx_port *sport)
740{
741 unsigned int tmp = TIOCM_DSR;
742 unsigned usr1 = readl(sport->port.membase + USR1);
743
744 if (usr1 & USR1_RTSS)
745 tmp |= TIOCM_CTS;
746
747 /* in DCE mode DCDIN is always 0 */
748 if (!(usr1 & USR2_DCDIN))
749 tmp |= TIOCM_CAR;
750
751 if (sport->dte_mode)
752 if (!(readl(sport->port.membase + USR2) & USR2_RIIN))
753 tmp |= TIOCM_RI;
754
755 return tmp;
756}
757
758/*
759 * Handle any change of modem status signal since we were last called.
760 */
761static void imx_mctrl_check(struct imx_port *sport)
762{
763 unsigned int status, changed;
764
765 status = imx_get_hwmctrl(sport);
766 changed = status ^ sport->old_status;
767
768 if (changed == 0)
769 return;
770
771 sport->old_status = status;
772
773 if (changed & TIOCM_RI && status & TIOCM_RI)
774 sport->port.icount.rng++;
775 if (changed & TIOCM_DSR)
776 sport->port.icount.dsr++;
777 if (changed & TIOCM_CAR)
778 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
779 if (changed & TIOCM_CTS)
780 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
781
782 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
783}
784
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200785static irqreturn_t imx_int(int irq, void *dev_id)
786{
787 struct imx_port *sport = dev_id;
788 unsigned int sts;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200789 unsigned int sts2;
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100790 irqreturn_t ret = IRQ_NONE;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200791
792 sts = readl(sport->port.membase + USR1);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100793 sts2 = readl(sport->port.membase + USR2);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200794
Lucas Stach86a04ba2015-09-04 17:52:38 +0200795 if (sts & (USR1_RRDY | USR1_AGTIM)) {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800796 if (sport->dma_is_enabled)
797 imx_dma_rxint(sport);
798 else
799 imx_rxint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100800 ret = IRQ_HANDLED;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800801 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200802
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100803 if ((sts & USR1_TRDY &&
804 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN) ||
805 (sts2 & USR2_TXDC &&
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100806 readl(sport->port.membase + UCR4) & UCR4_TCEN)) {
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200807 imx_txint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100808 ret = IRQ_HANDLED;
809 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200810
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100811 if (sts & USR1_DTRD) {
812 unsigned long flags;
813
814 if (sts & USR1_DTRD)
815 writel(USR1_DTRD, sport->port.membase + USR1);
816
817 spin_lock_irqsave(&sport->port.lock, flags);
818 imx_mctrl_check(sport);
819 spin_unlock_irqrestore(&sport->port.lock, flags);
820
821 ret = IRQ_HANDLED;
822 }
823
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100824 if (sts & USR1_RTSD) {
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200825 imx_rtsint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100826 ret = IRQ_HANDLED;
827 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200828
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100829 if (sts & USR1_AWAKE) {
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200830 writel(USR1_AWAKE, sport->port.membase + USR1);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100831 ret = IRQ_HANDLED;
832 }
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200833
Alexander Steinf1f836e2013-05-14 17:06:07 +0200834 if (sts2 & USR2_ORE) {
Alexander Steinf1f836e2013-05-14 17:06:07 +0200835 sport->port.icount.overrun++;
Uwe Kleine-König91555ce2015-02-24 11:17:05 +0100836 writel(USR2_ORE, sport->port.membase + USR2);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100837 ret = IRQ_HANDLED;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200838 }
839
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100840 return ret;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200841}
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843/*
844 * Return TIOCSER_TEMT when transmitter is not busy.
845 */
846static unsigned int imx_tx_empty(struct uart_port *port)
847{
848 struct imx_port *sport = (struct imx_port *)port;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800849 unsigned int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Huang Shijie1ce43e52013-10-11 18:30:59 +0800851 ret = (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
852
853 /* If the TX DMA is working, return 0. */
854 if (sport->dma_is_enabled && sport->dma_is_txing)
855 ret = 0;
856
857 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100860static unsigned int imx_get_mctrl(struct uart_port *port)
861{
862 struct imx_port *sport = (struct imx_port *)port;
863 unsigned int ret = imx_get_hwmctrl(sport);
864
865 mctrl_gpio_get(sport->gpios, &ret);
866
867 return ret;
868}
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
871{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100872 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100873 unsigned long temp;
874
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100875 if (!(port->rs485.flags & SER_RS485_ENABLED)) {
876 temp = readl(sport->port.membase + UCR2);
877 temp &= ~(UCR2_CTS | UCR2_CTSC);
878 if (mctrl & TIOCM_RTS)
879 temp |= UCR2_CTS | UCR2_CTSC;
880 writel(temp, sport->port.membase + UCR2);
881 }
Huang Shijie6b471a92013-11-29 17:29:24 +0800882
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200883 temp = readl(sport->port.membase + UCR3) & ~UCR3_DSR;
884 if (!(mctrl & TIOCM_DTR))
885 temp |= UCR3_DSR;
886 writel(temp, sport->port.membase + UCR3);
887
Huang Shijie6b471a92013-11-29 17:29:24 +0800888 temp = readl(sport->port.membase + uts_reg(sport)) & ~UTS_LOOP;
889 if (mctrl & TIOCM_LOOP)
890 temp |= UTS_LOOP;
891 writel(temp, sport->port.membase + uts_reg(sport));
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100892
893 mctrl_gpio_set(sport->gpios, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
896/*
897 * Interrupts always disabled.
898 */
899static void imx_break_ctl(struct uart_port *port, int break_state)
900{
901 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100902 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 spin_lock_irqsave(&sport->port.lock, flags);
905
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100906 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
907
Sachin Kamat82313e62013-01-07 10:25:02 +0530908 if (break_state != 0)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100909 temp |= UCR1_SNDBRK;
910
911 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 spin_unlock_irqrestore(&sport->port.lock, flags);
914}
915
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200916/*
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200917 * This is our per-port timeout handler, for checking the
918 * modem status signals.
919 */
920static void imx_timeout(unsigned long data)
921{
922 struct imx_port *sport = (struct imx_port *)data;
923 unsigned long flags;
924
925 if (sport->port.state) {
926 spin_lock_irqsave(&sport->port.lock, flags);
927 imx_mctrl_check(sport);
928 spin_unlock_irqrestore(&sport->port.lock, flags);
929
930 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
931 }
932}
933
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800934#define RX_BUF_SIZE (PAGE_SIZE)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800935static void imx_rx_dma_done(struct imx_port *sport)
936{
937 unsigned long temp;
Jiada Wang73631812014-12-09 18:11:23 +0900938 unsigned long flags;
939
940 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800941
Lucas Stach86a04ba2015-09-04 17:52:38 +0200942 /* re-enable interrupts to get notified when new symbols are incoming */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800943 temp = readl(sport->port.membase + UCR1);
944 temp |= UCR1_RRDYEN;
945 writel(temp, sport->port.membase + UCR1);
946
Lucas Stach86a04ba2015-09-04 17:52:38 +0200947 temp = readl(sport->port.membase + UCR2);
948 temp |= UCR2_ATEN;
949 writel(temp, sport->port.membase + UCR2);
950
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800951 sport->dma_is_rxing = 0;
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700952
953 /* Is the shutdown waiting for us? */
954 if (waitqueue_active(&sport->dma_wait))
955 wake_up(&sport->dma_wait);
Jiada Wang73631812014-12-09 18:11:23 +0900956
957 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800958}
959
960/*
Lucas Stach905c0de2015-09-04 17:52:41 +0200961 * There are two kinds of RX DMA interrupts(such as in the MX6Q):
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800962 * [1] the RX DMA buffer is full.
Lucas Stach905c0de2015-09-04 17:52:41 +0200963 * [2] the aging timer expires
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800964 *
Lucas Stach905c0de2015-09-04 17:52:41 +0200965 * Condition [2] is triggered when a character has been sitting in the FIFO
966 * for at least 8 byte durations.
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800967 */
968static void dma_rx_callback(void *data)
969{
970 struct imx_port *sport = data;
971 struct dma_chan *chan = sport->dma_chan_rx;
972 struct scatterlist *sgl = &sport->rx_sgl;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800973 struct tty_port *port = &sport->port.state->port;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800974 struct dma_tx_state state;
975 enum dma_status status;
976 unsigned int count;
977
978 /* unmap it first */
979 dma_unmap_sg(sport->port.dev, sgl, 1, DMA_FROM_DEVICE);
980
Huang Shijief0ef8832013-10-11 18:31:01 +0800981 status = dmaengine_tx_status(chan, (dma_cookie_t)0, &state);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800982 count = RX_BUF_SIZE - state.residue;
Philipp Zabel392bcee2015-05-19 10:54:09 +0200983
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800984 dev_dbg(sport->port.dev, "We get %d bytes.\n", count);
985
986 if (count) {
Manfred Schlaegl9b289932015-06-20 19:25:35 +0200987 if (!(sport->port.ignore_status_mask & URXD_DUMMY_READ)) {
988 int bytes = tty_insert_flip_string(port, sport->rx_buf,
989 count);
990
991 if (bytes != count)
992 sport->port.icount.buf_overrun++;
993 }
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800994 tty_flip_buffer_push(port);
Lucas Stachabc78822015-09-04 17:52:43 +0200995 sport->port.icount.rx += count;
Robin Gongee5e7c12014-12-09 18:11:33 +0900996 }
Lucas Stach976b39c2015-09-04 17:52:39 +0200997
998 /*
999 * Restart RX DMA directly if more data is available in order to skip
1000 * the roundtrip through the IRQ handler. If there is some data already
1001 * in the FIFO, DMA needs to be restarted soon anyways.
1002 *
1003 * Otherwise stop the DMA and reactivate FIFO IRQs to restart DMA once
1004 * data starts to arrive again.
1005 */
1006 if (readl(sport->port.membase + USR2) & USR2_RDR)
1007 start_rx_dma(sport);
1008 else
1009 imx_rx_dma_done(sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001010}
1011
1012static int start_rx_dma(struct imx_port *sport)
1013{
1014 struct scatterlist *sgl = &sport->rx_sgl;
1015 struct dma_chan *chan = sport->dma_chan_rx;
1016 struct device *dev = sport->port.dev;
1017 struct dma_async_tx_descriptor *desc;
1018 int ret;
1019
1020 sg_init_one(sgl, sport->rx_buf, RX_BUF_SIZE);
1021 ret = dma_map_sg(dev, sgl, 1, DMA_FROM_DEVICE);
1022 if (ret == 0) {
1023 dev_err(dev, "DMA mapping error for RX.\n");
1024 return -EINVAL;
1025 }
1026 desc = dmaengine_prep_slave_sg(chan, sgl, 1, DMA_DEV_TO_MEM,
1027 DMA_PREP_INTERRUPT);
1028 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +09001029 dma_unmap_sg(dev, sgl, 1, DMA_FROM_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001030 dev_err(dev, "We cannot prepare for the RX slave dma!\n");
1031 return -EINVAL;
1032 }
1033 desc->callback = dma_rx_callback;
1034 desc->callback_param = sport;
1035
1036 dev_dbg(dev, "RX: prepare for the DMA.\n");
1037 dmaengine_submit(desc);
1038 dma_async_issue_pending(chan);
1039 return 0;
1040}
1041
Lucas Stachcc323822015-09-04 17:52:37 +02001042#define TXTL_DEFAULT 2 /* reset default */
1043#define RXTL_DEFAULT 1 /* reset default */
Lucas Stach184bd702015-09-04 17:52:40 +02001044#define TXTL_DMA 8 /* DMA burst setting */
1045#define RXTL_DMA 9 /* DMA burst setting */
Lucas Stachcc323822015-09-04 17:52:37 +02001046
1047static void imx_setup_ufcr(struct imx_port *sport,
1048 unsigned char txwl, unsigned char rxwl)
1049{
1050 unsigned int val;
1051
1052 /* set receiver / transmitter trigger level */
1053 val = readl(sport->port.membase + UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
1054 val |= txwl << UFCR_TXTL_SHF | rxwl;
1055 writel(val, sport->port.membase + UFCR);
1056}
1057
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001058static void imx_uart_dma_exit(struct imx_port *sport)
1059{
1060 if (sport->dma_chan_rx) {
1061 dma_release_channel(sport->dma_chan_rx);
1062 sport->dma_chan_rx = NULL;
1063
1064 kfree(sport->rx_buf);
1065 sport->rx_buf = NULL;
1066 }
1067
1068 if (sport->dma_chan_tx) {
1069 dma_release_channel(sport->dma_chan_tx);
1070 sport->dma_chan_tx = NULL;
1071 }
1072
1073 sport->dma_is_inited = 0;
1074}
1075
1076static int imx_uart_dma_init(struct imx_port *sport)
1077{
Huang Shijieb09c74a2013-08-29 16:29:25 +08001078 struct dma_slave_config slave_config = {};
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001079 struct device *dev = sport->port.dev;
1080 int ret;
1081
1082 /* Prepare for RX : */
1083 sport->dma_chan_rx = dma_request_slave_channel(dev, "rx");
1084 if (!sport->dma_chan_rx) {
1085 dev_dbg(dev, "cannot get the DMA channel.\n");
1086 ret = -EINVAL;
1087 goto err;
1088 }
1089
1090 slave_config.direction = DMA_DEV_TO_MEM;
1091 slave_config.src_addr = sport->port.mapbase + URXD0;
1092 slave_config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001093 /* one byte less than the watermark level to enable the aging timer */
1094 slave_config.src_maxburst = RXTL_DMA - 1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001095 ret = dmaengine_slave_config(sport->dma_chan_rx, &slave_config);
1096 if (ret) {
1097 dev_err(dev, "error in RX dma configuration.\n");
1098 goto err;
1099 }
1100
1101 sport->rx_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
1102 if (!sport->rx_buf) {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001103 ret = -ENOMEM;
1104 goto err;
1105 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001106
1107 /* Prepare for TX : */
1108 sport->dma_chan_tx = dma_request_slave_channel(dev, "tx");
1109 if (!sport->dma_chan_tx) {
1110 dev_err(dev, "cannot get the TX DMA channel!\n");
1111 ret = -EINVAL;
1112 goto err;
1113 }
1114
1115 slave_config.direction = DMA_MEM_TO_DEV;
1116 slave_config.dst_addr = sport->port.mapbase + URTX0;
1117 slave_config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001118 slave_config.dst_maxburst = TXTL_DMA;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001119 ret = dmaengine_slave_config(sport->dma_chan_tx, &slave_config);
1120 if (ret) {
1121 dev_err(dev, "error in TX dma configuration.");
1122 goto err;
1123 }
1124
1125 sport->dma_is_inited = 1;
1126
1127 return 0;
1128err:
1129 imx_uart_dma_exit(sport);
1130 return ret;
1131}
1132
1133static void imx_enable_dma(struct imx_port *sport)
1134{
1135 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001136
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -07001137 init_waitqueue_head(&sport->dma_wait);
1138
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001139 /* set UCR1 */
1140 temp = readl(sport->port.membase + UCR1);
Lucas Stach905c0de2015-09-04 17:52:41 +02001141 temp |= UCR1_RDMAEN | UCR1_TDMAEN | UCR1_ATDMAEN;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001142 writel(temp, sport->port.membase + UCR1);
1143
Lucas Stach86a04ba2015-09-04 17:52:38 +02001144 temp = readl(sport->port.membase + UCR2);
1145 temp |= UCR2_ATEN;
1146 writel(temp, sport->port.membase + UCR2);
1147
Lucas Stach184bd702015-09-04 17:52:40 +02001148 imx_setup_ufcr(sport, TXTL_DMA, RXTL_DMA);
1149
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001150 sport->dma_is_enabled = 1;
1151}
1152
1153static void imx_disable_dma(struct imx_port *sport)
1154{
1155 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001156
1157 /* clear UCR1 */
1158 temp = readl(sport->port.membase + UCR1);
1159 temp &= ~(UCR1_RDMAEN | UCR1_TDMAEN | UCR1_ATDMAEN);
1160 writel(temp, sport->port.membase + UCR1);
1161
1162 /* clear UCR2 */
1163 temp = readl(sport->port.membase + UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001164 temp &= ~(UCR2_CTSC | UCR2_CTS | UCR2_ATEN);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001165 writel(temp, sport->port.membase + UCR2);
1166
Lucas Stach184bd702015-09-04 17:52:40 +02001167 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
1168
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001169 sport->dma_is_enabled = 0;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001170}
1171
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001172/* half the RX buffer size */
1173#define CTSTL 16
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175static int imx_startup(struct uart_port *port)
1176{
1177 struct imx_port *sport = (struct imx_port *)port;
Fabio Estevam458e2c82015-07-27 15:15:59 -03001178 int retval, i;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001179 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Huang Shijie1cf93e02013-06-28 13:39:42 +08001181 retval = clk_prepare_enable(sport->clk_per);
1182 if (retval)
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001183 return retval;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001184 retval = clk_prepare_enable(sport->clk_ipg);
1185 if (retval) {
1186 clk_disable_unprepare(sport->clk_per);
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001187 return retval;
Huang Shijie0c375502013-06-09 10:01:19 +08001188 }
Huang Shijie28eb4272013-06-04 09:59:33 +08001189
Lucas Stachcc323822015-09-04 17:52:37 +02001190 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 /* disable the DREN bit (Data Ready interrupt enable) before
1193 * requesting IRQs
1194 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001195 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001196
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001197 /* set the trigger level for CTS */
Sachin Kamat82313e62013-01-07 10:25:02 +05301198 temp &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
1199 temp |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001200
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001201 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Lucas Stach7e115772015-09-04 17:52:42 +02001203 /* Can we enable the DMA support? */
1204 if (is_imx6q_uart(sport) && !uart_console(port) &&
1205 !sport->dma_is_inited)
1206 imx_uart_dma_init(sport);
1207
Jiada Wang53794182015-04-13 18:31:43 +09001208 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijie772f8992014-05-21 08:56:28 +08001209 /* Reset fifo's and state machines */
Fabio Estevam458e2c82015-07-27 15:15:59 -03001210 i = 100;
1211
1212 temp = readl(sport->port.membase + UCR2);
1213 temp &= ~UCR2_SRST;
1214 writel(temp, sport->port.membase + UCR2);
1215
1216 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) && (--i > 0))
1217 udelay(1);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /*
1220 * Finally, clear and enable interrupts
1221 */
Uwe Kleine-König27e16502016-03-24 14:24:25 +01001222 writel(USR1_RTSD | USR1_DTRD, sport->port.membase + USR1);
Uwe Kleine-König91555ce2015-02-24 11:17:05 +01001223 writel(USR2_ORE, sport->port.membase + USR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Lucas Stach7e115772015-09-04 17:52:42 +02001225 if (sport->dma_is_inited && !sport->dma_is_enabled)
1226 imx_enable_dma(sport);
1227
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001228 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +01001229 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001230
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001231 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Jiada Wang6f026d6b2014-12-09 18:11:34 +09001233 temp = readl(sport->port.membase + UCR4);
1234 temp |= UCR4_OREN;
1235 writel(temp, sport->port.membase + UCR4);
1236
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001237 temp = readl(sport->port.membase + UCR2);
1238 temp |= (UCR2_RXEN | UCR2_TXEN);
Lucas Stachbff09b02013-05-30 15:47:04 +02001239 if (!sport->have_rtscts)
1240 temp |= UCR2_IRTS;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001241 /*
1242 * make sure the edge sensitive RTS-irq is disabled,
1243 * we're using RTSD instead.
1244 */
1245 if (!is_imx1_uart(sport))
1246 temp &= ~UCR2_RTSEN;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001247 writel(temp, sport->port.membase + UCR2);
1248
Huang Shijiea496e622013-07-08 17:14:17 +08001249 if (!is_imx1_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001250 temp = readl(sport->port.membase + UCR3);
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001251
1252 /*
1253 * The effect of RI and DCD differs depending on the UFCR_DCEDTE
1254 * bit. In DCE mode they control the outputs, in DTE mode they
1255 * enable the respective irqs. At least the DCD irq cannot be
1256 * cleared on i.MX25 at least, so it's not usable and must be
1257 * disabled. I don't have test hardware to check if RI has the
1258 * same problem but I consider this likely so it's disabled for
1259 * now, too.
1260 */
1261 temp |= IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP |
Uwe Kleine-König27e16502016-03-24 14:24:25 +01001262 UCR3_DTRDEN | UCR3_RI | UCR3_DCD;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001263
1264 if (sport->dte_mode)
1265 temp &= ~(UCR3_RI | UCR3_DCD);
1266
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001267 writel(temp, sport->port.membase + UCR3);
1268 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +02001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 /*
1271 * Enable modem status interrupts
1272 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 imx_enable_ms(&sport->port);
Sachin Kamat82313e62013-01-07 10:25:02 +05301274 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279static void imx_shutdown(struct uart_port *port)
1280{
1281 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001282 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001283 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001285 if (sport->dma_is_enabled) {
Huang Shijiea4688bc2014-09-19 15:42:57 +08001286 int ret;
1287
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -07001288 /* We have to wait for the DMA to finish. */
Huang Shijiea4688bc2014-09-19 15:42:57 +08001289 ret = wait_event_interruptible(sport->dma_wait,
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -07001290 !sport->dma_is_rxing && !sport->dma_is_txing);
Huang Shijiea4688bc2014-09-19 15:42:57 +08001291 if (ret != 0) {
1292 sport->dma_is_rxing = 0;
1293 sport->dma_is_txing = 0;
1294 dmaengine_terminate_all(sport->dma_chan_tx);
1295 dmaengine_terminate_all(sport->dma_chan_rx);
1296 }
Jiada Wang73631812014-12-09 18:11:23 +09001297 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijiea4688bc2014-09-19 15:42:57 +08001298 imx_stop_tx(port);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001299 imx_stop_rx(port);
1300 imx_disable_dma(sport);
Jiada Wang73631812014-12-09 18:11:23 +09001301 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001302 imx_uart_dma_exit(sport);
1303 }
1304
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001305 mctrl_gpio_disable_ms(sport->gpios);
1306
Xinyu Chen9ec18822012-08-27 09:36:51 +02001307 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001308 temp = readl(sport->port.membase + UCR2);
1309 temp &= ~(UCR2_TXEN);
1310 writel(temp, sport->port.membase + UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001311 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /*
1314 * Stop our timer.
1315 */
1316 del_timer_sync(&sport->timer);
1317
1318 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 * Disable all interrupts, port and break condition.
1320 */
1321
Xinyu Chen9ec18822012-08-27 09:36:51 +02001322 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001323 temp = readl(sport->port.membase + UCR1);
1324 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001325
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001326 writel(temp, sport->port.membase + UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001327 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +08001328
Huang Shijie1cf93e02013-06-28 13:39:42 +08001329 clk_disable_unprepare(sport->clk_per);
1330 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001333static void imx_flush_buffer(struct uart_port *port)
1334{
1335 struct imx_port *sport = (struct imx_port *)port;
Dirk Behme82e86ae2014-12-09 18:11:27 +09001336 struct scatterlist *sgl = &sport->tx_sgl[0];
Dirk Behmea2c718c2014-12-09 18:11:31 +09001337 unsigned long temp;
Fabio Estevam4f86a952015-02-07 15:46:41 -02001338 int i = 100, ubir, ubmr, uts;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001339
Dirk Behme82e86ae2014-12-09 18:11:27 +09001340 if (!sport->dma_chan_tx)
1341 return;
1342
1343 sport->tx_bytes = 0;
1344 dmaengine_terminate_all(sport->dma_chan_tx);
1345 if (sport->dma_is_txing) {
1346 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents,
1347 DMA_TO_DEVICE);
Dirk Behmea2c718c2014-12-09 18:11:31 +09001348 temp = readl(sport->port.membase + UCR1);
1349 temp &= ~UCR1_TDMAEN;
1350 writel(temp, sport->port.membase + UCR1);
Dirk Behme82e86ae2014-12-09 18:11:27 +09001351 sport->dma_is_txing = false;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001352 }
Fabio Estevam934084a2015-01-13 10:00:26 -02001353
1354 /*
1355 * According to the Reference Manual description of the UART SRST bit:
1356 * "Reset the transmit and receive state machines,
1357 * all FIFOs and register USR1, USR2, UBIR, UBMR, UBRC, URXD, UTXD
1358 * and UTS[6-3]". As we don't need to restore the old values from
1359 * USR1, USR2, URXD, UTXD, only save/restore the other four registers
1360 */
1361 ubir = readl(sport->port.membase + UBIR);
1362 ubmr = readl(sport->port.membase + UBMR);
Fabio Estevam934084a2015-01-13 10:00:26 -02001363 uts = readl(sport->port.membase + IMX21_UTS);
1364
1365 temp = readl(sport->port.membase + UCR2);
1366 temp &= ~UCR2_SRST;
1367 writel(temp, sport->port.membase + UCR2);
1368
1369 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) && (--i > 0))
1370 udelay(1);
1371
1372 /* Restore the registers */
1373 writel(ubir, sport->port.membase + UBIR);
1374 writel(ubmr, sport->port.membase + UBMR);
Fabio Estevam934084a2015-01-13 10:00:26 -02001375 writel(uts, sport->port.membase + IMX21_UTS);
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001376}
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378static void
Alan Cox606d0992006-12-08 02:38:45 -08001379imx_set_termios(struct uart_port *port, struct ktermios *termios,
1380 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
1382 struct imx_port *sport = (struct imx_port *)port;
1383 unsigned long flags;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001384 unsigned long ucr2, old_ucr1, old_ucr2;
1385 unsigned int baud, quot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001387 unsigned long div, ufcr;
Oskar Schirmer534fca02009-06-11 14:52:23 +01001388 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001389 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 * We only support CS7 and CS8.
1393 */
1394 while ((termios->c_cflag & CSIZE) != CS7 &&
1395 (termios->c_cflag & CSIZE) != CS8) {
1396 termios->c_cflag &= ~CSIZE;
1397 termios->c_cflag |= old_csize;
1398 old_csize = CS8;
1399 }
1400
1401 if ((termios->c_cflag & CSIZE) == CS8)
1402 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
1403 else
1404 ucr2 = UCR2_SRST | UCR2_IRTS;
1405
1406 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +05301407 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +01001408 ucr2 &= ~UCR2_IRTS;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001409
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001410 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001411 /*
1412 * RTS is mandatory for rs485 operation, so keep
1413 * it under manual control and keep transmitter
1414 * disabled.
1415 */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001416 if (port->rs485.flags &
1417 SER_RS485_RTS_AFTER_SEND)
1418 imx_port_rts_inactive(sport, &ucr2);
1419 else
1420 imx_port_rts_active(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001421 } else {
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001422 imx_port_rts_auto(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001423 }
Sascha Hauer5b802342006-05-04 14:07:42 +01001424 } else {
1425 termios->c_cflag &= ~CRTSCTS;
1426 }
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001427 } else if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001428 /* disable transmitter */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001429 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
1430 imx_port_rts_inactive(sport, &ucr2);
1431 else
1432 imx_port_rts_active(sport, &ucr2);
1433 }
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 if (termios->c_cflag & CSTOPB)
1437 ucr2 |= UCR2_STPB;
1438 if (termios->c_cflag & PARENB) {
1439 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +00001440 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 ucr2 |= UCR2_PROE;
1442 }
1443
Eric Miao995234d2011-12-23 05:39:27 +08001444 del_timer_sync(&sport->timer);
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 /*
1447 * Ask the core to calculate the divisor for us.
1448 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001449 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 quot = uart_get_divisor(port, baud);
1451
1452 spin_lock_irqsave(&sport->port.lock, flags);
1453
1454 sport->port.read_status_mask = 0;
1455 if (termios->c_iflag & INPCK)
1456 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
1457 if (termios->c_iflag & (BRKINT | PARMRK))
1458 sport->port.read_status_mask |= URXD_BRK;
1459
1460 /*
1461 * Characters to ignore
1462 */
1463 sport->port.ignore_status_mask = 0;
1464 if (termios->c_iflag & IGNPAR)
Eric Nelson865cea82014-12-18 12:37:14 -07001465 sport->port.ignore_status_mask |= URXD_PRERR | URXD_FRMERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (termios->c_iflag & IGNBRK) {
1467 sport->port.ignore_status_mask |= URXD_BRK;
1468 /*
1469 * If we're ignoring parity and break indicators,
1470 * ignore overruns too (for real raw support).
1471 */
1472 if (termios->c_iflag & IGNPAR)
1473 sport->port.ignore_status_mask |= URXD_OVRRUN;
1474 }
1475
Jiada Wang55d86932014-12-09 18:11:22 +09001476 if ((termios->c_cflag & CREAD) == 0)
1477 sport->port.ignore_status_mask |= URXD_DUMMY_READ;
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 /*
1480 * Update the per-port timeout.
1481 */
1482 uart_update_timeout(port, termios->c_cflag, baud);
1483
1484 /*
1485 * disable interrupts and drain transmitter
1486 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001487 old_ucr1 = readl(sport->port.membase + UCR1);
1488 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1489 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Sachin Kamat82313e62013-01-07 10:25:02 +05301491 while (!(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 barrier();
1493
1494 /* then, disable everything */
Lucas Stach86a04ba2015-09-04 17:52:38 +02001495 old_ucr2 = readl(sport->port.membase + UCR2);
1496 writel(old_ucr2 & ~(UCR2_TXEN | UCR2_RXEN),
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001497 sport->port.membase + UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001498 old_ucr2 &= (UCR2_TXEN | UCR2_RXEN | UCR2_ATEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001500 /* custom-baudrate handling */
1501 div = sport->port.uartclk / (baud * 16);
1502 if (baud == 38400 && quot != div)
1503 baud = sport->port.uartclk / (quot * 16);
Hubert Feurstein09bd00f2013-07-18 18:52:49 +02001504
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001505 div = sport->port.uartclk / (baud * 16);
1506 if (div > 7)
1507 div = 7;
1508 if (!div)
1509 div = 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001510
Oskar Schirmer534fca02009-06-11 14:52:23 +01001511 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1512 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001513
Alan Coxeab4f5a2010-06-01 22:52:52 +02001514 tdiv64 = sport->port.uartclk;
1515 tdiv64 *= num;
1516 do_div(tdiv64, denom * 16 * div);
1517 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001518 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001519
Oskar Schirmer534fca02009-06-11 14:52:23 +01001520 num -= 1;
1521 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001522
1523 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001524 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Huang Shijie20ff2fe2013-05-30 14:07:12 +08001525 if (sport->dte_mode)
1526 ufcr |= UFCR_DCEDTE;
Sascha Hauer036bb152008-07-05 10:02:44 +02001527 writel(ufcr, sport->port.membase + UFCR);
1528
Oskar Schirmer534fca02009-06-11 14:52:23 +01001529 writel(num, sport->port.membase + UBIR);
1530 writel(denom, sport->port.membase + UBMR);
1531
Huang Shijiea496e622013-07-08 17:14:17 +08001532 if (!is_imx1_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001533 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001534 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001536 writel(old_ucr1, sport->port.membase + UCR1);
1537
1538 /* set the parity, stop bits and data size */
Lucas Stach86a04ba2015-09-04 17:52:38 +02001539 writel(ucr2 | old_ucr2, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1542 imx_enable_ms(&sport->port);
1543
1544 spin_unlock_irqrestore(&sport->port.lock, flags);
1545}
1546
1547static const char *imx_type(struct uart_port *port)
1548{
1549 struct imx_port *sport = (struct imx_port *)port;
1550
1551 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1552}
1553
1554/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 * Configure/autoconfigure the port.
1556 */
1557static void imx_config_port(struct uart_port *port, int flags)
1558{
1559 struct imx_port *sport = (struct imx_port *)port;
1560
Alexander Shiyanda82f992014-02-22 16:01:33 +04001561 if (flags & UART_CONFIG_TYPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 sport->port.type = PORT_IMX;
1563}
1564
1565/*
1566 * Verify the new serial_struct (for TIOCSSERIAL).
1567 * The only change we allow are to the flags and type, and
1568 * even then only between PORT_IMX and PORT_UNKNOWN
1569 */
1570static int
1571imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1572{
1573 struct imx_port *sport = (struct imx_port *)port;
1574 int ret = 0;
1575
1576 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1577 ret = -EINVAL;
1578 if (sport->port.irq != ser->irq)
1579 ret = -EINVAL;
1580 if (ser->io_type != UPIO_MEM)
1581 ret = -EINVAL;
1582 if (sport->port.uartclk / 16 != ser->baud_base)
1583 ret = -EINVAL;
Olof Johanssona50c44c2013-09-11 21:27:53 -07001584 if (sport->port.mapbase != (unsigned long)ser->iomem_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 ret = -EINVAL;
1586 if (sport->port.iobase != ser->port)
1587 ret = -EINVAL;
1588 if (ser->hub6 != 0)
1589 ret = -EINVAL;
1590 return ret;
1591}
1592
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001593#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001594
1595static int imx_poll_init(struct uart_port *port)
1596{
1597 struct imx_port *sport = (struct imx_port *)port;
1598 unsigned long flags;
1599 unsigned long temp;
1600 int retval;
1601
1602 retval = clk_prepare_enable(sport->clk_ipg);
1603 if (retval)
1604 return retval;
1605 retval = clk_prepare_enable(sport->clk_per);
1606 if (retval)
1607 clk_disable_unprepare(sport->clk_ipg);
1608
Lucas Stachcc323822015-09-04 17:52:37 +02001609 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001610
1611 spin_lock_irqsave(&sport->port.lock, flags);
1612
1613 temp = readl(sport->port.membase + UCR1);
1614 if (is_imx1_uart(sport))
1615 temp |= IMX1_UCR1_UARTCLKEN;
1616 temp |= UCR1_UARTEN | UCR1_RRDYEN;
1617 temp &= ~(UCR1_TXMPTYEN | UCR1_RTSDEN);
1618 writel(temp, sport->port.membase + UCR1);
1619
1620 temp = readl(sport->port.membase + UCR2);
1621 temp |= UCR2_RXEN;
1622 writel(temp, sport->port.membase + UCR2);
1623
1624 spin_unlock_irqrestore(&sport->port.lock, flags);
1625
1626 return 0;
1627}
1628
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001629static int imx_poll_get_char(struct uart_port *port)
1630{
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001631 if (!(readl_relaxed(port->membase + USR2) & USR2_RDR))
Dirk Behme26c47412014-09-03 12:33:53 +01001632 return NO_POLL_CHAR;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001633
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001634 return readl_relaxed(port->membase + URXD0) & URXD_RX_DATA;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001635}
1636
1637static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1638{
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001639 unsigned int status;
1640
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001641 /* drain */
1642 do {
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001643 status = readl_relaxed(port->membase + USR1);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001644 } while (~status & USR1_TRDY);
1645
1646 /* write */
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001647 writel_relaxed(c, port->membase + URTX0);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001648
1649 /* flush */
1650 do {
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001651 status = readl_relaxed(port->membase + USR2);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001652 } while (~status & USR2_TXDC);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001653}
1654#endif
1655
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001656static int imx_rs485_config(struct uart_port *port,
1657 struct serial_rs485 *rs485conf)
1658{
1659 struct imx_port *sport = (struct imx_port *)port;
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001660 unsigned long temp;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001661
1662 /* unimplemented */
1663 rs485conf->delay_rts_before_send = 0;
1664 rs485conf->delay_rts_after_send = 0;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001665
1666 /* RTS is required to control the transmitter */
1667 if (!sport->have_rtscts)
1668 rs485conf->flags &= ~SER_RS485_ENABLED;
1669
1670 if (rs485conf->flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001671 /* disable transmitter */
1672 temp = readl(sport->port.membase + UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001673 if (rs485conf->flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001674 imx_port_rts_inactive(sport, &temp);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001675 else
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001676 imx_port_rts_active(sport, &temp);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001677 writel(temp, sport->port.membase + UCR2);
1678 }
1679
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001680 /* Make sure Rx is enabled in case Tx is active with Rx disabled */
1681 if (!(rs485conf->flags & SER_RS485_ENABLED) ||
1682 rs485conf->flags & SER_RS485_RX_DURING_TX) {
1683 temp = readl(sport->port.membase + UCR2);
1684 temp |= UCR2_RXEN;
1685 writel(temp, sport->port.membase + UCR2);
1686 }
1687
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001688 port->rs485 = *rs485conf;
1689
1690 return 0;
1691}
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693static struct uart_ops imx_pops = {
1694 .tx_empty = imx_tx_empty,
1695 .set_mctrl = imx_set_mctrl,
1696 .get_mctrl = imx_get_mctrl,
1697 .stop_tx = imx_stop_tx,
1698 .start_tx = imx_start_tx,
1699 .stop_rx = imx_stop_rx,
1700 .enable_ms = imx_enable_ms,
1701 .break_ctl = imx_break_ctl,
1702 .startup = imx_startup,
1703 .shutdown = imx_shutdown,
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001704 .flush_buffer = imx_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 .set_termios = imx_set_termios,
1706 .type = imx_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 .config_port = imx_config_port,
1708 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001709#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001710 .poll_init = imx_poll_init,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001711 .poll_get_char = imx_poll_get_char,
1712 .poll_put_char = imx_poll_put_char,
1713#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714};
1715
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001716static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001719static void imx_console_putchar(struct uart_port *port, int ch)
1720{
1721 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001722
Shawn Guofe6b5402011-06-25 02:04:33 +08001723 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001724 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001725
1726 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001727}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
1729/*
1730 * Interrupts are disabled on entering
1731 */
1732static void
1733imx_console_write(struct console *co, const char *s, unsigned int count)
1734{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001735 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001736 struct imx_port_ucrs old_ucr;
1737 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001738 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001739 int locked = 1;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001740 int retval;
1741
Fabio Estevam0c727a42015-08-18 12:43:12 -03001742 retval = clk_enable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001743 if (retval)
1744 return;
Fabio Estevam0c727a42015-08-18 12:43:12 -03001745 retval = clk_enable(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001746 if (retval) {
Fabio Estevam0c727a42015-08-18 12:43:12 -03001747 clk_disable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001748 return;
1749 }
Xinyu Chen9ec18822012-08-27 09:36:51 +02001750
Thomas Gleixner677fe552013-02-14 21:01:06 +01001751 if (sport->port.sysrq)
1752 locked = 0;
1753 else if (oops_in_progress)
1754 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1755 else
1756 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001759 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001761 imx_port_ucrs_save(&sport->port, &old_ucr);
1762 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Shawn Guofe6b5402011-06-25 02:04:33 +08001764 if (is_imx1_uart(sport))
1765 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001766 ucr1 |= UCR1_UARTEN;
1767 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1768
1769 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001770
Dirk Behme0ad5a812011-12-22 09:57:52 +01001771 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Russell Kingd3587882006-03-20 20:00:09 +00001773 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 /*
1776 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001777 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001779 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Dirk Behme0ad5a812011-12-22 09:57:52 +01001781 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001782
Thomas Gleixner677fe552013-02-14 21:01:06 +01001783 if (locked)
1784 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001785
Fabio Estevam0c727a42015-08-18 12:43:12 -03001786 clk_disable(sport->clk_ipg);
1787 clk_disable(sport->clk_per);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788}
1789
1790/*
1791 * If the port was already initialised (eg, by a boot loader),
1792 * try to determine the current setup.
1793 */
1794static void __init
1795imx_console_get_options(struct imx_port *sport, int *baud,
1796 int *parity, int *bits)
1797{
Sascha Hauer587897f2005-04-29 22:46:40 +01001798
Roel Kluin2e2eb502009-12-09 12:31:36 -08001799 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301801 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001802 unsigned int baud_raw;
1803 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001805 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 *parity = 'n';
1808 if (ucr2 & UCR2_PREN) {
1809 if (ucr2 & UCR2_PROE)
1810 *parity = 'o';
1811 else
1812 *parity = 'e';
1813 }
1814
1815 if (ucr2 & UCR2_WS)
1816 *bits = 8;
1817 else
1818 *bits = 7;
1819
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001820 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1821 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001823 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001824 if (ucfr_rfdiv == 6)
1825 ucfr_rfdiv = 7;
1826 else
1827 ucfr_rfdiv = 6 - ucfr_rfdiv;
1828
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001829 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001830 uartclk /= ucfr_rfdiv;
1831
1832 { /*
1833 * The next code provides exact computation of
1834 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1835 * without need of float support or long long division,
1836 * which would be required to prevent 32bit arithmetic overflow
1837 */
1838 unsigned int mul = ubir + 1;
1839 unsigned int div = 16 * (ubmr + 1);
1840 unsigned int rem = uartclk % div;
1841
1842 baud_raw = (uartclk / div) * mul;
1843 baud_raw += (rem * mul + div / 2) / div;
1844 *baud = (baud_raw + 50) / 100 * 100;
1845 }
1846
Sachin Kamat82313e62013-01-07 10:25:02 +05301847 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301848 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01001849 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
1851}
1852
1853static int __init
1854imx_console_setup(struct console *co, char *options)
1855{
1856 struct imx_port *sport;
1857 int baud = 9600;
1858 int bits = 8;
1859 int parity = 'n';
1860 int flow = 'n';
Huang Shijie1cf93e02013-06-28 13:39:42 +08001861 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 /*
1864 * Check whether an invalid uart number has been specified, and
1865 * if so, search for the first available port that does have
1866 * console support.
1867 */
1868 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1869 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001870 sport = imx_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05301871 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04001872 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Huang Shijie1cf93e02013-06-28 13:39:42 +08001874 /* For setting the registers, we only need to enable the ipg clock. */
1875 retval = clk_prepare_enable(sport->clk_ipg);
1876 if (retval)
1877 goto error_console;
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (options)
1880 uart_parse_options(options, &baud, &parity, &bits, &flow);
1881 else
1882 imx_console_get_options(sport, &baud, &parity, &bits);
1883
Lucas Stachcc323822015-09-04 17:52:37 +02001884 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Sascha Hauer587897f2005-04-29 22:46:40 +01001885
Huang Shijie1cf93e02013-06-28 13:39:42 +08001886 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow);
1887
Fabio Estevam0c727a42015-08-18 12:43:12 -03001888 clk_disable(sport->clk_ipg);
1889 if (retval) {
1890 clk_unprepare(sport->clk_ipg);
1891 goto error_console;
1892 }
1893
1894 retval = clk_prepare(sport->clk_per);
1895 if (retval)
1896 clk_disable_unprepare(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001897
1898error_console:
1899 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001902static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001904 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 .write = imx_console_write,
1906 .device = uart_console_device,
1907 .setup = imx_console_setup,
1908 .flags = CON_PRINTBUFFER,
1909 .index = -1,
1910 .data = &imx_reg,
1911};
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913#define IMX_CONSOLE &imx_console
Lucas Stach913c6c02015-08-28 11:56:19 +02001914
1915#ifdef CONFIG_OF
1916static void imx_console_early_putchar(struct uart_port *port, int ch)
1917{
1918 while (readl_relaxed(port->membase + IMX21_UTS) & UTS_TXFULL)
1919 cpu_relax();
1920
1921 writel_relaxed(ch, port->membase + URTX0);
1922}
1923
1924static void imx_console_early_write(struct console *con, const char *s,
1925 unsigned count)
1926{
1927 struct earlycon_device *dev = con->data;
1928
1929 uart_console_write(&dev->port, s, count, imx_console_early_putchar);
1930}
1931
1932static int __init
1933imx_console_early_setup(struct earlycon_device *dev, const char *opt)
1934{
1935 if (!dev->port.membase)
1936 return -ENODEV;
1937
1938 dev->con->write = imx_console_early_write;
1939
1940 return 0;
1941}
1942OF_EARLYCON_DECLARE(ec_imx6q, "fsl,imx6q-uart", imx_console_early_setup);
1943OF_EARLYCON_DECLARE(ec_imx21, "fsl,imx21-uart", imx_console_early_setup);
1944#endif
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946#else
1947#define IMX_CONSOLE NULL
1948#endif
1949
1950static struct uart_driver imx_reg = {
1951 .owner = THIS_MODULE,
1952 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001953 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 .major = SERIAL_IMX_MAJOR,
1955 .minor = MINOR_START,
1956 .nr = ARRAY_SIZE(imx_ports),
1957 .cons = IMX_CONSOLE,
1958};
1959
Shawn Guo22698aa2011-06-25 02:04:34 +08001960#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001961/*
1962 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1963 * could successfully get all information from dt or a negative errno.
1964 */
Shawn Guo22698aa2011-06-25 02:04:34 +08001965static int serial_imx_probe_dt(struct imx_port *sport,
1966 struct platform_device *pdev)
1967{
1968 struct device_node *np = pdev->dev.of_node;
Shawn Guoff059672011-09-22 14:48:13 +08001969 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001970
LABBE Corentin5f8b9042015-11-24 15:36:57 +01001971 sport->devdata = of_device_get_match_data(&pdev->dev);
1972 if (!sport->devdata)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001973 /* no device tree device */
1974 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001975
Shawn Guoff059672011-09-22 14:48:13 +08001976 ret = of_alias_get_id(np, "serial");
1977 if (ret < 0) {
1978 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01001979 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08001980 }
1981 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001982
Geert Uytterhoeven1006ed72016-04-22 17:22:21 +02001983 if (of_get_property(np, "uart-has-rtscts", NULL) ||
1984 of_get_property(np, "fsl,uart-has-rtscts", NULL) /* deprecated */)
Shawn Guo22698aa2011-06-25 02:04:34 +08001985 sport->have_rtscts = 1;
1986
Huang Shijie20ff2fe2013-05-30 14:07:12 +08001987 if (of_get_property(np, "fsl,dte-mode", NULL))
1988 sport->dte_mode = 1;
1989
Shawn Guo22698aa2011-06-25 02:04:34 +08001990 return 0;
1991}
1992#else
1993static inline int serial_imx_probe_dt(struct imx_port *sport,
1994 struct platform_device *pdev)
1995{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001996 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001997}
1998#endif
1999
2000static void serial_imx_probe_pdata(struct imx_port *sport,
2001 struct platform_device *pdev)
2002{
Jingoo Han574de552013-07-30 17:06:57 +09002003 struct imxuart_platform_data *pdata = dev_get_platdata(&pdev->dev);
Shawn Guo22698aa2011-06-25 02:04:34 +08002004
2005 sport->port.line = pdev->id;
2006 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
2007
2008 if (!pdata)
2009 return;
2010
2011 if (pdata->flags & IMXUART_HAVE_RTSCTS)
2012 sport->have_rtscts = 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002013}
2014
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002015static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002017 struct imx_port *sport;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002018 void __iomem *base;
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002019 int ret = 0, reg;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002020 struct resource *res;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002021 int txirq, rxirq, rtsirq;
Sascha Hauer5b802342006-05-04 14:07:42 +01002022
Sachin Kamat42d34192013-01-07 10:25:06 +05302023 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002024 if (!sport)
2025 return -ENOMEM;
2026
Shawn Guo22698aa2011-06-25 02:04:34 +08002027 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002028 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08002029 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002030 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05302031 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002032
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002033 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Alexander Shiyanda82f992014-02-22 16:01:33 +04002034 base = devm_ioremap_resource(&pdev->dev, res);
2035 if (IS_ERR(base))
2036 return PTR_ERR(base);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002037
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002038 rxirq = platform_get_irq(pdev, 0);
2039 txirq = platform_get_irq(pdev, 1);
2040 rtsirq = platform_get_irq(pdev, 2);
2041
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002042 sport->port.dev = &pdev->dev;
2043 sport->port.mapbase = res->start;
2044 sport->port.membase = base;
2045 sport->port.type = PORT_IMX,
2046 sport->port.iotype = UPIO_MEM;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002047 sport->port.irq = rxirq;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002048 sport->port.fifosize = 32;
2049 sport->port.ops = &imx_pops;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01002050 sport->port.rs485_config = imx_rs485_config;
2051 sport->port.rs485.flags =
2052 SER_RS485_RTS_ON_SEND | SER_RS485_RX_DURING_TX;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002053 sport->port.flags = UPF_BOOT_AUTOCONF;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002054 init_timer(&sport->timer);
2055 sport->timer.function = imx_timeout;
2056 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002057
Uwe Kleine-König58362d52015-12-13 11:30:03 +01002058 sport->gpios = mctrl_gpio_init(&sport->port, 0);
2059 if (IS_ERR(sport->gpios))
2060 return PTR_ERR(sport->gpios);
2061
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002062 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
2063 if (IS_ERR(sport->clk_ipg)) {
2064 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002065 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302066 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002067 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002068
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002069 sport->clk_per = devm_clk_get(&pdev->dev, "per");
2070 if (IS_ERR(sport->clk_per)) {
2071 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002072 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302073 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002074 }
2075
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002076 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002077
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002078 /* For register access, we only need to enable the ipg clock. */
2079 ret = clk_prepare_enable(sport->clk_ipg);
2080 if (ret)
2081 return ret;
2082
2083 /* Disable interrupts before requesting them */
2084 reg = readl_relaxed(sport->port.membase + UCR1);
2085 reg &= ~(UCR1_ADEN | UCR1_TRDYEN | UCR1_IDEN | UCR1_RRDYEN |
2086 UCR1_TXMPTYEN | UCR1_RTSDEN);
2087 writel_relaxed(reg, sport->port.membase + UCR1);
2088
2089 clk_disable_unprepare(sport->clk_ipg);
2090
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002091 /*
2092 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
2093 * chips only have one interrupt.
2094 */
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002095 if (txirq > 0) {
2096 ret = devm_request_irq(&pdev->dev, rxirq, imx_rxint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002097 dev_name(&pdev->dev), sport);
2098 if (ret)
2099 return ret;
2100
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002101 ret = devm_request_irq(&pdev->dev, txirq, imx_txint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002102 dev_name(&pdev->dev), sport);
2103 if (ret)
2104 return ret;
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002105 } else {
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002106 ret = devm_request_irq(&pdev->dev, rxirq, imx_int, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002107 dev_name(&pdev->dev), sport);
2108 if (ret)
2109 return ret;
2110 }
2111
Shawn Guo22698aa2011-06-25 02:04:34 +08002112 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01002113
Richard Zhao0a86a862012-09-18 16:14:58 +08002114 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002115
Alexander Shiyan45af7802014-02-22 16:01:35 +04002116 return uart_add_one_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117}
2118
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002119static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002121 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Alexander Shiyan45af7802014-02-22 16:01:35 +04002123 return uart_remove_one_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124}
2125
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002126static void serial_imx_restore_context(struct imx_port *sport)
2127{
2128 if (!sport->context_saved)
2129 return;
2130
2131 writel(sport->saved_reg[4], sport->port.membase + UFCR);
2132 writel(sport->saved_reg[5], sport->port.membase + UESC);
2133 writel(sport->saved_reg[6], sport->port.membase + UTIM);
2134 writel(sport->saved_reg[7], sport->port.membase + UBIR);
2135 writel(sport->saved_reg[8], sport->port.membase + UBMR);
2136 writel(sport->saved_reg[9], sport->port.membase + IMX21_UTS);
2137 writel(sport->saved_reg[0], sport->port.membase + UCR1);
2138 writel(sport->saved_reg[1] | UCR2_SRST, sport->port.membase + UCR2);
2139 writel(sport->saved_reg[2], sport->port.membase + UCR3);
2140 writel(sport->saved_reg[3], sport->port.membase + UCR4);
2141 sport->context_saved = false;
2142}
2143
2144static void serial_imx_save_context(struct imx_port *sport)
2145{
2146 /* Save necessary regs */
2147 sport->saved_reg[0] = readl(sport->port.membase + UCR1);
2148 sport->saved_reg[1] = readl(sport->port.membase + UCR2);
2149 sport->saved_reg[2] = readl(sport->port.membase + UCR3);
2150 sport->saved_reg[3] = readl(sport->port.membase + UCR4);
2151 sport->saved_reg[4] = readl(sport->port.membase + UFCR);
2152 sport->saved_reg[5] = readl(sport->port.membase + UESC);
2153 sport->saved_reg[6] = readl(sport->port.membase + UTIM);
2154 sport->saved_reg[7] = readl(sport->port.membase + UBIR);
2155 sport->saved_reg[8] = readl(sport->port.membase + UBMR);
2156 sport->saved_reg[9] = readl(sport->port.membase + IMX21_UTS);
2157 sport->context_saved = true;
2158}
2159
Eduardo Valentin189550b2015-08-11 10:21:21 -07002160static void serial_imx_enable_wakeup(struct imx_port *sport, bool on)
2161{
2162 unsigned int val;
2163
2164 val = readl(sport->port.membase + UCR3);
2165 if (on)
2166 val |= UCR3_AWAKEN;
2167 else
2168 val &= ~UCR3_AWAKEN;
2169 writel(val, sport->port.membase + UCR3);
Eduardo Valentinbc857342015-08-11 10:21:22 -07002170
2171 val = readl(sport->port.membase + UCR1);
2172 if (on)
2173 val |= UCR1_RTSDEN;
2174 else
2175 val &= ~UCR1_RTSDEN;
2176 writel(val, sport->port.membase + UCR1);
Eduardo Valentin189550b2015-08-11 10:21:21 -07002177}
2178
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002179static int imx_serial_port_suspend_noirq(struct device *dev)
2180{
2181 struct platform_device *pdev = to_platform_device(dev);
2182 struct imx_port *sport = platform_get_drvdata(pdev);
2183 int ret;
2184
2185 ret = clk_enable(sport->clk_ipg);
2186 if (ret)
2187 return ret;
2188
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002189 serial_imx_save_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002190
2191 clk_disable(sport->clk_ipg);
2192
2193 return 0;
2194}
2195
2196static int imx_serial_port_resume_noirq(struct device *dev)
2197{
2198 struct platform_device *pdev = to_platform_device(dev);
2199 struct imx_port *sport = platform_get_drvdata(pdev);
2200 int ret;
2201
2202 ret = clk_enable(sport->clk_ipg);
2203 if (ret)
2204 return ret;
2205
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002206 serial_imx_restore_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002207
2208 clk_disable(sport->clk_ipg);
2209
2210 return 0;
2211}
2212
2213static int imx_serial_port_suspend(struct device *dev)
2214{
2215 struct platform_device *pdev = to_platform_device(dev);
2216 struct imx_port *sport = platform_get_drvdata(pdev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002217
2218 /* enable wakeup from i.MX UART */
Eduardo Valentin189550b2015-08-11 10:21:21 -07002219 serial_imx_enable_wakeup(sport, true);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002220
2221 uart_suspend_port(&imx_reg, &sport->port);
2222
Martin Fuzzey29add682016-01-05 16:53:31 +01002223 /* Needed to enable clock in suspend_noirq */
2224 return clk_prepare(sport->clk_ipg);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002225}
2226
2227static int imx_serial_port_resume(struct device *dev)
2228{
2229 struct platform_device *pdev = to_platform_device(dev);
2230 struct imx_port *sport = platform_get_drvdata(pdev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002231
2232 /* disable wakeup from i.MX UART */
Eduardo Valentin189550b2015-08-11 10:21:21 -07002233 serial_imx_enable_wakeup(sport, false);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002234
2235 uart_resume_port(&imx_reg, &sport->port);
2236
Martin Fuzzey29add682016-01-05 16:53:31 +01002237 clk_unprepare(sport->clk_ipg);
2238
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002239 return 0;
2240}
2241
2242static const struct dev_pm_ops imx_serial_port_pm_ops = {
2243 .suspend_noirq = imx_serial_port_suspend_noirq,
2244 .resume_noirq = imx_serial_port_resume_noirq,
2245 .suspend = imx_serial_port_suspend,
2246 .resume = imx_serial_port_resume,
2247};
2248
Russell King3ae5eae2005-11-09 22:32:44 +00002249static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01002250 .probe = serial_imx_probe,
2251 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Shawn Guofe6b5402011-06-25 02:04:33 +08002253 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00002254 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01002255 .name = "imx-uart",
Shawn Guo22698aa2011-06-25 02:04:34 +08002256 .of_match_table = imx_uart_dt_ids,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002257 .pm = &imx_serial_port_pm_ops,
Russell King3ae5eae2005-11-09 22:32:44 +00002258 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259};
2260
2261static int __init imx_serial_init(void)
2262{
Fabio Estevamf0fd1b72014-10-27 14:49:40 -02002263 int ret = uart_register_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (ret)
2266 return ret;
2267
Russell King3ae5eae2005-11-09 22:32:44 +00002268 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (ret != 0)
2270 uart_unregister_driver(&imx_reg);
2271
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01002272 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
2275static void __exit imx_serial_exit(void)
2276{
Russell Kingc889b892005-11-21 17:05:21 +00002277 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01002278 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279}
2280
2281module_init(imx_serial_init);
2282module_exit(imx_serial_exit);
2283
2284MODULE_AUTHOR("Sascha Hauer");
2285MODULE_DESCRIPTION("IMX generic serial port driver");
2286MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07002287MODULE_ALIAS("platform:imx-uart");