blob: e4b3c2c88bb65098bd806219ac32f682cb3b2c90 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Lennert Buytenhek4faf4e02006-06-20 19:24:07 +010053#define UART_NR 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#define SERIAL_AMBA_MAJOR 204
56#define SERIAL_AMBA_MINOR 16
57#define SERIAL_AMBA_NR UART_NR
58
59#define AMBA_ISR_PASS_LIMIT 256
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define UART_RX_DATA(s) (((s) & UART01x_FR_RXFE) == 0)
62#define UART_TX_READY(s) (((s) & UART01x_FR_TXFF) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Russell Kingfbb18a22006-03-26 23:13:39 +010064#define UART_DUMMY_RSR_RX 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define UART_PORT_SIZE 64
66
67/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * We wrap our port structure around the generic uart_port.
69 */
70struct uart_amba_port {
71 struct uart_port port;
Russell Kinged519de2007-04-22 12:30:41 +010072 struct clk *clk;
Russell Kingfbb18a22006-03-26 23:13:39 +010073 struct amba_device *dev;
74 struct amba_pl010_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 unsigned int old_status;
76};
77
Russell Kingb129a8c2005-08-31 10:12:14 +010078static void pl010_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Russell King1b0646a2007-04-22 11:55:59 +010080 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned int cr;
82
Russell King1b0646a2007-04-22 11:55:59 +010083 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 cr &= ~UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010085 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
Russell Kingb129a8c2005-08-31 10:12:14 +010088static void pl010_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Russell King1b0646a2007-04-22 11:55:59 +010090 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 unsigned int cr;
92
Russell King1b0646a2007-04-22 11:55:59 +010093 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 cr |= UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010095 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98static void pl010_stop_rx(struct uart_port *port)
99{
Russell King1b0646a2007-04-22 11:55:59 +0100100 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 unsigned int cr;
102
Russell King1b0646a2007-04-22 11:55:59 +0100103 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 cr &= ~(UART010_CR_RIE | UART010_CR_RTIE);
Russell King1b0646a2007-04-22 11:55:59 +0100105 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108static void pl010_enable_ms(struct uart_port *port)
109{
Russell King1b0646a2007-04-22 11:55:59 +0100110 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 unsigned int cr;
112
Russell King1b0646a2007-04-22 11:55:59 +0100113 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 cr |= UART010_CR_MSIE;
Russell King1b0646a2007-04-22 11:55:59 +0100115 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
Russell King1b0646a2007-04-22 11:55:59 +0100118static void pl010_rx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700120 struct tty_struct *tty = uap->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 unsigned int status, ch, flag, rsr, max_count = 256;
122
Russell King1b0646a2007-04-22 11:55:59 +0100123 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 while (UART_RX_DATA(status) && max_count--) {
Russell King1b0646a2007-04-22 11:55:59 +0100125 ch = readb(uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 flag = TTY_NORMAL;
127
Russell King1b0646a2007-04-22 11:55:59 +0100128 uap->port.icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 /*
131 * Note that the error handling code is
132 * out of the main execution path
133 */
Russell King1b0646a2007-04-22 11:55:59 +0100134 rsr = readb(uap->port.membase + UART01x_RSR) | UART_DUMMY_RSR_RX;
Russell King45849282005-04-26 15:29:44 +0100135 if (unlikely(rsr & UART01x_RSR_ANY)) {
Russell King1b0646a2007-04-22 11:55:59 +0100136 writel(0, uap->port.membase + UART01x_ECR);
Lennert Buytenheka4ed06a2006-12-06 20:39:57 -0800137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (rsr & UART01x_RSR_BE) {
139 rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE);
Russell King1b0646a2007-04-22 11:55:59 +0100140 uap->port.icount.brk++;
141 if (uart_handle_break(&uap->port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 goto ignore_char;
143 } else if (rsr & UART01x_RSR_PE)
Russell King1b0646a2007-04-22 11:55:59 +0100144 uap->port.icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 else if (rsr & UART01x_RSR_FE)
Russell King1b0646a2007-04-22 11:55:59 +0100146 uap->port.icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (rsr & UART01x_RSR_OE)
Russell King1b0646a2007-04-22 11:55:59 +0100148 uap->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Russell King1b0646a2007-04-22 11:55:59 +0100150 rsr &= uap->port.read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 if (rsr & UART01x_RSR_BE)
153 flag = TTY_BREAK;
154 else if (rsr & UART01x_RSR_PE)
155 flag = TTY_PARITY;
156 else if (rsr & UART01x_RSR_FE)
157 flag = TTY_FRAME;
158 }
159
Russell King1b0646a2007-04-22 11:55:59 +0100160 if (uart_handle_sysrq_char(&uap->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 goto ignore_char;
162
Russell King1b0646a2007-04-22 11:55:59 +0100163 uart_insert_char(&uap->port, rsr, UART01x_RSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +0100164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 ignore_char:
Russell King1b0646a2007-04-22 11:55:59 +0100166 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
Russell Kingdb002b82007-06-05 19:39:49 +0100168 spin_unlock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 tty_flip_buffer_push(tty);
Russell Kingdb002b82007-06-05 19:39:49 +0100170 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Russell King1b0646a2007-04-22 11:55:59 +0100173static void pl010_tx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700175 struct circ_buf *xmit = &uap->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 int count;
177
Russell King1b0646a2007-04-22 11:55:59 +0100178 if (uap->port.x_char) {
179 writel(uap->port.x_char, uap->port.membase + UART01x_DR);
180 uap->port.icount.tx++;
181 uap->port.x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return;
183 }
Russell King1b0646a2007-04-22 11:55:59 +0100184 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
185 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return;
187 }
188
Russell King1b0646a2007-04-22 11:55:59 +0100189 count = uap->port.fifosize >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 do {
Russell King1b0646a2007-04-22 11:55:59 +0100191 writel(xmit->buf[xmit->tail], uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Russell King1b0646a2007-04-22 11:55:59 +0100193 uap->port.icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (uart_circ_empty(xmit))
195 break;
196 } while (--count > 0);
197
198 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Russell King1b0646a2007-04-22 11:55:59 +0100199 uart_write_wakeup(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 if (uart_circ_empty(xmit))
Russell King1b0646a2007-04-22 11:55:59 +0100202 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Russell King1b0646a2007-04-22 11:55:59 +0100205static void pl010_modem_status(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 unsigned int status, delta;
208
Russell King98639a62006-03-25 21:30:11 +0000209 writel(0, uap->port.membase + UART010_ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Russell King98639a62006-03-25 21:30:11 +0000211 status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 delta = status ^ uap->old_status;
214 uap->old_status = status;
215
216 if (!delta)
217 return;
218
219 if (delta & UART01x_FR_DCD)
220 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
221
222 if (delta & UART01x_FR_DSR)
223 uap->port.icount.dsr++;
224
225 if (delta & UART01x_FR_CTS)
226 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
227
Alan Coxbdc04e32009-09-19 13:13:31 -0700228 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
David Howells7d12e782006-10-05 14:55:46 +0100231static irqreturn_t pl010_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Russell King1b0646a2007-04-22 11:55:59 +0100233 struct uart_amba_port *uap = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
235 int handled = 0;
236
Russell King1b0646a2007-04-22 11:55:59 +0100237 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Russell King1b0646a2007-04-22 11:55:59 +0100239 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (status) {
241 do {
242 if (status & (UART010_IIR_RTIS | UART010_IIR_RIS))
Russell King1b0646a2007-04-22 11:55:59 +0100243 pl010_rx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (status & UART010_IIR_MIS)
Russell King1b0646a2007-04-22 11:55:59 +0100245 pl010_modem_status(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (status & UART010_IIR_TIS)
Russell King1b0646a2007-04-22 11:55:59 +0100247 pl010_tx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (pass_counter-- == 0)
250 break;
251
Russell King1b0646a2007-04-22 11:55:59 +0100252 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 } while (status & (UART010_IIR_RTIS | UART010_IIR_RIS |
254 UART010_IIR_TIS));
255 handled = 1;
256 }
257
Russell King1b0646a2007-04-22 11:55:59 +0100258 spin_unlock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 return IRQ_RETVAL(handled);
261}
262
263static unsigned int pl010_tx_empty(struct uart_port *port)
264{
Russell King1b0646a2007-04-22 11:55:59 +0100265 struct uart_amba_port *uap = (struct uart_amba_port *)port;
266 unsigned int status = readb(uap->port.membase + UART01x_FR);
267 return status & UART01x_FR_BUSY ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270static unsigned int pl010_get_mctrl(struct uart_port *port)
271{
Russell King1b0646a2007-04-22 11:55:59 +0100272 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 unsigned int result = 0;
274 unsigned int status;
275
Russell King1b0646a2007-04-22 11:55:59 +0100276 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (status & UART01x_FR_DCD)
278 result |= TIOCM_CAR;
279 if (status & UART01x_FR_DSR)
280 result |= TIOCM_DSR;
281 if (status & UART01x_FR_CTS)
282 result |= TIOCM_CTS;
283
284 return result;
285}
286
287static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl)
288{
289 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Russell Kingfbb18a22006-03-26 23:13:39 +0100291 if (uap->data)
292 uap->data->set_mctrl(uap->dev, uap->port.membase, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295static void pl010_break_ctl(struct uart_port *port, int break_state)
296{
Russell King1b0646a2007-04-22 11:55:59 +0100297 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 unsigned long flags;
299 unsigned int lcr_h;
300
Russell King1b0646a2007-04-22 11:55:59 +0100301 spin_lock_irqsave(&uap->port.lock, flags);
302 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (break_state == -1)
304 lcr_h |= UART01x_LCRH_BRK;
305 else
306 lcr_h &= ~UART01x_LCRH_BRK;
Russell King1b0646a2007-04-22 11:55:59 +0100307 writel(lcr_h, uap->port.membase + UART010_LCRH);
308 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311static int pl010_startup(struct uart_port *port)
312{
313 struct uart_amba_port *uap = (struct uart_amba_port *)port;
314 int retval;
315
316 /*
Russell Kinged519de2007-04-22 12:30:41 +0100317 * Try to enable the clock producer.
318 */
319 retval = clk_enable(uap->clk);
320 if (retval)
321 goto out;
322
323 uap->port.uartclk = clk_get_rate(uap->clk);
324
325 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * Allocate the IRQ
327 */
Russell King1b0646a2007-04-22 11:55:59 +0100328 retval = request_irq(uap->port.irq, pl010_int, 0, "uart-pl010", uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (retval)
Russell Kinged519de2007-04-22 12:30:41 +0100330 goto clk_dis;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /*
333 * initialise the old status of the modem signals
334 */
Russell King1b0646a2007-04-22 11:55:59 +0100335 uap->old_status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 /*
338 * Finally, enable interrupts
339 */
Russell King98639a62006-03-25 21:30:11 +0000340 writel(UART01x_CR_UARTEN | UART010_CR_RIE | UART010_CR_RTIE,
Russell King1b0646a2007-04-22 11:55:59 +0100341 uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 return 0;
Russell Kinged519de2007-04-22 12:30:41 +0100344
345 clk_dis:
346 clk_disable(uap->clk);
347 out:
348 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351static void pl010_shutdown(struct uart_port *port)
352{
Russell King1b0646a2007-04-22 11:55:59 +0100353 struct uart_amba_port *uap = (struct uart_amba_port *)port;
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /*
356 * Free the interrupt
357 */
Russell King1b0646a2007-04-22 11:55:59 +0100358 free_irq(uap->port.irq, uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /*
361 * disable all interrupts, disable the port
362 */
Russell King1b0646a2007-04-22 11:55:59 +0100363 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* disable break condition and fifos */
Russell King1b0646a2007-04-22 11:55:59 +0100366 writel(readb(uap->port.membase + UART010_LCRH) &
Russell King98639a62006-03-25 21:30:11 +0000367 ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN),
Russell King1b0646a2007-04-22 11:55:59 +0100368 uap->port.membase + UART010_LCRH);
Russell Kinged519de2007-04-22 12:30:41 +0100369
370 /*
371 * Shut down the clock producer
372 */
373 clk_disable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376static void
Alan Cox606d0992006-12-08 02:38:45 -0800377pl010_set_termios(struct uart_port *port, struct ktermios *termios,
378 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Russell King1b0646a2007-04-22 11:55:59 +0100380 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 unsigned int lcr_h, old_cr;
382 unsigned long flags;
383 unsigned int baud, quot;
384
385 /*
386 * Ask the core to calculate the divisor for us.
387 */
Russell King1b0646a2007-04-22 11:55:59 +0100388 baud = uart_get_baud_rate(port, termios, old, 0, uap->port.uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 quot = uart_get_divisor(port, baud);
390
391 switch (termios->c_cflag & CSIZE) {
392 case CS5:
393 lcr_h = UART01x_LCRH_WLEN_5;
394 break;
395 case CS6:
396 lcr_h = UART01x_LCRH_WLEN_6;
397 break;
398 case CS7:
399 lcr_h = UART01x_LCRH_WLEN_7;
400 break;
401 default: // CS8
402 lcr_h = UART01x_LCRH_WLEN_8;
403 break;
404 }
405 if (termios->c_cflag & CSTOPB)
406 lcr_h |= UART01x_LCRH_STP2;
407 if (termios->c_cflag & PARENB) {
408 lcr_h |= UART01x_LCRH_PEN;
409 if (!(termios->c_cflag & PARODD))
410 lcr_h |= UART01x_LCRH_EPS;
411 }
Russell King1b0646a2007-04-22 11:55:59 +0100412 if (uap->port.fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 lcr_h |= UART01x_LCRH_FEN;
414
Russell King1b0646a2007-04-22 11:55:59 +0100415 spin_lock_irqsave(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /*
418 * Update the per-port timeout.
419 */
420 uart_update_timeout(port, termios->c_cflag, baud);
421
Russell King1b0646a2007-04-22 11:55:59 +0100422 uap->port.read_status_mask = UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (termios->c_iflag & INPCK)
Russell King1b0646a2007-04-22 11:55:59 +0100424 uap->port.read_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (termios->c_iflag & (BRKINT | PARMRK))
Russell King1b0646a2007-04-22 11:55:59 +0100426 uap->port.read_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /*
429 * Characters to ignore
430 */
Russell King1b0646a2007-04-22 11:55:59 +0100431 uap->port.ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100433 uap->port.ignore_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (termios->c_iflag & IGNBRK) {
Russell King1b0646a2007-04-22 11:55:59 +0100435 uap->port.ignore_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /*
437 * If we're ignoring parity and break indicators,
438 * ignore overruns too (for real raw support).
439 */
440 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100441 uap->port.ignore_status_mask |= UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
444 /*
445 * Ignore all characters if CREAD is not set.
446 */
447 if ((termios->c_cflag & CREAD) == 0)
Russell King1b0646a2007-04-22 11:55:59 +0100448 uap->port.ignore_status_mask |= UART_DUMMY_RSR_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 /* first, disable everything */
Russell King1b0646a2007-04-22 11:55:59 +0100451 old_cr = readb(uap->port.membase + UART010_CR) & ~UART010_CR_MSIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 if (UART_ENABLE_MS(port, termios->c_cflag))
454 old_cr |= UART010_CR_MSIE;
455
Russell King1b0646a2007-04-22 11:55:59 +0100456 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /* Set baud rate */
459 quot -= 1;
Russell King1b0646a2007-04-22 11:55:59 +0100460 writel((quot & 0xf00) >> 8, uap->port.membase + UART010_LCRM);
461 writel(quot & 0xff, uap->port.membase + UART010_LCRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /*
464 * ----------v----------v----------v----------v-----
465 * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L
466 * ----------^----------^----------^----------^-----
467 */
Russell King1b0646a2007-04-22 11:55:59 +0100468 writel(lcr_h, uap->port.membase + UART010_LCRH);
469 writel(old_cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Russell King1b0646a2007-04-22 11:55:59 +0100471 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800474static void pl010_set_ldisc(struct uart_port *port)
475{
476 int line = port->line;
477
478 if (line >= port->state->port.tty->driver->num)
479 return;
480
481 if (port->state->port.tty->ldisc->ops->num == N_PPS) {
482 port->flags |= UPF_HARDPPS_CD;
483 pl010_enable_ms(port);
484 } else
485 port->flags &= ~UPF_HARDPPS_CD;
486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488static const char *pl010_type(struct uart_port *port)
489{
490 return port->type == PORT_AMBA ? "AMBA" : NULL;
491}
492
493/*
494 * Release the memory region(s) being used by 'port'
495 */
496static void pl010_release_port(struct uart_port *port)
497{
498 release_mem_region(port->mapbase, UART_PORT_SIZE);
499}
500
501/*
502 * Request the memory region(s) being used by 'port'
503 */
504static int pl010_request_port(struct uart_port *port)
505{
506 return request_mem_region(port->mapbase, UART_PORT_SIZE, "uart-pl010")
507 != NULL ? 0 : -EBUSY;
508}
509
510/*
511 * Configure/autoconfigure the port.
512 */
513static void pl010_config_port(struct uart_port *port, int flags)
514{
515 if (flags & UART_CONFIG_TYPE) {
516 port->type = PORT_AMBA;
517 pl010_request_port(port);
518 }
519}
520
521/*
522 * verify the new serial_struct (for TIOCSSERIAL).
523 */
524static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser)
525{
526 int ret = 0;
527 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
528 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -0700529 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 ret = -EINVAL;
531 if (ser->baud_base < 9600)
532 ret = -EINVAL;
533 return ret;
534}
535
536static struct uart_ops amba_pl010_pops = {
537 .tx_empty = pl010_tx_empty,
538 .set_mctrl = pl010_set_mctrl,
539 .get_mctrl = pl010_get_mctrl,
540 .stop_tx = pl010_stop_tx,
541 .start_tx = pl010_start_tx,
542 .stop_rx = pl010_stop_rx,
543 .enable_ms = pl010_enable_ms,
544 .break_ctl = pl010_break_ctl,
545 .startup = pl010_startup,
546 .shutdown = pl010_shutdown,
547 .set_termios = pl010_set_termios,
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800548 .set_ldisc = pl010_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 .type = pl010_type,
550 .release_port = pl010_release_port,
551 .request_port = pl010_request_port,
552 .config_port = pl010_config_port,
553 .verify_port = pl010_verify_port,
554};
555
Russell Kingfbb18a22006-03-26 23:13:39 +0100556static struct uart_amba_port *amba_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558#ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE
559
Russell Kingd3587882006-03-20 20:00:09 +0000560static void pl010_console_putchar(struct uart_port *port, int ch)
561{
Russell King1b0646a2007-04-22 11:55:59 +0100562 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Russell King98639a62006-03-25 21:30:11 +0000563 unsigned int status;
564
565 do {
Russell King1b0646a2007-04-22 11:55:59 +0100566 status = readb(uap->port.membase + UART01x_FR);
Russell Kingd3587882006-03-20 20:00:09 +0000567 barrier();
Russell King98639a62006-03-25 21:30:11 +0000568 } while (!UART_TX_READY(status));
Russell King1b0646a2007-04-22 11:55:59 +0100569 writel(ch, uap->port.membase + UART01x_DR);
Russell Kingd3587882006-03-20 20:00:09 +0000570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572static void
573pl010_console_write(struct console *co, const char *s, unsigned int count)
574{
Russell King1b0646a2007-04-22 11:55:59 +0100575 struct uart_amba_port *uap = amba_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 unsigned int status, old_cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Russell Kinged519de2007-04-22 12:30:41 +0100578 clk_enable(uap->clk);
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /*
581 * First save the CR then disable the interrupts
582 */
Russell King1b0646a2007-04-22 11:55:59 +0100583 old_cr = readb(uap->port.membase + UART010_CR);
584 writel(UART01x_CR_UARTEN, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Russell King1b0646a2007-04-22 11:55:59 +0100586 uart_console_write(&uap->port, s, count, pl010_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 /*
589 * Finally, wait for transmitter to become empty
590 * and restore the TCR
591 */
592 do {
Russell King1b0646a2007-04-22 11:55:59 +0100593 status = readb(uap->port.membase + UART01x_FR);
Russell King98639a62006-03-25 21:30:11 +0000594 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 } while (status & UART01x_FR_BUSY);
Russell King1b0646a2007-04-22 11:55:59 +0100596 writel(old_cr, uap->port.membase + UART010_CR);
Russell Kinged519de2007-04-22 12:30:41 +0100597
598 clk_disable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601static void __init
Russell King1b0646a2007-04-22 11:55:59 +0100602pl010_console_get_options(struct uart_amba_port *uap, int *baud,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 int *parity, int *bits)
604{
Russell King1b0646a2007-04-22 11:55:59 +0100605 if (readb(uap->port.membase + UART010_CR) & UART01x_CR_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 unsigned int lcr_h, quot;
Russell King1b0646a2007-04-22 11:55:59 +0100607 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 *parity = 'n';
610 if (lcr_h & UART01x_LCRH_PEN) {
611 if (lcr_h & UART01x_LCRH_EPS)
612 *parity = 'e';
613 else
614 *parity = 'o';
615 }
616
617 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
618 *bits = 7;
619 else
620 *bits = 8;
621
Russell King1b0646a2007-04-22 11:55:59 +0100622 quot = readb(uap->port.membase + UART010_LCRL) |
623 readb(uap->port.membase + UART010_LCRM) << 8;
624 *baud = uap->port.uartclk / (16 * (quot + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626}
627
628static int __init pl010_console_setup(struct console *co, char *options)
629{
Russell King1b0646a2007-04-22 11:55:59 +0100630 struct uart_amba_port *uap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 int baud = 38400;
632 int bits = 8;
633 int parity = 'n';
634 int flow = 'n';
635
636 /*
637 * Check whether an invalid uart number has been specified, and
638 * if so, search for the first available port that does have
639 * console support.
640 */
641 if (co->index >= UART_NR)
642 co->index = 0;
Russell King1b0646a2007-04-22 11:55:59 +0100643 uap = amba_ports[co->index];
644 if (!uap)
Russell Kingd28122a2007-01-22 18:59:42 +0000645 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Russell Kinged519de2007-04-22 12:30:41 +0100647 uap->port.uartclk = clk_get_rate(uap->clk);
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (options)
650 uart_parse_options(options, &baud, &parity, &bits, &flow);
651 else
Russell King1b0646a2007-04-22 11:55:59 +0100652 pl010_console_get_options(uap, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Russell King1b0646a2007-04-22 11:55:59 +0100654 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Vincent Sanders2d934862005-09-14 22:36:03 +0100657static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658static struct console amba_console = {
659 .name = "ttyAM",
660 .write = pl010_console_write,
661 .device = uart_console_device,
662 .setup = pl010_console_setup,
663 .flags = CON_PRINTBUFFER,
664 .index = -1,
665 .data = &amba_reg,
666};
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668#define AMBA_CONSOLE &amba_console
669#else
670#define AMBA_CONSOLE NULL
671#endif
672
673static struct uart_driver amba_reg = {
674 .owner = THIS_MODULE,
675 .driver_name = "ttyAM",
676 .dev_name = "ttyAM",
677 .major = SERIAL_AMBA_MAJOR,
678 .minor = SERIAL_AMBA_MINOR,
679 .nr = UART_NR,
680 .cons = AMBA_CONSOLE,
681};
682
Alessandro Rubini03fbdb12009-05-20 22:39:08 +0100683static int pl010_probe(struct amba_device *dev, struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Russell King1b0646a2007-04-22 11:55:59 +0100685 struct uart_amba_port *uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100686 void __iomem *base;
687 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Russell Kingfbb18a22006-03-26 23:13:39 +0100689 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
690 if (amba_ports[i] == NULL)
691 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Russell Kingfbb18a22006-03-26 23:13:39 +0100693 if (i == ARRAY_SIZE(amba_ports)) {
694 ret = -EBUSY;
695 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697
Russell King1b0646a2007-04-22 11:55:59 +0100698 uap = kzalloc(sizeof(struct uart_amba_port), GFP_KERNEL);
699 if (!uap) {
Russell Kingfbb18a22006-03-26 23:13:39 +0100700 ret = -ENOMEM;
701 goto out;
702 }
703
Linus Walleijdc890c22009-06-07 23:27:31 +0100704 base = ioremap(dev->res.start, resource_size(&dev->res));
Russell Kingfbb18a22006-03-26 23:13:39 +0100705 if (!base) {
706 ret = -ENOMEM;
707 goto free;
708 }
709
Russell Kingee569c42008-11-30 17:38:14 +0000710 uap->clk = clk_get(&dev->dev, NULL);
Russell Kinged519de2007-04-22 12:30:41 +0100711 if (IS_ERR(uap->clk)) {
712 ret = PTR_ERR(uap->clk);
713 goto unmap;
714 }
715
Russell King1b0646a2007-04-22 11:55:59 +0100716 uap->port.dev = &dev->dev;
717 uap->port.mapbase = dev->res.start;
718 uap->port.membase = base;
719 uap->port.iotype = UPIO_MEM;
720 uap->port.irq = dev->irq[0];
Russell King1b0646a2007-04-22 11:55:59 +0100721 uap->port.fifosize = 16;
722 uap->port.ops = &amba_pl010_pops;
723 uap->port.flags = UPF_BOOT_AUTOCONF;
724 uap->port.line = i;
725 uap->dev = dev;
726 uap->data = dev->dev.platform_data;
Russell Kingfbb18a22006-03-26 23:13:39 +0100727
Russell King1b0646a2007-04-22 11:55:59 +0100728 amba_ports[i] = uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100729
Russell King1b0646a2007-04-22 11:55:59 +0100730 amba_set_drvdata(dev, uap);
731 ret = uart_add_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100732 if (ret) {
733 amba_set_drvdata(dev, NULL);
734 amba_ports[i] = NULL;
Russell Kinged519de2007-04-22 12:30:41 +0100735 clk_put(uap->clk);
736 unmap:
Russell Kingfbb18a22006-03-26 23:13:39 +0100737 iounmap(base);
738 free:
Russell King1b0646a2007-04-22 11:55:59 +0100739 kfree(uap);
Russell Kingfbb18a22006-03-26 23:13:39 +0100740 }
Russell Kingfbb18a22006-03-26 23:13:39 +0100741 out:
742 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745static int pl010_remove(struct amba_device *dev)
746{
Russell King1b0646a2007-04-22 11:55:59 +0100747 struct uart_amba_port *uap = amba_get_drvdata(dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100748 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 amba_set_drvdata(dev, NULL);
751
Russell King1b0646a2007-04-22 11:55:59 +0100752 uart_remove_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100753
754 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
Russell King1b0646a2007-04-22 11:55:59 +0100755 if (amba_ports[i] == uap)
Russell Kingfbb18a22006-03-26 23:13:39 +0100756 amba_ports[i] = NULL;
757
Russell King1b0646a2007-04-22 11:55:59 +0100758 iounmap(uap->port.membase);
Russell Kinged519de2007-04-22 12:30:41 +0100759 clk_put(uap->clk);
Russell King1b0646a2007-04-22 11:55:59 +0100760 kfree(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return 0;
762}
763
Pavel Machek0370aff2005-04-16 15:25:35 -0700764static int pl010_suspend(struct amba_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 struct uart_amba_port *uap = amba_get_drvdata(dev);
767
768 if (uap)
769 uart_suspend_port(&amba_reg, &uap->port);
770
771 return 0;
772}
773
774static int pl010_resume(struct amba_device *dev)
775{
776 struct uart_amba_port *uap = amba_get_drvdata(dev);
777
778 if (uap)
779 uart_resume_port(&amba_reg, &uap->port);
780
781 return 0;
782}
783
784static struct amba_id pl010_ids[] __initdata = {
785 {
786 .id = 0x00041010,
787 .mask = 0x000fffff,
788 },
789 { 0, 0 },
790};
791
792static struct amba_driver pl010_driver = {
793 .drv = {
794 .name = "uart-pl010",
795 },
796 .id_table = pl010_ids,
797 .probe = pl010_probe,
798 .remove = pl010_remove,
799 .suspend = pl010_suspend,
800 .resume = pl010_resume,
801};
802
803static int __init pl010_init(void)
804{
805 int ret;
806
Adrian Bunkd87a6d92008-07-16 21:53:31 +0100807 printk(KERN_INFO "Serial: AMBA driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 ret = uart_register_driver(&amba_reg);
810 if (ret == 0) {
811 ret = amba_driver_register(&pl010_driver);
812 if (ret)
813 uart_unregister_driver(&amba_reg);
814 }
815 return ret;
816}
817
818static void __exit pl010_exit(void)
819{
820 amba_driver_unregister(&pl010_driver);
821 uart_unregister_driver(&amba_reg);
822}
823
824module_init(pl010_init);
825module_exit(pl010_exit);
826
827MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
Adrian Bunkd87a6d92008-07-16 21:53:31 +0100828MODULE_DESCRIPTION("ARM AMBA serial port driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829MODULE_LICENSE("GPL");