blob: 831324a9745bf2ef980ad4c1db293fec0e13b210 [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 Schirmer534fca02009-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>
Sachin Kamate32a9f82013-01-07 10:25:03 +053051#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/irq.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020054#include <linux/platform_data/serial-imx.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.*/
Sachin Kamat82313e62013-01-07 10:25:02 +053076#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)
82#define UCR1_ADEN (1<<15) /* Auto detect interrupt */
83#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 */
93#define IMX1_UCR1_UARTCLKEN (1<<2) /* UART clock enabled, i.mx1 only */
94#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 */
106#define UCR2_ATEN (1<<3) /* Aging Timer Enable */
107#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 */
120#define IMX21_UCR3_RXDMUXSEL (1<<2) /* RXD Muxed Input Select */
121#define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
122#define UCR3_BPEN (1<<0) /* Preset registers enable */
123#define UCR4_CTSTL_SHF 10 /* CTS trigger level shift */
124#define UCR4_CTSTL_MASK 0x3F /* CTS trigger is 6 bits wide */
125#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_DCEDTE (1<<6) /* DCE/DTE mode select */
136#define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
137#define UFCR_RFDIV_REG(x) (((x) < 7 ? 6 - (x) : 6) << 7)
138#define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
139#define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
140#define USR1_RTSS (1<<14) /* RTS pin status */
141#define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
142#define USR1_RTSD (1<<12) /* RTS delta */
143#define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
144#define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
145#define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
146#define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
147#define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
148#define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
149#define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
150#define USR2_ADET (1<<15) /* Auto baud rate detect complete */
151#define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
152#define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
153#define USR2_IDLE (1<<12) /* Idle condition */
154#define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
155#define USR2_WAKE (1<<7) /* Wake */
156#define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
157#define USR2_TXDC (1<<3) /* Transmitter complete */
158#define USR2_BRCD (1<<2) /* Break condition */
159#define USR2_ORE (1<<1) /* Overrun error */
160#define USR2_RDR (1<<0) /* Recv data ready */
161#define UTS_FRCPERR (1<<13) /* Force parity error */
162#define UTS_LOOP (1<<12) /* Loop tx and rx */
163#define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
164#define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
165#define UTS_TXFULL (1<<4) /* TxFIFO full */
166#define UTS_RXFULL (1<<3) /* RxFIFO full */
167#define UTS_SOFTRST (1<<0) /* Software reset */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/* We've been assigned a range on the "Low-density serial ports" major */
Sachin Kamat82313e62013-01-07 10:25:02 +0530170#define SERIAL_IMX_MAJOR 207
171#define MINOR_START 16
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200172#define DEV_NAME "ttymxc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * This determines how often we check the modem status signals
176 * for any change. They generally aren't connected to an IRQ
177 * so we have to poll them. We also check immediately before
178 * filling the TX fifo incase CTS has been dropped.
179 */
180#define MCTRL_TIMEOUT (250*HZ/1000)
181
182#define DRIVER_NAME "IMX-uart"
183
Sascha Hauerdbff4e92008-07-05 10:02:45 +0200184#define UART_NR 8
185
Shawn Guofe6b5402011-06-25 02:04:33 +0800186/* i.mx21 type uart runs on all i.mx except i.mx1 */
187enum imx_uart_type {
188 IMX1_UART,
189 IMX21_UART,
190};
191
192/* device type dependent stuff */
193struct imx_uart_data {
194 unsigned uts_reg;
195 enum imx_uart_type devtype;
196};
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198struct imx_port {
199 struct uart_port port;
200 struct timer_list timer;
201 unsigned int old_status;
Sachin Kamat82313e62013-01-07 10:25:02 +0530202 int txirq, rxirq, rtsirq;
Daniel Glöckner26bbb3f2009-06-11 14:36:29 +0100203 unsigned int have_rtscts:1;
Huang Shijie20ff2fe2013-05-30 14:07:12 +0800204 unsigned int dte_mode:1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100205 unsigned int use_irda:1;
206 unsigned int irda_inv_rx:1;
207 unsigned int irda_inv_tx:1;
208 unsigned short trcv_delay; /* transceiver delay */
Sascha Hauer3a9465f2012-03-07 09:31:43 +0100209 struct clk *clk_ipg;
210 struct clk *clk_per;
Uwe Kleine-König7d0b0662012-05-21 21:57:39 +0200211 const struct imx_uart_data *devdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Dirk Behme0ad5a812011-12-22 09:57:52 +0100214struct imx_port_ucrs {
215 unsigned int ucr1;
216 unsigned int ucr2;
217 unsigned int ucr3;
218};
219
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100220#ifdef CONFIG_IRDA
221#define USE_IRDA(sport) ((sport)->use_irda)
222#else
223#define USE_IRDA(sport) (0)
224#endif
225
Shawn Guofe6b5402011-06-25 02:04:33 +0800226static struct imx_uart_data imx_uart_devdata[] = {
227 [IMX1_UART] = {
228 .uts_reg = IMX1_UTS,
229 .devtype = IMX1_UART,
230 },
231 [IMX21_UART] = {
232 .uts_reg = IMX21_UTS,
233 .devtype = IMX21_UART,
234 },
235};
236
237static struct platform_device_id imx_uart_devtype[] = {
238 {
239 .name = "imx1-uart",
240 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX1_UART],
241 }, {
242 .name = "imx21-uart",
243 .driver_data = (kernel_ulong_t) &imx_uart_devdata[IMX21_UART],
244 }, {
245 /* sentinel */
246 }
247};
248MODULE_DEVICE_TABLE(platform, imx_uart_devtype);
249
Shawn Guo22698aa2011-06-25 02:04:34 +0800250static struct of_device_id imx_uart_dt_ids[] = {
251 { .compatible = "fsl,imx1-uart", .data = &imx_uart_devdata[IMX1_UART], },
252 { .compatible = "fsl,imx21-uart", .data = &imx_uart_devdata[IMX21_UART], },
253 { /* sentinel */ }
254};
255MODULE_DEVICE_TABLE(of, imx_uart_dt_ids);
256
Shawn Guofe6b5402011-06-25 02:04:33 +0800257static inline unsigned uts_reg(struct imx_port *sport)
258{
259 return sport->devdata->uts_reg;
260}
261
262static inline int is_imx1_uart(struct imx_port *sport)
263{
264 return sport->devdata->devtype == IMX1_UART;
265}
266
267static inline int is_imx21_uart(struct imx_port *sport)
268{
269 return sport->devdata->devtype == IMX21_UART;
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272/*
fabio.estevam@freescale.com44a75412013-02-06 19:00:02 -0200273 * Save and restore functions for UCR1, UCR2 and UCR3 registers
274 */
275static void imx_port_ucrs_save(struct uart_port *port,
276 struct imx_port_ucrs *ucr)
277{
278 /* save control registers */
279 ucr->ucr1 = readl(port->membase + UCR1);
280 ucr->ucr2 = readl(port->membase + UCR2);
281 ucr->ucr3 = readl(port->membase + UCR3);
282}
283
284static void imx_port_ucrs_restore(struct uart_port *port,
285 struct imx_port_ucrs *ucr)
286{
287 /* restore control registers */
288 writel(ucr->ucr1, port->membase + UCR1);
289 writel(ucr->ucr2, port->membase + UCR2);
290 writel(ucr->ucr3, port->membase + UCR3);
291}
292
293/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * Handle any change of modem status signal since we were last called.
295 */
296static void imx_mctrl_check(struct imx_port *sport)
297{
298 unsigned int status, changed;
299
300 status = sport->port.ops->get_mctrl(&sport->port);
301 changed = status ^ sport->old_status;
302
303 if (changed == 0)
304 return;
305
306 sport->old_status = status;
307
308 if (changed & TIOCM_RI)
309 sport->port.icount.rng++;
310 if (changed & TIOCM_DSR)
311 sport->port.icount.dsr++;
312 if (changed & TIOCM_CAR)
313 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR);
314 if (changed & TIOCM_CTS)
315 uart_handle_cts_change(&sport->port, status & TIOCM_CTS);
316
Alan Coxbdc04e32009-09-19 13:13:31 -0700317 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320/*
321 * This is our per-port timeout handler, for checking the
322 * modem status signals.
323 */
324static void imx_timeout(unsigned long data)
325{
326 struct imx_port *sport = (struct imx_port *)data;
327 unsigned long flags;
328
Alan Coxebd2c8f2009-09-19 13:13:28 -0700329 if (sport->port.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 spin_lock_irqsave(&sport->port.lock, flags);
331 imx_mctrl_check(sport);
332 spin_unlock_irqrestore(&sport->port.lock, flags);
333
334 mod_timer(&sport->timer, jiffies + MCTRL_TIMEOUT);
335 }
336}
337
338/*
339 * interrupts disabled on entry
340 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100341static void imx_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100344 unsigned long temp;
345
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100346 if (USE_IRDA(sport)) {
347 /* half duplex - wait for end of transmission */
348 int n = 256;
349 while ((--n > 0) &&
350 !(readl(sport->port.membase + USR2) & USR2_TXDC)) {
351 udelay(5);
352 barrier();
353 }
354 /*
355 * irda transceiver - wait a bit more to avoid
356 * cutoff, hardware dependent
357 */
358 udelay(sport->trcv_delay);
359
360 /*
361 * half duplex - reactivate receive mode,
362 * flush receive pipe echo crap
363 */
364 if (readl(sport->port.membase + USR2) & USR2_TXDC) {
365 temp = readl(sport->port.membase + UCR1);
366 temp &= ~(UCR1_TXMPTYEN | UCR1_TRDYEN);
367 writel(temp, sport->port.membase + UCR1);
368
369 temp = readl(sport->port.membase + UCR4);
370 temp &= ~(UCR4_TCEN);
371 writel(temp, sport->port.membase + UCR4);
372
373 while (readl(sport->port.membase + URXD0) &
374 URXD_CHARRDY)
375 barrier();
376
377 temp = readl(sport->port.membase + UCR1);
378 temp |= UCR1_RRDYEN;
379 writel(temp, sport->port.membase + UCR1);
380
381 temp = readl(sport->port.membase + UCR4);
382 temp |= UCR4_DREN;
383 writel(temp, sport->port.membase + UCR4);
384 }
385 return;
386 }
387
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100388 temp = readl(sport->port.membase + UCR1);
389 writel(temp & ~UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392/*
393 * interrupts disabled on entry
394 */
395static void imx_stop_rx(struct uart_port *port)
396{
397 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100398 unsigned long temp;
399
400 temp = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +0530401 writel(temp & ~UCR2_RXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404/*
405 * Set the modem control timer to fire immediately.
406 */
407static void imx_enable_ms(struct uart_port *port)
408{
409 struct imx_port *sport = (struct imx_port *)port;
410
411 mod_timer(&sport->timer, jiffies);
412}
413
414static inline void imx_transmit_buffer(struct imx_port *sport)
415{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700416 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Volker Ernst4e4e6602010-10-13 11:03:57 +0200418 while (!uart_circ_empty(xmit) &&
Shawn Guofe6b5402011-06-25 02:04:33 +0800419 !(readl(sport->port.membase + uts_reg(sport))
420 & UTS_TXFULL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 /* send xmit->buf[xmit->tail]
422 * out the port here */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100423 writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100424 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 sport->port.icount.tx++;
Sascha Hauer8c0b2542007-02-05 16:10:16 -0800426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Fabian Godehardt977757312009-06-11 14:37:19 +0100428 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
429 uart_write_wakeup(&sport->port);
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100432 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435/*
436 * interrupts disabled on entry
437 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100438static void imx_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100441 unsigned long temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100443 if (USE_IRDA(sport)) {
444 /* half duplex in IrDA mode; have to disable receive mode */
445 temp = readl(sport->port.membase + UCR4);
446 temp &= ~(UCR4_DREN);
447 writel(temp, sport->port.membase + UCR4);
448
449 temp = readl(sport->port.membase + UCR1);
450 temp &= ~(UCR1_RRDYEN);
451 writel(temp, sport->port.membase + UCR1);
452 }
Alexander Steinf1f836e2013-05-14 17:06:07 +0200453 /* Clear any pending ORE flag before enabling interrupt */
454 temp = readl(sport->port.membase + USR2);
455 writel(temp | USR2_ORE, sport->port.membase + USR2);
456
457 temp = readl(sport->port.membase + UCR4);
458 temp |= UCR4_OREN;
459 writel(temp, sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100460
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100461 temp = readl(sport->port.membase + UCR1);
462 writel(temp | UCR1_TXMPTYEN, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100464 if (USE_IRDA(sport)) {
465 temp = readl(sport->port.membase + UCR1);
466 temp |= UCR1_TRDYEN;
467 writel(temp, sport->port.membase + UCR1);
468
469 temp = readl(sport->port.membase + UCR4);
470 temp |= UCR4_TCEN;
471 writel(temp, sport->port.membase + UCR4);
472 }
473
Shawn Guofe6b5402011-06-25 02:04:33 +0800474 if (readl(sport->port.membase + uts_reg(sport)) & UTS_TXEMPTY)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100475 imx_transmit_buffer(sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
David Howells7d12e782006-10-05 14:55:46 +0100478static irqreturn_t imx_rtsint(int irq, void *dev_id)
Sascha Hauerceca6292005-10-12 19:58:08 +0100479{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800480 struct imx_port *sport = dev_id;
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200481 unsigned int val;
Sascha Hauerceca6292005-10-12 19:58:08 +0100482 unsigned long flags;
483
484 spin_lock_irqsave(&sport->port.lock, flags);
485
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100486 writel(USR1_RTSD, sport->port.membase + USR1);
Uwe Kleine-König5680e942011-04-11 10:59:09 +0200487 val = readl(sport->port.membase + USR1) & USR1_RTSS;
Sascha Hauerceca6292005-10-12 19:58:08 +0100488 uart_handle_cts_change(&sport->port, !!val);
Alan Coxbdc04e32009-09-19 13:13:31 -0700489 wake_up_interruptible(&sport->port.state->port.delta_msr_wait);
Sascha Hauerceca6292005-10-12 19:58:08 +0100490
491 spin_unlock_irqrestore(&sport->port.lock, flags);
492 return IRQ_HANDLED;
493}
494
David Howells7d12e782006-10-05 14:55:46 +0100495static irqreturn_t imx_txint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Jeff Garzik15aafa22008-02-06 01:36:20 -0800497 struct imx_port *sport = dev_id;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700498 struct circ_buf *xmit = &sport->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 unsigned long flags;
500
Sachin Kamat82313e62013-01-07 10:25:02 +0530501 spin_lock_irqsave(&sport->port.lock, flags);
Sachin Kamat699cbd62013-01-07 10:25:04 +0530502 if (sport->port.x_char) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /* Send next char */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100504 writel(sport->port.x_char, sport->port.membase + URTX0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 goto out;
506 }
507
508 if (uart_circ_empty(xmit) || uart_tx_stopped(&sport->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100509 imx_stop_tx(&sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 goto out;
511 }
512
513 imx_transmit_buffer(sport);
514
515 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
516 uart_write_wakeup(&sport->port);
517
518out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530519 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return IRQ_HANDLED;
521}
522
David Howells7d12e782006-10-05 14:55:46 +0100523static irqreturn_t imx_rxint(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 struct imx_port *sport = dev_id;
Sachin Kamat82313e62013-01-07 10:25:02 +0530526 unsigned int rx, flg, ignored = 0;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100527 struct tty_port *port = &sport->port.state->port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100528 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Sachin Kamat82313e62013-01-07 10:25:02 +0530530 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100532 while (readl(sport->port.membase + USR2) & USR2_RDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 flg = TTY_NORMAL;
534 sport->port.icount.rx++;
535
Sascha Hauer0d3c3932008-04-17 08:43:14 +0100536 rx = readl(sport->port.membase + URXD0);
537
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100538 temp = readl(sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100539 if (temp & USR2_BRCD) {
Andy Green94d32f92010-02-01 13:28:54 +0100540 writel(USR2_BRCD, sport->port.membase + USR2);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100541 if (uart_handle_break(&sport->port))
542 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100545 if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
Sascha Hauer864eeed2008-04-17 08:39:22 +0100546 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Hui Wang019dc9e2011-08-24 17:41:47 +0800548 if (unlikely(rx & URXD_ERR)) {
549 if (rx & URXD_BRK)
550 sport->port.icount.brk++;
551 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100552 sport->port.icount.parity++;
553 else if (rx & URXD_FRMERR)
554 sport->port.icount.frame++;
555 if (rx & URXD_OVRRUN)
556 sport->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Sascha Hauer864eeed2008-04-17 08:39:22 +0100558 if (rx & sport->port.ignore_status_mask) {
559 if (++ignored > 100)
560 goto out;
561 continue;
562 }
563
564 rx &= sport->port.read_status_mask;
565
Hui Wang019dc9e2011-08-24 17:41:47 +0800566 if (rx & URXD_BRK)
567 flg = TTY_BREAK;
568 else if (rx & URXD_PRERR)
Sascha Hauer864eeed2008-04-17 08:39:22 +0100569 flg = TTY_PARITY;
570 else if (rx & URXD_FRMERR)
571 flg = TTY_FRAME;
572 if (rx & URXD_OVRRUN)
573 flg = TTY_OVERRUN;
574
575#ifdef SUPPORT_SYSRQ
576 sport->port.sysrq = 0;
577#endif
578 }
579
Jiri Slaby92a19f92013-01-03 15:53:03 +0100580 tty_insert_flip_char(port, rx, flg);
Sascha Hauer864eeed2008-04-17 08:39:22 +0100581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583out:
Sachin Kamat82313e62013-01-07 10:25:02 +0530584 spin_unlock_irqrestore(&sport->port.lock, flags);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100585 tty_flip_buffer_push(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200589static irqreturn_t imx_int(int irq, void *dev_id)
590{
591 struct imx_port *sport = dev_id;
592 unsigned int sts;
Alexander Steinf1f836e2013-05-14 17:06:07 +0200593 unsigned int sts2;
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200594
595 sts = readl(sport->port.membase + USR1);
596
597 if (sts & USR1_RRDY)
598 imx_rxint(irq, dev_id);
599
600 if (sts & USR1_TRDY &&
601 readl(sport->port.membase + UCR1) & UCR1_TXMPTYEN)
602 imx_txint(irq, dev_id);
603
Marc Kleine-Budde9fbe6042008-07-28 21:26:01 +0200604 if (sts & USR1_RTSD)
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200605 imx_rtsint(irq, dev_id);
606
Fabio Estevamdb1a9b52011-12-13 01:23:48 -0200607 if (sts & USR1_AWAKE)
608 writel(USR1_AWAKE, sport->port.membase + USR1);
609
Alexander Steinf1f836e2013-05-14 17:06:07 +0200610 sts2 = readl(sport->port.membase + USR2);
611 if (sts2 & USR2_ORE) {
612 dev_err(sport->port.dev, "Rx FIFO overrun\n");
613 sport->port.icount.overrun++;
614 writel(sts2 | USR2_ORE, sport->port.membase + USR2);
615 }
616
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200617 return IRQ_HANDLED;
618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/*
621 * Return TIOCSER_TEMT when transmitter is not busy.
622 */
623static unsigned int imx_tx_empty(struct uart_port *port)
624{
625 struct imx_port *sport = (struct imx_port *)port;
626
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100627 return (readl(sport->port.membase + USR2) & USR2_TXDC) ? TIOCSER_TEMT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100630/*
631 * We have a modem side uart, so the meanings of RTS and CTS are inverted.
632 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633static unsigned int imx_get_mctrl(struct uart_port *port)
634{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100635 struct imx_port *sport = (struct imx_port *)port;
636 unsigned int tmp = TIOCM_DSR | TIOCM_CAR;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100637
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100638 if (readl(sport->port.membase + USR1) & USR1_RTSS)
639 tmp |= TIOCM_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100640
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100641 if (readl(sport->port.membase + UCR2) & UCR2_CTS)
642 tmp |= TIOCM_RTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100643
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100644 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647static void imx_set_mctrl(struct uart_port *port, unsigned int mctrl)
648{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100649 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100650 unsigned long temp;
651
652 temp = readl(sport->port.membase + UCR2) & ~UCR2_CTS;
Sascha Hauer0f302dc2005-08-31 21:48:47 +0100653
Oskar Schirmerd3810cd2009-06-11 14:35:01 +0100654 if (mctrl & TIOCM_RTS)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100655 temp |= UCR2_CTS;
656
657 writel(temp, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660/*
661 * Interrupts always disabled.
662 */
663static void imx_break_ctl(struct uart_port *port, int break_state)
664{
665 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100666 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 spin_lock_irqsave(&sport->port.lock, flags);
669
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100670 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
671
Sachin Kamat82313e62013-01-07 10:25:02 +0530672 if (break_state != 0)
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100673 temp |= UCR1_SNDBRK;
674
675 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 spin_unlock_irqrestore(&sport->port.lock, flags);
678}
679
680#define TXTL 2 /* reset default */
681#define RXTL 1 /* reset default */
682
Sascha Hauer587897f2005-04-29 22:46:40 +0100683static int imx_setup_ufcr(struct imx_port *sport, unsigned int mode)
684{
685 unsigned int val;
Sascha Hauer587897f2005-04-29 22:46:40 +0100686
Dirk Behme7be06702012-08-31 10:02:47 +0200687 /* set receiver / transmitter trigger level */
688 val = readl(sport->port.membase + UFCR) & (UFCR_RFDIV | UFCR_DCEDTE);
689 val |= TXTL << UFCR_TXTL_SHF | RXTL;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100690 writel(val, sport->port.membase + UFCR);
Sascha Hauer587897f2005-04-29 22:46:40 +0100691 return 0;
692}
693
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200694/* half the RX buffer size */
695#define CTSTL 16
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697static int imx_startup(struct uart_port *port)
698{
699 struct imx_port *sport = (struct imx_port *)port;
700 int retval;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100701 unsigned long flags, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Huang Shijie28eb4272013-06-04 09:59:33 +0800703 retval = clk_prepare_enable(sport->clk_per);
704 if (retval)
705 goto error_out1;
706
707 retval = clk_prepare_enable(sport->clk_ipg);
708 if (retval)
709 goto error_out1;
710
Sascha Hauer587897f2005-04-29 22:46:40 +0100711 imx_setup_ufcr(sport, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 /* disable the DREN bit (Data Ready interrupt enable) before
714 * requesting IRQs
715 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100716 temp = readl(sport->port.membase + UCR4);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100717
718 if (USE_IRDA(sport))
719 temp |= UCR4_IRSC;
720
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200721 /* set the trigger level for CTS */
Sachin Kamat82313e62013-01-07 10:25:02 +0530722 temp &= ~(UCR4_CTSTL_MASK << UCR4_CTSTL_SHF);
723 temp |= CTSTL << UCR4_CTSTL_SHF;
Valentin Longchamp1c5250d2010-05-05 11:47:07 +0200724
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100725 writel(temp & ~UCR4_DREN, sport->port.membase + UCR4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100727 if (USE_IRDA(sport)) {
728 /* reset fifo's and state machines */
729 int i = 100;
730 temp = readl(sport->port.membase + UCR2);
731 temp &= ~UCR2_SRST;
732 writel(temp, sport->port.membase + UCR2);
733 while (!(readl(sport->port.membase + UCR2) & UCR2_SRST) &&
734 (--i > 0)) {
735 udelay(1);
736 }
737 }
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 /*
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200740 * Allocate the IRQ(s) i.MX1 has three interrupts whereas later
741 * chips only have one interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200743 if (sport->txirq > 0) {
744 retval = request_irq(sport->rxirq, imx_rxint, 0,
745 DRIVER_NAME, sport);
746 if (retval)
747 goto error_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200749 retval = request_irq(sport->txirq, imx_txint, 0,
750 DRIVER_NAME, sport);
751 if (retval)
752 goto error_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100754 /* do not use RTS IRQ on IrDA */
755 if (!USE_IRDA(sport)) {
Shawn Guo1ee8f652012-06-14 10:58:54 +0800756 retval = request_irq(sport->rtsirq, imx_rtsint, 0,
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100757 DRIVER_NAME, sport);
758 if (retval)
759 goto error_out3;
760 }
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200761 } else {
762 retval = request_irq(sport->port.irq, imx_int, 0,
763 DRIVER_NAME, sport);
764 if (retval) {
765 free_irq(sport->port.irq, sport);
766 goto error_out1;
767 }
768 }
Sascha Hauerceca6292005-10-12 19:58:08 +0100769
Xinyu Chen9ec18822012-08-27 09:36:51 +0200770 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /*
772 * Finally, clear and enable interrupts
773 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100774 writel(USR1_RTSD, sport->port.membase + USR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100776 temp = readl(sport->port.membase + UCR1);
Sascha Hauer789d5252008-04-17 08:44:47 +0100777 temp |= UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN;
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100778
779 if (USE_IRDA(sport)) {
780 temp |= UCR1_IREN;
781 temp &= ~(UCR1_RTSDEN);
782 }
783
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100784 writel(temp, sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100786 temp = readl(sport->port.membase + UCR2);
787 temp |= (UCR2_RXEN | UCR2_TXEN);
788 writel(temp, sport->port.membase + UCR2);
789
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100790 if (USE_IRDA(sport)) {
791 /* clear RX-FIFO */
792 int i = 64;
793 while ((--i > 0) &&
794 (readl(sport->port.membase + URXD0) & URXD_CHARRDY)) {
795 barrier();
796 }
797 }
798
Shawn Guofe6b5402011-06-25 02:04:33 +0800799 if (is_imx21_uart(sport)) {
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200800 temp = readl(sport->port.membase + UCR3);
Shawn Guofe6b5402011-06-25 02:04:33 +0800801 temp |= IMX21_UCR3_RXDMUXSEL;
Sascha Hauer37d6fb62009-05-27 18:23:48 +0200802 writel(temp, sport->port.membase + UCR3);
803 }
Marc Kleine-Budde44118052008-07-28 12:10:34 +0200804
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100805 if (USE_IRDA(sport)) {
806 temp = readl(sport->port.membase + UCR4);
807 if (sport->irda_inv_rx)
808 temp |= UCR4_INVR;
809 else
810 temp &= ~(UCR4_INVR);
811 writel(temp | UCR4_DREN, sport->port.membase + UCR4);
812
813 temp = readl(sport->port.membase + UCR3);
814 if (sport->irda_inv_tx)
815 temp |= UCR3_INVT;
816 else
817 temp &= ~(UCR3_INVT);
818 writel(temp, sport->port.membase + UCR3);
819 }
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /*
822 * Enable modem status interrupts
823 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 imx_enable_ms(&sport->port);
Sachin Kamat82313e62013-01-07 10:25:02 +0530825 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100827 if (USE_IRDA(sport)) {
828 struct imxuart_platform_data *pdata;
829 pdata = sport->port.dev->platform_data;
830 sport->irda_inv_rx = pdata->irda_inv_rx;
831 sport->irda_inv_tx = pdata->irda_inv_tx;
832 sport->trcv_delay = pdata->transceiver_delay;
833 if (pdata->irda_enable)
834 pdata->irda_enable(1);
835 }
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return 0;
838
Sascha Hauerceca6292005-10-12 19:58:08 +0100839error_out3:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200840 if (sport->txirq)
841 free_irq(sport->txirq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842error_out2:
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200843 if (sport->rxirq)
844 free_irq(sport->rxirq, sport);
Sascha Hauer86371d02005-10-10 10:17:42 +0100845error_out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return retval;
847}
848
849static void imx_shutdown(struct uart_port *port)
850{
851 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100852 unsigned long temp;
Xinyu Chen9ec18822012-08-27 09:36:51 +0200853 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Xinyu Chen9ec18822012-08-27 09:36:51 +0200855 spin_lock_irqsave(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100856 temp = readl(sport->port.membase + UCR2);
857 temp &= ~(UCR2_TXEN);
858 writel(temp, sport->port.membase + UCR2);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200859 spin_unlock_irqrestore(&sport->port.lock, flags);
Fabian Godehardt2e146392009-06-11 14:38:38 +0100860
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100861 if (USE_IRDA(sport)) {
862 struct imxuart_platform_data *pdata;
863 pdata = sport->port.dev->platform_data;
864 if (pdata->irda_enable)
865 pdata->irda_enable(0);
866 }
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /*
869 * Stop our timer.
870 */
871 del_timer_sync(&sport->timer);
872
873 /*
874 * Free the interrupts
875 */
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200876 if (sport->txirq > 0) {
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100877 if (!USE_IRDA(sport))
878 free_irq(sport->rtsirq, sport);
Sascha Hauere3d13ff2008-07-05 10:02:48 +0200879 free_irq(sport->txirq, sport);
880 free_irq(sport->rxirq, sport);
881 } else
882 free_irq(sport->port.irq, sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 /*
885 * Disable all interrupts, port and break condition.
886 */
887
Xinyu Chen9ec18822012-08-27 09:36:51 +0200888 spin_lock_irqsave(&sport->port.lock, flags);
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100889 temp = readl(sport->port.membase + UCR1);
890 temp &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN | UCR1_UARTEN);
Fabian Godehardtb6e49132009-06-11 14:53:18 +0100891 if (USE_IRDA(sport))
892 temp &= ~(UCR1_IREN);
893
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100894 writel(temp, sport->port.membase + UCR1);
Xinyu Chen9ec18822012-08-27 09:36:51 +0200895 spin_unlock_irqrestore(&sport->port.lock, flags);
Huang Shijie28eb4272013-06-04 09:59:33 +0800896
897 clk_disable_unprepare(sport->clk_per);
898 clk_disable_unprepare(sport->clk_ipg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
901static void
Alan Cox606d0992006-12-08 02:38:45 -0800902imx_set_termios(struct uart_port *port, struct ktermios *termios,
903 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 struct imx_port *sport = (struct imx_port *)port;
906 unsigned long flags;
907 unsigned int ucr2, old_ucr1, old_txrxen, baud, quot;
908 unsigned int old_csize = old ? old->c_cflag & CSIZE : CS8;
Oskar Schirmer534fca02009-06-11 14:52:23 +0100909 unsigned int div, ufcr;
910 unsigned long num, denom;
Oskar Schirmerd7f8d432009-06-11 14:55:22 +0100911 uint64_t tdiv64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 /*
914 * If we don't support modem control lines, don't allow
915 * these to be set.
916 */
917 if (0) {
918 termios->c_cflag &= ~(HUPCL | CRTSCTS | CMSPAR);
919 termios->c_cflag |= CLOCAL;
920 }
921
922 /*
923 * We only support CS7 and CS8.
924 */
925 while ((termios->c_cflag & CSIZE) != CS7 &&
926 (termios->c_cflag & CSIZE) != CS8) {
927 termios->c_cflag &= ~CSIZE;
928 termios->c_cflag |= old_csize;
929 old_csize = CS8;
930 }
931
932 if ((termios->c_cflag & CSIZE) == CS8)
933 ucr2 = UCR2_WS | UCR2_SRST | UCR2_IRTS;
934 else
935 ucr2 = UCR2_SRST | UCR2_IRTS;
936
937 if (termios->c_cflag & CRTSCTS) {
Sachin Kamat82313e62013-01-07 10:25:02 +0530938 if (sport->have_rtscts) {
Sascha Hauer5b802342006-05-04 14:07:42 +0100939 ucr2 &= ~UCR2_IRTS;
940 ucr2 |= UCR2_CTSC;
941 } else {
942 termios->c_cflag &= ~CRTSCTS;
943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945
946 if (termios->c_cflag & CSTOPB)
947 ucr2 |= UCR2_STPB;
948 if (termios->c_cflag & PARENB) {
949 ucr2 |= UCR2_PREN;
Matt Reimer3261e362006-01-13 20:51:44 +0000950 if (termios->c_cflag & PARODD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 ucr2 |= UCR2_PROE;
952 }
953
Eric Miao995234d2011-12-23 05:39:27 +0800954 del_timer_sync(&sport->timer);
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 /*
957 * Ask the core to calculate the divisor for us.
958 */
Sascha Hauer036bb152008-07-05 10:02:44 +0200959 baud = uart_get_baud_rate(port, termios, old, 50, port->uartclk / 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 quot = uart_get_divisor(port, baud);
961
962 spin_lock_irqsave(&sport->port.lock, flags);
963
964 sport->port.read_status_mask = 0;
965 if (termios->c_iflag & INPCK)
966 sport->port.read_status_mask |= (URXD_FRMERR | URXD_PRERR);
967 if (termios->c_iflag & (BRKINT | PARMRK))
968 sport->port.read_status_mask |= URXD_BRK;
969
970 /*
971 * Characters to ignore
972 */
973 sport->port.ignore_status_mask = 0;
974 if (termios->c_iflag & IGNPAR)
975 sport->port.ignore_status_mask |= URXD_PRERR;
976 if (termios->c_iflag & IGNBRK) {
977 sport->port.ignore_status_mask |= URXD_BRK;
978 /*
979 * If we're ignoring parity and break indicators,
980 * ignore overruns too (for real raw support).
981 */
982 if (termios->c_iflag & IGNPAR)
983 sport->port.ignore_status_mask |= URXD_OVRRUN;
984 }
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 /*
987 * Update the per-port timeout.
988 */
989 uart_update_timeout(port, termios->c_cflag, baud);
990
991 /*
992 * disable interrupts and drain transmitter
993 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +0100994 old_ucr1 = readl(sport->port.membase + UCR1);
995 writel(old_ucr1 & ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN),
996 sport->port.membase + UCR1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Sachin Kamat82313e62013-01-07 10:25:02 +0530998 while (!(readl(sport->port.membase + USR2) & USR2_TXDC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 barrier();
1000
1001 /* then, disable everything */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001002 old_txrxen = readl(sport->port.membase + UCR2);
Sachin Kamat82313e62013-01-07 10:25:02 +05301003 writel(old_txrxen & ~(UCR2_TXEN | UCR2_RXEN),
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001004 sport->port.membase + UCR2);
1005 old_txrxen &= (UCR2_TXEN | UCR2_RXEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001007 if (USE_IRDA(sport)) {
1008 /*
1009 * use maximum available submodule frequency to
1010 * avoid missing short pulses due to low sampling rate
1011 */
Sascha Hauer036bb152008-07-05 10:02:44 +02001012 div = 1;
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001013 } else {
1014 div = sport->port.uartclk / (baud * 16);
1015 if (div > 7)
1016 div = 7;
1017 if (!div)
1018 div = 1;
1019 }
Sascha Hauer036bb152008-07-05 10:02:44 +02001020
Oskar Schirmer534fca02009-06-11 14:52:23 +01001021 rational_best_approximation(16 * div * baud, sport->port.uartclk,
1022 1 << 16, 1 << 16, &num, &denom);
Sascha Hauer036bb152008-07-05 10:02:44 +02001023
Alan Coxeab4f5a2010-06-01 22:52:52 +02001024 tdiv64 = sport->port.uartclk;
1025 tdiv64 *= num;
1026 do_div(tdiv64, denom * 16 * div);
1027 tty_termios_encode_baud_rate(termios,
Sascha Hauer1a2c4b32009-06-16 17:02:15 +01001028 (speed_t)tdiv64, (speed_t)tdiv64);
Oskar Schirmerd7f8d432009-06-11 14:55:22 +01001029
Oskar Schirmer534fca02009-06-11 14:52:23 +01001030 num -= 1;
1031 denom -= 1;
Sascha Hauer036bb152008-07-05 10:02:44 +02001032
1033 ufcr = readl(sport->port.membase + UFCR);
Fabian Godehardtb6e49132009-06-11 14:53:18 +01001034 ufcr = (ufcr & (~UFCR_RFDIV)) | UFCR_RFDIV_REG(div);
Huang Shijie20ff2fe2013-05-30 14:07:12 +08001035 if (sport->dte_mode)
1036 ufcr |= UFCR_DCEDTE;
Sascha Hauer036bb152008-07-05 10:02:44 +02001037 writel(ufcr, sport->port.membase + UFCR);
1038
Oskar Schirmer534fca02009-06-11 14:52:23 +01001039 writel(num, sport->port.membase + UBIR);
1040 writel(denom, sport->port.membase + UBMR);
1041
Shawn Guofe6b5402011-06-25 02:04:33 +08001042 if (is_imx21_uart(sport))
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001043 writel(sport->port.uartclk / div / 1000,
Shawn Guofe6b5402011-06-25 02:04:33 +08001044 sport->port.membase + IMX21_ONEMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001046 writel(old_ucr1, sport->port.membase + UCR1);
1047
1048 /* set the parity, stop bits and data size */
1049 writel(ucr2 | old_txrxen, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051 if (UART_ENABLE_MS(&sport->port, termios->c_cflag))
1052 imx_enable_ms(&sport->port);
1053
1054 spin_unlock_irqrestore(&sport->port.lock, flags);
1055}
1056
1057static const char *imx_type(struct uart_port *port)
1058{
1059 struct imx_port *sport = (struct imx_port *)port;
1060
1061 return sport->port.type == PORT_IMX ? "IMX" : NULL;
1062}
1063
1064/*
1065 * Release the memory region(s) being used by 'port'.
1066 */
1067static void imx_release_port(struct uart_port *port)
1068{
Sascha Hauer3d454442008-04-17 08:47:32 +01001069 struct platform_device *pdev = to_platform_device(port->dev);
1070 struct resource *mmres;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Sascha Hauer3d454442008-04-17 08:47:32 +01001072 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joe Perches28f65c112011-06-09 09:13:32 -07001073 release_mem_region(mmres->start, resource_size(mmres));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
1076/*
1077 * Request the memory region(s) being used by 'port'.
1078 */
1079static int imx_request_port(struct uart_port *port)
1080{
Sascha Hauer3d454442008-04-17 08:47:32 +01001081 struct platform_device *pdev = to_platform_device(port->dev);
1082 struct resource *mmres;
1083 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Sascha Hauer3d454442008-04-17 08:47:32 +01001085 mmres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1086 if (!mmres)
1087 return -ENODEV;
1088
Joe Perches28f65c112011-06-09 09:13:32 -07001089 ret = request_mem_region(mmres->start, resource_size(mmres), "imx-uart");
Sascha Hauer3d454442008-04-17 08:47:32 +01001090
1091 return ret ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
1094/*
1095 * Configure/autoconfigure the port.
1096 */
1097static void imx_config_port(struct uart_port *port, int flags)
1098{
1099 struct imx_port *sport = (struct imx_port *)port;
1100
1101 if (flags & UART_CONFIG_TYPE &&
1102 imx_request_port(&sport->port) == 0)
1103 sport->port.type = PORT_IMX;
1104}
1105
1106/*
1107 * Verify the new serial_struct (for TIOCSSERIAL).
1108 * The only change we allow are to the flags and type, and
1109 * even then only between PORT_IMX and PORT_UNKNOWN
1110 */
1111static int
1112imx_verify_port(struct uart_port *port, struct serial_struct *ser)
1113{
1114 struct imx_port *sport = (struct imx_port *)port;
1115 int ret = 0;
1116
1117 if (ser->type != PORT_UNKNOWN && ser->type != PORT_IMX)
1118 ret = -EINVAL;
1119 if (sport->port.irq != ser->irq)
1120 ret = -EINVAL;
1121 if (ser->io_type != UPIO_MEM)
1122 ret = -EINVAL;
1123 if (sport->port.uartclk / 16 != ser->baud_base)
1124 ret = -EINVAL;
1125 if ((void *)sport->port.mapbase != ser->iomem_base)
1126 ret = -EINVAL;
1127 if (sport->port.iobase != ser->port)
1128 ret = -EINVAL;
1129 if (ser->hub6 != 0)
1130 ret = -EINVAL;
1131 return ret;
1132}
1133
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001134#if defined(CONFIG_CONSOLE_POLL)
1135static int imx_poll_get_char(struct uart_port *port)
1136{
1137 struct imx_port_ucrs old_ucr;
1138 unsigned int status;
1139 unsigned char c;
1140
1141 /* save control registers */
1142 imx_port_ucrs_save(port, &old_ucr);
1143
1144 /* disable interrupts */
1145 writel(UCR1_UARTEN, port->membase + UCR1);
1146 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1147 port->membase + UCR2);
1148 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1149 port->membase + UCR3);
1150
1151 /* poll */
1152 do {
1153 status = readl(port->membase + USR2);
1154 } while (~status & USR2_RDR);
1155
1156 /* read */
1157 c = readl(port->membase + URXD0);
1158
1159 /* restore control registers */
1160 imx_port_ucrs_restore(port, &old_ucr);
1161
1162 return c;
1163}
1164
1165static void imx_poll_put_char(struct uart_port *port, unsigned char c)
1166{
1167 struct imx_port_ucrs old_ucr;
1168 unsigned int status;
1169
1170 /* save control registers */
1171 imx_port_ucrs_save(port, &old_ucr);
1172
1173 /* disable interrupts */
1174 writel(UCR1_UARTEN, port->membase + UCR1);
1175 writel(old_ucr.ucr2 & ~(UCR2_ATEN | UCR2_RTSEN | UCR2_ESCI),
1176 port->membase + UCR2);
1177 writel(old_ucr.ucr3 & ~(UCR3_DCD | UCR3_RI | UCR3_DTREN),
1178 port->membase + UCR3);
1179
1180 /* drain */
1181 do {
1182 status = readl(port->membase + USR1);
1183 } while (~status & USR1_TRDY);
1184
1185 /* write */
1186 writel(c, port->membase + URTX0);
1187
1188 /* flush */
1189 do {
1190 status = readl(port->membase + USR2);
1191 } while (~status & USR2_TXDC);
1192
1193 /* restore control registers */
1194 imx_port_ucrs_restore(port, &old_ucr);
1195}
1196#endif
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198static struct uart_ops imx_pops = {
1199 .tx_empty = imx_tx_empty,
1200 .set_mctrl = imx_set_mctrl,
1201 .get_mctrl = imx_get_mctrl,
1202 .stop_tx = imx_stop_tx,
1203 .start_tx = imx_start_tx,
1204 .stop_rx = imx_stop_rx,
1205 .enable_ms = imx_enable_ms,
1206 .break_ctl = imx_break_ctl,
1207 .startup = imx_startup,
1208 .shutdown = imx_shutdown,
1209 .set_termios = imx_set_termios,
1210 .type = imx_type,
1211 .release_port = imx_release_port,
1212 .request_port = imx_request_port,
1213 .config_port = imx_config_port,
1214 .verify_port = imx_verify_port,
Saleem Abdulrasool01f56ab2011-12-22 09:57:53 +01001215#if defined(CONFIG_CONSOLE_POLL)
1216 .poll_get_char = imx_poll_get_char,
1217 .poll_put_char = imx_poll_put_char,
1218#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219};
1220
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001221static struct imx_port *imx_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223#ifdef CONFIG_SERIAL_IMX_CONSOLE
Russell Kingd3587882006-03-20 20:00:09 +00001224static void imx_console_putchar(struct uart_port *port, int ch)
1225{
1226 struct imx_port *sport = (struct imx_port *)port;
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001227
Shawn Guofe6b5402011-06-25 02:04:33 +08001228 while (readl(sport->port.membase + uts_reg(sport)) & UTS_TXFULL)
Russell Kingd3587882006-03-20 20:00:09 +00001229 barrier();
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001230
1231 writel(ch, sport->port.membase + URTX0);
Russell Kingd3587882006-03-20 20:00:09 +00001232}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234/*
1235 * Interrupts are disabled on entering
1236 */
1237static void
1238imx_console_write(struct console *co, const char *s, unsigned int count)
1239{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001240 struct imx_port *sport = imx_ports[co->index];
Dirk Behme0ad5a812011-12-22 09:57:52 +01001241 struct imx_port_ucrs old_ucr;
1242 unsigned int ucr1;
Shawn Guof30e8262013-02-18 13:15:36 +08001243 unsigned long flags = 0;
Thomas Gleixner677fe552013-02-14 21:01:06 +01001244 int locked = 1;
Xinyu Chen9ec18822012-08-27 09:36:51 +02001245
Thomas Gleixner677fe552013-02-14 21:01:06 +01001246 if (sport->port.sysrq)
1247 locked = 0;
1248 else if (oops_in_progress)
1249 locked = spin_trylock_irqsave(&sport->port.lock, flags);
1250 else
1251 spin_lock_irqsave(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 /*
Dirk Behme0ad5a812011-12-22 09:57:52 +01001254 * First, save UCR1/2/3 and then disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
Dirk Behme0ad5a812011-12-22 09:57:52 +01001256 imx_port_ucrs_save(&sport->port, &old_ucr);
1257 ucr1 = old_ucr.ucr1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Shawn Guofe6b5402011-06-25 02:04:33 +08001259 if (is_imx1_uart(sport))
1260 ucr1 |= IMX1_UCR1_UARTCLKEN;
Sascha Hauer37d6fb62009-05-27 18:23:48 +02001261 ucr1 |= UCR1_UARTEN;
1262 ucr1 &= ~(UCR1_TXMPTYEN | UCR1_RRDYEN | UCR1_RTSDEN);
1263
1264 writel(ucr1, sport->port.membase + UCR1);
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001265
Dirk Behme0ad5a812011-12-22 09:57:52 +01001266 writel(old_ucr.ucr2 | UCR2_TXEN, sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Russell Kingd3587882006-03-20 20:00:09 +00001268 uart_console_write(&sport->port, s, count, imx_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 /*
1271 * Finally, wait for transmitter to become empty
Dirk Behme0ad5a812011-12-22 09:57:52 +01001272 * and restore UCR1/2/3
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 */
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001274 while (!(readl(sport->port.membase + USR2) & USR2_TXDC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Dirk Behme0ad5a812011-12-22 09:57:52 +01001276 imx_port_ucrs_restore(&sport->port, &old_ucr);
Xinyu Chen9ec18822012-08-27 09:36:51 +02001277
Thomas Gleixner677fe552013-02-14 21:01:06 +01001278 if (locked)
1279 spin_unlock_irqrestore(&sport->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282/*
1283 * If the port was already initialised (eg, by a boot loader),
1284 * try to determine the current setup.
1285 */
1286static void __init
1287imx_console_get_options(struct imx_port *sport, int *baud,
1288 int *parity, int *bits)
1289{
Sascha Hauer587897f2005-04-29 22:46:40 +01001290
Roel Kluin2e2eb502009-12-09 12:31:36 -08001291 if (readl(sport->port.membase + UCR1) & UCR1_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /* ok, the port was enabled */
Sachin Kamat82313e62013-01-07 10:25:02 +05301293 unsigned int ucr2, ubir, ubmr, uartclk;
Sascha Hauer587897f2005-04-29 22:46:40 +01001294 unsigned int baud_raw;
1295 unsigned int ucfr_rfdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001297 ucr2 = readl(sport->port.membase + UCR2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 *parity = 'n';
1300 if (ucr2 & UCR2_PREN) {
1301 if (ucr2 & UCR2_PROE)
1302 *parity = 'o';
1303 else
1304 *parity = 'e';
1305 }
1306
1307 if (ucr2 & UCR2_WS)
1308 *bits = 8;
1309 else
1310 *bits = 7;
1311
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001312 ubir = readl(sport->port.membase + UBIR) & 0xffff;
1313 ubmr = readl(sport->port.membase + UBMR) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Sascha Hauerff4bfb22007-04-26 08:26:13 +01001315 ucfr_rfdiv = (readl(sport->port.membase + UFCR) & UFCR_RFDIV) >> 7;
Sascha Hauer587897f2005-04-29 22:46:40 +01001316 if (ucfr_rfdiv == 6)
1317 ucfr_rfdiv = 7;
1318 else
1319 ucfr_rfdiv = 6 - ucfr_rfdiv;
1320
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001321 uartclk = clk_get_rate(sport->clk_per);
Sascha Hauer587897f2005-04-29 22:46:40 +01001322 uartclk /= ucfr_rfdiv;
1323
1324 { /*
1325 * The next code provides exact computation of
1326 * baud_raw = round(((uartclk/16) * (ubir + 1)) / (ubmr + 1))
1327 * without need of float support or long long division,
1328 * which would be required to prevent 32bit arithmetic overflow
1329 */
1330 unsigned int mul = ubir + 1;
1331 unsigned int div = 16 * (ubmr + 1);
1332 unsigned int rem = uartclk % div;
1333
1334 baud_raw = (uartclk / div) * mul;
1335 baud_raw += (rem * mul + div / 2) / div;
1336 *baud = (baud_raw + 50) / 100 * 100;
1337 }
1338
Sachin Kamat82313e62013-01-07 10:25:02 +05301339 if (*baud != baud_raw)
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301340 pr_info("Console IMX rounded baud rate from %d to %d\n",
Sascha Hauer587897f2005-04-29 22:46:40 +01001341 baud_raw, *baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343}
1344
1345static int __init
1346imx_console_setup(struct console *co, char *options)
1347{
1348 struct imx_port *sport;
1349 int baud = 9600;
1350 int bits = 8;
1351 int parity = 'n';
1352 int flow = 'n';
1353
1354 /*
1355 * Check whether an invalid uart number has been specified, and
1356 * if so, search for the first available port that does have
1357 * console support.
1358 */
1359 if (co->index == -1 || co->index >= ARRAY_SIZE(imx_ports))
1360 co->index = 0;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001361 sport = imx_ports[co->index];
Sachin Kamat82313e62013-01-07 10:25:02 +05301362 if (sport == NULL)
Eric Lammertse76afc42009-05-19 20:53:20 -04001363 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 if (options)
1366 uart_parse_options(options, &baud, &parity, &bits, &flow);
1367 else
1368 imx_console_get_options(sport, &baud, &parity, &bits);
1369
Sascha Hauer587897f2005-04-29 22:46:40 +01001370 imx_setup_ufcr(sport, 0);
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return uart_set_options(&sport->port, co, baud, parity, bits, flow);
1373}
1374
Vincent Sanders9f4426d2005-10-01 22:56:34 +01001375static struct uart_driver imx_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376static struct console imx_console = {
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001377 .name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 .write = imx_console_write,
1379 .device = uart_console_device,
1380 .setup = imx_console_setup,
1381 .flags = CON_PRINTBUFFER,
1382 .index = -1,
1383 .data = &imx_reg,
1384};
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386#define IMX_CONSOLE &imx_console
1387#else
1388#define IMX_CONSOLE NULL
1389#endif
1390
1391static struct uart_driver imx_reg = {
1392 .owner = THIS_MODULE,
1393 .driver_name = DRIVER_NAME,
Sascha Hauere3d13ff2008-07-05 10:02:48 +02001394 .dev_name = DEV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 .major = SERIAL_IMX_MAJOR,
1396 .minor = MINOR_START,
1397 .nr = ARRAY_SIZE(imx_ports),
1398 .cons = IMX_CONSOLE,
1399};
1400
Russell King3ae5eae2005-11-09 22:32:44 +00001401static int serial_imx_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001403 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001404 unsigned int val;
1405
1406 /* enable wakeup from i.MX UART */
1407 val = readl(sport->port.membase + UCR3);
1408 val |= UCR3_AWAKEN;
1409 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Richard Zhao034dc4d2012-09-18 16:14:59 +08001411 uart_suspend_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001413 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414}
1415
Russell King3ae5eae2005-11-09 22:32:44 +00001416static int serial_imx_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001418 struct imx_port *sport = platform_get_drvdata(dev);
Fabio Estevamdb1a9b52011-12-13 01:23:48 -02001419 unsigned int val;
1420
1421 /* disable wakeup from i.MX UART */
1422 val = readl(sport->port.membase + UCR3);
1423 val &= ~UCR3_AWAKEN;
1424 writel(val, sport->port.membase + UCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Richard Zhao034dc4d2012-09-18 16:14:59 +08001426 uart_resume_port(&imx_reg, &sport->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001428 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Shawn Guo22698aa2011-06-25 02:04:34 +08001431#ifdef CONFIG_OF
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001432/*
1433 * This function returns 1 iff pdev isn't a device instatiated by dt, 0 iff it
1434 * could successfully get all information from dt or a negative errno.
1435 */
Shawn Guo22698aa2011-06-25 02:04:34 +08001436static int serial_imx_probe_dt(struct imx_port *sport,
1437 struct platform_device *pdev)
1438{
1439 struct device_node *np = pdev->dev.of_node;
1440 const struct of_device_id *of_id =
1441 of_match_device(imx_uart_dt_ids, &pdev->dev);
Shawn Guoff059672011-09-22 14:48:13 +08001442 int ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001443
1444 if (!np)
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001445 /* no device tree device */
1446 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001447
Shawn Guoff059672011-09-22 14:48:13 +08001448 ret = of_alias_get_id(np, "serial");
1449 if (ret < 0) {
1450 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
Uwe Kleine-Königa197a192011-12-14 21:26:51 +01001451 return ret;
Shawn Guoff059672011-09-22 14:48:13 +08001452 }
1453 sport->port.line = ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001454
1455 if (of_get_property(np, "fsl,uart-has-rtscts", NULL))
1456 sport->have_rtscts = 1;
1457
1458 if (of_get_property(np, "fsl,irda-mode", NULL))
1459 sport->use_irda = 1;
1460
Huang Shijie20ff2fe2013-05-30 14:07:12 +08001461 if (of_get_property(np, "fsl,dte-mode", NULL))
1462 sport->dte_mode = 1;
1463
Shawn Guo22698aa2011-06-25 02:04:34 +08001464 sport->devdata = of_id->data;
1465
1466 return 0;
1467}
1468#else
1469static inline int serial_imx_probe_dt(struct imx_port *sport,
1470 struct platform_device *pdev)
1471{
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001472 return 1;
Shawn Guo22698aa2011-06-25 02:04:34 +08001473}
1474#endif
1475
1476static void serial_imx_probe_pdata(struct imx_port *sport,
1477 struct platform_device *pdev)
1478{
1479 struct imxuart_platform_data *pdata = pdev->dev.platform_data;
1480
1481 sport->port.line = pdev->id;
1482 sport->devdata = (struct imx_uart_data *) pdev->id_entry->driver_data;
1483
1484 if (!pdata)
1485 return;
1486
1487 if (pdata->flags & IMXUART_HAVE_RTSCTS)
1488 sport->have_rtscts = 1;
1489
1490 if (pdata->flags & IMXUART_IRDA)
1491 sport->use_irda = 1;
1492}
1493
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001494static int serial_imx_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001496 struct imx_port *sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001497 struct imxuart_platform_data *pdata;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001498 void __iomem *base;
1499 int ret = 0;
1500 struct resource *res;
Shawn Guofed78ce2012-05-06 20:21:05 +08001501 struct pinctrl *pinctrl;
Sascha Hauer5b802342006-05-04 14:07:42 +01001502
Sachin Kamat42d34192013-01-07 10:25:06 +05301503 sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001504 if (!sport)
1505 return -ENOMEM;
1506
Shawn Guo22698aa2011-06-25 02:04:34 +08001507 ret = serial_imx_probe_dt(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001508 if (ret > 0)
Shawn Guo22698aa2011-06-25 02:04:34 +08001509 serial_imx_probe_pdata(sport, pdev);
Uwe Kleine-König20bb8092011-12-15 09:16:34 +01001510 else if (ret < 0)
Sachin Kamat42d34192013-01-07 10:25:06 +05301511 return ret;
Shawn Guo22698aa2011-06-25 02:04:34 +08001512
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001513 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sachin Kamat42d34192013-01-07 10:25:06 +05301514 if (!res)
1515 return -ENODEV;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001516
Sachin Kamat42d34192013-01-07 10:25:06 +05301517 base = devm_ioremap(&pdev->dev, res->start, PAGE_SIZE);
1518 if (!base)
1519 return -ENOMEM;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001520
1521 sport->port.dev = &pdev->dev;
1522 sport->port.mapbase = res->start;
1523 sport->port.membase = base;
1524 sport->port.type = PORT_IMX,
1525 sport->port.iotype = UPIO_MEM;
1526 sport->port.irq = platform_get_irq(pdev, 0);
1527 sport->rxirq = platform_get_irq(pdev, 0);
1528 sport->txirq = platform_get_irq(pdev, 1);
1529 sport->rtsirq = platform_get_irq(pdev, 2);
1530 sport->port.fifosize = 32;
1531 sport->port.ops = &imx_pops;
1532 sport->port.flags = UPF_BOOT_AUTOCONF;
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001533 init_timer(&sport->timer);
1534 sport->timer.function = imx_timeout;
1535 sport->timer.data = (unsigned long)sport;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001536
Shawn Guofed78ce2012-05-06 20:21:05 +08001537 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1538 if (IS_ERR(pinctrl)) {
1539 ret = PTR_ERR(pinctrl);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001540 dev_err(&pdev->dev, "failed to get default pinctrl: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301541 return ret;
Shawn Guofed78ce2012-05-06 20:21:05 +08001542 }
1543
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001544 sport->clk_ipg = devm_clk_get(&pdev->dev, "ipg");
1545 if (IS_ERR(sport->clk_ipg)) {
1546 ret = PTR_ERR(sport->clk_ipg);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001547 dev_err(&pdev->dev, "failed to get ipg clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301548 return ret;
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001549 }
Sascha Hauer38a41fd2008-07-05 10:02:46 +02001550
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001551 sport->clk_per = devm_clk_get(&pdev->dev, "per");
1552 if (IS_ERR(sport->clk_per)) {
1553 ret = PTR_ERR(sport->clk_per);
Uwe Kleine-König833462e2012-08-20 09:57:04 +02001554 dev_err(&pdev->dev, "failed to get per clk: %d\n", ret);
Sachin Kamat42d34192013-01-07 10:25:06 +05301555 return ret;
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001556 }
1557
1558 clk_prepare_enable(sport->clk_per);
1559 clk_prepare_enable(sport->clk_ipg);
1560
1561 sport->port.uartclk = clk_get_rate(sport->clk_per);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001562
Shawn Guo22698aa2011-06-25 02:04:34 +08001563 imx_ports[sport->port.line] = sport;
Sascha Hauer5b802342006-05-04 14:07:42 +01001564
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001565 pdata = pdev->dev.platform_data;
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001566 if (pdata && pdata->init) {
Darius Augulisc45e7d72008-09-02 10:19:29 +02001567 ret = pdata->init(pdev);
1568 if (ret)
1569 goto clkput;
1570 }
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001571
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001572 ret = uart_add_one_port(&imx_reg, &sport->port);
1573 if (ret)
1574 goto deinit;
Richard Zhao0a86a862012-09-18 16:14:58 +08001575 platform_set_drvdata(pdev, sport);
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001576
Huang Shijie28eb4272013-06-04 09:59:33 +08001577 clk_disable_unprepare(sport->clk_per);
1578 clk_disable_unprepare(sport->clk_ipg);
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return 0;
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001581deinit:
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001582 if (pdata && pdata->exit)
Daniel Glöckner9f322ad2009-06-11 14:39:21 +01001583 pdata->exit(pdev);
Darius Augulisc45e7d72008-09-02 10:19:29 +02001584clkput:
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001585 clk_disable_unprepare(sport->clk_per);
1586 clk_disable_unprepare(sport->clk_ipg);
Sascha Hauerdbff4e92008-07-05 10:02:45 +02001587 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001590static int serial_imx_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001592 struct imxuart_platform_data *pdata;
1593 struct imx_port *sport = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001595 pdata = pdev->dev.platform_data;
1596
1597 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Sascha Hauer3a9465f2012-03-07 09:31:43 +01001599 uart_remove_one_port(&imx_reg, &sport->port);
1600
Baruch Siachbbcd18d2009-12-21 16:26:46 -08001601 if (pdata && pdata->exit)
Sascha Hauer2582d8c2008-07-05 10:02:45 +02001602 pdata->exit(pdev);
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return 0;
1605}
1606
Russell King3ae5eae2005-11-09 22:32:44 +00001607static struct platform_driver serial_imx_driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001608 .probe = serial_imx_probe,
1609 .remove = serial_imx_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 .suspend = serial_imx_suspend,
1612 .resume = serial_imx_resume,
Shawn Guofe6b5402011-06-25 02:04:33 +08001613 .id_table = imx_uart_devtype,
Russell King3ae5eae2005-11-09 22:32:44 +00001614 .driver = {
Oskar Schirmerd3810cd2009-06-11 14:35:01 +01001615 .name = "imx-uart",
Kay Sieverse169c132008-04-15 14:34:35 -07001616 .owner = THIS_MODULE,
Shawn Guo22698aa2011-06-25 02:04:34 +08001617 .of_match_table = imx_uart_dt_ids,
Russell King3ae5eae2005-11-09 22:32:44 +00001618 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619};
1620
1621static int __init imx_serial_init(void)
1622{
1623 int ret;
1624
Sachin Kamat50bbdba2013-01-07 10:25:05 +05301625 pr_info("Serial: IMX driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 ret = uart_register_driver(&imx_reg);
1628 if (ret)
1629 return ret;
1630
Russell King3ae5eae2005-11-09 22:32:44 +00001631 ret = platform_driver_register(&serial_imx_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (ret != 0)
1633 uart_unregister_driver(&imx_reg);
1634
Uwe Kleine-Königf2278242011-11-22 14:22:55 +01001635 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
1638static void __exit imx_serial_exit(void)
1639{
Russell Kingc889b892005-11-21 17:05:21 +00001640 platform_driver_unregister(&serial_imx_driver);
Sascha Hauer4b300c32007-07-17 13:35:46 +01001641 uart_unregister_driver(&imx_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644module_init(imx_serial_init);
1645module_exit(imx_serial_exit);
1646
1647MODULE_AUTHOR("Sascha Hauer");
1648MODULE_DESCRIPTION("IMX generic serial port driver");
1649MODULE_LICENSE("GPL");
Kay Sieverse169c132008-04-15 14:34:35 -07001650MODULE_ALIAS("platform:imx-uart");