blob: 50441ffe8e3856592dbfdae368e9891b64078d50 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/amba.c
3 *
4 * Driver for AMBA serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * Copyright 1999 ARM Limited
9 * Copyright (C) 2000 Deep Blue Solutions Ltd.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * This is a generic driver for ARM AMBA-type serial ports. They
26 * have a lot of 16550-like features, but are not register compatible.
27 * Note that although they do have CTS, DCD and DSR inputs, they do
28 * not have an RI input, nor do they have DTR or RTS outputs. If
29 * required, these have to be supplied via some other means (eg, GPIO)
30 * and hooked into this driver.
31 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#if defined(CONFIG_SERIAL_AMBA_PL010_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
34#define SUPPORT_SYSRQ
35#endif
36
37#include <linux/module.h>
38#include <linux/ioport.h>
39#include <linux/init.h>
40#include <linux/console.h>
41#include <linux/sysrq.h>
42#include <linux/device.h>
43#include <linux/tty.h>
44#include <linux/tty_flip.h>
45#include <linux/serial_core.h>
46#include <linux/serial.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000047#include <linux/amba/bus.h>
48#include <linux/amba/serial.h>
Russell Kinged519de2007-04-22 12:30:41 +010049#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Lennert Buytenhek4faf4e02006-06-20 19:24:07 +010054#define UART_NR 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define SERIAL_AMBA_MAJOR 204
57#define SERIAL_AMBA_MINOR 16
58#define SERIAL_AMBA_NR UART_NR
59
60#define AMBA_ISR_PASS_LIMIT 256
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define UART_RX_DATA(s) (((s) & UART01x_FR_RXFE) == 0)
63#define UART_TX_READY(s) (((s) & UART01x_FR_TXFF) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Russell Kingfbb18a22006-03-26 23:13:39 +010065#define UART_DUMMY_RSR_RX 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define UART_PORT_SIZE 64
67
68/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * We wrap our port structure around the generic uart_port.
70 */
71struct uart_amba_port {
72 struct uart_port port;
Russell Kinged519de2007-04-22 12:30:41 +010073 struct clk *clk;
Russell Kingfbb18a22006-03-26 23:13:39 +010074 struct amba_device *dev;
75 struct amba_pl010_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 unsigned int old_status;
77};
78
Russell Kingb129a8c2005-08-31 10:12:14 +010079static void pl010_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Russell King1b0646a2007-04-22 11:55:59 +010081 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 unsigned int cr;
83
Russell King1b0646a2007-04-22 11:55:59 +010084 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 cr &= ~UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010086 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Russell Kingb129a8c2005-08-31 10:12:14 +010089static void pl010_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Russell King1b0646a2007-04-22 11:55:59 +010091 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 unsigned int cr;
93
Russell King1b0646a2007-04-22 11:55:59 +010094 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 cr |= UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010096 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99static void pl010_stop_rx(struct uart_port *port)
100{
Russell King1b0646a2007-04-22 11:55:59 +0100101 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 unsigned int cr;
103
Russell King1b0646a2007-04-22 11:55:59 +0100104 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 cr &= ~(UART010_CR_RIE | UART010_CR_RTIE);
Russell King1b0646a2007-04-22 11:55:59 +0100106 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109static void pl010_enable_ms(struct uart_port *port)
110{
Russell King1b0646a2007-04-22 11:55:59 +0100111 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 unsigned int cr;
113
Russell King1b0646a2007-04-22 11:55:59 +0100114 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 cr |= UART010_CR_MSIE;
Russell King1b0646a2007-04-22 11:55:59 +0100116 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Russell King1b0646a2007-04-22 11:55:59 +0100119static void pl010_rx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700121 struct tty_struct *tty = uap->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 unsigned int status, ch, flag, rsr, max_count = 256;
123
Russell King1b0646a2007-04-22 11:55:59 +0100124 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 while (UART_RX_DATA(status) && max_count--) {
Russell King1b0646a2007-04-22 11:55:59 +0100126 ch = readb(uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 flag = TTY_NORMAL;
128
Russell King1b0646a2007-04-22 11:55:59 +0100129 uap->port.icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 /*
132 * Note that the error handling code is
133 * out of the main execution path
134 */
Russell King1b0646a2007-04-22 11:55:59 +0100135 rsr = readb(uap->port.membase + UART01x_RSR) | UART_DUMMY_RSR_RX;
Russell King45849282005-04-26 15:29:44 +0100136 if (unlikely(rsr & UART01x_RSR_ANY)) {
Russell King1b0646a2007-04-22 11:55:59 +0100137 writel(0, uap->port.membase + UART01x_ECR);
Lennert Buytenheka4ed06a2006-12-06 20:39:57 -0800138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (rsr & UART01x_RSR_BE) {
140 rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE);
Russell King1b0646a2007-04-22 11:55:59 +0100141 uap->port.icount.brk++;
142 if (uart_handle_break(&uap->port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 goto ignore_char;
144 } else if (rsr & UART01x_RSR_PE)
Russell King1b0646a2007-04-22 11:55:59 +0100145 uap->port.icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 else if (rsr & UART01x_RSR_FE)
Russell King1b0646a2007-04-22 11:55:59 +0100147 uap->port.icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (rsr & UART01x_RSR_OE)
Russell King1b0646a2007-04-22 11:55:59 +0100149 uap->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Russell King1b0646a2007-04-22 11:55:59 +0100151 rsr &= uap->port.read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 if (rsr & UART01x_RSR_BE)
154 flag = TTY_BREAK;
155 else if (rsr & UART01x_RSR_PE)
156 flag = TTY_PARITY;
157 else if (rsr & UART01x_RSR_FE)
158 flag = TTY_FRAME;
159 }
160
Russell King1b0646a2007-04-22 11:55:59 +0100161 if (uart_handle_sysrq_char(&uap->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 goto ignore_char;
163
Russell King1b0646a2007-04-22 11:55:59 +0100164 uart_insert_char(&uap->port, rsr, UART01x_RSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +0100165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 ignore_char:
Russell King1b0646a2007-04-22 11:55:59 +0100167 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
Russell Kingdb002b82007-06-05 19:39:49 +0100169 spin_unlock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 tty_flip_buffer_push(tty);
Russell Kingdb002b82007-06-05 19:39:49 +0100171 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Russell King1b0646a2007-04-22 11:55:59 +0100174static void pl010_tx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700176 struct circ_buf *xmit = &uap->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 int count;
178
Russell King1b0646a2007-04-22 11:55:59 +0100179 if (uap->port.x_char) {
180 writel(uap->port.x_char, uap->port.membase + UART01x_DR);
181 uap->port.icount.tx++;
182 uap->port.x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return;
184 }
Russell King1b0646a2007-04-22 11:55:59 +0100185 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
186 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return;
188 }
189
Russell King1b0646a2007-04-22 11:55:59 +0100190 count = uap->port.fifosize >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 do {
Russell King1b0646a2007-04-22 11:55:59 +0100192 writel(xmit->buf[xmit->tail], uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Russell King1b0646a2007-04-22 11:55:59 +0100194 uap->port.icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (uart_circ_empty(xmit))
196 break;
197 } while (--count > 0);
198
199 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Russell King1b0646a2007-04-22 11:55:59 +0100200 uart_write_wakeup(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 if (uart_circ_empty(xmit))
Russell King1b0646a2007-04-22 11:55:59 +0100203 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Russell King1b0646a2007-04-22 11:55:59 +0100206static void pl010_modem_status(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned int status, delta;
209
Russell King98639a62006-03-25 21:30:11 +0000210 writel(0, uap->port.membase + UART010_ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Russell King98639a62006-03-25 21:30:11 +0000212 status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 delta = status ^ uap->old_status;
215 uap->old_status = status;
216
217 if (!delta)
218 return;
219
220 if (delta & UART01x_FR_DCD)
221 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
222
223 if (delta & UART01x_FR_DSR)
224 uap->port.icount.dsr++;
225
226 if (delta & UART01x_FR_CTS)
227 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
228
Alan Coxbdc04e32009-09-19 13:13:31 -0700229 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
David Howells7d12e782006-10-05 14:55:46 +0100232static irqreturn_t pl010_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Russell King1b0646a2007-04-22 11:55:59 +0100234 struct uart_amba_port *uap = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
236 int handled = 0;
237
Russell King1b0646a2007-04-22 11:55:59 +0100238 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Russell King1b0646a2007-04-22 11:55:59 +0100240 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (status) {
242 do {
243 if (status & (UART010_IIR_RTIS | UART010_IIR_RIS))
Russell King1b0646a2007-04-22 11:55:59 +0100244 pl010_rx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (status & UART010_IIR_MIS)
Russell King1b0646a2007-04-22 11:55:59 +0100246 pl010_modem_status(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (status & UART010_IIR_TIS)
Russell King1b0646a2007-04-22 11:55:59 +0100248 pl010_tx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 if (pass_counter-- == 0)
251 break;
252
Russell King1b0646a2007-04-22 11:55:59 +0100253 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 } while (status & (UART010_IIR_RTIS | UART010_IIR_RIS |
255 UART010_IIR_TIS));
256 handled = 1;
257 }
258
Russell King1b0646a2007-04-22 11:55:59 +0100259 spin_unlock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 return IRQ_RETVAL(handled);
262}
263
264static unsigned int pl010_tx_empty(struct uart_port *port)
265{
Russell King1b0646a2007-04-22 11:55:59 +0100266 struct uart_amba_port *uap = (struct uart_amba_port *)port;
267 unsigned int status = readb(uap->port.membase + UART01x_FR);
268 return status & UART01x_FR_BUSY ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271static unsigned int pl010_get_mctrl(struct uart_port *port)
272{
Russell King1b0646a2007-04-22 11:55:59 +0100273 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 unsigned int result = 0;
275 unsigned int status;
276
Russell King1b0646a2007-04-22 11:55:59 +0100277 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (status & UART01x_FR_DCD)
279 result |= TIOCM_CAR;
280 if (status & UART01x_FR_DSR)
281 result |= TIOCM_DSR;
282 if (status & UART01x_FR_CTS)
283 result |= TIOCM_CTS;
284
285 return result;
286}
287
288static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl)
289{
290 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Russell Kingfbb18a22006-03-26 23:13:39 +0100292 if (uap->data)
293 uap->data->set_mctrl(uap->dev, uap->port.membase, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296static void pl010_break_ctl(struct uart_port *port, int break_state)
297{
Russell King1b0646a2007-04-22 11:55:59 +0100298 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 unsigned long flags;
300 unsigned int lcr_h;
301
Russell King1b0646a2007-04-22 11:55:59 +0100302 spin_lock_irqsave(&uap->port.lock, flags);
303 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (break_state == -1)
305 lcr_h |= UART01x_LCRH_BRK;
306 else
307 lcr_h &= ~UART01x_LCRH_BRK;
Russell King1b0646a2007-04-22 11:55:59 +0100308 writel(lcr_h, uap->port.membase + UART010_LCRH);
309 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
312static int pl010_startup(struct uart_port *port)
313{
314 struct uart_amba_port *uap = (struct uart_amba_port *)port;
315 int retval;
316
317 /*
Russell Kinged519de2007-04-22 12:30:41 +0100318 * Try to enable the clock producer.
319 */
320 retval = clk_enable(uap->clk);
321 if (retval)
322 goto out;
323
324 uap->port.uartclk = clk_get_rate(uap->clk);
325
326 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * Allocate the IRQ
328 */
Russell King1b0646a2007-04-22 11:55:59 +0100329 retval = request_irq(uap->port.irq, pl010_int, 0, "uart-pl010", uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (retval)
Russell Kinged519de2007-04-22 12:30:41 +0100331 goto clk_dis;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 /*
334 * initialise the old status of the modem signals
335 */
Russell King1b0646a2007-04-22 11:55:59 +0100336 uap->old_status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /*
339 * Finally, enable interrupts
340 */
Russell King98639a62006-03-25 21:30:11 +0000341 writel(UART01x_CR_UARTEN | UART010_CR_RIE | UART010_CR_RTIE,
Russell King1b0646a2007-04-22 11:55:59 +0100342 uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 return 0;
Russell Kinged519de2007-04-22 12:30:41 +0100345
346 clk_dis:
347 clk_disable(uap->clk);
348 out:
349 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352static void pl010_shutdown(struct uart_port *port)
353{
Russell King1b0646a2007-04-22 11:55:59 +0100354 struct uart_amba_port *uap = (struct uart_amba_port *)port;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /*
357 * Free the interrupt
358 */
Russell King1b0646a2007-04-22 11:55:59 +0100359 free_irq(uap->port.irq, uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /*
362 * disable all interrupts, disable the port
363 */
Russell King1b0646a2007-04-22 11:55:59 +0100364 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /* disable break condition and fifos */
Russell King1b0646a2007-04-22 11:55:59 +0100367 writel(readb(uap->port.membase + UART010_LCRH) &
Russell King98639a62006-03-25 21:30:11 +0000368 ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN),
Russell King1b0646a2007-04-22 11:55:59 +0100369 uap->port.membase + UART010_LCRH);
Russell Kinged519de2007-04-22 12:30:41 +0100370
371 /*
372 * Shut down the clock producer
373 */
374 clk_disable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377static void
Alan Cox606d0992006-12-08 02:38:45 -0800378pl010_set_termios(struct uart_port *port, struct ktermios *termios,
379 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Russell King1b0646a2007-04-22 11:55:59 +0100381 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 unsigned int lcr_h, old_cr;
383 unsigned long flags;
384 unsigned int baud, quot;
385
386 /*
387 * Ask the core to calculate the divisor for us.
388 */
Russell King1b0646a2007-04-22 11:55:59 +0100389 baud = uart_get_baud_rate(port, termios, old, 0, uap->port.uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 quot = uart_get_divisor(port, baud);
391
392 switch (termios->c_cflag & CSIZE) {
393 case CS5:
394 lcr_h = UART01x_LCRH_WLEN_5;
395 break;
396 case CS6:
397 lcr_h = UART01x_LCRH_WLEN_6;
398 break;
399 case CS7:
400 lcr_h = UART01x_LCRH_WLEN_7;
401 break;
402 default: // CS8
403 lcr_h = UART01x_LCRH_WLEN_8;
404 break;
405 }
406 if (termios->c_cflag & CSTOPB)
407 lcr_h |= UART01x_LCRH_STP2;
408 if (termios->c_cflag & PARENB) {
409 lcr_h |= UART01x_LCRH_PEN;
410 if (!(termios->c_cflag & PARODD))
411 lcr_h |= UART01x_LCRH_EPS;
412 }
Russell King1b0646a2007-04-22 11:55:59 +0100413 if (uap->port.fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 lcr_h |= UART01x_LCRH_FEN;
415
Russell King1b0646a2007-04-22 11:55:59 +0100416 spin_lock_irqsave(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /*
419 * Update the per-port timeout.
420 */
421 uart_update_timeout(port, termios->c_cflag, baud);
422
Russell King1b0646a2007-04-22 11:55:59 +0100423 uap->port.read_status_mask = UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (termios->c_iflag & INPCK)
Russell King1b0646a2007-04-22 11:55:59 +0100425 uap->port.read_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (termios->c_iflag & (BRKINT | PARMRK))
Russell King1b0646a2007-04-22 11:55:59 +0100427 uap->port.read_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 /*
430 * Characters to ignore
431 */
Russell King1b0646a2007-04-22 11:55:59 +0100432 uap->port.ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100434 uap->port.ignore_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (termios->c_iflag & IGNBRK) {
Russell King1b0646a2007-04-22 11:55:59 +0100436 uap->port.ignore_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /*
438 * If we're ignoring parity and break indicators,
439 * ignore overruns too (for real raw support).
440 */
441 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100442 uap->port.ignore_status_mask |= UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444
445 /*
446 * Ignore all characters if CREAD is not set.
447 */
448 if ((termios->c_cflag & CREAD) == 0)
Russell King1b0646a2007-04-22 11:55:59 +0100449 uap->port.ignore_status_mask |= UART_DUMMY_RSR_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* first, disable everything */
Russell King1b0646a2007-04-22 11:55:59 +0100452 old_cr = readb(uap->port.membase + UART010_CR) & ~UART010_CR_MSIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (UART_ENABLE_MS(port, termios->c_cflag))
455 old_cr |= UART010_CR_MSIE;
456
Russell King1b0646a2007-04-22 11:55:59 +0100457 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 /* Set baud rate */
460 quot -= 1;
Russell King1b0646a2007-04-22 11:55:59 +0100461 writel((quot & 0xf00) >> 8, uap->port.membase + UART010_LCRM);
462 writel(quot & 0xff, uap->port.membase + UART010_LCRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 /*
465 * ----------v----------v----------v----------v-----
466 * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L
467 * ----------^----------^----------^----------^-----
468 */
Russell King1b0646a2007-04-22 11:55:59 +0100469 writel(lcr_h, uap->port.membase + UART010_LCRH);
470 writel(old_cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Russell King1b0646a2007-04-22 11:55:59 +0100472 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800475static void pl010_set_ldisc(struct uart_port *port)
476{
477 int line = port->line;
478
479 if (line >= port->state->port.tty->driver->num)
480 return;
481
482 if (port->state->port.tty->ldisc->ops->num == N_PPS) {
483 port->flags |= UPF_HARDPPS_CD;
484 pl010_enable_ms(port);
485 } else
486 port->flags &= ~UPF_HARDPPS_CD;
487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static const char *pl010_type(struct uart_port *port)
490{
491 return port->type == PORT_AMBA ? "AMBA" : NULL;
492}
493
494/*
495 * Release the memory region(s) being used by 'port'
496 */
497static void pl010_release_port(struct uart_port *port)
498{
499 release_mem_region(port->mapbase, UART_PORT_SIZE);
500}
501
502/*
503 * Request the memory region(s) being used by 'port'
504 */
505static int pl010_request_port(struct uart_port *port)
506{
507 return request_mem_region(port->mapbase, UART_PORT_SIZE, "uart-pl010")
508 != NULL ? 0 : -EBUSY;
509}
510
511/*
512 * Configure/autoconfigure the port.
513 */
514static void pl010_config_port(struct uart_port *port, int flags)
515{
516 if (flags & UART_CONFIG_TYPE) {
517 port->type = PORT_AMBA;
518 pl010_request_port(port);
519 }
520}
521
522/*
523 * verify the new serial_struct (for TIOCSSERIAL).
524 */
525static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser)
526{
527 int ret = 0;
528 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
529 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -0700530 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 ret = -EINVAL;
532 if (ser->baud_base < 9600)
533 ret = -EINVAL;
534 return ret;
535}
536
537static struct uart_ops amba_pl010_pops = {
538 .tx_empty = pl010_tx_empty,
539 .set_mctrl = pl010_set_mctrl,
540 .get_mctrl = pl010_get_mctrl,
541 .stop_tx = pl010_stop_tx,
542 .start_tx = pl010_start_tx,
543 .stop_rx = pl010_stop_rx,
544 .enable_ms = pl010_enable_ms,
545 .break_ctl = pl010_break_ctl,
546 .startup = pl010_startup,
547 .shutdown = pl010_shutdown,
548 .set_termios = pl010_set_termios,
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800549 .set_ldisc = pl010_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 .type = pl010_type,
551 .release_port = pl010_release_port,
552 .request_port = pl010_request_port,
553 .config_port = pl010_config_port,
554 .verify_port = pl010_verify_port,
555};
556
Russell Kingfbb18a22006-03-26 23:13:39 +0100557static struct uart_amba_port *amba_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559#ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE
560
Russell Kingd3587882006-03-20 20:00:09 +0000561static void pl010_console_putchar(struct uart_port *port, int ch)
562{
Russell King1b0646a2007-04-22 11:55:59 +0100563 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Russell King98639a62006-03-25 21:30:11 +0000564 unsigned int status;
565
566 do {
Russell King1b0646a2007-04-22 11:55:59 +0100567 status = readb(uap->port.membase + UART01x_FR);
Russell Kingd3587882006-03-20 20:00:09 +0000568 barrier();
Russell King98639a62006-03-25 21:30:11 +0000569 } while (!UART_TX_READY(status));
Russell King1b0646a2007-04-22 11:55:59 +0100570 writel(ch, uap->port.membase + UART01x_DR);
Russell Kingd3587882006-03-20 20:00:09 +0000571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573static void
574pl010_console_write(struct console *co, const char *s, unsigned int count)
575{
Russell King1b0646a2007-04-22 11:55:59 +0100576 struct uart_amba_port *uap = amba_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 unsigned int status, old_cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Russell Kinged519de2007-04-22 12:30:41 +0100579 clk_enable(uap->clk);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /*
582 * First save the CR then disable the interrupts
583 */
Russell King1b0646a2007-04-22 11:55:59 +0100584 old_cr = readb(uap->port.membase + UART010_CR);
585 writel(UART01x_CR_UARTEN, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Russell King1b0646a2007-04-22 11:55:59 +0100587 uart_console_write(&uap->port, s, count, pl010_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 /*
590 * Finally, wait for transmitter to become empty
591 * and restore the TCR
592 */
593 do {
Russell King1b0646a2007-04-22 11:55:59 +0100594 status = readb(uap->port.membase + UART01x_FR);
Russell King98639a62006-03-25 21:30:11 +0000595 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 } while (status & UART01x_FR_BUSY);
Russell King1b0646a2007-04-22 11:55:59 +0100597 writel(old_cr, uap->port.membase + UART010_CR);
Russell Kinged519de2007-04-22 12:30:41 +0100598
599 clk_disable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602static void __init
Russell King1b0646a2007-04-22 11:55:59 +0100603pl010_console_get_options(struct uart_amba_port *uap, int *baud,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 int *parity, int *bits)
605{
Russell King1b0646a2007-04-22 11:55:59 +0100606 if (readb(uap->port.membase + UART010_CR) & UART01x_CR_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 unsigned int lcr_h, quot;
Russell King1b0646a2007-04-22 11:55:59 +0100608 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 *parity = 'n';
611 if (lcr_h & UART01x_LCRH_PEN) {
612 if (lcr_h & UART01x_LCRH_EPS)
613 *parity = 'e';
614 else
615 *parity = 'o';
616 }
617
618 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
619 *bits = 7;
620 else
621 *bits = 8;
622
Russell King1b0646a2007-04-22 11:55:59 +0100623 quot = readb(uap->port.membase + UART010_LCRL) |
624 readb(uap->port.membase + UART010_LCRM) << 8;
625 *baud = uap->port.uartclk / (16 * (quot + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627}
628
629static int __init pl010_console_setup(struct console *co, char *options)
630{
Russell King1b0646a2007-04-22 11:55:59 +0100631 struct uart_amba_port *uap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 int baud = 38400;
633 int bits = 8;
634 int parity = 'n';
635 int flow = 'n';
636
637 /*
638 * Check whether an invalid uart number has been specified, and
639 * if so, search for the first available port that does have
640 * console support.
641 */
642 if (co->index >= UART_NR)
643 co->index = 0;
Russell King1b0646a2007-04-22 11:55:59 +0100644 uap = amba_ports[co->index];
645 if (!uap)
Russell Kingd28122a2007-01-22 18:59:42 +0000646 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Russell Kinged519de2007-04-22 12:30:41 +0100648 uap->port.uartclk = clk_get_rate(uap->clk);
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (options)
651 uart_parse_options(options, &baud, &parity, &bits, &flow);
652 else
Russell King1b0646a2007-04-22 11:55:59 +0100653 pl010_console_get_options(uap, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Russell King1b0646a2007-04-22 11:55:59 +0100655 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Vincent Sanders2d934862005-09-14 22:36:03 +0100658static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659static struct console amba_console = {
660 .name = "ttyAM",
661 .write = pl010_console_write,
662 .device = uart_console_device,
663 .setup = pl010_console_setup,
664 .flags = CON_PRINTBUFFER,
665 .index = -1,
666 .data = &amba_reg,
667};
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669#define AMBA_CONSOLE &amba_console
670#else
671#define AMBA_CONSOLE NULL
672#endif
673
674static struct uart_driver amba_reg = {
675 .owner = THIS_MODULE,
676 .driver_name = "ttyAM",
677 .dev_name = "ttyAM",
678 .major = SERIAL_AMBA_MAJOR,
679 .minor = SERIAL_AMBA_MINOR,
680 .nr = UART_NR,
681 .cons = AMBA_CONSOLE,
682};
683
Alessandro Rubini03fbdb12009-05-20 22:39:08 +0100684static int pl010_probe(struct amba_device *dev, struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Russell King1b0646a2007-04-22 11:55:59 +0100686 struct uart_amba_port *uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100687 void __iomem *base;
688 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Russell Kingfbb18a22006-03-26 23:13:39 +0100690 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
691 if (amba_ports[i] == NULL)
692 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Russell Kingfbb18a22006-03-26 23:13:39 +0100694 if (i == ARRAY_SIZE(amba_ports)) {
695 ret = -EBUSY;
696 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698
Russell King1b0646a2007-04-22 11:55:59 +0100699 uap = kzalloc(sizeof(struct uart_amba_port), GFP_KERNEL);
700 if (!uap) {
Russell Kingfbb18a22006-03-26 23:13:39 +0100701 ret = -ENOMEM;
702 goto out;
703 }
704
Linus Walleijdc890c22009-06-07 23:27:31 +0100705 base = ioremap(dev->res.start, resource_size(&dev->res));
Russell Kingfbb18a22006-03-26 23:13:39 +0100706 if (!base) {
707 ret = -ENOMEM;
708 goto free;
709 }
710
Russell Kingee569c42008-11-30 17:38:14 +0000711 uap->clk = clk_get(&dev->dev, NULL);
Russell Kinged519de2007-04-22 12:30:41 +0100712 if (IS_ERR(uap->clk)) {
713 ret = PTR_ERR(uap->clk);
714 goto unmap;
715 }
716
Russell King1b0646a2007-04-22 11:55:59 +0100717 uap->port.dev = &dev->dev;
718 uap->port.mapbase = dev->res.start;
719 uap->port.membase = base;
720 uap->port.iotype = UPIO_MEM;
721 uap->port.irq = dev->irq[0];
Russell King1b0646a2007-04-22 11:55:59 +0100722 uap->port.fifosize = 16;
723 uap->port.ops = &amba_pl010_pops;
724 uap->port.flags = UPF_BOOT_AUTOCONF;
725 uap->port.line = i;
726 uap->dev = dev;
727 uap->data = dev->dev.platform_data;
Russell Kingfbb18a22006-03-26 23:13:39 +0100728
Russell King1b0646a2007-04-22 11:55:59 +0100729 amba_ports[i] = uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100730
Russell King1b0646a2007-04-22 11:55:59 +0100731 amba_set_drvdata(dev, uap);
732 ret = uart_add_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100733 if (ret) {
734 amba_set_drvdata(dev, NULL);
735 amba_ports[i] = NULL;
Russell Kinged519de2007-04-22 12:30:41 +0100736 clk_put(uap->clk);
737 unmap:
Russell Kingfbb18a22006-03-26 23:13:39 +0100738 iounmap(base);
739 free:
Russell King1b0646a2007-04-22 11:55:59 +0100740 kfree(uap);
Russell Kingfbb18a22006-03-26 23:13:39 +0100741 }
Russell Kingfbb18a22006-03-26 23:13:39 +0100742 out:
743 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746static int pl010_remove(struct amba_device *dev)
747{
Russell King1b0646a2007-04-22 11:55:59 +0100748 struct uart_amba_port *uap = amba_get_drvdata(dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100749 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 amba_set_drvdata(dev, NULL);
752
Russell King1b0646a2007-04-22 11:55:59 +0100753 uart_remove_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100754
755 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
Russell King1b0646a2007-04-22 11:55:59 +0100756 if (amba_ports[i] == uap)
Russell Kingfbb18a22006-03-26 23:13:39 +0100757 amba_ports[i] = NULL;
758
Russell King1b0646a2007-04-22 11:55:59 +0100759 iounmap(uap->port.membase);
Russell Kinged519de2007-04-22 12:30:41 +0100760 clk_put(uap->clk);
Russell King1b0646a2007-04-22 11:55:59 +0100761 kfree(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 0;
763}
764
Pavel Machek0370aff2005-04-16 15:25:35 -0700765static int pl010_suspend(struct amba_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
767 struct uart_amba_port *uap = amba_get_drvdata(dev);
768
769 if (uap)
770 uart_suspend_port(&amba_reg, &uap->port);
771
772 return 0;
773}
774
775static int pl010_resume(struct amba_device *dev)
776{
777 struct uart_amba_port *uap = amba_get_drvdata(dev);
778
779 if (uap)
780 uart_resume_port(&amba_reg, &uap->port);
781
782 return 0;
783}
784
Russell King2c39c9e2010-07-27 08:50:16 +0100785static struct amba_id pl010_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 {
787 .id = 0x00041010,
788 .mask = 0x000fffff,
789 },
790 { 0, 0 },
791};
792
793static struct amba_driver pl010_driver = {
794 .drv = {
795 .name = "uart-pl010",
796 },
797 .id_table = pl010_ids,
798 .probe = pl010_probe,
799 .remove = pl010_remove,
800 .suspend = pl010_suspend,
801 .resume = pl010_resume,
802};
803
804static int __init pl010_init(void)
805{
806 int ret;
807
Adrian Bunkd87a6d92008-07-16 21:53:31 +0100808 printk(KERN_INFO "Serial: AMBA driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 ret = uart_register_driver(&amba_reg);
811 if (ret == 0) {
812 ret = amba_driver_register(&pl010_driver);
813 if (ret)
814 uart_unregister_driver(&amba_reg);
815 }
816 return ret;
817}
818
819static void __exit pl010_exit(void)
820{
821 amba_driver_unregister(&pl010_driver);
822 uart_unregister_driver(&amba_reg);
823}
824
825module_init(pl010_init);
826module_exit(pl010_exit);
827
828MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
Adrian Bunkd87a6d92008-07-16 21:53:31 +0100829MODULE_DESCRIPTION("ARM AMBA serial port driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830MODULE_LICENSE("GPL");