blob: 4315b23590bd9895ae867f9020446b33b8aae407 [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 */
123#define UCR4_CTSTL_32 (32<<10) /* CTS trigger level (32 chars) */
124#define UCR4_INVR (1<<9) /* Inverted infrared reception */
125#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
126#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
127#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
128#define UCR4_IRSC (1<<5) /* IR special case */
129#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
130#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
131#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
132#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
133#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
134#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100135#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100136#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
137#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
138#define USR1_RTSS (1<<14) /* RTS pin status */
139#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
140#define USR1_RTSD (1<<12) /* RTS delta */
141#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
142#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
143#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
144#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
145#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
146#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
147#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
148#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
149#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
150#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
151#define USR2_IDLE (1<<12) /* Idle condition */
152#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
153#define USR2_WAKE (1<<7) /* Wake */
154#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
155#define USR2_TXDC (1<<3) /* Transmitter complete */
156#define USR2_BRCD (1<<2) /* Break condition */
157#define USR2_ORE (1<<1) /* Overrun error */
158#define USR2_RDR (1<<0) /* Recv data ready */
159#define UTS_FRCPERR (1<<13) /* Force parity error */
160#define UTS_LOOP (1<<12) /* Loop tx and rx */
161#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
162#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
163#define UTS_TXFULL (1<<4) /* TxFIFO full */
164#define UTS_RXFULL (1<<3) /* RxFIFO full */
165#define UTS_SOFTRST (1<<0) /* Software reset */
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/* We've been assigned a range on the "Low-density serial ports" major */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200168#define SERIAL_IMX_MAJOR 207
169#define MINOR_START 16
170#define DEV_NAME "ttymxc"
Sascha Hauer9d631b82008-12-18 11:08:55 +0100171#define MAX_INTERNAL_IRQ MXC_INTERNAL_IRQS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * This determines how often we check the modem status signals
175 * for any change. They generally aren't connected to an IRQ
176 * so we have to poll them. We also check immediately before
177 * filling the TX fifo incase CTS has been dropped.
178 */
179#define MCTRL_TIMEOUT (250*HZ/1000)
180
181#define DRIVER_NAME "IMX-uart"
182
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200183#define UART_NR 8
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185struct imx_port {
186 struct uart_port port;
187 struct timer_list timer;
188 unsigned int old_status;
Sascha Hauer5b802342006-05-04 14:07:42 +0100189 int txirq,rxirq,rtsirq;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100190 unsigned int have_rtscts:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100191 unsigned int use_irda:1;
192 unsigned int irda_inv_rx:1;
193 unsigned int irda_inv_tx:1;
194 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200195 struct clk *clk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100198#ifdef CONFIG_IRDA
199#define USE_IRDA(sport) ((sport)->use_irda)
200#else
201#define USE_IRDA(sport) (0)
202#endif
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204/*
205 * Handle any change of modem status signal since we were last called.
206 */
207static void imx_mctrl_check(struct imx_port *sport)
208{
209 unsigned int status, changed;
210
211 status = sport->port.ops->get_mctrl(&sport->port);
212 changed = status ^ sport->old_status;
213
214 if (changed == 0)
215 return;
216
217 sport->old_status = status;
218
219 if (changed & TIOCM_RI)
220 sport->port.icount.rng++;
221 if (changed & TIOCM_DSR)
222 sport->port.icount.dsr++;
223 if (changed & TIOCM_CAR)
224 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
225 if (changed & TIOCM_CTS)
226 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
227
Alan Coxbdc04e32009-09-19 13:13:31 -0700228 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231/*
232 * This is our per-port timeout handler, for checking the
233 * modem status signals.
234 */
235static void imx_timeout(unsigned long data)
236{
237 struct imx_port *sport = (struct imx_port *)data;
238 unsigned long flags;
239
Alan Coxebd2c8f2009-09-19 13:13:28 -0700240 if (sport->port.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 spin_lock_irqsave(&sport->port.lock, flags);
242 imx_mctrl_check(sport);
243 spin_unlock_irqrestore(&sport->port.lock, flags);
244
245 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
246 }
247}
248
249/*
250 * interrupts disabled on entry
251 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100252static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100255 unsigned long temp;
256
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100257 if (USE_IRDA(sport)) {
258 /* half duplex - wait for end of transmission */
259 int n = 256;
260 while ((--n > 0) &&
261 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
262 udelay(5);
263 barrier();
264 }
265 /*
266 * irda transceiver - wait a bit more to avoid
267 * cutoff, hardware dependent
268 */
269 udelay(sport->trcv_delay);
270
271 /*
272 * half duplex - reactivate receive mode,
273 * flush receive pipe echo crap
274 */
275 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
276 temp = readl(sport->port.membase + UCR1);
277 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
278 writel(temp, sport->port.membase + UCR1);
279
280 temp = readl(sport->port.membase + UCR4);
281 temp &= ~(UCR4_TCEN);
282 writel(temp, sport->port.membase + UCR4);
283
284 while (readl(sport->port.membase + URXD0) &
285 URXD_CHARRDY)
286 barrier();
287
288 temp = readl(sport->port.membase + UCR1);
289 temp |= UCR1_RRDYEN;
290 writel(temp, sport->port.membase + UCR1);
291
292 temp = readl(sport->port.membase + UCR4);
293 temp |= UCR4_DREN;
294 writel(temp, sport->port.membase + UCR4);
295 }
296 return;
297 }
298
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100299 temp = readl(sport->port.membase + UCR1);
300 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303/*
304 * interrupts disabled on entry
305 */
306static void imx_stop_rx(struct uart_port *port)
307{
308 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100309 unsigned long temp;
310
311 temp = readl(sport->port.membase + UCR2);
312 writel(temp &~ UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315/*
316 * Set the modem control timer to fire immediately.
317 */
318static void imx_enable_ms(struct uart_port *port)
319{
320 struct imx_port *sport = (struct imx_port *)port;
321
322 mod_timer(&sport->timer, jiffies);
323}
324
325static inline void imx_transmit_buffer(struct imx_port *sport)
326{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700327 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100329 while (!(readl(sport->port.membase + UTS) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 /* send xmit->buf[xmit->tail]
331 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100332 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100333 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 sport->port.icount.tx++;
335 if (uart_circ_empty(xmit))
336 break;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Fabian Godehardt977757312009-06-11 14:37:19 +0100339 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
340 uart_write_wakeup(&sport->port);
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100343 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346/*
347 * interrupts disabled on entry
348 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100349static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100352 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100354 if (USE_IRDA(sport)) {
355 /* half duplex in IrDA mode; have to disable receive mode */
356 temp = readl(sport->port.membase + UCR4);
357 temp &= ~(UCR4_DREN);
358 writel(temp, sport->port.membase + UCR4);
359
360 temp = readl(sport->port.membase + UCR1);
361 temp &= ~(UCR1_RRDYEN);
362 writel(temp, sport->port.membase + UCR1);
363 }
364
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100365 temp = readl(sport->port.membase + UCR1);
366 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100368 if (USE_IRDA(sport)) {
369 temp = readl(sport->port.membase + UCR1);
370 temp |= UCR1_TRDYEN;
371 writel(temp, sport->port.membase + UCR1);
372
373 temp = readl(sport->port.membase + UCR4);
374 temp |= UCR4_TCEN;
375 writel(temp, sport->port.membase + UCR4);
376 }
377
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100378 if (readl(sport->port.membase + UTS) & UTS_TXEMPTY)
379 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
David Howells7d12e782006-10-05 14:55:46 +0100382static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100383{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800384 struct imx_port *sport = dev_id;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100385 unsigned int val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100386 unsigned long flags;
387
388 spin_lock_irqsave(&sport->port.lock, flags);
389
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100390 writel(USR1_RTSD, sport->port.membase + USR1);
Sascha Hauerceca6292005-10-12 19:58:08 +0100391 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700392 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100393
394 spin_unlock_irqrestore(&sport->port.lock, flags);
395 return IRQ_HANDLED;
396}
397
David Howells7d12e782006-10-05 14:55:46 +0100398static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800400 struct imx_port *sport = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700401 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 unsigned long flags;
403
404 spin_lock_irqsave(&sport->port.lock,flags);
405 if (sport->port.x_char)
406 {
407 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100408 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 goto out;
410 }
411
412 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100413 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 goto out;
415 }
416
417 imx_transmit_buffer(sport);
418
419 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
420 uart_write_wakeup(&sport->port);
421
422out:
423 spin_unlock_irqrestore(&sport->port.lock,flags);
424 return IRQ_HANDLED;
425}
426
David Howells7d12e782006-10-05 14:55:46 +0100427static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 struct imx_port *sport = dev_id;
430 unsigned int rx,flg,ignored = 0;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700431 struct tty_struct *tty = sport->port.state->port.tty;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100432 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 spin_lock_irqsave(&sport->port.lock,flags);
435
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100436 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 flg = TTY_NORMAL;
438 sport->port.icount.rx++;
439
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100440 rx = readl(sport->port.membase + URXD0);
441
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100442 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100443 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100444 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100445 if (uart_handle_break(&sport->port))
446 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100449 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100450 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Sascha Hauer864eeed2008-04-17 08:39:22 +0100452 if (rx & (URXD_PRERR | URXD_OVRRUN | URXD_FRMERR) ) {
453 if (rx & URXD_PRERR)
454 sport->port.icount.parity++;
455 else if (rx & URXD_FRMERR)
456 sport->port.icount.frame++;
457 if (rx & URXD_OVRRUN)
458 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Sascha Hauer864eeed2008-04-17 08:39:22 +0100460 if (rx & sport->port.ignore_status_mask) {
461 if (++ignored > 100)
462 goto out;
463 continue;
464 }
465
466 rx &= sport->port.read_status_mask;
467
468 if (rx & URXD_PRERR)
469 flg = TTY_PARITY;
470 else if (rx & URXD_FRMERR)
471 flg = TTY_FRAME;
472 if (rx & URXD_OVRRUN)
473 flg = TTY_OVERRUN;
474
475#ifdef SUPPORT_SYSRQ
476 sport->port.sysrq = 0;
477#endif
478 }
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 tty_insert_flip_char(tty, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483out:
484 spin_unlock_irqrestore(&sport->port.lock,flags);
485 tty_flip_buffer_push(tty);
486 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200489static irqreturn_t imx_int(int irq, void *dev_id)
490{
491 struct imx_port *sport = dev_id;
492 unsigned int sts;
493
494 sts = readl(sport->port.membase + USR1);
495
496 if (sts & USR1_RRDY)
497 imx_rxint(irq, dev_id);
498
499 if (sts & USR1_TRDY &&
500 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
501 imx_txint(irq, dev_id);
502
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200503 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200504 imx_rtsint(irq, dev_id);
505
506 return IRQ_HANDLED;
507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/*
510 * Return TIOCSER_TEMT when transmitter is not busy.
511 */
512static unsigned int imx_tx_empty(struct uart_port *port)
513{
514 struct imx_port *sport = (struct imx_port *)port;
515
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100516 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100519/*
520 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
521 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static unsigned int imx_get_mctrl(struct uart_port *port)
523{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100524 struct imx_port *sport = (struct imx_port *)port;
525 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100526
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100527 if (readl(sport->port.membase + USR1) & USR1_RTSS)
528 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100529
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100530 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
531 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100532
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100533 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
537{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100538 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100539 unsigned long temp;
540
541 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100542
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100543 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100544 temp |= UCR2_CTS;
545
546 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
549/*
550 * Interrupts always disabled.
551 */
552static void imx_break_ctl(struct uart_port *port, int break_state)
553{
554 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100555 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 spin_lock_irqsave(&sport->port.lock, flags);
558
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100559 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if ( break_state != 0 )
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100562 temp |= UCR1_SNDBRK;
563
564 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 spin_unlock_irqrestore(&sport->port.lock, flags);
567}
568
569#define TXTL 2 /* reset default */
570#define RXTL 1 /* reset default */
571
Sascha Hauer587897f2005-04-29 22:46:40 +0100572static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
573{
574 unsigned int val;
575 unsigned int ufcr_rfdiv;
576
577 /* set receiver / transmitter trigger level.
578 * RFDIV is set such way to satisfy requested uartclk value
579 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100580 val = TXTL << 10 | RXTL;
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200581 ufcr_rfdiv = (clk_get_rate(sport->clk) + sport->port.uartclk / 2)
582 / sport->port.uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +0100583
584 if(!ufcr_rfdiv)
585 ufcr_rfdiv = 1;
586
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100587 val |= UFCR_RFDIV_REG(ufcr_rfdiv);
Sascha Hauer587897f2005-04-29 22:46:40 +0100588
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100589 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100590
591 return 0;
592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594static int imx_startup(struct uart_port *port)
595{
596 struct imx_port *sport = (struct imx_port *)port;
597 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100598 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Sascha Hauer587897f2005-04-29 22:46:40 +0100600 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 /* disable the DREN bit (Data Ready interrupt enable) before
603 * requesting IRQs
604 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100605 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100606
607 if (USE_IRDA(sport))
608 temp |= UCR4_IRSC;
609
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100610 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100612 if (USE_IRDA(sport)) {
613 /* reset fifo's and state machines */
614 int i = 100;
615 temp = readl(sport->port.membase + UCR2);
616 temp &= ~UCR2_SRST;
617 writel(temp, sport->port.membase + UCR2);
618 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
619 (--i > 0)) {
620 udelay(1);
621 }
622 }
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200625 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
626 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200628 if (sport->txirq > 0) {
629 retval = request_irq(sport->rxirq, imx_rxint, 0,
630 DRIVER_NAME, sport);
631 if (retval)
632 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200634 retval = request_irq(sport->txirq, imx_txint, 0,
635 DRIVER_NAME, sport);
636 if (retval)
637 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100639 /* do not use RTS IRQ on IrDA */
640 if (!USE_IRDA(sport)) {
641 retval = request_irq(sport->rtsirq, imx_rtsint,
642 (sport->rtsirq < MAX_INTERNAL_IRQ) ? 0 :
643 IRQF_TRIGGER_FALLING |
644 IRQF_TRIGGER_RISING,
645 DRIVER_NAME, sport);
646 if (retval)
647 goto error_out3;
648 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200649 } else {
650 retval = request_irq(sport->port.irq, imx_int, 0,
651 DRIVER_NAME, sport);
652 if (retval) {
653 free_irq(sport->port.irq, sport);
654 goto error_out1;
655 }
656 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /*
659 * Finally, clear and enable interrupts
660 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100661 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100663 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100664 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100665
666 if (USE_IRDA(sport)) {
667 temp |= UCR1_IREN;
668 temp &= ~(UCR1_RTSDEN);
669 }
670
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100671 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100673 temp = readl(sport->port.membase + UCR2);
674 temp |= (UCR2_RXEN | UCR2_TXEN);
675 writel(temp, sport->port.membase + UCR2);
676
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100677 if (USE_IRDA(sport)) {
678 /* clear RX-FIFO */
679 int i = 64;
680 while ((--i > 0) &&
681 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
682 barrier();
683 }
684 }
685
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200686 if (!cpu_is_mx1()) {
687 temp = readl(sport->port.membase + UCR3);
688 temp |= MX2_UCR3_RXDMUXSEL;
689 writel(temp, sport->port.membase + UCR3);
690 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200691
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100692 if (USE_IRDA(sport)) {
693 temp = readl(sport->port.membase + UCR4);
694 if (sport->irda_inv_rx)
695 temp |= UCR4_INVR;
696 else
697 temp &= ~(UCR4_INVR);
698 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
699
700 temp = readl(sport->port.membase + UCR3);
701 if (sport->irda_inv_tx)
702 temp |= UCR3_INVT;
703 else
704 temp &= ~(UCR3_INVT);
705 writel(temp, sport->port.membase + UCR3);
706 }
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /*
709 * Enable modem status interrupts
710 */
711 spin_lock_irqsave(&sport->port.lock,flags);
712 imx_enable_ms(&sport->port);
713 spin_unlock_irqrestore(&sport->port.lock,flags);
714
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100715 if (USE_IRDA(sport)) {
716 struct imxuart_platform_data *pdata;
717 pdata = sport->port.dev->platform_data;
718 sport->irda_inv_rx = pdata->irda_inv_rx;
719 sport->irda_inv_tx = pdata->irda_inv_tx;
720 sport->trcv_delay = pdata->transceiver_delay;
721 if (pdata->irda_enable)
722 pdata->irda_enable(1);
723 }
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return 0;
726
Sascha Hauerceca6292005-10-12 19:58:08 +0100727error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200728 if (sport->txirq)
729 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200731 if (sport->rxirq)
732 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100733error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return retval;
735}
736
737static void imx_shutdown(struct uart_port *port)
738{
739 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100740 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Fabian Godehardt2e146392009-06-11 14:38:38 +0100742 temp = readl(sport->port.membase + UCR2);
743 temp &= ~(UCR2_TXEN);
744 writel(temp, sport->port.membase + UCR2);
745
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100746 if (USE_IRDA(sport)) {
747 struct imxuart_platform_data *pdata;
748 pdata = sport->port.dev->platform_data;
749 if (pdata->irda_enable)
750 pdata->irda_enable(0);
751 }
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /*
754 * Stop our timer.
755 */
756 del_timer_sync(&sport->timer);
757
758 /*
759 * Free the interrupts
760 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200761 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100762 if (!USE_IRDA(sport))
763 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200764 free_irq(sport->txirq, sport);
765 free_irq(sport->rxirq, sport);
766 } else
767 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 /*
770 * Disable all interrupts, port and break condition.
771 */
772
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100773 temp = readl(sport->port.membase + UCR1);
774 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100775 if (USE_IRDA(sport))
776 temp &= ~(UCR1_IREN);
777
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100778 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
781static void
Alan Cox606d0992006-12-08 02:38:45 -0800782imx_set_termios(struct uart_port *port, struct ktermios *termios,
783 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 struct imx_port *sport = (struct imx_port *)port;
786 unsigned long flags;
787 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
788 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca02009-06-11 14:52:23 +0100789 unsigned int div, ufcr;
790 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100791 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /*
794 * If we don't support modem control lines, don't allow
795 * these to be set.
796 */
797 if (0) {
798 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
799 termios->c_cflag |= CLOCAL;
800 }
801
802 /*
803 * We only support CS7 and CS8.
804 */
805 while ((termios->c_cflag & CSIZE) != CS7 &&
806 (termios->c_cflag & CSIZE) != CS8) {
807 termios->c_cflag &= ~CSIZE;
808 termios->c_cflag |= old_csize;
809 old_csize = CS8;
810 }
811
812 if ((termios->c_cflag & CSIZE) == CS8)
813 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
814 else
815 ucr2 = UCR2_SRST | UCR2_IRTS;
816
817 if (termios->c_cflag & CRTSCTS) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100818 if( sport->have_rtscts ) {
819 ucr2 &= ~UCR2_IRTS;
820 ucr2 |= UCR2_CTSC;
821 } else {
822 termios->c_cflag &= ~CRTSCTS;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825
826 if (termios->c_cflag & CSTOPB)
827 ucr2 |= UCR2_STPB;
828 if (termios->c_cflag & PARENB) {
829 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000830 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 ucr2 |= UCR2_PROE;
832 }
833
834 /*
835 * Ask the core to calculate the divisor for us.
836 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200837 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 quot = uart_get_divisor(port, baud);
839
840 spin_lock_irqsave(&sport->port.lock, flags);
841
842 sport->port.read_status_mask = 0;
843 if (termios->c_iflag & INPCK)
844 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
845 if (termios->c_iflag & (BRKINT | PARMRK))
846 sport->port.read_status_mask |= URXD_BRK;
847
848 /*
849 * Characters to ignore
850 */
851 sport->port.ignore_status_mask = 0;
852 if (termios->c_iflag & IGNPAR)
853 sport->port.ignore_status_mask |= URXD_PRERR;
854 if (termios->c_iflag & IGNBRK) {
855 sport->port.ignore_status_mask |= URXD_BRK;
856 /*
857 * If we're ignoring parity and break indicators,
858 * ignore overruns too (for real raw support).
859 */
860 if (termios->c_iflag & IGNPAR)
861 sport->port.ignore_status_mask |= URXD_OVRRUN;
862 }
863
864 del_timer_sync(&sport->timer);
865
866 /*
867 * Update the per-port timeout.
868 */
869 uart_update_timeout(port, termios->c_cflag, baud);
870
871 /*
872 * disable interrupts and drain transmitter
873 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100874 old_ucr1 = readl(sport->port.membase + UCR1);
875 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
876 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100878 while ( !(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 barrier();
880
881 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100882 old_txrxen = readl(sport->port.membase + UCR2);
883 writel(old_txrxen & ~( UCR2_TXEN | UCR2_RXEN),
884 sport->port.membase + UCR2);
885 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100887 if (USE_IRDA(sport)) {
888 /*
889 * use maximum available submodule frequency to
890 * avoid missing short pulses due to low sampling rate
891 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200892 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100893 } else {
894 div = sport->port.uartclk / (baud * 16);
895 if (div > 7)
896 div = 7;
897 if (!div)
898 div = 1;
899 }
Sascha Hauer036bb152008-07-05 10:02:44 +0200900
Oskar Schirmer534fca02009-06-11 14:52:23 +0100901 rational_best_approximation(16 * div * baud, sport->port.uartclk,
902 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +0200903
Alan Coxebd2c8f2009-09-19 13:13:28 -0700904 if (port->state && port->state->port.tty) {
Sascha Hauer1a2c4b32009-06-16 17:02:15 +0100905 tdiv64 = sport->port.uartclk;
906 tdiv64 *= num;
907 do_div(tdiv64, denom * 16 * div);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700908 tty_encode_baud_rate(sport->port.state->port.tty,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +0100909 (speed_t)tdiv64, (speed_t)tdiv64);
910 }
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100911
Oskar Schirmer534fca02009-06-11 14:52:23 +0100912 num -= 1;
913 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +0200914
915 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100916 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +0200917 writel(ufcr, sport->port.membase + UFCR);
918
Oskar Schirmer534fca02009-06-11 14:52:23 +0100919 writel(num, sport->port.membase + UBIR);
920 writel(denom, sport->port.membase + UBMR);
921
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200922 if (!cpu_is_mx1())
923 writel(sport->port.uartclk / div / 1000,
924 sport->port.membase + MX2_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100926 writel(old_ucr1, sport->port.membase + UCR1);
927
928 /* set the parity, stop bits and data size */
929 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
932 imx_enable_ms(&sport->port);
933
934 spin_unlock_irqrestore(&sport->port.lock, flags);
935}
936
937static const char *imx_type(struct uart_port *port)
938{
939 struct imx_port *sport = (struct imx_port *)port;
940
941 return sport->port.type == PORT_IMX ? "IMX" : NULL;
942}
943
944/*
945 * Release the memory region(s) being used by 'port'.
946 */
947static void imx_release_port(struct uart_port *port)
948{
Sascha Hauer3d454442008-04-17 08:47:32 +0100949 struct platform_device *pdev = to_platform_device(port->dev);
950 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Sascha Hauer3d454442008-04-17 08:47:32 +0100952 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
953 release_mem_region(mmres->start, mmres->end - mmres->start + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
956/*
957 * Request the memory region(s) being used by 'port'.
958 */
959static int imx_request_port(struct uart_port *port)
960{
Sascha Hauer3d454442008-04-17 08:47:32 +0100961 struct platform_device *pdev = to_platform_device(port->dev);
962 struct resource *mmres;
963 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Sascha Hauer3d454442008-04-17 08:47:32 +0100965 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
966 if (!mmres)
967 return -ENODEV;
968
969 ret = request_mem_region(mmres->start, mmres->end - mmres->start + 1,
970 "imx-uart");
971
972 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
975/*
976 * Configure/autoconfigure the port.
977 */
978static void imx_config_port(struct uart_port *port, int flags)
979{
980 struct imx_port *sport = (struct imx_port *)port;
981
982 if (flags & UART_CONFIG_TYPE &&
983 imx_request_port(&sport->port) == 0)
984 sport->port.type = PORT_IMX;
985}
986
987/*
988 * Verify the new serial_struct (for TIOCSSERIAL).
989 * The only change we allow are to the flags and type, and
990 * even then only between PORT_IMX and PORT_UNKNOWN
991 */
992static int
993imx_verify_port(struct uart_port *port, struct serial_struct *ser)
994{
995 struct imx_port *sport = (struct imx_port *)port;
996 int ret = 0;
997
998 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
999 ret = -EINVAL;
1000 if (sport->port.irq != ser->irq)
1001 ret = -EINVAL;
1002 if (ser->io_type != UPIO_MEM)
1003 ret = -EINVAL;
1004 if (sport->port.uartclk / 16 != ser->baud_base)
1005 ret = -EINVAL;
1006 if ((void *)sport->port.mapbase != ser->iomem_base)
1007 ret = -EINVAL;
1008 if (sport->port.iobase != ser->port)
1009 ret = -EINVAL;
1010 if (ser->hub6 != 0)
1011 ret = -EINVAL;
1012 return ret;
1013}
1014
1015static struct uart_ops imx_pops = {
1016 .tx_empty = imx_tx_empty,
1017 .set_mctrl = imx_set_mctrl,
1018 .get_mctrl = imx_get_mctrl,
1019 .stop_tx = imx_stop_tx,
1020 .start_tx = imx_start_tx,
1021 .stop_rx = imx_stop_rx,
1022 .enable_ms = imx_enable_ms,
1023 .break_ctl = imx_break_ctl,
1024 .startup = imx_startup,
1025 .shutdown = imx_shutdown,
1026 .set_termios = imx_set_termios,
1027 .type = imx_type,
1028 .release_port = imx_release_port,
1029 .request_port = imx_request_port,
1030 .config_port = imx_config_port,
1031 .verify_port = imx_verify_port,
1032};
1033
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001034static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001037static void imx_console_putchar(struct uart_port *port, int ch)
1038{
1039 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001040
1041 while (readl(sport->port.membase + UTS) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001042 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001043
1044 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001045}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047/*
1048 * Interrupts are disabled on entering
1049 */
1050static void
1051imx_console_write(struct console *co, const char *s, unsigned int count)
1052{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001053 struct imx_port *sport = imx_ports[co->index];
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001054 unsigned int old_ucr1, old_ucr2, ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 /*
1057 * First, save UCR1/2 and then disable interrupts
1058 */
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001059 ucr1 = old_ucr1 = readl(sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001060 old_ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001062 if (cpu_is_mx1())
1063 ucr1 |= MX1_UCR1_UARTCLKEN;
1064 ucr1 |= UCR1_UARTEN;
1065 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1066
1067 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001068
1069 writel(old_ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Russell Kingd3587882006-03-20 20:00:09 +00001071 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 /*
1074 * Finally, wait for transmitter to become empty
1075 * and restore UCR1/2
1076 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001077 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001079 writel(old_ucr1, sport->port.membase + UCR1);
1080 writel(old_ucr2, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
1083/*
1084 * If the port was already initialised (eg, by a boot loader),
1085 * try to determine the current setup.
1086 */
1087static void __init
1088imx_console_get_options(struct imx_port *sport, int *baud,
1089 int *parity, int *bits)
1090{
Sascha Hauer587897f2005-04-29 22:46:40 +01001091
Roel Kluin2e2eb502009-12-09 12:31:36 -08001092 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 /* ok, the port was enabled */
1094 unsigned int ucr2, ubir,ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001095 unsigned int baud_raw;
1096 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001098 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 *parity = 'n';
1101 if (ucr2 & UCR2_PREN) {
1102 if (ucr2 & UCR2_PROE)
1103 *parity = 'o';
1104 else
1105 *parity = 'e';
1106 }
1107
1108 if (ucr2 & UCR2_WS)
1109 *bits = 8;
1110 else
1111 *bits = 7;
1112
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001113 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1114 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001116 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001117 if (ucfr_rfdiv == 6)
1118 ucfr_rfdiv = 7;
1119 else
1120 ucfr_rfdiv = 6 - ucfr_rfdiv;
1121
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001122 uartclk = clk_get_rate(sport->clk);
Sascha Hauer587897f2005-04-29 22:46:40 +01001123 uartclk /= ucfr_rfdiv;
1124
1125 { /*
1126 * The next code provides exact computation of
1127 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1128 * without need of float support or long long division,
1129 * which would be required to prevent 32bit arithmetic overflow
1130 */
1131 unsigned int mul = ubir + 1;
1132 unsigned int div = 16 * (ubmr + 1);
1133 unsigned int rem = uartclk % div;
1134
1135 baud_raw = (uartclk / div) * mul;
1136 baud_raw += (rem * mul + div / 2) / div;
1137 *baud = (baud_raw + 50) / 100 * 100;
1138 }
1139
1140 if(*baud != baud_raw)
1141 printk(KERN_INFO "Serial: Console IMX rounded baud rate from %d to %d\n",
1142 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
1144}
1145
1146static int __init
1147imx_console_setup(struct console *co, char *options)
1148{
1149 struct imx_port *sport;
1150 int baud = 9600;
1151 int bits = 8;
1152 int parity = 'n';
1153 int flow = 'n';
1154
1155 /*
1156 * Check whether an invalid uart number has been specified, and
1157 * if so, search for the first available port that does have
1158 * console support.
1159 */
1160 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1161 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001162 sport = imx_ports[co->index];
Eric Lammertse76afc42009-05-19 20:53:20 -04001163 if(sport == NULL)
1164 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 if (options)
1167 uart_parse_options(options, &baud, &parity, &bits, &flow);
1168 else
1169 imx_console_get_options(sport, &baud, &parity, &bits);
1170
Sascha Hauer587897f2005-04-29 22:46:40 +01001171 imx_setup_ufcr(sport, 0);
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1174}
1175
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001176static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001178 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 .write = imx_console_write,
1180 .device = uart_console_device,
1181 .setup = imx_console_setup,
1182 .flags = CON_PRINTBUFFER,
1183 .index = -1,
1184 .data = &imx_reg,
1185};
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187#define IMX_CONSOLE &imx_console
1188#else
1189#define IMX_CONSOLE NULL
1190#endif
1191
1192static struct uart_driver imx_reg = {
1193 .owner = THIS_MODULE,
1194 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001195 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 .major = SERIAL_IMX_MAJOR,
1197 .minor = MINOR_START,
1198 .nr = ARRAY_SIZE(imx_ports),
1199 .cons = IMX_CONSOLE,
1200};
1201
Russell King3ae5eae2005-11-09 22:32:44 +00001202static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001204 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001206 if (sport)
1207 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Russell King3ae5eae2005-11-09 22:32:44 +00001212static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001214 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001216 if (sport)
1217 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001222static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001224 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001225 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001226 void __iomem *base;
1227 int ret = 0;
1228 struct resource *res;
Sascha Hauer5b802342006-05-04 14:07:42 +01001229
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001230 sport = kzalloc(sizeof(*sport), GFP_KERNEL);
1231 if (!sport)
1232 return -ENOMEM;
1233
1234 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1235 if (!res) {
1236 ret = -ENODEV;
1237 goto free;
1238 }
1239
1240 base = ioremap(res->start, PAGE_SIZE);
1241 if (!base) {
1242 ret = -ENOMEM;
1243 goto free;
1244 }
1245
1246 sport->port.dev = &pdev->dev;
1247 sport->port.mapbase = res->start;
1248 sport->port.membase = base;
1249 sport->port.type = PORT_IMX,
1250 sport->port.iotype = UPIO_MEM;
1251 sport->port.irq = platform_get_irq(pdev, 0);
1252 sport->rxirq = platform_get_irq(pdev, 0);
1253 sport->txirq = platform_get_irq(pdev, 1);
1254 sport->rtsirq = platform_get_irq(pdev, 2);
1255 sport->port.fifosize = 32;
1256 sport->port.ops = &imx_pops;
1257 sport->port.flags = UPF_BOOT_AUTOCONF;
1258 sport->port.line = pdev->id;
1259 init_timer(&sport->timer);
1260 sport->timer.function = imx_timeout;
1261 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001262
Sascha Hauere65fb002009-02-16 14:29:10 +01001263 sport->clk = clk_get(&pdev->dev, "uart");
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001264 if (IS_ERR(sport->clk)) {
1265 ret = PTR_ERR(sport->clk);
1266 goto unmap;
1267 }
1268 clk_enable(sport->clk);
1269
1270 sport->port.uartclk = clk_get_rate(sport->clk);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001271
1272 imx_ports[pdev->id] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001273
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001274 pdata = pdev->dev.platform_data;
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001275 if (pdata && (pdata->flags & IMXUART_HAVE_RTSCTS))
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001276 sport->have_rtscts = 1;
Sascha Hauer5b802342006-05-04 14:07:42 +01001277
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001278#ifdef CONFIG_IRDA
1279 if (pdata && (pdata->flags & IMXUART_IRDA))
1280 sport->use_irda = 1;
1281#endif
1282
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001283 if (pdata && pdata->init) {
Darius Augulisc45e7d72008-09-02 10:19:29 +02001284 ret = pdata->init(pdev);
1285 if (ret)
1286 goto clkput;
1287 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001288
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001289 ret = uart_add_one_port(&imx_reg, &sport->port);
1290 if (ret)
1291 goto deinit;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001292 platform_set_drvdata(pdev, &sport->port);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001295deinit:
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001296 if (pdata && pdata->exit)
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001297 pdata->exit(pdev);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001298clkput:
1299 clk_put(sport->clk);
1300 clk_disable(sport->clk);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001301unmap:
1302 iounmap(sport->port.membase);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001303free:
1304 kfree(sport);
1305
1306 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001309static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001311 struct imxuart_platform_data *pdata;
1312 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001314 pdata = pdev->dev.platform_data;
1315
1316 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001318 if (sport) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 uart_remove_one_port(&imx_reg, &sport->port);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001320 clk_put(sport->clk);
1321 }
1322
1323 clk_disable(sport->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001325 if (pdata && pdata->exit)
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001326 pdata->exit(pdev);
1327
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001328 iounmap(sport->port.membase);
1329 kfree(sport);
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return 0;
1332}
1333
Russell King3ae5eae2005-11-09 22:32:44 +00001334static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001335 .probe = serial_imx_probe,
1336 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338 .suspend = serial_imx_suspend,
1339 .resume = serial_imx_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001340 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001341 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001342 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001343 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344};
1345
1346static int __init imx_serial_init(void)
1347{
1348 int ret;
1349
1350 printk(KERN_INFO "Serial: IMX driver\n");
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 ret = uart_register_driver(&imx_reg);
1353 if (ret)
1354 return ret;
1355
Russell King3ae5eae2005-11-09 22:32:44 +00001356 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (ret != 0)
1358 uart_unregister_driver(&imx_reg);
1359
1360 return 0;
1361}
1362
1363static void __exit imx_serial_exit(void)
1364{
Russell Kingc889b892005-11-21 17:05:21 +00001365 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001366 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367}
1368
1369module_init(imx_serial_init);
1370module_exit(imx_serial_exit);
1371
1372MODULE_AUTHOR("Sascha Hauer");
1373MODULE_DESCRIPTION("IMX generic serial port driver");
1374MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001375MODULE_ALIAS("platform:imx-uart");