blob: 6226e66c796663a6acf0b5466acb93126cf91648 [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 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 * [29-Mar-2005] Mike Lee
26 * Added hardware handshake
27 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#if defined(CONFIG_SERIAL_IMX_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
30#define SUPPORT_SYSRQ
31#endif
32
33#include <linux/module.h>
34#include <linux/ioport.h>
35#include <linux/init.h>
36#include <linux/console.h>
37#include <linux/sysrq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010038#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/tty.h>
40#include <linux/tty_flip.h>
41#include <linux/serial_core.h>
42#include <linux/serial.h>
43
44#include <asm/io.h>
45#include <asm/irq.h>
46#include <asm/hardware.h>
Sascha Hauer5b802342006-05-04 14:07:42 +010047#include <asm/arch/imx-uart.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Sascha Hauerff4bfb22007-04-26 08:26:13 +010049/* Register definitions */
50#define URXD0 0x0 /* Receiver Register */
51#define URTX0 0x40 /* Transmitter Register */
52#define UCR1 0x80 /* Control Register 1 */
53#define UCR2 0x84 /* Control Register 2 */
54#define UCR3 0x88 /* Control Register 3 */
55#define UCR4 0x8c /* Control Register 4 */
56#define UFCR 0x90 /* FIFO Control Register */
57#define USR1 0x94 /* Status Register 1 */
58#define USR2 0x98 /* Status Register 2 */
59#define UESC 0x9c /* Escape Character Register */
60#define UTIM 0xa0 /* Escape Timer Register */
61#define UBIR 0xa4 /* BRM Incremental Register */
62#define UBMR 0xa8 /* BRM Modulator Register */
63#define UBRC 0xac /* Baud Rate Count Register */
64#define BIPR1 0xb0 /* Incremental Preset Register 1 */
65#define BIPR2 0xb4 /* Incremental Preset Register 2 */
66#define BIPR3 0xb8 /* Incremental Preset Register 3 */
67#define BIPR4 0xbc /* Incremental Preset Register 4 */
68#define BMPR1 0xc0 /* BRM Modulator Register 1 */
69#define BMPR2 0xc4 /* BRM Modulator Register 2 */
70#define BMPR3 0xc8 /* BRM Modulator Register 3 */
71#define BMPR4 0xcc /* BRM Modulator Register 4 */
72#define UTS 0xd0 /* UART Test Register */
73
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 */
92#define UCR1_UARTCLKEN (1<<2) /* UART clock enabled */
93#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 */
118#define UCR3_REF25 (1<<3) /* Ref freq 25 MHz */
119#define UCR3_REF30 (1<<2) /* Ref Freq 30 MHz */
120#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
121#define UCR3_BPEN (1<<0) /* Preset registers enable */
122#define UCR4_CTSTL_32 (32<<10) /* CTS trigger level (32 chars) */
123#define UCR4_INVR (1<<9) /* Inverted infrared reception */
124#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
125#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
126#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
127#define UCR4_IRSC (1<<5) /* IR special case */
128#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
129#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
130#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
131#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
132#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
133#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
134#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
135#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
136#define USR1_RTSS (1<<14) /* RTS pin status */
137#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
138#define USR1_RTSD (1<<12) /* RTS delta */
139#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
140#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
141#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
142#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
143#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
144#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
145#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
146#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
147#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
148#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
149#define USR2_IDLE (1<<12) /* Idle condition */
150#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
151#define USR2_WAKE (1<<7) /* Wake */
152#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
153#define USR2_TXDC (1<<3) /* Transmitter complete */
154#define USR2_BRCD (1<<2) /* Break condition */
155#define USR2_ORE (1<<1) /* Overrun error */
156#define USR2_RDR (1<<0) /* Recv data ready */
157#define UTS_FRCPERR (1<<13) /* Force parity error */
158#define UTS_LOOP (1<<12) /* Loop tx and rx */
159#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
160#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
161#define UTS_TXFULL (1<<4) /* TxFIFO full */
162#define UTS_RXFULL (1<<3) /* RxFIFO full */
163#define UTS_SOFTRST (1<<0) /* Software reset */
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/* We've been assigned a range on the "Low-density serial ports" major */
166#define SERIAL_IMX_MAJOR 204
167#define MINOR_START 41
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * This determines how often we check the modem status signals
171 * for any change. They generally aren't connected to an IRQ
172 * so we have to poll them. We also check immediately before
173 * filling the TX fifo incase CTS has been dropped.
174 */
175#define MCTRL_TIMEOUT (250*HZ/1000)
176
177#define DRIVER_NAME "IMX-uart"
178
179struct imx_port {
180 struct uart_port port;
181 struct timer_list timer;
182 unsigned int old_status;
Sascha Hauer5b802342006-05-04 14:07:42 +0100183 int txirq,rxirq,rtsirq;
184 int have_rtscts:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
187/*
188 * Handle any change of modem status signal since we were last called.
189 */
190static void imx_mctrl_check(struct imx_port *sport)
191{
192 unsigned int status, changed;
193
194 status = sport->port.ops->get_mctrl(&sport->port);
195 changed = status ^ sport->old_status;
196
197 if (changed == 0)
198 return;
199
200 sport->old_status = status;
201
202 if (changed & TIOCM_RI)
203 sport->port.icount.rng++;
204 if (changed & TIOCM_DSR)
205 sport->port.icount.dsr++;
206 if (changed & TIOCM_CAR)
207 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
208 if (changed & TIOCM_CTS)
209 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
210
211 wake_up_interruptible(&sport->port.info->delta_msr_wait);
212}
213
214/*
215 * This is our per-port timeout handler, for checking the
216 * modem status signals.
217 */
218static void imx_timeout(unsigned long data)
219{
220 struct imx_port *sport = (struct imx_port *)data;
221 unsigned long flags;
222
223 if (sport->port.info) {
224 spin_lock_irqsave(&sport->port.lock, flags);
225 imx_mctrl_check(sport);
226 spin_unlock_irqrestore(&sport->port.lock, flags);
227
228 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
229 }
230}
231
232/*
233 * interrupts disabled on entry
234 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100235static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100238 unsigned long temp;
239
240 temp = readl(sport->port.membase + UCR1);
241 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244/*
245 * interrupts disabled on entry
246 */
247static void imx_stop_rx(struct uart_port *port)
248{
249 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100250 unsigned long temp;
251
252 temp = readl(sport->port.membase + UCR2);
253 writel(temp &~ UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256/*
257 * Set the modem control timer to fire immediately.
258 */
259static void imx_enable_ms(struct uart_port *port)
260{
261 struct imx_port *sport = (struct imx_port *)port;
262
263 mod_timer(&sport->timer, jiffies);
264}
265
266static inline void imx_transmit_buffer(struct imx_port *sport)
267{
268 struct circ_buf *xmit = &sport->port.info->xmit;
269
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100270 while (!(readl(sport->port.membase + UTS) & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 /* send xmit->buf[xmit->tail]
272 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100273 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 xmit->tail = (xmit->tail + 1) &
275 (UART_XMIT_SIZE - 1);
276 sport->port.icount.tx++;
277 if (uart_circ_empty(xmit))
278 break;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100282 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285/*
286 * interrupts disabled on entry
287 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100288static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100291 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100293 temp = readl(sport->port.membase + UCR1);
294 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100296 if (readl(sport->port.membase + UTS) & UTS_TXEMPTY)
297 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
David Howells7d12e782006-10-05 14:55:46 +0100300static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100301{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800302 struct imx_port *sport = dev_id;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100303 unsigned int val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100304 unsigned long flags;
305
306 spin_lock_irqsave(&sport->port.lock, flags);
307
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100308 writel(USR1_RTSD, sport->port.membase + USR1);
Sascha Hauerceca6292005-10-12 19:58:08 +0100309 uart_handle_cts_change(&sport->port, !!val);
310 wake_up_interruptible(&sport->port.info->delta_msr_wait);
311
312 spin_unlock_irqrestore(&sport->port.lock, flags);
313 return IRQ_HANDLED;
314}
315
David Howells7d12e782006-10-05 14:55:46 +0100316static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800318 struct imx_port *sport = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 struct circ_buf *xmit = &sport->port.info->xmit;
320 unsigned long flags;
321
322 spin_lock_irqsave(&sport->port.lock,flags);
323 if (sport->port.x_char)
324 {
325 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100326 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 goto out;
328 }
329
330 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100331 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 goto out;
333 }
334
335 imx_transmit_buffer(sport);
336
337 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
338 uart_write_wakeup(&sport->port);
339
340out:
341 spin_unlock_irqrestore(&sport->port.lock,flags);
342 return IRQ_HANDLED;
343}
344
David Howells7d12e782006-10-05 14:55:46 +0100345static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 struct imx_port *sport = dev_id;
348 unsigned int rx,flg,ignored = 0;
349 struct tty_struct *tty = sport->port.info->tty;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100350 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 spin_lock_irqsave(&sport->port.lock,flags);
353
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100354 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 flg = TTY_NORMAL;
356 sport->port.icount.rx++;
357
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100358 rx = readl(sport->port.membase + URXD0);
359
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100360 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100361 if (temp & USR2_BRCD) {
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100362 writel(temp | USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100363 if (uart_handle_break(&sport->port))
364 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
367 if (uart_handle_sysrq_char
David Howells7d12e782006-10-05 14:55:46 +0100368 (&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100369 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Sascha Hauer864eeed2008-04-17 08:39:22 +0100371 if (rx & (URXD_PRERR | URXD_OVRRUN | URXD_FRMERR) ) {
372 if (rx & URXD_PRERR)
373 sport->port.icount.parity++;
374 else if (rx & URXD_FRMERR)
375 sport->port.icount.frame++;
376 if (rx & URXD_OVRRUN)
377 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Sascha Hauer864eeed2008-04-17 08:39:22 +0100379 if (rx & sport->port.ignore_status_mask) {
380 if (++ignored > 100)
381 goto out;
382 continue;
383 }
384
385 rx &= sport->port.read_status_mask;
386
387 if (rx & URXD_PRERR)
388 flg = TTY_PARITY;
389 else if (rx & URXD_FRMERR)
390 flg = TTY_FRAME;
391 if (rx & URXD_OVRRUN)
392 flg = TTY_OVERRUN;
393
394#ifdef SUPPORT_SYSRQ
395 sport->port.sysrq = 0;
396#endif
397 }
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 tty_insert_flip_char(tty, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402out:
403 spin_unlock_irqrestore(&sport->port.lock,flags);
404 tty_flip_buffer_push(tty);
405 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
408/*
409 * Return TIOCSER_TEMT when transmitter is not busy.
410 */
411static unsigned int imx_tx_empty(struct uart_port *port)
412{
413 struct imx_port *sport = (struct imx_port *)port;
414
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100415 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100418/*
419 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
420 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421static unsigned int imx_get_mctrl(struct uart_port *port)
422{
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100423 struct imx_port *sport = (struct imx_port *)port;
424 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
425
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100426 if (readl(sport->port.membase + USR1) & USR1_RTSS)
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100427 tmp |= TIOCM_CTS;
428
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100429 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100430 tmp |= TIOCM_RTS;
431
432 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
436{
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100437 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100438 unsigned long temp;
439
440 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100441
442 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100443 temp |= UCR2_CTS;
444
445 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
448/*
449 * Interrupts always disabled.
450 */
451static void imx_break_ctl(struct uart_port *port, int break_state)
452{
453 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100454 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 spin_lock_irqsave(&sport->port.lock, flags);
457
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100458 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if ( break_state != 0 )
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100461 temp |= UCR1_SNDBRK;
462
463 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 spin_unlock_irqrestore(&sport->port.lock, flags);
466}
467
468#define TXTL 2 /* reset default */
469#define RXTL 1 /* reset default */
470
Sascha Hauer587897f2005-04-29 22:46:40 +0100471static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
472{
473 unsigned int val;
474 unsigned int ufcr_rfdiv;
475
476 /* set receiver / transmitter trigger level.
477 * RFDIV is set such way to satisfy requested uartclk value
478 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100479 val = TXTL << 10 | RXTL;
Sascha Hauer587897f2005-04-29 22:46:40 +0100480 ufcr_rfdiv = (imx_get_perclk1() + sport->port.uartclk / 2) / sport->port.uartclk;
481
482 if(!ufcr_rfdiv)
483 ufcr_rfdiv = 1;
484
485 if(ufcr_rfdiv >= 7)
486 ufcr_rfdiv = 6;
487 else
488 ufcr_rfdiv = 6 - ufcr_rfdiv;
489
490 val |= UFCR_RFDIV & (ufcr_rfdiv << 7);
491
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100492 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100493
494 return 0;
495}
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497static int imx_startup(struct uart_port *port)
498{
499 struct imx_port *sport = (struct imx_port *)port;
500 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100501 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Sascha Hauer587897f2005-04-29 22:46:40 +0100503 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /* disable the DREN bit (Data Ready interrupt enable) before
506 * requesting IRQs
507 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100508 temp = readl(sport->port.membase + UCR4);
509 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 /*
512 * Allocate the IRQ
513 */
514 retval = request_irq(sport->rxirq, imx_rxint, 0,
515 DRIVER_NAME, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100516 if (retval) goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 retval = request_irq(sport->txirq, imx_txint, 0,
Sascha Hauerceca6292005-10-12 19:58:08 +0100519 DRIVER_NAME, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100520 if (retval) goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Russell Kingf43aaba2006-01-19 12:26:57 +0000522 retval = request_irq(sport->rtsirq, imx_rtsint,
Pavel Pisad7ea10d2007-02-05 16:10:20 -0800523 (sport->rtsirq < IMX_IRQS) ? 0 :
524 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
Sascha Hauerceca6292005-10-12 19:58:08 +0100525 DRIVER_NAME, sport);
526 if (retval) goto error_out3;
Sascha Hauerceca6292005-10-12 19:58:08 +0100527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /*
529 * Finally, clear and enable interrupts
530 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100531 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100533 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100534 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100535 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100537 temp = readl(sport->port.membase + UCR2);
538 temp |= (UCR2_RXEN | UCR2_TXEN);
539 writel(temp, sport->port.membase + UCR2);
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /*
542 * Enable modem status interrupts
543 */
544 spin_lock_irqsave(&sport->port.lock,flags);
545 imx_enable_ms(&sport->port);
546 spin_unlock_irqrestore(&sport->port.lock,flags);
547
548 return 0;
549
Sascha Hauerceca6292005-10-12 19:58:08 +0100550error_out3:
551 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552error_out2:
Sascha Hauer86371d02005-10-10 10:17:42 +0100553 free_irq(sport->rxirq, sport);
554error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return retval;
556}
557
558static void imx_shutdown(struct uart_port *port)
559{
560 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100561 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 /*
564 * Stop our timer.
565 */
566 del_timer_sync(&sport->timer);
567
568 /*
569 * Free the interrupts
570 */
Sascha Hauerceca6292005-10-12 19:58:08 +0100571 free_irq(sport->rtsirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 free_irq(sport->txirq, sport);
573 free_irq(sport->rxirq, sport);
574
575 /*
576 * Disable all interrupts, port and break condition.
577 */
578
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100579 temp = readl(sport->port.membase + UCR1);
580 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
581 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
584static void
Alan Cox606d0992006-12-08 02:38:45 -0800585imx_set_termios(struct uart_port *port, struct ktermios *termios,
586 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 struct imx_port *sport = (struct imx_port *)port;
589 unsigned long flags;
590 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
591 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Sascha Hauer036bb152008-07-05 10:02:44 +0200592 unsigned int div, num, denom, ufcr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 /*
595 * If we don't support modem control lines, don't allow
596 * these to be set.
597 */
598 if (0) {
599 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
600 termios->c_cflag |= CLOCAL;
601 }
602
603 /*
604 * We only support CS7 and CS8.
605 */
606 while ((termios->c_cflag & CSIZE) != CS7 &&
607 (termios->c_cflag & CSIZE) != CS8) {
608 termios->c_cflag &= ~CSIZE;
609 termios->c_cflag |= old_csize;
610 old_csize = CS8;
611 }
612
613 if ((termios->c_cflag & CSIZE) == CS8)
614 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
615 else
616 ucr2 = UCR2_SRST | UCR2_IRTS;
617
618 if (termios->c_cflag & CRTSCTS) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100619 if( sport->have_rtscts ) {
620 ucr2 &= ~UCR2_IRTS;
621 ucr2 |= UCR2_CTSC;
622 } else {
623 termios->c_cflag &= ~CRTSCTS;
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 if (termios->c_cflag & CSTOPB)
628 ucr2 |= UCR2_STPB;
629 if (termios->c_cflag & PARENB) {
630 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000631 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 ucr2 |= UCR2_PROE;
633 }
634
635 /*
636 * Ask the core to calculate the divisor for us.
637 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200638 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 quot = uart_get_divisor(port, baud);
640
641 spin_lock_irqsave(&sport->port.lock, flags);
642
643 sport->port.read_status_mask = 0;
644 if (termios->c_iflag & INPCK)
645 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
646 if (termios->c_iflag & (BRKINT | PARMRK))
647 sport->port.read_status_mask |= URXD_BRK;
648
649 /*
650 * Characters to ignore
651 */
652 sport->port.ignore_status_mask = 0;
653 if (termios->c_iflag & IGNPAR)
654 sport->port.ignore_status_mask |= URXD_PRERR;
655 if (termios->c_iflag & IGNBRK) {
656 sport->port.ignore_status_mask |= URXD_BRK;
657 /*
658 * If we're ignoring parity and break indicators,
659 * ignore overruns too (for real raw support).
660 */
661 if (termios->c_iflag & IGNPAR)
662 sport->port.ignore_status_mask |= URXD_OVRRUN;
663 }
664
665 del_timer_sync(&sport->timer);
666
667 /*
668 * Update the per-port timeout.
669 */
670 uart_update_timeout(port, termios->c_cflag, baud);
671
672 /*
673 * disable interrupts and drain transmitter
674 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100675 old_ucr1 = readl(sport->port.membase + UCR1);
676 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
677 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100679 while ( !(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 barrier();
681
682 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100683 old_txrxen = readl(sport->port.membase + UCR2);
684 writel(old_txrxen & ~( UCR2_TXEN | UCR2_RXEN),
685 sport->port.membase + UCR2);
686 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Sascha Hauer036bb152008-07-05 10:02:44 +0200688 div = sport->port.uartclk / (baud * 16);
689 if (div > 7)
690 div = 7;
691 if (!div)
692 div = 1;
693
694 num = baud;
695 denom = port->uartclk / div / 16;
696
697 /* shift num and denom right until they fit into 16 bits */
698 while (num > 0x10000 || denom > 0x10000) {
699 num >>= 1;
700 denom >>= 1;
701 }
702 if (num > 0)
703 num -= 1;
704 if (denom > 0)
705 denom -= 1;
706
707 writel(num, sport->port.membase + UBIR);
708 writel(denom, sport->port.membase + UBMR);
709
710 if (div == 7)
711 div = 6; /* 6 in RFDIV means divide by 7 */
712 else
713 div = 6 - div;
714
715 ufcr = readl(sport->port.membase + UFCR);
716 ufcr = (ufcr & (~UFCR_RFDIV)) |
717 (div << 7);
718 writel(ufcr, sport->port.membase + UFCR);
719
720#ifdef ONEMS
721 writel(sport->port.uartclk / div / 1000, sport->port.membase + ONEMS);
722#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100724 writel(old_ucr1, sport->port.membase + UCR1);
725
726 /* set the parity, stop bits and data size */
727 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
730 imx_enable_ms(&sport->port);
731
732 spin_unlock_irqrestore(&sport->port.lock, flags);
733}
734
735static const char *imx_type(struct uart_port *port)
736{
737 struct imx_port *sport = (struct imx_port *)port;
738
739 return sport->port.type == PORT_IMX ? "IMX" : NULL;
740}
741
742/*
743 * Release the memory region(s) being used by 'port'.
744 */
745static void imx_release_port(struct uart_port *port)
746{
Sascha Hauer3d454442008-04-17 08:47:32 +0100747 struct platform_device *pdev = to_platform_device(port->dev);
748 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Sascha Hauer3d454442008-04-17 08:47:32 +0100750 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
751 release_mem_region(mmres->start, mmres->end - mmres->start + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754/*
755 * Request the memory region(s) being used by 'port'.
756 */
757static int imx_request_port(struct uart_port *port)
758{
Sascha Hauer3d454442008-04-17 08:47:32 +0100759 struct platform_device *pdev = to_platform_device(port->dev);
760 struct resource *mmres;
761 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Sascha Hauer3d454442008-04-17 08:47:32 +0100763 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
764 if (!mmres)
765 return -ENODEV;
766
767 ret = request_mem_region(mmres->start, mmres->end - mmres->start + 1,
768 "imx-uart");
769
770 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
773/*
774 * Configure/autoconfigure the port.
775 */
776static void imx_config_port(struct uart_port *port, int flags)
777{
778 struct imx_port *sport = (struct imx_port *)port;
779
780 if (flags & UART_CONFIG_TYPE &&
781 imx_request_port(&sport->port) == 0)
782 sport->port.type = PORT_IMX;
783}
784
785/*
786 * Verify the new serial_struct (for TIOCSSERIAL).
787 * The only change we allow are to the flags and type, and
788 * even then only between PORT_IMX and PORT_UNKNOWN
789 */
790static int
791imx_verify_port(struct uart_port *port, struct serial_struct *ser)
792{
793 struct imx_port *sport = (struct imx_port *)port;
794 int ret = 0;
795
796 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
797 ret = -EINVAL;
798 if (sport->port.irq != ser->irq)
799 ret = -EINVAL;
800 if (ser->io_type != UPIO_MEM)
801 ret = -EINVAL;
802 if (sport->port.uartclk / 16 != ser->baud_base)
803 ret = -EINVAL;
804 if ((void *)sport->port.mapbase != ser->iomem_base)
805 ret = -EINVAL;
806 if (sport->port.iobase != ser->port)
807 ret = -EINVAL;
808 if (ser->hub6 != 0)
809 ret = -EINVAL;
810 return ret;
811}
812
813static struct uart_ops imx_pops = {
814 .tx_empty = imx_tx_empty,
815 .set_mctrl = imx_set_mctrl,
816 .get_mctrl = imx_get_mctrl,
817 .stop_tx = imx_stop_tx,
818 .start_tx = imx_start_tx,
819 .stop_rx = imx_stop_rx,
820 .enable_ms = imx_enable_ms,
821 .break_ctl = imx_break_ctl,
822 .startup = imx_startup,
823 .shutdown = imx_shutdown,
824 .set_termios = imx_set_termios,
825 .type = imx_type,
826 .release_port = imx_release_port,
827 .request_port = imx_request_port,
828 .config_port = imx_config_port,
829 .verify_port = imx_verify_port,
830};
831
832static struct imx_port imx_ports[] = {
833 {
834 .txirq = UART1_MINT_TX,
835 .rxirq = UART1_MINT_RX,
Sascha Hauerceca6292005-10-12 19:58:08 +0100836 .rtsirq = UART1_MINT_RTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 .port = {
838 .type = PORT_IMX,
Russell King9b4a1612006-02-05 10:48:10 +0000839 .iotype = UPIO_MEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 .membase = (void *)IMX_UART1_BASE,
Sascha Hauer3a8daaa2008-04-17 08:48:37 +0100841 .mapbase = 0x00206000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 .irq = UART1_MINT_RX,
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800843 .fifosize = 32,
Russell Kingce8337c2006-01-21 19:28:15 +0000844 .flags = UPF_BOOT_AUTOCONF,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 .ops = &imx_pops,
846 .line = 0,
847 },
848 }, {
849 .txirq = UART2_MINT_TX,
850 .rxirq = UART2_MINT_RX,
Sascha Hauerceca6292005-10-12 19:58:08 +0100851 .rtsirq = UART2_MINT_RTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 .port = {
853 .type = PORT_IMX,
Russell King9b4a1612006-02-05 10:48:10 +0000854 .iotype = UPIO_MEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 .membase = (void *)IMX_UART2_BASE,
Sascha Hauer3a8daaa2008-04-17 08:48:37 +0100856 .mapbase = 0x00207000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 .irq = UART2_MINT_RX,
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800858 .fifosize = 32,
Russell Kingce8337c2006-01-21 19:28:15 +0000859 .flags = UPF_BOOT_AUTOCONF,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 .ops = &imx_pops,
861 .line = 1,
862 },
863 }
864};
865
866/*
867 * Setup the IMX serial ports.
868 * Note also that we support "console=ttySMXx" where "x" is either 0 or 1.
869 * Which serial port this ends up being depends on the machine you're
870 * running this kernel on. I'm not convinced that this is a good idea,
871 * but that's the way it traditionally works.
872 *
873 */
874static void __init imx_init_ports(void)
875{
876 static int first = 1;
877 int i;
878
879 if (!first)
880 return;
881 first = 0;
882
883 for (i = 0; i < ARRAY_SIZE(imx_ports); i++) {
884 init_timer(&imx_ports[i].timer);
885 imx_ports[i].timer.function = imx_timeout;
886 imx_ports[i].timer.data = (unsigned long)&imx_ports[i];
Sascha Hauer036bb152008-07-05 10:02:44 +0200887
888 imx_ports[i].port.uartclk = imx_get_perclk1();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
892#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +0000893static void imx_console_putchar(struct uart_port *port, int ch)
894{
895 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100896
897 while (readl(sport->port.membase + UTS) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +0000898 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100899
900 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +0000901}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903/*
904 * Interrupts are disabled on entering
905 */
906static void
907imx_console_write(struct console *co, const char *s, unsigned int count)
908{
909 struct imx_port *sport = &imx_ports[co->index];
Russell Kingd3587882006-03-20 20:00:09 +0000910 unsigned int old_ucr1, old_ucr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /*
913 * First, save UCR1/2 and then disable interrupts
914 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100915 old_ucr1 = readl(sport->port.membase + UCR1);
916 old_ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100918 writel((old_ucr1 | UCR1_UARTCLKEN | UCR1_UARTEN) &
919 ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
920 sport->port.membase + UCR1);
921
922 writel(old_ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Russell Kingd3587882006-03-20 20:00:09 +0000924 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 /*
927 * Finally, wait for transmitter to become empty
928 * and restore UCR1/2
929 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100930 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100932 writel(old_ucr1, sport->port.membase + UCR1);
933 writel(old_ucr2, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
936/*
937 * If the port was already initialised (eg, by a boot loader),
938 * try to determine the current setup.
939 */
940static void __init
941imx_console_get_options(struct imx_port *sport, int *baud,
942 int *parity, int *bits)
943{
Sascha Hauer587897f2005-04-29 22:46:40 +0100944
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100945 if ( readl(sport->port.membase + UCR1) | UCR1_UARTEN ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 /* ok, the port was enabled */
947 unsigned int ucr2, ubir,ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +0100948 unsigned int baud_raw;
949 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100951 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 *parity = 'n';
954 if (ucr2 & UCR2_PREN) {
955 if (ucr2 & UCR2_PROE)
956 *parity = 'o';
957 else
958 *parity = 'e';
959 }
960
961 if (ucr2 & UCR2_WS)
962 *bits = 8;
963 else
964 *bits = 7;
965
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100966 ubir = readl(sport->port.membase + UBIR) & 0xffff;
967 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100969 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +0100970 if (ucfr_rfdiv == 6)
971 ucfr_rfdiv = 7;
972 else
973 ucfr_rfdiv = 6 - ucfr_rfdiv;
974
975 uartclk = imx_get_perclk1();
976 uartclk /= ucfr_rfdiv;
977
978 { /*
979 * The next code provides exact computation of
980 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
981 * without need of float support or long long division,
982 * which would be required to prevent 32bit arithmetic overflow
983 */
984 unsigned int mul = ubir + 1;
985 unsigned int div = 16 * (ubmr + 1);
986 unsigned int rem = uartclk % div;
987
988 baud_raw = (uartclk / div) * mul;
989 baud_raw += (rem * mul + div / 2) / div;
990 *baud = (baud_raw + 50) / 100 * 100;
991 }
992
993 if(*baud != baud_raw)
994 printk(KERN_INFO "Serial: Console IMX rounded baud rate from %d to %d\n",
995 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997}
998
999static int __init
1000imx_console_setup(struct console *co, char *options)
1001{
1002 struct imx_port *sport;
1003 int baud = 9600;
1004 int bits = 8;
1005 int parity = 'n';
1006 int flow = 'n';
1007
1008 /*
1009 * Check whether an invalid uart number has been specified, and
1010 * if so, search for the first available port that does have
1011 * console support.
1012 */
1013 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1014 co->index = 0;
1015 sport = &imx_ports[co->index];
1016
1017 if (options)
1018 uart_parse_options(options, &baud, &parity, &bits, &flow);
1019 else
1020 imx_console_get_options(sport, &baud, &parity, &bits);
1021
Sascha Hauer587897f2005-04-29 22:46:40 +01001022 imx_setup_ufcr(sport, 0);
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1025}
1026
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001027static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028static struct console imx_console = {
1029 .name = "ttySMX",
1030 .write = imx_console_write,
1031 .device = uart_console_device,
1032 .setup = imx_console_setup,
1033 .flags = CON_PRINTBUFFER,
1034 .index = -1,
1035 .data = &imx_reg,
1036};
1037
1038static int __init imx_rs_console_init(void)
1039{
1040 imx_init_ports();
1041 register_console(&imx_console);
1042 return 0;
1043}
1044console_initcall(imx_rs_console_init);
1045
1046#define IMX_CONSOLE &imx_console
1047#else
1048#define IMX_CONSOLE NULL
1049#endif
1050
1051static struct uart_driver imx_reg = {
1052 .owner = THIS_MODULE,
1053 .driver_name = DRIVER_NAME,
1054 .dev_name = "ttySMX",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 .major = SERIAL_IMX_MAJOR,
1056 .minor = MINOR_START,
1057 .nr = ARRAY_SIZE(imx_ports),
1058 .cons = IMX_CONSOLE,
1059};
1060
Russell King3ae5eae2005-11-09 22:32:44 +00001061static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Russell King3ae5eae2005-11-09 22:32:44 +00001063 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Russell King9480e302005-10-28 09:52:56 -07001065 if (sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 uart_suspend_port(&imx_reg, &sport->port);
1067
1068 return 0;
1069}
1070
Russell King3ae5eae2005-11-09 22:32:44 +00001071static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Russell King3ae5eae2005-11-09 22:32:44 +00001073 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Russell King9480e302005-10-28 09:52:56 -07001075 if (sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 uart_resume_port(&imx_reg, &sport->port);
1077
1078 return 0;
1079}
1080
Russell King3ae5eae2005-11-09 22:32:44 +00001081static int serial_imx_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Sascha Hauer5b802342006-05-04 14:07:42 +01001083 struct imxuart_platform_data *pdata;
1084
Russell King3ae5eae2005-11-09 22:32:44 +00001085 imx_ports[dev->id].port.dev = &dev->dev;
Sascha Hauer5b802342006-05-04 14:07:42 +01001086
1087 pdata = (struct imxuart_platform_data *)dev->dev.platform_data;
1088 if(pdata && (pdata->flags & IMXUART_HAVE_RTSCTS))
1089 imx_ports[dev->id].have_rtscts = 1;
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 uart_add_one_port(&imx_reg, &imx_ports[dev->id].port);
Russell King3ae5eae2005-11-09 22:32:44 +00001092 platform_set_drvdata(dev, &imx_ports[dev->id]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return 0;
1094}
1095
Russell King3ae5eae2005-11-09 22:32:44 +00001096static int serial_imx_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Russell King3ae5eae2005-11-09 22:32:44 +00001098 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Russell King3ae5eae2005-11-09 22:32:44 +00001100 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 if (sport)
1103 uart_remove_one_port(&imx_reg, &sport->port);
1104
1105 return 0;
1106}
1107
Russell King3ae5eae2005-11-09 22:32:44 +00001108static struct platform_driver serial_imx_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 .probe = serial_imx_probe,
1110 .remove = serial_imx_remove,
1111
1112 .suspend = serial_imx_suspend,
1113 .resume = serial_imx_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001114 .driver = {
1115 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001116 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001117 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118};
1119
1120static int __init imx_serial_init(void)
1121{
1122 int ret;
1123
1124 printk(KERN_INFO "Serial: IMX driver\n");
1125
1126 imx_init_ports();
1127
1128 ret = uart_register_driver(&imx_reg);
1129 if (ret)
1130 return ret;
1131
Russell King3ae5eae2005-11-09 22:32:44 +00001132 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (ret != 0)
1134 uart_unregister_driver(&imx_reg);
1135
1136 return 0;
1137}
1138
1139static void __exit imx_serial_exit(void)
1140{
Russell Kingc889b892005-11-21 17:05:21 +00001141 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001142 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
1145module_init(imx_serial_init);
1146module_exit(imx_serial_exit);
1147
1148MODULE_AUTHOR("Sascha Hauer");
1149MODULE_DESCRIPTION("IMX generic serial port driver");
1150MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001151MODULE_ALIAS("platform:imx-uart");