blob: eacb588a93459911e2d3d5be0a7af7f171dc24ec [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <asm/io.h>
52#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010053#include <mach/hardware.h>
54#include <mach/imx-uart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Sascha Hauerff4bfb22007-04-26 08:26:13 +010056/* Register definitions */
57#define URXD0 0x0 /* Receiver Register */
58#define URTX0 0x40 /* Transmitter Register */
59#define UCR1 0x80 /* Control Register 1 */
60#define UCR2 0x84 /* Control Register 2 */
61#define UCR3 0x88 /* Control Register 3 */
62#define UCR4 0x8c /* Control Register 4 */
63#define UFCR 0x90 /* FIFO Control Register */
64#define USR1 0x94 /* Status Register 1 */
65#define USR2 0x98 /* Status Register 2 */
66#define UESC 0x9c /* Escape Character Register */
67#define UTIM 0xa0 /* Escape Timer Register */
68#define UBIR 0xa4 /* BRM Incremental Register */
69#define UBMR 0xa8 /* BRM Modulator Register */
70#define UBRC 0xac /* Baud Rate Count Register */
Sascha Hauer37d6fb62009-05-27 18:23:48 +020071#define MX2_ONEMS 0xb0 /* One Millisecond register */
72#define UTS (cpu_is_mx1() ? 0xd0 : 0xb4) /* UART Test Register */
Sascha Hauerff4bfb22007-04-26 08:26:13 +010073
74/* UART Control Register Bit Fields.*/
75#define URXD_CHARRDY (1<<15)
76#define URXD_ERR (1<<14)
77#define URXD_OVRRUN (1<<13)
78#define URXD_FRMERR (1<<12)
79#define URXD_BRK (1<<11)
80#define URXD_PRERR (1<<10)
81#define UCR1_ADEN (1<<15) /* Auto dectect interrupt */
82#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
83#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
84#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
85#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
86#define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
87#define UCR1_IREN (1<<7) /* Infrared interface enable */
88#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
89#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
90#define UCR1_SNDBRK (1<<4) /* Send break */
91#define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
Sascha Hauer37d6fb62009-05-27 18:23:48 +020092#define MX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, mx1 only */
Sascha Hauerff4bfb22007-04-26 08:26:13 +010093#define UCR1_DOZE (1<<1) /* Doze */
94#define UCR1_UARTEN (1<<0) /* UART enabled */
95#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
96#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
97#define UCR2_CTSC (1<<13) /* CTS pin control */
98#define UCR2_CTS (1<<12) /* Clear to send */
99#define UCR2_ESCEN (1<<11) /* Escape enable */
100#define UCR2_PREN (1<<8) /* Parity enable */
101#define UCR2_PROE (1<<7) /* Parity odd/even */
102#define UCR2_STPB (1<<6) /* Stop */
103#define UCR2_WS (1<<5) /* Word size */
104#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
105#define UCR2_TXEN (1<<2) /* Transmitter enabled */
106#define UCR2_RXEN (1<<1) /* Receiver enabled */
107#define UCR2_SRST (1<<0) /* SW reset */
108#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
109#define UCR3_PARERREN (1<<12) /* Parity enable */
110#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
111#define UCR3_DSR (1<<10) /* Data set ready */
112#define UCR3_DCD (1<<9) /* Data carrier detect */
113#define UCR3_RI (1<<8) /* Ring indicator */
114#define UCR3_TIMEOUTEN (1<<7) /* Timeout interrupt enable */
115#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
116#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
117#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200118#define MX1_UCR3_REF25 (1<<3) /* Ref freq 25 MHz, only on mx1 */
119#define MX1_UCR3_REF30 (1<<2) /* Ref Freq 30 MHz, only on mx1 */
120#define MX2_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select, on mx2/mx3 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100121#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
122#define UCR3_BPEN (1<<0) /* Preset registers enable */
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200123#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
124#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100125#define UCR4_INVR (1<<9) /* Inverted infrared reception */
126#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
127#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
128#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
129#define UCR4_IRSC (1<<5) /* IR special case */
130#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
131#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
132#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
133#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
134#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
135#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100136#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100137#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
138#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
139#define USR1_RTSS (1<<14) /* RTS pin status */
140#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
141#define USR1_RTSD (1<<12) /* RTS delta */
142#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
143#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
144#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
145#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
146#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
147#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
148#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
149#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
150#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
151#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
152#define USR2_IDLE (1<<12) /* Idle condition */
153#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
154#define USR2_WAKE (1<<7) /* Wake */
155#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
156#define USR2_TXDC (1<<3) /* Transmitter complete */
157#define USR2_BRCD (1<<2) /* Break condition */
158#define USR2_ORE (1<<1) /* Overrun error */
159#define USR2_RDR (1<<0) /* Recv data ready */
160#define UTS_FRCPERR (1<<13) /* Force parity error */
161#define UTS_LOOP (1<<12) /* Loop tx and rx */
162#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
163#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
164#define UTS_TXFULL (1<<4) /* TxFIFO full */
165#define UTS_RXFULL (1<<3) /* RxFIFO full */
166#define UTS_SOFTRST (1<<0) /* Software reset */
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/* We've been assigned a range on the "Low-density serial ports" major */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200169#define SERIAL_IMX_MAJOR 207
170#define MINOR_START 16
171#define DEV_NAME "ttymxc"
Sascha Hauer9d631b82008-12-18 11:08:55 +0100172#define MAX_INTERNAL_IRQ MXC_INTERNAL_IRQS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * This determines how often we check the modem status signals
176 * for any change. They generally aren't connected to an IRQ
177 * so we have to poll them. We also check immediately before
178 * filling the TX fifo incase CTS has been dropped.
179 */
180#define MCTRL_TIMEOUT (250*HZ/1000)
181
182#define DRIVER_NAME "IMX-uart"
183
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200184#define UART_NR 8
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186struct imx_port {
187 struct uart_port port;
188 struct timer_list timer;
189 unsigned int old_status;
Sascha Hauer5b802342006-05-04 14:07:42 +0100190 int txirq,rxirq,rtsirq;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100191 unsigned int have_rtscts:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100192 unsigned int use_irda:1;
193 unsigned int irda_inv_rx:1;
194 unsigned int irda_inv_tx:1;
195 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200196 struct clk *clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
198
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100199#ifdef CONFIG_IRDA
200#define USE_IRDA(sport) ((sport)->use_irda)
201#else
202#define USE_IRDA(sport) (0)
203#endif
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*
206 * Handle any change of modem status signal since we were last called.
207 */
208static void imx_mctrl_check(struct imx_port *sport)
209{
210 unsigned int status, changed;
211
212 status = sport->port.ops->get_mctrl(&sport->port);
213 changed = status ^ sport->old_status;
214
215 if (changed == 0)
216 return;
217
218 sport->old_status = status;
219
220 if (changed & TIOCM_RI)
221 sport->port.icount.rng++;
222 if (changed & TIOCM_DSR)
223 sport->port.icount.dsr++;
224 if (changed & TIOCM_CAR)
225 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
226 if (changed & TIOCM_CTS)
227 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
228
Alan Coxbdc04e32009-09-19 13:13:31 -0700229 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
232/*
233 * This is our per-port timeout handler, for checking the
234 * modem status signals.
235 */
236static void imx_timeout(unsigned long data)
237{
238 struct imx_port *sport = (struct imx_port *)data;
239 unsigned long flags;
240
Alan Coxebd2c8f2009-09-19 13:13:28 -0700241 if (sport->port.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 spin_lock_irqsave(&sport->port.lock, flags);
243 imx_mctrl_check(sport);
244 spin_unlock_irqrestore(&sport->port.lock, flags);
245
246 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
247 }
248}
249
250/*
251 * interrupts disabled on entry
252 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100253static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100256 unsigned long temp;
257
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100258 if (USE_IRDA(sport)) {
259 /* half duplex - wait for end of transmission */
260 int n = 256;
261 while ((--n > 0) &&
262 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
263 udelay(5);
264 barrier();
265 }
266 /*
267 * irda transceiver - wait a bit more to avoid
268 * cutoff, hardware dependent
269 */
270 udelay(sport->trcv_delay);
271
272 /*
273 * half duplex - reactivate receive mode,
274 * flush receive pipe echo crap
275 */
276 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
277 temp = readl(sport->port.membase + UCR1);
278 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
279 writel(temp, sport->port.membase + UCR1);
280
281 temp = readl(sport->port.membase + UCR4);
282 temp &= ~(UCR4_TCEN);
283 writel(temp, sport->port.membase + UCR4);
284
285 while (readl(sport->port.membase + URXD0) &
286 URXD_CHARRDY)
287 barrier();
288
289 temp = readl(sport->port.membase + UCR1);
290 temp |= UCR1_RRDYEN;
291 writel(temp, sport->port.membase + UCR1);
292
293 temp = readl(sport->port.membase + UCR4);
294 temp |= UCR4_DREN;
295 writel(temp, sport->port.membase + UCR4);
296 }
297 return;
298 }
299
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100300 temp = readl(sport->port.membase + UCR1);
301 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
304/*
305 * interrupts disabled on entry
306 */
307static void imx_stop_rx(struct uart_port *port)
308{
309 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100310 unsigned long temp;
311
312 temp = readl(sport->port.membase + UCR2);
313 writel(temp &~ UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316/*
317 * Set the modem control timer to fire immediately.
318 */
319static void imx_enable_ms(struct uart_port *port)
320{
321 struct imx_port *sport = (struct imx_port *)port;
322
323 mod_timer(&sport->timer, jiffies);
324}
325
326static inline void imx_transmit_buffer(struct imx_port *sport)
327{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700328 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100330 while (!(readl(sport->port.membase + UTS) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 /* send xmit->buf[xmit->tail]
332 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100333 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100334 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 sport->port.icount.tx++;
336 if (uart_circ_empty(xmit))
337 break;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Fabian Godehardt977757312009-06-11 14:37:19 +0100340 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
341 uart_write_wakeup(&sport->port);
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100344 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
347/*
348 * interrupts disabled on entry
349 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100350static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100353 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100355 if (USE_IRDA(sport)) {
356 /* half duplex in IrDA mode; have to disable receive mode */
357 temp = readl(sport->port.membase + UCR4);
358 temp &= ~(UCR4_DREN);
359 writel(temp, sport->port.membase + UCR4);
360
361 temp = readl(sport->port.membase + UCR1);
362 temp &= ~(UCR1_RRDYEN);
363 writel(temp, sport->port.membase + UCR1);
364 }
365
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100366 temp = readl(sport->port.membase + UCR1);
367 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100369 if (USE_IRDA(sport)) {
370 temp = readl(sport->port.membase + UCR1);
371 temp |= UCR1_TRDYEN;
372 writel(temp, sport->port.membase + UCR1);
373
374 temp = readl(sport->port.membase + UCR4);
375 temp |= UCR4_TCEN;
376 writel(temp, sport->port.membase + UCR4);
377 }
378
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100379 if (readl(sport->port.membase + UTS) & UTS_TXEMPTY)
380 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
David Howells7d12e782006-10-05 14:55:46 +0100383static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100384{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800385 struct imx_port *sport = dev_id;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100386 unsigned int val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100387 unsigned long flags;
388
389 spin_lock_irqsave(&sport->port.lock, flags);
390
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100391 writel(USR1_RTSD, sport->port.membase + USR1);
Sascha Hauerceca6292005-10-12 19:58:08 +0100392 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700393 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100394
395 spin_unlock_irqrestore(&sport->port.lock, flags);
396 return IRQ_HANDLED;
397}
398
David Howells7d12e782006-10-05 14:55:46 +0100399static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800401 struct imx_port *sport = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700402 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 unsigned long flags;
404
405 spin_lock_irqsave(&sport->port.lock,flags);
406 if (sport->port.x_char)
407 {
408 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100409 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 goto out;
411 }
412
413 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100414 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 goto out;
416 }
417
418 imx_transmit_buffer(sport);
419
420 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
421 uart_write_wakeup(&sport->port);
422
423out:
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_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 struct imx_port *sport = dev_id;
431 unsigned int rx,flg,ignored = 0;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700432 struct tty_struct *tty = sport->port.state->port.tty;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100433 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 spin_lock_irqsave(&sport->port.lock,flags);
436
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100437 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 flg = TTY_NORMAL;
439 sport->port.icount.rx++;
440
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100441 rx = readl(sport->port.membase + URXD0);
442
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100443 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100444 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100445 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100446 if (uart_handle_break(&sport->port))
447 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100450 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100451 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Sascha Hauer864eeed2008-04-17 08:39:22 +0100453 if (rx & (URXD_PRERR | URXD_OVRRUN | URXD_FRMERR) ) {
454 if (rx & URXD_PRERR)
455 sport->port.icount.parity++;
456 else if (rx & URXD_FRMERR)
457 sport->port.icount.frame++;
458 if (rx & URXD_OVRRUN)
459 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Sascha Hauer864eeed2008-04-17 08:39:22 +0100461 if (rx & sport->port.ignore_status_mask) {
462 if (++ignored > 100)
463 goto out;
464 continue;
465 }
466
467 rx &= sport->port.read_status_mask;
468
469 if (rx & URXD_PRERR)
470 flg = TTY_PARITY;
471 else if (rx & URXD_FRMERR)
472 flg = TTY_FRAME;
473 if (rx & URXD_OVRRUN)
474 flg = TTY_OVERRUN;
475
476#ifdef SUPPORT_SYSRQ
477 sport->port.sysrq = 0;
478#endif
479 }
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 tty_insert_flip_char(tty, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484out:
485 spin_unlock_irqrestore(&sport->port.lock,flags);
486 tty_flip_buffer_push(tty);
487 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200490static irqreturn_t imx_int(int irq, void *dev_id)
491{
492 struct imx_port *sport = dev_id;
493 unsigned int sts;
494
495 sts = readl(sport->port.membase + USR1);
496
497 if (sts & USR1_RRDY)
498 imx_rxint(irq, dev_id);
499
500 if (sts & USR1_TRDY &&
501 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
502 imx_txint(irq, dev_id);
503
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200504 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200505 imx_rtsint(irq, dev_id);
506
507 return IRQ_HANDLED;
508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*
511 * Return TIOCSER_TEMT when transmitter is not busy.
512 */
513static unsigned int imx_tx_empty(struct uart_port *port)
514{
515 struct imx_port *sport = (struct imx_port *)port;
516
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100517 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100520/*
521 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
522 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523static unsigned int imx_get_mctrl(struct uart_port *port)
524{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100525 struct imx_port *sport = (struct imx_port *)port;
526 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100527
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100528 if (readl(sport->port.membase + USR1) & USR1_RTSS)
529 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100530
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100531 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
532 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100533
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100534 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
538{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100539 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100540 unsigned long temp;
541
542 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100543
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100544 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100545 temp |= UCR2_CTS;
546
547 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550/*
551 * Interrupts always disabled.
552 */
553static void imx_break_ctl(struct uart_port *port, int break_state)
554{
555 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100556 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 spin_lock_irqsave(&sport->port.lock, flags);
559
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100560 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if ( break_state != 0 )
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100563 temp |= UCR1_SNDBRK;
564
565 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 spin_unlock_irqrestore(&sport->port.lock, flags);
568}
569
570#define TXTL 2 /* reset default */
571#define RXTL 1 /* reset default */
572
Sascha Hauer587897f2005-04-29 22:46:40 +0100573static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
574{
575 unsigned int val;
576 unsigned int ufcr_rfdiv;
577
578 /* set receiver / transmitter trigger level.
579 * RFDIV is set such way to satisfy requested uartclk value
580 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100581 val = TXTL << 10 | RXTL;
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200582 ufcr_rfdiv = (clk_get_rate(sport->clk) + sport->port.uartclk / 2)
583 / sport->port.uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +0100584
585 if(!ufcr_rfdiv)
586 ufcr_rfdiv = 1;
587
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100588 val |= UFCR_RFDIV_REG(ufcr_rfdiv);
Sascha Hauer587897f2005-04-29 22:46:40 +0100589
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100590 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100591
592 return 0;
593}
594
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200595/* half the RX buffer size */
596#define CTSTL 16
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598static int imx_startup(struct uart_port *port)
599{
600 struct imx_port *sport = (struct imx_port *)port;
601 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100602 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Sascha Hauer587897f2005-04-29 22:46:40 +0100604 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /* disable the DREN bit (Data Ready interrupt enable) before
607 * requesting IRQs
608 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100609 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100610
611 if (USE_IRDA(sport))
612 temp |= UCR4_IRSC;
613
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200614 /* set the trigger level for CTS */
615 temp &= ~(UCR4_CTSTL_MASK<< UCR4_CTSTL_SHF);
616 temp |= CTSTL<< UCR4_CTSTL_SHF;
617
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100618 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100620 if (USE_IRDA(sport)) {
621 /* reset fifo's and state machines */
622 int i = 100;
623 temp = readl(sport->port.membase + UCR2);
624 temp &= ~UCR2_SRST;
625 writel(temp, sport->port.membase + UCR2);
626 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
627 (--i > 0)) {
628 udelay(1);
629 }
630 }
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200633 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
634 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200636 if (sport->txirq > 0) {
637 retval = request_irq(sport->rxirq, imx_rxint, 0,
638 DRIVER_NAME, sport);
639 if (retval)
640 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200642 retval = request_irq(sport->txirq, imx_txint, 0,
643 DRIVER_NAME, sport);
644 if (retval)
645 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100647 /* do not use RTS IRQ on IrDA */
648 if (!USE_IRDA(sport)) {
649 retval = request_irq(sport->rtsirq, imx_rtsint,
650 (sport->rtsirq < MAX_INTERNAL_IRQ) ? 0 :
651 IRQF_TRIGGER_FALLING |
652 IRQF_TRIGGER_RISING,
653 DRIVER_NAME, sport);
654 if (retval)
655 goto error_out3;
656 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200657 } else {
658 retval = request_irq(sport->port.irq, imx_int, 0,
659 DRIVER_NAME, sport);
660 if (retval) {
661 free_irq(sport->port.irq, sport);
662 goto error_out1;
663 }
664 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /*
667 * Finally, clear and enable interrupts
668 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100669 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100671 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100672 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100673
674 if (USE_IRDA(sport)) {
675 temp |= UCR1_IREN;
676 temp &= ~(UCR1_RTSDEN);
677 }
678
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100679 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100681 temp = readl(sport->port.membase + UCR2);
682 temp |= (UCR2_RXEN | UCR2_TXEN);
683 writel(temp, sport->port.membase + UCR2);
684
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100685 if (USE_IRDA(sport)) {
686 /* clear RX-FIFO */
687 int i = 64;
688 while ((--i > 0) &&
689 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
690 barrier();
691 }
692 }
693
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200694 if (!cpu_is_mx1()) {
695 temp = readl(sport->port.membase + UCR3);
696 temp |= MX2_UCR3_RXDMUXSEL;
697 writel(temp, sport->port.membase + UCR3);
698 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200699
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100700 if (USE_IRDA(sport)) {
701 temp = readl(sport->port.membase + UCR4);
702 if (sport->irda_inv_rx)
703 temp |= UCR4_INVR;
704 else
705 temp &= ~(UCR4_INVR);
706 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
707
708 temp = readl(sport->port.membase + UCR3);
709 if (sport->irda_inv_tx)
710 temp |= UCR3_INVT;
711 else
712 temp &= ~(UCR3_INVT);
713 writel(temp, sport->port.membase + UCR3);
714 }
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 /*
717 * Enable modem status interrupts
718 */
719 spin_lock_irqsave(&sport->port.lock,flags);
720 imx_enable_ms(&sport->port);
721 spin_unlock_irqrestore(&sport->port.lock,flags);
722
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100723 if (USE_IRDA(sport)) {
724 struct imxuart_platform_data *pdata;
725 pdata = sport->port.dev->platform_data;
726 sport->irda_inv_rx = pdata->irda_inv_rx;
727 sport->irda_inv_tx = pdata->irda_inv_tx;
728 sport->trcv_delay = pdata->transceiver_delay;
729 if (pdata->irda_enable)
730 pdata->irda_enable(1);
731 }
732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return 0;
734
Sascha Hauerceca6292005-10-12 19:58:08 +0100735error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200736 if (sport->txirq)
737 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200739 if (sport->rxirq)
740 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100741error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return retval;
743}
744
745static void imx_shutdown(struct uart_port *port)
746{
747 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100748 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Fabian Godehardt2e146392009-06-11 14:38:38 +0100750 temp = readl(sport->port.membase + UCR2);
751 temp &= ~(UCR2_TXEN);
752 writel(temp, sport->port.membase + UCR2);
753
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100754 if (USE_IRDA(sport)) {
755 struct imxuart_platform_data *pdata;
756 pdata = sport->port.dev->platform_data;
757 if (pdata->irda_enable)
758 pdata->irda_enable(0);
759 }
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /*
762 * Stop our timer.
763 */
764 del_timer_sync(&sport->timer);
765
766 /*
767 * Free the interrupts
768 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200769 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100770 if (!USE_IRDA(sport))
771 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200772 free_irq(sport->txirq, sport);
773 free_irq(sport->rxirq, sport);
774 } else
775 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 /*
778 * Disable all interrupts, port and break condition.
779 */
780
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100781 temp = readl(sport->port.membase + UCR1);
782 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100783 if (USE_IRDA(sport))
784 temp &= ~(UCR1_IREN);
785
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100786 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789static void
Alan Cox606d0992006-12-08 02:38:45 -0800790imx_set_termios(struct uart_port *port, struct ktermios *termios,
791 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 struct imx_port *sport = (struct imx_port *)port;
794 unsigned long flags;
795 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
796 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca02009-06-11 14:52:23 +0100797 unsigned int div, ufcr;
798 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100799 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /*
802 * If we don't support modem control lines, don't allow
803 * these to be set.
804 */
805 if (0) {
806 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
807 termios->c_cflag |= CLOCAL;
808 }
809
810 /*
811 * We only support CS7 and CS8.
812 */
813 while ((termios->c_cflag & CSIZE) != CS7 &&
814 (termios->c_cflag & CSIZE) != CS8) {
815 termios->c_cflag &= ~CSIZE;
816 termios->c_cflag |= old_csize;
817 old_csize = CS8;
818 }
819
820 if ((termios->c_cflag & CSIZE) == CS8)
821 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
822 else
823 ucr2 = UCR2_SRST | UCR2_IRTS;
824
825 if (termios->c_cflag & CRTSCTS) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100826 if( sport->have_rtscts ) {
827 ucr2 &= ~UCR2_IRTS;
828 ucr2 |= UCR2_CTSC;
829 } else {
830 termios->c_cflag &= ~CRTSCTS;
831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833
834 if (termios->c_cflag & CSTOPB)
835 ucr2 |= UCR2_STPB;
836 if (termios->c_cflag & PARENB) {
837 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000838 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 ucr2 |= UCR2_PROE;
840 }
841
842 /*
843 * Ask the core to calculate the divisor for us.
844 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200845 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 quot = uart_get_divisor(port, baud);
847
848 spin_lock_irqsave(&sport->port.lock, flags);
849
850 sport->port.read_status_mask = 0;
851 if (termios->c_iflag & INPCK)
852 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
853 if (termios->c_iflag & (BRKINT | PARMRK))
854 sport->port.read_status_mask |= URXD_BRK;
855
856 /*
857 * Characters to ignore
858 */
859 sport->port.ignore_status_mask = 0;
860 if (termios->c_iflag & IGNPAR)
861 sport->port.ignore_status_mask |= URXD_PRERR;
862 if (termios->c_iflag & IGNBRK) {
863 sport->port.ignore_status_mask |= URXD_BRK;
864 /*
865 * If we're ignoring parity and break indicators,
866 * ignore overruns too (for real raw support).
867 */
868 if (termios->c_iflag & IGNPAR)
869 sport->port.ignore_status_mask |= URXD_OVRRUN;
870 }
871
872 del_timer_sync(&sport->timer);
873
874 /*
875 * Update the per-port timeout.
876 */
877 uart_update_timeout(port, termios->c_cflag, baud);
878
879 /*
880 * disable interrupts and drain transmitter
881 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100882 old_ucr1 = readl(sport->port.membase + UCR1);
883 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
884 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100886 while ( !(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 barrier();
888
889 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100890 old_txrxen = readl(sport->port.membase + UCR2);
891 writel(old_txrxen & ~( UCR2_TXEN | UCR2_RXEN),
892 sport->port.membase + UCR2);
893 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100895 if (USE_IRDA(sport)) {
896 /*
897 * use maximum available submodule frequency to
898 * avoid missing short pulses due to low sampling rate
899 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200900 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100901 } else {
902 div = sport->port.uartclk / (baud * 16);
903 if (div > 7)
904 div = 7;
905 if (!div)
906 div = 1;
907 }
Sascha Hauer036bb152008-07-05 10:02:44 +0200908
Oskar Schirmer534fca02009-06-11 14:52:23 +0100909 rational_best_approximation(16 * div * baud, sport->port.uartclk,
910 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +0200911
Alan Coxebd2c8f2009-09-19 13:13:28 -0700912 if (port->state && port->state->port.tty) {
Sascha Hauer1a2c4b32009-06-16 17:02:15 +0100913 tdiv64 = sport->port.uartclk;
914 tdiv64 *= num;
915 do_div(tdiv64, denom * 16 * div);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700916 tty_encode_baud_rate(sport->port.state->port.tty,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +0100917 (speed_t)tdiv64, (speed_t)tdiv64);
918 }
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100919
Oskar Schirmer534fca02009-06-11 14:52:23 +0100920 num -= 1;
921 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +0200922
923 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100924 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +0200925 writel(ufcr, sport->port.membase + UFCR);
926
Oskar Schirmer534fca02009-06-11 14:52:23 +0100927 writel(num, sport->port.membase + UBIR);
928 writel(denom, sport->port.membase + UBMR);
929
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200930 if (!cpu_is_mx1())
931 writel(sport->port.uartclk / div / 1000,
932 sport->port.membase + MX2_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100934 writel(old_ucr1, sport->port.membase + UCR1);
935
936 /* set the parity, stop bits and data size */
937 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
940 imx_enable_ms(&sport->port);
941
942 spin_unlock_irqrestore(&sport->port.lock, flags);
943}
944
945static const char *imx_type(struct uart_port *port)
946{
947 struct imx_port *sport = (struct imx_port *)port;
948
949 return sport->port.type == PORT_IMX ? "IMX" : NULL;
950}
951
952/*
953 * Release the memory region(s) being used by 'port'.
954 */
955static void imx_release_port(struct uart_port *port)
956{
Sascha Hauer3d454442008-04-17 08:47:32 +0100957 struct platform_device *pdev = to_platform_device(port->dev);
958 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Sascha Hauer3d454442008-04-17 08:47:32 +0100960 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
961 release_mem_region(mmres->start, mmres->end - mmres->start + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
964/*
965 * Request the memory region(s) being used by 'port'.
966 */
967static int imx_request_port(struct uart_port *port)
968{
Sascha Hauer3d454442008-04-17 08:47:32 +0100969 struct platform_device *pdev = to_platform_device(port->dev);
970 struct resource *mmres;
971 void *ret;
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 if (!mmres)
975 return -ENODEV;
976
977 ret = request_mem_region(mmres->start, mmres->end - mmres->start + 1,
978 "imx-uart");
979
980 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981}
982
983/*
984 * Configure/autoconfigure the port.
985 */
986static void imx_config_port(struct uart_port *port, int flags)
987{
988 struct imx_port *sport = (struct imx_port *)port;
989
990 if (flags & UART_CONFIG_TYPE &&
991 imx_request_port(&sport->port) == 0)
992 sport->port.type = PORT_IMX;
993}
994
995/*
996 * Verify the new serial_struct (for TIOCSSERIAL).
997 * The only change we allow are to the flags and type, and
998 * even then only between PORT_IMX and PORT_UNKNOWN
999 */
1000static int
1001imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1002{
1003 struct imx_port *sport = (struct imx_port *)port;
1004 int ret = 0;
1005
1006 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1007 ret = -EINVAL;
1008 if (sport->port.irq != ser->irq)
1009 ret = -EINVAL;
1010 if (ser->io_type != UPIO_MEM)
1011 ret = -EINVAL;
1012 if (sport->port.uartclk / 16 != ser->baud_base)
1013 ret = -EINVAL;
1014 if ((void *)sport->port.mapbase != ser->iomem_base)
1015 ret = -EINVAL;
1016 if (sport->port.iobase != ser->port)
1017 ret = -EINVAL;
1018 if (ser->hub6 != 0)
1019 ret = -EINVAL;
1020 return ret;
1021}
1022
1023static struct uart_ops imx_pops = {
1024 .tx_empty = imx_tx_empty,
1025 .set_mctrl = imx_set_mctrl,
1026 .get_mctrl = imx_get_mctrl,
1027 .stop_tx = imx_stop_tx,
1028 .start_tx = imx_start_tx,
1029 .stop_rx = imx_stop_rx,
1030 .enable_ms = imx_enable_ms,
1031 .break_ctl = imx_break_ctl,
1032 .startup = imx_startup,
1033 .shutdown = imx_shutdown,
1034 .set_termios = imx_set_termios,
1035 .type = imx_type,
1036 .release_port = imx_release_port,
1037 .request_port = imx_request_port,
1038 .config_port = imx_config_port,
1039 .verify_port = imx_verify_port,
1040};
1041
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001042static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001045static void imx_console_putchar(struct uart_port *port, int ch)
1046{
1047 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001048
1049 while (readl(sport->port.membase + UTS) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001050 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001051
1052 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001053}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055/*
1056 * Interrupts are disabled on entering
1057 */
1058static void
1059imx_console_write(struct console *co, const char *s, unsigned int count)
1060{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001061 struct imx_port *sport = imx_ports[co->index];
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001062 unsigned int old_ucr1, old_ucr2, ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 /*
1065 * First, save UCR1/2 and then disable interrupts
1066 */
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001067 ucr1 = old_ucr1 = readl(sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001068 old_ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001070 if (cpu_is_mx1())
1071 ucr1 |= MX1_UCR1_UARTCLKEN;
1072 ucr1 |= UCR1_UARTEN;
1073 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1074
1075 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001076
1077 writel(old_ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Russell Kingd3587882006-03-20 20:00:09 +00001079 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 /*
1082 * Finally, wait for transmitter to become empty
1083 * and restore UCR1/2
1084 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001085 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001087 writel(old_ucr1, sport->port.membase + UCR1);
1088 writel(old_ucr2, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
1091/*
1092 * If the port was already initialised (eg, by a boot loader),
1093 * try to determine the current setup.
1094 */
1095static void __init
1096imx_console_get_options(struct imx_port *sport, int *baud,
1097 int *parity, int *bits)
1098{
Sascha Hauer587897f2005-04-29 22:46:40 +01001099
Roel Kluin2e2eb502009-12-09 12:31:36 -08001100 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /* ok, the port was enabled */
1102 unsigned int ucr2, ubir,ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001103 unsigned int baud_raw;
1104 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001106 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 *parity = 'n';
1109 if (ucr2 & UCR2_PREN) {
1110 if (ucr2 & UCR2_PROE)
1111 *parity = 'o';
1112 else
1113 *parity = 'e';
1114 }
1115
1116 if (ucr2 & UCR2_WS)
1117 *bits = 8;
1118 else
1119 *bits = 7;
1120
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001121 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1122 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001124 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001125 if (ucfr_rfdiv == 6)
1126 ucfr_rfdiv = 7;
1127 else
1128 ucfr_rfdiv = 6 - ucfr_rfdiv;
1129
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001130 uartclk = clk_get_rate(sport->clk);
Sascha Hauer587897f2005-04-29 22:46:40 +01001131 uartclk /= ucfr_rfdiv;
1132
1133 { /*
1134 * The next code provides exact computation of
1135 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1136 * without need of float support or long long division,
1137 * which would be required to prevent 32bit arithmetic overflow
1138 */
1139 unsigned int mul = ubir + 1;
1140 unsigned int div = 16 * (ubmr + 1);
1141 unsigned int rem = uartclk % div;
1142
1143 baud_raw = (uartclk / div) * mul;
1144 baud_raw += (rem * mul + div / 2) / div;
1145 *baud = (baud_raw + 50) / 100 * 100;
1146 }
1147
1148 if(*baud != baud_raw)
1149 printk(KERN_INFO "Serial: Console IMX rounded baud rate from %d to %d\n",
1150 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152}
1153
1154static int __init
1155imx_console_setup(struct console *co, char *options)
1156{
1157 struct imx_port *sport;
1158 int baud = 9600;
1159 int bits = 8;
1160 int parity = 'n';
1161 int flow = 'n';
1162
1163 /*
1164 * Check whether an invalid uart number has been specified, and
1165 * if so, search for the first available port that does have
1166 * console support.
1167 */
1168 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1169 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001170 sport = imx_ports[co->index];
Eric Lammertse76afc42009-05-19 20:53:20 -04001171 if(sport == NULL)
1172 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 if (options)
1175 uart_parse_options(options, &baud, &parity, &bits, &flow);
1176 else
1177 imx_console_get_options(sport, &baud, &parity, &bits);
1178
Sascha Hauer587897f2005-04-29 22:46:40 +01001179 imx_setup_ufcr(sport, 0);
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1182}
1183
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001184static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001186 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 .write = imx_console_write,
1188 .device = uart_console_device,
1189 .setup = imx_console_setup,
1190 .flags = CON_PRINTBUFFER,
1191 .index = -1,
1192 .data = &imx_reg,
1193};
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195#define IMX_CONSOLE &imx_console
1196#else
1197#define IMX_CONSOLE NULL
1198#endif
1199
1200static struct uart_driver imx_reg = {
1201 .owner = THIS_MODULE,
1202 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001203 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 .major = SERIAL_IMX_MAJOR,
1205 .minor = MINOR_START,
1206 .nr = ARRAY_SIZE(imx_ports),
1207 .cons = IMX_CONSOLE,
1208};
1209
Russell King3ae5eae2005-11-09 22:32:44 +00001210static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001212 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001214 if (sport)
1215 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
Russell King3ae5eae2005-11-09 22:32:44 +00001220static int serial_imx_resume(struct platform_device *dev)
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_resume_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
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001230static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001232 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001233 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001234 void __iomem *base;
1235 int ret = 0;
1236 struct resource *res;
Sascha Hauer5b802342006-05-04 14:07:42 +01001237
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001238 sport = kzalloc(sizeof(*sport), GFP_KERNEL);
1239 if (!sport)
1240 return -ENOMEM;
1241
1242 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1243 if (!res) {
1244 ret = -ENODEV;
1245 goto free;
1246 }
1247
1248 base = ioremap(res->start, PAGE_SIZE);
1249 if (!base) {
1250 ret = -ENOMEM;
1251 goto free;
1252 }
1253
1254 sport->port.dev = &pdev->dev;
1255 sport->port.mapbase = res->start;
1256 sport->port.membase = base;
1257 sport->port.type = PORT_IMX,
1258 sport->port.iotype = UPIO_MEM;
1259 sport->port.irq = platform_get_irq(pdev, 0);
1260 sport->rxirq = platform_get_irq(pdev, 0);
1261 sport->txirq = platform_get_irq(pdev, 1);
1262 sport->rtsirq = platform_get_irq(pdev, 2);
1263 sport->port.fifosize = 32;
1264 sport->port.ops = &imx_pops;
1265 sport->port.flags = UPF_BOOT_AUTOCONF;
1266 sport->port.line = pdev->id;
1267 init_timer(&sport->timer);
1268 sport->timer.function = imx_timeout;
1269 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001270
Sascha Hauere65fb002009-02-16 14:29:10 +01001271 sport->clk = clk_get(&pdev->dev, "uart");
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001272 if (IS_ERR(sport->clk)) {
1273 ret = PTR_ERR(sport->clk);
1274 goto unmap;
1275 }
1276 clk_enable(sport->clk);
1277
1278 sport->port.uartclk = clk_get_rate(sport->clk);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001279
1280 imx_ports[pdev->id] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001281
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001282 pdata = pdev->dev.platform_data;
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001283 if (pdata && (pdata->flags & IMXUART_HAVE_RTSCTS))
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001284 sport->have_rtscts = 1;
Sascha Hauer5b802342006-05-04 14:07:42 +01001285
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001286#ifdef CONFIG_IRDA
1287 if (pdata && (pdata->flags & IMXUART_IRDA))
1288 sport->use_irda = 1;
1289#endif
1290
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001291 if (pdata && pdata->init) {
Darius Augulisc45e7d72008-09-02 10:19:29 +02001292 ret = pdata->init(pdev);
1293 if (ret)
1294 goto clkput;
1295 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001296
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001297 ret = uart_add_one_port(&imx_reg, &sport->port);
1298 if (ret)
1299 goto deinit;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001300 platform_set_drvdata(pdev, &sport->port);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001303deinit:
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001304 if (pdata && pdata->exit)
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001305 pdata->exit(pdev);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001306clkput:
1307 clk_put(sport->clk);
1308 clk_disable(sport->clk);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001309unmap:
1310 iounmap(sport->port.membase);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001311free:
1312 kfree(sport);
1313
1314 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001317static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001319 struct imxuart_platform_data *pdata;
1320 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001322 pdata = pdev->dev.platform_data;
1323
1324 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001326 if (sport) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 uart_remove_one_port(&imx_reg, &sport->port);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001328 clk_put(sport->clk);
1329 }
1330
1331 clk_disable(sport->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001333 if (pdata && pdata->exit)
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001334 pdata->exit(pdev);
1335
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001336 iounmap(sport->port.membase);
1337 kfree(sport);
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return 0;
1340}
1341
Russell King3ae5eae2005-11-09 22:32:44 +00001342static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001343 .probe = serial_imx_probe,
1344 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 .suspend = serial_imx_suspend,
1347 .resume = serial_imx_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001348 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001349 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001350 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001351 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352};
1353
1354static int __init imx_serial_init(void)
1355{
1356 int ret;
1357
1358 printk(KERN_INFO "Serial: IMX driver\n");
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 ret = uart_register_driver(&imx_reg);
1361 if (ret)
1362 return ret;
1363
Russell King3ae5eae2005-11-09 22:32:44 +00001364 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (ret != 0)
1366 uart_unregister_driver(&imx_reg);
1367
1368 return 0;
1369}
1370
1371static void __exit imx_serial_exit(void)
1372{
Russell Kingc889b892005-11-21 17:05:21 +00001373 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001374 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
1377module_init(imx_serial_init);
1378module_exit(imx_serial_exit);
1379
1380MODULE_AUTHOR("Sascha Hauer");
1381MODULE_DESCRIPTION("IMX generic serial port driver");
1382MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001383MODULE_ALIAS("platform:imx-uart");