blob: 7b5d1de9cfe39c3436d1074bb3b9c77933743507 [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;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100821 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /*
824 * If we don't support modem control lines, don't allow
825 * these to be set.
826 */
827 if (0) {
828 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
829 termios->c_cflag |= CLOCAL;
830 }
831
832 /*
833 * We only support CS7 and CS8.
834 */
835 while ((termios->c_cflag & CSIZE) != CS7 &&
836 (termios->c_cflag & CSIZE) != CS8) {
837 termios->c_cflag &= ~CSIZE;
838 termios->c_cflag |= old_csize;
839 old_csize = CS8;
840 }
841
842 if ((termios->c_cflag & CSIZE) == CS8)
843 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
844 else
845 ucr2 = UCR2_SRST | UCR2_IRTS;
846
847 if (termios->c_cflag & CRTSCTS) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100848 if( sport->have_rtscts ) {
849 ucr2 &= ~UCR2_IRTS;
850 ucr2 |= UCR2_CTSC;
851 } else {
852 termios->c_cflag &= ~CRTSCTS;
853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
856 if (termios->c_cflag & CSTOPB)
857 ucr2 |= UCR2_STPB;
858 if (termios->c_cflag & PARENB) {
859 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000860 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 ucr2 |= UCR2_PROE;
862 }
863
864 /*
865 * Ask the core to calculate the divisor for us.
866 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200867 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 quot = uart_get_divisor(port, baud);
869
870 spin_lock_irqsave(&sport->port.lock, flags);
871
872 sport->port.read_status_mask = 0;
873 if (termios->c_iflag & INPCK)
874 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
875 if (termios->c_iflag & (BRKINT | PARMRK))
876 sport->port.read_status_mask |= URXD_BRK;
877
878 /*
879 * Characters to ignore
880 */
881 sport->port.ignore_status_mask = 0;
882 if (termios->c_iflag & IGNPAR)
883 sport->port.ignore_status_mask |= URXD_PRERR;
884 if (termios->c_iflag & IGNBRK) {
885 sport->port.ignore_status_mask |= URXD_BRK;
886 /*
887 * If we're ignoring parity and break indicators,
888 * ignore overruns too (for real raw support).
889 */
890 if (termios->c_iflag & IGNPAR)
891 sport->port.ignore_status_mask |= URXD_OVRRUN;
892 }
893
894 del_timer_sync(&sport->timer);
895
896 /*
897 * Update the per-port timeout.
898 */
899 uart_update_timeout(port, termios->c_cflag, baud);
900
901 /*
902 * disable interrupts and drain transmitter
903 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100904 old_ucr1 = readl(sport->port.membase + UCR1);
905 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
906 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100908 while ( !(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 barrier();
910
911 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100912 old_txrxen = readl(sport->port.membase + UCR2);
913 writel(old_txrxen & ~( UCR2_TXEN | UCR2_RXEN),
914 sport->port.membase + UCR2);
915 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100917 if (USE_IRDA(sport)) {
918 /*
919 * use maximum available submodule frequency to
920 * avoid missing short pulses due to low sampling rate
921 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200922 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100923 } else {
924 div = sport->port.uartclk / (baud * 16);
925 if (div > 7)
926 div = 7;
927 if (!div)
928 div = 1;
929 }
Sascha Hauer036bb152008-07-05 10:02:44 +0200930
Oskar Schirmer534fca02009-06-11 14:52:23 +0100931 rational_best_approximation(16 * div * baud, sport->port.uartclk,
932 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +0200933
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100934 tdiv64 = sport->port.uartclk;
935 tdiv64 *= num;
936 do_div(tdiv64, denom * 16 * div);
937 tty_encode_baud_rate(sport->port.info->port.tty,
938 (speed_t)tdiv64, (speed_t)tdiv64);
939
Oskar Schirmer534fca02009-06-11 14:52:23 +0100940 num -= 1;
941 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +0200942
943 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100944 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +0200945 writel(ufcr, sport->port.membase + UFCR);
946
Oskar Schirmer534fca02009-06-11 14:52:23 +0100947 writel(num, sport->port.membase + UBIR);
948 writel(denom, sport->port.membase + UBMR);
949
Sascha Hauer036bb152008-07-05 10:02:44 +0200950#ifdef ONEMS
951 writel(sport->port.uartclk / div / 1000, sport->port.membase + ONEMS);
952#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100954 writel(old_ucr1, sport->port.membase + UCR1);
955
956 /* set the parity, stop bits and data size */
957 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
960 imx_enable_ms(&sport->port);
961
962 spin_unlock_irqrestore(&sport->port.lock, flags);
963}
964
965static const char *imx_type(struct uart_port *port)
966{
967 struct imx_port *sport = (struct imx_port *)port;
968
969 return sport->port.type == PORT_IMX ? "IMX" : NULL;
970}
971
972/*
973 * Release the memory region(s) being used by 'port'.
974 */
975static void imx_release_port(struct uart_port *port)
976{
Sascha Hauer3d454442008-04-17 08:47:32 +0100977 struct platform_device *pdev = to_platform_device(port->dev);
978 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Sascha Hauer3d454442008-04-17 08:47:32 +0100980 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
981 release_mem_region(mmres->start, mmres->end - mmres->start + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
984/*
985 * Request the memory region(s) being used by 'port'.
986 */
987static int imx_request_port(struct uart_port *port)
988{
Sascha Hauer3d454442008-04-17 08:47:32 +0100989 struct platform_device *pdev = to_platform_device(port->dev);
990 struct resource *mmres;
991 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Sascha Hauer3d454442008-04-17 08:47:32 +0100993 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
994 if (!mmres)
995 return -ENODEV;
996
997 ret = request_mem_region(mmres->start, mmres->end - mmres->start + 1,
998 "imx-uart");
999
1000 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
1003/*
1004 * Configure/autoconfigure the port.
1005 */
1006static void imx_config_port(struct uart_port *port, int flags)
1007{
1008 struct imx_port *sport = (struct imx_port *)port;
1009
1010 if (flags & UART_CONFIG_TYPE &&
1011 imx_request_port(&sport->port) == 0)
1012 sport->port.type = PORT_IMX;
1013}
1014
1015/*
1016 * Verify the new serial_struct (for TIOCSSERIAL).
1017 * The only change we allow are to the flags and type, and
1018 * even then only between PORT_IMX and PORT_UNKNOWN
1019 */
1020static int
1021imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1022{
1023 struct imx_port *sport = (struct imx_port *)port;
1024 int ret = 0;
1025
1026 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1027 ret = -EINVAL;
1028 if (sport->port.irq != ser->irq)
1029 ret = -EINVAL;
1030 if (ser->io_type != UPIO_MEM)
1031 ret = -EINVAL;
1032 if (sport->port.uartclk / 16 != ser->baud_base)
1033 ret = -EINVAL;
1034 if ((void *)sport->port.mapbase != ser->iomem_base)
1035 ret = -EINVAL;
1036 if (sport->port.iobase != ser->port)
1037 ret = -EINVAL;
1038 if (ser->hub6 != 0)
1039 ret = -EINVAL;
1040 return ret;
1041}
1042
1043static struct uart_ops imx_pops = {
1044 .tx_empty = imx_tx_empty,
1045 .set_mctrl = imx_set_mctrl,
1046 .get_mctrl = imx_get_mctrl,
1047 .stop_tx = imx_stop_tx,
1048 .start_tx = imx_start_tx,
1049 .stop_rx = imx_stop_rx,
1050 .enable_ms = imx_enable_ms,
1051 .break_ctl = imx_break_ctl,
1052 .startup = imx_startup,
1053 .shutdown = imx_shutdown,
1054 .set_termios = imx_set_termios,
1055 .type = imx_type,
1056 .release_port = imx_release_port,
1057 .request_port = imx_request_port,
1058 .config_port = imx_config_port,
1059 .verify_port = imx_verify_port,
1060};
1061
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001062static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001065static void imx_console_putchar(struct uart_port *port, int ch)
1066{
1067 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001068
1069 while (readl(sport->port.membase + UTS) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001070 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001071
1072 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001073}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075/*
1076 * Interrupts are disabled on entering
1077 */
1078static void
1079imx_console_write(struct console *co, const char *s, unsigned int count)
1080{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001081 struct imx_port *sport = imx_ports[co->index];
Russell Kingd3587882006-03-20 20:00:09 +00001082 unsigned int old_ucr1, old_ucr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 /*
1085 * First, save UCR1/2 and then disable interrupts
1086 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001087 old_ucr1 = readl(sport->port.membase + UCR1);
1088 old_ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001090 writel((old_ucr1 | UCR1_UARTCLKEN | UCR1_UARTEN) &
1091 ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
1092 sport->port.membase + UCR1);
1093
1094 writel(old_ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Russell Kingd3587882006-03-20 20:00:09 +00001096 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 /*
1099 * Finally, wait for transmitter to become empty
1100 * and restore UCR1/2
1101 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001102 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001104 writel(old_ucr1, sport->port.membase + UCR1);
1105 writel(old_ucr2, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
1108/*
1109 * If the port was already initialised (eg, by a boot loader),
1110 * try to determine the current setup.
1111 */
1112static void __init
1113imx_console_get_options(struct imx_port *sport, int *baud,
1114 int *parity, int *bits)
1115{
Sascha Hauer587897f2005-04-29 22:46:40 +01001116
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001117 if ( readl(sport->port.membase + UCR1) | UCR1_UARTEN ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* ok, the port was enabled */
1119 unsigned int ucr2, ubir,ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001120 unsigned int baud_raw;
1121 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001123 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 *parity = 'n';
1126 if (ucr2 & UCR2_PREN) {
1127 if (ucr2 & UCR2_PROE)
1128 *parity = 'o';
1129 else
1130 *parity = 'e';
1131 }
1132
1133 if (ucr2 & UCR2_WS)
1134 *bits = 8;
1135 else
1136 *bits = 7;
1137
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001138 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1139 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001141 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001142 if (ucfr_rfdiv == 6)
1143 ucfr_rfdiv = 7;
1144 else
1145 ucfr_rfdiv = 6 - ucfr_rfdiv;
1146
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001147 uartclk = clk_get_rate(sport->clk);
Sascha Hauer587897f2005-04-29 22:46:40 +01001148 uartclk /= ucfr_rfdiv;
1149
1150 { /*
1151 * The next code provides exact computation of
1152 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1153 * without need of float support or long long division,
1154 * which would be required to prevent 32bit arithmetic overflow
1155 */
1156 unsigned int mul = ubir + 1;
1157 unsigned int div = 16 * (ubmr + 1);
1158 unsigned int rem = uartclk % div;
1159
1160 baud_raw = (uartclk / div) * mul;
1161 baud_raw += (rem * mul + div / 2) / div;
1162 *baud = (baud_raw + 50) / 100 * 100;
1163 }
1164
1165 if(*baud != baud_raw)
1166 printk(KERN_INFO "Serial: Console IMX rounded baud rate from %d to %d\n",
1167 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
1169}
1170
1171static int __init
1172imx_console_setup(struct console *co, char *options)
1173{
1174 struct imx_port *sport;
1175 int baud = 9600;
1176 int bits = 8;
1177 int parity = 'n';
1178 int flow = 'n';
1179
1180 /*
1181 * Check whether an invalid uart number has been specified, and
1182 * if so, search for the first available port that does have
1183 * console support.
1184 */
1185 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1186 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001187 sport = imx_ports[co->index];
Eric Lammertse76afc42009-05-19 20:53:20 -04001188 if(sport == NULL)
1189 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 if (options)
1192 uart_parse_options(options, &baud, &parity, &bits, &flow);
1193 else
1194 imx_console_get_options(sport, &baud, &parity, &bits);
1195
Sascha Hauer587897f2005-04-29 22:46:40 +01001196 imx_setup_ufcr(sport, 0);
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1199}
1200
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001201static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001203 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 .write = imx_console_write,
1205 .device = uart_console_device,
1206 .setup = imx_console_setup,
1207 .flags = CON_PRINTBUFFER,
1208 .index = -1,
1209 .data = &imx_reg,
1210};
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212#define IMX_CONSOLE &imx_console
1213#else
1214#define IMX_CONSOLE NULL
1215#endif
1216
1217static struct uart_driver imx_reg = {
1218 .owner = THIS_MODULE,
1219 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001220 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 .major = SERIAL_IMX_MAJOR,
1222 .minor = MINOR_START,
1223 .nr = ARRAY_SIZE(imx_ports),
1224 .cons = IMX_CONSOLE,
1225};
1226
Russell King3ae5eae2005-11-09 22:32:44 +00001227static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001229 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001231 if (sport)
1232 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Russell King3ae5eae2005-11-09 22:32:44 +00001237static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001239 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001241 if (sport)
1242 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001244 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001247static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001249 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001250 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001251 void __iomem *base;
1252 int ret = 0;
1253 struct resource *res;
Sascha Hauer5b802342006-05-04 14:07:42 +01001254
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001255 sport = kzalloc(sizeof(*sport), GFP_KERNEL);
1256 if (!sport)
1257 return -ENOMEM;
1258
1259 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1260 if (!res) {
1261 ret = -ENODEV;
1262 goto free;
1263 }
1264
1265 base = ioremap(res->start, PAGE_SIZE);
1266 if (!base) {
1267 ret = -ENOMEM;
1268 goto free;
1269 }
1270
1271 sport->port.dev = &pdev->dev;
1272 sport->port.mapbase = res->start;
1273 sport->port.membase = base;
1274 sport->port.type = PORT_IMX,
1275 sport->port.iotype = UPIO_MEM;
1276 sport->port.irq = platform_get_irq(pdev, 0);
1277 sport->rxirq = platform_get_irq(pdev, 0);
1278 sport->txirq = platform_get_irq(pdev, 1);
1279 sport->rtsirq = platform_get_irq(pdev, 2);
1280 sport->port.fifosize = 32;
1281 sport->port.ops = &imx_pops;
1282 sport->port.flags = UPF_BOOT_AUTOCONF;
1283 sport->port.line = pdev->id;
1284 init_timer(&sport->timer);
1285 sport->timer.function = imx_timeout;
1286 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001287
Sascha Hauere65fb002009-02-16 14:29:10 +01001288 sport->clk = clk_get(&pdev->dev, "uart");
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001289 if (IS_ERR(sport->clk)) {
1290 ret = PTR_ERR(sport->clk);
1291 goto unmap;
1292 }
1293 clk_enable(sport->clk);
1294
1295 sport->port.uartclk = clk_get_rate(sport->clk);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001296
1297 imx_ports[pdev->id] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001298
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001299 pdata = pdev->dev.platform_data;
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001300 if (pdata && (pdata->flags & IMXUART_HAVE_RTSCTS))
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001301 sport->have_rtscts = 1;
Sascha Hauer5b802342006-05-04 14:07:42 +01001302
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001303#ifdef CONFIG_IRDA
1304 if (pdata && (pdata->flags & IMXUART_IRDA))
1305 sport->use_irda = 1;
1306#endif
1307
Darius Augulisc45e7d72008-09-02 10:19:29 +02001308 if (pdata->init) {
1309 ret = pdata->init(pdev);
1310 if (ret)
1311 goto clkput;
1312 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001313
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001314 ret = uart_add_one_port(&imx_reg, &sport->port);
1315 if (ret)
1316 goto deinit;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001317 platform_set_drvdata(pdev, &sport->port);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001320deinit:
1321 if (pdata->exit)
1322 pdata->exit(pdev);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001323clkput:
1324 clk_put(sport->clk);
1325 clk_disable(sport->clk);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001326unmap:
1327 iounmap(sport->port.membase);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001328free:
1329 kfree(sport);
1330
1331 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001334static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001336 struct imxuart_platform_data *pdata;
1337 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001339 pdata = pdev->dev.platform_data;
1340
1341 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001343 if (sport) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 uart_remove_one_port(&imx_reg, &sport->port);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001345 clk_put(sport->clk);
1346 }
1347
1348 clk_disable(sport->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001350 if (pdata->exit)
1351 pdata->exit(pdev);
1352
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001353 iounmap(sport->port.membase);
1354 kfree(sport);
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return 0;
1357}
1358
Russell King3ae5eae2005-11-09 22:32:44 +00001359static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001360 .probe = serial_imx_probe,
1361 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 .suspend = serial_imx_suspend,
1364 .resume = serial_imx_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001365 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001366 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001367 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001368 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369};
1370
1371static int __init imx_serial_init(void)
1372{
1373 int ret;
1374
1375 printk(KERN_INFO "Serial: IMX driver\n");
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 ret = uart_register_driver(&imx_reg);
1378 if (ret)
1379 return ret;
1380
Russell King3ae5eae2005-11-09 22:32:44 +00001381 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (ret != 0)
1383 uart_unregister_driver(&imx_reg);
1384
1385 return 0;
1386}
1387
1388static void __exit imx_serial_exit(void)
1389{
Russell Kingc889b892005-11-21 17:05:21 +00001390 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001391 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
1394module_init(imx_serial_init);
1395module_exit(imx_serial_exit);
1396
1397MODULE_AUTHOR("Sascha Hauer");
1398MODULE_DESCRIPTION("IMX generic serial port driver");
1399MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001400MODULE_ALIAS("platform:imx-uart");