blob: 79d1943c2e7912bfff06d6f8062d60f94be5f4cf [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,
Huang Shijiea496e622013-07-08 17:14:17 +0800189 IMX6Q_UART,
Shawn Guofe6b5402011-06-25 02:04:33 +0800190};
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;
Huang Shijie20ff2fe2013-05-30 14:07:12 +0800204 unsigned int dte_mode:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100205 unsigned int use_irda:1;
206 unsigned int irda_inv_rx:1;
207 unsigned int irda_inv_tx:1;
208 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100209 struct clk *clk_ipg;
210 struct clk *clk_per;
Uwe Kleine-König7d0b0662012-05-21 21:57:39 +0200211 const struct imx_uart_data *devdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Dirk Behme0ad5a812011-12-22 09:57:52 +0100214struct imx_port_ucrs {
215 unsigned int ucr1;
216 unsigned int ucr2;
217 unsigned int ucr3;
218};
219
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100220#ifdef CONFIG_IRDA
221#define USE_IRDA(sport) ((sport)->use_irda)
222#else
223#define USE_IRDA(sport) (0)
224#endif
225
Shawn Guofe6b5402011-06-25 02:04:33 +0800226static struct imx_uart_data imx_uart_devdata[] = {
227 [IMX1_UART] = {
228 .uts_reg = IMX1_UTS,
229 .devtype = IMX1_UART,
230 },
231 [IMX21_UART] = {
232 .uts_reg = IMX21_UTS,
233 .devtype = IMX21_UART,
234 },
Huang Shijiea496e622013-07-08 17:14:17 +0800235 [IMX6Q_UART] = {
236 .uts_reg = IMX21_UTS,
237 .devtype = IMX6Q_UART,
238 },
Shawn Guofe6b5402011-06-25 02:04:33 +0800239};
240
241static struct platform_device_id imx_uart_devtype[] = {
242 {
243 .name = "imx1-uart",
244 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
245 }, {
246 .name = "imx21-uart",
247 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
248 }, {
Huang Shijiea496e622013-07-08 17:14:17 +0800249 .name = "imx6q-uart",
250 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX6Q_UART],
251 }, {
Shawn Guofe6b5402011-06-25 02:04:33 +0800252 /* sentinel */
253 }
254};
255MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
256
Shawn Guo22698aa2011-06-25 02:04:34 +0800257static struct of_device_id imx_uart_dt_ids[] = {
Huang Shijiea496e622013-07-08 17:14:17 +0800258 { .compatible = "fsl,imx6q-uart", .data = &imx_uart_devdata[IMX6Q_UART], },
Shawn Guo22698aa2011-06-25 02:04:34 +0800259 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
260 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
261 { /* sentinel */ }
262};
263MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
264
Shawn Guofe6b5402011-06-25 02:04:33 +0800265static inline unsigned uts_reg(struct imx_port *sport)
266{
267 return sport->devdata->uts_reg;
268}
269
270static inline int is_imx1_uart(struct imx_port *sport)
271{
272 return sport->devdata->devtype == IMX1_UART;
273}
274
275static inline int is_imx21_uart(struct imx_port *sport)
276{
277 return sport->devdata->devtype == IMX21_UART;
278}
279
Huang Shijiea496e622013-07-08 17:14:17 +0800280static inline int is_imx6q_uart(struct imx_port *sport)
281{
282 return sport->devdata->devtype == IMX6Q_UART;
283}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200285 * Save and restore functions for UCR1, UCR2 and UCR3 registers
286 */
Fabio Estevame8bfa762013-06-05 00:58:46 -0300287#if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_IMX_CONSOLE)
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200288static void imx_port_ucrs_save(struct uart_port *port,
289 struct imx_port_ucrs *ucr)
290{
291 /* save control registers */
292 ucr->ucr1 = readl(port->membase + UCR1);
293 ucr->ucr2 = readl(port->membase + UCR2);
294 ucr->ucr3 = readl(port->membase + UCR3);
295}
296
297static void imx_port_ucrs_restore(struct uart_port *port,
298 struct imx_port_ucrs *ucr)
299{
300 /* restore control registers */
301 writel(ucr->ucr1, port->membase + UCR1);
302 writel(ucr->ucr2, port->membase + UCR2);
303 writel(ucr->ucr3, port->membase + UCR3);
304}
Fabio Estevame8bfa762013-06-05 00:58:46 -0300305#endif
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200306
307/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * Handle any change of modem status signal since we were last called.
309 */
310static void imx_mctrl_check(struct imx_port *sport)
311{
312 unsigned int status, changed;
313
314 status = sport->port.ops->get_mctrl(&sport->port);
315 changed = status ^ sport->old_status;
316
317 if (changed == 0)
318 return;
319
320 sport->old_status = status;
321
322 if (changed & TIOCM_RI)
323 sport->port.icount.rng++;
324 if (changed & TIOCM_DSR)
325 sport->port.icount.dsr++;
326 if (changed & TIOCM_CAR)
327 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
328 if (changed & TIOCM_CTS)
329 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
330
Alan Coxbdc04e32009-09-19 13:13:31 -0700331 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334/*
335 * This is our per-port timeout handler, for checking the
336 * modem status signals.
337 */
338static void imx_timeout(unsigned long data)
339{
340 struct imx_port *sport = (struct imx_port *)data;
341 unsigned long flags;
342
Alan Coxebd2c8f2009-09-19 13:13:28 -0700343 if (sport->port.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 spin_lock_irqsave(&sport->port.lock, flags);
345 imx_mctrl_check(sport);
346 spin_unlock_irqrestore(&sport->port.lock, flags);
347
348 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
349 }
350}
351
352/*
353 * interrupts disabled on entry
354 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100355static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100358 unsigned long temp;
359
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100360 if (USE_IRDA(sport)) {
361 /* half duplex - wait for end of transmission */
362 int n = 256;
363 while ((--n > 0) &&
364 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
365 udelay(5);
366 barrier();
367 }
368 /*
369 * irda transceiver - wait a bit more to avoid
370 * cutoff, hardware dependent
371 */
372 udelay(sport->trcv_delay);
373
374 /*
375 * half duplex - reactivate receive mode,
376 * flush receive pipe echo crap
377 */
378 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
379 temp = readl(sport->port.membase + UCR1);
380 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
381 writel(temp, sport->port.membase + UCR1);
382
383 temp = readl(sport->port.membase + UCR4);
384 temp &= ~(UCR4_TCEN);
385 writel(temp, sport->port.membase + UCR4);
386
387 while (readl(sport->port.membase + URXD0) &
388 URXD_CHARRDY)
389 barrier();
390
391 temp = readl(sport->port.membase + UCR1);
392 temp |= UCR1_RRDYEN;
393 writel(temp, sport->port.membase + UCR1);
394
395 temp = readl(sport->port.membase + UCR4);
396 temp |= UCR4_DREN;
397 writel(temp, sport->port.membase + UCR4);
398 }
399 return;
400 }
401
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100402 temp = readl(sport->port.membase + UCR1);
403 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406/*
407 * interrupts disabled on entry
408 */
409static void imx_stop_rx(struct uart_port *port)
410{
411 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100412 unsigned long temp;
413
414 temp = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +0530415 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418/*
419 * Set the modem control timer to fire immediately.
420 */
421static void imx_enable_ms(struct uart_port *port)
422{
423 struct imx_port *sport = (struct imx_port *)port;
424
425 mod_timer(&sport->timer, jiffies);
426}
427
428static inline void imx_transmit_buffer(struct imx_port *sport)
429{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700430 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Volker Ernst4e4e6602010-10-13 11:03:57 +0200432 while (!uart_circ_empty(xmit) &&
Shawn Guofe6b5402011-06-25 02:04:33 +0800433 !(readl(sport->port.membase + uts_reg(sport))
434 & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /* send xmit->buf[xmit->tail]
436 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100437 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100438 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Fabian Godehardt977757312009-06-11 14:37:19 +0100442 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
443 uart_write_wakeup(&sport->port);
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100446 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449/*
450 * interrupts disabled on entry
451 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100452static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100455 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100457 if (USE_IRDA(sport)) {
458 /* half duplex in IrDA mode; have to disable receive mode */
459 temp = readl(sport->port.membase + UCR4);
460 temp &= ~(UCR4_DREN);
461 writel(temp, sport->port.membase + UCR4);
462
463 temp = readl(sport->port.membase + UCR1);
464 temp &= ~(UCR1_RRDYEN);
465 writel(temp, sport->port.membase + UCR1);
466 }
Alexander Steinf1f836e2013-05-14 17:06:07 +0200467 /* Clear any pending ORE flag before enabling interrupt */
468 temp = readl(sport->port.membase + USR2);
469 writel(temp | USR2_ORE, sport->port.membase + USR2);
470
471 temp = readl(sport->port.membase + UCR4);
472 temp |= UCR4_OREN;
473 writel(temp, sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100474
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100475 temp = readl(sport->port.membase + UCR1);
476 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100478 if (USE_IRDA(sport)) {
479 temp = readl(sport->port.membase + UCR1);
480 temp |= UCR1_TRDYEN;
481 writel(temp, sport->port.membase + UCR1);
482
483 temp = readl(sport->port.membase + UCR4);
484 temp |= UCR4_TCEN;
485 writel(temp, sport->port.membase + UCR4);
486 }
487
Shawn Guofe6b5402011-06-25 02:04:33 +0800488 if (readl(sport->port.membase + uts_reg(sport)) & UTS_TXEMPTY)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100489 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
David Howells7d12e782006-10-05 14:55:46 +0100492static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100493{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800494 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200495 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100496 unsigned long flags;
497
498 spin_lock_irqsave(&sport->port.lock, flags);
499
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100500 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200501 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100502 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700503 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100504
505 spin_unlock_irqrestore(&sport->port.lock, flags);
506 return IRQ_HANDLED;
507}
508
David Howells7d12e782006-10-05 14:55:46 +0100509static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800511 struct imx_port *sport = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700512 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 unsigned long flags;
514
Sachin Kamat82313e62013-01-07 10:25:02 +0530515 spin_lock_irqsave(&sport->port.lock, flags);
Sachin Kamat699cbd62013-01-07 10:25:04 +0530516 if (sport->port.x_char) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100518 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto out;
520 }
521
522 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100523 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 goto out;
525 }
526
527 imx_transmit_buffer(sport);
528
529 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
530 uart_write_wakeup(&sport->port);
531
532out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530533 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return IRQ_HANDLED;
535}
536
David Howells7d12e782006-10-05 14:55:46 +0100537static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530540 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100541 struct tty_port *port = &sport->port.state->port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100542 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Sachin Kamat82313e62013-01-07 10:25:02 +0530544 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100546 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 flg = TTY_NORMAL;
548 sport->port.icount.rx++;
549
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100550 rx = readl(sport->port.membase + URXD0);
551
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100552 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100553 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100554 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100555 if (uart_handle_break(&sport->port))
556 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100559 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100560 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Hui Wang019dc9e2011-08-24 17:41:47 +0800562 if (unlikely(rx & URXD_ERR)) {
563 if (rx & URXD_BRK)
564 sport->port.icount.brk++;
565 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100566 sport->port.icount.parity++;
567 else if (rx & URXD_FRMERR)
568 sport->port.icount.frame++;
569 if (rx & URXD_OVRRUN)
570 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Sascha Hauer864eeed2008-04-17 08:39:22 +0100572 if (rx & sport->port.ignore_status_mask) {
573 if (++ignored > 100)
574 goto out;
575 continue;
576 }
577
578 rx &= sport->port.read_status_mask;
579
Hui Wang019dc9e2011-08-24 17:41:47 +0800580 if (rx & URXD_BRK)
581 flg = TTY_BREAK;
582 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100583 flg = TTY_PARITY;
584 else if (rx & URXD_FRMERR)
585 flg = TTY_FRAME;
586 if (rx & URXD_OVRRUN)
587 flg = TTY_OVERRUN;
588
589#ifdef SUPPORT_SYSRQ
590 sport->port.sysrq = 0;
591#endif
592 }
593
Jiri Slaby92a19f92013-01-03 15:53:03 +0100594 tty_insert_flip_char(port, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530598 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100599 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200603static irqreturn_t imx_int(int irq, void *dev_id)
604{
605 struct imx_port *sport = dev_id;
606 unsigned int sts;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200607 unsigned int sts2;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200608
609 sts = readl(sport->port.membase + USR1);
610
611 if (sts & USR1_RRDY)
612 imx_rxint(irq, dev_id);
613
614 if (sts & USR1_TRDY &&
615 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
616 imx_txint(irq, dev_id);
617
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200618 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200619 imx_rtsint(irq, dev_id);
620
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200621 if (sts & USR1_AWAKE)
622 writel(USR1_AWAKE, sport->port.membase + USR1);
623
Alexander Steinf1f836e2013-05-14 17:06:07 +0200624 sts2 = readl(sport->port.membase + USR2);
625 if (sts2 & USR2_ORE) {
626 dev_err(sport->port.dev, "Rx FIFO overrun\n");
627 sport->port.icount.overrun++;
628 writel(sts2 | USR2_ORE, sport->port.membase + USR2);
629 }
630
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200631 return IRQ_HANDLED;
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634/*
635 * Return TIOCSER_TEMT when transmitter is not busy.
636 */
637static unsigned int imx_tx_empty(struct uart_port *port)
638{
639 struct imx_port *sport = (struct imx_port *)port;
640
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100641 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100644/*
645 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
646 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647static unsigned int imx_get_mctrl(struct uart_port *port)
648{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100649 struct imx_port *sport = (struct imx_port *)port;
650 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100651
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100652 if (readl(sport->port.membase + USR1) & USR1_RTSS)
653 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100654
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100655 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
656 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100657
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100658 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
662{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100663 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100664 unsigned long temp;
665
666 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100667
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100668 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100669 temp |= UCR2_CTS;
670
671 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
674/*
675 * Interrupts always disabled.
676 */
677static void imx_break_ctl(struct uart_port *port, int break_state)
678{
679 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100680 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 spin_lock_irqsave(&sport->port.lock, flags);
683
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100684 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
685
Sachin Kamat82313e62013-01-07 10:25:02 +0530686 if (break_state != 0)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100687 temp |= UCR1_SNDBRK;
688
689 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 spin_unlock_irqrestore(&sport->port.lock, flags);
692}
693
694#define TXTL 2 /* reset default */
695#define RXTL 1 /* reset default */
696
Sascha Hauer587897f2005-04-29 22:46:40 +0100697static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
698{
699 unsigned int val;
Sascha Hauer587897f2005-04-29 22:46:40 +0100700
Dirk Behme7be06702012-08-31 10:02:47 +0200701 /* set receiver / transmitter trigger level */
702 val = readl(sport->port.membase + UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
703 val |= TXTL << UFCR_TXTL_SHF | RXTL;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100704 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100705 return 0;
706}
707
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200708/* half the RX buffer size */
709#define CTSTL 16
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711static int imx_startup(struct uart_port *port)
712{
713 struct imx_port *sport = (struct imx_port *)port;
714 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100715 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Huang Shijie1cf93e02013-06-28 13:39:42 +0800717 retval = clk_prepare_enable(sport->clk_per);
718 if (retval)
719 goto error_out1;
720 retval = clk_prepare_enable(sport->clk_ipg);
721 if (retval) {
722 clk_disable_unprepare(sport->clk_per);
723 goto error_out1;
Huang Shijie0c375502013-06-09 10:01:19 +0800724 }
Huang Shijie28eb4272013-06-04 09:59:33 +0800725
Sascha Hauer587897f2005-04-29 22:46:40 +0100726 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 /* disable the DREN bit (Data Ready interrupt enable) before
729 * requesting IRQs
730 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100731 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100732
733 if (USE_IRDA(sport))
734 temp |= UCR4_IRSC;
735
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200736 /* set the trigger level for CTS */
Sachin Kamat82313e62013-01-07 10:25:02 +0530737 temp &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
738 temp |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200739
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100740 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100742 if (USE_IRDA(sport)) {
743 /* reset fifo's and state machines */
744 int i = 100;
745 temp = readl(sport->port.membase + UCR2);
746 temp &= ~UCR2_SRST;
747 writel(temp, sport->port.membase + UCR2);
748 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
749 (--i > 0)) {
750 udelay(1);
751 }
752 }
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200755 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
756 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200758 if (sport->txirq > 0) {
759 retval = request_irq(sport->rxirq, imx_rxint, 0,
760 DRIVER_NAME, sport);
761 if (retval)
762 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200764 retval = request_irq(sport->txirq, imx_txint, 0,
765 DRIVER_NAME, sport);
766 if (retval)
767 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100769 /* do not use RTS IRQ on IrDA */
770 if (!USE_IRDA(sport)) {
Shawn Guo1ee8f652012-06-14 10:58:54 +0800771 retval = request_irq(sport->rtsirq, imx_rtsint, 0,
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100772 DRIVER_NAME, sport);
773 if (retval)
774 goto error_out3;
775 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200776 } else {
777 retval = request_irq(sport->port.irq, imx_int, 0,
778 DRIVER_NAME, sport);
779 if (retval) {
780 free_irq(sport->port.irq, sport);
781 goto error_out1;
782 }
783 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100784
Xinyu Chen9ec18822012-08-27 09:36:51 +0200785 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /*
787 * Finally, clear and enable interrupts
788 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100789 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100791 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100792 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100793
794 if (USE_IRDA(sport)) {
795 temp |= UCR1_IREN;
796 temp &= ~(UCR1_RTSDEN);
797 }
798
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100799 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100801 temp = readl(sport->port.membase + UCR2);
802 temp |= (UCR2_RXEN | UCR2_TXEN);
Lucas Stachbff09b02013-05-30 15:47:04 +0200803 if (!sport->have_rtscts)
804 temp |= UCR2_IRTS;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100805 writel(temp, sport->port.membase + UCR2);
806
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100807 if (USE_IRDA(sport)) {
808 /* clear RX-FIFO */
809 int i = 64;
810 while ((--i > 0) &&
811 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
812 barrier();
813 }
814 }
815
Huang Shijiea496e622013-07-08 17:14:17 +0800816 if (!is_imx1_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200817 temp = readl(sport->port.membase + UCR3);
Shawn Guofe6b5402011-06-25 02:04:33 +0800818 temp |= IMX21_UCR3_RXDMUXSEL;
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200819 writel(temp, sport->port.membase + UCR3);
820 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200821
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100822 if (USE_IRDA(sport)) {
823 temp = readl(sport->port.membase + UCR4);
824 if (sport->irda_inv_rx)
825 temp |= UCR4_INVR;
826 else
827 temp &= ~(UCR4_INVR);
828 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
829
830 temp = readl(sport->port.membase + UCR3);
831 if (sport->irda_inv_tx)
832 temp |= UCR3_INVT;
833 else
834 temp &= ~(UCR3_INVT);
835 writel(temp, sport->port.membase + UCR3);
836 }
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 /*
839 * Enable modem status interrupts
840 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 imx_enable_ms(&sport->port);
Sachin Kamat82313e62013-01-07 10:25:02 +0530842 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100844 if (USE_IRDA(sport)) {
845 struct imxuart_platform_data *pdata;
846 pdata = sport->port.dev->platform_data;
847 sport->irda_inv_rx = pdata->irda_inv_rx;
848 sport->irda_inv_tx = pdata->irda_inv_tx;
849 sport->trcv_delay = pdata->transceiver_delay;
850 if (pdata->irda_enable)
851 pdata->irda_enable(1);
852 }
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return 0;
855
Sascha Hauerceca6292005-10-12 19:58:08 +0100856error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200857 if (sport->txirq)
858 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200860 if (sport->rxirq)
861 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100862error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return retval;
864}
865
866static void imx_shutdown(struct uart_port *port)
867{
868 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100869 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +0200870 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Xinyu Chen9ec18822012-08-27 09:36:51 +0200872 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100873 temp = readl(sport->port.membase + UCR2);
874 temp &= ~(UCR2_TXEN);
875 writel(temp, sport->port.membase + UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200876 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100877
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100878 if (USE_IRDA(sport)) {
879 struct imxuart_platform_data *pdata;
880 pdata = sport->port.dev->platform_data;
881 if (pdata->irda_enable)
882 pdata->irda_enable(0);
883 }
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 /*
886 * Stop our timer.
887 */
888 del_timer_sync(&sport->timer);
889
890 /*
891 * Free the interrupts
892 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200893 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100894 if (!USE_IRDA(sport))
895 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200896 free_irq(sport->txirq, sport);
897 free_irq(sport->rxirq, sport);
898 } else
899 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 /*
902 * Disable all interrupts, port and break condition.
903 */
904
Xinyu Chen9ec18822012-08-27 09:36:51 +0200905 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100906 temp = readl(sport->port.membase + UCR1);
907 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100908 if (USE_IRDA(sport))
909 temp &= ~(UCR1_IREN);
910
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100911 writel(temp, sport->port.membase + UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200912 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +0800913
Huang Shijie1cf93e02013-06-28 13:39:42 +0800914 clk_disable_unprepare(sport->clk_per);
915 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918static void
Alan Cox606d0992006-12-08 02:38:45 -0800919imx_set_termios(struct uart_port *port, struct ktermios *termios,
920 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 struct imx_port *sport = (struct imx_port *)port;
923 unsigned long flags;
924 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
925 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca02009-06-11 14:52:23 +0100926 unsigned int div, ufcr;
927 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100928 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /*
931 * If we don't support modem control lines, don't allow
932 * these to be set.
933 */
934 if (0) {
935 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
936 termios->c_cflag |= CLOCAL;
937 }
938
939 /*
940 * We only support CS7 and CS8.
941 */
942 while ((termios->c_cflag & CSIZE) != CS7 &&
943 (termios->c_cflag & CSIZE) != CS8) {
944 termios->c_cflag &= ~CSIZE;
945 termios->c_cflag |= old_csize;
946 old_csize = CS8;
947 }
948
949 if ((termios->c_cflag & CSIZE) == CS8)
950 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
951 else
952 ucr2 = UCR2_SRST | UCR2_IRTS;
953
954 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +0530955 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100956 ucr2 &= ~UCR2_IRTS;
957 ucr2 |= UCR2_CTSC;
958 } else {
959 termios->c_cflag &= ~CRTSCTS;
960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962
963 if (termios->c_cflag & CSTOPB)
964 ucr2 |= UCR2_STPB;
965 if (termios->c_cflag & PARENB) {
966 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000967 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 ucr2 |= UCR2_PROE;
969 }
970
Eric Miao995234d2011-12-23 05:39:27 +0800971 del_timer_sync(&sport->timer);
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /*
974 * Ask the core to calculate the divisor for us.
975 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200976 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 quot = uart_get_divisor(port, baud);
978
979 spin_lock_irqsave(&sport->port.lock, flags);
980
981 sport->port.read_status_mask = 0;
982 if (termios->c_iflag & INPCK)
983 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
984 if (termios->c_iflag & (BRKINT | PARMRK))
985 sport->port.read_status_mask |= URXD_BRK;
986
987 /*
988 * Characters to ignore
989 */
990 sport->port.ignore_status_mask = 0;
991 if (termios->c_iflag & IGNPAR)
992 sport->port.ignore_status_mask |= URXD_PRERR;
993 if (termios->c_iflag & IGNBRK) {
994 sport->port.ignore_status_mask |= URXD_BRK;
995 /*
996 * If we're ignoring parity and break indicators,
997 * ignore overruns too (for real raw support).
998 */
999 if (termios->c_iflag & IGNPAR)
1000 sport->port.ignore_status_mask |= URXD_OVRRUN;
1001 }
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /*
1004 * Update the per-port timeout.
1005 */
1006 uart_update_timeout(port, termios->c_cflag, baud);
1007
1008 /*
1009 * disable interrupts and drain transmitter
1010 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001011 old_ucr1 = readl(sport->port.membase + UCR1);
1012 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1013 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Sachin Kamat82313e62013-01-07 10:25:02 +05301015 while (!(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 barrier();
1017
1018 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001019 old_txrxen = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +05301020 writel(old_txrxen & ~(UCR2_TXEN | UCR2_RXEN),
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001021 sport->port.membase + UCR2);
1022 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001024 if (USE_IRDA(sport)) {
1025 /*
1026 * use maximum available submodule frequency to
1027 * avoid missing short pulses due to low sampling rate
1028 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001029 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001030 } else {
Hubert Feurstein09bd00f2013-07-18 18:52:49 +02001031 /* custom-baudrate handling */
1032 div = sport->port.uartclk / (baud * 16);
1033 if (baud == 38400 && quot != div)
1034 baud = sport->port.uartclk / (quot * 16);
1035
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001036 div = sport->port.uartclk / (baud * 16);
1037 if (div > 7)
1038 div = 7;
1039 if (!div)
1040 div = 1;
1041 }
Sascha Hauer036bb152008-07-05 10:02:44 +02001042
Oskar Schirmer534fca02009-06-11 14:52:23 +01001043 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1044 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001045
Alan Coxeab4f5a2010-06-01 22:52:52 +02001046 tdiv64 = sport->port.uartclk;
1047 tdiv64 *= num;
1048 do_div(tdiv64, denom * 16 * div);
1049 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001050 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001051
Oskar Schirmer534fca02009-06-11 14:52:23 +01001052 num -= 1;
1053 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001054
1055 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001056 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Huang Shijie20ff2fe2013-05-30 14:07:12 +08001057 if (sport->dte_mode)
1058 ufcr |= UFCR_DCEDTE;
Sascha Hauer036bb152008-07-05 10:02:44 +02001059 writel(ufcr, sport->port.membase + UFCR);
1060
Oskar Schirmer534fca02009-06-11 14:52:23 +01001061 writel(num, sport->port.membase + UBIR);
1062 writel(denom, sport->port.membase + UBMR);
1063
Huang Shijiea496e622013-07-08 17:14:17 +08001064 if (!is_imx1_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001065 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001066 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001068 writel(old_ucr1, sport->port.membase + UCR1);
1069
1070 /* set the parity, stop bits and data size */
1071 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1074 imx_enable_ms(&sport->port);
1075
1076 spin_unlock_irqrestore(&sport->port.lock, flags);
1077}
1078
1079static const char *imx_type(struct uart_port *port)
1080{
1081 struct imx_port *sport = (struct imx_port *)port;
1082
1083 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1084}
1085
1086/*
1087 * Release the memory region(s) being used by 'port'.
1088 */
1089static void imx_release_port(struct uart_port *port)
1090{
Sascha Hauer3d454442008-04-17 08:47:32 +01001091 struct platform_device *pdev = to_platform_device(port->dev);
1092 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Sascha Hauer3d454442008-04-17 08:47:32 +01001094 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joe Perches28f65c112011-06-09 09:13:32 -07001095 release_mem_region(mmres->start, resource_size(mmres));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
1098/*
1099 * Request the memory region(s) being used by 'port'.
1100 */
1101static int imx_request_port(struct uart_port *port)
1102{
Sascha Hauer3d454442008-04-17 08:47:32 +01001103 struct platform_device *pdev = to_platform_device(port->dev);
1104 struct resource *mmres;
1105 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Sascha Hauer3d454442008-04-17 08:47:32 +01001107 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1108 if (!mmres)
1109 return -ENODEV;
1110
Joe Perches28f65c112011-06-09 09:13:32 -07001111 ret = request_mem_region(mmres->start, resource_size(mmres), "imx-uart");
Sascha Hauer3d454442008-04-17 08:47:32 +01001112
1113 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
1116/*
1117 * Configure/autoconfigure the port.
1118 */
1119static void imx_config_port(struct uart_port *port, int flags)
1120{
1121 struct imx_port *sport = (struct imx_port *)port;
1122
1123 if (flags & UART_CONFIG_TYPE &&
1124 imx_request_port(&sport->port) == 0)
1125 sport->port.type = PORT_IMX;
1126}
1127
1128/*
1129 * Verify the new serial_struct (for TIOCSSERIAL).
1130 * The only change we allow are to the flags and type, and
1131 * even then only between PORT_IMX and PORT_UNKNOWN
1132 */
1133static int
1134imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1135{
1136 struct imx_port *sport = (struct imx_port *)port;
1137 int ret = 0;
1138
1139 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1140 ret = -EINVAL;
1141 if (sport->port.irq != ser->irq)
1142 ret = -EINVAL;
1143 if (ser->io_type != UPIO_MEM)
1144 ret = -EINVAL;
1145 if (sport->port.uartclk / 16 != ser->baud_base)
1146 ret = -EINVAL;
1147 if ((void *)sport->port.mapbase != ser->iomem_base)
1148 ret = -EINVAL;
1149 if (sport->port.iobase != ser->port)
1150 ret = -EINVAL;
1151 if (ser->hub6 != 0)
1152 ret = -EINVAL;
1153 return ret;
1154}
1155
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001156#if defined(CONFIG_CONSOLE_POLL)
1157static int imx_poll_get_char(struct uart_port *port)
1158{
1159 struct imx_port_ucrs old_ucr;
1160 unsigned int status;
1161 unsigned char c;
1162
1163 /* save control registers */
1164 imx_port_ucrs_save(port, &old_ucr);
1165
1166 /* disable interrupts */
1167 writel(UCR1_UARTEN, port->membase + UCR1);
1168 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1169 port->membase + UCR2);
1170 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1171 port->membase + UCR3);
1172
1173 /* poll */
1174 do {
1175 status = readl(port->membase + USR2);
1176 } while (~status & USR2_RDR);
1177
1178 /* read */
1179 c = readl(port->membase + URXD0);
1180
1181 /* restore control registers */
1182 imx_port_ucrs_restore(port, &old_ucr);
1183
1184 return c;
1185}
1186
1187static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1188{
1189 struct imx_port_ucrs old_ucr;
1190 unsigned int status;
1191
1192 /* save control registers */
1193 imx_port_ucrs_save(port, &old_ucr);
1194
1195 /* disable interrupts */
1196 writel(UCR1_UARTEN, port->membase + UCR1);
1197 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1198 port->membase + UCR2);
1199 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1200 port->membase + UCR3);
1201
1202 /* drain */
1203 do {
1204 status = readl(port->membase + USR1);
1205 } while (~status & USR1_TRDY);
1206
1207 /* write */
1208 writel(c, port->membase + URTX0);
1209
1210 /* flush */
1211 do {
1212 status = readl(port->membase + USR2);
1213 } while (~status & USR2_TXDC);
1214
1215 /* restore control registers */
1216 imx_port_ucrs_restore(port, &old_ucr);
1217}
1218#endif
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220static struct uart_ops imx_pops = {
1221 .tx_empty = imx_tx_empty,
1222 .set_mctrl = imx_set_mctrl,
1223 .get_mctrl = imx_get_mctrl,
1224 .stop_tx = imx_stop_tx,
1225 .start_tx = imx_start_tx,
1226 .stop_rx = imx_stop_rx,
1227 .enable_ms = imx_enable_ms,
1228 .break_ctl = imx_break_ctl,
1229 .startup = imx_startup,
1230 .shutdown = imx_shutdown,
1231 .set_termios = imx_set_termios,
1232 .type = imx_type,
1233 .release_port = imx_release_port,
1234 .request_port = imx_request_port,
1235 .config_port = imx_config_port,
1236 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001237#if defined(CONFIG_CONSOLE_POLL)
1238 .poll_get_char = imx_poll_get_char,
1239 .poll_put_char = imx_poll_put_char,
1240#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241};
1242
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001243static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001246static void imx_console_putchar(struct uart_port *port, int ch)
1247{
1248 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001249
Shawn Guofe6b5402011-06-25 02:04:33 +08001250 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001251 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001252
1253 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001254}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256/*
1257 * Interrupts are disabled on entering
1258 */
1259static void
1260imx_console_write(struct console *co, const char *s, unsigned int count)
1261{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001262 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001263 struct imx_port_ucrs old_ucr;
1264 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001265 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001266 int locked = 1;
Huang Shijie1cf93e02013-06-28 13:39:42 +08001267 int retval;
1268
1269 retval = clk_enable(sport->clk_per);
1270 if (retval)
1271 return;
1272 retval = clk_enable(sport->clk_ipg);
1273 if (retval) {
1274 clk_disable(sport->clk_per);
1275 return;
1276 }
Xinyu Chen9ec18822012-08-27 09:36:51 +02001277
Thomas Gleixner677fe552013-02-14 21:01:06 +01001278 if (sport->port.sysrq)
1279 locked = 0;
1280 else if (oops_in_progress)
1281 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1282 else
1283 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001286 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001288 imx_port_ucrs_save(&sport->port, &old_ucr);
1289 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Shawn Guofe6b5402011-06-25 02:04:33 +08001291 if (is_imx1_uart(sport))
1292 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001293 ucr1 |= UCR1_UARTEN;
1294 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1295
1296 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001297
Dirk Behme0ad5a812011-12-22 09:57:52 +01001298 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Russell Kingd3587882006-03-20 20:00:09 +00001300 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 /*
1303 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001304 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001306 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Dirk Behme0ad5a812011-12-22 09:57:52 +01001308 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001309
Thomas Gleixner677fe552013-02-14 21:01:06 +01001310 if (locked)
1311 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie1cf93e02013-06-28 13:39:42 +08001312
1313 clk_disable(sport->clk_ipg);
1314 clk_disable(sport->clk_per);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317/*
1318 * If the port was already initialised (eg, by a boot loader),
1319 * try to determine the current setup.
1320 */
1321static void __init
1322imx_console_get_options(struct imx_port *sport, int *baud,
1323 int *parity, int *bits)
1324{
Sascha Hauer587897f2005-04-29 22:46:40 +01001325
Roel Kluin2e2eb502009-12-09 12:31:36 -08001326 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301328 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001329 unsigned int baud_raw;
1330 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001332 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 *parity = 'n';
1335 if (ucr2 & UCR2_PREN) {
1336 if (ucr2 & UCR2_PROE)
1337 *parity = 'o';
1338 else
1339 *parity = 'e';
1340 }
1341
1342 if (ucr2 & UCR2_WS)
1343 *bits = 8;
1344 else
1345 *bits = 7;
1346
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001347 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1348 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001350 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001351 if (ucfr_rfdiv == 6)
1352 ucfr_rfdiv = 7;
1353 else
1354 ucfr_rfdiv = 6 - ucfr_rfdiv;
1355
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001356 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001357 uartclk /= ucfr_rfdiv;
1358
1359 { /*
1360 * The next code provides exact computation of
1361 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1362 * without need of float support or long long division,
1363 * which would be required to prevent 32bit arithmetic overflow
1364 */
1365 unsigned int mul = ubir + 1;
1366 unsigned int div = 16 * (ubmr + 1);
1367 unsigned int rem = uartclk % div;
1368
1369 baud_raw = (uartclk / div) * mul;
1370 baud_raw += (rem * mul + div / 2) / div;
1371 *baud = (baud_raw + 50) / 100 * 100;
1372 }
1373
Sachin Kamat82313e62013-01-07 10:25:02 +05301374 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301375 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01001376 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378}
1379
1380static int __init
1381imx_console_setup(struct console *co, char *options)
1382{
1383 struct imx_port *sport;
1384 int baud = 9600;
1385 int bits = 8;
1386 int parity = 'n';
1387 int flow = 'n';
Huang Shijie1cf93e02013-06-28 13:39:42 +08001388 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 /*
1391 * Check whether an invalid uart number has been specified, and
1392 * if so, search for the first available port that does have
1393 * console support.
1394 */
1395 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1396 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001397 sport = imx_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05301398 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04001399 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Huang Shijie1cf93e02013-06-28 13:39:42 +08001401 /* For setting the registers, we only need to enable the ipg clock. */
1402 retval = clk_prepare_enable(sport->clk_ipg);
1403 if (retval)
1404 goto error_console;
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (options)
1407 uart_parse_options(options, &baud, &parity, &bits, &flow);
1408 else
1409 imx_console_get_options(sport, &baud, &parity, &bits);
1410
Sascha Hauer587897f2005-04-29 22:46:40 +01001411 imx_setup_ufcr(sport, 0);
1412
Huang Shijie1cf93e02013-06-28 13:39:42 +08001413 retval = uart_set_options(&sport->port, co, baud, parity, bits, flow);
1414
1415 clk_disable(sport->clk_ipg);
1416 if (retval) {
1417 clk_unprepare(sport->clk_ipg);
1418 goto error_console;
1419 }
1420
1421 retval = clk_prepare(sport->clk_per);
1422 if (retval)
1423 clk_disable_unprepare(sport->clk_ipg);
1424
1425error_console:
1426 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001429static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001431 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 .write = imx_console_write,
1433 .device = uart_console_device,
1434 .setup = imx_console_setup,
1435 .flags = CON_PRINTBUFFER,
1436 .index = -1,
1437 .data = &imx_reg,
1438};
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440#define IMX_CONSOLE &imx_console
1441#else
1442#define IMX_CONSOLE NULL
1443#endif
1444
1445static struct uart_driver imx_reg = {
1446 .owner = THIS_MODULE,
1447 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001448 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 .major = SERIAL_IMX_MAJOR,
1450 .minor = MINOR_START,
1451 .nr = ARRAY_SIZE(imx_ports),
1452 .cons = IMX_CONSOLE,
1453};
1454
Russell King3ae5eae2005-11-09 22:32:44 +00001455static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001457 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001458 unsigned int val;
1459
1460 /* enable wakeup from i.MX UART */
1461 val = readl(sport->port.membase + UCR3);
1462 val |= UCR3_AWAKEN;
1463 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Richard Zhao034dc4d2012-09-18 16:14:59 +08001465 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001467 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Russell King3ae5eae2005-11-09 22:32:44 +00001470static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001472 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001473 unsigned int val;
1474
1475 /* disable wakeup from i.MX UART */
1476 val = readl(sport->port.membase + UCR3);
1477 val &= ~UCR3_AWAKEN;
1478 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Richard Zhao034dc4d2012-09-18 16:14:59 +08001480 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
Shawn Guo22698aa2011-06-25 02:04:34 +08001485#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001486/*
1487 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1488 * could successfully get all information from dt or a negative errno.
1489 */
Shawn Guo22698aa2011-06-25 02:04:34 +08001490static int serial_imx_probe_dt(struct imx_port *sport,
1491 struct platform_device *pdev)
1492{
1493 struct device_node *np = pdev->dev.of_node;
1494 const struct of_device_id *of_id =
1495 of_match_device(imx_uart_dt_ids, &pdev->dev);
Shawn Guoff059672011-09-22 14:48:13 +08001496 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001497
1498 if (!np)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001499 /* no device tree device */
1500 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001501
Shawn Guoff059672011-09-22 14:48:13 +08001502 ret = of_alias_get_id(np, "serial");
1503 if (ret < 0) {
1504 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01001505 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08001506 }
1507 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001508
1509 if (of_get_property(np, "fsl,uart-has-rtscts", NULL))
1510 sport->have_rtscts = 1;
1511
1512 if (of_get_property(np, "fsl,irda-mode", NULL))
1513 sport->use_irda = 1;
1514
Huang Shijie20ff2fe2013-05-30 14:07:12 +08001515 if (of_get_property(np, "fsl,dte-mode", NULL))
1516 sport->dte_mode = 1;
1517
Shawn Guo22698aa2011-06-25 02:04:34 +08001518 sport->devdata = of_id->data;
1519
1520 return 0;
1521}
1522#else
1523static inline int serial_imx_probe_dt(struct imx_port *sport,
1524 struct platform_device *pdev)
1525{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001526 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001527}
1528#endif
1529
1530static void serial_imx_probe_pdata(struct imx_port *sport,
1531 struct platform_device *pdev)
1532{
1533 struct imxuart_platform_data *pdata = pdev->dev.platform_data;
1534
1535 sport->port.line = pdev->id;
1536 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
1537
1538 if (!pdata)
1539 return;
1540
1541 if (pdata->flags & IMXUART_HAVE_RTSCTS)
1542 sport->have_rtscts = 1;
1543
1544 if (pdata->flags & IMXUART_IRDA)
1545 sport->use_irda = 1;
1546}
1547
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001548static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001550 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001551 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001552 void __iomem *base;
1553 int ret = 0;
1554 struct resource *res;
Sascha Hauer5b802342006-05-04 14:07:42 +01001555
Sachin Kamat42d34192013-01-07 10:25:06 +05301556 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001557 if (!sport)
1558 return -ENOMEM;
1559
Shawn Guo22698aa2011-06-25 02:04:34 +08001560 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001561 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08001562 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001563 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05301564 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001565
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001566 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sachin Kamat42d34192013-01-07 10:25:06 +05301567 if (!res)
1568 return -ENODEV;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001569
Sachin Kamat42d34192013-01-07 10:25:06 +05301570 base = devm_ioremap(&pdev->dev, res->start, PAGE_SIZE);
1571 if (!base)
1572 return -ENOMEM;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001573
1574 sport->port.dev = &pdev->dev;
1575 sport->port.mapbase = res->start;
1576 sport->port.membase = base;
1577 sport->port.type = PORT_IMX,
1578 sport->port.iotype = UPIO_MEM;
1579 sport->port.irq = platform_get_irq(pdev, 0);
1580 sport->rxirq = platform_get_irq(pdev, 0);
1581 sport->txirq = platform_get_irq(pdev, 1);
1582 sport->rtsirq = platform_get_irq(pdev, 2);
1583 sport->port.fifosize = 32;
1584 sport->port.ops = &imx_pops;
1585 sport->port.flags = UPF_BOOT_AUTOCONF;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001586 init_timer(&sport->timer);
1587 sport->timer.function = imx_timeout;
1588 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001589
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001590 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1591 if (IS_ERR(sport->clk_ipg)) {
1592 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001593 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301594 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001595 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001596
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001597 sport->clk_per = devm_clk_get(&pdev->dev, "per");
1598 if (IS_ERR(sport->clk_per)) {
1599 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001600 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301601 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001602 }
1603
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001604 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001605
Shawn Guo22698aa2011-06-25 02:04:34 +08001606 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001607
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001608 pdata = pdev->dev.platform_data;
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001609 if (pdata && pdata->init) {
Darius Augulisc45e7d72008-09-02 10:19:29 +02001610 ret = pdata->init(pdev);
1611 if (ret)
Huang Shijie1cf93e02013-06-28 13:39:42 +08001612 return ret;
Darius Augulisc45e7d72008-09-02 10:19:29 +02001613 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001614
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001615 ret = uart_add_one_port(&imx_reg, &sport->port);
1616 if (ret)
1617 goto deinit;
Richard Zhao0a86a862012-09-18 16:14:58 +08001618 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001621deinit:
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001622 if (pdata && pdata->exit)
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001623 pdata->exit(pdev);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001624 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001627static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001629 struct imxuart_platform_data *pdata;
1630 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001632 pdata = pdev->dev.platform_data;
1633
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001634 uart_remove_one_port(&imx_reg, &sport->port);
1635
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001636 if (pdata && pdata->exit)
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001637 pdata->exit(pdev);
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return 0;
1640}
1641
Russell King3ae5eae2005-11-09 22:32:44 +00001642static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001643 .probe = serial_imx_probe,
1644 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 .suspend = serial_imx_suspend,
1647 .resume = serial_imx_resume,
Shawn Guofe6b5402011-06-25 02:04:33 +08001648 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00001649 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001650 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001651 .owner = THIS_MODULE,
Shawn Guo22698aa2011-06-25 02:04:34 +08001652 .of_match_table = imx_uart_dt_ids,
Russell King3ae5eae2005-11-09 22:32:44 +00001653 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654};
1655
1656static int __init imx_serial_init(void)
1657{
1658 int ret;
1659
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301660 pr_info("Serial: IMX driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 ret = uart_register_driver(&imx_reg);
1663 if (ret)
1664 return ret;
1665
Russell King3ae5eae2005-11-09 22:32:44 +00001666 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (ret != 0)
1668 uart_unregister_driver(&imx_reg);
1669
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01001670 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671}
1672
1673static void __exit imx_serial_exit(void)
1674{
Russell Kingc889b892005-11-21 17:05:21 +00001675 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001676 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677}
1678
1679module_init(imx_serial_init);
1680module_exit(imx_serial_exit);
1681
1682MODULE_AUTHOR("Sascha Hauer");
1683MODULE_DESCRIPTION("IMX generic serial port driver");
1684MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001685MODULE_ALIAS("platform:imx-uart");