blob: c3b7a6673e9c81a8bea851513c61fc900b552fde [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 */
28#include <linux/config.h>
29
30#if defined(CONFIG_SERIAL_IMX_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
31#define SUPPORT_SYSRQ
32#endif
33
34#include <linux/module.h>
35#include <linux/ioport.h>
36#include <linux/init.h>
37#include <linux/console.h>
38#include <linux/sysrq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010039#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/tty.h>
41#include <linux/tty_flip.h>
42#include <linux/serial_core.h>
43#include <linux/serial.h>
44
45#include <asm/io.h>
46#include <asm/irq.h>
47#include <asm/hardware.h>
48
49/* We've been assigned a range on the "Low-density serial ports" major */
50#define SERIAL_IMX_MAJOR 204
51#define MINOR_START 41
52
53#define NR_PORTS 2
54
55#define IMX_ISR_PASS_LIMIT 256
56
57/*
58 * This is the size of our serial port register set.
59 */
60#define UART_PORT_SIZE 0x100
61
62/*
63 * This determines how often we check the modem status signals
64 * for any change. They generally aren't connected to an IRQ
65 * so we have to poll them. We also check immediately before
66 * filling the TX fifo incase CTS has been dropped.
67 */
68#define MCTRL_TIMEOUT (250*HZ/1000)
69
70#define DRIVER_NAME "IMX-uart"
71
72struct imx_port {
73 struct uart_port port;
74 struct timer_list timer;
75 unsigned int old_status;
Sascha Hauerceca6292005-10-12 19:58:08 +010076 int txirq,rxirq,rtsirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
79/*
80 * Handle any change of modem status signal since we were last called.
81 */
82static void imx_mctrl_check(struct imx_port *sport)
83{
84 unsigned int status, changed;
85
86 status = sport->port.ops->get_mctrl(&sport->port);
87 changed = status ^ sport->old_status;
88
89 if (changed == 0)
90 return;
91
92 sport->old_status = status;
93
94 if (changed & TIOCM_RI)
95 sport->port.icount.rng++;
96 if (changed & TIOCM_DSR)
97 sport->port.icount.dsr++;
98 if (changed & TIOCM_CAR)
99 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
100 if (changed & TIOCM_CTS)
101 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
102
103 wake_up_interruptible(&sport->port.info->delta_msr_wait);
104}
105
106/*
107 * This is our per-port timeout handler, for checking the
108 * modem status signals.
109 */
110static void imx_timeout(unsigned long data)
111{
112 struct imx_port *sport = (struct imx_port *)data;
113 unsigned long flags;
114
115 if (sport->port.info) {
116 spin_lock_irqsave(&sport->port.lock, flags);
117 imx_mctrl_check(sport);
118 spin_unlock_irqrestore(&sport->port.lock, flags);
119
120 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
121 }
122}
123
124/*
125 * interrupts disabled on entry
126 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100127static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 struct imx_port *sport = (struct imx_port *)port;
130 UCR1((u32)sport->port.membase) &= ~UCR1_TXMPTYEN;
131}
132
133/*
134 * interrupts disabled on entry
135 */
136static void imx_stop_rx(struct uart_port *port)
137{
138 struct imx_port *sport = (struct imx_port *)port;
139 UCR2((u32)sport->port.membase) &= ~UCR2_RXEN;
140}
141
142/*
143 * Set the modem control timer to fire immediately.
144 */
145static void imx_enable_ms(struct uart_port *port)
146{
147 struct imx_port *sport = (struct imx_port *)port;
148
149 mod_timer(&sport->timer, jiffies);
150}
151
152static inline void imx_transmit_buffer(struct imx_port *sport)
153{
154 struct circ_buf *xmit = &sport->port.info->xmit;
155
156 do {
157 /* send xmit->buf[xmit->tail]
158 * out the port here */
159 URTX0((u32)sport->port.membase) = xmit->buf[xmit->tail];
160 xmit->tail = (xmit->tail + 1) &
161 (UART_XMIT_SIZE - 1);
162 sport->port.icount.tx++;
163 if (uart_circ_empty(xmit))
164 break;
165 } while (!(UTS((u32)sport->port.membase) & UTS_TXFULL));
166
167 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100168 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171/*
172 * interrupts disabled on entry
173 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100174static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
176 struct imx_port *sport = (struct imx_port *)port;
177
178 UCR1((u32)sport->port.membase) |= UCR1_TXMPTYEN;
179
180 if(UTS((u32)sport->port.membase) & UTS_TXEMPTY)
181 imx_transmit_buffer(sport);
182}
183
Sascha Hauerceca6292005-10-12 19:58:08 +0100184static irqreturn_t imx_rtsint(int irq, void *dev_id, struct pt_regs *regs)
185{
186 struct imx_port *sport = (struct imx_port *)dev_id;
187 unsigned int val = USR1((u32)sport->port.membase)&USR1_RTSS;
188 unsigned long flags;
189
190 spin_lock_irqsave(&sport->port.lock, flags);
191
192 USR1((u32)sport->port.membase) = USR1_RTSD;
193 uart_handle_cts_change(&sport->port, !!val);
194 wake_up_interruptible(&sport->port.info->delta_msr_wait);
195
196 spin_unlock_irqrestore(&sport->port.lock, flags);
197 return IRQ_HANDLED;
198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static irqreturn_t imx_txint(int irq, void *dev_id, struct pt_regs *regs)
201{
202 struct imx_port *sport = (struct imx_port *)dev_id;
203 struct circ_buf *xmit = &sport->port.info->xmit;
204 unsigned long flags;
205
206 spin_lock_irqsave(&sport->port.lock,flags);
207 if (sport->port.x_char)
208 {
209 /* Send next char */
210 URTX0((u32)sport->port.membase) = sport->port.x_char;
211 goto out;
212 }
213
214 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100215 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 goto out;
217 }
218
219 imx_transmit_buffer(sport);
220
221 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
222 uart_write_wakeup(&sport->port);
223
224out:
225 spin_unlock_irqrestore(&sport->port.lock,flags);
226 return IRQ_HANDLED;
227}
228
229static irqreturn_t imx_rxint(int irq, void *dev_id, struct pt_regs *regs)
230{
231 struct imx_port *sport = dev_id;
232 unsigned int rx,flg,ignored = 0;
233 struct tty_struct *tty = sport->port.info->tty;
234 unsigned long flags;
235
236 rx = URXD0((u32)sport->port.membase);
237 spin_lock_irqsave(&sport->port.lock,flags);
238
239 do {
240 flg = TTY_NORMAL;
241 sport->port.icount.rx++;
242
243 if( USR2((u32)sport->port.membase) & USR2_BRCD ) {
244 USR2((u32)sport->port.membase) |= USR2_BRCD;
245 if(uart_handle_break(&sport->port))
246 goto ignore_char;
247 }
248
249 if (uart_handle_sysrq_char
250 (&sport->port, (unsigned char)rx, regs))
251 goto ignore_char;
252
253 if( rx & (URXD_PRERR | URXD_OVRRUN | URXD_FRMERR) )
254 goto handle_error;
255
256 error_return:
257 tty_insert_flip_char(tty, rx, flg);
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 ignore_char:
260 rx = URXD0((u32)sport->port.membase);
261 } while(rx & URXD_CHARRDY);
262
263out:
264 spin_unlock_irqrestore(&sport->port.lock,flags);
265 tty_flip_buffer_push(tty);
266 return IRQ_HANDLED;
267
268handle_error:
269 if (rx & URXD_PRERR)
270 sport->port.icount.parity++;
271 else if (rx & URXD_FRMERR)
272 sport->port.icount.frame++;
273 if (rx & URXD_OVRRUN)
274 sport->port.icount.overrun++;
275
276 if (rx & sport->port.ignore_status_mask) {
277 if (++ignored > 100)
278 goto out;
279 goto ignore_char;
280 }
281
282 rx &= sport->port.read_status_mask;
283
284 if (rx & URXD_PRERR)
285 flg = TTY_PARITY;
286 else if (rx & URXD_FRMERR)
287 flg = TTY_FRAME;
288 if (rx & URXD_OVRRUN)
289 flg = TTY_OVERRUN;
290
291#ifdef SUPPORT_SYSRQ
292 sport->port.sysrq = 0;
293#endif
294 goto error_return;
295}
296
297/*
298 * Return TIOCSER_TEMT when transmitter is not busy.
299 */
300static unsigned int imx_tx_empty(struct uart_port *port)
301{
302 struct imx_port *sport = (struct imx_port *)port;
303
304 return USR2((u32)sport->port.membase) & USR2_TXDC ? TIOCSER_TEMT : 0;
305}
306
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100307/*
308 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static unsigned int imx_get_mctrl(struct uart_port *port)
311{
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100312 struct imx_port *sport = (struct imx_port *)port;
313 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
314
315 if (USR1((u32)sport->port.membase) & USR1_RTSS)
316 tmp |= TIOCM_CTS;
317
318 if (UCR2((u32)sport->port.membase) & UCR2_CTS)
319 tmp |= TIOCM_RTS;
320
321 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
325{
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100326 struct imx_port *sport = (struct imx_port *)port;
327
328 if (mctrl & TIOCM_RTS)
329 UCR2((u32)sport->port.membase) |= UCR2_CTS;
330 else
331 UCR2((u32)sport->port.membase) &= ~UCR2_CTS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334/*
335 * Interrupts always disabled.
336 */
337static void imx_break_ctl(struct uart_port *port, int break_state)
338{
339 struct imx_port *sport = (struct imx_port *)port;
340 unsigned long flags;
341
342 spin_lock_irqsave(&sport->port.lock, flags);
343
344 if ( break_state != 0 )
345 UCR1((u32)sport->port.membase) |= UCR1_SNDBRK;
346 else
347 UCR1((u32)sport->port.membase) &= ~UCR1_SNDBRK;
348
349 spin_unlock_irqrestore(&sport->port.lock, flags);
350}
351
352#define TXTL 2 /* reset default */
353#define RXTL 1 /* reset default */
354
Sascha Hauer587897f2005-04-29 22:46:40 +0100355static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
356{
357 unsigned int val;
358 unsigned int ufcr_rfdiv;
359
360 /* set receiver / transmitter trigger level.
361 * RFDIV is set such way to satisfy requested uartclk value
362 */
363 val = TXTL<<10 | RXTL;
364 ufcr_rfdiv = (imx_get_perclk1() + sport->port.uartclk / 2) / sport->port.uartclk;
365
366 if(!ufcr_rfdiv)
367 ufcr_rfdiv = 1;
368
369 if(ufcr_rfdiv >= 7)
370 ufcr_rfdiv = 6;
371 else
372 ufcr_rfdiv = 6 - ufcr_rfdiv;
373
374 val |= UFCR_RFDIV & (ufcr_rfdiv << 7);
375
376 UFCR((u32)sport->port.membase) = val;
377
378 return 0;
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381static int imx_startup(struct uart_port *port)
382{
383 struct imx_port *sport = (struct imx_port *)port;
384 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 unsigned long flags;
386
Sascha Hauer587897f2005-04-29 22:46:40 +0100387 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 /* disable the DREN bit (Data Ready interrupt enable) before
390 * requesting IRQs
391 */
392 UCR4((u32)sport->port.membase) &= ~UCR4_DREN;
393
394 /*
395 * Allocate the IRQ
396 */
397 retval = request_irq(sport->rxirq, imx_rxint, 0,
398 DRIVER_NAME, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100399 if (retval) goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 retval = request_irq(sport->txirq, imx_txint, 0,
Sascha Hauerceca6292005-10-12 19:58:08 +0100402 DRIVER_NAME, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100403 if (retval) goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Russell Kingf43aaba2006-01-19 12:26:57 +0000405 retval = request_irq(sport->rtsirq, imx_rtsint,
406 SA_TRIGGER_FALLING | SA_TRIGGER_RISING,
Sascha Hauerceca6292005-10-12 19:58:08 +0100407 DRIVER_NAME, sport);
408 if (retval) goto error_out3;
Sascha Hauerceca6292005-10-12 19:58:08 +0100409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /*
411 * Finally, clear and enable interrupts
412 */
413
Sascha Hauerceca6292005-10-12 19:58:08 +0100414 USR1((u32)sport->port.membase) = USR1_RTSD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 UCR1((u32)sport->port.membase) |=
Sascha Hauerceca6292005-10-12 19:58:08 +0100416 (UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 UCR2((u32)sport->port.membase) |= (UCR2_RXEN | UCR2_TXEN);
419 /*
420 * Enable modem status interrupts
421 */
422 spin_lock_irqsave(&sport->port.lock,flags);
423 imx_enable_ms(&sport->port);
424 spin_unlock_irqrestore(&sport->port.lock,flags);
425
426 return 0;
427
Sascha Hauerceca6292005-10-12 19:58:08 +0100428error_out3:
429 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430error_out2:
Sascha Hauer86371d02005-10-10 10:17:42 +0100431 free_irq(sport->rxirq, sport);
432error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return retval;
434}
435
436static void imx_shutdown(struct uart_port *port)
437{
438 struct imx_port *sport = (struct imx_port *)port;
439
440 /*
441 * Stop our timer.
442 */
443 del_timer_sync(&sport->timer);
444
445 /*
446 * Free the interrupts
447 */
Sascha Hauerceca6292005-10-12 19:58:08 +0100448 free_irq(sport->rtsirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 free_irq(sport->txirq, sport);
450 free_irq(sport->rxirq, sport);
451
452 /*
453 * Disable all interrupts, port and break condition.
454 */
455
456 UCR1((u32)sport->port.membase) &=
Sascha Hauerceca6292005-10-12 19:58:08 +0100457 ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460static void
461imx_set_termios(struct uart_port *port, struct termios *termios,
462 struct termios *old)
463{
464 struct imx_port *sport = (struct imx_port *)port;
465 unsigned long flags;
466 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
467 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
468
469 /*
470 * If we don't support modem control lines, don't allow
471 * these to be set.
472 */
473 if (0) {
474 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
475 termios->c_cflag |= CLOCAL;
476 }
477
478 /*
479 * We only support CS7 and CS8.
480 */
481 while ((termios->c_cflag & CSIZE) != CS7 &&
482 (termios->c_cflag & CSIZE) != CS8) {
483 termios->c_cflag &= ~CSIZE;
484 termios->c_cflag |= old_csize;
485 old_csize = CS8;
486 }
487
488 if ((termios->c_cflag & CSIZE) == CS8)
489 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
490 else
491 ucr2 = UCR2_SRST | UCR2_IRTS;
492
493 if (termios->c_cflag & CRTSCTS) {
494 ucr2 &= ~UCR2_IRTS;
495 ucr2 |= UCR2_CTSC;
496 }
497
498 if (termios->c_cflag & CSTOPB)
499 ucr2 |= UCR2_STPB;
500 if (termios->c_cflag & PARENB) {
501 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000502 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 ucr2 |= UCR2_PROE;
504 }
505
506 /*
507 * Ask the core to calculate the divisor for us.
508 */
509 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
510 quot = uart_get_divisor(port, baud);
511
512 spin_lock_irqsave(&sport->port.lock, flags);
513
514 sport->port.read_status_mask = 0;
515 if (termios->c_iflag & INPCK)
516 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
517 if (termios->c_iflag & (BRKINT | PARMRK))
518 sport->port.read_status_mask |= URXD_BRK;
519
520 /*
521 * Characters to ignore
522 */
523 sport->port.ignore_status_mask = 0;
524 if (termios->c_iflag & IGNPAR)
525 sport->port.ignore_status_mask |= URXD_PRERR;
526 if (termios->c_iflag & IGNBRK) {
527 sport->port.ignore_status_mask |= URXD_BRK;
528 /*
529 * If we're ignoring parity and break indicators,
530 * ignore overruns too (for real raw support).
531 */
532 if (termios->c_iflag & IGNPAR)
533 sport->port.ignore_status_mask |= URXD_OVRRUN;
534 }
535
536 del_timer_sync(&sport->timer);
537
538 /*
539 * Update the per-port timeout.
540 */
541 uart_update_timeout(port, termios->c_cflag, baud);
542
543 /*
544 * disable interrupts and drain transmitter
545 */
546 old_ucr1 = UCR1((u32)sport->port.membase);
Sascha Hauerceca6292005-10-12 19:58:08 +0100547 UCR1((u32)sport->port.membase) &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 while ( !(USR2((u32)sport->port.membase) & USR2_TXDC))
550 barrier();
551
552 /* then, disable everything */
553 old_txrxen = UCR2((u32)sport->port.membase) & ( UCR2_TXEN | UCR2_RXEN );
554 UCR2((u32)sport->port.membase) &= ~( UCR2_TXEN | UCR2_RXEN);
555
556 /* set the parity, stop bits and data size */
557 UCR2((u32)sport->port.membase) = ucr2;
558
559 /* set the baud rate. We assume uartclk = 16 MHz
560 *
561 * baud * 16 UBIR - 1
562 * --------- = --------
563 * uartclk UBMR - 1
564 */
565 UBIR((u32)sport->port.membase) = (baud / 100) - 1;
566 UBMR((u32)sport->port.membase) = 10000 - 1;
567
568 UCR1((u32)sport->port.membase) = old_ucr1;
569 UCR2((u32)sport->port.membase) |= old_txrxen;
570
571 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
572 imx_enable_ms(&sport->port);
573
574 spin_unlock_irqrestore(&sport->port.lock, flags);
575}
576
577static const char *imx_type(struct uart_port *port)
578{
579 struct imx_port *sport = (struct imx_port *)port;
580
581 return sport->port.type == PORT_IMX ? "IMX" : NULL;
582}
583
584/*
585 * Release the memory region(s) being used by 'port'.
586 */
587static void imx_release_port(struct uart_port *port)
588{
589 struct imx_port *sport = (struct imx_port *)port;
590
591 release_mem_region(sport->port.mapbase, UART_PORT_SIZE);
592}
593
594/*
595 * Request the memory region(s) being used by 'port'.
596 */
597static int imx_request_port(struct uart_port *port)
598{
599 struct imx_port *sport = (struct imx_port *)port;
600
601 return request_mem_region(sport->port.mapbase, UART_PORT_SIZE,
602 "imx-uart") != NULL ? 0 : -EBUSY;
603}
604
605/*
606 * Configure/autoconfigure the port.
607 */
608static void imx_config_port(struct uart_port *port, int flags)
609{
610 struct imx_port *sport = (struct imx_port *)port;
611
612 if (flags & UART_CONFIG_TYPE &&
613 imx_request_port(&sport->port) == 0)
614 sport->port.type = PORT_IMX;
615}
616
617/*
618 * Verify the new serial_struct (for TIOCSSERIAL).
619 * The only change we allow are to the flags and type, and
620 * even then only between PORT_IMX and PORT_UNKNOWN
621 */
622static int
623imx_verify_port(struct uart_port *port, struct serial_struct *ser)
624{
625 struct imx_port *sport = (struct imx_port *)port;
626 int ret = 0;
627
628 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
629 ret = -EINVAL;
630 if (sport->port.irq != ser->irq)
631 ret = -EINVAL;
632 if (ser->io_type != UPIO_MEM)
633 ret = -EINVAL;
634 if (sport->port.uartclk / 16 != ser->baud_base)
635 ret = -EINVAL;
636 if ((void *)sport->port.mapbase != ser->iomem_base)
637 ret = -EINVAL;
638 if (sport->port.iobase != ser->port)
639 ret = -EINVAL;
640 if (ser->hub6 != 0)
641 ret = -EINVAL;
642 return ret;
643}
644
645static struct uart_ops imx_pops = {
646 .tx_empty = imx_tx_empty,
647 .set_mctrl = imx_set_mctrl,
648 .get_mctrl = imx_get_mctrl,
649 .stop_tx = imx_stop_tx,
650 .start_tx = imx_start_tx,
651 .stop_rx = imx_stop_rx,
652 .enable_ms = imx_enable_ms,
653 .break_ctl = imx_break_ctl,
654 .startup = imx_startup,
655 .shutdown = imx_shutdown,
656 .set_termios = imx_set_termios,
657 .type = imx_type,
658 .release_port = imx_release_port,
659 .request_port = imx_request_port,
660 .config_port = imx_config_port,
661 .verify_port = imx_verify_port,
662};
663
664static struct imx_port imx_ports[] = {
665 {
666 .txirq = UART1_MINT_TX,
667 .rxirq = UART1_MINT_RX,
Sascha Hauerceca6292005-10-12 19:58:08 +0100668 .rtsirq = UART1_MINT_RTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 .port = {
670 .type = PORT_IMX,
Russell King9b4a1612006-02-05 10:48:10 +0000671 .iotype = UPIO_MEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 .membase = (void *)IMX_UART1_BASE,
673 .mapbase = IMX_UART1_BASE, /* FIXME */
674 .irq = UART1_MINT_RX,
675 .uartclk = 16000000,
676 .fifosize = 8,
Russell Kingce8337c2006-01-21 19:28:15 +0000677 .flags = UPF_BOOT_AUTOCONF,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 .ops = &imx_pops,
679 .line = 0,
680 },
681 }, {
682 .txirq = UART2_MINT_TX,
683 .rxirq = UART2_MINT_RX,
Sascha Hauerceca6292005-10-12 19:58:08 +0100684 .rtsirq = UART2_MINT_RTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 .port = {
686 .type = PORT_IMX,
Russell King9b4a1612006-02-05 10:48:10 +0000687 .iotype = UPIO_MEM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 .membase = (void *)IMX_UART2_BASE,
689 .mapbase = IMX_UART2_BASE, /* FIXME */
690 .irq = UART2_MINT_RX,
691 .uartclk = 16000000,
692 .fifosize = 8,
Russell Kingce8337c2006-01-21 19:28:15 +0000693 .flags = UPF_BOOT_AUTOCONF,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 .ops = &imx_pops,
695 .line = 1,
696 },
697 }
698};
699
700/*
701 * Setup the IMX serial ports.
702 * Note also that we support "console=ttySMXx" where "x" is either 0 or 1.
703 * Which serial port this ends up being depends on the machine you're
704 * running this kernel on. I'm not convinced that this is a good idea,
705 * but that's the way it traditionally works.
706 *
707 */
708static void __init imx_init_ports(void)
709{
710 static int first = 1;
711 int i;
712
713 if (!first)
714 return;
715 first = 0;
716
717 for (i = 0; i < ARRAY_SIZE(imx_ports); i++) {
718 init_timer(&imx_ports[i].timer);
719 imx_ports[i].timer.function = imx_timeout;
720 imx_ports[i].timer.data = (unsigned long)&imx_ports[i];
721 }
722
723 imx_gpio_mode(PC9_PF_UART1_CTS);
724 imx_gpio_mode(PC10_PF_UART1_RTS);
725 imx_gpio_mode(PC11_PF_UART1_TXD);
726 imx_gpio_mode(PC12_PF_UART1_RXD);
727 imx_gpio_mode(PB28_PF_UART2_CTS);
728 imx_gpio_mode(PB29_PF_UART2_RTS);
729
730 imx_gpio_mode(PB30_PF_UART2_TXD);
731 imx_gpio_mode(PB31_PF_UART2_RXD);
732
733#if 0 /* We don't need these, on the mx1 the _modem_ side of the uart
734 * is implemented.
735 */
736 imx_gpio_mode(PD7_AF_UART2_DTR);
737 imx_gpio_mode(PD8_AF_UART2_DCD);
738 imx_gpio_mode(PD9_AF_UART2_RI);
739 imx_gpio_mode(PD10_AF_UART2_DSR);
740#endif
741
742
743}
744
745#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +0000746static void imx_console_putchar(struct uart_port *port, int ch)
747{
748 struct imx_port *sport = (struct imx_port *)port;
749 while ((UTS((u32)sport->port.membase) & UTS_TXFULL))
750 barrier();
751 URTX0((u32)sport->port.membase) = ch;
752}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754/*
755 * Interrupts are disabled on entering
756 */
757static void
758imx_console_write(struct console *co, const char *s, unsigned int count)
759{
760 struct imx_port *sport = &imx_ports[co->index];
Russell Kingd3587882006-03-20 20:00:09 +0000761 unsigned int old_ucr1, old_ucr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 /*
764 * First, save UCR1/2 and then disable interrupts
765 */
766 old_ucr1 = UCR1((u32)sport->port.membase);
767 old_ucr2 = UCR2((u32)sport->port.membase);
768
769 UCR1((u32)sport->port.membase) =
770 (old_ucr1 | UCR1_UARTCLKEN | UCR1_UARTEN)
Sascha Hauerceca6292005-10-12 19:58:08 +0100771 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 UCR2((u32)sport->port.membase) = old_ucr2 | UCR2_TXEN;
773
Russell Kingd3587882006-03-20 20:00:09 +0000774 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /*
777 * Finally, wait for transmitter to become empty
778 * and restore UCR1/2
779 */
780 while (!(USR2((u32)sport->port.membase) & USR2_TXDC));
781
782 UCR1((u32)sport->port.membase) = old_ucr1;
783 UCR2((u32)sport->port.membase) = old_ucr2;
784}
785
786/*
787 * If the port was already initialised (eg, by a boot loader),
788 * try to determine the current setup.
789 */
790static void __init
791imx_console_get_options(struct imx_port *sport, int *baud,
792 int *parity, int *bits)
793{
Sascha Hauer587897f2005-04-29 22:46:40 +0100794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if ( UCR1((u32)sport->port.membase) | UCR1_UARTEN ) {
796 /* ok, the port was enabled */
797 unsigned int ucr2, ubir,ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +0100798 unsigned int baud_raw;
799 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 ucr2 = UCR2((u32)sport->port.membase);
802
803 *parity = 'n';
804 if (ucr2 & UCR2_PREN) {
805 if (ucr2 & UCR2_PROE)
806 *parity = 'o';
807 else
808 *parity = 'e';
809 }
810
811 if (ucr2 & UCR2_WS)
812 *bits = 8;
813 else
814 *bits = 7;
815
816 ubir = UBIR((u32)sport->port.membase) & 0xffff;
817 ubmr = UBMR((u32)sport->port.membase) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Sascha Hauer587897f2005-04-29 22:46:40 +0100819
820 ucfr_rfdiv = (UFCR((u32)sport->port.membase) & UFCR_RFDIV) >> 7;
821 if (ucfr_rfdiv == 6)
822 ucfr_rfdiv = 7;
823 else
824 ucfr_rfdiv = 6 - ucfr_rfdiv;
825
826 uartclk = imx_get_perclk1();
827 uartclk /= ucfr_rfdiv;
828
829 { /*
830 * The next code provides exact computation of
831 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
832 * without need of float support or long long division,
833 * which would be required to prevent 32bit arithmetic overflow
834 */
835 unsigned int mul = ubir + 1;
836 unsigned int div = 16 * (ubmr + 1);
837 unsigned int rem = uartclk % div;
838
839 baud_raw = (uartclk / div) * mul;
840 baud_raw += (rem * mul + div / 2) / div;
841 *baud = (baud_raw + 50) / 100 * 100;
842 }
843
844 if(*baud != baud_raw)
845 printk(KERN_INFO "Serial: Console IMX rounded baud rate from %d to %d\n",
846 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848}
849
850static int __init
851imx_console_setup(struct console *co, char *options)
852{
853 struct imx_port *sport;
854 int baud = 9600;
855 int bits = 8;
856 int parity = 'n';
857 int flow = 'n';
858
859 /*
860 * Check whether an invalid uart number has been specified, and
861 * if so, search for the first available port that does have
862 * console support.
863 */
864 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
865 co->index = 0;
866 sport = &imx_ports[co->index];
867
868 if (options)
869 uart_parse_options(options, &baud, &parity, &bits, &flow);
870 else
871 imx_console_get_options(sport, &baud, &parity, &bits);
872
Sascha Hauer587897f2005-04-29 22:46:40 +0100873 imx_setup_ufcr(sport, 0);
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
876}
877
Vincent Sanders9f4426d2005-10-01 22:56:34 +0100878static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879static struct console imx_console = {
880 .name = "ttySMX",
881 .write = imx_console_write,
882 .device = uart_console_device,
883 .setup = imx_console_setup,
884 .flags = CON_PRINTBUFFER,
885 .index = -1,
886 .data = &imx_reg,
887};
888
889static int __init imx_rs_console_init(void)
890{
891 imx_init_ports();
892 register_console(&imx_console);
893 return 0;
894}
895console_initcall(imx_rs_console_init);
896
897#define IMX_CONSOLE &imx_console
898#else
899#define IMX_CONSOLE NULL
900#endif
901
902static struct uart_driver imx_reg = {
903 .owner = THIS_MODULE,
904 .driver_name = DRIVER_NAME,
905 .dev_name = "ttySMX",
906 .devfs_name = "ttsmx/",
907 .major = SERIAL_IMX_MAJOR,
908 .minor = MINOR_START,
909 .nr = ARRAY_SIZE(imx_ports),
910 .cons = IMX_CONSOLE,
911};
912
Russell King3ae5eae2005-11-09 22:32:44 +0000913static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Russell King3ae5eae2005-11-09 22:32:44 +0000915 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Russell King9480e302005-10-28 09:52:56 -0700917 if (sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 uart_suspend_port(&imx_reg, &sport->port);
919
920 return 0;
921}
922
Russell King3ae5eae2005-11-09 22:32:44 +0000923static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Russell King3ae5eae2005-11-09 22:32:44 +0000925 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Russell King9480e302005-10-28 09:52:56 -0700927 if (sport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 uart_resume_port(&imx_reg, &sport->port);
929
930 return 0;
931}
932
Russell King3ae5eae2005-11-09 22:32:44 +0000933static int serial_imx_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Russell King3ae5eae2005-11-09 22:32:44 +0000935 imx_ports[dev->id].port.dev = &dev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 uart_add_one_port(&imx_reg, &imx_ports[dev->id].port);
Russell King3ae5eae2005-11-09 22:32:44 +0000937 platform_set_drvdata(dev, &imx_ports[dev->id]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return 0;
939}
940
Russell King3ae5eae2005-11-09 22:32:44 +0000941static int serial_imx_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Russell King3ae5eae2005-11-09 22:32:44 +0000943 struct imx_port *sport = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Russell King3ae5eae2005-11-09 22:32:44 +0000945 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 if (sport)
948 uart_remove_one_port(&imx_reg, &sport->port);
949
950 return 0;
951}
952
Russell King3ae5eae2005-11-09 22:32:44 +0000953static struct platform_driver serial_imx_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 .probe = serial_imx_probe,
955 .remove = serial_imx_remove,
956
957 .suspend = serial_imx_suspend,
958 .resume = serial_imx_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000959 .driver = {
960 .name = "imx-uart",
961 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962};
963
964static int __init imx_serial_init(void)
965{
966 int ret;
967
968 printk(KERN_INFO "Serial: IMX driver\n");
969
970 imx_init_ports();
971
972 ret = uart_register_driver(&imx_reg);
973 if (ret)
974 return ret;
975
Russell King3ae5eae2005-11-09 22:32:44 +0000976 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (ret != 0)
978 uart_unregister_driver(&imx_reg);
979
980 return 0;
981}
982
983static void __exit imx_serial_exit(void)
984{
985 uart_unregister_driver(&imx_reg);
Russell Kingc889b892005-11-21 17:05:21 +0000986 platform_driver_unregister(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
989module_init(imx_serial_init);
990module_exit(imx_serial_exit);
991
992MODULE_AUTHOR("Sascha Hauer");
993MODULE_DESCRIPTION("IMX generic serial port driver");
994MODULE_LICENSE("GPL");