blob: e43064b5c938b93e2560b42b336367b995054b14 [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>
Sachin Kamate32a9f82013-01-07 10:25:03 +053050#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/irq.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020053#include <linux/platform_data/serial-imx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Sascha Hauerff4bfb22007-04-26 08:26:13 +010055/* Register definitions */
56#define URXD0 0x0 /* Receiver Register */
57#define URTX0 0x40 /* Transmitter Register */
58#define UCR1 0x80 /* Control Register 1 */
59#define UCR2 0x84 /* Control Register 2 */
60#define UCR3 0x88 /* Control Register 3 */
61#define UCR4 0x8c /* Control Register 4 */
62#define UFCR 0x90 /* FIFO Control Register */
63#define USR1 0x94 /* Status Register 1 */
64#define USR2 0x98 /* Status Register 2 */
65#define UESC 0x9c /* Escape Character Register */
66#define UTIM 0xa0 /* Escape Timer Register */
67#define UBIR 0xa4 /* BRM Incremental Register */
68#define UBMR 0xa8 /* BRM Modulator Register */
69#define UBRC 0xac /* Baud Rate Count Register */
Shawn Guofe6b5402011-06-25 02:04:33 +080070#define IMX21_ONEMS 0xb0 /* One Millisecond register */
71#define IMX1_UTS 0xd0 /* UART Test Register on i.mx1 */
72#define IMX21_UTS 0xb4 /* UART Test Register on all other i.mx*/
Sascha Hauerff4bfb22007-04-26 08:26:13 +010073
74/* UART Control Register Bit Fields.*/
Sachin Kamat82313e62013-01-07 10:25:02 +053075#define URXD_CHARRDY (1<<15)
76#define URXD_ERR (1<<14)
77#define URXD_OVRRUN (1<<13)
78#define URXD_FRMERR (1<<12)
79#define URXD_BRK (1<<11)
80#define URXD_PRERR (1<<10)
81#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
82#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
83#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
84#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
85#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
86#define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
87#define UCR1_IREN (1<<7) /* Infrared interface enable */
88#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
89#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
90#define UCR1_SNDBRK (1<<4) /* Send break */
91#define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
92#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
93#define UCR1_DOZE (1<<1) /* Doze */
94#define UCR1_UARTEN (1<<0) /* UART enabled */
95#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
96#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
97#define UCR2_CTSC (1<<13) /* CTS pin control */
98#define UCR2_CTS (1<<12) /* Clear to send */
99#define UCR2_ESCEN (1<<11) /* Escape enable */
100#define UCR2_PREN (1<<8) /* Parity enable */
101#define UCR2_PROE (1<<7) /* Parity odd/even */
102#define UCR2_STPB (1<<6) /* Stop */
103#define UCR2_WS (1<<5) /* Word size */
104#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
105#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
106#define UCR2_TXEN (1<<2) /* Transmitter enabled */
107#define UCR2_RXEN (1<<1) /* Receiver enabled */
108#define UCR2_SRST (1<<0) /* SW reset */
109#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
110#define UCR3_PARERREN (1<<12) /* Parity enable */
111#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
112#define UCR3_DSR (1<<10) /* Data set ready */
113#define UCR3_DCD (1<<9) /* Data carrier detect */
114#define UCR3_RI (1<<8) /* Ring indicator */
115#define UCR3_TIMEOUTEN (1<<7) /* Timeout interrupt enable */
116#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
117#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
118#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
119#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
120#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
121#define UCR3_BPEN (1<<0) /* Preset registers enable */
122#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
123#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
124#define UCR4_INVR (1<<9) /* Inverted infrared reception */
125#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
126#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
127#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
128#define UCR4_IRSC (1<<5) /* IR special case */
129#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
130#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
131#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
132#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
133#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
134#define UFCR_DCEDTE (1<<6) /* DCE/DTE mode select */
135#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
136#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
137#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
138#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
139#define USR1_RTSS (1<<14) /* RTS pin status */
140#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
141#define USR1_RTSD (1<<12) /* RTS delta */
142#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
143#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
144#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
145#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
146#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
147#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
148#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
149#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
150#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
151#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
152#define USR2_IDLE (1<<12) /* Idle condition */
153#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
154#define USR2_WAKE (1<<7) /* Wake */
155#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
156#define USR2_TXDC (1<<3) /* Transmitter complete */
157#define USR2_BRCD (1<<2) /* Break condition */
158#define USR2_ORE (1<<1) /* Overrun error */
159#define USR2_RDR (1<<0) /* Recv data ready */
160#define UTS_FRCPERR (1<<13) /* Force parity error */
161#define UTS_LOOP (1<<12) /* Loop tx and rx */
162#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
163#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
164#define UTS_TXFULL (1<<4) /* TxFIFO full */
165#define UTS_RXFULL (1<<3) /* RxFIFO full */
166#define UTS_SOFTRST (1<<0) /* Software reset */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/* We've been assigned a range on the "Low-density serial ports" major */
Sachin Kamat82313e62013-01-07 10:25:02 +0530169#define SERIAL_IMX_MAJOR 207
170#define MINOR_START 16
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200171#define DEV_NAME "ttymxc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * This determines how often we check the modem status signals
175 * for any change. They generally aren't connected to an IRQ
176 * so we have to poll them. We also check immediately before
177 * filling the TX fifo incase CTS has been dropped.
178 */
179#define MCTRL_TIMEOUT (250*HZ/1000)
180
181#define DRIVER_NAME "IMX-uart"
182
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200183#define UART_NR 8
184
Shawn Guofe6b5402011-06-25 02:04:33 +0800185/* i.mx21 type uart runs on all i.mx except i.mx1 */
186enum imx_uart_type {
187 IMX1_UART,
188 IMX21_UART,
189};
190
191/* device type dependent stuff */
192struct imx_uart_data {
193 unsigned uts_reg;
194 enum imx_uart_type devtype;
195};
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197struct imx_port {
198 struct uart_port port;
199 struct timer_list timer;
200 unsigned int old_status;
Sachin Kamat82313e62013-01-07 10:25:02 +0530201 int txirq, rxirq, rtsirq;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100202 unsigned int have_rtscts:1;
Huang Shijie20ff2fe2013-05-30 14:07:12 +0800203 unsigned int dte_mode: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 */
Fabio Estevame8bfa762013-06-05 00:58:46 -0300274#if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_IMX_CONSOLE)
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200275static void imx_port_ucrs_save(struct uart_port *port,
276 struct imx_port_ucrs *ucr)
277{
278 /* save control registers */
279 ucr->ucr1 = readl(port->membase + UCR1);
280 ucr->ucr2 = readl(port->membase + UCR2);
281 ucr->ucr3 = readl(port->membase + UCR3);
282}
283
284static void imx_port_ucrs_restore(struct uart_port *port,
285 struct imx_port_ucrs *ucr)
286{
287 /* restore control registers */
288 writel(ucr->ucr1, port->membase + UCR1);
289 writel(ucr->ucr2, port->membase + UCR2);
290 writel(ucr->ucr3, port->membase + UCR3);
291}
Fabio Estevame8bfa762013-06-05 00:58:46 -0300292#endif
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200293
294/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 * Handle any change of modem status signal since we were last called.
296 */
297static void imx_mctrl_check(struct imx_port *sport)
298{
299 unsigned int status, changed;
300
301 status = sport->port.ops->get_mctrl(&sport->port);
302 changed = status ^ sport->old_status;
303
304 if (changed == 0)
305 return;
306
307 sport->old_status = status;
308
309 if (changed & TIOCM_RI)
310 sport->port.icount.rng++;
311 if (changed & TIOCM_DSR)
312 sport->port.icount.dsr++;
313 if (changed & TIOCM_CAR)
314 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
315 if (changed & TIOCM_CTS)
316 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
317
Alan Coxbdc04e32009-09-19 13:13:31 -0700318 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
321/*
322 * This is our per-port timeout handler, for checking the
323 * modem status signals.
324 */
325static void imx_timeout(unsigned long data)
326{
327 struct imx_port *sport = (struct imx_port *)data;
328 unsigned long flags;
329
Alan Coxebd2c8f2009-09-19 13:13:28 -0700330 if (sport->port.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 spin_lock_irqsave(&sport->port.lock, flags);
332 imx_mctrl_check(sport);
333 spin_unlock_irqrestore(&sport->port.lock, flags);
334
335 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
336 }
337}
338
339/*
340 * interrupts disabled on entry
341 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100342static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100345 unsigned long temp;
346
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100347 if (USE_IRDA(sport)) {
348 /* half duplex - wait for end of transmission */
349 int n = 256;
350 while ((--n > 0) &&
351 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
352 udelay(5);
353 barrier();
354 }
355 /*
356 * irda transceiver - wait a bit more to avoid
357 * cutoff, hardware dependent
358 */
359 udelay(sport->trcv_delay);
360
361 /*
362 * half duplex - reactivate receive mode,
363 * flush receive pipe echo crap
364 */
365 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
366 temp = readl(sport->port.membase + UCR1);
367 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
368 writel(temp, sport->port.membase + UCR1);
369
370 temp = readl(sport->port.membase + UCR4);
371 temp &= ~(UCR4_TCEN);
372 writel(temp, sport->port.membase + UCR4);
373
374 while (readl(sport->port.membase + URXD0) &
375 URXD_CHARRDY)
376 barrier();
377
378 temp = readl(sport->port.membase + UCR1);
379 temp |= UCR1_RRDYEN;
380 writel(temp, sport->port.membase + UCR1);
381
382 temp = readl(sport->port.membase + UCR4);
383 temp |= UCR4_DREN;
384 writel(temp, sport->port.membase + UCR4);
385 }
386 return;
387 }
388
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100389 temp = readl(sport->port.membase + UCR1);
390 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393/*
394 * interrupts disabled on entry
395 */
396static void imx_stop_rx(struct uart_port *port)
397{
398 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100399 unsigned long temp;
400
401 temp = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +0530402 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2);
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);
413}
414
415static inline void imx_transmit_buffer(struct imx_port *sport)
416{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700417 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Volker Ernst4e4e6602010-10-13 11:03:57 +0200419 while (!uart_circ_empty(xmit) &&
Shawn Guofe6b5402011-06-25 02:04:33 +0800420 !(readl(sport->port.membase + uts_reg(sport))
421 & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /* send xmit->buf[xmit->tail]
423 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100424 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100425 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Fabian Godehardt977757312009-06-11 14:37:19 +0100429 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
430 uart_write_wakeup(&sport->port);
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100433 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
436/*
437 * interrupts disabled on entry
438 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100439static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100442 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100444 if (USE_IRDA(sport)) {
445 /* half duplex in IrDA mode; have to disable receive mode */
446 temp = readl(sport->port.membase + UCR4);
447 temp &= ~(UCR4_DREN);
448 writel(temp, sport->port.membase + UCR4);
449
450 temp = readl(sport->port.membase + UCR1);
451 temp &= ~(UCR1_RRDYEN);
452 writel(temp, sport->port.membase + UCR1);
453 }
Alexander Steinf1f836e2013-05-14 17:06:07 +0200454 /* Clear any pending ORE flag before enabling interrupt */
455 temp = readl(sport->port.membase + USR2);
456 writel(temp | USR2_ORE, sport->port.membase + USR2);
457
458 temp = readl(sport->port.membase + UCR4);
459 temp |= UCR4_OREN;
460 writel(temp, sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100461
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100462 temp = readl(sport->port.membase + UCR1);
463 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100465 if (USE_IRDA(sport)) {
466 temp = readl(sport->port.membase + UCR1);
467 temp |= UCR1_TRDYEN;
468 writel(temp, sport->port.membase + UCR1);
469
470 temp = readl(sport->port.membase + UCR4);
471 temp |= UCR4_TCEN;
472 writel(temp, sport->port.membase + UCR4);
473 }
474
Shawn Guofe6b5402011-06-25 02:04:33 +0800475 if (readl(sport->port.membase + uts_reg(sport)) & UTS_TXEMPTY)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100476 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
David Howells7d12e782006-10-05 14:55:46 +0100479static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100480{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800481 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200482 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100483 unsigned long flags;
484
485 spin_lock_irqsave(&sport->port.lock, flags);
486
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100487 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200488 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100489 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700490 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100491
492 spin_unlock_irqrestore(&sport->port.lock, flags);
493 return IRQ_HANDLED;
494}
495
David Howells7d12e782006-10-05 14:55:46 +0100496static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800498 struct imx_port *sport = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700499 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 unsigned long flags;
501
Sachin Kamat82313e62013-01-07 10:25:02 +0530502 spin_lock_irqsave(&sport->port.lock, flags);
Sachin Kamat699cbd62013-01-07 10:25:04 +0530503 if (sport->port.x_char) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100505 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 goto out;
507 }
508
509 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100510 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 goto out;
512 }
513
514 imx_transmit_buffer(sport);
515
516 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
517 uart_write_wakeup(&sport->port);
518
519out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530520 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return IRQ_HANDLED;
522}
523
David Howells7d12e782006-10-05 14:55:46 +0100524static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530527 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100528 struct tty_port *port = &sport->port.state->port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100529 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Sachin Kamat82313e62013-01-07 10:25:02 +0530531 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100533 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 flg = TTY_NORMAL;
535 sport->port.icount.rx++;
536
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100537 rx = readl(sport->port.membase + URXD0);
538
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100539 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100540 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100541 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100542 if (uart_handle_break(&sport->port))
543 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100546 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100547 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Hui Wang019dc9e2011-08-24 17:41:47 +0800549 if (unlikely(rx & URXD_ERR)) {
550 if (rx & URXD_BRK)
551 sport->port.icount.brk++;
552 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100553 sport->port.icount.parity++;
554 else if (rx & URXD_FRMERR)
555 sport->port.icount.frame++;
556 if (rx & URXD_OVRRUN)
557 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Sascha Hauer864eeed2008-04-17 08:39:22 +0100559 if (rx & sport->port.ignore_status_mask) {
560 if (++ignored > 100)
561 goto out;
562 continue;
563 }
564
565 rx &= sport->port.read_status_mask;
566
Hui Wang019dc9e2011-08-24 17:41:47 +0800567 if (rx & URXD_BRK)
568 flg = TTY_BREAK;
569 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100570 flg = TTY_PARITY;
571 else if (rx & URXD_FRMERR)
572 flg = TTY_FRAME;
573 if (rx & URXD_OVRRUN)
574 flg = TTY_OVERRUN;
575
576#ifdef SUPPORT_SYSRQ
577 sport->port.sysrq = 0;
578#endif
579 }
580
Jiri Slaby92a19f92013-01-03 15:53:03 +0100581 tty_insert_flip_char(port, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530585 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100586 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200590static irqreturn_t imx_int(int irq, void *dev_id)
591{
592 struct imx_port *sport = dev_id;
593 unsigned int sts;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200594 unsigned int sts2;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200595
596 sts = readl(sport->port.membase + USR1);
597
598 if (sts & USR1_RRDY)
599 imx_rxint(irq, dev_id);
600
601 if (sts & USR1_TRDY &&
602 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
603 imx_txint(irq, dev_id);
604
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200605 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200606 imx_rtsint(irq, dev_id);
607
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200608 if (sts & USR1_AWAKE)
609 writel(USR1_AWAKE, sport->port.membase + USR1);
610
Alexander Steinf1f836e2013-05-14 17:06:07 +0200611 sts2 = readl(sport->port.membase + USR2);
612 if (sts2 & USR2_ORE) {
613 dev_err(sport->port.dev, "Rx FIFO overrun\n");
614 sport->port.icount.overrun++;
615 writel(sts2 | USR2_ORE, sport->port.membase + USR2);
616 }
617
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200618 return IRQ_HANDLED;
619}
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621/*
622 * Return TIOCSER_TEMT when transmitter is not busy.
623 */
624static unsigned int imx_tx_empty(struct uart_port *port)
625{
626 struct imx_port *sport = (struct imx_port *)port;
627
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100628 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100631/*
632 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
633 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static unsigned int imx_get_mctrl(struct uart_port *port)
635{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100636 struct imx_port *sport = (struct imx_port *)port;
637 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100638
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100639 if (readl(sport->port.membase + USR1) & USR1_RTSS)
640 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100641
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100642 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
643 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100644
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100645 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
648static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
649{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100650 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100651 unsigned long temp;
652
653 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100654
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100655 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100656 temp |= UCR2_CTS;
657
658 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661/*
662 * Interrupts always disabled.
663 */
664static void imx_break_ctl(struct uart_port *port, int break_state)
665{
666 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100667 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 spin_lock_irqsave(&sport->port.lock, flags);
670
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100671 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
672
Sachin Kamat82313e62013-01-07 10:25:02 +0530673 if (break_state != 0)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100674 temp |= UCR1_SNDBRK;
675
676 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 spin_unlock_irqrestore(&sport->port.lock, flags);
679}
680
681#define TXTL 2 /* reset default */
682#define RXTL 1 /* reset default */
683
Sascha Hauer587897f2005-04-29 22:46:40 +0100684static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
685{
686 unsigned int val;
Sascha Hauer587897f2005-04-29 22:46:40 +0100687
Dirk Behme7be06702012-08-31 10:02:47 +0200688 /* set receiver / transmitter trigger level */
689 val = readl(sport->port.membase + UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
690 val |= TXTL << UFCR_TXTL_SHF | RXTL;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100691 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100692 return 0;
693}
694
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200695/* half the RX buffer size */
696#define CTSTL 16
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698static int imx_startup(struct uart_port *port)
699{
700 struct imx_port *sport = (struct imx_port *)port;
701 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100702 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Huang Shijie1cf93e02013-06-28 13:39:42 +0800704 retval = clk_prepare_enable(sport->clk_per);
705 if (retval)
706 goto error_out1;
707 retval = clk_prepare_enable(sport->clk_ipg);
708 if (retval) {
709 clk_disable_unprepare(sport->clk_per);
710 goto error_out1;
Huang Shijie0c375502013-06-09 10:01:19 +0800711 }
Huang Shijie28eb4272013-06-04 09:59:33 +0800712
Sascha Hauer587897f2005-04-29 22:46:40 +0100713 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 /* disable the DREN bit (Data Ready interrupt enable) before
716 * requesting IRQs
717 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100718 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100719
720 if (USE_IRDA(sport))
721 temp |= UCR4_IRSC;
722
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200723 /* set the trigger level for CTS */
Sachin Kamat82313e62013-01-07 10:25:02 +0530724 temp &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
725 temp |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200726
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100727 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100729 if (USE_IRDA(sport)) {
730 /* reset fifo's and state machines */
731 int i = 100;
732 temp = readl(sport->port.membase + UCR2);
733 temp &= ~UCR2_SRST;
734 writel(temp, sport->port.membase + UCR2);
735 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
736 (--i > 0)) {
737 udelay(1);
738 }
739 }
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200742 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
743 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200745 if (sport->txirq > 0) {
746 retval = request_irq(sport->rxirq, imx_rxint, 0,
747 DRIVER_NAME, sport);
748 if (retval)
749 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200751 retval = request_irq(sport->txirq, imx_txint, 0,
752 DRIVER_NAME, sport);
753 if (retval)
754 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100756 /* do not use RTS IRQ on IrDA */
757 if (!USE_IRDA(sport)) {
Shawn Guo1ee8f652012-06-14 10:58:54 +0800758 retval = request_irq(sport->rtsirq, imx_rtsint, 0,
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100759 DRIVER_NAME, sport);
760 if (retval)
761 goto error_out3;
762 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200763 } else {
764 retval = request_irq(sport->port.irq, imx_int, 0,
765 DRIVER_NAME, sport);
766 if (retval) {
767 free_irq(sport->port.irq, sport);
768 goto error_out1;
769 }
770 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100771
Xinyu Chen9ec18822012-08-27 09:36:51 +0200772 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 /*
774 * Finally, clear and enable interrupts
775 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100776 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100778 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100779 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100780
781 if (USE_IRDA(sport)) {
782 temp |= UCR1_IREN;
783 temp &= ~(UCR1_RTSDEN);
784 }
785
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100786 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100788 temp = readl(sport->port.membase + UCR2);
789 temp |= (UCR2_RXEN | UCR2_TXEN);
Lucas Stachbff09b02013-05-30 15:47:04 +0200790 if (!sport->have_rtscts)
791 temp |= UCR2_IRTS;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100792 writel(temp, sport->port.membase + UCR2);
793
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100794 if (USE_IRDA(sport)) {
795 /* clear RX-FIFO */
796 int i = 64;
797 while ((--i > 0) &&
798 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
799 barrier();
800 }
801 }
802
Shawn Guofe6b5402011-06-25 02:04:33 +0800803 if (is_imx21_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200804 temp = readl(sport->port.membase + UCR3);
Shawn Guofe6b5402011-06-25 02:04:33 +0800805 temp |= IMX21_UCR3_RXDMUXSEL;
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200806 writel(temp, sport->port.membase + UCR3);
807 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200808
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100809 if (USE_IRDA(sport)) {
810 temp = readl(sport->port.membase + UCR4);
811 if (sport->irda_inv_rx)
812 temp |= UCR4_INVR;
813 else
814 temp &= ~(UCR4_INVR);
815 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
816
817 temp = readl(sport->port.membase + UCR3);
818 if (sport->irda_inv_tx)
819 temp |= UCR3_INVT;
820 else
821 temp &= ~(UCR3_INVT);
822 writel(temp, sport->port.membase + UCR3);
823 }
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 /*
826 * Enable modem status interrupts
827 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 imx_enable_ms(&sport->port);
Sachin Kamat82313e62013-01-07 10:25:02 +0530829 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100831 if (USE_IRDA(sport)) {
832 struct imxuart_platform_data *pdata;
833 pdata = sport->port.dev->platform_data;
834 sport->irda_inv_rx = pdata->irda_inv_rx;
835 sport->irda_inv_tx = pdata->irda_inv_tx;
836 sport->trcv_delay = pdata->transceiver_delay;
837 if (pdata->irda_enable)
838 pdata->irda_enable(1);
839 }
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return 0;
842
Sascha Hauerceca6292005-10-12 19:58:08 +0100843error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200844 if (sport->txirq)
845 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200847 if (sport->rxirq)
848 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100849error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return retval;
851}
852
853static void imx_shutdown(struct uart_port *port)
854{
855 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100856 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +0200857 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Xinyu Chen9ec18822012-08-27 09:36:51 +0200859 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100860 temp = readl(sport->port.membase + UCR2);
861 temp &= ~(UCR2_TXEN);
862 writel(temp, sport->port.membase + UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200863 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100864
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100865 if (USE_IRDA(sport)) {
866 struct imxuart_platform_data *pdata;
867 pdata = sport->port.dev->platform_data;
868 if (pdata->irda_enable)
869 pdata->irda_enable(0);
870 }
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /*
873 * Stop our timer.
874 */
875 del_timer_sync(&sport->timer);
876
877 /*
878 * Free the interrupts
879 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200880 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100881 if (!USE_IRDA(sport))
882 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200883 free_irq(sport->txirq, sport);
884 free_irq(sport->rxirq, sport);
885 } else
886 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 /*
889 * Disable all interrupts, port and break condition.
890 */
891
Xinyu Chen9ec18822012-08-27 09:36:51 +0200892 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100893 temp = readl(sport->port.membase + UCR1);
894 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100895 if (USE_IRDA(sport))
896 temp &= ~(UCR1_IREN);
897
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100898 writel(temp, sport->port.membase + UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200899 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +0800900
Huang Shijie1cf93e02013-06-28 13:39:42 +0800901 clk_disable_unprepare(sport->clk_per);
902 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
905static void
Alan Cox606d0992006-12-08 02:38:45 -0800906imx_set_termios(struct uart_port *port, struct ktermios *termios,
907 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 struct imx_port *sport = (struct imx_port *)port;
910 unsigned long flags;
911 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
912 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca02009-06-11 14:52:23 +0100913 unsigned int div, ufcr;
914 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100915 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 /*
918 * If we don't support modem control lines, don't allow
919 * these to be set.
920 */
921 if (0) {
922 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
923 termios->c_cflag |= CLOCAL;
924 }
925
926 /*
927 * We only support CS7 and CS8.
928 */
929 while ((termios->c_cflag & CSIZE) != CS7 &&
930 (termios->c_cflag & CSIZE) != CS8) {
931 termios->c_cflag &= ~CSIZE;
932 termios->c_cflag |= old_csize;
933 old_csize = CS8;
934 }
935
936 if ((termios->c_cflag & CSIZE) == CS8)
937 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
938 else
939 ucr2 = UCR2_SRST | UCR2_IRTS;
940
941 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +0530942 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100943 ucr2 &= ~UCR2_IRTS;
944 ucr2 |= UCR2_CTSC;
945 } else {
946 termios->c_cflag &= ~CRTSCTS;
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949
950 if (termios->c_cflag & CSTOPB)
951 ucr2 |= UCR2_STPB;
952 if (termios->c_cflag & PARENB) {
953 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000954 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 ucr2 |= UCR2_PROE;
956 }
957
Eric Miao995234d2011-12-23 05:39:27 +0800958 del_timer_sync(&sport->timer);
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 /*
961 * Ask the core to calculate the divisor for us.
962 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200963 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 quot = uart_get_divisor(port, baud);
965
966 spin_lock_irqsave(&sport->port.lock, flags);
967
968 sport->port.read_status_mask = 0;
969 if (termios->c_iflag & INPCK)
970 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
971 if (termios->c_iflag & (BRKINT | PARMRK))
972 sport->port.read_status_mask |= URXD_BRK;
973
974 /*
975 * Characters to ignore
976 */
977 sport->port.ignore_status_mask = 0;
978 if (termios->c_iflag & IGNPAR)
979 sport->port.ignore_status_mask |= URXD_PRERR;
980 if (termios->c_iflag & IGNBRK) {
981 sport->port.ignore_status_mask |= URXD_BRK;
982 /*
983 * If we're ignoring parity and break indicators,
984 * ignore overruns too (for real raw support).
985 */
986 if (termios->c_iflag & IGNPAR)
987 sport->port.ignore_status_mask |= URXD_OVRRUN;
988 }
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /*
991 * Update the per-port timeout.
992 */
993 uart_update_timeout(port, termios->c_cflag, baud);
994
995 /*
996 * disable interrupts and drain transmitter
997 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100998 old_ucr1 = readl(sport->port.membase + UCR1);
999 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1000 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Sachin Kamat82313e62013-01-07 10:25:02 +05301002 while (!(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 barrier();
1004
1005 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001006 old_txrxen = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +05301007 writel(old_txrxen & ~(UCR2_TXEN | UCR2_RXEN),
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001008 sport->port.membase + UCR2);
1009 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001011 if (USE_IRDA(sport)) {
1012 /*
1013 * use maximum available submodule frequency to
1014 * avoid missing short pulses due to low sampling rate
1015 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001016 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001017 } else {
1018 div = sport->port.uartclk / (baud * 16);
1019 if (div > 7)
1020 div = 7;
1021 if (!div)
1022 div = 1;
1023 }
Sascha Hauer036bb152008-07-05 10:02:44 +02001024
Oskar Schirmer534fca02009-06-11 14:52:23 +01001025 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1026 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001027
Alan Coxeab4f5a2010-06-01 22:52:52 +02001028 tdiv64 = sport->port.uartclk;
1029 tdiv64 *= num;
1030 do_div(tdiv64, denom * 16 * div);
1031 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001032 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001033
Oskar Schirmer534fca02009-06-11 14:52:23 +01001034 num -= 1;
1035 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001036
1037 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001038 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Huang Shijie20ff2fe2013-05-30 14:07:12 +08001039 if (sport->dte_mode)
1040 ufcr |= UFCR_DCEDTE;
Sascha Hauer036bb152008-07-05 10:02:44 +02001041 writel(ufcr, sport->port.membase + UFCR);
1042
Oskar Schirmer534fca02009-06-11 14:52:23 +01001043 writel(num, sport->port.membase + UBIR);
1044 writel(denom, sport->port.membase + UBMR);
1045
Shawn Guofe6b5402011-06-25 02:04:33 +08001046 if (is_imx21_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001047 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001048 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001050 writel(old_ucr1, sport->port.membase + UCR1);
1051
1052 /* set the parity, stop bits and data size */
1053 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1056 imx_enable_ms(&sport->port);
1057
1058 spin_unlock_irqrestore(&sport->port.lock, flags);
1059}
1060
1061static const char *imx_type(struct uart_port *port)
1062{
1063 struct imx_port *sport = (struct imx_port *)port;
1064
1065 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1066}
1067
1068/*
1069 * Release the memory region(s) being used by 'port'.
1070 */
1071static void imx_release_port(struct uart_port *port)
1072{
Sascha Hauer3d454442008-04-17 08:47:32 +01001073 struct platform_device *pdev = to_platform_device(port->dev);
1074 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Sascha Hauer3d454442008-04-17 08:47:32 +01001076 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joe Perches28f65c112011-06-09 09:13:32 -07001077 release_mem_region(mmres->start, resource_size(mmres));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
1080/*
1081 * Request the memory region(s) being used by 'port'.
1082 */
1083static int imx_request_port(struct uart_port *port)
1084{
Sascha Hauer3d454442008-04-17 08:47:32 +01001085 struct platform_device *pdev = to_platform_device(port->dev);
1086 struct resource *mmres;
1087 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Sascha Hauer3d454442008-04-17 08:47:32 +01001089 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1090 if (!mmres)
1091 return -ENODEV;
1092
Joe Perches28f65c112011-06-09 09:13:32 -07001093 ret = request_mem_region(mmres->start, resource_size(mmres), "imx-uart");
Sascha Hauer3d454442008-04-17 08:47:32 +01001094
1095 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
1098/*
1099 * Configure/autoconfigure the port.
1100 */
1101static void imx_config_port(struct uart_port *port, int flags)
1102{
1103 struct imx_port *sport = (struct imx_port *)port;
1104
1105 if (flags & UART_CONFIG_TYPE &&
1106 imx_request_port(&sport->port) == 0)
1107 sport->port.type = PORT_IMX;
1108}
1109
1110/*
1111 * Verify the new serial_struct (for TIOCSSERIAL).
1112 * The only change we allow are to the flags and type, and
1113 * even then only between PORT_IMX and PORT_UNKNOWN
1114 */
1115static int
1116imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1117{
1118 struct imx_port *sport = (struct imx_port *)port;
1119 int ret = 0;
1120
1121 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1122 ret = -EINVAL;
1123 if (sport->port.irq != ser->irq)
1124 ret = -EINVAL;
1125 if (ser->io_type != UPIO_MEM)
1126 ret = -EINVAL;
1127 if (sport->port.uartclk / 16 != ser->baud_base)
1128 ret = -EINVAL;
1129 if ((void *)sport->port.mapbase != ser->iomem_base)
1130 ret = -EINVAL;
1131 if (sport->port.iobase != ser->port)
1132 ret = -EINVAL;
1133 if (ser->hub6 != 0)
1134 ret = -EINVAL;
1135 return ret;
1136}
1137
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001138#if defined(CONFIG_CONSOLE_POLL)
1139static int imx_poll_get_char(struct uart_port *port)
1140{
1141 struct imx_port_ucrs old_ucr;
1142 unsigned int status;
1143 unsigned char c;
1144
1145 /* save control registers */
1146 imx_port_ucrs_save(port, &old_ucr);
1147
1148 /* disable interrupts */
1149 writel(UCR1_UARTEN, port->membase + UCR1);
1150 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1151 port->membase + UCR2);
1152 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1153 port->membase + UCR3);
1154
1155 /* poll */
1156 do {
1157 status = readl(port->membase + USR2);
1158 } while (~status & USR2_RDR);
1159
1160 /* read */
1161 c = readl(port->membase + URXD0);
1162
1163 /* restore control registers */
1164 imx_port_ucrs_restore(port, &old_ucr);
1165
1166 return c;
1167}
1168
1169static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1170{
1171 struct imx_port_ucrs old_ucr;
1172 unsigned int status;
1173
1174 /* save control registers */
1175 imx_port_ucrs_save(port, &old_ucr);
1176
1177 /* disable interrupts */
1178 writel(UCR1_UARTEN, port->membase + UCR1);
1179 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1180 port->membase + UCR2);
1181 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1182 port->membase + UCR3);
1183
1184 /* drain */
1185 do {
1186 status = readl(port->membase + USR1);
1187 } while (~status & USR1_TRDY);
1188
1189 /* write */
1190 writel(c, port->membase + URTX0);
1191
1192 /* flush */
1193 do {
1194 status = readl(port->membase + USR2);
1195 } while (~status & USR2_TXDC);
1196
1197 /* restore control registers */
1198 imx_port_ucrs_restore(port, &old_ucr);
1199}
1200#endif
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202static struct uart_ops imx_pops = {
1203 .tx_empty = imx_tx_empty,
1204 .set_mctrl = imx_set_mctrl,
1205 .get_mctrl = imx_get_mctrl,
1206 .stop_tx = imx_stop_tx,
1207 .start_tx = imx_start_tx,
1208 .stop_rx = imx_stop_rx,
1209 .enable_ms = imx_enable_ms,
1210 .break_ctl = imx_break_ctl,
1211 .startup = imx_startup,
1212 .shutdown = imx_shutdown,
1213 .set_termios = imx_set_termios,
1214 .type = imx_type,
1215 .release_port = imx_release_port,
1216 .request_port = imx_request_port,
1217 .config_port = imx_config_port,
1218 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001219#if defined(CONFIG_CONSOLE_POLL)
1220 .poll_get_char = imx_poll_get_char,
1221 .poll_put_char = imx_poll_put_char,
1222#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223};
1224
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001225static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001228static void imx_console_putchar(struct uart_port *port, int ch)
1229{
1230 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001231
Shawn Guofe6b5402011-06-25 02:04:33 +08001232 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001233 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001234
1235 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001236}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238/*
1239 * Interrupts are disabled on entering
1240 */
1241static void
1242imx_console_write(struct console *co, const char *s, unsigned int count)
1243{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001244 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001245 struct imx_port_ucrs old_ucr;
1246 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001247 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001248 int locked = 1;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001249 int retval;
1250
1251 retval = clk_enable(sport->clk_per);
1252 if (retval)
1253 return;
1254 retval = clk_enable(sport->clk_ipg);
1255 if (retval) {
1256 clk_disable(sport->clk_per);
1257 return;
1258 }
Xinyu Chen9ec18822012-08-27 09:36:51 +02001259
Thomas Gleixner677fe552013-02-14 21:01:06 +01001260 if (sport->port.sysrq)
1261 locked = 0;
1262 else if (oops_in_progress)
1263 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1264 else
1265 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001268 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001270 imx_port_ucrs_save(&sport->port, &old_ucr);
1271 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Shawn Guofe6b5402011-06-25 02:04:33 +08001273 if (is_imx1_uart(sport))
1274 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001275 ucr1 |= UCR1_UARTEN;
1276 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1277
1278 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001279
Dirk Behme0ad5a812011-12-22 09:57:52 +01001280 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Russell Kingd3587882006-03-20 20:00:09 +00001282 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /*
1285 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001286 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001288 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Dirk Behme0ad5a812011-12-22 09:57:52 +01001290 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001291
Thomas Gleixner677fe552013-02-14 21:01:06 +01001292 if (locked)
1293 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001294
1295 clk_disable(sport->clk_ipg);
1296 clk_disable(sport->clk_per);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299/*
1300 * If the port was already initialised (eg, by a boot loader),
1301 * try to determine the current setup.
1302 */
1303static void __init
1304imx_console_get_options(struct imx_port *sport, int *baud,
1305 int *parity, int *bits)
1306{
Sascha Hauer587897f2005-04-29 22:46:40 +01001307
Roel Kluin2e2eb502009-12-09 12:31:36 -08001308 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301310 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001311 unsigned int baud_raw;
1312 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001314 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 *parity = 'n';
1317 if (ucr2 & UCR2_PREN) {
1318 if (ucr2 & UCR2_PROE)
1319 *parity = 'o';
1320 else
1321 *parity = 'e';
1322 }
1323
1324 if (ucr2 & UCR2_WS)
1325 *bits = 8;
1326 else
1327 *bits = 7;
1328
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001329 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1330 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001332 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001333 if (ucfr_rfdiv == 6)
1334 ucfr_rfdiv = 7;
1335 else
1336 ucfr_rfdiv = 6 - ucfr_rfdiv;
1337
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001338 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001339 uartclk /= ucfr_rfdiv;
1340
1341 { /*
1342 * The next code provides exact computation of
1343 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1344 * without need of float support or long long division,
1345 * which would be required to prevent 32bit arithmetic overflow
1346 */
1347 unsigned int mul = ubir + 1;
1348 unsigned int div = 16 * (ubmr + 1);
1349 unsigned int rem = uartclk % div;
1350
1351 baud_raw = (uartclk / div) * mul;
1352 baud_raw += (rem * mul + div / 2) / div;
1353 *baud = (baud_raw + 50) / 100 * 100;
1354 }
1355
Sachin Kamat82313e62013-01-07 10:25:02 +05301356 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301357 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01001358 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360}
1361
1362static int __init
1363imx_console_setup(struct console *co, char *options)
1364{
1365 struct imx_port *sport;
1366 int baud = 9600;
1367 int bits = 8;
1368 int parity = 'n';
1369 int flow = 'n';
Huang Shijie1cf93e02013-06-28 13:39:42 +08001370 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 /*
1373 * Check whether an invalid uart number has been specified, and
1374 * if so, search for the first available port that does have
1375 * console support.
1376 */
1377 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1378 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001379 sport = imx_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05301380 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04001381 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Huang Shijie1cf93e02013-06-28 13:39:42 +08001383 /* For setting the registers, we only need to enable the ipg clock. */
1384 retval = clk_prepare_enable(sport->clk_ipg);
1385 if (retval)
1386 goto error_console;
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (options)
1389 uart_parse_options(options, &baud, &parity, &bits, &flow);
1390 else
1391 imx_console_get_options(sport, &baud, &parity, &bits);
1392
Sascha Hauer587897f2005-04-29 22:46:40 +01001393 imx_setup_ufcr(sport, 0);
1394
Huang Shijie1cf93e02013-06-28 13:39:42 +08001395 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow);
1396
1397 clk_disable(sport->clk_ipg);
1398 if (retval) {
1399 clk_unprepare(sport->clk_ipg);
1400 goto error_console;
1401 }
1402
1403 retval = clk_prepare(sport->clk_per);
1404 if (retval)
1405 clk_disable_unprepare(sport->clk_ipg);
1406
1407error_console:
1408 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001411static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001413 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 .write = imx_console_write,
1415 .device = uart_console_device,
1416 .setup = imx_console_setup,
1417 .flags = CON_PRINTBUFFER,
1418 .index = -1,
1419 .data = &imx_reg,
1420};
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422#define IMX_CONSOLE &imx_console
1423#else
1424#define IMX_CONSOLE NULL
1425#endif
1426
1427static struct uart_driver imx_reg = {
1428 .owner = THIS_MODULE,
1429 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001430 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 .major = SERIAL_IMX_MAJOR,
1432 .minor = MINOR_START,
1433 .nr = ARRAY_SIZE(imx_ports),
1434 .cons = IMX_CONSOLE,
1435};
1436
Russell King3ae5eae2005-11-09 22:32:44 +00001437static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001439 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001440 unsigned int val;
1441
1442 /* enable wakeup from i.MX UART */
1443 val = readl(sport->port.membase + UCR3);
1444 val |= UCR3_AWAKEN;
1445 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Richard Zhao034dc4d2012-09-18 16:14:59 +08001447 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
Russell King3ae5eae2005-11-09 22:32:44 +00001452static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001454 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001455 unsigned int val;
1456
1457 /* disable wakeup from i.MX UART */
1458 val = readl(sport->port.membase + UCR3);
1459 val &= ~UCR3_AWAKEN;
1460 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Richard Zhao034dc4d2012-09-18 16:14:59 +08001462 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466
Shawn Guo22698aa2011-06-25 02:04:34 +08001467#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001468/*
1469 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1470 * could successfully get all information from dt or a negative errno.
1471 */
Shawn Guo22698aa2011-06-25 02:04:34 +08001472static int serial_imx_probe_dt(struct imx_port *sport,
1473 struct platform_device *pdev)
1474{
1475 struct device_node *np = pdev->dev.of_node;
1476 const struct of_device_id *of_id =
1477 of_match_device(imx_uart_dt_ids, &pdev->dev);
Shawn Guoff059672011-09-22 14:48:13 +08001478 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001479
1480 if (!np)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001481 /* no device tree device */
1482 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001483
Shawn Guoff059672011-09-22 14:48:13 +08001484 ret = of_alias_get_id(np, "serial");
1485 if (ret < 0) {
1486 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01001487 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08001488 }
1489 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001490
1491 if (of_get_property(np, "fsl,uart-has-rtscts", NULL))
1492 sport->have_rtscts = 1;
1493
1494 if (of_get_property(np, "fsl,irda-mode", NULL))
1495 sport->use_irda = 1;
1496
Huang Shijie20ff2fe2013-05-30 14:07:12 +08001497 if (of_get_property(np, "fsl,dte-mode", NULL))
1498 sport->dte_mode = 1;
1499
Shawn Guo22698aa2011-06-25 02:04:34 +08001500 sport->devdata = of_id->data;
1501
1502 return 0;
1503}
1504#else
1505static inline int serial_imx_probe_dt(struct imx_port *sport,
1506 struct platform_device *pdev)
1507{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001508 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001509}
1510#endif
1511
1512static void serial_imx_probe_pdata(struct imx_port *sport,
1513 struct platform_device *pdev)
1514{
1515 struct imxuart_platform_data *pdata = pdev->dev.platform_data;
1516
1517 sport->port.line = pdev->id;
1518 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
1519
1520 if (!pdata)
1521 return;
1522
1523 if (pdata->flags & IMXUART_HAVE_RTSCTS)
1524 sport->have_rtscts = 1;
1525
1526 if (pdata->flags & IMXUART_IRDA)
1527 sport->use_irda = 1;
1528}
1529
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001530static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001532 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001533 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001534 void __iomem *base;
1535 int ret = 0;
1536 struct resource *res;
Sascha Hauer5b802342006-05-04 14:07:42 +01001537
Sachin Kamat42d34192013-01-07 10:25:06 +05301538 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001539 if (!sport)
1540 return -ENOMEM;
1541
Shawn Guo22698aa2011-06-25 02:04:34 +08001542 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001543 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08001544 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001545 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05301546 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001547
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001548 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sachin Kamat42d34192013-01-07 10:25:06 +05301549 if (!res)
1550 return -ENODEV;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001551
Sachin Kamat42d34192013-01-07 10:25:06 +05301552 base = devm_ioremap(&pdev->dev, res->start, PAGE_SIZE);
1553 if (!base)
1554 return -ENOMEM;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001555
1556 sport->port.dev = &pdev->dev;
1557 sport->port.mapbase = res->start;
1558 sport->port.membase = base;
1559 sport->port.type = PORT_IMX,
1560 sport->port.iotype = UPIO_MEM;
1561 sport->port.irq = platform_get_irq(pdev, 0);
1562 sport->rxirq = platform_get_irq(pdev, 0);
1563 sport->txirq = platform_get_irq(pdev, 1);
1564 sport->rtsirq = platform_get_irq(pdev, 2);
1565 sport->port.fifosize = 32;
1566 sport->port.ops = &imx_pops;
1567 sport->port.flags = UPF_BOOT_AUTOCONF;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001568 init_timer(&sport->timer);
1569 sport->timer.function = imx_timeout;
1570 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001571
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001572 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1573 if (IS_ERR(sport->clk_ipg)) {
1574 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001575 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301576 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001577 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001578
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001579 sport->clk_per = devm_clk_get(&pdev->dev, "per");
1580 if (IS_ERR(sport->clk_per)) {
1581 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001582 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301583 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001584 }
1585
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001586 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001587
Shawn Guo22698aa2011-06-25 02:04:34 +08001588 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001589
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001590 pdata = pdev->dev.platform_data;
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001591 if (pdata && pdata->init) {
Darius Augulisc45e7d72008-09-02 10:19:29 +02001592 ret = pdata->init(pdev);
1593 if (ret)
Huang Shijie1cf93e02013-06-28 13:39:42 +08001594 return ret;
Darius Augulisc45e7d72008-09-02 10:19:29 +02001595 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001596
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001597 ret = uart_add_one_port(&imx_reg, &sport->port);
1598 if (ret)
1599 goto deinit;
Richard Zhao0a86a862012-09-18 16:14:58 +08001600 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001603deinit:
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001604 if (pdata && pdata->exit)
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001605 pdata->exit(pdev);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001606 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001609static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001611 struct imxuart_platform_data *pdata;
1612 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001614 pdata = pdev->dev.platform_data;
1615
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001616 uart_remove_one_port(&imx_reg, &sport->port);
1617
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001618 if (pdata && pdata->exit)
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001619 pdata->exit(pdev);
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return 0;
1622}
1623
Russell King3ae5eae2005-11-09 22:32:44 +00001624static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001625 .probe = serial_imx_probe,
1626 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 .suspend = serial_imx_suspend,
1629 .resume = serial_imx_resume,
Shawn Guofe6b5402011-06-25 02:04:33 +08001630 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00001631 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001632 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001633 .owner = THIS_MODULE,
Shawn Guo22698aa2011-06-25 02:04:34 +08001634 .of_match_table = imx_uart_dt_ids,
Russell King3ae5eae2005-11-09 22:32:44 +00001635 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636};
1637
1638static int __init imx_serial_init(void)
1639{
1640 int ret;
1641
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301642 pr_info("Serial: IMX driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 ret = uart_register_driver(&imx_reg);
1645 if (ret)
1646 return ret;
1647
Russell King3ae5eae2005-11-09 22:32:44 +00001648 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (ret != 0)
1650 uart_unregister_driver(&imx_reg);
1651
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01001652 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653}
1654
1655static void __exit imx_serial_exit(void)
1656{
Russell Kingc889b892005-11-21 17:05:21 +00001657 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001658 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659}
1660
1661module_init(imx_serial_init);
1662module_exit(imx_serial_exit);
1663
1664MODULE_AUTHOR("Sascha Hauer");
1665MODULE_DESCRIPTION("IMX generic serial port driver");
1666MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001667MODULE_ALIAS("platform:imx-uart");