blob: 908178fc5a33c00b6d8a04634815f3f9fe2ed802 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for Motorola IMX serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Author: Sascha Hauer <sascha@saschahauer.de>
7 * Copyright (C) 2004 Pengutronix
8 *
Fabian Godehardtb6e49132009-06-11 14:53:18 +01009 * Copyright (C) 2009 emlix GmbH
10 * Author: Fabian Godehardt (added IrDA support for iMX)
11 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
26 * [29-Mar-2005] Mike Lee
27 * Added hardware handshake
28 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
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>
Sascha Hauer38a41fd2008-07-05 10:02:46 +020044#include <linux/clk.h>
Fabian Godehardtb6e49132009-06-11 14:53:18 +010045#include <linux/delay.h>
Oskar Schirmer534fca062009-06-11 14:52:23 +010046#include <linux/rational.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Shawn Guo22698aa2011-06-25 02:04:34 +080048#include <linux/of.h>
49#include <linux/of_device.h>
Shawn Guofed78ce2012-05-06 20:21:05 +080050#include <linux/pinctrl/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <asm/io.h>
53#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010054#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 */
Shawn Guofe6b5402011-06-25 02:04:33 +080071#define IMX21_ONEMS 0xb0 /* One Millisecond register */
72#define IMX1_UTS 0xd0 /* UART Test Register on i.mx1 */
73#define IMX21_UTS 0xb4 /* UART Test Register on all other i.mx*/
Sascha Hauerff4bfb22007-04-26 08:26:13 +010074
75/* UART Control Register Bit Fields.*/
76#define URXD_CHARRDY (1<<15)
77#define URXD_ERR (1<<14)
78#define URXD_OVRRUN (1<<13)
79#define URXD_FRMERR (1<<12)
80#define URXD_BRK (1<<11)
81#define URXD_PRERR (1<<10)
Lucas De Marchi25985ed2011-03-30 22:57:33 -030082#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
Sascha Hauerff4bfb22007-04-26 08:26:13 +010083#define UCR1_ADBR (1<<14) /* Auto detect baud rate */
84#define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
85#define UCR1_IDEN (1<<12) /* Idle condition interrupt */
86#define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
87#define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
88#define UCR1_IREN (1<<7) /* Infrared interface enable */
89#define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
90#define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
91#define UCR1_SNDBRK (1<<4) /* Send break */
92#define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
Shawn Guofe6b5402011-06-25 02:04:33 +080093#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
Sascha Hauerff4bfb22007-04-26 08:26:13 +010094#define UCR1_DOZE (1<<1) /* Doze */
95#define UCR1_UARTEN (1<<0) /* UART enabled */
96#define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
97#define UCR2_IRTS (1<<14) /* Ignore RTS pin */
98#define UCR2_CTSC (1<<13) /* CTS pin control */
99#define UCR2_CTS (1<<12) /* Clear to send */
100#define UCR2_ESCEN (1<<11) /* Escape enable */
101#define UCR2_PREN (1<<8) /* Parity enable */
102#define UCR2_PROE (1<<7) /* Parity odd/even */
103#define UCR2_STPB (1<<6) /* Stop */
104#define UCR2_WS (1<<5) /* Word size */
105#define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +0100106#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100107#define UCR2_TXEN (1<<2) /* Transmitter enabled */
108#define UCR2_RXEN (1<<1) /* Receiver enabled */
109#define UCR2_SRST (1<<0) /* SW reset */
110#define UCR3_DTREN (1<<13) /* DTR interrupt enable */
111#define UCR3_PARERREN (1<<12) /* Parity enable */
112#define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
113#define UCR3_DSR (1<<10) /* Data set ready */
114#define UCR3_DCD (1<<9) /* Data carrier detect */
115#define UCR3_RI (1<<8) /* Ring indicator */
116#define UCR3_TIMEOUTEN (1<<7) /* Timeout interrupt enable */
117#define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
118#define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
119#define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
Shawn Guofe6b5402011-06-25 02:04:33 +0800120#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100121#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
122#define UCR3_BPEN (1<<0) /* Preset registers enable */
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200123#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
124#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100125#define UCR4_INVR (1<<9) /* Inverted infrared reception */
126#define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
127#define UCR4_WKEN (1<<7) /* Wake interrupt enable */
128#define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
129#define UCR4_IRSC (1<<5) /* IR special case */
130#define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
131#define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
132#define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
133#define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
134#define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
135#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100136#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100137#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
138#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
139#define USR1_RTSS (1<<14) /* RTS pin status */
140#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
141#define USR1_RTSD (1<<12) /* RTS delta */
142#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
143#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
144#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
145#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
146#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
147#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
148#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
149#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
150#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
151#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
152#define USR2_IDLE (1<<12) /* Idle condition */
153#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
154#define USR2_WAKE (1<<7) /* Wake */
155#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
156#define USR2_TXDC (1<<3) /* Transmitter complete */
157#define USR2_BRCD (1<<2) /* Break condition */
158#define USR2_ORE (1<<1) /* Overrun error */
159#define USR2_RDR (1<<0) /* Recv data ready */
160#define UTS_FRCPERR (1<<13) /* Force parity error */
161#define UTS_LOOP (1<<12) /* Loop tx and rx */
162#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
163#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
164#define UTS_TXFULL (1<<4) /* TxFIFO full */
165#define UTS_RXFULL (1<<3) /* RxFIFO full */
166#define UTS_SOFTRST (1<<0) /* Software reset */
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/* We've been assigned a range on the "Low-density serial ports" major */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200169#define SERIAL_IMX_MAJOR 207
170#define MINOR_START 16
171#define DEV_NAME "ttymxc"
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
Shawn Guofe6b5402011-06-25 02:04:33 +0800185/* i.mx21 type uart runs on all i.mx except i.mx1 */
186enum imx_uart_type {
187 IMX1_UART,
188 IMX21_UART,
189};
190
191/* device type dependent stuff */
192struct imx_uart_data {
193 unsigned uts_reg;
194 enum imx_uart_type devtype;
195};
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197struct imx_port {
198 struct uart_port port;
199 struct timer_list timer;
200 unsigned int old_status;
Sascha Hauer5b802342006-05-04 14:07:42 +0100201 int txirq,rxirq,rtsirq;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100202 unsigned int have_rtscts:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100203 unsigned int use_irda:1;
204 unsigned int irda_inv_rx:1;
205 unsigned int irda_inv_tx:1;
206 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100207 struct clk *clk_ipg;
208 struct clk *clk_per;
Shawn Guofe6b5402011-06-25 02:04:33 +0800209 struct imx_uart_data *devdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
Dirk Behme0ad5a812011-12-22 09:57:52 +0100212struct imx_port_ucrs {
213 unsigned int ucr1;
214 unsigned int ucr2;
215 unsigned int ucr3;
216};
217
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100218#ifdef CONFIG_IRDA
219#define USE_IRDA(sport) ((sport)->use_irda)
220#else
221#define USE_IRDA(sport) (0)
222#endif
223
Shawn Guofe6b5402011-06-25 02:04:33 +0800224static struct imx_uart_data imx_uart_devdata[] = {
225 [IMX1_UART] = {
226 .uts_reg = IMX1_UTS,
227 .devtype = IMX1_UART,
228 },
229 [IMX21_UART] = {
230 .uts_reg = IMX21_UTS,
231 .devtype = IMX21_UART,
232 },
233};
234
235static struct platform_device_id imx_uart_devtype[] = {
236 {
237 .name = "imx1-uart",
238 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
239 }, {
240 .name = "imx21-uart",
241 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
242 }, {
243 /* sentinel */
244 }
245};
246MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
247
Shawn Guo22698aa2011-06-25 02:04:34 +0800248static struct of_device_id imx_uart_dt_ids[] = {
249 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
250 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
251 { /* sentinel */ }
252};
253MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
254
Shawn Guofe6b5402011-06-25 02:04:33 +0800255static inline unsigned uts_reg(struct imx_port *sport)
256{
257 return sport->devdata->uts_reg;
258}
259
260static inline int is_imx1_uart(struct imx_port *sport)
261{
262 return sport->devdata->devtype == IMX1_UART;
263}
264
265static inline int is_imx21_uart(struct imx_port *sport)
266{
267 return sport->devdata->devtype == IMX21_UART;
268}
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270/*
Dirk Behme0ad5a812011-12-22 09:57:52 +0100271 * Save and restore functions for UCR1, UCR2 and UCR3 registers
272 */
273static void imx_port_ucrs_save(struct uart_port *port,
274 struct imx_port_ucrs *ucr)
275{
276 /* save control registers */
277 ucr->ucr1 = readl(port->membase + UCR1);
278 ucr->ucr2 = readl(port->membase + UCR2);
279 ucr->ucr3 = readl(port->membase + UCR3);
280}
281
282static void imx_port_ucrs_restore(struct uart_port *port,
283 struct imx_port_ucrs *ucr)
284{
285 /* restore control registers */
286 writel(ucr->ucr1, port->membase + UCR1);
287 writel(ucr->ucr2, port->membase + UCR2);
288 writel(ucr->ucr3, port->membase + UCR3);
289}
290
291/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 * Handle any change of modem status signal since we were last called.
293 */
294static void imx_mctrl_check(struct imx_port *sport)
295{
296 unsigned int status, changed;
297
298 status = sport->port.ops->get_mctrl(&sport->port);
299 changed = status ^ sport->old_status;
300
301 if (changed == 0)
302 return;
303
304 sport->old_status = status;
305
306 if (changed & TIOCM_RI)
307 sport->port.icount.rng++;
308 if (changed & TIOCM_DSR)
309 sport->port.icount.dsr++;
310 if (changed & TIOCM_CAR)
311 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
312 if (changed & TIOCM_CTS)
313 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
314
Alan Coxbdc04e32009-09-19 13:13:31 -0700315 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318/*
319 * This is our per-port timeout handler, for checking the
320 * modem status signals.
321 */
322static void imx_timeout(unsigned long data)
323{
324 struct imx_port *sport = (struct imx_port *)data;
325 unsigned long flags;
326
Alan Coxebd2c8f2009-09-19 13:13:28 -0700327 if (sport->port.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 spin_lock_irqsave(&sport->port.lock, flags);
329 imx_mctrl_check(sport);
330 spin_unlock_irqrestore(&sport->port.lock, flags);
331
332 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
333 }
334}
335
336/*
337 * interrupts disabled on entry
338 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100339static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100342 unsigned long temp;
343
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100344 if (USE_IRDA(sport)) {
345 /* half duplex - wait for end of transmission */
346 int n = 256;
347 while ((--n > 0) &&
348 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
349 udelay(5);
350 barrier();
351 }
352 /*
353 * irda transceiver - wait a bit more to avoid
354 * cutoff, hardware dependent
355 */
356 udelay(sport->trcv_delay);
357
358 /*
359 * half duplex - reactivate receive mode,
360 * flush receive pipe echo crap
361 */
362 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
363 temp = readl(sport->port.membase + UCR1);
364 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
365 writel(temp, sport->port.membase + UCR1);
366
367 temp = readl(sport->port.membase + UCR4);
368 temp &= ~(UCR4_TCEN);
369 writel(temp, sport->port.membase + UCR4);
370
371 while (readl(sport->port.membase + URXD0) &
372 URXD_CHARRDY)
373 barrier();
374
375 temp = readl(sport->port.membase + UCR1);
376 temp |= UCR1_RRDYEN;
377 writel(temp, sport->port.membase + UCR1);
378
379 temp = readl(sport->port.membase + UCR4);
380 temp |= UCR4_DREN;
381 writel(temp, sport->port.membase + UCR4);
382 }
383 return;
384 }
385
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100386 temp = readl(sport->port.membase + UCR1);
387 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
390/*
391 * interrupts disabled on entry
392 */
393static void imx_stop_rx(struct uart_port *port)
394{
395 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100396 unsigned long temp;
397
398 temp = readl(sport->port.membase + UCR2);
399 writel(temp &~ UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
402/*
403 * Set the modem control timer to fire immediately.
404 */
405static void imx_enable_ms(struct uart_port *port)
406{
407 struct imx_port *sport = (struct imx_port *)port;
408
409 mod_timer(&sport->timer, jiffies);
410}
411
412static inline void imx_transmit_buffer(struct imx_port *sport)
413{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700414 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Volker Ernst4e4e6602010-10-13 11:03:57 +0200416 while (!uart_circ_empty(xmit) &&
Shawn Guofe6b5402011-06-25 02:04:33 +0800417 !(readl(sport->port.membase + uts_reg(sport))
418 & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /* send xmit->buf[xmit->tail]
420 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100421 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100422 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Fabian Godehardt977757312009-06-11 14:37:19 +0100426 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
427 uart_write_wakeup(&sport->port);
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100430 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
433/*
434 * interrupts disabled on entry
435 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100436static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100439 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100441 if (USE_IRDA(sport)) {
442 /* half duplex in IrDA mode; have to disable receive mode */
443 temp = readl(sport->port.membase + UCR4);
444 temp &= ~(UCR4_DREN);
445 writel(temp, sport->port.membase + UCR4);
446
447 temp = readl(sport->port.membase + UCR1);
448 temp &= ~(UCR1_RRDYEN);
449 writel(temp, sport->port.membase + UCR1);
450 }
451
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100452 temp = readl(sport->port.membase + UCR1);
453 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100455 if (USE_IRDA(sport)) {
456 temp = readl(sport->port.membase + UCR1);
457 temp |= UCR1_TRDYEN;
458 writel(temp, sport->port.membase + UCR1);
459
460 temp = readl(sport->port.membase + UCR4);
461 temp |= UCR4_TCEN;
462 writel(temp, sport->port.membase + UCR4);
463 }
464
Shawn Guofe6b5402011-06-25 02:04:33 +0800465 if (readl(sport->port.membase + uts_reg(sport)) & UTS_TXEMPTY)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100466 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
David Howells7d12e782006-10-05 14:55:46 +0100469static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100470{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800471 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200472 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100473 unsigned long flags;
474
475 spin_lock_irqsave(&sport->port.lock, flags);
476
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100477 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200478 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100479 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700480 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100481
482 spin_unlock_irqrestore(&sport->port.lock, flags);
483 return IRQ_HANDLED;
484}
485
David Howells7d12e782006-10-05 14:55:46 +0100486static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800488 struct imx_port *sport = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700489 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 unsigned long flags;
491
492 spin_lock_irqsave(&sport->port.lock,flags);
493 if (sport->port.x_char)
494 {
495 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100496 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 goto out;
498 }
499
500 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100501 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 goto out;
503 }
504
505 imx_transmit_buffer(sport);
506
507 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
508 uart_write_wakeup(&sport->port);
509
510out:
511 spin_unlock_irqrestore(&sport->port.lock,flags);
512 return IRQ_HANDLED;
513}
514
David Howells7d12e782006-10-05 14:55:46 +0100515static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 struct imx_port *sport = dev_id;
518 unsigned int rx,flg,ignored = 0;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700519 struct tty_struct *tty = sport->port.state->port.tty;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100520 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 spin_lock_irqsave(&sport->port.lock,flags);
523
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100524 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 flg = TTY_NORMAL;
526 sport->port.icount.rx++;
527
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100528 rx = readl(sport->port.membase + URXD0);
529
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100530 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100531 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100532 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100533 if (uart_handle_break(&sport->port))
534 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100537 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100538 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Hui Wang019dc9e2011-08-24 17:41:47 +0800540 if (unlikely(rx & URXD_ERR)) {
541 if (rx & URXD_BRK)
542 sport->port.icount.brk++;
543 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100544 sport->port.icount.parity++;
545 else if (rx & URXD_FRMERR)
546 sport->port.icount.frame++;
547 if (rx & URXD_OVRRUN)
548 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Sascha Hauer864eeed2008-04-17 08:39:22 +0100550 if (rx & sport->port.ignore_status_mask) {
551 if (++ignored > 100)
552 goto out;
553 continue;
554 }
555
556 rx &= sport->port.read_status_mask;
557
Hui Wang019dc9e2011-08-24 17:41:47 +0800558 if (rx & URXD_BRK)
559 flg = TTY_BREAK;
560 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100561 flg = TTY_PARITY;
562 else if (rx & URXD_FRMERR)
563 flg = TTY_FRAME;
564 if (rx & URXD_OVRRUN)
565 flg = TTY_OVERRUN;
566
567#ifdef SUPPORT_SYSRQ
568 sport->port.sysrq = 0;
569#endif
570 }
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 tty_insert_flip_char(tty, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575out:
576 spin_unlock_irqrestore(&sport->port.lock,flags);
577 tty_flip_buffer_push(tty);
578 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200581static irqreturn_t imx_int(int irq, void *dev_id)
582{
583 struct imx_port *sport = dev_id;
584 unsigned int sts;
585
586 sts = readl(sport->port.membase + USR1);
587
588 if (sts & USR1_RRDY)
589 imx_rxint(irq, dev_id);
590
591 if (sts & USR1_TRDY &&
592 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
593 imx_txint(irq, dev_id);
594
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200595 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200596 imx_rtsint(irq, dev_id);
597
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200598 if (sts & USR1_AWAKE)
599 writel(USR1_AWAKE, sport->port.membase + USR1);
600
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200601 return IRQ_HANDLED;
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/*
605 * Return TIOCSER_TEMT when transmitter is not busy.
606 */
607static unsigned int imx_tx_empty(struct uart_port *port)
608{
609 struct imx_port *sport = (struct imx_port *)port;
610
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100611 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100614/*
615 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
616 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617static unsigned int imx_get_mctrl(struct uart_port *port)
618{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100619 struct imx_port *sport = (struct imx_port *)port;
620 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100621
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100622 if (readl(sport->port.membase + USR1) & USR1_RTSS)
623 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100624
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100625 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
626 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100627
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100628 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
632{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100633 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100634 unsigned long temp;
635
636 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100637
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100638 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100639 temp |= UCR2_CTS;
640
641 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644/*
645 * Interrupts always disabled.
646 */
647static void imx_break_ctl(struct uart_port *port, int break_state)
648{
649 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100650 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 spin_lock_irqsave(&sport->port.lock, flags);
653
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100654 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if ( break_state != 0 )
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100657 temp |= UCR1_SNDBRK;
658
659 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 spin_unlock_irqrestore(&sport->port.lock, flags);
662}
663
664#define TXTL 2 /* reset default */
665#define RXTL 1 /* reset default */
666
Sascha Hauer587897f2005-04-29 22:46:40 +0100667static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
668{
669 unsigned int val;
670 unsigned int ufcr_rfdiv;
671
672 /* set receiver / transmitter trigger level.
673 * RFDIV is set such way to satisfy requested uartclk value
674 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100675 val = TXTL << 10 | RXTL;
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100676 ufcr_rfdiv = (clk_get_rate(sport->clk_per) + sport->port.uartclk / 2)
Sascha Hauer38a41fd2008-07-05 10:02:46 +0200677 / sport->port.uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +0100678
679 if(!ufcr_rfdiv)
680 ufcr_rfdiv = 1;
681
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100682 val |= UFCR_RFDIV_REG(ufcr_rfdiv);
Sascha Hauer587897f2005-04-29 22:46:40 +0100683
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100684 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100685
686 return 0;
687}
688
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200689/* half the RX buffer size */
690#define CTSTL 16
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692static int imx_startup(struct uart_port *port)
693{
694 struct imx_port *sport = (struct imx_port *)port;
695 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100696 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Sascha Hauer587897f2005-04-29 22:46:40 +0100698 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /* disable the DREN bit (Data Ready interrupt enable) before
701 * requesting IRQs
702 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100703 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100704
705 if (USE_IRDA(sport))
706 temp |= UCR4_IRSC;
707
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200708 /* set the trigger level for CTS */
709 temp &= ~(UCR4_CTSTL_MASK<< UCR4_CTSTL_SHF);
710 temp |= CTSTL<< UCR4_CTSTL_SHF;
711
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100712 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100714 if (USE_IRDA(sport)) {
715 /* reset fifo's and state machines */
716 int i = 100;
717 temp = readl(sport->port.membase + UCR2);
718 temp &= ~UCR2_SRST;
719 writel(temp, sport->port.membase + UCR2);
720 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
721 (--i > 0)) {
722 udelay(1);
723 }
724 }
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200727 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
728 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200730 if (sport->txirq > 0) {
731 retval = request_irq(sport->rxirq, imx_rxint, 0,
732 DRIVER_NAME, sport);
733 if (retval)
734 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200736 retval = request_irq(sport->txirq, imx_txint, 0,
737 DRIVER_NAME, sport);
738 if (retval)
739 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100741 /* do not use RTS IRQ on IrDA */
742 if (!USE_IRDA(sport)) {
Shawn Guo1ee8f652012-06-14 10:58:54 +0800743 retval = request_irq(sport->rtsirq, imx_rtsint, 0,
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100744 DRIVER_NAME, sport);
745 if (retval)
746 goto error_out3;
747 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200748 } else {
749 retval = request_irq(sport->port.irq, imx_int, 0,
750 DRIVER_NAME, sport);
751 if (retval) {
752 free_irq(sport->port.irq, sport);
753 goto error_out1;
754 }
755 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100756
Xinyu Chen9ec18822012-08-27 09:36:51 +0200757 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 /*
759 * Finally, clear and enable interrupts
760 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100761 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100763 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100764 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100765
766 if (USE_IRDA(sport)) {
767 temp |= UCR1_IREN;
768 temp &= ~(UCR1_RTSDEN);
769 }
770
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100771 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100773 temp = readl(sport->port.membase + UCR2);
774 temp |= (UCR2_RXEN | UCR2_TXEN);
775 writel(temp, sport->port.membase + UCR2);
776
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100777 if (USE_IRDA(sport)) {
778 /* clear RX-FIFO */
779 int i = 64;
780 while ((--i > 0) &&
781 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
782 barrier();
783 }
784 }
785
Shawn Guofe6b5402011-06-25 02:04:33 +0800786 if (is_imx21_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200787 temp = readl(sport->port.membase + UCR3);
Shawn Guofe6b5402011-06-25 02:04:33 +0800788 temp |= IMX21_UCR3_RXDMUXSEL;
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200789 writel(temp, sport->port.membase + UCR3);
790 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200791
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100792 if (USE_IRDA(sport)) {
793 temp = readl(sport->port.membase + UCR4);
794 if (sport->irda_inv_rx)
795 temp |= UCR4_INVR;
796 else
797 temp &= ~(UCR4_INVR);
798 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
799
800 temp = readl(sport->port.membase + UCR3);
801 if (sport->irda_inv_tx)
802 temp |= UCR3_INVT;
803 else
804 temp &= ~(UCR3_INVT);
805 writel(temp, sport->port.membase + UCR3);
806 }
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /*
809 * Enable modem status interrupts
810 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 imx_enable_ms(&sport->port);
812 spin_unlock_irqrestore(&sport->port.lock,flags);
813
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100814 if (USE_IRDA(sport)) {
815 struct imxuart_platform_data *pdata;
816 pdata = sport->port.dev->platform_data;
817 sport->irda_inv_rx = pdata->irda_inv_rx;
818 sport->irda_inv_tx = pdata->irda_inv_tx;
819 sport->trcv_delay = pdata->transceiver_delay;
820 if (pdata->irda_enable)
821 pdata->irda_enable(1);
822 }
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return 0;
825
Sascha Hauerceca6292005-10-12 19:58:08 +0100826error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200827 if (sport->txirq)
828 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200830 if (sport->rxirq)
831 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100832error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return retval;
834}
835
836static void imx_shutdown(struct uart_port *port)
837{
838 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100839 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +0200840 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Xinyu Chen9ec18822012-08-27 09:36:51 +0200842 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100843 temp = readl(sport->port.membase + UCR2);
844 temp &= ~(UCR2_TXEN);
845 writel(temp, sport->port.membase + UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200846 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100847
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100848 if (USE_IRDA(sport)) {
849 struct imxuart_platform_data *pdata;
850 pdata = sport->port.dev->platform_data;
851 if (pdata->irda_enable)
852 pdata->irda_enable(0);
853 }
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /*
856 * Stop our timer.
857 */
858 del_timer_sync(&sport->timer);
859
860 /*
861 * Free the interrupts
862 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200863 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100864 if (!USE_IRDA(sport))
865 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200866 free_irq(sport->txirq, sport);
867 free_irq(sport->rxirq, sport);
868 } else
869 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 /*
872 * Disable all interrupts, port and break condition.
873 */
874
Xinyu Chen9ec18822012-08-27 09:36:51 +0200875 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100876 temp = readl(sport->port.membase + UCR1);
877 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100878 if (USE_IRDA(sport))
879 temp &= ~(UCR1_IREN);
880
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100881 writel(temp, sport->port.membase + UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200882 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885static void
Alan Cox606d0992006-12-08 02:38:45 -0800886imx_set_termios(struct uart_port *port, struct ktermios *termios,
887 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 struct imx_port *sport = (struct imx_port *)port;
890 unsigned long flags;
891 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
892 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca062009-06-11 14:52:23 +0100893 unsigned int div, ufcr;
894 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100895 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 /*
898 * If we don't support modem control lines, don't allow
899 * these to be set.
900 */
901 if (0) {
902 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
903 termios->c_cflag |= CLOCAL;
904 }
905
906 /*
907 * We only support CS7 and CS8.
908 */
909 while ((termios->c_cflag & CSIZE) != CS7 &&
910 (termios->c_cflag & CSIZE) != CS8) {
911 termios->c_cflag &= ~CSIZE;
912 termios->c_cflag |= old_csize;
913 old_csize = CS8;
914 }
915
916 if ((termios->c_cflag & CSIZE) == CS8)
917 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
918 else
919 ucr2 = UCR2_SRST | UCR2_IRTS;
920
921 if (termios->c_cflag & CRTSCTS) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100922 if( sport->have_rtscts ) {
923 ucr2 &= ~UCR2_IRTS;
924 ucr2 |= UCR2_CTSC;
925 } else {
926 termios->c_cflag &= ~CRTSCTS;
927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929
930 if (termios->c_cflag & CSTOPB)
931 ucr2 |= UCR2_STPB;
932 if (termios->c_cflag & PARENB) {
933 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000934 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 ucr2 |= UCR2_PROE;
936 }
937
Eric Miao995234d2011-12-23 05:39:27 +0800938 del_timer_sync(&sport->timer);
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /*
941 * Ask the core to calculate the divisor for us.
942 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200943 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 quot = uart_get_divisor(port, baud);
945
946 spin_lock_irqsave(&sport->port.lock, flags);
947
948 sport->port.read_status_mask = 0;
949 if (termios->c_iflag & INPCK)
950 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
951 if (termios->c_iflag & (BRKINT | PARMRK))
952 sport->port.read_status_mask |= URXD_BRK;
953
954 /*
955 * Characters to ignore
956 */
957 sport->port.ignore_status_mask = 0;
958 if (termios->c_iflag & IGNPAR)
959 sport->port.ignore_status_mask |= URXD_PRERR;
960 if (termios->c_iflag & IGNBRK) {
961 sport->port.ignore_status_mask |= URXD_BRK;
962 /*
963 * If we're ignoring parity and break indicators,
964 * ignore overruns too (for real raw support).
965 */
966 if (termios->c_iflag & IGNPAR)
967 sport->port.ignore_status_mask |= URXD_OVRRUN;
968 }
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /*
971 * Update the per-port timeout.
972 */
973 uart_update_timeout(port, termios->c_cflag, baud);
974
975 /*
976 * disable interrupts and drain transmitter
977 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100978 old_ucr1 = readl(sport->port.membase + UCR1);
979 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
980 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100982 while ( !(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 barrier();
984
985 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100986 old_txrxen = readl(sport->port.membase + UCR2);
987 writel(old_txrxen & ~( UCR2_TXEN | UCR2_RXEN),
988 sport->port.membase + UCR2);
989 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100991 if (USE_IRDA(sport)) {
992 /*
993 * use maximum available submodule frequency to
994 * avoid missing short pulses due to low sampling rate
995 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200996 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100997 } else {
998 div = sport->port.uartclk / (baud * 16);
999 if (div > 7)
1000 div = 7;
1001 if (!div)
1002 div = 1;
1003 }
Sascha Hauer036bb152008-07-05 10:02:44 +02001004
Oskar Schirmer534fca062009-06-11 14:52:23 +01001005 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1006 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001007
Alan Coxeab4f5a2010-06-01 22:52:52 +02001008 tdiv64 = sport->port.uartclk;
1009 tdiv64 *= num;
1010 do_div(tdiv64, denom * 16 * div);
1011 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001012 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001013
Oskar Schirmer534fca062009-06-11 14:52:23 +01001014 num -= 1;
1015 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001016
1017 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001018 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Sascha Hauer036bb152008-07-05 10:02:44 +02001019 writel(ufcr, sport->port.membase + UFCR);
1020
Oskar Schirmer534fca062009-06-11 14:52:23 +01001021 writel(num, sport->port.membase + UBIR);
1022 writel(denom, sport->port.membase + UBMR);
1023
Shawn Guofe6b5402011-06-25 02:04:33 +08001024 if (is_imx21_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001025 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001026 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001028 writel(old_ucr1, sport->port.membase + UCR1);
1029
1030 /* set the parity, stop bits and data size */
1031 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1034 imx_enable_ms(&sport->port);
1035
1036 spin_unlock_irqrestore(&sport->port.lock, flags);
1037}
1038
1039static const char *imx_type(struct uart_port *port)
1040{
1041 struct imx_port *sport = (struct imx_port *)port;
1042
1043 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1044}
1045
1046/*
1047 * Release the memory region(s) being used by 'port'.
1048 */
1049static void imx_release_port(struct uart_port *port)
1050{
Sascha Hauer3d454442008-04-17 08:47:32 +01001051 struct platform_device *pdev = to_platform_device(port->dev);
1052 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Sascha Hauer3d454442008-04-17 08:47:32 +01001054 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joe Perches28f65c112011-06-09 09:13:32 -07001055 release_mem_region(mmres->start, resource_size(mmres));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
1058/*
1059 * Request the memory region(s) being used by 'port'.
1060 */
1061static int imx_request_port(struct uart_port *port)
1062{
Sascha Hauer3d454442008-04-17 08:47:32 +01001063 struct platform_device *pdev = to_platform_device(port->dev);
1064 struct resource *mmres;
1065 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Sascha Hauer3d454442008-04-17 08:47:32 +01001067 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1068 if (!mmres)
1069 return -ENODEV;
1070
Joe Perches28f65c112011-06-09 09:13:32 -07001071 ret = request_mem_region(mmres->start, resource_size(mmres), "imx-uart");
Sascha Hauer3d454442008-04-17 08:47:32 +01001072
1073 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
1076/*
1077 * Configure/autoconfigure the port.
1078 */
1079static void imx_config_port(struct uart_port *port, int flags)
1080{
1081 struct imx_port *sport = (struct imx_port *)port;
1082
1083 if (flags & UART_CONFIG_TYPE &&
1084 imx_request_port(&sport->port) == 0)
1085 sport->port.type = PORT_IMX;
1086}
1087
1088/*
1089 * Verify the new serial_struct (for TIOCSSERIAL).
1090 * The only change we allow are to the flags and type, and
1091 * even then only between PORT_IMX and PORT_UNKNOWN
1092 */
1093static int
1094imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1095{
1096 struct imx_port *sport = (struct imx_port *)port;
1097 int ret = 0;
1098
1099 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1100 ret = -EINVAL;
1101 if (sport->port.irq != ser->irq)
1102 ret = -EINVAL;
1103 if (ser->io_type != UPIO_MEM)
1104 ret = -EINVAL;
1105 if (sport->port.uartclk / 16 != ser->baud_base)
1106 ret = -EINVAL;
1107 if ((void *)sport->port.mapbase != ser->iomem_base)
1108 ret = -EINVAL;
1109 if (sport->port.iobase != ser->port)
1110 ret = -EINVAL;
1111 if (ser->hub6 != 0)
1112 ret = -EINVAL;
1113 return ret;
1114}
1115
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001116#if defined(CONFIG_CONSOLE_POLL)
1117static int imx_poll_get_char(struct uart_port *port)
1118{
1119 struct imx_port_ucrs old_ucr;
1120 unsigned int status;
1121 unsigned char c;
1122
1123 /* save control registers */
1124 imx_port_ucrs_save(port, &old_ucr);
1125
1126 /* disable interrupts */
1127 writel(UCR1_UARTEN, port->membase + UCR1);
1128 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1129 port->membase + UCR2);
1130 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1131 port->membase + UCR3);
1132
1133 /* poll */
1134 do {
1135 status = readl(port->membase + USR2);
1136 } while (~status & USR2_RDR);
1137
1138 /* read */
1139 c = readl(port->membase + URXD0);
1140
1141 /* restore control registers */
1142 imx_port_ucrs_restore(port, &old_ucr);
1143
1144 return c;
1145}
1146
1147static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1148{
1149 struct imx_port_ucrs old_ucr;
1150 unsigned int status;
1151
1152 /* save control registers */
1153 imx_port_ucrs_save(port, &old_ucr);
1154
1155 /* disable interrupts */
1156 writel(UCR1_UARTEN, port->membase + UCR1);
1157 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1158 port->membase + UCR2);
1159 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1160 port->membase + UCR3);
1161
1162 /* drain */
1163 do {
1164 status = readl(port->membase + USR1);
1165 } while (~status & USR1_TRDY);
1166
1167 /* write */
1168 writel(c, port->membase + URTX0);
1169
1170 /* flush */
1171 do {
1172 status = readl(port->membase + USR2);
1173 } while (~status & USR2_TXDC);
1174
1175 /* restore control registers */
1176 imx_port_ucrs_restore(port, &old_ucr);
1177}
1178#endif
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180static struct uart_ops imx_pops = {
1181 .tx_empty = imx_tx_empty,
1182 .set_mctrl = imx_set_mctrl,
1183 .get_mctrl = imx_get_mctrl,
1184 .stop_tx = imx_stop_tx,
1185 .start_tx = imx_start_tx,
1186 .stop_rx = imx_stop_rx,
1187 .enable_ms = imx_enable_ms,
1188 .break_ctl = imx_break_ctl,
1189 .startup = imx_startup,
1190 .shutdown = imx_shutdown,
1191 .set_termios = imx_set_termios,
1192 .type = imx_type,
1193 .release_port = imx_release_port,
1194 .request_port = imx_request_port,
1195 .config_port = imx_config_port,
1196 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001197#if defined(CONFIG_CONSOLE_POLL)
1198 .poll_get_char = imx_poll_get_char,
1199 .poll_put_char = imx_poll_put_char,
1200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201};
1202
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001203static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001206static void imx_console_putchar(struct uart_port *port, int ch)
1207{
1208 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001209
Shawn Guofe6b5402011-06-25 02:04:33 +08001210 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001211 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001212
1213 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001214}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216/*
1217 * Interrupts are disabled on entering
1218 */
1219static void
1220imx_console_write(struct console *co, const char *s, unsigned int count)
1221{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001222 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001223 struct imx_port_ucrs old_ucr;
1224 unsigned int ucr1;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001225 unsigned long flags;
1226
1227 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001230 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001232 imx_port_ucrs_save(&sport->port, &old_ucr);
1233 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Shawn Guofe6b5402011-06-25 02:04:33 +08001235 if (is_imx1_uart(sport))
1236 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001237 ucr1 |= UCR1_UARTEN;
1238 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1239
1240 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001241
Dirk Behme0ad5a812011-12-22 09:57:52 +01001242 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Russell Kingd3587882006-03-20 20:00:09 +00001244 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /*
1247 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001248 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001250 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Dirk Behme0ad5a812011-12-22 09:57:52 +01001252 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001253
1254 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
1257/*
1258 * If the port was already initialised (eg, by a boot loader),
1259 * try to determine the current setup.
1260 */
1261static void __init
1262imx_console_get_options(struct imx_port *sport, int *baud,
1263 int *parity, int *bits)
1264{
Sascha Hauer587897f2005-04-29 22:46:40 +01001265
Roel Kluin2e2eb502009-12-09 12:31:36 -08001266 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 /* ok, the port was enabled */
1268 unsigned int ucr2, ubir,ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001269 unsigned int baud_raw;
1270 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001272 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 *parity = 'n';
1275 if (ucr2 & UCR2_PREN) {
1276 if (ucr2 & UCR2_PROE)
1277 *parity = 'o';
1278 else
1279 *parity = 'e';
1280 }
1281
1282 if (ucr2 & UCR2_WS)
1283 *bits = 8;
1284 else
1285 *bits = 7;
1286
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001287 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1288 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001290 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001291 if (ucfr_rfdiv == 6)
1292 ucfr_rfdiv = 7;
1293 else
1294 ucfr_rfdiv = 6 - ucfr_rfdiv;
1295
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001296 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001297 uartclk /= ucfr_rfdiv;
1298
1299 { /*
1300 * The next code provides exact computation of
1301 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1302 * without need of float support or long long division,
1303 * which would be required to prevent 32bit arithmetic overflow
1304 */
1305 unsigned int mul = ubir + 1;
1306 unsigned int div = 16 * (ubmr + 1);
1307 unsigned int rem = uartclk % div;
1308
1309 baud_raw = (uartclk / div) * mul;
1310 baud_raw += (rem * mul + div / 2) / div;
1311 *baud = (baud_raw + 50) / 100 * 100;
1312 }
1313
1314 if(*baud != baud_raw)
1315 printk(KERN_INFO "Serial: Console IMX rounded baud rate from %d to %d\n",
1316 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
1318}
1319
1320static int __init
1321imx_console_setup(struct console *co, char *options)
1322{
1323 struct imx_port *sport;
1324 int baud = 9600;
1325 int bits = 8;
1326 int parity = 'n';
1327 int flow = 'n';
1328
1329 /*
1330 * Check whether an invalid uart number has been specified, and
1331 * if so, search for the first available port that does have
1332 * console support.
1333 */
1334 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1335 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001336 sport = imx_ports[co->index];
Eric Lammertse76afc42009-05-19 20:53:20 -04001337 if(sport == NULL)
1338 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 if (options)
1341 uart_parse_options(options, &baud, &parity, &bits, &flow);
1342 else
1343 imx_console_get_options(sport, &baud, &parity, &bits);
1344
Sascha Hauer587897f2005-04-29 22:46:40 +01001345 imx_setup_ufcr(sport, 0);
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1348}
1349
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001350static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001352 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 .write = imx_console_write,
1354 .device = uart_console_device,
1355 .setup = imx_console_setup,
1356 .flags = CON_PRINTBUFFER,
1357 .index = -1,
1358 .data = &imx_reg,
1359};
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361#define IMX_CONSOLE &imx_console
1362#else
1363#define IMX_CONSOLE NULL
1364#endif
1365
1366static struct uart_driver imx_reg = {
1367 .owner = THIS_MODULE,
1368 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001369 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 .major = SERIAL_IMX_MAJOR,
1371 .minor = MINOR_START,
1372 .nr = ARRAY_SIZE(imx_ports),
1373 .cons = IMX_CONSOLE,
1374};
1375
Russell King3ae5eae2005-11-09 22:32:44 +00001376static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001378 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001379 unsigned int val;
1380
1381 /* enable wakeup from i.MX UART */
1382 val = readl(sport->port.membase + UCR3);
1383 val |= UCR3_AWAKEN;
1384 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001386 if (sport)
1387 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Russell King3ae5eae2005-11-09 22:32:44 +00001392static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001394 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001395 unsigned int val;
1396
1397 /* disable wakeup from i.MX UART */
1398 val = readl(sport->port.membase + UCR3);
1399 val &= ~UCR3_AWAKEN;
1400 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001402 if (sport)
1403 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Shawn Guo22698aa2011-06-25 02:04:34 +08001408#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001409/*
1410 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1411 * could successfully get all information from dt or a negative errno.
1412 */
Shawn Guo22698aa2011-06-25 02:04:34 +08001413static int serial_imx_probe_dt(struct imx_port *sport,
1414 struct platform_device *pdev)
1415{
1416 struct device_node *np = pdev->dev.of_node;
1417 const struct of_device_id *of_id =
1418 of_match_device(imx_uart_dt_ids, &pdev->dev);
Shawn Guoff059672011-09-22 14:48:13 +08001419 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001420
1421 if (!np)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001422 /* no device tree device */
1423 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001424
Shawn Guoff059672011-09-22 14:48:13 +08001425 ret = of_alias_get_id(np, "serial");
1426 if (ret < 0) {
1427 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01001428 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08001429 }
1430 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001431
1432 if (of_get_property(np, "fsl,uart-has-rtscts", NULL))
1433 sport->have_rtscts = 1;
1434
1435 if (of_get_property(np, "fsl,irda-mode", NULL))
1436 sport->use_irda = 1;
1437
1438 sport->devdata = of_id->data;
1439
1440 return 0;
1441}
1442#else
1443static inline int serial_imx_probe_dt(struct imx_port *sport,
1444 struct platform_device *pdev)
1445{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001446 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001447}
1448#endif
1449
1450static void serial_imx_probe_pdata(struct imx_port *sport,
1451 struct platform_device *pdev)
1452{
1453 struct imxuart_platform_data *pdata = pdev->dev.platform_data;
1454
1455 sport->port.line = pdev->id;
1456 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
1457
1458 if (!pdata)
1459 return;
1460
1461 if (pdata->flags & IMXUART_HAVE_RTSCTS)
1462 sport->have_rtscts = 1;
1463
1464 if (pdata->flags & IMXUART_IRDA)
1465 sport->use_irda = 1;
1466}
1467
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001468static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001470 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001471 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001472 void __iomem *base;
1473 int ret = 0;
1474 struct resource *res;
Shawn Guofed78ce2012-05-06 20:21:05 +08001475 struct pinctrl *pinctrl;
Sascha Hauer5b802342006-05-04 14:07:42 +01001476
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001477 sport = kzalloc(sizeof(*sport), GFP_KERNEL);
1478 if (!sport)
1479 return -ENOMEM;
1480
Shawn Guo22698aa2011-06-25 02:04:34 +08001481 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001482 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08001483 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001484 else if (ret < 0)
1485 goto free;
Shawn Guo22698aa2011-06-25 02:04:34 +08001486
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001487 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1488 if (!res) {
1489 ret = -ENODEV;
1490 goto free;
1491 }
1492
1493 base = ioremap(res->start, PAGE_SIZE);
1494 if (!base) {
1495 ret = -ENOMEM;
1496 goto free;
1497 }
1498
1499 sport->port.dev = &pdev->dev;
1500 sport->port.mapbase = res->start;
1501 sport->port.membase = base;
1502 sport->port.type = PORT_IMX,
1503 sport->port.iotype = UPIO_MEM;
1504 sport->port.irq = platform_get_irq(pdev, 0);
1505 sport->rxirq = platform_get_irq(pdev, 0);
1506 sport->txirq = platform_get_irq(pdev, 1);
1507 sport->rtsirq = platform_get_irq(pdev, 2);
1508 sport->port.fifosize = 32;
1509 sport->port.ops = &imx_pops;
1510 sport->port.flags = UPF_BOOT_AUTOCONF;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001511 init_timer(&sport->timer);
1512 sport->timer.function = imx_timeout;
1513 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001514
Shawn Guofed78ce2012-05-06 20:21:05 +08001515 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1516 if (IS_ERR(pinctrl)) {
1517 ret = PTR_ERR(pinctrl);
1518 goto unmap;
1519 }
1520
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001521 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1522 if (IS_ERR(sport->clk_ipg)) {
1523 ret = PTR_ERR(sport->clk_ipg);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001524 goto unmap;
1525 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001526
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001527 sport->clk_per = devm_clk_get(&pdev->dev, "per");
1528 if (IS_ERR(sport->clk_per)) {
1529 ret = PTR_ERR(sport->clk_per);
1530 goto unmap;
1531 }
1532
1533 clk_prepare_enable(sport->clk_per);
1534 clk_prepare_enable(sport->clk_ipg);
1535
1536 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001537
Shawn Guo22698aa2011-06-25 02:04:34 +08001538 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001539
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001540 pdata = pdev->dev.platform_data;
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001541 if (pdata && pdata->init) {
Darius Augulisc45e7d72008-09-02 10:19:29 +02001542 ret = pdata->init(pdev);
1543 if (ret)
1544 goto clkput;
1545 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001546
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001547 ret = uart_add_one_port(&imx_reg, &sport->port);
1548 if (ret)
1549 goto deinit;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001550 platform_set_drvdata(pdev, &sport->port);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001553deinit:
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001554 if (pdata && pdata->exit)
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001555 pdata->exit(pdev);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001556clkput:
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001557 clk_disable_unprepare(sport->clk_per);
1558 clk_disable_unprepare(sport->clk_ipg);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001559unmap:
1560 iounmap(sport->port.membase);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001561free:
1562 kfree(sport);
1563
1564 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001567static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001569 struct imxuart_platform_data *pdata;
1570 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001572 pdata = pdev->dev.platform_data;
1573
1574 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001576 uart_remove_one_port(&imx_reg, &sport->port);
1577
1578 clk_disable_unprepare(sport->clk_per);
1579 clk_disable_unprepare(sport->clk_ipg);
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001580
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001581 if (pdata && pdata->exit)
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001582 pdata->exit(pdev);
1583
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001584 iounmap(sport->port.membase);
1585 kfree(sport);
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return 0;
1588}
1589
Russell King3ae5eae2005-11-09 22:32:44 +00001590static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001591 .probe = serial_imx_probe,
1592 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 .suspend = serial_imx_suspend,
1595 .resume = serial_imx_resume,
Shawn Guofe6b5402011-06-25 02:04:33 +08001596 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00001597 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001598 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001599 .owner = THIS_MODULE,
Shawn Guo22698aa2011-06-25 02:04:34 +08001600 .of_match_table = imx_uart_dt_ids,
Russell King3ae5eae2005-11-09 22:32:44 +00001601 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602};
1603
1604static int __init imx_serial_init(void)
1605{
1606 int ret;
1607
1608 printk(KERN_INFO "Serial: IMX driver\n");
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 ret = uart_register_driver(&imx_reg);
1611 if (ret)
1612 return ret;
1613
Russell King3ae5eae2005-11-09 22:32:44 +00001614 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (ret != 0)
1616 uart_unregister_driver(&imx_reg);
1617
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01001618 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
1621static void __exit imx_serial_exit(void)
1622{
Russell Kingc889b892005-11-21 17:05:21 +00001623 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001624 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
1627module_init(imx_serial_init);
1628module_exit(imx_serial_exit);
1629
1630MODULE_AUTHOR("Sascha Hauer");
1631MODULE_DESCRIPTION("IMX generic serial port driver");
1632MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001633MODULE_ALIAS("platform:imx-uart");