blob: 8b90f0b6dfdfe7838c43863350d93f9fccc41dae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for AMBA serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright 1999 ARM Limited
7 * Copyright (C) 2000 Deep Blue Solutions Ltd.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * This is a generic driver for ARM AMBA-type serial ports. They
24 * have a lot of 16550-like features, but are not register compatible.
25 * Note that although they do have CTS, DCD and DSR inputs, they do
26 * not have an RI input, nor do they have DTR or RTS outputs. If
27 * required, these have to be supplied via some other means (eg, GPIO)
28 * and hooked into this driver.
29 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#if defined(CONFIG_SERIAL_AMBA_PL010_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
32#define SUPPORT_SYSRQ
33#endif
34
35#include <linux/module.h>
36#include <linux/ioport.h>
37#include <linux/init.h>
38#include <linux/console.h>
39#include <linux/sysrq.h>
40#include <linux/device.h>
41#include <linux/tty.h>
42#include <linux/tty_flip.h>
43#include <linux/serial_core.h>
44#include <linux/serial.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000045#include <linux/amba/bus.h>
46#include <linux/amba/serial.h>
Russell Kinged519de2007-04-22 12:30:41 +010047#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Lennert Buytenhek4faf4e02006-06-20 19:24:07 +010052#define UART_NR 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#define SERIAL_AMBA_MAJOR 204
55#define SERIAL_AMBA_MINOR 16
56#define SERIAL_AMBA_NR UART_NR
57
58#define AMBA_ISR_PASS_LIMIT 256
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define UART_RX_DATA(s) (((s) & UART01x_FR_RXFE) == 0)
61#define UART_TX_READY(s) (((s) & UART01x_FR_TXFF) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Russell Kingfbb18a22006-03-26 23:13:39 +010063#define UART_DUMMY_RSR_RX 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define UART_PORT_SIZE 64
65
66/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 * We wrap our port structure around the generic uart_port.
68 */
69struct uart_amba_port {
70 struct uart_port port;
Russell Kinged519de2007-04-22 12:30:41 +010071 struct clk *clk;
Russell Kingfbb18a22006-03-26 23:13:39 +010072 struct amba_device *dev;
73 struct amba_pl010_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 unsigned int old_status;
75};
76
Russell Kingb129a8c2005-08-31 10:12:14 +010077static void pl010_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Russell King1b0646a2007-04-22 11:55:59 +010079 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 unsigned int cr;
81
Russell King1b0646a2007-04-22 11:55:59 +010082 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 cr &= ~UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010084 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Russell Kingb129a8c2005-08-31 10:12:14 +010087static void pl010_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Russell King1b0646a2007-04-22 11:55:59 +010089 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 unsigned int cr;
91
Russell King1b0646a2007-04-22 11:55:59 +010092 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 cr |= UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010094 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
97static void pl010_stop_rx(struct uart_port *port)
98{
Russell King1b0646a2007-04-22 11:55:59 +010099 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 unsigned int cr;
101
Russell King1b0646a2007-04-22 11:55:59 +0100102 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 cr &= ~(UART010_CR_RIE | UART010_CR_RTIE);
Russell King1b0646a2007-04-22 11:55:59 +0100104 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static void pl010_enable_ms(struct uart_port *port)
108{
Russell King1b0646a2007-04-22 11:55:59 +0100109 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 unsigned int cr;
111
Russell King1b0646a2007-04-22 11:55:59 +0100112 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 cr |= UART010_CR_MSIE;
Russell King1b0646a2007-04-22 11:55:59 +0100114 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
Russell King1b0646a2007-04-22 11:55:59 +0100117static void pl010_rx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 unsigned int status, ch, flag, rsr, max_count = 256;
120
Russell King1b0646a2007-04-22 11:55:59 +0100121 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 while (UART_RX_DATA(status) && max_count--) {
Russell King1b0646a2007-04-22 11:55:59 +0100123 ch = readb(uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 flag = TTY_NORMAL;
125
Russell King1b0646a2007-04-22 11:55:59 +0100126 uap->port.icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 /*
129 * Note that the error handling code is
130 * out of the main execution path
131 */
Russell King1b0646a2007-04-22 11:55:59 +0100132 rsr = readb(uap->port.membase + UART01x_RSR) | UART_DUMMY_RSR_RX;
Russell King45849282005-04-26 15:29:44 +0100133 if (unlikely(rsr & UART01x_RSR_ANY)) {
Russell King1b0646a2007-04-22 11:55:59 +0100134 writel(0, uap->port.membase + UART01x_ECR);
Lennert Buytenheka4ed06a2006-12-06 20:39:57 -0800135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (rsr & UART01x_RSR_BE) {
137 rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE);
Russell King1b0646a2007-04-22 11:55:59 +0100138 uap->port.icount.brk++;
139 if (uart_handle_break(&uap->port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 goto ignore_char;
141 } else if (rsr & UART01x_RSR_PE)
Russell King1b0646a2007-04-22 11:55:59 +0100142 uap->port.icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 else if (rsr & UART01x_RSR_FE)
Russell King1b0646a2007-04-22 11:55:59 +0100144 uap->port.icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (rsr & UART01x_RSR_OE)
Russell King1b0646a2007-04-22 11:55:59 +0100146 uap->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Russell King1b0646a2007-04-22 11:55:59 +0100148 rsr &= uap->port.read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if (rsr & UART01x_RSR_BE)
151 flag = TTY_BREAK;
152 else if (rsr & UART01x_RSR_PE)
153 flag = TTY_PARITY;
154 else if (rsr & UART01x_RSR_FE)
155 flag = TTY_FRAME;
156 }
157
Russell King1b0646a2007-04-22 11:55:59 +0100158 if (uart_handle_sysrq_char(&uap->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 goto ignore_char;
160
Russell King1b0646a2007-04-22 11:55:59 +0100161 uart_insert_char(&uap->port, rsr, UART01x_RSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +0100162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 ignore_char:
Russell King1b0646a2007-04-22 11:55:59 +0100164 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
Russell Kingdb002b82007-06-05 19:39:49 +0100166 spin_unlock(&uap->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100167 tty_flip_buffer_push(&uap->port.state->port);
Russell Kingdb002b82007-06-05 19:39:49 +0100168 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Russell King1b0646a2007-04-22 11:55:59 +0100171static void pl010_tx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700173 struct circ_buf *xmit = &uap->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 int count;
175
Russell King1b0646a2007-04-22 11:55:59 +0100176 if (uap->port.x_char) {
177 writel(uap->port.x_char, uap->port.membase + UART01x_DR);
178 uap->port.icount.tx++;
179 uap->port.x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return;
181 }
Russell King1b0646a2007-04-22 11:55:59 +0100182 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
183 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return;
185 }
186
Russell King1b0646a2007-04-22 11:55:59 +0100187 count = uap->port.fifosize >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 do {
Russell King1b0646a2007-04-22 11:55:59 +0100189 writel(xmit->buf[xmit->tail], uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Russell King1b0646a2007-04-22 11:55:59 +0100191 uap->port.icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (uart_circ_empty(xmit))
193 break;
194 } while (--count > 0);
195
196 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Russell King1b0646a2007-04-22 11:55:59 +0100197 uart_write_wakeup(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (uart_circ_empty(xmit))
Russell King1b0646a2007-04-22 11:55:59 +0100200 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Russell King1b0646a2007-04-22 11:55:59 +0100203static void pl010_modem_status(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 unsigned int status, delta;
206
Russell King98639a62006-03-25 21:30:11 +0000207 writel(0, uap->port.membase + UART010_ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Russell King98639a62006-03-25 21:30:11 +0000209 status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 delta = status ^ uap->old_status;
212 uap->old_status = status;
213
214 if (!delta)
215 return;
216
217 if (delta & UART01x_FR_DCD)
218 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
219
220 if (delta & UART01x_FR_DSR)
221 uap->port.icount.dsr++;
222
223 if (delta & UART01x_FR_CTS)
224 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
225
Alan Coxbdc04e32009-09-19 13:13:31 -0700226 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
David Howells7d12e782006-10-05 14:55:46 +0100229static irqreturn_t pl010_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Russell King1b0646a2007-04-22 11:55:59 +0100231 struct uart_amba_port *uap = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
233 int handled = 0;
234
Russell King1b0646a2007-04-22 11:55:59 +0100235 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Russell King1b0646a2007-04-22 11:55:59 +0100237 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (status) {
239 do {
240 if (status & (UART010_IIR_RTIS | UART010_IIR_RIS))
Russell King1b0646a2007-04-22 11:55:59 +0100241 pl010_rx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (status & UART010_IIR_MIS)
Russell King1b0646a2007-04-22 11:55:59 +0100243 pl010_modem_status(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (status & UART010_IIR_TIS)
Russell King1b0646a2007-04-22 11:55:59 +0100245 pl010_tx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 if (pass_counter-- == 0)
248 break;
249
Russell King1b0646a2007-04-22 11:55:59 +0100250 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 } while (status & (UART010_IIR_RTIS | UART010_IIR_RIS |
252 UART010_IIR_TIS));
253 handled = 1;
254 }
255
Russell King1b0646a2007-04-22 11:55:59 +0100256 spin_unlock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 return IRQ_RETVAL(handled);
259}
260
261static unsigned int pl010_tx_empty(struct uart_port *port)
262{
Russell King1b0646a2007-04-22 11:55:59 +0100263 struct uart_amba_port *uap = (struct uart_amba_port *)port;
264 unsigned int status = readb(uap->port.membase + UART01x_FR);
265 return status & UART01x_FR_BUSY ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268static unsigned int pl010_get_mctrl(struct uart_port *port)
269{
Russell King1b0646a2007-04-22 11:55:59 +0100270 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 unsigned int result = 0;
272 unsigned int status;
273
Russell King1b0646a2007-04-22 11:55:59 +0100274 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (status & UART01x_FR_DCD)
276 result |= TIOCM_CAR;
277 if (status & UART01x_FR_DSR)
278 result |= TIOCM_DSR;
279 if (status & UART01x_FR_CTS)
280 result |= TIOCM_CTS;
281
282 return result;
283}
284
285static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl)
286{
287 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Russell Kingfbb18a22006-03-26 23:13:39 +0100289 if (uap->data)
290 uap->data->set_mctrl(uap->dev, uap->port.membase, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293static void pl010_break_ctl(struct uart_port *port, int break_state)
294{
Russell King1b0646a2007-04-22 11:55:59 +0100295 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 unsigned long flags;
297 unsigned int lcr_h;
298
Russell King1b0646a2007-04-22 11:55:59 +0100299 spin_lock_irqsave(&uap->port.lock, flags);
300 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (break_state == -1)
302 lcr_h |= UART01x_LCRH_BRK;
303 else
304 lcr_h &= ~UART01x_LCRH_BRK;
Russell King1b0646a2007-04-22 11:55:59 +0100305 writel(lcr_h, uap->port.membase + UART010_LCRH);
306 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309static int pl010_startup(struct uart_port *port)
310{
311 struct uart_amba_port *uap = (struct uart_amba_port *)port;
312 int retval;
313
314 /*
Russell Kinged519de2007-04-22 12:30:41 +0100315 * Try to enable the clock producer.
316 */
Julia Lawall1c4c4392012-08-26 18:01:01 +0200317 retval = clk_prepare_enable(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100318 if (retval)
Julia Lawall1c4c4392012-08-26 18:01:01 +0200319 goto out;
Russell Kinged519de2007-04-22 12:30:41 +0100320
321 uap->port.uartclk = clk_get_rate(uap->clk);
322
323 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * Allocate the IRQ
325 */
Russell King1b0646a2007-04-22 11:55:59 +0100326 retval = request_irq(uap->port.irq, pl010_int, 0, "uart-pl010", uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (retval)
Russell Kinged519de2007-04-22 12:30:41 +0100328 goto clk_dis;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /*
331 * initialise the old status of the modem signals
332 */
Russell King1b0646a2007-04-22 11:55:59 +0100333 uap->old_status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * Finally, enable interrupts
337 */
Russell King98639a62006-03-25 21:30:11 +0000338 writel(UART01x_CR_UARTEN | UART010_CR_RIE | UART010_CR_RTIE,
Russell King1b0646a2007-04-22 11:55:59 +0100339 uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 return 0;
Russell Kinged519de2007-04-22 12:30:41 +0100342
343 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +0200344 clk_disable_unprepare(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100345 out:
346 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
349static void pl010_shutdown(struct uart_port *port)
350{
Russell King1b0646a2007-04-22 11:55:59 +0100351 struct uart_amba_port *uap = (struct uart_amba_port *)port;
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /*
354 * Free the interrupt
355 */
Russell King1b0646a2007-04-22 11:55:59 +0100356 free_irq(uap->port.irq, uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 /*
359 * disable all interrupts, disable the port
360 */
Russell King1b0646a2007-04-22 11:55:59 +0100361 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 /* disable break condition and fifos */
Russell King1b0646a2007-04-22 11:55:59 +0100364 writel(readb(uap->port.membase + UART010_LCRH) &
Russell King98639a62006-03-25 21:30:11 +0000365 ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN),
Russell King1b0646a2007-04-22 11:55:59 +0100366 uap->port.membase + UART010_LCRH);
Russell Kinged519de2007-04-22 12:30:41 +0100367
368 /*
369 * Shut down the clock producer
370 */
Julia Lawall1c4c4392012-08-26 18:01:01 +0200371 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374static void
Alan Cox606d0992006-12-08 02:38:45 -0800375pl010_set_termios(struct uart_port *port, struct ktermios *termios,
376 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Russell King1b0646a2007-04-22 11:55:59 +0100378 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 unsigned int lcr_h, old_cr;
380 unsigned long flags;
381 unsigned int baud, quot;
382
383 /*
384 * Ask the core to calculate the divisor for us.
385 */
Russell King1b0646a2007-04-22 11:55:59 +0100386 baud = uart_get_baud_rate(port, termios, old, 0, uap->port.uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 quot = uart_get_divisor(port, baud);
388
389 switch (termios->c_cflag & CSIZE) {
390 case CS5:
391 lcr_h = UART01x_LCRH_WLEN_5;
392 break;
393 case CS6:
394 lcr_h = UART01x_LCRH_WLEN_6;
395 break;
396 case CS7:
397 lcr_h = UART01x_LCRH_WLEN_7;
398 break;
399 default: // CS8
400 lcr_h = UART01x_LCRH_WLEN_8;
401 break;
402 }
403 if (termios->c_cflag & CSTOPB)
404 lcr_h |= UART01x_LCRH_STP2;
405 if (termios->c_cflag & PARENB) {
406 lcr_h |= UART01x_LCRH_PEN;
407 if (!(termios->c_cflag & PARODD))
408 lcr_h |= UART01x_LCRH_EPS;
409 }
Russell King1b0646a2007-04-22 11:55:59 +0100410 if (uap->port.fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 lcr_h |= UART01x_LCRH_FEN;
412
Russell King1b0646a2007-04-22 11:55:59 +0100413 spin_lock_irqsave(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /*
416 * Update the per-port timeout.
417 */
418 uart_update_timeout(port, termios->c_cflag, baud);
419
Russell King1b0646a2007-04-22 11:55:59 +0100420 uap->port.read_status_mask = UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (termios->c_iflag & INPCK)
Russell King1b0646a2007-04-22 11:55:59 +0100422 uap->port.read_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (termios->c_iflag & (BRKINT | PARMRK))
Russell King1b0646a2007-04-22 11:55:59 +0100424 uap->port.read_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 /*
427 * Characters to ignore
428 */
Russell King1b0646a2007-04-22 11:55:59 +0100429 uap->port.ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100431 uap->port.ignore_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (termios->c_iflag & IGNBRK) {
Russell King1b0646a2007-04-22 11:55:59 +0100433 uap->port.ignore_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 /*
435 * If we're ignoring parity and break indicators,
436 * ignore overruns too (for real raw support).
437 */
438 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100439 uap->port.ignore_status_mask |= UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
442 /*
443 * Ignore all characters if CREAD is not set.
444 */
445 if ((termios->c_cflag & CREAD) == 0)
Russell King1b0646a2007-04-22 11:55:59 +0100446 uap->port.ignore_status_mask |= UART_DUMMY_RSR_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /* first, disable everything */
Russell King1b0646a2007-04-22 11:55:59 +0100449 old_cr = readb(uap->port.membase + UART010_CR) & ~UART010_CR_MSIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 if (UART_ENABLE_MS(port, termios->c_cflag))
452 old_cr |= UART010_CR_MSIE;
453
Russell King1b0646a2007-04-22 11:55:59 +0100454 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /* Set baud rate */
457 quot -= 1;
Russell King1b0646a2007-04-22 11:55:59 +0100458 writel((quot & 0xf00) >> 8, uap->port.membase + UART010_LCRM);
459 writel(quot & 0xff, uap->port.membase + UART010_LCRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /*
462 * ----------v----------v----------v----------v-----
463 * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L
464 * ----------^----------^----------^----------^-----
465 */
Russell King1b0646a2007-04-22 11:55:59 +0100466 writel(lcr_h, uap->port.membase + UART010_LCRH);
467 writel(old_cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Russell King1b0646a2007-04-22 11:55:59 +0100469 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Mika Westerberg476f7712010-09-04 10:23:23 +0300472static void pl010_set_ldisc(struct uart_port *port, int new)
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800473{
Mika Westerberg476f7712010-09-04 10:23:23 +0300474 if (new == N_PPS) {
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800475 port->flags |= UPF_HARDPPS_CD;
476 pl010_enable_ms(port);
477 } else
478 port->flags &= ~UPF_HARDPPS_CD;
479}
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481static const char *pl010_type(struct uart_port *port)
482{
483 return port->type == PORT_AMBA ? "AMBA" : NULL;
484}
485
486/*
487 * Release the memory region(s) being used by 'port'
488 */
489static void pl010_release_port(struct uart_port *port)
490{
491 release_mem_region(port->mapbase, UART_PORT_SIZE);
492}
493
494/*
495 * Request the memory region(s) being used by 'port'
496 */
497static int pl010_request_port(struct uart_port *port)
498{
499 return request_mem_region(port->mapbase, UART_PORT_SIZE, "uart-pl010")
500 != NULL ? 0 : -EBUSY;
501}
502
503/*
504 * Configure/autoconfigure the port.
505 */
506static void pl010_config_port(struct uart_port *port, int flags)
507{
508 if (flags & UART_CONFIG_TYPE) {
509 port->type = PORT_AMBA;
510 pl010_request_port(port);
511 }
512}
513
514/*
515 * verify the new serial_struct (for TIOCSSERIAL).
516 */
517static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser)
518{
519 int ret = 0;
520 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
521 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -0700522 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 ret = -EINVAL;
524 if (ser->baud_base < 9600)
525 ret = -EINVAL;
526 return ret;
527}
528
529static struct uart_ops amba_pl010_pops = {
530 .tx_empty = pl010_tx_empty,
531 .set_mctrl = pl010_set_mctrl,
532 .get_mctrl = pl010_get_mctrl,
533 .stop_tx = pl010_stop_tx,
534 .start_tx = pl010_start_tx,
535 .stop_rx = pl010_stop_rx,
536 .enable_ms = pl010_enable_ms,
537 .break_ctl = pl010_break_ctl,
538 .startup = pl010_startup,
539 .shutdown = pl010_shutdown,
540 .set_termios = pl010_set_termios,
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800541 .set_ldisc = pl010_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 .type = pl010_type,
543 .release_port = pl010_release_port,
544 .request_port = pl010_request_port,
545 .config_port = pl010_config_port,
546 .verify_port = pl010_verify_port,
547};
548
Russell Kingfbb18a22006-03-26 23:13:39 +0100549static struct uart_amba_port *amba_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551#ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE
552
Russell Kingd3587882006-03-20 20:00:09 +0000553static void pl010_console_putchar(struct uart_port *port, int ch)
554{
Russell King1b0646a2007-04-22 11:55:59 +0100555 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Russell King98639a62006-03-25 21:30:11 +0000556 unsigned int status;
557
558 do {
Russell King1b0646a2007-04-22 11:55:59 +0100559 status = readb(uap->port.membase + UART01x_FR);
Russell Kingd3587882006-03-20 20:00:09 +0000560 barrier();
Russell King98639a62006-03-25 21:30:11 +0000561 } while (!UART_TX_READY(status));
Russell King1b0646a2007-04-22 11:55:59 +0100562 writel(ch, uap->port.membase + UART01x_DR);
Russell Kingd3587882006-03-20 20:00:09 +0000563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565static void
566pl010_console_write(struct console *co, const char *s, unsigned int count)
567{
Russell King1b0646a2007-04-22 11:55:59 +0100568 struct uart_amba_port *uap = amba_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 unsigned int status, old_cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Russell Kinged519de2007-04-22 12:30:41 +0100571 clk_enable(uap->clk);
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /*
574 * First save the CR then disable the interrupts
575 */
Russell King1b0646a2007-04-22 11:55:59 +0100576 old_cr = readb(uap->port.membase + UART010_CR);
577 writel(UART01x_CR_UARTEN, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Russell King1b0646a2007-04-22 11:55:59 +0100579 uart_console_write(&uap->port, s, count, pl010_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 /*
582 * Finally, wait for transmitter to become empty
583 * and restore the TCR
584 */
585 do {
Russell King1b0646a2007-04-22 11:55:59 +0100586 status = readb(uap->port.membase + UART01x_FR);
Russell King98639a62006-03-25 21:30:11 +0000587 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 } while (status & UART01x_FR_BUSY);
Russell King1b0646a2007-04-22 11:55:59 +0100589 writel(old_cr, uap->port.membase + UART010_CR);
Russell Kinged519de2007-04-22 12:30:41 +0100590
591 clk_disable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594static void __init
Russell King1b0646a2007-04-22 11:55:59 +0100595pl010_console_get_options(struct uart_amba_port *uap, int *baud,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int *parity, int *bits)
597{
Russell King1b0646a2007-04-22 11:55:59 +0100598 if (readb(uap->port.membase + UART010_CR) & UART01x_CR_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 unsigned int lcr_h, quot;
Russell King1b0646a2007-04-22 11:55:59 +0100600 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 *parity = 'n';
603 if (lcr_h & UART01x_LCRH_PEN) {
604 if (lcr_h & UART01x_LCRH_EPS)
605 *parity = 'e';
606 else
607 *parity = 'o';
608 }
609
610 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
611 *bits = 7;
612 else
613 *bits = 8;
614
Russell King1b0646a2007-04-22 11:55:59 +0100615 quot = readb(uap->port.membase + UART010_LCRL) |
616 readb(uap->port.membase + UART010_LCRM) << 8;
617 *baud = uap->port.uartclk / (16 * (quot + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619}
620
621static int __init pl010_console_setup(struct console *co, char *options)
622{
Russell King1b0646a2007-04-22 11:55:59 +0100623 struct uart_amba_port *uap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int baud = 38400;
625 int bits = 8;
626 int parity = 'n';
627 int flow = 'n';
Russell King36b8f1e2011-09-22 11:35:09 +0100628 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /*
631 * Check whether an invalid uart number has been specified, and
632 * if so, search for the first available port that does have
633 * console support.
634 */
635 if (co->index >= UART_NR)
636 co->index = 0;
Russell King1b0646a2007-04-22 11:55:59 +0100637 uap = amba_ports[co->index];
638 if (!uap)
Russell Kingd28122a2007-01-22 18:59:42 +0000639 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Russell King36b8f1e2011-09-22 11:35:09 +0100641 ret = clk_prepare(uap->clk);
642 if (ret)
643 return ret;
644
Russell Kinged519de2007-04-22 12:30:41 +0100645 uap->port.uartclk = clk_get_rate(uap->clk);
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (options)
648 uart_parse_options(options, &baud, &parity, &bits, &flow);
649 else
Russell King1b0646a2007-04-22 11:55:59 +0100650 pl010_console_get_options(uap, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Russell King1b0646a2007-04-22 11:55:59 +0100652 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Vincent Sanders2d934862005-09-14 22:36:03 +0100655static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656static struct console amba_console = {
657 .name = "ttyAM",
658 .write = pl010_console_write,
659 .device = uart_console_device,
660 .setup = pl010_console_setup,
661 .flags = CON_PRINTBUFFER,
662 .index = -1,
663 .data = &amba_reg,
664};
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666#define AMBA_CONSOLE &amba_console
667#else
668#define AMBA_CONSOLE NULL
669#endif
670
671static struct uart_driver amba_reg = {
672 .owner = THIS_MODULE,
673 .driver_name = "ttyAM",
674 .dev_name = "ttyAM",
675 .major = SERIAL_AMBA_MAJOR,
676 .minor = SERIAL_AMBA_MINOR,
677 .nr = UART_NR,
678 .cons = AMBA_CONSOLE,
679};
680
Russell Kingaa25afa2011-02-19 15:55:00 +0000681static int pl010_probe(struct amba_device *dev, const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Russell King1b0646a2007-04-22 11:55:59 +0100683 struct uart_amba_port *uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100684 void __iomem *base;
685 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Russell Kingfbb18a22006-03-26 23:13:39 +0100687 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
688 if (amba_ports[i] == NULL)
689 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Russell Kingfbb18a22006-03-26 23:13:39 +0100691 if (i == ARRAY_SIZE(amba_ports)) {
692 ret = -EBUSY;
693 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
695
Russell King1b0646a2007-04-22 11:55:59 +0100696 uap = kzalloc(sizeof(struct uart_amba_port), GFP_KERNEL);
697 if (!uap) {
Russell Kingfbb18a22006-03-26 23:13:39 +0100698 ret = -ENOMEM;
699 goto out;
700 }
701
Linus Walleijdc890c22009-06-07 23:27:31 +0100702 base = ioremap(dev->res.start, resource_size(&dev->res));
Russell Kingfbb18a22006-03-26 23:13:39 +0100703 if (!base) {
704 ret = -ENOMEM;
705 goto free;
706 }
707
Russell Kingee569c42008-11-30 17:38:14 +0000708 uap->clk = clk_get(&dev->dev, NULL);
Russell Kinged519de2007-04-22 12:30:41 +0100709 if (IS_ERR(uap->clk)) {
710 ret = PTR_ERR(uap->clk);
711 goto unmap;
712 }
713
Russell King1b0646a2007-04-22 11:55:59 +0100714 uap->port.dev = &dev->dev;
715 uap->port.mapbase = dev->res.start;
716 uap->port.membase = base;
717 uap->port.iotype = UPIO_MEM;
718 uap->port.irq = dev->irq[0];
Russell King1b0646a2007-04-22 11:55:59 +0100719 uap->port.fifosize = 16;
720 uap->port.ops = &amba_pl010_pops;
721 uap->port.flags = UPF_BOOT_AUTOCONF;
722 uap->port.line = i;
723 uap->dev = dev;
Jingoo Han574de552013-07-30 17:06:57 +0900724 uap->data = dev_get_platdata(&dev->dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100725
Russell King1b0646a2007-04-22 11:55:59 +0100726 amba_ports[i] = uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100727
Russell King1b0646a2007-04-22 11:55:59 +0100728 amba_set_drvdata(dev, uap);
729 ret = uart_add_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100730 if (ret) {
731 amba_set_drvdata(dev, NULL);
732 amba_ports[i] = NULL;
Russell Kinged519de2007-04-22 12:30:41 +0100733 clk_put(uap->clk);
734 unmap:
Russell Kingfbb18a22006-03-26 23:13:39 +0100735 iounmap(base);
736 free:
Russell King1b0646a2007-04-22 11:55:59 +0100737 kfree(uap);
Russell Kingfbb18a22006-03-26 23:13:39 +0100738 }
Russell Kingfbb18a22006-03-26 23:13:39 +0100739 out:
740 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
743static int pl010_remove(struct amba_device *dev)
744{
Russell King1b0646a2007-04-22 11:55:59 +0100745 struct uart_amba_port *uap = amba_get_drvdata(dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100746 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 amba_set_drvdata(dev, NULL);
749
Russell King1b0646a2007-04-22 11:55:59 +0100750 uart_remove_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100751
752 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
Russell King1b0646a2007-04-22 11:55:59 +0100753 if (amba_ports[i] == uap)
Russell Kingfbb18a22006-03-26 23:13:39 +0100754 amba_ports[i] = NULL;
755
Russell King1b0646a2007-04-22 11:55:59 +0100756 iounmap(uap->port.membase);
Russell Kinged519de2007-04-22 12:30:41 +0100757 clk_put(uap->clk);
Russell King1b0646a2007-04-22 11:55:59 +0100758 kfree(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return 0;
760}
761
Pavel Machek0370aff2005-04-16 15:25:35 -0700762static int pl010_suspend(struct amba_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
764 struct uart_amba_port *uap = amba_get_drvdata(dev);
765
766 if (uap)
767 uart_suspend_port(&amba_reg, &uap->port);
768
769 return 0;
770}
771
772static int pl010_resume(struct amba_device *dev)
773{
774 struct uart_amba_port *uap = amba_get_drvdata(dev);
775
776 if (uap)
777 uart_resume_port(&amba_reg, &uap->port);
778
779 return 0;
780}
781
Russell King2c39c9e2010-07-27 08:50:16 +0100782static struct amba_id pl010_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 {
784 .id = 0x00041010,
785 .mask = 0x000fffff,
786 },
787 { 0, 0 },
788};
789
Dave Martina664a112011-10-05 15:15:22 +0100790MODULE_DEVICE_TABLE(amba, pl010_ids);
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792static 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");