blob: 72bc1dbcd055bba2f2c50c83f891584c36a747c7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for Motorola IMX serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Author: Sascha Hauer <sascha@saschahauer.de>
7 * Copyright (C) 2004 Pengutronix
8 *
Fabian Godehardtb6e49132009-06-11 14:53:18 +01009 * Copyright (C) 2009 emlix GmbH
10 * Author: Fabian Godehardt (added IrDA support for iMX)
11 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 * [29-Mar-2005] Mike Lee
27 * Added hardware handshake
28 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#if defined(CONFIG_SERIAL_IMX_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
31#define SUPPORT_SYSRQ
32#endif
33
34#include <linux/module.h>
35#include <linux/ioport.h>
36#include <linux/init.h>
37#include <linux/console.h>
38#include <linux/sysrq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010039#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/tty.h>
41#include <linux/tty_flip.h>
42#include <linux/serial_core.h>
43#include <linux/serial.h>
Sascha Hauer38a41fd2008-07-05 10:02:46 +020044#include <linux/clk.h>
Fabian Godehardtb6e49132009-06-11 14:53:18 +010045#include <linux/delay.h>
Oskar Schirmer534fca02009-06-11 14:52:23 +010046#include <linux/rational.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Shawn Guo22698aa2011-06-25 02:04:34 +080048#include <linux/of.h>
49#include <linux/of_device.h>
Shawn Guofed78ce2012-05-06 20:21:05 +080050#include <linux/pinctrl/consumer.h>
Sachin Kamate32a9f82013-01-07 10:25:03 +053051#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/irq.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020054#include <linux/platform_data/serial-imx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Sascha Hauerff4bfb22007-04-26 08:26:13 +010056/* Register definitions */
57#define URXD0 0x0 /* Receiver Register */
58#define URTX0 0x40 /* Transmitter Register */
59#define UCR1 0x80 /* Control Register 1 */
60#define UCR2 0x84 /* Control Register 2 */
61#define UCR3 0x88 /* Control Register 3 */
62#define UCR4 0x8c /* Control Register 4 */
63#define UFCR 0x90 /* FIFO Control Register */
64#define USR1 0x94 /* Status Register 1 */
65#define USR2 0x98 /* Status Register 2 */
66#define UESC 0x9c /* Escape Character Register */
67#define UTIM 0xa0 /* Escape Timer Register */
68#define UBIR 0xa4 /* BRM Incremental Register */
69#define UBMR 0xa8 /* BRM Modulator Register */
70#define UBRC 0xac /* Baud Rate Count Register */
Shawn Guofe6b5402011-06-25 02:04:33 +080071#define IMX21_ONEMS 0xb0 /* One Millisecond register */
72#define IMX1_UTS 0xd0 /* UART Test Register on i.mx1 */
73#define IMX21_UTS 0xb4 /* UART Test Register on all other i.mx*/
Sascha Hauerff4bfb22007-04-26 08:26:13 +010074
75/* UART Control Register Bit Fields.*/
Sachin Kamat82313e62013-01-07 10:25:02 +053076#define URXD_CHARRDY (1<<15)
77#define URXD_ERR (1<<14)
78#define URXD_OVRRUN (1<<13)
79#define URXD_FRMERR (1<<12)
80#define URXD_BRK (1<<11)
81#define URXD_PRERR (1<<10)
82#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
83#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
84#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
85#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
86#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
87#define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
88#define UCR1_IREN (1<<7) /* Infrared interface enable */
89#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
90#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
91#define UCR1_SNDBRK (1<<4) /* Send break */
92#define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
93#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
94#define UCR1_DOZE (1<<1) /* Doze */
95#define UCR1_UARTEN (1<<0) /* UART enabled */
96#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
97#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
98#define UCR2_CTSC (1<<13) /* CTS pin control */
99#define UCR2_CTS (1<<12) /* Clear to send */
100#define UCR2_ESCEN (1<<11) /* Escape enable */
101#define UCR2_PREN (1<<8) /* Parity enable */
102#define UCR2_PROE (1<<7) /* Parity odd/even */
103#define UCR2_STPB (1<<6) /* Stop */
104#define UCR2_WS (1<<5) /* Word size */
105#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
106#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
107#define UCR2_TXEN (1<<2) /* Transmitter enabled */
108#define UCR2_RXEN (1<<1) /* Receiver enabled */
109#define UCR2_SRST (1<<0) /* SW reset */
110#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
111#define UCR3_PARERREN (1<<12) /* Parity enable */
112#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
113#define UCR3_DSR (1<<10) /* Data set ready */
114#define UCR3_DCD (1<<9) /* Data carrier detect */
115#define UCR3_RI (1<<8) /* Ring indicator */
116#define UCR3_TIMEOUTEN (1<<7) /* Timeout interrupt enable */
117#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
118#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
119#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
120#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
121#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
122#define UCR3_BPEN (1<<0) /* Preset registers enable */
123#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
124#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
125#define UCR4_INVR (1<<9) /* Inverted infrared reception */
126#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
127#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
128#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
129#define UCR4_IRSC (1<<5) /* IR special case */
130#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
131#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
132#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
133#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
134#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
135#define UFCR_DCEDTE (1<<6) /* DCE/DTE mode select */
136#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
137#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
138#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
139#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
140#define USR1_RTSS (1<<14) /* RTS pin status */
141#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
142#define USR1_RTSD (1<<12) /* RTS delta */
143#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
144#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
145#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
146#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
147#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
148#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
149#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
150#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
151#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
152#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
153#define USR2_IDLE (1<<12) /* Idle condition */
154#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
155#define USR2_WAKE (1<<7) /* Wake */
156#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
157#define USR2_TXDC (1<<3) /* Transmitter complete */
158#define USR2_BRCD (1<<2) /* Break condition */
159#define USR2_ORE (1<<1) /* Overrun error */
160#define USR2_RDR (1<<0) /* Recv data ready */
161#define UTS_FRCPERR (1<<13) /* Force parity error */
162#define UTS_LOOP (1<<12) /* Loop tx and rx */
163#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
164#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
165#define UTS_TXFULL (1<<4) /* TxFIFO full */
166#define UTS_RXFULL (1<<3) /* RxFIFO full */
167#define UTS_SOFTRST (1<<0) /* Software reset */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/* We've been assigned a range on the "Low-density serial ports" major */
Sachin Kamat82313e62013-01-07 10:25:02 +0530170#define SERIAL_IMX_MAJOR 207
171#define MINOR_START 16
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200172#define DEV_NAME "ttymxc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * This determines how often we check the modem status signals
176 * for any change. They generally aren't connected to an IRQ
177 * so we have to poll them. We also check immediately before
178 * filling the TX fifo incase CTS has been dropped.
179 */
180#define MCTRL_TIMEOUT (250*HZ/1000)
181
182#define DRIVER_NAME "IMX-uart"
183
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200184#define UART_NR 8
185
Shawn Guofe6b5402011-06-25 02:04:33 +0800186/* i.mx21 type uart runs on all i.mx except i.mx1 */
187enum imx_uart_type {
188 IMX1_UART,
189 IMX21_UART,
190};
191
192/* device type dependent stuff */
193struct imx_uart_data {
194 unsigned uts_reg;
195 enum imx_uart_type devtype;
196};
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198struct imx_port {
199 struct uart_port port;
200 struct timer_list timer;
201 unsigned int old_status;
Sachin Kamat82313e62013-01-07 10:25:02 +0530202 int txirq, rxirq, rtsirq;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100203 unsigned int have_rtscts:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100204 unsigned int use_irda:1;
205 unsigned int irda_inv_rx:1;
206 unsigned int irda_inv_tx:1;
207 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100208 struct clk *clk_ipg;
209 struct clk *clk_per;
Uwe Kleine-König7d0b0662012-05-21 21:57:39 +0200210 const struct imx_uart_data *devdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
Dirk Behme0ad5a812011-12-22 09:57:52 +0100213struct imx_port_ucrs {
214 unsigned int ucr1;
215 unsigned int ucr2;
216 unsigned int ucr3;
217};
218
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100219#ifdef CONFIG_IRDA
220#define USE_IRDA(sport) ((sport)->use_irda)
221#else
222#define USE_IRDA(sport) (0)
223#endif
224
Shawn Guofe6b5402011-06-25 02:04:33 +0800225static struct imx_uart_data imx_uart_devdata[] = {
226 [IMX1_UART] = {
227 .uts_reg = IMX1_UTS,
228 .devtype = IMX1_UART,
229 },
230 [IMX21_UART] = {
231 .uts_reg = IMX21_UTS,
232 .devtype = IMX21_UART,
233 },
234};
235
236static struct platform_device_id imx_uart_devtype[] = {
237 {
238 .name = "imx1-uart",
239 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
240 }, {
241 .name = "imx21-uart",
242 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
243 }, {
244 /* sentinel */
245 }
246};
247MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
248
Shawn Guo22698aa2011-06-25 02:04:34 +0800249static struct of_device_id imx_uart_dt_ids[] = {
250 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
251 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
252 { /* sentinel */ }
253};
254MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
255
Shawn Guofe6b5402011-06-25 02:04:33 +0800256static inline unsigned uts_reg(struct imx_port *sport)
257{
258 return sport->devdata->uts_reg;
259}
260
261static inline int is_imx1_uart(struct imx_port *sport)
262{
263 return sport->devdata->devtype == IMX1_UART;
264}
265
266static inline int is_imx21_uart(struct imx_port *sport)
267{
268 return sport->devdata->devtype == IMX21_UART;
269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200272 * Save and restore functions for UCR1, UCR2 and UCR3 registers
273 */
274static void imx_port_ucrs_save(struct uart_port *port,
275 struct imx_port_ucrs *ucr)
276{
277 /* save control registers */
278 ucr->ucr1 = readl(port->membase + UCR1);
279 ucr->ucr2 = readl(port->membase + UCR2);
280 ucr->ucr3 = readl(port->membase + UCR3);
281}
282
283static void imx_port_ucrs_restore(struct uart_port *port,
284 struct imx_port_ucrs *ucr)
285{
286 /* restore control registers */
287 writel(ucr->ucr1, port->membase + UCR1);
288 writel(ucr->ucr2, port->membase + UCR2);
289 writel(ucr->ucr3, port->membase + UCR3);
290}
291
292/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * Handle any change of modem status signal since we were last called.
294 */
295static void imx_mctrl_check(struct imx_port *sport)
296{
297 unsigned int status, changed;
298
299 status = sport->port.ops->get_mctrl(&sport->port);
300 changed = status ^ sport->old_status;
301
302 if (changed == 0)
303 return;
304
305 sport->old_status = status;
306
307 if (changed & TIOCM_RI)
308 sport->port.icount.rng++;
309 if (changed & TIOCM_DSR)
310 sport->port.icount.dsr++;
311 if (changed & TIOCM_CAR)
312 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
313 if (changed & TIOCM_CTS)
314 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
315
Alan Coxbdc04e32009-09-19 13:13:31 -0700316 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319/*
320 * This is our per-port timeout handler, for checking the
321 * modem status signals.
322 */
323static void imx_timeout(unsigned long data)
324{
325 struct imx_port *sport = (struct imx_port *)data;
326 unsigned long flags;
327
Alan Coxebd2c8f2009-09-19 13:13:28 -0700328 if (sport->port.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 spin_lock_irqsave(&sport->port.lock, flags);
330 imx_mctrl_check(sport);
331 spin_unlock_irqrestore(&sport->port.lock, flags);
332
333 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
334 }
335}
336
337/*
338 * interrupts disabled on entry
339 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100340static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100343 unsigned long temp;
344
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100345 if (USE_IRDA(sport)) {
346 /* half duplex - wait for end of transmission */
347 int n = 256;
348 while ((--n > 0) &&
349 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
350 udelay(5);
351 barrier();
352 }
353 /*
354 * irda transceiver - wait a bit more to avoid
355 * cutoff, hardware dependent
356 */
357 udelay(sport->trcv_delay);
358
359 /*
360 * half duplex - reactivate receive mode,
361 * flush receive pipe echo crap
362 */
363 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
364 temp = readl(sport->port.membase + UCR1);
365 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
366 writel(temp, sport->port.membase + UCR1);
367
368 temp = readl(sport->port.membase + UCR4);
369 temp &= ~(UCR4_TCEN);
370 writel(temp, sport->port.membase + UCR4);
371
372 while (readl(sport->port.membase + URXD0) &
373 URXD_CHARRDY)
374 barrier();
375
376 temp = readl(sport->port.membase + UCR1);
377 temp |= UCR1_RRDYEN;
378 writel(temp, sport->port.membase + UCR1);
379
380 temp = readl(sport->port.membase + UCR4);
381 temp |= UCR4_DREN;
382 writel(temp, sport->port.membase + UCR4);
383 }
384 return;
385 }
386
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100387 temp = readl(sport->port.membase + UCR1);
388 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391/*
392 * interrupts disabled on entry
393 */
394static void imx_stop_rx(struct uart_port *port)
395{
396 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100397 unsigned long temp;
398
399 temp = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +0530400 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403/*
404 * Set the modem control timer to fire immediately.
405 */
406static void imx_enable_ms(struct uart_port *port)
407{
408 struct imx_port *sport = (struct imx_port *)port;
409
410 mod_timer(&sport->timer, jiffies);
411}
412
413static inline void imx_transmit_buffer(struct imx_port *sport)
414{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700415 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Volker Ernst4e4e6602010-10-13 11:03:57 +0200417 while (!uart_circ_empty(xmit) &&
Shawn Guofe6b5402011-06-25 02:04:33 +0800418 !(readl(sport->port.membase + uts_reg(sport))
419 & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /* send xmit->buf[xmit->tail]
421 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100422 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100423 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Fabian Godehardt977757312009-06-11 14:37:19 +0100427 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
428 uart_write_wakeup(&sport->port);
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100431 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
434/*
435 * interrupts disabled on entry
436 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100437static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100440 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100442 if (USE_IRDA(sport)) {
443 /* half duplex in IrDA mode; have to disable receive mode */
444 temp = readl(sport->port.membase + UCR4);
445 temp &= ~(UCR4_DREN);
446 writel(temp, sport->port.membase + UCR4);
447
448 temp = readl(sport->port.membase + UCR1);
449 temp &= ~(UCR1_RRDYEN);
450 writel(temp, sport->port.membase + UCR1);
451 }
Alexander Steinf1f836e2013-05-14 17:06:07 +0200452 /* Clear any pending ORE flag before enabling interrupt */
453 temp = readl(sport->port.membase + USR2);
454 writel(temp | USR2_ORE, sport->port.membase + USR2);
455
456 temp = readl(sport->port.membase + UCR4);
457 temp |= UCR4_OREN;
458 writel(temp, sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100459
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100460 temp = readl(sport->port.membase + UCR1);
461 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100463 if (USE_IRDA(sport)) {
464 temp = readl(sport->port.membase + UCR1);
465 temp |= UCR1_TRDYEN;
466 writel(temp, sport->port.membase + UCR1);
467
468 temp = readl(sport->port.membase + UCR4);
469 temp |= UCR4_TCEN;
470 writel(temp, sport->port.membase + UCR4);
471 }
472
Shawn Guofe6b5402011-06-25 02:04:33 +0800473 if (readl(sport->port.membase + uts_reg(sport)) & UTS_TXEMPTY)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100474 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
David Howells7d12e782006-10-05 14:55:46 +0100477static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100478{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800479 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200480 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100481 unsigned long flags;
482
483 spin_lock_irqsave(&sport->port.lock, flags);
484
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100485 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200486 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100487 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700488 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100489
490 spin_unlock_irqrestore(&sport->port.lock, flags);
491 return IRQ_HANDLED;
492}
493
David Howells7d12e782006-10-05 14:55:46 +0100494static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800496 struct imx_port *sport = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700497 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 unsigned long flags;
499
Sachin Kamat82313e62013-01-07 10:25:02 +0530500 spin_lock_irqsave(&sport->port.lock, flags);
Sachin Kamat699cbd62013-01-07 10:25:04 +0530501 if (sport->port.x_char) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100503 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 goto out;
505 }
506
507 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100508 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 goto out;
510 }
511
512 imx_transmit_buffer(sport);
513
514 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
515 uart_write_wakeup(&sport->port);
516
517out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530518 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return IRQ_HANDLED;
520}
521
David Howells7d12e782006-10-05 14:55:46 +0100522static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530525 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100526 struct tty_port *port = &sport->port.state->port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100527 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Sachin Kamat82313e62013-01-07 10:25:02 +0530529 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100531 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 flg = TTY_NORMAL;
533 sport->port.icount.rx++;
534
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100535 rx = readl(sport->port.membase + URXD0);
536
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100537 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100538 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100539 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100540 if (uart_handle_break(&sport->port))
541 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100544 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100545 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Hui Wang019dc9e2011-08-24 17:41:47 +0800547 if (unlikely(rx & URXD_ERR)) {
548 if (rx & URXD_BRK)
549 sport->port.icount.brk++;
550 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100551 sport->port.icount.parity++;
552 else if (rx & URXD_FRMERR)
553 sport->port.icount.frame++;
554 if (rx & URXD_OVRRUN)
555 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Sascha Hauer864eeed2008-04-17 08:39:22 +0100557 if (rx & sport->port.ignore_status_mask) {
558 if (++ignored > 100)
559 goto out;
560 continue;
561 }
562
563 rx &= sport->port.read_status_mask;
564
Hui Wang019dc9e2011-08-24 17:41:47 +0800565 if (rx & URXD_BRK)
566 flg = TTY_BREAK;
567 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100568 flg = TTY_PARITY;
569 else if (rx & URXD_FRMERR)
570 flg = TTY_FRAME;
571 if (rx & URXD_OVRRUN)
572 flg = TTY_OVERRUN;
573
574#ifdef SUPPORT_SYSRQ
575 sport->port.sysrq = 0;
576#endif
577 }
578
Jiri Slaby92a19f92013-01-03 15:53:03 +0100579 tty_insert_flip_char(port, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530583 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100584 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200588static irqreturn_t imx_int(int irq, void *dev_id)
589{
590 struct imx_port *sport = dev_id;
591 unsigned int sts;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200592 unsigned int sts2;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200593
594 sts = readl(sport->port.membase + USR1);
595
596 if (sts & USR1_RRDY)
597 imx_rxint(irq, dev_id);
598
599 if (sts & USR1_TRDY &&
600 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
601 imx_txint(irq, dev_id);
602
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200603 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200604 imx_rtsint(irq, dev_id);
605
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200606 if (sts & USR1_AWAKE)
607 writel(USR1_AWAKE, sport->port.membase + USR1);
608
Alexander Steinf1f836e2013-05-14 17:06:07 +0200609 sts2 = readl(sport->port.membase + USR2);
610 if (sts2 & USR2_ORE) {
611 dev_err(sport->port.dev, "Rx FIFO overrun\n");
612 sport->port.icount.overrun++;
613 writel(sts2 | USR2_ORE, sport->port.membase + USR2);
614 }
615
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200616 return IRQ_HANDLED;
617}
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/*
620 * Return TIOCSER_TEMT when transmitter is not busy.
621 */
622static unsigned int imx_tx_empty(struct uart_port *port)
623{
624 struct imx_port *sport = (struct imx_port *)port;
625
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100626 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100629/*
630 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
631 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632static unsigned int imx_get_mctrl(struct uart_port *port)
633{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100634 struct imx_port *sport = (struct imx_port *)port;
635 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100636
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100637 if (readl(sport->port.membase + USR1) & USR1_RTSS)
638 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100639
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100640 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
641 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100642
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100643 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
647{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100648 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100649 unsigned long temp;
650
651 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100652
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100653 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100654 temp |= UCR2_CTS;
655
656 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659/*
660 * Interrupts always disabled.
661 */
662static void imx_break_ctl(struct uart_port *port, int break_state)
663{
664 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100665 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 spin_lock_irqsave(&sport->port.lock, flags);
668
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100669 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
670
Sachin Kamat82313e62013-01-07 10:25:02 +0530671 if (break_state != 0)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100672 temp |= UCR1_SNDBRK;
673
674 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 spin_unlock_irqrestore(&sport->port.lock, flags);
677}
678
679#define TXTL 2 /* reset default */
680#define RXTL 1 /* reset default */
681
Sascha Hauer587897f2005-04-29 22:46:40 +0100682static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
683{
684 unsigned int val;
Sascha Hauer587897f2005-04-29 22:46:40 +0100685
Dirk Behme7be06702012-08-31 10:02:47 +0200686 /* set receiver / transmitter trigger level */
687 val = readl(sport->port.membase + UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
688 val |= TXTL << UFCR_TXTL_SHF | RXTL;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100689 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100690 return 0;
691}
692
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200693/* half the RX buffer size */
694#define CTSTL 16
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696static int imx_startup(struct uart_port *port)
697{
698 struct imx_port *sport = (struct imx_port *)port;
699 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100700 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Sascha Hauer587897f2005-04-29 22:46:40 +0100702 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 /* disable the DREN bit (Data Ready interrupt enable) before
705 * requesting IRQs
706 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100707 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100708
709 if (USE_IRDA(sport))
710 temp |= UCR4_IRSC;
711
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200712 /* set the trigger level for CTS */
Sachin Kamat82313e62013-01-07 10:25:02 +0530713 temp &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
714 temp |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200715
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100716 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100718 if (USE_IRDA(sport)) {
719 /* reset fifo's and state machines */
720 int i = 100;
721 temp = readl(sport->port.membase + UCR2);
722 temp &= ~UCR2_SRST;
723 writel(temp, sport->port.membase + UCR2);
724 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
725 (--i > 0)) {
726 udelay(1);
727 }
728 }
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200731 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
732 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200734 if (sport->txirq > 0) {
735 retval = request_irq(sport->rxirq, imx_rxint, 0,
736 DRIVER_NAME, sport);
737 if (retval)
738 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200740 retval = request_irq(sport->txirq, imx_txint, 0,
741 DRIVER_NAME, sport);
742 if (retval)
743 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100745 /* do not use RTS IRQ on IrDA */
746 if (!USE_IRDA(sport)) {
Shawn Guo1ee8f652012-06-14 10:58:54 +0800747 retval = request_irq(sport->rtsirq, imx_rtsint, 0,
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100748 DRIVER_NAME, sport);
749 if (retval)
750 goto error_out3;
751 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200752 } else {
753 retval = request_irq(sport->port.irq, imx_int, 0,
754 DRIVER_NAME, sport);
755 if (retval) {
756 free_irq(sport->port.irq, sport);
757 goto error_out1;
758 }
759 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100760
Xinyu Chen9ec18822012-08-27 09:36:51 +0200761 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 /*
763 * Finally, clear and enable interrupts
764 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100765 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100767 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100768 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100769
770 if (USE_IRDA(sport)) {
771 temp |= UCR1_IREN;
772 temp &= ~(UCR1_RTSDEN);
773 }
774
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100775 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100777 temp = readl(sport->port.membase + UCR2);
778 temp |= (UCR2_RXEN | UCR2_TXEN);
779 writel(temp, sport->port.membase + UCR2);
780
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100781 if (USE_IRDA(sport)) {
782 /* clear RX-FIFO */
783 int i = 64;
784 while ((--i > 0) &&
785 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
786 barrier();
787 }
788 }
789
Shawn Guofe6b5402011-06-25 02:04:33 +0800790 if (is_imx21_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200791 temp = readl(sport->port.membase + UCR3);
Shawn Guofe6b5402011-06-25 02:04:33 +0800792 temp |= IMX21_UCR3_RXDMUXSEL;
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200793 writel(temp, sport->port.membase + UCR3);
794 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200795
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100796 if (USE_IRDA(sport)) {
797 temp = readl(sport->port.membase + UCR4);
798 if (sport->irda_inv_rx)
799 temp |= UCR4_INVR;
800 else
801 temp &= ~(UCR4_INVR);
802 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
803
804 temp = readl(sport->port.membase + UCR3);
805 if (sport->irda_inv_tx)
806 temp |= UCR3_INVT;
807 else
808 temp &= ~(UCR3_INVT);
809 writel(temp, sport->port.membase + UCR3);
810 }
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /*
813 * Enable modem status interrupts
814 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 imx_enable_ms(&sport->port);
Sachin Kamat82313e62013-01-07 10:25:02 +0530816 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100818 if (USE_IRDA(sport)) {
819 struct imxuart_platform_data *pdata;
820 pdata = sport->port.dev->platform_data;
821 sport->irda_inv_rx = pdata->irda_inv_rx;
822 sport->irda_inv_tx = pdata->irda_inv_tx;
823 sport->trcv_delay = pdata->transceiver_delay;
824 if (pdata->irda_enable)
825 pdata->irda_enable(1);
826 }
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return 0;
829
Sascha Hauerceca6292005-10-12 19:58:08 +0100830error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200831 if (sport->txirq)
832 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200834 if (sport->rxirq)
835 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100836error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return retval;
838}
839
840static void imx_shutdown(struct uart_port *port)
841{
842 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100843 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +0200844 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Xinyu Chen9ec18822012-08-27 09:36:51 +0200846 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100847 temp = readl(sport->port.membase + UCR2);
848 temp &= ~(UCR2_TXEN);
849 writel(temp, sport->port.membase + UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200850 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100851
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100852 if (USE_IRDA(sport)) {
853 struct imxuart_platform_data *pdata;
854 pdata = sport->port.dev->platform_data;
855 if (pdata->irda_enable)
856 pdata->irda_enable(0);
857 }
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /*
860 * Stop our timer.
861 */
862 del_timer_sync(&sport->timer);
863
864 /*
865 * Free the interrupts
866 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200867 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100868 if (!USE_IRDA(sport))
869 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200870 free_irq(sport->txirq, sport);
871 free_irq(sport->rxirq, sport);
872 } else
873 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 /*
876 * Disable all interrupts, port and break condition.
877 */
878
Xinyu Chen9ec18822012-08-27 09:36:51 +0200879 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100880 temp = readl(sport->port.membase + UCR1);
881 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100882 if (USE_IRDA(sport))
883 temp &= ~(UCR1_IREN);
884
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100885 writel(temp, sport->port.membase + UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200886 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
889static void
Alan Cox606d0992006-12-08 02:38:45 -0800890imx_set_termios(struct uart_port *port, struct ktermios *termios,
891 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 struct imx_port *sport = (struct imx_port *)port;
894 unsigned long flags;
895 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
896 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca02009-06-11 14:52:23 +0100897 unsigned int div, ufcr;
898 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100899 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 /*
902 * If we don't support modem control lines, don't allow
903 * these to be set.
904 */
905 if (0) {
906 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
907 termios->c_cflag |= CLOCAL;
908 }
909
910 /*
911 * We only support CS7 and CS8.
912 */
913 while ((termios->c_cflag & CSIZE) != CS7 &&
914 (termios->c_cflag & CSIZE) != CS8) {
915 termios->c_cflag &= ~CSIZE;
916 termios->c_cflag |= old_csize;
917 old_csize = CS8;
918 }
919
920 if ((termios->c_cflag & CSIZE) == CS8)
921 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
922 else
923 ucr2 = UCR2_SRST | UCR2_IRTS;
924
925 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +0530926 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100927 ucr2 &= ~UCR2_IRTS;
928 ucr2 |= UCR2_CTSC;
929 } else {
930 termios->c_cflag &= ~CRTSCTS;
931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933
934 if (termios->c_cflag & CSTOPB)
935 ucr2 |= UCR2_STPB;
936 if (termios->c_cflag & PARENB) {
937 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000938 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 ucr2 |= UCR2_PROE;
940 }
941
Eric Miao995234d2011-12-23 05:39:27 +0800942 del_timer_sync(&sport->timer);
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 /*
945 * Ask the core to calculate the divisor for us.
946 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200947 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 quot = uart_get_divisor(port, baud);
949
950 spin_lock_irqsave(&sport->port.lock, flags);
951
952 sport->port.read_status_mask = 0;
953 if (termios->c_iflag & INPCK)
954 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
955 if (termios->c_iflag & (BRKINT | PARMRK))
956 sport->port.read_status_mask |= URXD_BRK;
957
958 /*
959 * Characters to ignore
960 */
961 sport->port.ignore_status_mask = 0;
962 if (termios->c_iflag & IGNPAR)
963 sport->port.ignore_status_mask |= URXD_PRERR;
964 if (termios->c_iflag & IGNBRK) {
965 sport->port.ignore_status_mask |= URXD_BRK;
966 /*
967 * If we're ignoring parity and break indicators,
968 * ignore overruns too (for real raw support).
969 */
970 if (termios->c_iflag & IGNPAR)
971 sport->port.ignore_status_mask |= URXD_OVRRUN;
972 }
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /*
975 * Update the per-port timeout.
976 */
977 uart_update_timeout(port, termios->c_cflag, baud);
978
979 /*
980 * disable interrupts and drain transmitter
981 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100982 old_ucr1 = readl(sport->port.membase + UCR1);
983 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
984 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Sachin Kamat82313e62013-01-07 10:25:02 +0530986 while (!(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 barrier();
988
989 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100990 old_txrxen = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +0530991 writel(old_txrxen & ~(UCR2_TXEN | UCR2_RXEN),
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100992 sport->port.membase + UCR2);
993 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100995 if (USE_IRDA(sport)) {
996 /*
997 * use maximum available submodule frequency to
998 * avoid missing short pulses due to low sampling rate
999 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001000 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001001 } else {
1002 div = sport->port.uartclk / (baud * 16);
1003 if (div > 7)
1004 div = 7;
1005 if (!div)
1006 div = 1;
1007 }
Sascha Hauer036bb152008-07-05 10:02:44 +02001008
Oskar Schirmer534fca02009-06-11 14:52:23 +01001009 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1010 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001011
Alan Coxeab4f5a2010-06-01 22:52:52 +02001012 tdiv64 = sport->port.uartclk;
1013 tdiv64 *= num;
1014 do_div(tdiv64, denom * 16 * div);
1015 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001016 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001017
Oskar Schirmer534fca02009-06-11 14:52:23 +01001018 num -= 1;
1019 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001020
1021 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001022 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +02001023 writel(ufcr, sport->port.membase + UFCR);
1024
Oskar Schirmer534fca02009-06-11 14:52:23 +01001025 writel(num, sport->port.membase + UBIR);
1026 writel(denom, sport->port.membase + UBMR);
1027
Shawn Guofe6b5402011-06-25 02:04:33 +08001028 if (is_imx21_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001029 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001030 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001032 writel(old_ucr1, sport->port.membase + UCR1);
1033
1034 /* set the parity, stop bits and data size */
1035 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1038 imx_enable_ms(&sport->port);
1039
1040 spin_unlock_irqrestore(&sport->port.lock, flags);
1041}
1042
1043static const char *imx_type(struct uart_port *port)
1044{
1045 struct imx_port *sport = (struct imx_port *)port;
1046
1047 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1048}
1049
1050/*
1051 * Release the memory region(s) being used by 'port'.
1052 */
1053static void imx_release_port(struct uart_port *port)
1054{
Sascha Hauer3d454442008-04-17 08:47:32 +01001055 struct platform_device *pdev = to_platform_device(port->dev);
1056 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Sascha Hauer3d454442008-04-17 08:47:32 +01001058 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joe Perches28f65c112011-06-09 09:13:32 -07001059 release_mem_region(mmres->start, resource_size(mmres));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
1062/*
1063 * Request the memory region(s) being used by 'port'.
1064 */
1065static int imx_request_port(struct uart_port *port)
1066{
Sascha Hauer3d454442008-04-17 08:47:32 +01001067 struct platform_device *pdev = to_platform_device(port->dev);
1068 struct resource *mmres;
1069 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Sascha Hauer3d454442008-04-17 08:47:32 +01001071 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1072 if (!mmres)
1073 return -ENODEV;
1074
Joe Perches28f65c112011-06-09 09:13:32 -07001075 ret = request_mem_region(mmres->start, resource_size(mmres), "imx-uart");
Sascha Hauer3d454442008-04-17 08:47:32 +01001076
1077 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
1080/*
1081 * Configure/autoconfigure the port.
1082 */
1083static void imx_config_port(struct uart_port *port, int flags)
1084{
1085 struct imx_port *sport = (struct imx_port *)port;
1086
1087 if (flags & UART_CONFIG_TYPE &&
1088 imx_request_port(&sport->port) == 0)
1089 sport->port.type = PORT_IMX;
1090}
1091
1092/*
1093 * Verify the new serial_struct (for TIOCSSERIAL).
1094 * The only change we allow are to the flags and type, and
1095 * even then only between PORT_IMX and PORT_UNKNOWN
1096 */
1097static int
1098imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1099{
1100 struct imx_port *sport = (struct imx_port *)port;
1101 int ret = 0;
1102
1103 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1104 ret = -EINVAL;
1105 if (sport->port.irq != ser->irq)
1106 ret = -EINVAL;
1107 if (ser->io_type != UPIO_MEM)
1108 ret = -EINVAL;
1109 if (sport->port.uartclk / 16 != ser->baud_base)
1110 ret = -EINVAL;
1111 if ((void *)sport->port.mapbase != ser->iomem_base)
1112 ret = -EINVAL;
1113 if (sport->port.iobase != ser->port)
1114 ret = -EINVAL;
1115 if (ser->hub6 != 0)
1116 ret = -EINVAL;
1117 return ret;
1118}
1119
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001120#if defined(CONFIG_CONSOLE_POLL)
1121static int imx_poll_get_char(struct uart_port *port)
1122{
1123 struct imx_port_ucrs old_ucr;
1124 unsigned int status;
1125 unsigned char c;
1126
1127 /* save control registers */
1128 imx_port_ucrs_save(port, &old_ucr);
1129
1130 /* disable interrupts */
1131 writel(UCR1_UARTEN, port->membase + UCR1);
1132 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1133 port->membase + UCR2);
1134 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1135 port->membase + UCR3);
1136
1137 /* poll */
1138 do {
1139 status = readl(port->membase + USR2);
1140 } while (~status & USR2_RDR);
1141
1142 /* read */
1143 c = readl(port->membase + URXD0);
1144
1145 /* restore control registers */
1146 imx_port_ucrs_restore(port, &old_ucr);
1147
1148 return c;
1149}
1150
1151static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1152{
1153 struct imx_port_ucrs old_ucr;
1154 unsigned int status;
1155
1156 /* save control registers */
1157 imx_port_ucrs_save(port, &old_ucr);
1158
1159 /* disable interrupts */
1160 writel(UCR1_UARTEN, port->membase + UCR1);
1161 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1162 port->membase + UCR2);
1163 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1164 port->membase + UCR3);
1165
1166 /* drain */
1167 do {
1168 status = readl(port->membase + USR1);
1169 } while (~status & USR1_TRDY);
1170
1171 /* write */
1172 writel(c, port->membase + URTX0);
1173
1174 /* flush */
1175 do {
1176 status = readl(port->membase + USR2);
1177 } while (~status & USR2_TXDC);
1178
1179 /* restore control registers */
1180 imx_port_ucrs_restore(port, &old_ucr);
1181}
1182#endif
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184static struct uart_ops imx_pops = {
1185 .tx_empty = imx_tx_empty,
1186 .set_mctrl = imx_set_mctrl,
1187 .get_mctrl = imx_get_mctrl,
1188 .stop_tx = imx_stop_tx,
1189 .start_tx = imx_start_tx,
1190 .stop_rx = imx_stop_rx,
1191 .enable_ms = imx_enable_ms,
1192 .break_ctl = imx_break_ctl,
1193 .startup = imx_startup,
1194 .shutdown = imx_shutdown,
1195 .set_termios = imx_set_termios,
1196 .type = imx_type,
1197 .release_port = imx_release_port,
1198 .request_port = imx_request_port,
1199 .config_port = imx_config_port,
1200 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001201#if defined(CONFIG_CONSOLE_POLL)
1202 .poll_get_char = imx_poll_get_char,
1203 .poll_put_char = imx_poll_put_char,
1204#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205};
1206
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001207static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001210static void imx_console_putchar(struct uart_port *port, int ch)
1211{
1212 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001213
Shawn Guofe6b5402011-06-25 02:04:33 +08001214 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001215 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001216
1217 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001218}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220/*
1221 * Interrupts are disabled on entering
1222 */
1223static void
1224imx_console_write(struct console *co, const char *s, unsigned int count)
1225{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001226 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001227 struct imx_port_ucrs old_ucr;
1228 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001229 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001230 int locked = 1;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001231
Thomas Gleixner677fe552013-02-14 21:01:06 +01001232 if (sport->port.sysrq)
1233 locked = 0;
1234 else if (oops_in_progress)
1235 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1236 else
1237 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001240 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001242 imx_port_ucrs_save(&sport->port, &old_ucr);
1243 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Shawn Guofe6b5402011-06-25 02:04:33 +08001245 if (is_imx1_uart(sport))
1246 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001247 ucr1 |= UCR1_UARTEN;
1248 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1249
1250 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001251
Dirk Behme0ad5a812011-12-22 09:57:52 +01001252 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Russell Kingd3587882006-03-20 20:00:09 +00001254 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 /*
1257 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001258 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001260 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Dirk Behme0ad5a812011-12-22 09:57:52 +01001262 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001263
Thomas Gleixner677fe552013-02-14 21:01:06 +01001264 if (locked)
1265 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
1268/*
1269 * If the port was already initialised (eg, by a boot loader),
1270 * try to determine the current setup.
1271 */
1272static void __init
1273imx_console_get_options(struct imx_port *sport, int *baud,
1274 int *parity, int *bits)
1275{
Sascha Hauer587897f2005-04-29 22:46:40 +01001276
Roel Kluin2e2eb502009-12-09 12:31:36 -08001277 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301279 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001280 unsigned int baud_raw;
1281 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001283 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 *parity = 'n';
1286 if (ucr2 & UCR2_PREN) {
1287 if (ucr2 & UCR2_PROE)
1288 *parity = 'o';
1289 else
1290 *parity = 'e';
1291 }
1292
1293 if (ucr2 & UCR2_WS)
1294 *bits = 8;
1295 else
1296 *bits = 7;
1297
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001298 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1299 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001301 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001302 if (ucfr_rfdiv == 6)
1303 ucfr_rfdiv = 7;
1304 else
1305 ucfr_rfdiv = 6 - ucfr_rfdiv;
1306
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001307 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001308 uartclk /= ucfr_rfdiv;
1309
1310 { /*
1311 * The next code provides exact computation of
1312 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1313 * without need of float support or long long division,
1314 * which would be required to prevent 32bit arithmetic overflow
1315 */
1316 unsigned int mul = ubir + 1;
1317 unsigned int div = 16 * (ubmr + 1);
1318 unsigned int rem = uartclk % div;
1319
1320 baud_raw = (uartclk / div) * mul;
1321 baud_raw += (rem * mul + div / 2) / div;
1322 *baud = (baud_raw + 50) / 100 * 100;
1323 }
1324
Sachin Kamat82313e62013-01-07 10:25:02 +05301325 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301326 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01001327 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
1329}
1330
1331static int __init
1332imx_console_setup(struct console *co, char *options)
1333{
1334 struct imx_port *sport;
1335 int baud = 9600;
1336 int bits = 8;
1337 int parity = 'n';
1338 int flow = 'n';
1339
1340 /*
1341 * Check whether an invalid uart number has been specified, and
1342 * if so, search for the first available port that does have
1343 * console support.
1344 */
1345 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1346 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001347 sport = imx_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05301348 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04001349 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 if (options)
1352 uart_parse_options(options, &baud, &parity, &bits, &flow);
1353 else
1354 imx_console_get_options(sport, &baud, &parity, &bits);
1355
Sascha Hauer587897f2005-04-29 22:46:40 +01001356 imx_setup_ufcr(sport, 0);
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1359}
1360
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001361static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001363 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 .write = imx_console_write,
1365 .device = uart_console_device,
1366 .setup = imx_console_setup,
1367 .flags = CON_PRINTBUFFER,
1368 .index = -1,
1369 .data = &imx_reg,
1370};
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372#define IMX_CONSOLE &imx_console
1373#else
1374#define IMX_CONSOLE NULL
1375#endif
1376
1377static struct uart_driver imx_reg = {
1378 .owner = THIS_MODULE,
1379 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001380 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 .major = SERIAL_IMX_MAJOR,
1382 .minor = MINOR_START,
1383 .nr = ARRAY_SIZE(imx_ports),
1384 .cons = IMX_CONSOLE,
1385};
1386
Russell King3ae5eae2005-11-09 22:32:44 +00001387static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001389 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001390 unsigned int val;
1391
1392 /* enable wakeup from i.MX UART */
1393 val = readl(sport->port.membase + UCR3);
1394 val |= UCR3_AWAKEN;
1395 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Richard Zhao034dc4d2012-09-18 16:14:59 +08001397 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
Russell King3ae5eae2005-11-09 22:32:44 +00001402static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001404 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001405 unsigned int val;
1406
1407 /* disable wakeup from i.MX UART */
1408 val = readl(sport->port.membase + UCR3);
1409 val &= ~UCR3_AWAKEN;
1410 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Richard Zhao034dc4d2012-09-18 16:14:59 +08001412 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001414 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
Shawn Guo22698aa2011-06-25 02:04:34 +08001417#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001418/*
1419 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1420 * could successfully get all information from dt or a negative errno.
1421 */
Shawn Guo22698aa2011-06-25 02:04:34 +08001422static int serial_imx_probe_dt(struct imx_port *sport,
1423 struct platform_device *pdev)
1424{
1425 struct device_node *np = pdev->dev.of_node;
1426 const struct of_device_id *of_id =
1427 of_match_device(imx_uart_dt_ids, &pdev->dev);
Shawn Guoff059672011-09-22 14:48:13 +08001428 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001429
1430 if (!np)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001431 /* no device tree device */
1432 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001433
Shawn Guoff059672011-09-22 14:48:13 +08001434 ret = of_alias_get_id(np, "serial");
1435 if (ret < 0) {
1436 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01001437 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08001438 }
1439 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001440
1441 if (of_get_property(np, "fsl,uart-has-rtscts", NULL))
1442 sport->have_rtscts = 1;
1443
1444 if (of_get_property(np, "fsl,irda-mode", NULL))
1445 sport->use_irda = 1;
1446
1447 sport->devdata = of_id->data;
1448
1449 return 0;
1450}
1451#else
1452static inline int serial_imx_probe_dt(struct imx_port *sport,
1453 struct platform_device *pdev)
1454{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001455 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001456}
1457#endif
1458
1459static void serial_imx_probe_pdata(struct imx_port *sport,
1460 struct platform_device *pdev)
1461{
1462 struct imxuart_platform_data *pdata = pdev->dev.platform_data;
1463
1464 sport->port.line = pdev->id;
1465 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
1466
1467 if (!pdata)
1468 return;
1469
1470 if (pdata->flags & IMXUART_HAVE_RTSCTS)
1471 sport->have_rtscts = 1;
1472
1473 if (pdata->flags & IMXUART_IRDA)
1474 sport->use_irda = 1;
1475}
1476
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001477static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001479 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001480 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001481 void __iomem *base;
1482 int ret = 0;
1483 struct resource *res;
Shawn Guofed78ce2012-05-06 20:21:05 +08001484 struct pinctrl *pinctrl;
Sascha Hauer5b802342006-05-04 14:07:42 +01001485
Sachin Kamat42d34192013-01-07 10:25:06 +05301486 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001487 if (!sport)
1488 return -ENOMEM;
1489
Shawn Guo22698aa2011-06-25 02:04:34 +08001490 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001491 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08001492 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001493 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05301494 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001495
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001496 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sachin Kamat42d34192013-01-07 10:25:06 +05301497 if (!res)
1498 return -ENODEV;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001499
Sachin Kamat42d34192013-01-07 10:25:06 +05301500 base = devm_ioremap(&pdev->dev, res->start, PAGE_SIZE);
1501 if (!base)
1502 return -ENOMEM;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001503
1504 sport->port.dev = &pdev->dev;
1505 sport->port.mapbase = res->start;
1506 sport->port.membase = base;
1507 sport->port.type = PORT_IMX,
1508 sport->port.iotype = UPIO_MEM;
1509 sport->port.irq = platform_get_irq(pdev, 0);
1510 sport->rxirq = platform_get_irq(pdev, 0);
1511 sport->txirq = platform_get_irq(pdev, 1);
1512 sport->rtsirq = platform_get_irq(pdev, 2);
1513 sport->port.fifosize = 32;
1514 sport->port.ops = &imx_pops;
1515 sport->port.flags = UPF_BOOT_AUTOCONF;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001516 init_timer(&sport->timer);
1517 sport->timer.function = imx_timeout;
1518 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001519
Shawn Guofed78ce2012-05-06 20:21:05 +08001520 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1521 if (IS_ERR(pinctrl)) {
1522 ret = PTR_ERR(pinctrl);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001523 dev_err(&pdev->dev, "failed to get default pinctrl: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301524 return ret;
Shawn Guofed78ce2012-05-06 20:21:05 +08001525 }
1526
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001527 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1528 if (IS_ERR(sport->clk_ipg)) {
1529 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001530 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301531 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001532 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001533
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001534 sport->clk_per = devm_clk_get(&pdev->dev, "per");
1535 if (IS_ERR(sport->clk_per)) {
1536 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001537 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301538 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001539 }
1540
1541 clk_prepare_enable(sport->clk_per);
1542 clk_prepare_enable(sport->clk_ipg);
1543
1544 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001545
Shawn Guo22698aa2011-06-25 02:04:34 +08001546 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001547
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001548 pdata = pdev->dev.platform_data;
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001549 if (pdata && pdata->init) {
Darius Augulisc45e7d72008-09-02 10:19:29 +02001550 ret = pdata->init(pdev);
1551 if (ret)
1552 goto clkput;
1553 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001554
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001555 ret = uart_add_one_port(&imx_reg, &sport->port);
1556 if (ret)
1557 goto deinit;
Richard Zhao0a86a862012-09-18 16:14:58 +08001558 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001561deinit:
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001562 if (pdata && pdata->exit)
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001563 pdata->exit(pdev);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001564clkput:
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001565 clk_disable_unprepare(sport->clk_per);
1566 clk_disable_unprepare(sport->clk_ipg);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001567 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001570static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001572 struct imxuart_platform_data *pdata;
1573 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001575 pdata = pdev->dev.platform_data;
1576
1577 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001579 uart_remove_one_port(&imx_reg, &sport->port);
1580
1581 clk_disable_unprepare(sport->clk_per);
1582 clk_disable_unprepare(sport->clk_ipg);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001583
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001584 if (pdata && pdata->exit)
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001585 pdata->exit(pdev);
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return 0;
1588}
1589
Russell King3ae5eae2005-11-09 22:32:44 +00001590static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001591 .probe = serial_imx_probe,
1592 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 .suspend = serial_imx_suspend,
1595 .resume = serial_imx_resume,
Shawn Guofe6b5402011-06-25 02:04:33 +08001596 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00001597 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001598 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001599 .owner = THIS_MODULE,
Shawn Guo22698aa2011-06-25 02:04:34 +08001600 .of_match_table = imx_uart_dt_ids,
Russell King3ae5eae2005-11-09 22:32:44 +00001601 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602};
1603
1604static int __init imx_serial_init(void)
1605{
1606 int ret;
1607
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301608 pr_info("Serial: IMX driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 ret = uart_register_driver(&imx_reg);
1611 if (ret)
1612 return ret;
1613
Russell King3ae5eae2005-11-09 22:32:44 +00001614 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (ret != 0)
1616 uart_unregister_driver(&imx_reg);
1617
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01001618 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
1621static void __exit imx_serial_exit(void)
1622{
Russell Kingc889b892005-11-21 17:05:21 +00001623 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001624 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
1627module_init(imx_serial_init);
1628module_exit(imx_serial_exit);
1629
1630MODULE_AUTHOR("Sascha Hauer");
1631MODULE_DESCRIPTION("IMX generic serial port driver");
1632MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001633MODULE_ALIAS("platform:imx-uart");