blob: 689a117943a000da6de7ba998fb810b444d4ba67 [file] [log] [blame]
Greg Kroah-Hartmane3b3d0f2017-11-06 18:11:51 +01001// SPDX-License-Identifier: GPL-2.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01003 * Driver for Motorola/Freescale IMX serial ports
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01005 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Uwe Kleine-Königf890cef2015-02-24 11:17:08 +01007 * Author: Sascha Hauer <sascha@saschahauer.de>
8 * Copyright (C) 2004 Pengutronix
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#if defined(CONFIG_SERIAL_IMX_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
12#define SUPPORT_SYSRQ
13#endif
14
15#include <linux/module.h>
16#include <linux/ioport.h>
17#include <linux/init.h>
18#include <linux/console.h>
19#include <linux/sysrq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010020#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/tty.h>
22#include <linux/tty_flip.h>
23#include <linux/serial_core.h>
24#include <linux/serial.h>
Sascha Hauer38a41fd2008-07-05 10:02:46 +020025#include <linux/clk.h>
Fabian Godehardtb6e49132009-06-11 14:53:18 +010026#include <linux/delay.h>
Oskar Schirmer534fca02009-06-11 14:52:23 +010027#include <linux/rational.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Shawn Guo22698aa2011-06-25 02:04:34 +080029#include <linux/of.h>
30#include <linux/of_device.h>
Sachin Kamate32a9f82013-01-07 10:25:03 +053031#include <linux/io.h>
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080032#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/irq.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020035#include <linux/platform_data/serial-imx.h>
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080036#include <linux/platform_data/dma-imx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Uwe Kleine-König58362d52015-12-13 11:30:03 +010038#include "serial_mctrl_gpio.h"
39
Sascha Hauerff4bfb22007-04-26 08:26:13 +010040/* Register definitions */
41#define URXD0 0x0 /* Receiver Register */
42#define URTX0 0x40 /* Transmitter Register */
43#define UCR1 0x80 /* Control Register 1 */
44#define UCR2 0x84 /* Control Register 2 */
45#define UCR3 0x88 /* Control Register 3 */
46#define UCR4 0x8c /* Control Register 4 */
47#define UFCR 0x90 /* FIFO Control Register */
48#define USR1 0x94 /* Status Register 1 */
49#define USR2 0x98 /* Status Register 2 */
50#define UESC 0x9c /* Escape Character Register */
51#define UTIM 0xa0 /* Escape Timer Register */
52#define UBIR 0xa4 /* BRM Incremental Register */
53#define UBMR 0xa8 /* BRM Modulator Register */
54#define UBRC 0xac /* Baud Rate Count Register */
Shawn Guofe6b5402011-06-25 02:04:33 +080055#define IMX21_ONEMS 0xb0 /* One Millisecond register */
56#define IMX1_UTS 0xd0 /* UART Test Register on i.mx1 */
57#define IMX21_UTS 0xb4 /* UART Test Register on all other i.mx*/
Sascha Hauerff4bfb22007-04-26 08:26:13 +010058
59/* UART Control Register Bit Fields.*/
Jiada Wang55d86932014-12-09 18:11:22 +090060#define URXD_DUMMY_READ (1<<16)
Sachin Kamat82313e62013-01-07 10:25:02 +053061#define URXD_CHARRDY (1<<15)
62#define URXD_ERR (1<<14)
63#define URXD_OVRRUN (1<<13)
64#define URXD_FRMERR (1<<12)
65#define URXD_BRK (1<<11)
66#define URXD_PRERR (1<<10)
Dirk Behme26c47412014-09-03 12:33:53 +010067#define URXD_RX_DATA (0xFF<<0)
Sachin Kamat82313e62013-01-07 10:25:02 +053068#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
69#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
70#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
71#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080072#define UCR1_ICD_REG(x) (((x) & 3) << 10) /* idle condition detect */
Sachin Kamat82313e62013-01-07 10:25:02 +053073#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
74#define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
75#define UCR1_IREN (1<<7) /* Infrared interface enable */
76#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
77#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
78#define UCR1_SNDBRK (1<<4) /* Send break */
79#define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
80#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +080081#define UCR1_ATDMAEN (1<<2) /* Aging DMA Timer Enable */
Sachin Kamat82313e62013-01-07 10:25:02 +053082#define UCR1_DOZE (1<<1) /* Doze */
83#define UCR1_UARTEN (1<<0) /* UART enabled */
84#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
85#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
86#define UCR2_CTSC (1<<13) /* CTS pin control */
87#define UCR2_CTS (1<<12) /* Clear to send */
88#define UCR2_ESCEN (1<<11) /* Escape enable */
89#define UCR2_PREN (1<<8) /* Parity enable */
90#define UCR2_PROE (1<<7) /* Parity odd/even */
91#define UCR2_STPB (1<<6) /* Stop */
92#define UCR2_WS (1<<5) /* Word size */
93#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
94#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
95#define UCR2_TXEN (1<<2) /* Transmitter enabled */
96#define UCR2_RXEN (1<<1) /* Receiver enabled */
97#define UCR2_SRST (1<<0) /* SW reset */
98#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
99#define UCR3_PARERREN (1<<12) /* Parity enable */
100#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
101#define UCR3_DSR (1<<10) /* Data set ready */
102#define UCR3_DCD (1<<9) /* Data carrier detect */
103#define UCR3_RI (1<<8) /* Ring indicator */
Fabio Estevamb38cb7d2014-05-14 15:55:03 -0300104#define UCR3_ADNIMP (1<<7) /* Autobaud Detection Not Improved */
Sachin Kamat82313e62013-01-07 10:25:02 +0530105#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
106#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
107#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100108#define UCR3_DTRDEN (1<<3) /* Data Terminal Ready Delta Enable. */
Sachin Kamat82313e62013-01-07 10:25:02 +0530109#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
110#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
111#define UCR3_BPEN (1<<0) /* Preset registers enable */
112#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
113#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
114#define UCR4_INVR (1<<9) /* Inverted infrared reception */
115#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
116#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
117#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800118#define UCR4_IDDMAEN (1<<6) /* DMA IDLE Condition Detected */
Sachin Kamat82313e62013-01-07 10:25:02 +0530119#define UCR4_IRSC (1<<5) /* IR special case */
120#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
121#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
122#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
123#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
124#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
125#define UFCR_DCEDTE (1<<6) /* DCE/DTE mode select */
126#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
127#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
128#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
129#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
130#define USR1_RTSS (1<<14) /* RTS pin status */
131#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
132#define USR1_RTSD (1<<12) /* RTS delta */
133#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
134#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
135#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
Lucas Stach86a04ba2015-09-04 17:52:38 +0200136#define USR1_AGTIM (1<<8) /* Ageing timer interrupt flag */
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100137#define USR1_DTRD (1<<7) /* DTR Delta */
Sachin Kamat82313e62013-01-07 10:25:02 +0530138#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
139#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
140#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
141#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
142#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
143#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
144#define USR2_IDLE (1<<12) /* Idle condition */
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200145#define USR2_RIDELT (1<<10) /* Ring Interrupt Delta */
146#define USR2_RIIN (1<<9) /* Ring Indicator Input */
Sachin Kamat82313e62013-01-07 10:25:02 +0530147#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
148#define USR2_WAKE (1<<7) /* Wake */
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200149#define USR2_DCDIN (1<<5) /* Data Carrier Detect Input */
Sachin Kamat82313e62013-01-07 10:25:02 +0530150#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
151#define USR2_TXDC (1<<3) /* Transmitter complete */
152#define USR2_BRCD (1<<2) /* Break condition */
153#define USR2_ORE (1<<1) /* Overrun error */
154#define USR2_RDR (1<<0) /* Recv data ready */
155#define UTS_FRCPERR (1<<13) /* Force parity error */
156#define UTS_LOOP (1<<12) /* Loop tx and rx */
157#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
158#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
159#define UTS_TXFULL (1<<4) /* TxFIFO full */
160#define UTS_RXFULL (1<<3) /* RxFIFO full */
161#define UTS_SOFTRST (1<<0) /* Software reset */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/* We've been assigned a range on the "Low-density serial ports" major */
Sachin Kamat82313e62013-01-07 10:25:02 +0530164#define SERIAL_IMX_MAJOR 207
165#define MINOR_START 16
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200166#define DEV_NAME "ttymxc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * This determines how often we check the modem status signals
170 * for any change. They generally aren't connected to an IRQ
171 * so we have to poll them. We also check immediately before
172 * filling the TX fifo incase CTS has been dropped.
173 */
174#define MCTRL_TIMEOUT (250*HZ/1000)
175
176#define DRIVER_NAME "IMX-uart"
177
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200178#define UART_NR 8
179
Uwe Kleine-Königf95661b2015-02-24 11:17:09 +0100180/* i.MX21 type uart runs on all i.mx except i.MX1 and i.MX6q */
Shawn Guofe6b5402011-06-25 02:04:33 +0800181enum imx_uart_type {
182 IMX1_UART,
183 IMX21_UART,
Martyn Welch1c06bde62016-09-01 11:30:46 +0200184 IMX53_UART,
Huang Shijiea496e622013-07-08 17:14:17 +0800185 IMX6Q_UART,
Shawn Guofe6b5402011-06-25 02:04:33 +0800186};
187
188/* device type dependent stuff */
189struct imx_uart_data {
190 unsigned uts_reg;
191 enum imx_uart_type devtype;
192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194struct imx_port {
195 struct uart_port port;
196 struct timer_list timer;
197 unsigned int old_status;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100198 unsigned int have_rtscts:1;
Fabio Estevam7b7e8e82017-01-07 19:29:13 -0200199 unsigned int have_rtsgpio:1;
Huang Shijie20ff2fe2013-05-30 14:07:12 +0800200 unsigned int dte_mode:1;
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100201 struct clk *clk_ipg;
202 struct clk *clk_per;
Uwe Kleine-König7d0b0662012-05-21 21:57:39 +0200203 const struct imx_uart_data *devdata;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800204
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100205 struct mctrl_gpios *gpios;
206
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800207 /* DMA fields */
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800208 unsigned int dma_is_enabled:1;
209 unsigned int dma_is_rxing:1;
210 unsigned int dma_is_txing:1;
211 struct dma_chan *dma_chan_rx, *dma_chan_tx;
212 struct scatterlist rx_sgl, tx_sgl[2];
213 void *rx_buf;
Nandor Han9d297232016-08-08 15:38:27 +0300214 struct circ_buf rx_ring;
215 unsigned int rx_periods;
216 dma_cookie_t rx_cookie;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800217 unsigned int tx_bytes;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800218 unsigned int dma_tx_nents;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -0500219 unsigned int saved_reg[10];
Eduardo Valentinc868cbb2015-08-11 10:21:23 -0700220 bool context_saved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
Dirk Behme0ad5a812011-12-22 09:57:52 +0100223struct imx_port_ucrs {
224 unsigned int ucr1;
225 unsigned int ucr2;
226 unsigned int ucr3;
227};
228
Shawn Guofe6b5402011-06-25 02:04:33 +0800229static struct imx_uart_data imx_uart_devdata[] = {
230 [IMX1_UART] = {
231 .uts_reg = IMX1_UTS,
232 .devtype = IMX1_UART,
233 },
234 [IMX21_UART] = {
235 .uts_reg = IMX21_UTS,
236 .devtype = IMX21_UART,
237 },
Martyn Welch1c06bde62016-09-01 11:30:46 +0200238 [IMX53_UART] = {
239 .uts_reg = IMX21_UTS,
240 .devtype = IMX53_UART,
241 },
Huang Shijiea496e622013-07-08 17:14:17 +0800242 [IMX6Q_UART] = {
243 .uts_reg = IMX21_UTS,
244 .devtype = IMX6Q_UART,
245 },
Shawn Guofe6b5402011-06-25 02:04:33 +0800246};
247
Krzysztof Kozlowski31ada042015-05-02 00:40:02 +0900248static const struct platform_device_id imx_uart_devtype[] = {
Shawn Guofe6b5402011-06-25 02:04:33 +0800249 {
250 .name = "imx1-uart",
251 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
252 }, {
253 .name = "imx21-uart",
254 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
255 }, {
Martyn Welch1c06bde62016-09-01 11:30:46 +0200256 .name = "imx53-uart",
257 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX53_UART],
258 }, {
Huang Shijiea496e622013-07-08 17:14:17 +0800259 .name = "imx6q-uart",
260 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX6Q_UART],
261 }, {
Shawn Guofe6b5402011-06-25 02:04:33 +0800262 /* sentinel */
263 }
264};
265MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
266
Sanjeev Sharmaad3d4fd2015-02-03 16:16:06 +0530267static const struct of_device_id imx_uart_dt_ids[] = {
Huang Shijiea496e622013-07-08 17:14:17 +0800268 { .compatible = "fsl,imx6q-uart", .data = &imx_uart_devdata[IMX6Q_UART], },
Martyn Welch1c06bde62016-09-01 11:30:46 +0200269 { .compatible = "fsl,imx53-uart", .data = &imx_uart_devdata[IMX53_UART], },
Shawn Guo22698aa2011-06-25 02:04:34 +0800270 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
271 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
272 { /* sentinel */ }
273};
274MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
275
Shawn Guofe6b5402011-06-25 02:04:33 +0800276static inline unsigned uts_reg(struct imx_port *sport)
277{
278 return sport->devdata->uts_reg;
279}
280
281static inline int is_imx1_uart(struct imx_port *sport)
282{
283 return sport->devdata->devtype == IMX1_UART;
284}
285
286static inline int is_imx21_uart(struct imx_port *sport)
287{
288 return sport->devdata->devtype == IMX21_UART;
289}
290
Martyn Welch1c06bde62016-09-01 11:30:46 +0200291static inline int is_imx53_uart(struct imx_port *sport)
292{
293 return sport->devdata->devtype == IMX53_UART;
294}
295
Huang Shijiea496e622013-07-08 17:14:17 +0800296static inline int is_imx6q_uart(struct imx_port *sport)
297{
298 return sport->devdata->devtype == IMX6Q_UART;
299}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200301 * Save and restore functions for UCR1, UCR2 and UCR3 registers
302 */
Fabio Estevam93d94b32014-11-12 15:55:07 -0200303#if defined(CONFIG_SERIAL_IMX_CONSOLE)
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200304static void imx_port_ucrs_save(struct uart_port *port,
305 struct imx_port_ucrs *ucr)
306{
307 /* save control registers */
308 ucr->ucr1 = readl(port->membase + UCR1);
309 ucr->ucr2 = readl(port->membase + UCR2);
310 ucr->ucr3 = readl(port->membase + UCR3);
311}
312
313static void imx_port_ucrs_restore(struct uart_port *port,
314 struct imx_port_ucrs *ucr)
315{
316 /* restore control registers */
317 writel(ucr->ucr1, port->membase + UCR1);
318 writel(ucr->ucr2, port->membase + UCR2);
319 writel(ucr->ucr3, port->membase + UCR3);
320}
Fabio Estevame8bfa762013-06-05 00:58:46 -0300321#endif
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200322
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100323static void imx_port_rts_active(struct imx_port *sport, unsigned long *ucr2)
324{
Fabio Estevambc2be232017-01-30 09:12:12 -0200325 *ucr2 &= ~(UCR2_CTSC | UCR2_CTS);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100326
Ian Jamisona0983c72017-09-21 10:13:12 +0200327 sport->port.mctrl |= TIOCM_RTS;
328 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100329}
330
331static void imx_port_rts_inactive(struct imx_port *sport, unsigned long *ucr2)
332{
Fabio Estevambc2be232017-01-30 09:12:12 -0200333 *ucr2 &= ~UCR2_CTSC;
334 *ucr2 |= UCR2_CTS;
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100335
Ian Jamisona0983c72017-09-21 10:13:12 +0200336 sport->port.mctrl &= ~TIOCM_RTS;
337 mctrl_gpio_set(sport->gpios, sport->port.mctrl);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100338}
339
340static void imx_port_rts_auto(struct imx_port *sport, unsigned long *ucr2)
341{
342 *ucr2 |= UCR2_CTSC;
343}
344
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200345/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * interrupts disabled on entry
347 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100348static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100351 unsigned long temp;
352
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700353 /*
354 * We are maybe in the SMP context, so if the DMA TX thread is running
355 * on other cpu, we have to wait for it to finish.
356 */
357 if (sport->dma_is_enabled && sport->dma_is_txing)
358 return;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800359
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100360 temp = readl(port->membase + UCR1);
361 writel(temp & ~UCR1_TXMPTYEN, port->membase + UCR1);
362
363 /* in rs485 mode disable transmitter if shifter is empty */
364 if (port->rs485.flags & SER_RS485_ENABLED &&
365 readl(port->membase + USR2) & USR2_TXDC) {
366 temp = readl(port->membase + UCR2);
367 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100368 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -0200369 else
370 imx_port_rts_inactive(sport, &temp);
Baruch Siach7d1cadc2016-02-29 14:34:10 +0200371 temp |= UCR2_RXEN;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100372 writel(temp, port->membase + UCR2);
373
374 temp = readl(port->membase + UCR4);
375 temp &= ~UCR4_TCEN;
376 writel(temp, port->membase + UCR4);
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380/*
381 * interrupts disabled on entry
382 */
383static void imx_stop_rx(struct uart_port *port)
384{
385 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100386 unsigned long temp;
387
Huang Shijie45564a62014-09-19 15:33:12 +0800388 if (sport->dma_is_enabled && sport->dma_is_rxing) {
389 if (sport->port.suspended) {
390 dmaengine_terminate_all(sport->dma_chan_rx);
391 sport->dma_is_rxing = 0;
392 } else {
393 return;
394 }
395 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800396
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100397 temp = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +0530398 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2);
Huang Shijie85878392014-05-23 12:32:54 +0800399
400 /* disable the `Receiver Ready Interrrupt` */
401 temp = readl(sport->port.membase + UCR1);
402 writel(temp & ~UCR1_RRDYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405/*
406 * Set the modem control timer to fire immediately.
407 */
408static void imx_enable_ms(struct uart_port *port)
409{
410 struct imx_port *sport = (struct imx_port *)port;
411
412 mod_timer(&sport->timer, jiffies);
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100413
414 mctrl_gpio_enable_ms(sport->gpios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Jiada Wang91a1a902014-12-09 18:11:36 +0900417static void imx_dma_tx(struct imx_port *sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static inline void imx_transmit_buffer(struct imx_port *sport)
419{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700420 struct circ_buf *xmit = &sport->port.state->xmit;
Jiada Wang91a1a902014-12-09 18:11:36 +0900421 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400423 if (sport->port.x_char) {
424 /* Send next char */
425 writel(sport->port.x_char, sport->port.membase + URTX0);
Jiada Wang7e2fb5a2014-12-09 18:11:35 +0900426 sport->port.icount.tx++;
427 sport->port.x_char = 0;
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400428 return;
429 }
430
431 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
432 imx_stop_tx(&sport->port);
433 return;
434 }
435
Jiada Wang91a1a902014-12-09 18:11:36 +0900436 if (sport->dma_is_enabled) {
437 /*
438 * We've just sent a X-char Ensure the TX DMA is enabled
439 * and the TX IRQ is disabled.
440 **/
441 temp = readl(sport->port.membase + UCR1);
442 temp &= ~UCR1_TXMPTYEN;
443 if (sport->dma_is_txing) {
444 temp |= UCR1_TDMAEN;
445 writel(temp, sport->port.membase + UCR1);
446 } else {
447 writel(temp, sport->port.membase + UCR1);
448 imx_dma_tx(sport);
449 }
450 }
451
Ian Jamison5aabd3b2017-08-28 09:02:29 +0100452 if (sport->dma_is_txing)
453 return;
454
455 while (!uart_circ_empty(xmit) &&
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400456 !(readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /* send xmit->buf[xmit->tail]
458 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100459 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100460 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Fabian Godehardt977757312009-06-11 14:37:19 +0100464 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
465 uart_write_wakeup(&sport->port);
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100468 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800471static void dma_tx_callback(void *data)
472{
473 struct imx_port *sport = data;
474 struct scatterlist *sgl = &sport->tx_sgl[0];
475 struct circ_buf *xmit = &sport->port.state->xmit;
476 unsigned long flags;
Dirk Behmea2c718c2014-12-09 18:11:31 +0900477 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800478
Dirk Behme42f752b2014-12-09 18:11:28 +0900479 spin_lock_irqsave(&sport->port.lock, flags);
480
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800481 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
482
Dirk Behmea2c718c2014-12-09 18:11:31 +0900483 temp = readl(sport->port.membase + UCR1);
484 temp &= ~UCR1_TDMAEN;
485 writel(temp, sport->port.membase + UCR1);
486
Dirk Behme42f752b2014-12-09 18:11:28 +0900487 /* update the stat */
488 xmit->tail = (xmit->tail + sport->tx_bytes) & (UART_XMIT_SIZE - 1);
489 sport->port.icount.tx += sport->tx_bytes;
490
491 dev_dbg(sport->port.dev, "we finish the TX DMA.\n");
492
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800493 sport->dma_is_txing = 0;
494
Jiada Wangd64b8602014-12-09 18:11:29 +0900495 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
496 uart_write_wakeup(&sport->port);
Greg Kroah-Hartman9ce4f8f2014-05-29 19:30:54 -0700497
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900498 if (!uart_circ_empty(xmit) && !uart_tx_stopped(&sport->port))
499 imx_dma_tx(sport);
Uwe Kleine-König64432a82017-07-18 14:01:52 +0200500
Jiada Wang0bbc9b82014-12-09 18:11:30 +0900501 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800502}
503
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800504static void imx_dma_tx(struct imx_port *sport)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800505{
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800506 struct circ_buf *xmit = &sport->port.state->xmit;
507 struct scatterlist *sgl = sport->tx_sgl;
508 struct dma_async_tx_descriptor *desc;
509 struct dma_chan *chan = sport->dma_chan_tx;
510 struct device *dev = sport->port.dev;
Dirk Behmea2c718c2014-12-09 18:11:31 +0900511 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800512 int ret;
513
Dirk Behme42f752b2014-12-09 18:11:28 +0900514 if (sport->dma_is_txing)
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800515 return;
516
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800517 sport->tx_bytes = uart_circ_chars_pending(xmit);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800518
Dirk Behme7942f852014-12-09 18:11:25 +0900519 if (xmit->tail < xmit->head) {
520 sport->dma_tx_nents = 1;
521 sg_init_one(sgl, xmit->buf + xmit->tail, sport->tx_bytes);
522 } else {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800523 sport->dma_tx_nents = 2;
524 sg_init_table(sgl, 2);
525 sg_set_buf(sgl, xmit->buf + xmit->tail,
526 UART_XMIT_SIZE - xmit->tail);
527 sg_set_buf(sgl + 1, xmit->buf, xmit->head);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800528 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800529
530 ret = dma_map_sg(dev, sgl, sport->dma_tx_nents, DMA_TO_DEVICE);
531 if (ret == 0) {
532 dev_err(dev, "DMA mapping error for TX.\n");
533 return;
534 }
535 desc = dmaengine_prep_slave_sg(chan, sgl, sport->dma_tx_nents,
536 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT);
537 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +0900538 dma_unmap_sg(dev, sgl, sport->dma_tx_nents,
539 DMA_TO_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800540 dev_err(dev, "We cannot prepare for the TX slave dma!\n");
541 return;
542 }
543 desc->callback = dma_tx_callback;
544 desc->callback_param = sport;
545
546 dev_dbg(dev, "TX: prepare to send %lu bytes by DMA.\n",
547 uart_circ_chars_pending(xmit));
Dirk Behmea2c718c2014-12-09 18:11:31 +0900548
549 temp = readl(sport->port.membase + UCR1);
550 temp |= UCR1_TDMAEN;
551 writel(temp, sport->port.membase + UCR1);
552
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800553 /* fire it */
554 sport->dma_is_txing = 1;
555 dmaengine_submit(desc);
556 dma_async_issue_pending(chan);
557 return;
558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560/*
561 * interrupts disabled on entry
562 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100563static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100566 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100568 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100569 temp = readl(port->membase + UCR2);
570 if (port->rs485.flags & SER_RS485_RTS_ON_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100571 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -0200572 else
573 imx_port_rts_inactive(sport, &temp);
Baruch Siach7d1cadc2016-02-29 14:34:10 +0200574 if (!(port->rs485.flags & SER_RS485_RX_DURING_TX))
575 temp &= ~UCR2_RXEN;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100576 writel(temp, port->membase + UCR2);
577
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100578 /* enable transmitter and shifter empty irq */
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100579 temp = readl(port->membase + UCR4);
580 temp |= UCR4_TCEN;
581 writel(temp, port->membase + UCR4);
582 }
583
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800584 if (!sport->dma_is_enabled) {
585 temp = readl(sport->port.membase + UCR1);
586 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800589 if (sport->dma_is_enabled) {
Jiada Wang91a1a902014-12-09 18:11:36 +0900590 if (sport->port.x_char) {
591 /* We have X-char to send, so enable TX IRQ and
592 * disable TX DMA to let TX interrupt to send X-char */
593 temp = readl(sport->port.membase + UCR1);
594 temp &= ~UCR1_TDMAEN;
595 temp |= UCR1_TXMPTYEN;
596 writel(temp, sport->port.membase + UCR1);
597 return;
598 }
599
Peter Hurley5e42e9a2014-09-02 17:39:12 -0400600 if (!uart_circ_empty(&port->state->xmit) &&
601 !uart_tx_stopped(port))
602 imx_dma_tx(sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800603 return;
604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
David Howells7d12e782006-10-05 14:55:46 +0100607static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100608{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800609 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200610 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100611 unsigned long flags;
612
613 spin_lock_irqsave(&sport->port.lock, flags);
614
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100615 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200616 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100617 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700618 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100619
620 spin_unlock_irqrestore(&sport->port.lock, flags);
621 return IRQ_HANDLED;
622}
623
David Howells7d12e782006-10-05 14:55:46 +0100624static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800626 struct imx_port *sport = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 unsigned long flags;
628
Sachin Kamat82313e62013-01-07 10:25:02 +0530629 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 imx_transmit_buffer(sport);
Sachin Kamat82313e62013-01-07 10:25:02 +0530631 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return IRQ_HANDLED;
633}
634
David Howells7d12e782006-10-05 14:55:46 +0100635static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
637 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530638 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100639 struct tty_port *port = &sport->port.state->port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100640 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Sachin Kamat82313e62013-01-07 10:25:02 +0530642 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100644 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 flg = TTY_NORMAL;
646 sport->port.icount.rx++;
647
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100648 rx = readl(sport->port.membase + URXD0);
649
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100650 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100651 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100652 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100653 if (uart_handle_break(&sport->port))
654 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100657 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100658 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Hui Wang019dc9e2011-08-24 17:41:47 +0800660 if (unlikely(rx & URXD_ERR)) {
661 if (rx & URXD_BRK)
662 sport->port.icount.brk++;
663 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100664 sport->port.icount.parity++;
665 else if (rx & URXD_FRMERR)
666 sport->port.icount.frame++;
667 if (rx & URXD_OVRRUN)
668 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Sascha Hauer864eeed2008-04-17 08:39:22 +0100670 if (rx & sport->port.ignore_status_mask) {
671 if (++ignored > 100)
672 goto out;
673 continue;
674 }
675
Eric Nelson8d267fd2014-12-18 12:37:13 -0700676 rx &= (sport->port.read_status_mask | 0xFF);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100677
Hui Wang019dc9e2011-08-24 17:41:47 +0800678 if (rx & URXD_BRK)
679 flg = TTY_BREAK;
680 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100681 flg = TTY_PARITY;
682 else if (rx & URXD_FRMERR)
683 flg = TTY_FRAME;
684 if (rx & URXD_OVRRUN)
685 flg = TTY_OVERRUN;
686
687#ifdef SUPPORT_SYSRQ
688 sport->port.sysrq = 0;
689#endif
690 }
691
Jiada Wang55d86932014-12-09 18:11:22 +0900692 if (sport->port.ignore_status_mask & URXD_DUMMY_READ)
693 goto out;
694
Manfred Schlaegl9b289932015-06-20 19:25:35 +0200695 if (tty_insert_flip_char(port, rx, flg) == 0)
696 sport->port.icount.buf_overrun++;
Sascha Hauer864eeed2008-04-17 08:39:22 +0100697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530700 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100701 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Nandor Han41d98b52016-08-08 15:38:28 +0300705static void clear_rx_errors(struct imx_port *sport);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800706
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100707/*
708 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
709 */
710static unsigned int imx_get_hwmctrl(struct imx_port *sport)
711{
712 unsigned int tmp = TIOCM_DSR;
713 unsigned usr1 = readl(sport->port.membase + USR1);
Sascha Hauer4b75f802016-09-26 15:55:31 +0200714 unsigned usr2 = readl(sport->port.membase + USR2);
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100715
716 if (usr1 & USR1_RTSS)
717 tmp |= TIOCM_CTS;
718
719 /* in DCE mode DCDIN is always 0 */
Sascha Hauer4b75f802016-09-26 15:55:31 +0200720 if (!(usr2 & USR2_DCDIN))
Uwe Kleine-König66f95882016-03-24 14:24:24 +0100721 tmp |= TIOCM_CAR;
722
723 if (sport->dte_mode)
724 if (!(readl(sport->port.membase + USR2) & USR2_RIIN))
725 tmp |= TIOCM_RI;
726
727 return tmp;
728}
729
730/*
731 * Handle any change of modem status signal since we were last called.
732 */
733static void imx_mctrl_check(struct imx_port *sport)
734{
735 unsigned int status, changed;
736
737 status = imx_get_hwmctrl(sport);
738 changed = status ^ sport->old_status;
739
740 if (changed == 0)
741 return;
742
743 sport->old_status = status;
744
745 if (changed & TIOCM_RI && status & TIOCM_RI)
746 sport->port.icount.rng++;
747 if (changed & TIOCM_DSR)
748 sport->port.icount.dsr++;
749 if (changed & TIOCM_CAR)
750 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
751 if (changed & TIOCM_CTS)
752 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
753
754 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
755}
756
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200757static irqreturn_t imx_int(int irq, void *dev_id)
758{
759 struct imx_port *sport = dev_id;
Uwe Kleine-König43776892018-02-18 22:02:44 +0100760 unsigned int usr1, usr2, ucr1, ucr2, ucr3, ucr4;
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100761 irqreturn_t ret = IRQ_NONE;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200762
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100763 usr1 = readl(sport->port.membase + USR1);
764 usr2 = readl(sport->port.membase + USR2);
Uwe Kleine-König43776892018-02-18 22:02:44 +0100765 ucr1 = readl(sport->port.membase + UCR1);
766 ucr2 = readl(sport->port.membase + UCR2);
767 ucr3 = readl(sport->port.membase + UCR3);
768 ucr4 = readl(sport->port.membase + UCR4);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200769
Uwe Kleine-König43776892018-02-18 22:02:44 +0100770 /*
771 * Even if a condition is true that can trigger an irq only handle it if
772 * the respective irq source is enabled. This prevents some undesired
773 * actions, for example if a character that sits in the RX FIFO and that
774 * should be fetched via DMA is tried to be fetched using PIO. Or the
775 * receiver is currently off and so reading from URXD0 results in an
776 * exception. So just mask the (raw) status bits for disabled irqs.
777 */
778 if ((ucr1 & UCR1_RRDYEN) == 0)
779 usr1 &= ~USR1_RRDY;
780 if ((ucr2 & UCR2_ATEN) == 0)
781 usr1 &= ~USR1_AGTIM;
782 if ((ucr1 & UCR1_TXMPTYEN) == 0)
783 usr1 &= ~USR1_TRDY;
784 if ((ucr4 & UCR4_TCEN) == 0)
785 usr2 &= ~USR2_TXDC;
786 if ((ucr3 & UCR3_DTRDEN) == 0)
787 usr1 &= ~USR1_DTRD;
788 if ((ucr1 & UCR1_RTSDEN) == 0)
789 usr1 &= ~USR1_RTSD;
790 if ((ucr3 & UCR3_AWAKEN) == 0)
791 usr1 &= ~USR1_AWAKE;
792 if ((ucr4 & UCR4_OREN) == 0)
793 usr2 &= ~USR2_ORE;
794
795 if (usr1 & (USR1_RRDY | USR1_AGTIM)) {
Troy Kisky9ce99a32017-10-20 14:20:20 -0700796 imx_rxint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100797 ret = IRQ_HANDLED;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800798 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200799
Uwe Kleine-König43776892018-02-18 22:02:44 +0100800 if ((usr1 & USR1_TRDY) || (usr2 & USR2_TXDC)) {
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200801 imx_txint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100802 ret = IRQ_HANDLED;
803 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200804
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100805 if (usr1 & USR1_DTRD) {
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100806 unsigned long flags;
807
Uwe Kleine-König135ccb02018-02-18 22:02:42 +0100808 writel(USR1_DTRD, sport->port.membase + USR1);
Uwe Kleine-König27e16502016-03-24 14:24:25 +0100809
810 spin_lock_irqsave(&sport->port.lock, flags);
811 imx_mctrl_check(sport);
812 spin_unlock_irqrestore(&sport->port.lock, flags);
813
814 ret = IRQ_HANDLED;
815 }
816
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100817 if (usr1 & USR1_RTSD) {
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200818 imx_rtsint(irq, dev_id);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100819 ret = IRQ_HANDLED;
820 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200821
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100822 if (usr1 & USR1_AWAKE) {
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200823 writel(USR1_AWAKE, sport->port.membase + USR1);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100824 ret = IRQ_HANDLED;
825 }
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200826
Uwe Kleine-König0399fd62018-02-18 22:02:43 +0100827 if (usr2 & USR2_ORE) {
Alexander Steinf1f836e2013-05-14 17:06:07 +0200828 sport->port.icount.overrun++;
Uwe Kleine-König91555ce2015-02-24 11:17:05 +0100829 writel(USR2_ORE, sport->port.membase + USR2);
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100830 ret = IRQ_HANDLED;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200831 }
832
Uwe Kleine-König4d845a62016-03-24 14:24:21 +0100833 return ret;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200834}
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836/*
837 * Return TIOCSER_TEMT when transmitter is not busy.
838 */
839static unsigned int imx_tx_empty(struct uart_port *port)
840{
841 struct imx_port *sport = (struct imx_port *)port;
Huang Shijie1ce43e52013-10-11 18:30:59 +0800842 unsigned int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Huang Shijie1ce43e52013-10-11 18:30:59 +0800844 ret = (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
845
846 /* If the TX DMA is working, return 0. */
847 if (sport->dma_is_enabled && sport->dma_is_txing)
848 ret = 0;
849
850 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100853static unsigned int imx_get_mctrl(struct uart_port *port)
854{
855 struct imx_port *sport = (struct imx_port *)port;
856 unsigned int ret = imx_get_hwmctrl(sport);
857
858 mctrl_gpio_get(sport->gpios, &ret);
859
860 return ret;
861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
864{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100865 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100866 unsigned long temp;
867
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +0100868 if (!(port->rs485.flags & SER_RS485_ENABLED)) {
869 temp = readl(sport->port.membase + UCR2);
870 temp &= ~(UCR2_CTS | UCR2_CTSC);
871 if (mctrl & TIOCM_RTS)
872 temp |= UCR2_CTS | UCR2_CTSC;
873 writel(temp, sport->port.membase + UCR2);
874 }
Huang Shijie6b471a92013-11-29 17:29:24 +0800875
Uwe Kleine-König90ebc482015-10-18 21:34:46 +0200876 temp = readl(sport->port.membase + UCR3) & ~UCR3_DSR;
877 if (!(mctrl & TIOCM_DTR))
878 temp |= UCR3_DSR;
879 writel(temp, sport->port.membase + UCR3);
880
Huang Shijie6b471a92013-11-29 17:29:24 +0800881 temp = readl(sport->port.membase + uts_reg(sport)) & ~UTS_LOOP;
882 if (mctrl & TIOCM_LOOP)
883 temp |= UTS_LOOP;
884 writel(temp, sport->port.membase + uts_reg(sport));
Uwe Kleine-König58362d52015-12-13 11:30:03 +0100885
886 mctrl_gpio_set(sport->gpios, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
889/*
890 * Interrupts always disabled.
891 */
892static void imx_break_ctl(struct uart_port *port, int break_state)
893{
894 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100895 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 spin_lock_irqsave(&sport->port.lock, flags);
898
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100899 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
900
Sachin Kamat82313e62013-01-07 10:25:02 +0530901 if (break_state != 0)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100902 temp |= UCR1_SNDBRK;
903
904 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 spin_unlock_irqrestore(&sport->port.lock, flags);
907}
908
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200909/*
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200910 * This is our per-port timeout handler, for checking the
911 * modem status signals.
912 */
Kees Cooke99e88a2017-10-16 14:43:17 -0700913static void imx_timeout(struct timer_list *t)
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200914{
Kees Cooke99e88a2017-10-16 14:43:17 -0700915 struct imx_port *sport = from_timer(sport, t, timer);
Uwe Kleine-Königcc568842015-10-18 21:34:47 +0200916 unsigned long flags;
917
918 if (sport->port.state) {
919 spin_lock_irqsave(&sport->port.lock, flags);
920 imx_mctrl_check(sport);
921 spin_unlock_irqrestore(&sport->port.lock, flags);
922
923 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
924 }
925}
926
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +0200927#define RX_BUF_SIZE (PAGE_SIZE)
928
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800929/*
Lucas Stach905c0de2015-09-04 17:52:41 +0200930 * There are two kinds of RX DMA interrupts(such as in the MX6Q):
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800931 * [1] the RX DMA buffer is full.
Lucas Stach905c0de2015-09-04 17:52:41 +0200932 * [2] the aging timer expires
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800933 *
Lucas Stach905c0de2015-09-04 17:52:41 +0200934 * Condition [2] is triggered when a character has been sitting in the FIFO
935 * for at least 8 byte durations.
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800936 */
937static void dma_rx_callback(void *data)
938{
939 struct imx_port *sport = data;
940 struct dma_chan *chan = sport->dma_chan_rx;
941 struct scatterlist *sgl = &sport->rx_sgl;
Huang Shijie7cb92fd2013-10-15 15:23:40 +0800942 struct tty_port *port = &sport->port.state->port;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800943 struct dma_tx_state state;
Nandor Han9d297232016-08-08 15:38:27 +0300944 struct circ_buf *rx_ring = &sport->rx_ring;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800945 enum dma_status status;
Nandor Han9d297232016-08-08 15:38:27 +0300946 unsigned int w_bytes = 0;
947 unsigned int r_bytes;
948 unsigned int bd_size;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +0800949
Huang Shijief0ef8832013-10-11 18:31:01 +0800950 status = dmaengine_tx_status(chan, (dma_cookie_t)0, &state);
Philipp Zabel392bcee2015-05-19 10:54:09 +0200951
Nandor Han9d297232016-08-08 15:38:27 +0300952 if (status == DMA_ERROR) {
Nandor Han41d98b52016-08-08 15:38:28 +0300953 clear_rx_errors(sport);
Nandor Han9d297232016-08-08 15:38:27 +0300954 return;
Robin Gongee5e7c12014-12-09 18:11:33 +0900955 }
Lucas Stach976b39c2015-09-04 17:52:39 +0200956
Nandor Han9d297232016-08-08 15:38:27 +0300957 if (!(sport->port.ignore_status_mask & URXD_DUMMY_READ)) {
958
959 /*
960 * The state-residue variable represents the empty space
961 * relative to the entire buffer. Taking this in consideration
962 * the head is always calculated base on the buffer total
963 * length - DMA transaction residue. The UART script from the
964 * SDMA firmware will jump to the next buffer descriptor,
965 * once a DMA transaction if finalized (IMX53 RM - A.4.1.2.4).
966 * Taking this in consideration the tail is always at the
967 * beginning of the buffer descriptor that contains the head.
968 */
969
970 /* Calculate the head */
971 rx_ring->head = sg_dma_len(sgl) - state.residue;
972
973 /* Calculate the tail. */
974 bd_size = sg_dma_len(sgl) / sport->rx_periods;
975 rx_ring->tail = ((rx_ring->head-1) / bd_size) * bd_size;
976
977 if (rx_ring->head <= sg_dma_len(sgl) &&
978 rx_ring->head > rx_ring->tail) {
979
980 /* Move data from tail to head */
981 r_bytes = rx_ring->head - rx_ring->tail;
982
983 /* CPU claims ownership of RX DMA buffer */
984 dma_sync_sg_for_cpu(sport->port.dev, sgl, 1,
985 DMA_FROM_DEVICE);
986
987 w_bytes = tty_insert_flip_string(port,
988 sport->rx_buf + rx_ring->tail, r_bytes);
989
990 /* UART retrieves ownership of RX DMA buffer */
991 dma_sync_sg_for_device(sport->port.dev, sgl, 1,
992 DMA_FROM_DEVICE);
993
994 if (w_bytes != r_bytes)
995 sport->port.icount.buf_overrun++;
996
997 sport->port.icount.rx += w_bytes;
998 } else {
999 WARN_ON(rx_ring->head > sg_dma_len(sgl));
1000 WARN_ON(rx_ring->head <= rx_ring->tail);
1001 }
1002 }
1003
1004 if (w_bytes) {
1005 tty_flip_buffer_push(port);
1006 dev_dbg(sport->port.dev, "We get %d bytes.\n", w_bytes);
1007 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001008}
1009
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001010/* RX DMA buffer periods */
1011#define RX_DMA_PERIODS 4
1012
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001013static int start_rx_dma(struct imx_port *sport)
1014{
1015 struct scatterlist *sgl = &sport->rx_sgl;
1016 struct dma_chan *chan = sport->dma_chan_rx;
1017 struct device *dev = sport->port.dev;
1018 struct dma_async_tx_descriptor *desc;
1019 int ret;
1020
Nandor Han9d297232016-08-08 15:38:27 +03001021 sport->rx_ring.head = 0;
1022 sport->rx_ring.tail = 0;
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001023 sport->rx_periods = RX_DMA_PERIODS;
Nandor Han9d297232016-08-08 15:38:27 +03001024
Greg Kroah-Hartman351ea502017-07-17 13:48:58 +02001025 sg_init_one(sgl, sport->rx_buf, RX_BUF_SIZE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001026 ret = dma_map_sg(dev, sgl, 1, DMA_FROM_DEVICE);
1027 if (ret == 0) {
1028 dev_err(dev, "DMA mapping error for RX.\n");
1029 return -EINVAL;
1030 }
Nandor Han9d297232016-08-08 15:38:27 +03001031
1032 desc = dmaengine_prep_dma_cyclic(chan, sg_dma_address(sgl),
1033 sg_dma_len(sgl), sg_dma_len(sgl) / sport->rx_periods,
1034 DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT);
1035
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001036 if (!desc) {
Dirk Behme24649822014-12-09 18:11:26 +09001037 dma_unmap_sg(dev, sgl, 1, DMA_FROM_DEVICE);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001038 dev_err(dev, "We cannot prepare for the RX slave dma!\n");
1039 return -EINVAL;
1040 }
1041 desc->callback = dma_rx_callback;
1042 desc->callback_param = sport;
1043
1044 dev_dbg(dev, "RX: prepare for the DMA.\n");
Romain Perier4139fd72017-09-28 11:03:49 +01001045 sport->dma_is_rxing = 1;
Nandor Han9d297232016-08-08 15:38:27 +03001046 sport->rx_cookie = dmaengine_submit(desc);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001047 dma_async_issue_pending(chan);
1048 return 0;
1049}
1050
Nandor Han41d98b52016-08-08 15:38:28 +03001051static void clear_rx_errors(struct imx_port *sport)
1052{
Troy Kisky45ca6732018-02-23 18:27:50 -08001053 struct tty_port *port = &sport->port.state->port;
Nandor Han41d98b52016-08-08 15:38:28 +03001054 unsigned int status_usr1, status_usr2;
1055
1056 status_usr1 = readl(sport->port.membase + USR1);
1057 status_usr2 = readl(sport->port.membase + USR2);
1058
1059 if (status_usr2 & USR2_BRCD) {
1060 sport->port.icount.brk++;
1061 writel(USR2_BRCD, sport->port.membase + USR2);
Troy Kisky45ca6732018-02-23 18:27:50 -08001062 uart_handle_break(&sport->port);
1063 if (tty_insert_flip_char(port, 0, TTY_BREAK) == 0)
1064 sport->port.icount.buf_overrun++;
1065 tty_flip_buffer_push(port);
1066 } else {
1067 dev_err(sport->port.dev, "DMA transaction error.\n");
1068 if (status_usr1 & USR1_FRAMERR) {
1069 sport->port.icount.frame++;
1070 writel(USR1_FRAMERR, sport->port.membase + USR1);
1071 } else if (status_usr1 & USR1_PARITYERR) {
1072 sport->port.icount.parity++;
1073 writel(USR1_PARITYERR, sport->port.membase + USR1);
1074 }
Nandor Han41d98b52016-08-08 15:38:28 +03001075 }
1076
1077 if (status_usr2 & USR2_ORE) {
1078 sport->port.icount.overrun++;
1079 writel(USR2_ORE, sport->port.membase + USR2);
1080 }
1081
1082}
1083
Lucas Stachcc323822015-09-04 17:52:37 +02001084#define TXTL_DEFAULT 2 /* reset default */
1085#define RXTL_DEFAULT 1 /* reset default */
Lucas Stach184bd702015-09-04 17:52:40 +02001086#define TXTL_DMA 8 /* DMA burst setting */
1087#define RXTL_DMA 9 /* DMA burst setting */
Lucas Stachcc323822015-09-04 17:52:37 +02001088
1089static void imx_setup_ufcr(struct imx_port *sport,
1090 unsigned char txwl, unsigned char rxwl)
1091{
1092 unsigned int val;
1093
1094 /* set receiver / transmitter trigger level */
1095 val = readl(sport->port.membase + UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
1096 val |= txwl << UFCR_TXTL_SHF | rxwl;
1097 writel(val, sport->port.membase + UFCR);
1098}
1099
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001100static void imx_uart_dma_exit(struct imx_port *sport)
1101{
1102 if (sport->dma_chan_rx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001103 dmaengine_terminate_sync(sport->dma_chan_rx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001104 dma_release_channel(sport->dma_chan_rx);
1105 sport->dma_chan_rx = NULL;
Nandor Han9d297232016-08-08 15:38:27 +03001106 sport->rx_cookie = -EINVAL;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001107 kfree(sport->rx_buf);
1108 sport->rx_buf = NULL;
1109 }
1110
1111 if (sport->dma_chan_tx) {
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001112 dmaengine_terminate_sync(sport->dma_chan_tx);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001113 dma_release_channel(sport->dma_chan_tx);
1114 sport->dma_chan_tx = NULL;
1115 }
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001116}
1117
1118static int imx_uart_dma_init(struct imx_port *sport)
1119{
Huang Shijieb09c74a2013-08-29 16:29:25 +08001120 struct dma_slave_config slave_config = {};
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001121 struct device *dev = sport->port.dev;
1122 int ret;
1123
1124 /* Prepare for RX : */
1125 sport->dma_chan_rx = dma_request_slave_channel(dev, "rx");
1126 if (!sport->dma_chan_rx) {
1127 dev_dbg(dev, "cannot get the DMA channel.\n");
1128 ret = -EINVAL;
1129 goto err;
1130 }
1131
1132 slave_config.direction = DMA_DEV_TO_MEM;
1133 slave_config.src_addr = sport->port.mapbase + URXD0;
1134 slave_config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001135 /* one byte less than the watermark level to enable the aging timer */
1136 slave_config.src_maxburst = RXTL_DMA - 1;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001137 ret = dmaengine_slave_config(sport->dma_chan_rx, &slave_config);
1138 if (ret) {
1139 dev_err(dev, "error in RX dma configuration.\n");
1140 goto err;
1141 }
1142
Martyn Welchf654b23c2017-09-28 11:07:40 +01001143 sport->rx_buf = kzalloc(RX_BUF_SIZE, GFP_KERNEL);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001144 if (!sport->rx_buf) {
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001145 ret = -ENOMEM;
1146 goto err;
1147 }
Nandor Han9d297232016-08-08 15:38:27 +03001148 sport->rx_ring.buf = sport->rx_buf;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001149
1150 /* Prepare for TX : */
1151 sport->dma_chan_tx = dma_request_slave_channel(dev, "tx");
1152 if (!sport->dma_chan_tx) {
1153 dev_err(dev, "cannot get the TX DMA channel!\n");
1154 ret = -EINVAL;
1155 goto err;
1156 }
1157
1158 slave_config.direction = DMA_MEM_TO_DEV;
1159 slave_config.dst_addr = sport->port.mapbase + URTX0;
1160 slave_config.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
Lucas Stach184bd702015-09-04 17:52:40 +02001161 slave_config.dst_maxburst = TXTL_DMA;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001162 ret = dmaengine_slave_config(sport->dma_chan_tx, &slave_config);
1163 if (ret) {
1164 dev_err(dev, "error in TX dma configuration.");
1165 goto err;
1166 }
1167
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001168 return 0;
1169err:
1170 imx_uart_dma_exit(sport);
1171 return ret;
1172}
1173
1174static void imx_enable_dma(struct imx_port *sport)
1175{
1176 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001177
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001178 /* set UCR1 */
1179 temp = readl(sport->port.membase + UCR1);
Lucas Stach905c0de2015-09-04 17:52:41 +02001180 temp |= UCR1_RDMAEN | UCR1_TDMAEN | UCR1_ATDMAEN;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001181 writel(temp, sport->port.membase + UCR1);
1182
Lucas Stach184bd702015-09-04 17:52:40 +02001183 imx_setup_ufcr(sport, TXTL_DMA, RXTL_DMA);
1184
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001185 sport->dma_is_enabled = 1;
1186}
1187
1188static void imx_disable_dma(struct imx_port *sport)
1189{
1190 unsigned long temp;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001191
1192 /* clear UCR1 */
1193 temp = readl(sport->port.membase + UCR1);
1194 temp &= ~(UCR1_RDMAEN | UCR1_TDMAEN | UCR1_ATDMAEN);
1195 writel(temp, sport->port.membase + UCR1);
1196
1197 /* clear UCR2 */
1198 temp = readl(sport->port.membase + UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001199 temp &= ~(UCR2_CTSC | UCR2_CTS | UCR2_ATEN);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001200 writel(temp, sport->port.membase + UCR2);
1201
Lucas Stach184bd702015-09-04 17:52:40 +02001202 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
1203
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001204 sport->dma_is_enabled = 0;
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001205}
1206
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001207/* half the RX buffer size */
1208#define CTSTL 16
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210static int imx_startup(struct uart_port *port)
1211{
1212 struct imx_port *sport = (struct imx_port *)port;
Fabio Estevam458e2c82015-07-27 15:15:59 -03001213 int retval, i;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001214 unsigned long flags, temp;
Uwe Kleine-König4238c002018-02-18 22:02:45 +01001215 int dma_is_inited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Huang Shijie1cf93e02013-06-28 13:39:42 +08001217 retval = clk_prepare_enable(sport->clk_per);
1218 if (retval)
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001219 return retval;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001220 retval = clk_prepare_enable(sport->clk_ipg);
1221 if (retval) {
1222 clk_disable_unprepare(sport->clk_per);
Fabio Estevamcb0f0a52014-10-27 14:49:38 -02001223 return retval;
Huang Shijie0c375502013-06-09 10:01:19 +08001224 }
Huang Shijie28eb4272013-06-04 09:59:33 +08001225
Lucas Stachcc323822015-09-04 17:52:37 +02001226 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 /* disable the DREN bit (Data Ready interrupt enable) before
1229 * requesting IRQs
1230 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001231 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001232
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001233 /* set the trigger level for CTS */
Sachin Kamat82313e62013-01-07 10:25:02 +05301234 temp &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
1235 temp |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +02001236
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001237 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Lucas Stach7e115772015-09-04 17:52:42 +02001239 /* Can we enable the DMA support? */
Uwe Kleine-König4238c002018-02-18 22:02:45 +01001240 if (!uart_console(port) && imx_uart_dma_init(sport) == 0)
1241 dma_is_inited = 1;
Lucas Stach7e115772015-09-04 17:52:42 +02001242
Jiada Wang53794182015-04-13 18:31:43 +09001243 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijie772f8992014-05-21 08:56:28 +08001244 /* Reset fifo's and state machines */
Fabio Estevam458e2c82015-07-27 15:15:59 -03001245 i = 100;
1246
1247 temp = readl(sport->port.membase + UCR2);
1248 temp &= ~UCR2_SRST;
1249 writel(temp, sport->port.membase + UCR2);
1250
1251 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) && (--i > 0))
1252 udelay(1);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /*
1255 * Finally, clear and enable interrupts
1256 */
Uwe Kleine-König27e16502016-03-24 14:24:25 +01001257 writel(USR1_RTSD | USR1_DTRD, sport->port.membase + USR1);
Uwe Kleine-König91555ce2015-02-24 11:17:05 +01001258 writel(USR2_ORE, sport->port.membase + USR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Uwe Kleine-König42afa622018-02-18 22:02:46 +01001260 if (dma_is_inited)
Lucas Stach7e115772015-09-04 17:52:42 +02001261 imx_enable_dma(sport);
1262
Troy Kisky1f043572017-11-16 11:14:53 -07001263 temp = readl(sport->port.membase + UCR1) & ~UCR1_RRDYEN;
1264 if (!sport->dma_is_enabled)
1265 temp |= UCR1_RRDYEN;
1266 temp |= UCR1_UARTEN;
Nandor Han6376cd32017-06-28 15:59:36 +02001267 if (sport->have_rtscts)
1268 temp |= UCR1_RTSDEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001269
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001270 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Troy Kisky1f043572017-11-16 11:14:53 -07001272 temp = readl(sport->port.membase + UCR4) & ~UCR4_OREN;
1273 if (!sport->dma_is_enabled)
1274 temp |= UCR4_OREN;
Jiada Wang6f026d6b2014-12-09 18:11:34 +09001275 writel(temp, sport->port.membase + UCR4);
1276
Troy Kisky1f043572017-11-16 11:14:53 -07001277 temp = readl(sport->port.membase + UCR2) & ~UCR2_ATEN;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001278 temp |= (UCR2_RXEN | UCR2_TXEN);
Lucas Stachbff09b02013-05-30 15:47:04 +02001279 if (!sport->have_rtscts)
1280 temp |= UCR2_IRTS;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001281 /*
1282 * make sure the edge sensitive RTS-irq is disabled,
1283 * we're using RTSD instead.
1284 */
1285 if (!is_imx1_uart(sport))
1286 temp &= ~UCR2_RTSEN;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001287 writel(temp, sport->port.membase + UCR2);
1288
Huang Shijiea496e622013-07-08 17:14:17 +08001289 if (!is_imx1_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001290 temp = readl(sport->port.membase + UCR3);
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001291
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02001292 temp |= UCR3_DTRDEN | UCR3_RI | UCR3_DCD;
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001293
1294 if (sport->dte_mode)
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02001295 /* disable broken interrupts */
Uwe Kleine-König16804d62016-03-24 14:24:22 +01001296 temp &= ~(UCR3_RI | UCR3_DCD);
1297
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001298 writel(temp, sport->port.membase + UCR3);
1299 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +02001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 /*
1302 * Enable modem status interrupts
1303 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 imx_enable_ms(&sport->port);
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001305
1306 /*
Peter Senna Tschudin4dec2f12017-05-14 14:35:15 +02001307 * Start RX DMA immediately instead of waiting for RX FIFO interrupts.
1308 * In our iMX53 the average delay for the first reception dropped from
1309 * approximately 35000 microseconds to 1000 microseconds.
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001310 */
Troy Kisky1f043572017-11-16 11:14:53 -07001311 if (sport->dma_is_enabled)
Peter Senna Tschudin4dec2f12017-05-14 14:35:15 +02001312 start_rx_dma(sport);
Peter Senna Tschudin18a42082017-04-07 11:45:24 +02001313
Sachin Kamat82313e62013-01-07 10:25:02 +05301314 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
1319static void imx_shutdown(struct uart_port *port)
1320{
1321 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001322 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001323 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001325 if (sport->dma_is_enabled) {
Nandor Han9d297232016-08-08 15:38:27 +03001326 sport->dma_is_rxing = 0;
1327 sport->dma_is_txing = 0;
Fabien Lahouderee5e89602016-09-13 10:17:05 +02001328 dmaengine_terminate_sync(sport->dma_chan_tx);
1329 dmaengine_terminate_sync(sport->dma_chan_rx);
Huang Shijiea4688bc2014-09-19 15:42:57 +08001330
Jiada Wang73631812014-12-09 18:11:23 +09001331 spin_lock_irqsave(&sport->port.lock, flags);
Huang Shijiea4688bc2014-09-19 15:42:57 +08001332 imx_stop_tx(port);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001333 imx_stop_rx(port);
1334 imx_disable_dma(sport);
Jiada Wang73631812014-12-09 18:11:23 +09001335 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijieb4cdc8f2013-07-08 17:14:18 +08001336 imx_uart_dma_exit(sport);
1337 }
1338
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001339 mctrl_gpio_disable_ms(sport->gpios);
1340
Xinyu Chen9ec18822012-08-27 09:36:51 +02001341 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001342 temp = readl(sport->port.membase + UCR2);
1343 temp &= ~(UCR2_TXEN);
1344 writel(temp, sport->port.membase + UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001345 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +01001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 /*
1348 * Stop our timer.
1349 */
1350 del_timer_sync(&sport->timer);
1351
1352 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 * Disable all interrupts, port and break condition.
1354 */
1355
Xinyu Chen9ec18822012-08-27 09:36:51 +02001356 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001357 temp = readl(sport->port.membase + UCR1);
1358 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001359
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001360 writel(temp, sport->port.membase + UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001361 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +08001362
Huang Shijie1cf93e02013-06-28 13:39:42 +08001363 clk_disable_unprepare(sport->clk_per);
1364 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001367static void imx_flush_buffer(struct uart_port *port)
1368{
1369 struct imx_port *sport = (struct imx_port *)port;
Dirk Behme82e86ae2014-12-09 18:11:27 +09001370 struct scatterlist *sgl = &sport->tx_sgl[0];
Dirk Behmea2c718c2014-12-09 18:11:31 +09001371 unsigned long temp;
Fabio Estevam4f86a952015-02-07 15:46:41 -02001372 int i = 100, ubir, ubmr, uts;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001373
Dirk Behme82e86ae2014-12-09 18:11:27 +09001374 if (!sport->dma_chan_tx)
1375 return;
1376
1377 sport->tx_bytes = 0;
1378 dmaengine_terminate_all(sport->dma_chan_tx);
1379 if (sport->dma_is_txing) {
1380 dma_unmap_sg(sport->port.dev, sgl, sport->dma_tx_nents,
1381 DMA_TO_DEVICE);
Dirk Behmea2c718c2014-12-09 18:11:31 +09001382 temp = readl(sport->port.membase + UCR1);
1383 temp &= ~UCR1_TDMAEN;
1384 writel(temp, sport->port.membase + UCR1);
Martyn Welch0f7bdbd2017-09-28 11:38:51 +01001385 sport->dma_is_txing = 0;
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001386 }
Fabio Estevam934084a2015-01-13 10:00:26 -02001387
1388 /*
1389 * According to the Reference Manual description of the UART SRST bit:
Martyn Welch263763c2017-10-04 17:13:27 +01001390 *
Fabio Estevam934084a2015-01-13 10:00:26 -02001391 * "Reset the transmit and receive state machines,
1392 * all FIFOs and register USR1, USR2, UBIR, UBMR, UBRC, URXD, UTXD
Martyn Welch263763c2017-10-04 17:13:27 +01001393 * and UTS[6-3]".
1394 *
1395 * We don't need to restore the old values from USR1, USR2, URXD and
1396 * UTXD. UBRC is read only, so only save/restore the other three
1397 * registers.
Fabio Estevam934084a2015-01-13 10:00:26 -02001398 */
1399 ubir = readl(sport->port.membase + UBIR);
1400 ubmr = readl(sport->port.membase + UBMR);
Fabio Estevam934084a2015-01-13 10:00:26 -02001401 uts = readl(sport->port.membase + IMX21_UTS);
1402
1403 temp = readl(sport->port.membase + UCR2);
1404 temp &= ~UCR2_SRST;
1405 writel(temp, sport->port.membase + UCR2);
1406
1407 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) && (--i > 0))
1408 udelay(1);
1409
1410 /* Restore the registers */
1411 writel(ubir, sport->port.membase + UBIR);
1412 writel(ubmr, sport->port.membase + UBMR);
Fabio Estevam934084a2015-01-13 10:00:26 -02001413 writel(uts, sport->port.membase + IMX21_UTS);
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001414}
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416static void
Alan Cox606d0992006-12-08 02:38:45 -08001417imx_set_termios(struct uart_port *port, struct ktermios *termios,
1418 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
1420 struct imx_port *sport = (struct imx_port *)port;
1421 unsigned long flags;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001422 unsigned long ucr2, old_ucr1, old_ucr2;
1423 unsigned int baud, quot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001425 unsigned long div, ufcr;
Oskar Schirmer534fca02009-06-11 14:52:23 +01001426 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001427 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 * We only support CS7 and CS8.
1431 */
1432 while ((termios->c_cflag & CSIZE) != CS7 &&
1433 (termios->c_cflag & CSIZE) != CS8) {
1434 termios->c_cflag &= ~CSIZE;
1435 termios->c_cflag |= old_csize;
1436 old_csize = CS8;
1437 }
1438
1439 if ((termios->c_cflag & CSIZE) == CS8)
1440 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
1441 else
1442 ucr2 = UCR2_SRST | UCR2_IRTS;
1443
1444 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +05301445 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +01001446 ucr2 &= ~UCR2_IRTS;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001447
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001448 if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001449 /*
1450 * RTS is mandatory for rs485 operation, so keep
1451 * it under manual control and keep transmitter
1452 * disabled.
1453 */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001454 if (port->rs485.flags &
1455 SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001456 imx_port_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001457 else
1458 imx_port_rts_inactive(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001459 } else {
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001460 imx_port_rts_auto(sport, &ucr2);
Fabio Estevam12fe59f2015-03-10 12:46:29 -03001461 }
Sascha Hauer5b802342006-05-04 14:07:42 +01001462 } else {
1463 termios->c_cflag &= ~CRTSCTS;
1464 }
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001465 } else if (port->rs485.flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001466 /* disable transmitter */
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001467 if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001468 imx_port_rts_active(sport, &ucr2);
Fabio Estevam1a613622017-01-30 09:12:11 -02001469 else
1470 imx_port_rts_inactive(sport, &ucr2);
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001471 }
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 if (termios->c_cflag & CSTOPB)
1475 ucr2 |= UCR2_STPB;
1476 if (termios->c_cflag & PARENB) {
1477 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +00001478 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 ucr2 |= UCR2_PROE;
1480 }
1481
Eric Miao995234d2011-12-23 05:39:27 +08001482 del_timer_sync(&sport->timer);
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 /*
1485 * Ask the core to calculate the divisor for us.
1486 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001487 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 quot = uart_get_divisor(port, baud);
1489
1490 spin_lock_irqsave(&sport->port.lock, flags);
1491
1492 sport->port.read_status_mask = 0;
1493 if (termios->c_iflag & INPCK)
1494 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
1495 if (termios->c_iflag & (BRKINT | PARMRK))
1496 sport->port.read_status_mask |= URXD_BRK;
1497
1498 /*
1499 * Characters to ignore
1500 */
1501 sport->port.ignore_status_mask = 0;
1502 if (termios->c_iflag & IGNPAR)
Eric Nelson865cea82014-12-18 12:37:14 -07001503 sport->port.ignore_status_mask |= URXD_PRERR | URXD_FRMERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (termios->c_iflag & IGNBRK) {
1505 sport->port.ignore_status_mask |= URXD_BRK;
1506 /*
1507 * If we're ignoring parity and break indicators,
1508 * ignore overruns too (for real raw support).
1509 */
1510 if (termios->c_iflag & IGNPAR)
1511 sport->port.ignore_status_mask |= URXD_OVRRUN;
1512 }
1513
Jiada Wang55d86932014-12-09 18:11:22 +09001514 if ((termios->c_cflag & CREAD) == 0)
1515 sport->port.ignore_status_mask |= URXD_DUMMY_READ;
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 /*
1518 * Update the per-port timeout.
1519 */
1520 uart_update_timeout(port, termios->c_cflag, baud);
1521
1522 /*
1523 * disable interrupts and drain transmitter
1524 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001525 old_ucr1 = readl(sport->port.membase + UCR1);
1526 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1527 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Sachin Kamat82313e62013-01-07 10:25:02 +05301529 while (!(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 barrier();
1531
1532 /* then, disable everything */
Lucas Stach86a04ba2015-09-04 17:52:38 +02001533 old_ucr2 = readl(sport->port.membase + UCR2);
1534 writel(old_ucr2 & ~(UCR2_TXEN | UCR2_RXEN),
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001535 sport->port.membase + UCR2);
Lucas Stach86a04ba2015-09-04 17:52:38 +02001536 old_ucr2 &= (UCR2_TXEN | UCR2_RXEN | UCR2_ATEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001538 /* custom-baudrate handling */
1539 div = sport->port.uartclk / (baud * 16);
1540 if (baud == 38400 && quot != div)
1541 baud = sport->port.uartclk / (quot * 16);
Hubert Feurstein09bd00f2013-07-18 18:52:49 +02001542
Uwe Kleine-Königafe9cbb2015-02-24 11:17:10 +01001543 div = sport->port.uartclk / (baud * 16);
1544 if (div > 7)
1545 div = 7;
1546 if (!div)
1547 div = 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001548
Oskar Schirmer534fca02009-06-11 14:52:23 +01001549 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1550 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001551
Alan Coxeab4f5a2010-06-01 22:52:52 +02001552 tdiv64 = sport->port.uartclk;
1553 tdiv64 *= num;
1554 do_div(tdiv64, denom * 16 * div);
1555 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001556 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001557
Oskar Schirmer534fca02009-06-11 14:52:23 +01001558 num -= 1;
1559 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001560
1561 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001562 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +02001563 writel(ufcr, sport->port.membase + UFCR);
1564
Oskar Schirmer534fca02009-06-11 14:52:23 +01001565 writel(num, sport->port.membase + UBIR);
1566 writel(denom, sport->port.membase + UBMR);
1567
Huang Shijiea496e622013-07-08 17:14:17 +08001568 if (!is_imx1_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001569 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001570 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001572 writel(old_ucr1, sport->port.membase + UCR1);
1573
1574 /* set the parity, stop bits and data size */
Lucas Stach86a04ba2015-09-04 17:52:38 +02001575 writel(ucr2 | old_ucr2, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1578 imx_enable_ms(&sport->port);
1579
1580 spin_unlock_irqrestore(&sport->port.lock, flags);
1581}
1582
1583static const char *imx_type(struct uart_port *port)
1584{
1585 struct imx_port *sport = (struct imx_port *)port;
1586
1587 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1588}
1589
1590/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 * Configure/autoconfigure the port.
1592 */
1593static void imx_config_port(struct uart_port *port, int flags)
1594{
1595 struct imx_port *sport = (struct imx_port *)port;
1596
Alexander Shiyanda82f992014-02-22 16:01:33 +04001597 if (flags & UART_CONFIG_TYPE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 sport->port.type = PORT_IMX;
1599}
1600
1601/*
1602 * Verify the new serial_struct (for TIOCSSERIAL).
1603 * The only change we allow are to the flags and type, and
1604 * even then only between PORT_IMX and PORT_UNKNOWN
1605 */
1606static int
1607imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1608{
1609 struct imx_port *sport = (struct imx_port *)port;
1610 int ret = 0;
1611
1612 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1613 ret = -EINVAL;
1614 if (sport->port.irq != ser->irq)
1615 ret = -EINVAL;
1616 if (ser->io_type != UPIO_MEM)
1617 ret = -EINVAL;
1618 if (sport->port.uartclk / 16 != ser->baud_base)
1619 ret = -EINVAL;
Olof Johanssona50c44c2013-09-11 21:27:53 -07001620 if (sport->port.mapbase != (unsigned long)ser->iomem_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 ret = -EINVAL;
1622 if (sport->port.iobase != ser->port)
1623 ret = -EINVAL;
1624 if (ser->hub6 != 0)
1625 ret = -EINVAL;
1626 return ret;
1627}
1628
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001629#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001630
1631static int imx_poll_init(struct uart_port *port)
1632{
1633 struct imx_port *sport = (struct imx_port *)port;
1634 unsigned long flags;
1635 unsigned long temp;
1636 int retval;
1637
1638 retval = clk_prepare_enable(sport->clk_ipg);
1639 if (retval)
1640 return retval;
1641 retval = clk_prepare_enable(sport->clk_per);
1642 if (retval)
1643 clk_disable_unprepare(sport->clk_ipg);
1644
Lucas Stachcc323822015-09-04 17:52:37 +02001645 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001646
1647 spin_lock_irqsave(&sport->port.lock, flags);
1648
1649 temp = readl(sport->port.membase + UCR1);
1650 if (is_imx1_uart(sport))
1651 temp |= IMX1_UCR1_UARTCLKEN;
1652 temp |= UCR1_UARTEN | UCR1_RRDYEN;
1653 temp &= ~(UCR1_TXMPTYEN | UCR1_RTSDEN);
1654 writel(temp, sport->port.membase + UCR1);
1655
1656 temp = readl(sport->port.membase + UCR2);
1657 temp |= UCR2_RXEN;
1658 writel(temp, sport->port.membase + UCR2);
1659
1660 spin_unlock_irqrestore(&sport->port.lock, flags);
1661
1662 return 0;
1663}
1664
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001665static int imx_poll_get_char(struct uart_port *port)
1666{
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001667 if (!(readl_relaxed(port->membase + USR2) & USR2_RDR))
Dirk Behme26c47412014-09-03 12:33:53 +01001668 return NO_POLL_CHAR;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001669
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001670 return readl_relaxed(port->membase + URXD0) & URXD_RX_DATA;
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001671}
1672
1673static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1674{
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001675 unsigned int status;
1676
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001677 /* drain */
1678 do {
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001679 status = readl_relaxed(port->membase + USR1);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001680 } while (~status & USR1_TRDY);
1681
1682 /* write */
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001683 writel_relaxed(c, port->membase + URTX0);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001684
1685 /* flush */
1686 do {
Daniel Thompsonf968ef32014-10-28 09:28:07 +01001687 status = readl_relaxed(port->membase + USR2);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001688 } while (~status & USR2_TXDC);
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001689}
1690#endif
1691
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001692static int imx_rs485_config(struct uart_port *port,
1693 struct serial_rs485 *rs485conf)
1694{
1695 struct imx_port *sport = (struct imx_port *)port;
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001696 unsigned long temp;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001697
1698 /* unimplemented */
1699 rs485conf->delay_rts_before_send = 0;
1700 rs485conf->delay_rts_after_send = 0;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001701
1702 /* RTS is required to control the transmitter */
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02001703 if (!sport->have_rtscts && !sport->have_rtsgpio)
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001704 rs485conf->flags &= ~SER_RS485_ENABLED;
1705
1706 if (rs485conf->flags & SER_RS485_ENABLED) {
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001707 /* disable transmitter */
1708 temp = readl(sport->port.membase + UCR2);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001709 if (rs485conf->flags & SER_RS485_RTS_AFTER_SEND)
Uwe Kleine-König58362d52015-12-13 11:30:03 +01001710 imx_port_rts_active(sport, &temp);
Fabio Estevam1a613622017-01-30 09:12:11 -02001711 else
1712 imx_port_rts_inactive(sport, &temp);
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001713 writel(temp, sport->port.membase + UCR2);
1714 }
1715
Baruch Siach7d1cadc2016-02-29 14:34:10 +02001716 /* Make sure Rx is enabled in case Tx is active with Rx disabled */
1717 if (!(rs485conf->flags & SER_RS485_ENABLED) ||
1718 rs485conf->flags & SER_RS485_RX_DURING_TX) {
1719 temp = readl(sport->port.membase + UCR2);
1720 temp |= UCR2_RXEN;
1721 writel(temp, sport->port.membase + UCR2);
1722 }
1723
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01001724 port->rs485 = *rs485conf;
1725
1726 return 0;
1727}
1728
Julia Lawall069a47e2016-09-01 19:51:35 +02001729static const struct uart_ops imx_pops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 .tx_empty = imx_tx_empty,
1731 .set_mctrl = imx_set_mctrl,
1732 .get_mctrl = imx_get_mctrl,
1733 .stop_tx = imx_stop_tx,
1734 .start_tx = imx_start_tx,
1735 .stop_rx = imx_stop_rx,
1736 .enable_ms = imx_enable_ms,
1737 .break_ctl = imx_break_ctl,
1738 .startup = imx_startup,
1739 .shutdown = imx_shutdown,
Huang Shijieeb56b7e2013-10-11 18:30:58 +08001740 .flush_buffer = imx_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 .set_termios = imx_set_termios,
1742 .type = imx_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 .config_port = imx_config_port,
1744 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001745#if defined(CONFIG_CONSOLE_POLL)
Daniel Thompson6b8bdad2014-10-28 09:28:08 +01001746 .poll_init = imx_poll_init,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001747 .poll_get_char = imx_poll_get_char,
1748 .poll_put_char = imx_poll_put_char,
1749#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750};
1751
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001752static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001755static void imx_console_putchar(struct uart_port *port, int ch)
1756{
1757 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001758
Shawn Guofe6b5402011-06-25 02:04:33 +08001759 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001760 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001761
1762 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001763}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765/*
1766 * Interrupts are disabled on entering
1767 */
1768static void
1769imx_console_write(struct console *co, const char *s, unsigned int count)
1770{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001771 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001772 struct imx_port_ucrs old_ucr;
1773 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001774 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001775 int locked = 1;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001776 int retval;
1777
Fabio Estevam0c727a42015-08-18 12:43:12 -03001778 retval = clk_enable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001779 if (retval)
1780 return;
Fabio Estevam0c727a42015-08-18 12:43:12 -03001781 retval = clk_enable(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001782 if (retval) {
Fabio Estevam0c727a42015-08-18 12:43:12 -03001783 clk_disable(sport->clk_per);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001784 return;
1785 }
Xinyu Chen9ec18822012-08-27 09:36:51 +02001786
Thomas Gleixner677fe552013-02-14 21:01:06 +01001787 if (sport->port.sysrq)
1788 locked = 0;
1789 else if (oops_in_progress)
1790 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1791 else
1792 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001795 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001797 imx_port_ucrs_save(&sport->port, &old_ucr);
1798 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Shawn Guofe6b5402011-06-25 02:04:33 +08001800 if (is_imx1_uart(sport))
1801 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001802 ucr1 |= UCR1_UARTEN;
1803 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1804
1805 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001806
Dirk Behme0ad5a812011-12-22 09:57:52 +01001807 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Russell Kingd3587882006-03-20 20:00:09 +00001809 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 /*
1812 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001813 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001815 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Dirk Behme0ad5a812011-12-22 09:57:52 +01001817 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001818
Thomas Gleixner677fe552013-02-14 21:01:06 +01001819 if (locked)
1820 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001821
Fabio Estevam0c727a42015-08-18 12:43:12 -03001822 clk_disable(sport->clk_ipg);
1823 clk_disable(sport->clk_per);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
1826/*
1827 * If the port was already initialised (eg, by a boot loader),
1828 * try to determine the current setup.
1829 */
1830static void __init
1831imx_console_get_options(struct imx_port *sport, int *baud,
1832 int *parity, int *bits)
1833{
Sascha Hauer587897f2005-04-29 22:46:40 +01001834
Roel Kluin2e2eb502009-12-09 12:31:36 -08001835 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301837 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001838 unsigned int baud_raw;
1839 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001841 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 *parity = 'n';
1844 if (ucr2 & UCR2_PREN) {
1845 if (ucr2 & UCR2_PROE)
1846 *parity = 'o';
1847 else
1848 *parity = 'e';
1849 }
1850
1851 if (ucr2 & UCR2_WS)
1852 *bits = 8;
1853 else
1854 *bits = 7;
1855
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001856 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1857 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001859 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001860 if (ucfr_rfdiv == 6)
1861 ucfr_rfdiv = 7;
1862 else
1863 ucfr_rfdiv = 6 - ucfr_rfdiv;
1864
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001865 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001866 uartclk /= ucfr_rfdiv;
1867
1868 { /*
1869 * The next code provides exact computation of
1870 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1871 * without need of float support or long long division,
1872 * which would be required to prevent 32bit arithmetic overflow
1873 */
1874 unsigned int mul = ubir + 1;
1875 unsigned int div = 16 * (ubmr + 1);
1876 unsigned int rem = uartclk % div;
1877
1878 baud_raw = (uartclk / div) * mul;
1879 baud_raw += (rem * mul + div / 2) / div;
1880 *baud = (baud_raw + 50) / 100 * 100;
1881 }
1882
Sachin Kamat82313e62013-01-07 10:25:02 +05301883 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301884 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01001885 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
1887}
1888
1889static int __init
1890imx_console_setup(struct console *co, char *options)
1891{
1892 struct imx_port *sport;
1893 int baud = 9600;
1894 int bits = 8;
1895 int parity = 'n';
1896 int flow = 'n';
Huang Shijie1cf93e02013-06-28 13:39:42 +08001897 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899 /*
1900 * Check whether an invalid uart number has been specified, and
1901 * if so, search for the first available port that does have
1902 * console support.
1903 */
1904 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1905 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001906 sport = imx_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05301907 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04001908 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Huang Shijie1cf93e02013-06-28 13:39:42 +08001910 /* For setting the registers, we only need to enable the ipg clock. */
1911 retval = clk_prepare_enable(sport->clk_ipg);
1912 if (retval)
1913 goto error_console;
1914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (options)
1916 uart_parse_options(options, &baud, &parity, &bits, &flow);
1917 else
1918 imx_console_get_options(sport, &baud, &parity, &bits);
1919
Lucas Stachcc323822015-09-04 17:52:37 +02001920 imx_setup_ufcr(sport, TXTL_DEFAULT, RXTL_DEFAULT);
Sascha Hauer587897f2005-04-29 22:46:40 +01001921
Huang Shijie1cf93e02013-06-28 13:39:42 +08001922 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow);
1923
Fabio Estevam0c727a42015-08-18 12:43:12 -03001924 clk_disable(sport->clk_ipg);
1925 if (retval) {
1926 clk_unprepare(sport->clk_ipg);
1927 goto error_console;
1928 }
1929
1930 retval = clk_prepare(sport->clk_per);
1931 if (retval)
1932 clk_disable_unprepare(sport->clk_ipg);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001933
1934error_console:
1935 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001938static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001940 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 .write = imx_console_write,
1942 .device = uart_console_device,
1943 .setup = imx_console_setup,
1944 .flags = CON_PRINTBUFFER,
1945 .index = -1,
1946 .data = &imx_reg,
1947};
1948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949#define IMX_CONSOLE &imx_console
Lucas Stach913c6c02015-08-28 11:56:19 +02001950
1951#ifdef CONFIG_OF
1952static void imx_console_early_putchar(struct uart_port *port, int ch)
1953{
1954 while (readl_relaxed(port->membase + IMX21_UTS) & UTS_TXFULL)
1955 cpu_relax();
1956
1957 writel_relaxed(ch, port->membase + URTX0);
1958}
1959
1960static void imx_console_early_write(struct console *con, const char *s,
1961 unsigned count)
1962{
1963 struct earlycon_device *dev = con->data;
1964
1965 uart_console_write(&dev->port, s, count, imx_console_early_putchar);
1966}
1967
1968static int __init
1969imx_console_early_setup(struct earlycon_device *dev, const char *opt)
1970{
1971 if (!dev->port.membase)
1972 return -ENODEV;
1973
1974 dev->con->write = imx_console_early_write;
1975
1976 return 0;
1977}
1978OF_EARLYCON_DECLARE(ec_imx6q, "fsl,imx6q-uart", imx_console_early_setup);
1979OF_EARLYCON_DECLARE(ec_imx21, "fsl,imx21-uart", imx_console_early_setup);
1980#endif
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982#else
1983#define IMX_CONSOLE NULL
1984#endif
1985
1986static struct uart_driver imx_reg = {
1987 .owner = THIS_MODULE,
1988 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001989 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 .major = SERIAL_IMX_MAJOR,
1991 .minor = MINOR_START,
1992 .nr = ARRAY_SIZE(imx_ports),
1993 .cons = IMX_CONSOLE,
1994};
1995
Shawn Guo22698aa2011-06-25 02:04:34 +08001996#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001997/*
1998 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1999 * could successfully get all information from dt or a negative errno.
2000 */
Shawn Guo22698aa2011-06-25 02:04:34 +08002001static int serial_imx_probe_dt(struct imx_port *sport,
2002 struct platform_device *pdev)
2003{
2004 struct device_node *np = pdev->dev.of_node;
Shawn Guoff059672011-09-22 14:48:13 +08002005 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002006
LABBE Corentin5f8b9042015-11-24 15:36:57 +01002007 sport->devdata = of_device_get_match_data(&pdev->dev);
2008 if (!sport->devdata)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002009 /* no device tree device */
2010 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002011
Shawn Guoff059672011-09-22 14:48:13 +08002012 ret = of_alias_get_id(np, "serial");
2013 if (ret < 0) {
2014 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01002015 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08002016 }
2017 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002018
Geert Uytterhoeven1006ed72016-04-22 17:22:21 +02002019 if (of_get_property(np, "uart-has-rtscts", NULL) ||
2020 of_get_property(np, "fsl,uart-has-rtscts", NULL) /* deprecated */)
Shawn Guo22698aa2011-06-25 02:04:34 +08002021 sport->have_rtscts = 1;
2022
Huang Shijie20ff2fe2013-05-30 14:07:12 +08002023 if (of_get_property(np, "fsl,dte-mode", NULL))
2024 sport->dte_mode = 1;
2025
Fabio Estevam7b7e8e82017-01-07 19:29:13 -02002026 if (of_get_property(np, "rts-gpios", NULL))
2027 sport->have_rtsgpio = 1;
2028
Shawn Guo22698aa2011-06-25 02:04:34 +08002029 return 0;
2030}
2031#else
2032static inline int serial_imx_probe_dt(struct imx_port *sport,
2033 struct platform_device *pdev)
2034{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002035 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002036}
2037#endif
2038
2039static void serial_imx_probe_pdata(struct imx_port *sport,
2040 struct platform_device *pdev)
2041{
Jingoo Han574de552013-07-30 17:06:57 +09002042 struct imxuart_platform_data *pdata = dev_get_platdata(&pdev->dev);
Shawn Guo22698aa2011-06-25 02:04:34 +08002043
2044 sport->port.line = pdev->id;
2045 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
2046
2047 if (!pdata)
2048 return;
2049
2050 if (pdata->flags & IMXUART_HAVE_RTSCTS)
2051 sport->have_rtscts = 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08002052}
2053
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002054static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002056 struct imx_port *sport;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002057 void __iomem *base;
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002058 int ret = 0, reg;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002059 struct resource *res;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002060 int txirq, rxirq, rtsirq;
Sascha Hauer5b802342006-05-04 14:07:42 +01002061
Sachin Kamat42d34192013-01-07 10:25:06 +05302062 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002063 if (!sport)
2064 return -ENOMEM;
2065
Shawn Guo22698aa2011-06-25 02:04:34 +08002066 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002067 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08002068 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01002069 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05302070 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08002071
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002072 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Alexander Shiyanda82f992014-02-22 16:01:33 +04002073 base = devm_ioremap_resource(&pdev->dev, res);
2074 if (IS_ERR(base))
2075 return PTR_ERR(base);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002076
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002077 rxirq = platform_get_irq(pdev, 0);
2078 txirq = platform_get_irq(pdev, 1);
2079 rtsirq = platform_get_irq(pdev, 2);
2080
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002081 sport->port.dev = &pdev->dev;
2082 sport->port.mapbase = res->start;
2083 sport->port.membase = base;
2084 sport->port.type = PORT_IMX,
2085 sport->port.iotype = UPIO_MEM;
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002086 sport->port.irq = rxirq;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002087 sport->port.fifosize = 32;
2088 sport->port.ops = &imx_pops;
Uwe Kleine-König17b8f2a2015-02-24 11:17:11 +01002089 sport->port.rs485_config = imx_rs485_config;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002090 sport->port.flags = UPF_BOOT_AUTOCONF;
Kees Cooke99e88a2017-10-16 14:43:17 -07002091 timer_setup(&sport->timer, imx_timeout, 0);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002092
Uwe Kleine-König58362d52015-12-13 11:30:03 +01002093 sport->gpios = mctrl_gpio_init(&sport->port, 0);
2094 if (IS_ERR(sport->gpios))
2095 return PTR_ERR(sport->gpios);
2096
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002097 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
2098 if (IS_ERR(sport->clk_ipg)) {
2099 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002100 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302101 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002102 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02002103
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002104 sport->clk_per = devm_clk_get(&pdev->dev, "per");
2105 if (IS_ERR(sport->clk_per)) {
2106 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02002107 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05302108 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002109 }
2110
Sascha Hauer3a9465f2012-03-07 09:31:43 +01002111 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02002112
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002113 /* For register access, we only need to enable the ipg clock. */
2114 ret = clk_prepare_enable(sport->clk_ipg);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002115 if (ret) {
2116 dev_err(&pdev->dev, "failed to enable per clk: %d\n", ret);
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002117 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002118 }
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002119
Lukas Wunner743f93f2017-11-24 23:26:40 +01002120 uart_get_rs485_mode(&pdev->dev, &sport->port.rs485);
2121
Lukas Wunnerb8f3bff2017-11-24 23:26:40 +01002122 if (sport->port.rs485.flags & SER_RS485_ENABLED &&
2123 (!sport->have_rtscts || !sport->have_rtsgpio))
2124 dev_err(&pdev->dev, "no RTS control, disabling rs485\n");
2125
2126 imx_rs485_config(&sport->port, &sport->port.rs485);
2127
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002128 /* Disable interrupts before requesting them */
2129 reg = readl_relaxed(sport->port.membase + UCR1);
2130 reg &= ~(UCR1_ADEN | UCR1_TRDYEN | UCR1_IDEN | UCR1_RRDYEN |
2131 UCR1_TXMPTYEN | UCR1_RTSDEN);
2132 writel_relaxed(reg, sport->port.membase + UCR1);
2133
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002134 if (!is_imx1_uart(sport) && sport->dte_mode) {
2135 /*
2136 * The DCEDTE bit changes the direction of DSR, DCD, DTR and RI
2137 * and influences if UCR3_RI and UCR3_DCD changes the level of RI
2138 * and DCD (when they are outputs) or enables the respective
2139 * irqs. So set this bit early, i.e. before requesting irqs.
2140 */
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002141 reg = readl(sport->port.membase + UFCR);
2142 if (!(reg & UFCR_DCEDTE))
2143 writel(reg | UFCR_DCEDTE, sport->port.membase + UFCR);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002144
2145 /*
2146 * Disable UCR3_RI and UCR3_DCD irqs. They are also not
2147 * enabled later because they cannot be cleared
2148 * (confirmed on i.MX25) which makes them unusable.
2149 */
2150 writel(IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP | UCR3_DSR,
2151 sport->port.membase + UCR3);
2152
2153 } else {
Uwe Kleine-König6df765d2017-05-24 21:38:46 +02002154 unsigned long ucr3 = UCR3_DSR;
2155
2156 reg = readl(sport->port.membase + UFCR);
2157 if (reg & UFCR_DCEDTE)
2158 writel(reg & ~UFCR_DCEDTE, sport->port.membase + UFCR);
2159
2160 if (!is_imx1_uart(sport))
2161 ucr3 |= IMX21_UCR3_RXDMUXSEL | UCR3_ADNIMP;
2162 writel(ucr3, sport->port.membase + UCR3);
Uwe Kleine-Könige61c38d2017-04-04 11:18:51 +02002163 }
2164
Fabio Estevam8a61f0c2015-06-17 17:35:43 -03002165 clk_disable_unprepare(sport->clk_ipg);
2166
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002167 /*
2168 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
2169 * chips only have one interrupt.
2170 */
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002171 if (txirq > 0) {
2172 ret = devm_request_irq(&pdev->dev, rxirq, imx_rxint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002173 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002174 if (ret) {
2175 dev_err(&pdev->dev, "failed to request rx irq: %d\n",
2176 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002177 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002178 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002179
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002180 ret = devm_request_irq(&pdev->dev, txirq, imx_txint, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002181 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002182 if (ret) {
2183 dev_err(&pdev->dev, "failed to request tx irq: %d\n",
2184 ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002185 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002186 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002187 } else {
Uwe Kleine-König842633b2015-02-24 11:17:07 +01002188 ret = devm_request_irq(&pdev->dev, rxirq, imx_int, 0,
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002189 dev_name(&pdev->dev), sport);
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002190 if (ret) {
2191 dev_err(&pdev->dev, "failed to request irq: %d\n", ret);
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002192 return ret;
Uwe Kleine-König1e512d42016-09-08 14:27:53 +02002193 }
Fabio Estevamc0d1c6b2014-10-27 14:49:37 -02002194 }
2195
Shawn Guo22698aa2011-06-25 02:04:34 +08002196 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01002197
Richard Zhao0a86a862012-09-18 16:14:58 +08002198 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002199
Alexander Shiyan45af7802014-02-22 16:01:35 +04002200 return uart_add_one_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201}
2202
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002203static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02002205 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Alexander Shiyan45af7802014-02-22 16:01:35 +04002207 return uart_remove_one_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
2209
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002210static void serial_imx_restore_context(struct imx_port *sport)
2211{
2212 if (!sport->context_saved)
2213 return;
2214
2215 writel(sport->saved_reg[4], sport->port.membase + UFCR);
2216 writel(sport->saved_reg[5], sport->port.membase + UESC);
2217 writel(sport->saved_reg[6], sport->port.membase + UTIM);
2218 writel(sport->saved_reg[7], sport->port.membase + UBIR);
2219 writel(sport->saved_reg[8], sport->port.membase + UBMR);
2220 writel(sport->saved_reg[9], sport->port.membase + IMX21_UTS);
2221 writel(sport->saved_reg[0], sport->port.membase + UCR1);
2222 writel(sport->saved_reg[1] | UCR2_SRST, sport->port.membase + UCR2);
2223 writel(sport->saved_reg[2], sport->port.membase + UCR3);
2224 writel(sport->saved_reg[3], sport->port.membase + UCR4);
2225 sport->context_saved = false;
2226}
2227
2228static void serial_imx_save_context(struct imx_port *sport)
2229{
2230 /* Save necessary regs */
2231 sport->saved_reg[0] = readl(sport->port.membase + UCR1);
2232 sport->saved_reg[1] = readl(sport->port.membase + UCR2);
2233 sport->saved_reg[2] = readl(sport->port.membase + UCR3);
2234 sport->saved_reg[3] = readl(sport->port.membase + UCR4);
2235 sport->saved_reg[4] = readl(sport->port.membase + UFCR);
2236 sport->saved_reg[5] = readl(sport->port.membase + UESC);
2237 sport->saved_reg[6] = readl(sport->port.membase + UTIM);
2238 sport->saved_reg[7] = readl(sport->port.membase + UBIR);
2239 sport->saved_reg[8] = readl(sport->port.membase + UBMR);
2240 sport->saved_reg[9] = readl(sport->port.membase + IMX21_UTS);
2241 sport->context_saved = true;
2242}
2243
Eduardo Valentin189550b2015-08-11 10:21:21 -07002244static void serial_imx_enable_wakeup(struct imx_port *sport, bool on)
2245{
2246 unsigned int val;
2247
2248 val = readl(sport->port.membase + UCR3);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002249 if (on) {
2250 writel(USR1_AWAKE, sport->port.membase + USR1);
Eduardo Valentin189550b2015-08-11 10:21:21 -07002251 val |= UCR3_AWAKEN;
Martin Kaiser09df0b32018-01-05 17:46:43 +01002252 }
Eduardo Valentin189550b2015-08-11 10:21:21 -07002253 else
2254 val &= ~UCR3_AWAKEN;
2255 writel(val, sport->port.membase + UCR3);
Eduardo Valentinbc857342015-08-11 10:21:22 -07002256
Fabio Estevam38b1f0f2018-01-04 15:58:34 -02002257 if (sport->have_rtscts) {
2258 val = readl(sport->port.membase + UCR1);
2259 if (on)
2260 val |= UCR1_RTSDEN;
2261 else
2262 val &= ~UCR1_RTSDEN;
2263 writel(val, sport->port.membase + UCR1);
2264 }
Eduardo Valentin189550b2015-08-11 10:21:21 -07002265}
2266
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002267static int imx_serial_port_suspend_noirq(struct device *dev)
2268{
2269 struct platform_device *pdev = to_platform_device(dev);
2270 struct imx_port *sport = platform_get_drvdata(pdev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002271
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002272 serial_imx_save_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002273
2274 clk_disable(sport->clk_ipg);
2275
2276 return 0;
2277}
2278
2279static int imx_serial_port_resume_noirq(struct device *dev)
2280{
2281 struct platform_device *pdev = to_platform_device(dev);
2282 struct imx_port *sport = platform_get_drvdata(pdev);
2283 int ret;
2284
2285 ret = clk_enable(sport->clk_ipg);
2286 if (ret)
2287 return ret;
2288
Eduardo Valentinc868cbb2015-08-11 10:21:23 -07002289 serial_imx_restore_context(sport);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002290
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002291 return 0;
2292}
2293
2294static int imx_serial_port_suspend(struct device *dev)
2295{
2296 struct platform_device *pdev = to_platform_device(dev);
2297 struct imx_port *sport = platform_get_drvdata(pdev);
Martin Kaiser09df0b32018-01-05 17:46:43 +01002298 int ret;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002299
2300 uart_suspend_port(&imx_reg, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002301 disable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002302
Martin Kaiser09df0b32018-01-05 17:46:43 +01002303 ret = clk_prepare_enable(sport->clk_ipg);
2304 if (ret)
2305 return ret;
2306
2307 /* enable wakeup from i.MX UART */
2308 serial_imx_enable_wakeup(sport, true);
2309
2310 return 0;
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002311}
2312
2313static int imx_serial_port_resume(struct device *dev)
2314{
2315 struct platform_device *pdev = to_platform_device(dev);
2316 struct imx_port *sport = platform_get_drvdata(pdev);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002317
2318 /* disable wakeup from i.MX UART */
Eduardo Valentin189550b2015-08-11 10:21:21 -07002319 serial_imx_enable_wakeup(sport, false);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002320
2321 uart_resume_port(&imx_reg, &sport->port);
Maxim Yu. Osipov81b289c2017-08-14 16:27:49 +02002322 enable_irq(sport->port.irq);
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002323
Martin Kaiser09df0b32018-01-05 17:46:43 +01002324 clk_disable_unprepare(sport->clk_ipg);
Martin Fuzzey29add682016-01-05 16:53:31 +01002325
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002326 return 0;
2327}
2328
Philipp Zabel94be6d72017-11-01 13:51:41 +01002329static int imx_serial_port_freeze(struct device *dev)
2330{
2331 struct platform_device *pdev = to_platform_device(dev);
2332 struct imx_port *sport = platform_get_drvdata(pdev);
2333
2334 uart_suspend_port(&imx_reg, &sport->port);
2335
Martin Kaiser09df0b32018-01-05 17:46:43 +01002336 return clk_prepare_enable(sport->clk_ipg);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002337}
2338
2339static int imx_serial_port_thaw(struct device *dev)
2340{
2341 struct platform_device *pdev = to_platform_device(dev);
2342 struct imx_port *sport = platform_get_drvdata(pdev);
2343
2344 uart_resume_port(&imx_reg, &sport->port);
2345
Martin Kaiser09df0b32018-01-05 17:46:43 +01002346 clk_disable_unprepare(sport->clk_ipg);
Philipp Zabel94be6d72017-11-01 13:51:41 +01002347
2348 return 0;
2349}
2350
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002351static const struct dev_pm_ops imx_serial_port_pm_ops = {
2352 .suspend_noirq = imx_serial_port_suspend_noirq,
2353 .resume_noirq = imx_serial_port_resume_noirq,
Philipp Zabel94be6d72017-11-01 13:51:41 +01002354 .freeze_noirq = imx_serial_port_suspend_noirq,
2355 .restore_noirq = imx_serial_port_resume_noirq,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002356 .suspend = imx_serial_port_suspend,
2357 .resume = imx_serial_port_resume,
Philipp Zabel94be6d72017-11-01 13:51:41 +01002358 .freeze = imx_serial_port_freeze,
2359 .thaw = imx_serial_port_thaw,
2360 .restore = imx_serial_port_thaw,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002361};
2362
Russell King3ae5eae2005-11-09 22:32:44 +00002363static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01002364 .probe = serial_imx_probe,
2365 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Shawn Guofe6b5402011-06-25 02:04:33 +08002367 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00002368 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01002369 .name = "imx-uart",
Shawn Guo22698aa2011-06-25 02:04:34 +08002370 .of_match_table = imx_uart_dt_ids,
Shenwei Wang90bb6bd2015-07-30 10:32:36 -05002371 .pm = &imx_serial_port_pm_ops,
Russell King3ae5eae2005-11-09 22:32:44 +00002372 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373};
2374
2375static int __init imx_serial_init(void)
2376{
Fabio Estevamf0fd1b72014-10-27 14:49:40 -02002377 int ret = uart_register_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 if (ret)
2380 return ret;
2381
Russell King3ae5eae2005-11-09 22:32:44 +00002382 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 if (ret != 0)
2384 uart_unregister_driver(&imx_reg);
2385
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01002386 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387}
2388
2389static void __exit imx_serial_exit(void)
2390{
Russell Kingc889b892005-11-21 17:05:21 +00002391 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01002392 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
2395module_init(imx_serial_init);
2396module_exit(imx_serial_exit);
2397
2398MODULE_AUTHOR("Sascha Hauer");
2399MODULE_DESCRIPTION("IMX generic serial port driver");
2400MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07002401MODULE_ALIAS("platform:imx-uart");