blob: 0de7ed788631fdc695bb609f090bcc382ddd046a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <asm/io.h>
52#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010053#include <mach/imx-uart.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.*/
75#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)
Lucas De Marchi25985ed2011-03-30 22:57:33 -030081#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
Sascha Hauerff4bfb22007-04-26 08:26:13 +010082#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 */
Shawn Guofe6b5402011-06-25 02:04:33 +080092#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
Sascha Hauerff4bfb22007-04-26 08:26:13 +010093#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 */
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +0100105#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100106#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 */
Shawn Guofe6b5402011-06-25 02:04:33 +0800119#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100120#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
121#define UCR3_BPEN (1<<0) /* Preset registers enable */
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200122#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
123#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100124#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_RFDIV (7<<7) /* Reference freq divider mask */
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100135#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100136#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
137#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
138#define USR1_RTSS (1<<14) /* RTS pin status */
139#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
140#define USR1_RTSD (1<<12) /* RTS delta */
141#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
142#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
143#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
144#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
145#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
146#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
147#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
148#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
149#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
150#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
151#define USR2_IDLE (1<<12) /* Idle condition */
152#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
153#define USR2_WAKE (1<<7) /* Wake */
154#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
155#define USR2_TXDC (1<<3) /* Transmitter complete */
156#define USR2_BRCD (1<<2) /* Break condition */
157#define USR2_ORE (1<<1) /* Overrun error */
158#define USR2_RDR (1<<0) /* Recv data ready */
159#define UTS_FRCPERR (1<<13) /* Force parity error */
160#define UTS_LOOP (1<<12) /* Loop tx and rx */
161#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
162#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
163#define UTS_TXFULL (1<<4) /* TxFIFO full */
164#define UTS_RXFULL (1<<3) /* RxFIFO full */
165#define UTS_SOFTRST (1<<0) /* Software reset */
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/* We've been assigned a range on the "Low-density serial ports" major */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200168#define SERIAL_IMX_MAJOR 207
169#define MINOR_START 16
170#define DEV_NAME "ttymxc"
Sascha Hauer9d631b82008-12-18 11:08:55 +0100171#define MAX_INTERNAL_IRQ MXC_INTERNAL_IRQS
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;
Sascha Hauer5b802342006-05-04 14:07:42 +0100201 int txirq,rxirq,rtsirq;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100202 unsigned int have_rtscts:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100203 unsigned int use_irda:1;
204 unsigned int irda_inv_rx:1;
205 unsigned int irda_inv_tx:1;
206 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200207 struct clk *clk;
Shawn Guofe6b5402011-06-25 02:04:33 +0800208 struct imx_uart_data *devdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
Dirk Behme0ad5a812011-12-22 09:57:52 +0100211struct imx_port_ucrs {
212 unsigned int ucr1;
213 unsigned int ucr2;
214 unsigned int ucr3;
215};
216
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100217#ifdef CONFIG_IRDA
218#define USE_IRDA(sport) ((sport)->use_irda)
219#else
220#define USE_IRDA(sport) (0)
221#endif
222
Shawn Guofe6b5402011-06-25 02:04:33 +0800223static struct imx_uart_data imx_uart_devdata[] = {
224 [IMX1_UART] = {
225 .uts_reg = IMX1_UTS,
226 .devtype = IMX1_UART,
227 },
228 [IMX21_UART] = {
229 .uts_reg = IMX21_UTS,
230 .devtype = IMX21_UART,
231 },
232};
233
234static struct platform_device_id imx_uart_devtype[] = {
235 {
236 .name = "imx1-uart",
237 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
238 }, {
239 .name = "imx21-uart",
240 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
241 }, {
242 /* sentinel */
243 }
244};
245MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
246
Shawn Guo22698aa2011-06-25 02:04:34 +0800247static struct of_device_id imx_uart_dt_ids[] = {
248 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
249 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
250 { /* sentinel */ }
251};
252MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
253
Shawn Guofe6b5402011-06-25 02:04:33 +0800254static inline unsigned uts_reg(struct imx_port *sport)
255{
256 return sport->devdata->uts_reg;
257}
258
259static inline int is_imx1_uart(struct imx_port *sport)
260{
261 return sport->devdata->devtype == IMX1_UART;
262}
263
264static inline int is_imx21_uart(struct imx_port *sport)
265{
266 return sport->devdata->devtype == IMX21_UART;
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
Dirk Behme0ad5a812011-12-22 09:57:52 +0100270 * Save and restore functions for UCR1, UCR2 and UCR3 registers
271 */
272static void imx_port_ucrs_save(struct uart_port *port,
273 struct imx_port_ucrs *ucr)
274{
275 /* save control registers */
276 ucr->ucr1 = readl(port->membase + UCR1);
277 ucr->ucr2 = readl(port->membase + UCR2);
278 ucr->ucr3 = readl(port->membase + UCR3);
279}
280
281static void imx_port_ucrs_restore(struct uart_port *port,
282 struct imx_port_ucrs *ucr)
283{
284 /* restore control registers */
285 writel(ucr->ucr1, port->membase + UCR1);
286 writel(ucr->ucr2, port->membase + UCR2);
287 writel(ucr->ucr3, port->membase + UCR3);
288}
289
290/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * Handle any change of modem status signal since we were last called.
292 */
293static void imx_mctrl_check(struct imx_port *sport)
294{
295 unsigned int status, changed;
296
297 status = sport->port.ops->get_mctrl(&sport->port);
298 changed = status ^ sport->old_status;
299
300 if (changed == 0)
301 return;
302
303 sport->old_status = status;
304
305 if (changed & TIOCM_RI)
306 sport->port.icount.rng++;
307 if (changed & TIOCM_DSR)
308 sport->port.icount.dsr++;
309 if (changed & TIOCM_CAR)
310 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
311 if (changed & TIOCM_CTS)
312 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
313
Alan Coxbdc04e32009-09-19 13:13:31 -0700314 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317/*
318 * This is our per-port timeout handler, for checking the
319 * modem status signals.
320 */
321static void imx_timeout(unsigned long data)
322{
323 struct imx_port *sport = (struct imx_port *)data;
324 unsigned long flags;
325
Alan Coxebd2c8f2009-09-19 13:13:28 -0700326 if (sport->port.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 spin_lock_irqsave(&sport->port.lock, flags);
328 imx_mctrl_check(sport);
329 spin_unlock_irqrestore(&sport->port.lock, flags);
330
331 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
332 }
333}
334
335/*
336 * interrupts disabled on entry
337 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100338static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100341 unsigned long temp;
342
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100343 if (USE_IRDA(sport)) {
344 /* half duplex - wait for end of transmission */
345 int n = 256;
346 while ((--n > 0) &&
347 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
348 udelay(5);
349 barrier();
350 }
351 /*
352 * irda transceiver - wait a bit more to avoid
353 * cutoff, hardware dependent
354 */
355 udelay(sport->trcv_delay);
356
357 /*
358 * half duplex - reactivate receive mode,
359 * flush receive pipe echo crap
360 */
361 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
362 temp = readl(sport->port.membase + UCR1);
363 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
364 writel(temp, sport->port.membase + UCR1);
365
366 temp = readl(sport->port.membase + UCR4);
367 temp &= ~(UCR4_TCEN);
368 writel(temp, sport->port.membase + UCR4);
369
370 while (readl(sport->port.membase + URXD0) &
371 URXD_CHARRDY)
372 barrier();
373
374 temp = readl(sport->port.membase + UCR1);
375 temp |= UCR1_RRDYEN;
376 writel(temp, sport->port.membase + UCR1);
377
378 temp = readl(sport->port.membase + UCR4);
379 temp |= UCR4_DREN;
380 writel(temp, sport->port.membase + UCR4);
381 }
382 return;
383 }
384
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100385 temp = readl(sport->port.membase + UCR1);
386 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
389/*
390 * interrupts disabled on entry
391 */
392static void imx_stop_rx(struct uart_port *port)
393{
394 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100395 unsigned long temp;
396
397 temp = readl(sport->port.membase + UCR2);
398 writel(temp &~ UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
401/*
402 * Set the modem control timer to fire immediately.
403 */
404static void imx_enable_ms(struct uart_port *port)
405{
406 struct imx_port *sport = (struct imx_port *)port;
407
408 mod_timer(&sport->timer, jiffies);
409}
410
411static inline void imx_transmit_buffer(struct imx_port *sport)
412{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700413 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Volker Ernst4e4e6602010-10-13 11:03:57 +0200415 while (!uart_circ_empty(xmit) &&
Shawn Guofe6b5402011-06-25 02:04:33 +0800416 !(readl(sport->port.membase + uts_reg(sport))
417 & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /* send xmit->buf[xmit->tail]
419 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100420 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100421 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Fabian Godehardt977757312009-06-11 14:37:19 +0100425 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
426 uart_write_wakeup(&sport->port);
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100429 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
432/*
433 * interrupts disabled on entry
434 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100435static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100438 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100440 if (USE_IRDA(sport)) {
441 /* half duplex in IrDA mode; have to disable receive mode */
442 temp = readl(sport->port.membase + UCR4);
443 temp &= ~(UCR4_DREN);
444 writel(temp, sport->port.membase + UCR4);
445
446 temp = readl(sport->port.membase + UCR1);
447 temp &= ~(UCR1_RRDYEN);
448 writel(temp, sport->port.membase + UCR1);
449 }
450
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100451 temp = readl(sport->port.membase + UCR1);
452 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100454 if (USE_IRDA(sport)) {
455 temp = readl(sport->port.membase + UCR1);
456 temp |= UCR1_TRDYEN;
457 writel(temp, sport->port.membase + UCR1);
458
459 temp = readl(sport->port.membase + UCR4);
460 temp |= UCR4_TCEN;
461 writel(temp, sport->port.membase + UCR4);
462 }
463
Shawn Guofe6b5402011-06-25 02:04:33 +0800464 if (readl(sport->port.membase + uts_reg(sport)) & UTS_TXEMPTY)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100465 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
David Howells7d12e782006-10-05 14:55:46 +0100468static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100469{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800470 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200471 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100472 unsigned long flags;
473
474 spin_lock_irqsave(&sport->port.lock, flags);
475
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100476 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200477 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100478 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700479 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100480
481 spin_unlock_irqrestore(&sport->port.lock, flags);
482 return IRQ_HANDLED;
483}
484
David Howells7d12e782006-10-05 14:55:46 +0100485static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800487 struct imx_port *sport = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700488 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 unsigned long flags;
490
491 spin_lock_irqsave(&sport->port.lock,flags);
492 if (sport->port.x_char)
493 {
494 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100495 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 goto out;
497 }
498
499 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100500 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 goto out;
502 }
503
504 imx_transmit_buffer(sport);
505
506 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
507 uart_write_wakeup(&sport->port);
508
509out:
510 spin_unlock_irqrestore(&sport->port.lock,flags);
511 return IRQ_HANDLED;
512}
513
David Howells7d12e782006-10-05 14:55:46 +0100514static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 struct imx_port *sport = dev_id;
517 unsigned int rx,flg,ignored = 0;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700518 struct tty_struct *tty = sport->port.state->port.tty;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100519 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 spin_lock_irqsave(&sport->port.lock,flags);
522
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100523 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 flg = TTY_NORMAL;
525 sport->port.icount.rx++;
526
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100527 rx = readl(sport->port.membase + URXD0);
528
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100529 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100530 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100531 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100532 if (uart_handle_break(&sport->port))
533 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100536 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100537 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Hui Wang019dc9e2011-08-24 17:41:47 +0800539 if (unlikely(rx & URXD_ERR)) {
540 if (rx & URXD_BRK)
541 sport->port.icount.brk++;
542 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100543 sport->port.icount.parity++;
544 else if (rx & URXD_FRMERR)
545 sport->port.icount.frame++;
546 if (rx & URXD_OVRRUN)
547 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Sascha Hauer864eeed2008-04-17 08:39:22 +0100549 if (rx & sport->port.ignore_status_mask) {
550 if (++ignored > 100)
551 goto out;
552 continue;
553 }
554
555 rx &= sport->port.read_status_mask;
556
Hui Wang019dc9e2011-08-24 17:41:47 +0800557 if (rx & URXD_BRK)
558 flg = TTY_BREAK;
559 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100560 flg = TTY_PARITY;
561 else if (rx & URXD_FRMERR)
562 flg = TTY_FRAME;
563 if (rx & URXD_OVRRUN)
564 flg = TTY_OVERRUN;
565
566#ifdef SUPPORT_SYSRQ
567 sport->port.sysrq = 0;
568#endif
569 }
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 tty_insert_flip_char(tty, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574out:
575 spin_unlock_irqrestore(&sport->port.lock,flags);
576 tty_flip_buffer_push(tty);
577 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200580static irqreturn_t imx_int(int irq, void *dev_id)
581{
582 struct imx_port *sport = dev_id;
583 unsigned int sts;
584
585 sts = readl(sport->port.membase + USR1);
586
587 if (sts & USR1_RRDY)
588 imx_rxint(irq, dev_id);
589
590 if (sts & USR1_TRDY &&
591 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
592 imx_txint(irq, dev_id);
593
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200594 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200595 imx_rtsint(irq, dev_id);
596
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200597 if (sts & USR1_AWAKE)
598 writel(USR1_AWAKE, sport->port.membase + USR1);
599
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200600 return IRQ_HANDLED;
601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603/*
604 * Return TIOCSER_TEMT when transmitter is not busy.
605 */
606static unsigned int imx_tx_empty(struct uart_port *port)
607{
608 struct imx_port *sport = (struct imx_port *)port;
609
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100610 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100613/*
614 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
615 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616static unsigned int imx_get_mctrl(struct uart_port *port)
617{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100618 struct imx_port *sport = (struct imx_port *)port;
619 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100620
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100621 if (readl(sport->port.membase + USR1) & USR1_RTSS)
622 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100623
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100624 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
625 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100626
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100627 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
631{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100632 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100633 unsigned long temp;
634
635 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100636
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100637 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100638 temp |= UCR2_CTS;
639
640 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643/*
644 * Interrupts always disabled.
645 */
646static void imx_break_ctl(struct uart_port *port, int break_state)
647{
648 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100649 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 spin_lock_irqsave(&sport->port.lock, flags);
652
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100653 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if ( break_state != 0 )
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100656 temp |= UCR1_SNDBRK;
657
658 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 spin_unlock_irqrestore(&sport->port.lock, flags);
661}
662
663#define TXTL 2 /* reset default */
664#define RXTL 1 /* reset default */
665
Sascha Hauer587897f2005-04-29 22:46:40 +0100666static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
667{
668 unsigned int val;
669 unsigned int ufcr_rfdiv;
670
671 /* set receiver / transmitter trigger level.
672 * RFDIV is set such way to satisfy requested uartclk value
673 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100674 val = TXTL << 10 | RXTL;
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200675 ufcr_rfdiv = (clk_get_rate(sport->clk) + sport->port.uartclk / 2)
676 / sport->port.uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +0100677
678 if(!ufcr_rfdiv)
679 ufcr_rfdiv = 1;
680
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100681 val |= UFCR_RFDIV_REG(ufcr_rfdiv);
Sascha Hauer587897f2005-04-29 22:46:40 +0100682
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100683 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100684
685 return 0;
686}
687
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200688/* half the RX buffer size */
689#define CTSTL 16
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691static int imx_startup(struct uart_port *port)
692{
693 struct imx_port *sport = (struct imx_port *)port;
694 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100695 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Sascha Hauer587897f2005-04-29 22:46:40 +0100697 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 /* disable the DREN bit (Data Ready interrupt enable) before
700 * requesting IRQs
701 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100702 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100703
704 if (USE_IRDA(sport))
705 temp |= UCR4_IRSC;
706
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200707 /* set the trigger level for CTS */
708 temp &= ~(UCR4_CTSTL_MASK<< UCR4_CTSTL_SHF);
709 temp |= CTSTL<< UCR4_CTSTL_SHF;
710
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100711 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100713 if (USE_IRDA(sport)) {
714 /* reset fifo's and state machines */
715 int i = 100;
716 temp = readl(sport->port.membase + UCR2);
717 temp &= ~UCR2_SRST;
718 writel(temp, sport->port.membase + UCR2);
719 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
720 (--i > 0)) {
721 udelay(1);
722 }
723 }
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200726 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
727 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200729 if (sport->txirq > 0) {
730 retval = request_irq(sport->rxirq, imx_rxint, 0,
731 DRIVER_NAME, sport);
732 if (retval)
733 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200735 retval = request_irq(sport->txirq, imx_txint, 0,
736 DRIVER_NAME, sport);
737 if (retval)
738 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100740 /* do not use RTS IRQ on IrDA */
741 if (!USE_IRDA(sport)) {
742 retval = request_irq(sport->rtsirq, imx_rtsint,
743 (sport->rtsirq < MAX_INTERNAL_IRQ) ? 0 :
744 IRQF_TRIGGER_FALLING |
745 IRQF_TRIGGER_RISING,
746 DRIVER_NAME, sport);
747 if (retval)
748 goto error_out3;
749 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200750 } else {
751 retval = request_irq(sport->port.irq, imx_int, 0,
752 DRIVER_NAME, sport);
753 if (retval) {
754 free_irq(sport->port.irq, sport);
755 goto error_out1;
756 }
757 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100758
Xinyu Chen86236252012-08-27 09:36:51 +0200759 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /*
761 * Finally, clear and enable interrupts
762 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100763 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100765 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100766 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100767
768 if (USE_IRDA(sport)) {
769 temp |= UCR1_IREN;
770 temp &= ~(UCR1_RTSDEN);
771 }
772
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100773 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100775 temp = readl(sport->port.membase + UCR2);
776 temp |= (UCR2_RXEN | UCR2_TXEN);
777 writel(temp, sport->port.membase + UCR2);
778
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100779 if (USE_IRDA(sport)) {
780 /* clear RX-FIFO */
781 int i = 64;
782 while ((--i > 0) &&
783 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
784 barrier();
785 }
786 }
787
Shawn Guofe6b5402011-06-25 02:04:33 +0800788 if (is_imx21_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200789 temp = readl(sport->port.membase + UCR3);
Shawn Guofe6b5402011-06-25 02:04:33 +0800790 temp |= IMX21_UCR3_RXDMUXSEL;
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200791 writel(temp, sport->port.membase + UCR3);
792 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200793
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100794 if (USE_IRDA(sport)) {
795 temp = readl(sport->port.membase + UCR4);
796 if (sport->irda_inv_rx)
797 temp |= UCR4_INVR;
798 else
799 temp &= ~(UCR4_INVR);
800 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
801
802 temp = readl(sport->port.membase + UCR3);
803 if (sport->irda_inv_tx)
804 temp |= UCR3_INVT;
805 else
806 temp &= ~(UCR3_INVT);
807 writel(temp, sport->port.membase + UCR3);
808 }
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /*
811 * Enable modem status interrupts
812 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 imx_enable_ms(&sport->port);
814 spin_unlock_irqrestore(&sport->port.lock,flags);
815
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100816 if (USE_IRDA(sport)) {
817 struct imxuart_platform_data *pdata;
818 pdata = sport->port.dev->platform_data;
819 sport->irda_inv_rx = pdata->irda_inv_rx;
820 sport->irda_inv_tx = pdata->irda_inv_tx;
821 sport->trcv_delay = pdata->transceiver_delay;
822 if (pdata->irda_enable)
823 pdata->irda_enable(1);
824 }
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return 0;
827
Sascha Hauerceca6292005-10-12 19:58:08 +0100828error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200829 if (sport->txirq)
830 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200832 if (sport->rxirq)
833 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100834error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return retval;
836}
837
838static void imx_shutdown(struct uart_port *port)
839{
840 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100841 unsigned long temp;
Xinyu Chen86236252012-08-27 09:36:51 +0200842 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Xinyu Chen86236252012-08-27 09:36:51 +0200844 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100845 temp = readl(sport->port.membase + UCR2);
846 temp &= ~(UCR2_TXEN);
847 writel(temp, sport->port.membase + UCR2);
Xinyu Chen86236252012-08-27 09:36:51 +0200848 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100849
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100850 if (USE_IRDA(sport)) {
851 struct imxuart_platform_data *pdata;
852 pdata = sport->port.dev->platform_data;
853 if (pdata->irda_enable)
854 pdata->irda_enable(0);
855 }
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /*
858 * Stop our timer.
859 */
860 del_timer_sync(&sport->timer);
861
862 /*
863 * Free the interrupts
864 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200865 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100866 if (!USE_IRDA(sport))
867 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200868 free_irq(sport->txirq, sport);
869 free_irq(sport->rxirq, sport);
870 } else
871 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 /*
874 * Disable all interrupts, port and break condition.
875 */
876
Xinyu Chen86236252012-08-27 09:36:51 +0200877 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100878 temp = readl(sport->port.membase + UCR1);
879 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100880 if (USE_IRDA(sport))
881 temp &= ~(UCR1_IREN);
882
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100883 writel(temp, sport->port.membase + UCR1);
Xinyu Chen86236252012-08-27 09:36:51 +0200884 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887static void
Alan Cox606d0992006-12-08 02:38:45 -0800888imx_set_termios(struct uart_port *port, struct ktermios *termios,
889 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
891 struct imx_port *sport = (struct imx_port *)port;
892 unsigned long flags;
893 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
894 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca02009-06-11 14:52:23 +0100895 unsigned int div, ufcr;
896 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100897 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 /*
900 * If we don't support modem control lines, don't allow
901 * these to be set.
902 */
903 if (0) {
904 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
905 termios->c_cflag |= CLOCAL;
906 }
907
908 /*
909 * We only support CS7 and CS8.
910 */
911 while ((termios->c_cflag & CSIZE) != CS7 &&
912 (termios->c_cflag & CSIZE) != CS8) {
913 termios->c_cflag &= ~CSIZE;
914 termios->c_cflag |= old_csize;
915 old_csize = CS8;
916 }
917
918 if ((termios->c_cflag & CSIZE) == CS8)
919 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
920 else
921 ucr2 = UCR2_SRST | UCR2_IRTS;
922
923 if (termios->c_cflag & CRTSCTS) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100924 if( sport->have_rtscts ) {
925 ucr2 &= ~UCR2_IRTS;
926 ucr2 |= UCR2_CTSC;
927 } else {
928 termios->c_cflag &= ~CRTSCTS;
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
932 if (termios->c_cflag & CSTOPB)
933 ucr2 |= UCR2_STPB;
934 if (termios->c_cflag & PARENB) {
935 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000936 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 ucr2 |= UCR2_PROE;
938 }
939
Eric Miao995234d2011-12-23 05:39:27 +0800940 del_timer_sync(&sport->timer);
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /*
943 * Ask the core to calculate the divisor for us.
944 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200945 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 quot = uart_get_divisor(port, baud);
947
948 spin_lock_irqsave(&sport->port.lock, flags);
949
950 sport->port.read_status_mask = 0;
951 if (termios->c_iflag & INPCK)
952 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
953 if (termios->c_iflag & (BRKINT | PARMRK))
954 sport->port.read_status_mask |= URXD_BRK;
955
956 /*
957 * Characters to ignore
958 */
959 sport->port.ignore_status_mask = 0;
960 if (termios->c_iflag & IGNPAR)
961 sport->port.ignore_status_mask |= URXD_PRERR;
962 if (termios->c_iflag & IGNBRK) {
963 sport->port.ignore_status_mask |= URXD_BRK;
964 /*
965 * If we're ignoring parity and break indicators,
966 * ignore overruns too (for real raw support).
967 */
968 if (termios->c_iflag & IGNPAR)
969 sport->port.ignore_status_mask |= URXD_OVRRUN;
970 }
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 /*
973 * Update the per-port timeout.
974 */
975 uart_update_timeout(port, termios->c_cflag, baud);
976
977 /*
978 * disable interrupts and drain transmitter
979 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100980 old_ucr1 = readl(sport->port.membase + UCR1);
981 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
982 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100984 while ( !(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 barrier();
986
987 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100988 old_txrxen = readl(sport->port.membase + UCR2);
989 writel(old_txrxen & ~( UCR2_TXEN | UCR2_RXEN),
990 sport->port.membase + UCR2);
991 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100993 if (USE_IRDA(sport)) {
994 /*
995 * use maximum available submodule frequency to
996 * avoid missing short pulses due to low sampling rate
997 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200998 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100999 } else {
1000 div = sport->port.uartclk / (baud * 16);
1001 if (div > 7)
1002 div = 7;
1003 if (!div)
1004 div = 1;
1005 }
Sascha Hauer036bb152008-07-05 10:02:44 +02001006
Oskar Schirmer534fca02009-06-11 14:52:23 +01001007 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1008 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001009
Alan Coxeab4f5a2010-06-01 22:52:52 +02001010 tdiv64 = sport->port.uartclk;
1011 tdiv64 *= num;
1012 do_div(tdiv64, denom * 16 * div);
1013 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001014 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001015
Oskar Schirmer534fca02009-06-11 14:52:23 +01001016 num -= 1;
1017 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001018
1019 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001020 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +02001021 writel(ufcr, sport->port.membase + UFCR);
1022
Oskar Schirmer534fca02009-06-11 14:52:23 +01001023 writel(num, sport->port.membase + UBIR);
1024 writel(denom, sport->port.membase + UBMR);
1025
Shawn Guofe6b5402011-06-25 02:04:33 +08001026 if (is_imx21_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001027 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001028 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001030 writel(old_ucr1, sport->port.membase + UCR1);
1031
1032 /* set the parity, stop bits and data size */
1033 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1036 imx_enable_ms(&sport->port);
1037
1038 spin_unlock_irqrestore(&sport->port.lock, flags);
1039}
1040
1041static const char *imx_type(struct uart_port *port)
1042{
1043 struct imx_port *sport = (struct imx_port *)port;
1044
1045 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1046}
1047
1048/*
1049 * Release the memory region(s) being used by 'port'.
1050 */
1051static void imx_release_port(struct uart_port *port)
1052{
Sascha Hauer3d454442008-04-17 08:47:32 +01001053 struct platform_device *pdev = to_platform_device(port->dev);
1054 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Sascha Hauer3d454442008-04-17 08:47:32 +01001056 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joe Perches28f65c12011-06-09 09:13:32 -07001057 release_mem_region(mmres->start, resource_size(mmres));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
1060/*
1061 * Request the memory region(s) being used by 'port'.
1062 */
1063static int imx_request_port(struct uart_port *port)
1064{
Sascha Hauer3d454442008-04-17 08:47:32 +01001065 struct platform_device *pdev = to_platform_device(port->dev);
1066 struct resource *mmres;
1067 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Sascha Hauer3d454442008-04-17 08:47:32 +01001069 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1070 if (!mmres)
1071 return -ENODEV;
1072
Joe Perches28f65c12011-06-09 09:13:32 -07001073 ret = request_mem_region(mmres->start, resource_size(mmres), "imx-uart");
Sascha Hauer3d454442008-04-17 08:47:32 +01001074
1075 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
1078/*
1079 * Configure/autoconfigure the port.
1080 */
1081static void imx_config_port(struct uart_port *port, int flags)
1082{
1083 struct imx_port *sport = (struct imx_port *)port;
1084
1085 if (flags & UART_CONFIG_TYPE &&
1086 imx_request_port(&sport->port) == 0)
1087 sport->port.type = PORT_IMX;
1088}
1089
1090/*
1091 * Verify the new serial_struct (for TIOCSSERIAL).
1092 * The only change we allow are to the flags and type, and
1093 * even then only between PORT_IMX and PORT_UNKNOWN
1094 */
1095static int
1096imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1097{
1098 struct imx_port *sport = (struct imx_port *)port;
1099 int ret = 0;
1100
1101 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1102 ret = -EINVAL;
1103 if (sport->port.irq != ser->irq)
1104 ret = -EINVAL;
1105 if (ser->io_type != UPIO_MEM)
1106 ret = -EINVAL;
1107 if (sport->port.uartclk / 16 != ser->baud_base)
1108 ret = -EINVAL;
1109 if ((void *)sport->port.mapbase != ser->iomem_base)
1110 ret = -EINVAL;
1111 if (sport->port.iobase != ser->port)
1112 ret = -EINVAL;
1113 if (ser->hub6 != 0)
1114 ret = -EINVAL;
1115 return ret;
1116}
1117
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001118#if defined(CONFIG_CONSOLE_POLL)
1119static int imx_poll_get_char(struct uart_port *port)
1120{
1121 struct imx_port_ucrs old_ucr;
1122 unsigned int status;
1123 unsigned char c;
1124
1125 /* save control registers */
1126 imx_port_ucrs_save(port, &old_ucr);
1127
1128 /* disable interrupts */
1129 writel(UCR1_UARTEN, port->membase + UCR1);
1130 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1131 port->membase + UCR2);
1132 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1133 port->membase + UCR3);
1134
1135 /* poll */
1136 do {
1137 status = readl(port->membase + USR2);
1138 } while (~status & USR2_RDR);
1139
1140 /* read */
1141 c = readl(port->membase + URXD0);
1142
1143 /* restore control registers */
1144 imx_port_ucrs_restore(port, &old_ucr);
1145
1146 return c;
1147}
1148
1149static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1150{
1151 struct imx_port_ucrs old_ucr;
1152 unsigned int status;
1153
1154 /* save control registers */
1155 imx_port_ucrs_save(port, &old_ucr);
1156
1157 /* disable interrupts */
1158 writel(UCR1_UARTEN, port->membase + UCR1);
1159 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1160 port->membase + UCR2);
1161 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1162 port->membase + UCR3);
1163
1164 /* drain */
1165 do {
1166 status = readl(port->membase + USR1);
1167 } while (~status & USR1_TRDY);
1168
1169 /* write */
1170 writel(c, port->membase + URTX0);
1171
1172 /* flush */
1173 do {
1174 status = readl(port->membase + USR2);
1175 } while (~status & USR2_TXDC);
1176
1177 /* restore control registers */
1178 imx_port_ucrs_restore(port, &old_ucr);
1179}
1180#endif
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182static struct uart_ops imx_pops = {
1183 .tx_empty = imx_tx_empty,
1184 .set_mctrl = imx_set_mctrl,
1185 .get_mctrl = imx_get_mctrl,
1186 .stop_tx = imx_stop_tx,
1187 .start_tx = imx_start_tx,
1188 .stop_rx = imx_stop_rx,
1189 .enable_ms = imx_enable_ms,
1190 .break_ctl = imx_break_ctl,
1191 .startup = imx_startup,
1192 .shutdown = imx_shutdown,
1193 .set_termios = imx_set_termios,
1194 .type = imx_type,
1195 .release_port = imx_release_port,
1196 .request_port = imx_request_port,
1197 .config_port = imx_config_port,
1198 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001199#if defined(CONFIG_CONSOLE_POLL)
1200 .poll_get_char = imx_poll_get_char,
1201 .poll_put_char = imx_poll_put_char,
1202#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203};
1204
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001205static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001208static void imx_console_putchar(struct uart_port *port, int ch)
1209{
1210 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001211
Shawn Guofe6b5402011-06-25 02:04:33 +08001212 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001213 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001214
1215 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001216}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218/*
1219 * Interrupts are disabled on entering
1220 */
1221static void
1222imx_console_write(struct console *co, const char *s, unsigned int count)
1223{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001224 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001225 struct imx_port_ucrs old_ucr;
1226 unsigned int ucr1;
Xinyu Chen86236252012-08-27 09:36:51 +02001227 unsigned long flags;
1228
1229 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001232 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001234 imx_port_ucrs_save(&sport->port, &old_ucr);
1235 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Shawn Guofe6b5402011-06-25 02:04:33 +08001237 if (is_imx1_uart(sport))
1238 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001239 ucr1 |= UCR1_UARTEN;
1240 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1241
1242 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001243
Dirk Behme0ad5a812011-12-22 09:57:52 +01001244 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Russell Kingd3587882006-03-20 20:00:09 +00001246 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 /*
1249 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001250 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001252 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Dirk Behme0ad5a812011-12-22 09:57:52 +01001254 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen86236252012-08-27 09:36:51 +02001255
1256 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259/*
1260 * If the port was already initialised (eg, by a boot loader),
1261 * try to determine the current setup.
1262 */
1263static void __init
1264imx_console_get_options(struct imx_port *sport, int *baud,
1265 int *parity, int *bits)
1266{
Sascha Hauer587897f2005-04-29 22:46:40 +01001267
Roel Kluin2e2eb502009-12-09 12:31:36 -08001268 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /* ok, the port was enabled */
1270 unsigned int ucr2, ubir,ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001271 unsigned int baud_raw;
1272 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001274 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 *parity = 'n';
1277 if (ucr2 & UCR2_PREN) {
1278 if (ucr2 & UCR2_PROE)
1279 *parity = 'o';
1280 else
1281 *parity = 'e';
1282 }
1283
1284 if (ucr2 & UCR2_WS)
1285 *bits = 8;
1286 else
1287 *bits = 7;
1288
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001289 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1290 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001292 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001293 if (ucfr_rfdiv == 6)
1294 ucfr_rfdiv = 7;
1295 else
1296 ucfr_rfdiv = 6 - ucfr_rfdiv;
1297
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001298 uartclk = clk_get_rate(sport->clk);
Sascha Hauer587897f2005-04-29 22:46:40 +01001299 uartclk /= ucfr_rfdiv;
1300
1301 { /*
1302 * The next code provides exact computation of
1303 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1304 * without need of float support or long long division,
1305 * which would be required to prevent 32bit arithmetic overflow
1306 */
1307 unsigned int mul = ubir + 1;
1308 unsigned int div = 16 * (ubmr + 1);
1309 unsigned int rem = uartclk % div;
1310
1311 baud_raw = (uartclk / div) * mul;
1312 baud_raw += (rem * mul + div / 2) / div;
1313 *baud = (baud_raw + 50) / 100 * 100;
1314 }
1315
1316 if(*baud != baud_raw)
1317 printk(KERN_INFO "Serial: Console IMX rounded baud rate from %d to %d\n",
1318 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320}
1321
1322static int __init
1323imx_console_setup(struct console *co, char *options)
1324{
1325 struct imx_port *sport;
1326 int baud = 9600;
1327 int bits = 8;
1328 int parity = 'n';
1329 int flow = 'n';
1330
1331 /*
1332 * Check whether an invalid uart number has been specified, and
1333 * if so, search for the first available port that does have
1334 * console support.
1335 */
1336 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1337 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001338 sport = imx_ports[co->index];
Eric Lammertse76afc42009-05-19 20:53:20 -04001339 if(sport == NULL)
1340 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 if (options)
1343 uart_parse_options(options, &baud, &parity, &bits, &flow);
1344 else
1345 imx_console_get_options(sport, &baud, &parity, &bits);
1346
Sascha Hauer587897f2005-04-29 22:46:40 +01001347 imx_setup_ufcr(sport, 0);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1350}
1351
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001352static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001354 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 .write = imx_console_write,
1356 .device = uart_console_device,
1357 .setup = imx_console_setup,
1358 .flags = CON_PRINTBUFFER,
1359 .index = -1,
1360 .data = &imx_reg,
1361};
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363#define IMX_CONSOLE &imx_console
1364#else
1365#define IMX_CONSOLE NULL
1366#endif
1367
1368static struct uart_driver imx_reg = {
1369 .owner = THIS_MODULE,
1370 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001371 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 .major = SERIAL_IMX_MAJOR,
1373 .minor = MINOR_START,
1374 .nr = ARRAY_SIZE(imx_ports),
1375 .cons = IMX_CONSOLE,
1376};
1377
Russell King3ae5eae2005-11-09 22:32:44 +00001378static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001380 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001381 unsigned int val;
1382
1383 /* enable wakeup from i.MX UART */
1384 val = readl(sport->port.membase + UCR3);
1385 val |= UCR3_AWAKEN;
1386 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001388 if (sport)
1389 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
Russell King3ae5eae2005-11-09 22:32:44 +00001394static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001396 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001397 unsigned int val;
1398
1399 /* disable wakeup from i.MX UART */
1400 val = readl(sport->port.membase + UCR3);
1401 val &= ~UCR3_AWAKEN;
1402 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001404 if (sport)
1405 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001407 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Shawn Guo22698aa2011-06-25 02:04:34 +08001410#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001411/*
1412 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1413 * could successfully get all information from dt or a negative errno.
1414 */
Shawn Guo22698aa2011-06-25 02:04:34 +08001415static int serial_imx_probe_dt(struct imx_port *sport,
1416 struct platform_device *pdev)
1417{
1418 struct device_node *np = pdev->dev.of_node;
1419 const struct of_device_id *of_id =
1420 of_match_device(imx_uart_dt_ids, &pdev->dev);
Shawn Guoff059672011-09-22 14:48:13 +08001421 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001422
1423 if (!np)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001424 /* no device tree device */
1425 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001426
Shawn Guoff059672011-09-22 14:48:13 +08001427 ret = of_alias_get_id(np, "serial");
1428 if (ret < 0) {
1429 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01001430 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08001431 }
1432 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001433
1434 if (of_get_property(np, "fsl,uart-has-rtscts", NULL))
1435 sport->have_rtscts = 1;
1436
1437 if (of_get_property(np, "fsl,irda-mode", NULL))
1438 sport->use_irda = 1;
1439
1440 sport->devdata = of_id->data;
1441
1442 return 0;
1443}
1444#else
1445static inline int serial_imx_probe_dt(struct imx_port *sport,
1446 struct platform_device *pdev)
1447{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001448 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001449}
1450#endif
1451
1452static void serial_imx_probe_pdata(struct imx_port *sport,
1453 struct platform_device *pdev)
1454{
1455 struct imxuart_platform_data *pdata = pdev->dev.platform_data;
1456
1457 sport->port.line = pdev->id;
1458 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
1459
1460 if (!pdata)
1461 return;
1462
1463 if (pdata->flags & IMXUART_HAVE_RTSCTS)
1464 sport->have_rtscts = 1;
1465
1466 if (pdata->flags & IMXUART_IRDA)
1467 sport->use_irda = 1;
1468}
1469
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001470static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001472 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001473 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001474 void __iomem *base;
1475 int ret = 0;
1476 struct resource *res;
Sascha Hauer5b802342006-05-04 14:07:42 +01001477
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001478 sport = kzalloc(sizeof(*sport), GFP_KERNEL);
1479 if (!sport)
1480 return -ENOMEM;
1481
Shawn Guo22698aa2011-06-25 02:04:34 +08001482 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001483 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08001484 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001485 else if (ret < 0)
1486 goto free;
Shawn Guo22698aa2011-06-25 02:04:34 +08001487
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001488 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1489 if (!res) {
1490 ret = -ENODEV;
1491 goto free;
1492 }
1493
1494 base = ioremap(res->start, PAGE_SIZE);
1495 if (!base) {
1496 ret = -ENOMEM;
1497 goto free;
1498 }
1499
1500 sport->port.dev = &pdev->dev;
1501 sport->port.mapbase = res->start;
1502 sport->port.membase = base;
1503 sport->port.type = PORT_IMX,
1504 sport->port.iotype = UPIO_MEM;
1505 sport->port.irq = platform_get_irq(pdev, 0);
1506 sport->rxirq = platform_get_irq(pdev, 0);
1507 sport->txirq = platform_get_irq(pdev, 1);
1508 sport->rtsirq = platform_get_irq(pdev, 2);
1509 sport->port.fifosize = 32;
1510 sport->port.ops = &imx_pops;
1511 sport->port.flags = UPF_BOOT_AUTOCONF;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001512 init_timer(&sport->timer);
1513 sport->timer.function = imx_timeout;
1514 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001515
Sascha Hauere65fb002009-02-16 14:29:10 +01001516 sport->clk = clk_get(&pdev->dev, "uart");
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001517 if (IS_ERR(sport->clk)) {
1518 ret = PTR_ERR(sport->clk);
1519 goto unmap;
1520 }
Richard Zhaoef5ca192011-11-15 14:48:06 +08001521 clk_prepare_enable(sport->clk);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001522
1523 sport->port.uartclk = clk_get_rate(sport->clk);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001524
Shawn Guo22698aa2011-06-25 02:04:34 +08001525 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001526
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001527 pdata = pdev->dev.platform_data;
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001528 if (pdata && pdata->init) {
Darius Augulisc45e7d72008-09-02 10:19:29 +02001529 ret = pdata->init(pdev);
1530 if (ret)
1531 goto clkput;
1532 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001533
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001534 ret = uart_add_one_port(&imx_reg, &sport->port);
1535 if (ret)
1536 goto deinit;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001537 platform_set_drvdata(pdev, &sport->port);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001540deinit:
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001541 if (pdata && pdata->exit)
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001542 pdata->exit(pdev);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001543clkput:
Richard Zhaoef5ca192011-11-15 14:48:06 +08001544 clk_disable_unprepare(sport->clk);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001545 clk_put(sport->clk);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001546unmap:
1547 iounmap(sport->port.membase);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001548free:
1549 kfree(sport);
1550
1551 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001554static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001556 struct imxuart_platform_data *pdata;
1557 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001559 pdata = pdev->dev.platform_data;
1560
1561 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001563 if (sport) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 uart_remove_one_port(&imx_reg, &sport->port);
Richard Zhaoef5ca192011-11-15 14:48:06 +08001565 clk_disable_unprepare(sport->clk);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001566 clk_put(sport->clk);
1567 }
1568
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001569 if (pdata && pdata->exit)
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001570 pdata->exit(pdev);
1571
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001572 iounmap(sport->port.membase);
1573 kfree(sport);
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return 0;
1576}
1577
Russell King3ae5eae2005-11-09 22:32:44 +00001578static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001579 .probe = serial_imx_probe,
1580 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 .suspend = serial_imx_suspend,
1583 .resume = serial_imx_resume,
Shawn Guofe6b5402011-06-25 02:04:33 +08001584 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00001585 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001586 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001587 .owner = THIS_MODULE,
Shawn Guo22698aa2011-06-25 02:04:34 +08001588 .of_match_table = imx_uart_dt_ids,
Russell King3ae5eae2005-11-09 22:32:44 +00001589 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590};
1591
1592static int __init imx_serial_init(void)
1593{
1594 int ret;
1595
1596 printk(KERN_INFO "Serial: IMX driver\n");
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 ret = uart_register_driver(&imx_reg);
1599 if (ret)
1600 return ret;
1601
Russell King3ae5eae2005-11-09 22:32:44 +00001602 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (ret != 0)
1604 uart_unregister_driver(&imx_reg);
1605
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01001606 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
1609static void __exit imx_serial_exit(void)
1610{
Russell Kingc889b892005-11-21 17:05:21 +00001611 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001612 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
1615module_init(imx_serial_init);
1616module_exit(imx_serial_exit);
1617
1618MODULE_AUTHOR("Sascha Hauer");
1619MODULE_DESCRIPTION("IMX generic serial port driver");
1620MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001621MODULE_ALIAS("platform:imx-uart");