blob: 8c79e8c2fd4e7d79569bec10f4d49b1559b484c2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/serial/imx.c
3 *
4 * Driver for Motorola IMX serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * Author: Sascha Hauer <sascha@saschahauer.de>
9 * Copyright (C) 2004 Pengutronix
10 *
Fabian Godehardtb6e49132009-06-11 14:53:18 +010011 * Copyright (C) 2009 emlix GmbH
12 * Author: Fabian Godehardt (added IrDA support for iMX)
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
28 * [29-Mar-2005] Mike Lee
29 * Added hardware handshake
30 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#if defined(CONFIG_SERIAL_IMX_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
33#define SUPPORT_SYSRQ
34#endif
35
36#include <linux/module.h>
37#include <linux/ioport.h>
38#include <linux/init.h>
39#include <linux/console.h>
40#include <linux/sysrq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010041#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/tty.h>
43#include <linux/tty_flip.h>
44#include <linux/serial_core.h>
45#include <linux/serial.h>
Sascha Hauer38a41fd2008-07-05 10:02:46 +020046#include <linux/clk.h>
Fabian Godehardtb6e49132009-06-11 14:53:18 +010047#include <linux/delay.h>
Oskar Schirmer534fca02009-06-11 14:52:23 +010048#include <linux/rational.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <asm/io.h>
51#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010052#include <mach/hardware.h>
53#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 */
Sascha Hauer604cbad2008-07-05 10:02:58 +020070#if defined CONFIG_ARCH_MX3 || defined CONFIG_ARCH_MX2
Sascha Hauere3d13ff2008-07-05 10:02:48 +020071#define ONEMS 0xb0 /* One Millisecond register */
72#define UTS 0xb4 /* UART Test Register */
73#endif
Paulius Zaleckasbd006a92008-11-14 11:01:39 +010074#if defined(CONFIG_ARCH_IMX) || defined(CONFIG_ARCH_MX1)
Sascha Hauerff4bfb22007-04-26 08:26:13 +010075#define BIPR1 0xb0 /* Incremental Preset Register 1 */
76#define BIPR2 0xb4 /* Incremental Preset Register 2 */
77#define BIPR3 0xb8 /* Incremental Preset Register 3 */
78#define BIPR4 0xbc /* Incremental Preset Register 4 */
79#define BMPR1 0xc0 /* BRM Modulator Register 1 */
80#define BMPR2 0xc4 /* BRM Modulator Register 2 */
81#define BMPR3 0xc8 /* BRM Modulator Register 3 */
82#define BMPR4 0xcc /* BRM Modulator Register 4 */
83#define UTS 0xd0 /* UART Test Register */
Sascha Hauere3d13ff2008-07-05 10:02:48 +020084#endif
Sascha Hauerff4bfb22007-04-26 08:26:13 +010085
86/* UART Control Register Bit Fields.*/
87#define URXD_CHARRDY (1<<15)
88#define URXD_ERR (1<<14)
89#define URXD_OVRRUN (1<<13)
90#define URXD_FRMERR (1<<12)
91#define URXD_BRK (1<<11)
92#define URXD_PRERR (1<<10)
93#define UCR1_ADEN (1<<15) /* Auto dectect interrupt */
94#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
95#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
96#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
97#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
98#define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
99#define UCR1_IREN (1<<7) /* Infrared interface enable */
100#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
101#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
102#define UCR1_SNDBRK (1<<4) /* Send break */
103#define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
Paulius Zaleckasbd006a92008-11-14 11:01:39 +0100104#if defined(CONFIG_ARCH_IMX) || defined(CONFIG_ARCH_MX1)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100105#define UCR1_UARTCLKEN (1<<2) /* UART clock enabled */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200106#endif
Sascha Hauer604cbad2008-07-05 10:02:58 +0200107#if defined CONFIG_ARCH_MX3 || defined CONFIG_ARCH_MX2
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200108#define UCR1_UARTCLKEN (0) /* not present on mx2/mx3 */
109#endif
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100110#define UCR1_DOZE (1<<1) /* Doze */
111#define UCR1_UARTEN (1<<0) /* UART enabled */
112#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
113#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
114#define UCR2_CTSC (1<<13) /* CTS pin control */
115#define UCR2_CTS (1<<12) /* Clear to send */
116#define UCR2_ESCEN (1<<11) /* Escape enable */
117#define UCR2_PREN (1<<8) /* Parity enable */
118#define UCR2_PROE (1<<7) /* Parity odd/even */
119#define UCR2_STPB (1<<6) /* Stop */
120#define UCR2_WS (1<<5) /* Word size */
121#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
122#define UCR2_TXEN (1<<2) /* Transmitter enabled */
123#define UCR2_RXEN (1<<1) /* Receiver enabled */
124#define UCR2_SRST (1<<0) /* SW reset */
125#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
126#define UCR3_PARERREN (1<<12) /* Parity enable */
127#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
128#define UCR3_DSR (1<<10) /* Data set ready */
129#define UCR3_DCD (1<<9) /* Data carrier detect */
130#define UCR3_RI (1<<8) /* Ring indicator */
131#define UCR3_TIMEOUTEN (1<<7) /* Timeout interrupt enable */
132#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
133#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
134#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200135#ifdef CONFIG_ARCH_IMX
136#define UCR3_REF25 (1<<3) /* Ref freq 25 MHz, only on mx1 */
137#define UCR3_REF30 (1<<2) /* Ref Freq 30 MHz, only on mx1 */
138#endif
139#if defined CONFIG_ARCH_MX2 || defined CONFIG_ARCH_MX3
140#define UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select, on mx2/mx3 */
141#endif
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100142#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
143#define UCR3_BPEN (1<<0) /* Preset registers enable */
144#define UCR4_CTSTL_32 (32<<10) /* CTS trigger level (32 chars) */
145#define UCR4_INVR (1<<9) /* Inverted infrared reception */
146#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
147#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
148#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
149#define UCR4_IRSC (1<<5) /* IR special case */
150#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
151#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
152#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
153#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
154#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
155#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100156#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100157#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
158#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
159#define USR1_RTSS (1<<14) /* RTS pin status */
160#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
161#define USR1_RTSD (1<<12) /* RTS delta */
162#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
163#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
164#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
165#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
166#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
167#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
168#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
169#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
170#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
171#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
172#define USR2_IDLE (1<<12) /* Idle condition */
173#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
174#define USR2_WAKE (1<<7) /* Wake */
175#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
176#define USR2_TXDC (1<<3) /* Transmitter complete */
177#define USR2_BRCD (1<<2) /* Break condition */
178#define USR2_ORE (1<<1) /* Overrun error */
179#define USR2_RDR (1<<0) /* Recv data ready */
180#define UTS_FRCPERR (1<<13) /* Force parity error */
181#define UTS_LOOP (1<<12) /* Loop tx and rx */
182#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
183#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
184#define UTS_TXFULL (1<<4) /* TxFIFO full */
185#define UTS_RXFULL (1<<3) /* RxFIFO full */
186#define UTS_SOFTRST (1<<0) /* Software reset */
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* We've been assigned a range on the "Low-density serial ports" major */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200189#ifdef CONFIG_ARCH_IMX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#define SERIAL_IMX_MAJOR 204
191#define MINOR_START 41
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200192#define DEV_NAME "ttySMX"
193#define MAX_INTERNAL_IRQ IMX_IRQS
194#endif
195
Paulius Zaleckasbd006a92008-11-14 11:01:39 +0100196#ifdef CONFIG_ARCH_MXC
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200197#define SERIAL_IMX_MAJOR 207
198#define MINOR_START 16
199#define DEV_NAME "ttymxc"
Sascha Hauer9d631b82008-12-18 11:08:55 +0100200#define MAX_INTERNAL_IRQ MXC_INTERNAL_IRQS
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * This determines how often we check the modem status signals
205 * for any change. They generally aren't connected to an IRQ
206 * so we have to poll them. We also check immediately before
207 * filling the TX fifo incase CTS has been dropped.
208 */
209#define MCTRL_TIMEOUT (250*HZ/1000)
210
211#define DRIVER_NAME "IMX-uart"
212
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200213#define UART_NR 8
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215struct imx_port {
216 struct uart_port port;
217 struct timer_list timer;
218 unsigned int old_status;
Sascha Hauer5b802342006-05-04 14:07:42 +0100219 int txirq,rxirq,rtsirq;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100220 unsigned int have_rtscts:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100221 unsigned int use_irda:1;
222 unsigned int irda_inv_rx:1;
223 unsigned int irda_inv_tx:1;
224 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200225 struct clk *clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226};
227
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100228#ifdef CONFIG_IRDA
229#define USE_IRDA(sport) ((sport)->use_irda)
230#else
231#define USE_IRDA(sport) (0)
232#endif
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/*
235 * Handle any change of modem status signal since we were last called.
236 */
237static void imx_mctrl_check(struct imx_port *sport)
238{
239 unsigned int status, changed;
240
241 status = sport->port.ops->get_mctrl(&sport->port);
242 changed = status ^ sport->old_status;
243
244 if (changed == 0)
245 return;
246
247 sport->old_status = status;
248
249 if (changed & TIOCM_RI)
250 sport->port.icount.rng++;
251 if (changed & TIOCM_DSR)
252 sport->port.icount.dsr++;
253 if (changed & TIOCM_CAR)
254 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
255 if (changed & TIOCM_CTS)
256 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
257
258 wake_up_interruptible(&sport->port.info->delta_msr_wait);
259}
260
261/*
262 * This is our per-port timeout handler, for checking the
263 * modem status signals.
264 */
265static void imx_timeout(unsigned long data)
266{
267 struct imx_port *sport = (struct imx_port *)data;
268 unsigned long flags;
269
270 if (sport->port.info) {
271 spin_lock_irqsave(&sport->port.lock, flags);
272 imx_mctrl_check(sport);
273 spin_unlock_irqrestore(&sport->port.lock, flags);
274
275 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
276 }
277}
278
279/*
280 * interrupts disabled on entry
281 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100282static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100285 unsigned long temp;
286
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100287 if (USE_IRDA(sport)) {
288 /* half duplex - wait for end of transmission */
289 int n = 256;
290 while ((--n > 0) &&
291 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
292 udelay(5);
293 barrier();
294 }
295 /*
296 * irda transceiver - wait a bit more to avoid
297 * cutoff, hardware dependent
298 */
299 udelay(sport->trcv_delay);
300
301 /*
302 * half duplex - reactivate receive mode,
303 * flush receive pipe echo crap
304 */
305 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
306 temp = readl(sport->port.membase + UCR1);
307 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
308 writel(temp, sport->port.membase + UCR1);
309
310 temp = readl(sport->port.membase + UCR4);
311 temp &= ~(UCR4_TCEN);
312 writel(temp, sport->port.membase + UCR4);
313
314 while (readl(sport->port.membase + URXD0) &
315 URXD_CHARRDY)
316 barrier();
317
318 temp = readl(sport->port.membase + UCR1);
319 temp |= UCR1_RRDYEN;
320 writel(temp, sport->port.membase + UCR1);
321
322 temp = readl(sport->port.membase + UCR4);
323 temp |= UCR4_DREN;
324 writel(temp, sport->port.membase + UCR4);
325 }
326 return;
327 }
328
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100329 temp = readl(sport->port.membase + UCR1);
330 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333/*
334 * interrupts disabled on entry
335 */
336static void imx_stop_rx(struct uart_port *port)
337{
338 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100339 unsigned long temp;
340
341 temp = readl(sport->port.membase + UCR2);
342 writel(temp &~ UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345/*
346 * Set the modem control timer to fire immediately.
347 */
348static void imx_enable_ms(struct uart_port *port)
349{
350 struct imx_port *sport = (struct imx_port *)port;
351
352 mod_timer(&sport->timer, jiffies);
353}
354
355static inline void imx_transmit_buffer(struct imx_port *sport)
356{
357 struct circ_buf *xmit = &sport->port.info->xmit;
358
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100359 while (!(readl(sport->port.membase + UTS) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 /* send xmit->buf[xmit->tail]
361 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100362 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100363 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 sport->port.icount.tx++;
365 if (uart_circ_empty(xmit))
366 break;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Fabian Godehardt977757312009-06-11 14:37:19 +0100369 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
370 uart_write_wakeup(&sport->port);
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100373 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376/*
377 * interrupts disabled on entry
378 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100379static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100382 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100384 if (USE_IRDA(sport)) {
385 /* half duplex in IrDA mode; have to disable receive mode */
386 temp = readl(sport->port.membase + UCR4);
387 temp &= ~(UCR4_DREN);
388 writel(temp, sport->port.membase + UCR4);
389
390 temp = readl(sport->port.membase + UCR1);
391 temp &= ~(UCR1_RRDYEN);
392 writel(temp, sport->port.membase + UCR1);
393 }
394
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100395 temp = readl(sport->port.membase + UCR1);
396 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100398 if (USE_IRDA(sport)) {
399 temp = readl(sport->port.membase + UCR1);
400 temp |= UCR1_TRDYEN;
401 writel(temp, sport->port.membase + UCR1);
402
403 temp = readl(sport->port.membase + UCR4);
404 temp |= UCR4_TCEN;
405 writel(temp, sport->port.membase + UCR4);
406 }
407
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100408 if (readl(sport->port.membase + UTS) & UTS_TXEMPTY)
409 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
David Howells7d12e782006-10-05 14:55:46 +0100412static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100413{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800414 struct imx_port *sport = dev_id;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100415 unsigned int val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100416 unsigned long flags;
417
418 spin_lock_irqsave(&sport->port.lock, flags);
419
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100420 writel(USR1_RTSD, sport->port.membase + USR1);
Sascha Hauerceca6292005-10-12 19:58:08 +0100421 uart_handle_cts_change(&sport->port, !!val);
422 wake_up_interruptible(&sport->port.info->delta_msr_wait);
423
424 spin_unlock_irqrestore(&sport->port.lock, flags);
425 return IRQ_HANDLED;
426}
427
David Howells7d12e782006-10-05 14:55:46 +0100428static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800430 struct imx_port *sport = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct circ_buf *xmit = &sport->port.info->xmit;
432 unsigned long flags;
433
434 spin_lock_irqsave(&sport->port.lock,flags);
435 if (sport->port.x_char)
436 {
437 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100438 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 goto out;
440 }
441
442 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100443 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 goto out;
445 }
446
447 imx_transmit_buffer(sport);
448
449 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
450 uart_write_wakeup(&sport->port);
451
452out:
453 spin_unlock_irqrestore(&sport->port.lock,flags);
454 return IRQ_HANDLED;
455}
456
David Howells7d12e782006-10-05 14:55:46 +0100457static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 struct imx_port *sport = dev_id;
460 unsigned int rx,flg,ignored = 0;
Takashi Iwaia88487c2008-07-16 21:54:42 +0100461 struct tty_struct *tty = sport->port.info->port.tty;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100462 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 spin_lock_irqsave(&sport->port.lock,flags);
465
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100466 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 flg = TTY_NORMAL;
468 sport->port.icount.rx++;
469
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100470 rx = readl(sport->port.membase + URXD0);
471
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100472 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100473 if (temp & USR2_BRCD) {
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100474 writel(temp | USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100475 if (uart_handle_break(&sport->port))
476 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100479 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100480 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Sascha Hauer864eeed2008-04-17 08:39:22 +0100482 if (rx & (URXD_PRERR | URXD_OVRRUN | URXD_FRMERR) ) {
483 if (rx & URXD_PRERR)
484 sport->port.icount.parity++;
485 else if (rx & URXD_FRMERR)
486 sport->port.icount.frame++;
487 if (rx & URXD_OVRRUN)
488 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Sascha Hauer864eeed2008-04-17 08:39:22 +0100490 if (rx & sport->port.ignore_status_mask) {
491 if (++ignored > 100)
492 goto out;
493 continue;
494 }
495
496 rx &= sport->port.read_status_mask;
497
498 if (rx & URXD_PRERR)
499 flg = TTY_PARITY;
500 else if (rx & URXD_FRMERR)
501 flg = TTY_FRAME;
502 if (rx & URXD_OVRRUN)
503 flg = TTY_OVERRUN;
504
505#ifdef SUPPORT_SYSRQ
506 sport->port.sysrq = 0;
507#endif
508 }
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 tty_insert_flip_char(tty, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513out:
514 spin_unlock_irqrestore(&sport->port.lock,flags);
515 tty_flip_buffer_push(tty);
516 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200519static irqreturn_t imx_int(int irq, void *dev_id)
520{
521 struct imx_port *sport = dev_id;
522 unsigned int sts;
523
524 sts = readl(sport->port.membase + USR1);
525
526 if (sts & USR1_RRDY)
527 imx_rxint(irq, dev_id);
528
529 if (sts & USR1_TRDY &&
530 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
531 imx_txint(irq, dev_id);
532
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200533 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200534 imx_rtsint(irq, dev_id);
535
536 return IRQ_HANDLED;
537}
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/*
540 * Return TIOCSER_TEMT when transmitter is not busy.
541 */
542static unsigned int imx_tx_empty(struct uart_port *port)
543{
544 struct imx_port *sport = (struct imx_port *)port;
545
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100546 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100549/*
550 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552static unsigned int imx_get_mctrl(struct uart_port *port)
553{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100554 struct imx_port *sport = (struct imx_port *)port;
555 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100556
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100557 if (readl(sport->port.membase + USR1) & USR1_RTSS)
558 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100559
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100560 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
561 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100562
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100563 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
567{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100568 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100569 unsigned long temp;
570
571 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100572
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100573 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100574 temp |= UCR2_CTS;
575
576 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579/*
580 * Interrupts always disabled.
581 */
582static void imx_break_ctl(struct uart_port *port, int break_state)
583{
584 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100585 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 spin_lock_irqsave(&sport->port.lock, flags);
588
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100589 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if ( break_state != 0 )
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100592 temp |= UCR1_SNDBRK;
593
594 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 spin_unlock_irqrestore(&sport->port.lock, flags);
597}
598
599#define TXTL 2 /* reset default */
600#define RXTL 1 /* reset default */
601
Sascha Hauer587897f2005-04-29 22:46:40 +0100602static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
603{
604 unsigned int val;
605 unsigned int ufcr_rfdiv;
606
607 /* set receiver / transmitter trigger level.
608 * RFDIV is set such way to satisfy requested uartclk value
609 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100610 val = TXTL << 10 | RXTL;
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200611 ufcr_rfdiv = (clk_get_rate(sport->clk) + sport->port.uartclk / 2)
612 / sport->port.uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +0100613
614 if(!ufcr_rfdiv)
615 ufcr_rfdiv = 1;
616
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100617 val |= UFCR_RFDIV_REG(ufcr_rfdiv);
Sascha Hauer587897f2005-04-29 22:46:40 +0100618
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100619 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100620
621 return 0;
622}
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624static int imx_startup(struct uart_port *port)
625{
626 struct imx_port *sport = (struct imx_port *)port;
627 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100628 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Sascha Hauer587897f2005-04-29 22:46:40 +0100630 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 /* disable the DREN bit (Data Ready interrupt enable) before
633 * requesting IRQs
634 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100635 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100636
637 if (USE_IRDA(sport))
638 temp |= UCR4_IRSC;
639
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100640 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100642 if (USE_IRDA(sport)) {
643 /* reset fifo's and state machines */
644 int i = 100;
645 temp = readl(sport->port.membase + UCR2);
646 temp &= ~UCR2_SRST;
647 writel(temp, sport->port.membase + UCR2);
648 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
649 (--i > 0)) {
650 udelay(1);
651 }
652 }
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200655 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
656 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200658 if (sport->txirq > 0) {
659 retval = request_irq(sport->rxirq, imx_rxint, 0,
660 DRIVER_NAME, sport);
661 if (retval)
662 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200664 retval = request_irq(sport->txirq, imx_txint, 0,
665 DRIVER_NAME, sport);
666 if (retval)
667 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100669 /* do not use RTS IRQ on IrDA */
670 if (!USE_IRDA(sport)) {
671 retval = request_irq(sport->rtsirq, imx_rtsint,
672 (sport->rtsirq < MAX_INTERNAL_IRQ) ? 0 :
673 IRQF_TRIGGER_FALLING |
674 IRQF_TRIGGER_RISING,
675 DRIVER_NAME, sport);
676 if (retval)
677 goto error_out3;
678 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200679 } else {
680 retval = request_irq(sport->port.irq, imx_int, 0,
681 DRIVER_NAME, sport);
682 if (retval) {
683 free_irq(sport->port.irq, sport);
684 goto error_out1;
685 }
686 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 /*
689 * Finally, clear and enable interrupts
690 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100691 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100693 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100694 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100695
696 if (USE_IRDA(sport)) {
697 temp |= UCR1_IREN;
698 temp &= ~(UCR1_RTSDEN);
699 }
700
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100701 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100703 temp = readl(sport->port.membase + UCR2);
704 temp |= (UCR2_RXEN | UCR2_TXEN);
705 writel(temp, sport->port.membase + UCR2);
706
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100707 if (USE_IRDA(sport)) {
708 /* clear RX-FIFO */
709 int i = 64;
710 while ((--i > 0) &&
711 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
712 barrier();
713 }
714 }
715
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200716#if defined CONFIG_ARCH_MX2 || defined CONFIG_ARCH_MX3
717 temp = readl(sport->port.membase + UCR3);
718 temp |= UCR3_RXDMUXSEL;
719 writel(temp, sport->port.membase + UCR3);
720#endif
721
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100722 if (USE_IRDA(sport)) {
723 temp = readl(sport->port.membase + UCR4);
724 if (sport->irda_inv_rx)
725 temp |= UCR4_INVR;
726 else
727 temp &= ~(UCR4_INVR);
728 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
729
730 temp = readl(sport->port.membase + UCR3);
731 if (sport->irda_inv_tx)
732 temp |= UCR3_INVT;
733 else
734 temp &= ~(UCR3_INVT);
735 writel(temp, sport->port.membase + UCR3);
736 }
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /*
739 * Enable modem status interrupts
740 */
741 spin_lock_irqsave(&sport->port.lock,flags);
742 imx_enable_ms(&sport->port);
743 spin_unlock_irqrestore(&sport->port.lock,flags);
744
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100745 if (USE_IRDA(sport)) {
746 struct imxuart_platform_data *pdata;
747 pdata = sport->port.dev->platform_data;
748 sport->irda_inv_rx = pdata->irda_inv_rx;
749 sport->irda_inv_tx = pdata->irda_inv_tx;
750 sport->trcv_delay = pdata->transceiver_delay;
751 if (pdata->irda_enable)
752 pdata->irda_enable(1);
753 }
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return 0;
756
Sascha Hauerceca6292005-10-12 19:58:08 +0100757error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200758 if (sport->txirq)
759 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200761 if (sport->rxirq)
762 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100763error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return retval;
765}
766
767static void imx_shutdown(struct uart_port *port)
768{
769 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100770 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Fabian Godehardt2e146392009-06-11 14:38:38 +0100772 temp = readl(sport->port.membase + UCR2);
773 temp &= ~(UCR2_TXEN);
774 writel(temp, sport->port.membase + UCR2);
775
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100776 if (USE_IRDA(sport)) {
777 struct imxuart_platform_data *pdata;
778 pdata = sport->port.dev->platform_data;
779 if (pdata->irda_enable)
780 pdata->irda_enable(0);
781 }
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /*
784 * Stop our timer.
785 */
786 del_timer_sync(&sport->timer);
787
788 /*
789 * Free the interrupts
790 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200791 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100792 if (!USE_IRDA(sport))
793 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200794 free_irq(sport->txirq, sport);
795 free_irq(sport->rxirq, sport);
796 } else
797 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /*
800 * Disable all interrupts, port and break condition.
801 */
802
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100803 temp = readl(sport->port.membase + UCR1);
804 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100805 if (USE_IRDA(sport))
806 temp &= ~(UCR1_IREN);
807
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100808 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811static void
Alan Cox606d0992006-12-08 02:38:45 -0800812imx_set_termios(struct uart_port *port, struct ktermios *termios,
813 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 struct imx_port *sport = (struct imx_port *)port;
816 unsigned long flags;
817 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
818 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca02009-06-11 14:52:23 +0100819 unsigned int div, ufcr;
820 unsigned long num, denom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /*
823 * If we don't support modem control lines, don't allow
824 * these to be set.
825 */
826 if (0) {
827 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
828 termios->c_cflag |= CLOCAL;
829 }
830
831 /*
832 * We only support CS7 and CS8.
833 */
834 while ((termios->c_cflag & CSIZE) != CS7 &&
835 (termios->c_cflag & CSIZE) != CS8) {
836 termios->c_cflag &= ~CSIZE;
837 termios->c_cflag |= old_csize;
838 old_csize = CS8;
839 }
840
841 if ((termios->c_cflag & CSIZE) == CS8)
842 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
843 else
844 ucr2 = UCR2_SRST | UCR2_IRTS;
845
846 if (termios->c_cflag & CRTSCTS) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100847 if( sport->have_rtscts ) {
848 ucr2 &= ~UCR2_IRTS;
849 ucr2 |= UCR2_CTSC;
850 } else {
851 termios->c_cflag &= ~CRTSCTS;
852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
855 if (termios->c_cflag & CSTOPB)
856 ucr2 |= UCR2_STPB;
857 if (termios->c_cflag & PARENB) {
858 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000859 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 ucr2 |= UCR2_PROE;
861 }
862
863 /*
864 * Ask the core to calculate the divisor for us.
865 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200866 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 quot = uart_get_divisor(port, baud);
868
869 spin_lock_irqsave(&sport->port.lock, flags);
870
871 sport->port.read_status_mask = 0;
872 if (termios->c_iflag & INPCK)
873 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
874 if (termios->c_iflag & (BRKINT | PARMRK))
875 sport->port.read_status_mask |= URXD_BRK;
876
877 /*
878 * Characters to ignore
879 */
880 sport->port.ignore_status_mask = 0;
881 if (termios->c_iflag & IGNPAR)
882 sport->port.ignore_status_mask |= URXD_PRERR;
883 if (termios->c_iflag & IGNBRK) {
884 sport->port.ignore_status_mask |= URXD_BRK;
885 /*
886 * If we're ignoring parity and break indicators,
887 * ignore overruns too (for real raw support).
888 */
889 if (termios->c_iflag & IGNPAR)
890 sport->port.ignore_status_mask |= URXD_OVRRUN;
891 }
892
893 del_timer_sync(&sport->timer);
894
895 /*
896 * Update the per-port timeout.
897 */
898 uart_update_timeout(port, termios->c_cflag, baud);
899
900 /*
901 * disable interrupts and drain transmitter
902 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100903 old_ucr1 = readl(sport->port.membase + UCR1);
904 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
905 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100907 while ( !(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 barrier();
909
910 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100911 old_txrxen = readl(sport->port.membase + UCR2);
912 writel(old_txrxen & ~( UCR2_TXEN | UCR2_RXEN),
913 sport->port.membase + UCR2);
914 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100916 if (USE_IRDA(sport)) {
917 /*
918 * use maximum available submodule frequency to
919 * avoid missing short pulses due to low sampling rate
920 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200921 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100922 } else {
923 div = sport->port.uartclk / (baud * 16);
924 if (div > 7)
925 div = 7;
926 if (!div)
927 div = 1;
928 }
Sascha Hauer036bb152008-07-05 10:02:44 +0200929
Oskar Schirmer534fca02009-06-11 14:52:23 +0100930 rational_best_approximation(16 * div * baud, sport->port.uartclk,
931 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +0200932
Oskar Schirmer534fca02009-06-11 14:52:23 +0100933 num -= 1;
934 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +0200935
936 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100937 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +0200938 writel(ufcr, sport->port.membase + UFCR);
939
Oskar Schirmer534fca02009-06-11 14:52:23 +0100940 writel(num, sport->port.membase + UBIR);
941 writel(denom, sport->port.membase + UBMR);
942
Sascha Hauer036bb152008-07-05 10:02:44 +0200943#ifdef ONEMS
944 writel(sport->port.uartclk / div / 1000, sport->port.membase + ONEMS);
945#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100947 writel(old_ucr1, sport->port.membase + UCR1);
948
949 /* set the parity, stop bits and data size */
950 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
953 imx_enable_ms(&sport->port);
954
955 spin_unlock_irqrestore(&sport->port.lock, flags);
956}
957
958static const char *imx_type(struct uart_port *port)
959{
960 struct imx_port *sport = (struct imx_port *)port;
961
962 return sport->port.type == PORT_IMX ? "IMX" : NULL;
963}
964
965/*
966 * Release the memory region(s) being used by 'port'.
967 */
968static void imx_release_port(struct uart_port *port)
969{
Sascha Hauer3d454442008-04-17 08:47:32 +0100970 struct platform_device *pdev = to_platform_device(port->dev);
971 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Sascha Hauer3d454442008-04-17 08:47:32 +0100973 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
974 release_mem_region(mmres->start, mmres->end - mmres->start + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977/*
978 * Request the memory region(s) being used by 'port'.
979 */
980static int imx_request_port(struct uart_port *port)
981{
Sascha Hauer3d454442008-04-17 08:47:32 +0100982 struct platform_device *pdev = to_platform_device(port->dev);
983 struct resource *mmres;
984 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Sascha Hauer3d454442008-04-17 08:47:32 +0100986 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
987 if (!mmres)
988 return -ENODEV;
989
990 ret = request_mem_region(mmres->start, mmres->end - mmres->start + 1,
991 "imx-uart");
992
993 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
996/*
997 * Configure/autoconfigure the port.
998 */
999static void imx_config_port(struct uart_port *port, int flags)
1000{
1001 struct imx_port *sport = (struct imx_port *)port;
1002
1003 if (flags & UART_CONFIG_TYPE &&
1004 imx_request_port(&sport->port) == 0)
1005 sport->port.type = PORT_IMX;
1006}
1007
1008/*
1009 * Verify the new serial_struct (for TIOCSSERIAL).
1010 * The only change we allow are to the flags and type, and
1011 * even then only between PORT_IMX and PORT_UNKNOWN
1012 */
1013static int
1014imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1015{
1016 struct imx_port *sport = (struct imx_port *)port;
1017 int ret = 0;
1018
1019 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1020 ret = -EINVAL;
1021 if (sport->port.irq != ser->irq)
1022 ret = -EINVAL;
1023 if (ser->io_type != UPIO_MEM)
1024 ret = -EINVAL;
1025 if (sport->port.uartclk / 16 != ser->baud_base)
1026 ret = -EINVAL;
1027 if ((void *)sport->port.mapbase != ser->iomem_base)
1028 ret = -EINVAL;
1029 if (sport->port.iobase != ser->port)
1030 ret = -EINVAL;
1031 if (ser->hub6 != 0)
1032 ret = -EINVAL;
1033 return ret;
1034}
1035
1036static struct uart_ops imx_pops = {
1037 .tx_empty = imx_tx_empty,
1038 .set_mctrl = imx_set_mctrl,
1039 .get_mctrl = imx_get_mctrl,
1040 .stop_tx = imx_stop_tx,
1041 .start_tx = imx_start_tx,
1042 .stop_rx = imx_stop_rx,
1043 .enable_ms = imx_enable_ms,
1044 .break_ctl = imx_break_ctl,
1045 .startup = imx_startup,
1046 .shutdown = imx_shutdown,
1047 .set_termios = imx_set_termios,
1048 .type = imx_type,
1049 .release_port = imx_release_port,
1050 .request_port = imx_request_port,
1051 .config_port = imx_config_port,
1052 .verify_port = imx_verify_port,
1053};
1054
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001055static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001058static void imx_console_putchar(struct uart_port *port, int ch)
1059{
1060 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001061
1062 while (readl(sport->port.membase + UTS) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001063 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001064
1065 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001066}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068/*
1069 * Interrupts are disabled on entering
1070 */
1071static void
1072imx_console_write(struct console *co, const char *s, unsigned int count)
1073{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001074 struct imx_port *sport = imx_ports[co->index];
Russell Kingd3587882006-03-20 20:00:09 +00001075 unsigned int old_ucr1, old_ucr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 /*
1078 * First, save UCR1/2 and then disable interrupts
1079 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001080 old_ucr1 = readl(sport->port.membase + UCR1);
1081 old_ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001083 writel((old_ucr1 | UCR1_UARTCLKEN | UCR1_UARTEN) &
1084 ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1085 sport->port.membase + UCR1);
1086
1087 writel(old_ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Russell Kingd3587882006-03-20 20:00:09 +00001089 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 /*
1092 * Finally, wait for transmitter to become empty
1093 * and restore UCR1/2
1094 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001095 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001097 writel(old_ucr1, sport->port.membase + UCR1);
1098 writel(old_ucr2, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
1101/*
1102 * If the port was already initialised (eg, by a boot loader),
1103 * try to determine the current setup.
1104 */
1105static void __init
1106imx_console_get_options(struct imx_port *sport, int *baud,
1107 int *parity, int *bits)
1108{
Sascha Hauer587897f2005-04-29 22:46:40 +01001109
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001110 if ( readl(sport->port.membase + UCR1) | UCR1_UARTEN ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 /* ok, the port was enabled */
1112 unsigned int ucr2, ubir,ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001113 unsigned int baud_raw;
1114 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001116 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 *parity = 'n';
1119 if (ucr2 & UCR2_PREN) {
1120 if (ucr2 & UCR2_PROE)
1121 *parity = 'o';
1122 else
1123 *parity = 'e';
1124 }
1125
1126 if (ucr2 & UCR2_WS)
1127 *bits = 8;
1128 else
1129 *bits = 7;
1130
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001131 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1132 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001134 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001135 if (ucfr_rfdiv == 6)
1136 ucfr_rfdiv = 7;
1137 else
1138 ucfr_rfdiv = 6 - ucfr_rfdiv;
1139
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001140 uartclk = clk_get_rate(sport->clk);
Sascha Hauer587897f2005-04-29 22:46:40 +01001141 uartclk /= ucfr_rfdiv;
1142
1143 { /*
1144 * The next code provides exact computation of
1145 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1146 * without need of float support or long long division,
1147 * which would be required to prevent 32bit arithmetic overflow
1148 */
1149 unsigned int mul = ubir + 1;
1150 unsigned int div = 16 * (ubmr + 1);
1151 unsigned int rem = uartclk % div;
1152
1153 baud_raw = (uartclk / div) * mul;
1154 baud_raw += (rem * mul + div / 2) / div;
1155 *baud = (baud_raw + 50) / 100 * 100;
1156 }
1157
1158 if(*baud != baud_raw)
1159 printk(KERN_INFO "Serial: Console IMX rounded baud rate from %d to %d\n",
1160 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162}
1163
1164static int __init
1165imx_console_setup(struct console *co, char *options)
1166{
1167 struct imx_port *sport;
1168 int baud = 9600;
1169 int bits = 8;
1170 int parity = 'n';
1171 int flow = 'n';
1172
1173 /*
1174 * Check whether an invalid uart number has been specified, and
1175 * if so, search for the first available port that does have
1176 * console support.
1177 */
1178 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1179 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001180 sport = imx_ports[co->index];
Eric Lammertse76afc42009-05-19 20:53:20 -04001181 if(sport == NULL)
1182 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 if (options)
1185 uart_parse_options(options, &baud, &parity, &bits, &flow);
1186 else
1187 imx_console_get_options(sport, &baud, &parity, &bits);
1188
Sascha Hauer587897f2005-04-29 22:46:40 +01001189 imx_setup_ufcr(sport, 0);
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1192}
1193
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001194static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001196 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 .write = imx_console_write,
1198 .device = uart_console_device,
1199 .setup = imx_console_setup,
1200 .flags = CON_PRINTBUFFER,
1201 .index = -1,
1202 .data = &imx_reg,
1203};
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205#define IMX_CONSOLE &imx_console
1206#else
1207#define IMX_CONSOLE NULL
1208#endif
1209
1210static struct uart_driver imx_reg = {
1211 .owner = THIS_MODULE,
1212 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001213 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 .major = SERIAL_IMX_MAJOR,
1215 .minor = MINOR_START,
1216 .nr = ARRAY_SIZE(imx_ports),
1217 .cons = IMX_CONSOLE,
1218};
1219
Russell King3ae5eae2005-11-09 22:32:44 +00001220static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001222 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001224 if (sport)
1225 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Russell King3ae5eae2005-11-09 22:32:44 +00001230static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001232 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001234 if (sport)
1235 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001240static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001242 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001243 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001244 void __iomem *base;
1245 int ret = 0;
1246 struct resource *res;
Sascha Hauer5b802342006-05-04 14:07:42 +01001247
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001248 sport = kzalloc(sizeof(*sport), GFP_KERNEL);
1249 if (!sport)
1250 return -ENOMEM;
1251
1252 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1253 if (!res) {
1254 ret = -ENODEV;
1255 goto free;
1256 }
1257
1258 base = ioremap(res->start, PAGE_SIZE);
1259 if (!base) {
1260 ret = -ENOMEM;
1261 goto free;
1262 }
1263
1264 sport->port.dev = &pdev->dev;
1265 sport->port.mapbase = res->start;
1266 sport->port.membase = base;
1267 sport->port.type = PORT_IMX,
1268 sport->port.iotype = UPIO_MEM;
1269 sport->port.irq = platform_get_irq(pdev, 0);
1270 sport->rxirq = platform_get_irq(pdev, 0);
1271 sport->txirq = platform_get_irq(pdev, 1);
1272 sport->rtsirq = platform_get_irq(pdev, 2);
1273 sport->port.fifosize = 32;
1274 sport->port.ops = &imx_pops;
1275 sport->port.flags = UPF_BOOT_AUTOCONF;
1276 sport->port.line = pdev->id;
1277 init_timer(&sport->timer);
1278 sport->timer.function = imx_timeout;
1279 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001280
Sascha Hauere65fb002009-02-16 14:29:10 +01001281 sport->clk = clk_get(&pdev->dev, "uart");
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001282 if (IS_ERR(sport->clk)) {
1283 ret = PTR_ERR(sport->clk);
1284 goto unmap;
1285 }
1286 clk_enable(sport->clk);
1287
1288 sport->port.uartclk = clk_get_rate(sport->clk);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001289
1290 imx_ports[pdev->id] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001291
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001292 pdata = pdev->dev.platform_data;
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001293 if (pdata && (pdata->flags & IMXUART_HAVE_RTSCTS))
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001294 sport->have_rtscts = 1;
Sascha Hauer5b802342006-05-04 14:07:42 +01001295
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001296#ifdef CONFIG_IRDA
1297 if (pdata && (pdata->flags & IMXUART_IRDA))
1298 sport->use_irda = 1;
1299#endif
1300
Darius Augulisc45e7d72008-09-02 10:19:29 +02001301 if (pdata->init) {
1302 ret = pdata->init(pdev);
1303 if (ret)
1304 goto clkput;
1305 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001306
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001307 ret = uart_add_one_port(&imx_reg, &sport->port);
1308 if (ret)
1309 goto deinit;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001310 platform_set_drvdata(pdev, &sport->port);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001313deinit:
1314 if (pdata->exit)
1315 pdata->exit(pdev);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001316clkput:
1317 clk_put(sport->clk);
1318 clk_disable(sport->clk);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001319unmap:
1320 iounmap(sport->port.membase);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001321free:
1322 kfree(sport);
1323
1324 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001327static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001329 struct imxuart_platform_data *pdata;
1330 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001332 pdata = pdev->dev.platform_data;
1333
1334 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001336 if (sport) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 uart_remove_one_port(&imx_reg, &sport->port);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001338 clk_put(sport->clk);
1339 }
1340
1341 clk_disable(sport->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001343 if (pdata->exit)
1344 pdata->exit(pdev);
1345
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001346 iounmap(sport->port.membase);
1347 kfree(sport);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return 0;
1350}
1351
Russell King3ae5eae2005-11-09 22:32:44 +00001352static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001353 .probe = serial_imx_probe,
1354 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 .suspend = serial_imx_suspend,
1357 .resume = serial_imx_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001358 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001359 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001360 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001361 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362};
1363
1364static int __init imx_serial_init(void)
1365{
1366 int ret;
1367
1368 printk(KERN_INFO "Serial: IMX driver\n");
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 ret = uart_register_driver(&imx_reg);
1371 if (ret)
1372 return ret;
1373
Russell King3ae5eae2005-11-09 22:32:44 +00001374 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (ret != 0)
1376 uart_unregister_driver(&imx_reg);
1377
1378 return 0;
1379}
1380
1381static void __exit imx_serial_exit(void)
1382{
Russell Kingc889b892005-11-21 17:05:21 +00001383 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001384 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
1387module_init(imx_serial_init);
1388module_exit(imx_serial_exit);
1389
1390MODULE_AUTHOR("Sascha Hauer");
1391MODULE_DESCRIPTION("IMX generic serial port driver");
1392MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001393MODULE_ALIAS("platform:imx-uart");