blob: 22317dd16474b05b04a5afe9200b455180a6b5af [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{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700119 struct tty_struct *tty = uap->port.state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 unsigned int status, ch, flag, rsr, max_count = 256;
121
Russell King1b0646a2007-04-22 11:55:59 +0100122 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 while (UART_RX_DATA(status) && max_count--) {
Russell King1b0646a2007-04-22 11:55:59 +0100124 ch = readb(uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 flag = TTY_NORMAL;
126
Russell King1b0646a2007-04-22 11:55:59 +0100127 uap->port.icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /*
130 * Note that the error handling code is
131 * out of the main execution path
132 */
Russell King1b0646a2007-04-22 11:55:59 +0100133 rsr = readb(uap->port.membase + UART01x_RSR) | UART_DUMMY_RSR_RX;
Russell King45849282005-04-26 15:29:44 +0100134 if (unlikely(rsr & UART01x_RSR_ANY)) {
Russell King1b0646a2007-04-22 11:55:59 +0100135 writel(0, uap->port.membase + UART01x_ECR);
Lennert Buytenheka4ed06a2006-12-06 20:39:57 -0800136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (rsr & UART01x_RSR_BE) {
138 rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE);
Russell King1b0646a2007-04-22 11:55:59 +0100139 uap->port.icount.brk++;
140 if (uart_handle_break(&uap->port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 goto ignore_char;
142 } else if (rsr & UART01x_RSR_PE)
Russell King1b0646a2007-04-22 11:55:59 +0100143 uap->port.icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 else if (rsr & UART01x_RSR_FE)
Russell King1b0646a2007-04-22 11:55:59 +0100145 uap->port.icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (rsr & UART01x_RSR_OE)
Russell King1b0646a2007-04-22 11:55:59 +0100147 uap->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Russell King1b0646a2007-04-22 11:55:59 +0100149 rsr &= uap->port.read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 if (rsr & UART01x_RSR_BE)
152 flag = TTY_BREAK;
153 else if (rsr & UART01x_RSR_PE)
154 flag = TTY_PARITY;
155 else if (rsr & UART01x_RSR_FE)
156 flag = TTY_FRAME;
157 }
158
Russell King1b0646a2007-04-22 11:55:59 +0100159 if (uart_handle_sysrq_char(&uap->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 goto ignore_char;
161
Russell King1b0646a2007-04-22 11:55:59 +0100162 uart_insert_char(&uap->port, rsr, UART01x_RSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +0100163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 ignore_char:
Russell King1b0646a2007-04-22 11:55:59 +0100165 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
Russell Kingdb002b82007-06-05 19:39:49 +0100167 spin_unlock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 tty_flip_buffer_push(tty);
Russell Kingdb002b82007-06-05 19:39:49 +0100169 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Russell King1b0646a2007-04-22 11:55:59 +0100172static void pl010_tx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700174 struct circ_buf *xmit = &uap->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 int count;
176
Russell King1b0646a2007-04-22 11:55:59 +0100177 if (uap->port.x_char) {
178 writel(uap->port.x_char, uap->port.membase + UART01x_DR);
179 uap->port.icount.tx++;
180 uap->port.x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return;
182 }
Russell King1b0646a2007-04-22 11:55:59 +0100183 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
184 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return;
186 }
187
Russell King1b0646a2007-04-22 11:55:59 +0100188 count = uap->port.fifosize >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 do {
Russell King1b0646a2007-04-22 11:55:59 +0100190 writel(xmit->buf[xmit->tail], uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Russell King1b0646a2007-04-22 11:55:59 +0100192 uap->port.icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (uart_circ_empty(xmit))
194 break;
195 } while (--count > 0);
196
197 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Russell King1b0646a2007-04-22 11:55:59 +0100198 uart_write_wakeup(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (uart_circ_empty(xmit))
Russell King1b0646a2007-04-22 11:55:59 +0100201 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Russell King1b0646a2007-04-22 11:55:59 +0100204static void pl010_modem_status(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 unsigned int status, delta;
207
Russell King98639a62006-03-25 21:30:11 +0000208 writel(0, uap->port.membase + UART010_ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Russell King98639a62006-03-25 21:30:11 +0000210 status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 delta = status ^ uap->old_status;
213 uap->old_status = status;
214
215 if (!delta)
216 return;
217
218 if (delta & UART01x_FR_DCD)
219 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
220
221 if (delta & UART01x_FR_DSR)
222 uap->port.icount.dsr++;
223
224 if (delta & UART01x_FR_CTS)
225 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
226
Alan Coxbdc04e32009-09-19 13:13:31 -0700227 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
David Howells7d12e782006-10-05 14:55:46 +0100230static irqreturn_t pl010_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Russell King1b0646a2007-04-22 11:55:59 +0100232 struct uart_amba_port *uap = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
234 int handled = 0;
235
Russell King1b0646a2007-04-22 11:55:59 +0100236 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Russell King1b0646a2007-04-22 11:55:59 +0100238 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (status) {
240 do {
241 if (status & (UART010_IIR_RTIS | UART010_IIR_RIS))
Russell King1b0646a2007-04-22 11:55:59 +0100242 pl010_rx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (status & UART010_IIR_MIS)
Russell King1b0646a2007-04-22 11:55:59 +0100244 pl010_modem_status(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (status & UART010_IIR_TIS)
Russell King1b0646a2007-04-22 11:55:59 +0100246 pl010_tx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (pass_counter-- == 0)
249 break;
250
Russell King1b0646a2007-04-22 11:55:59 +0100251 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 } while (status & (UART010_IIR_RTIS | UART010_IIR_RIS |
253 UART010_IIR_TIS));
254 handled = 1;
255 }
256
Russell King1b0646a2007-04-22 11:55:59 +0100257 spin_unlock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 return IRQ_RETVAL(handled);
260}
261
262static unsigned int pl010_tx_empty(struct uart_port *port)
263{
Russell King1b0646a2007-04-22 11:55:59 +0100264 struct uart_amba_port *uap = (struct uart_amba_port *)port;
265 unsigned int status = readb(uap->port.membase + UART01x_FR);
266 return status & UART01x_FR_BUSY ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269static unsigned int pl010_get_mctrl(struct uart_port *port)
270{
Russell King1b0646a2007-04-22 11:55:59 +0100271 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 unsigned int result = 0;
273 unsigned int status;
274
Russell King1b0646a2007-04-22 11:55:59 +0100275 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (status & UART01x_FR_DCD)
277 result |= TIOCM_CAR;
278 if (status & UART01x_FR_DSR)
279 result |= TIOCM_DSR;
280 if (status & UART01x_FR_CTS)
281 result |= TIOCM_CTS;
282
283 return result;
284}
285
286static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl)
287{
288 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Russell Kingfbb18a22006-03-26 23:13:39 +0100290 if (uap->data)
291 uap->data->set_mctrl(uap->dev, uap->port.membase, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294static void pl010_break_ctl(struct uart_port *port, int break_state)
295{
Russell King1b0646a2007-04-22 11:55:59 +0100296 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 unsigned long flags;
298 unsigned int lcr_h;
299
Russell King1b0646a2007-04-22 11:55:59 +0100300 spin_lock_irqsave(&uap->port.lock, flags);
301 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (break_state == -1)
303 lcr_h |= UART01x_LCRH_BRK;
304 else
305 lcr_h &= ~UART01x_LCRH_BRK;
Russell King1b0646a2007-04-22 11:55:59 +0100306 writel(lcr_h, uap->port.membase + UART010_LCRH);
307 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310static int pl010_startup(struct uart_port *port)
311{
312 struct uart_amba_port *uap = (struct uart_amba_port *)port;
313 int retval;
314
315 /*
Russell Kinged519de2007-04-22 12:30:41 +0100316 * Try to enable the clock producer.
317 */
Julia Lawall1c4c4392012-08-26 18:01:01 +0200318 retval = clk_prepare_enable(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100319 if (retval)
Julia Lawall1c4c4392012-08-26 18:01:01 +0200320 goto out;
Russell Kinged519de2007-04-22 12:30:41 +0100321
322 uap->port.uartclk = clk_get_rate(uap->clk);
323
324 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * Allocate the IRQ
326 */
Russell King1b0646a2007-04-22 11:55:59 +0100327 retval = request_irq(uap->port.irq, pl010_int, 0, "uart-pl010", uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (retval)
Russell Kinged519de2007-04-22 12:30:41 +0100329 goto clk_dis;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 /*
332 * initialise the old status of the modem signals
333 */
Russell King1b0646a2007-04-22 11:55:59 +0100334 uap->old_status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /*
337 * Finally, enable interrupts
338 */
Russell King98639a62006-03-25 21:30:11 +0000339 writel(UART01x_CR_UARTEN | UART010_CR_RIE | UART010_CR_RTIE,
Russell King1b0646a2007-04-22 11:55:59 +0100340 uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 return 0;
Russell Kinged519de2007-04-22 12:30:41 +0100343
344 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +0200345 clk_disable_unprepare(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100346 out:
347 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350static void pl010_shutdown(struct uart_port *port)
351{
Russell King1b0646a2007-04-22 11:55:59 +0100352 struct uart_amba_port *uap = (struct uart_amba_port *)port;
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /*
355 * Free the interrupt
356 */
Russell King1b0646a2007-04-22 11:55:59 +0100357 free_irq(uap->port.irq, uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /*
360 * disable all interrupts, disable the port
361 */
Russell King1b0646a2007-04-22 11:55:59 +0100362 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /* disable break condition and fifos */
Russell King1b0646a2007-04-22 11:55:59 +0100365 writel(readb(uap->port.membase + UART010_LCRH) &
Russell King98639a62006-03-25 21:30:11 +0000366 ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN),
Russell King1b0646a2007-04-22 11:55:59 +0100367 uap->port.membase + UART010_LCRH);
Russell Kinged519de2007-04-22 12:30:41 +0100368
369 /*
370 * Shut down the clock producer
371 */
Julia Lawall1c4c4392012-08-26 18:01:01 +0200372 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375static void
Alan Cox606d0992006-12-08 02:38:45 -0800376pl010_set_termios(struct uart_port *port, struct ktermios *termios,
377 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Russell King1b0646a2007-04-22 11:55:59 +0100379 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 unsigned int lcr_h, old_cr;
381 unsigned long flags;
382 unsigned int baud, quot;
383
384 /*
385 * Ask the core to calculate the divisor for us.
386 */
Russell King1b0646a2007-04-22 11:55:59 +0100387 baud = uart_get_baud_rate(port, termios, old, 0, uap->port.uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 quot = uart_get_divisor(port, baud);
389
390 switch (termios->c_cflag & CSIZE) {
391 case CS5:
392 lcr_h = UART01x_LCRH_WLEN_5;
393 break;
394 case CS6:
395 lcr_h = UART01x_LCRH_WLEN_6;
396 break;
397 case CS7:
398 lcr_h = UART01x_LCRH_WLEN_7;
399 break;
400 default: // CS8
401 lcr_h = UART01x_LCRH_WLEN_8;
402 break;
403 }
404 if (termios->c_cflag & CSTOPB)
405 lcr_h |= UART01x_LCRH_STP2;
406 if (termios->c_cflag & PARENB) {
407 lcr_h |= UART01x_LCRH_PEN;
408 if (!(termios->c_cflag & PARODD))
409 lcr_h |= UART01x_LCRH_EPS;
410 }
Russell King1b0646a2007-04-22 11:55:59 +0100411 if (uap->port.fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 lcr_h |= UART01x_LCRH_FEN;
413
Russell King1b0646a2007-04-22 11:55:59 +0100414 spin_lock_irqsave(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /*
417 * Update the per-port timeout.
418 */
419 uart_update_timeout(port, termios->c_cflag, baud);
420
Russell King1b0646a2007-04-22 11:55:59 +0100421 uap->port.read_status_mask = UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (termios->c_iflag & INPCK)
Russell King1b0646a2007-04-22 11:55:59 +0100423 uap->port.read_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (termios->c_iflag & (BRKINT | PARMRK))
Russell King1b0646a2007-04-22 11:55:59 +0100425 uap->port.read_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /*
428 * Characters to ignore
429 */
Russell King1b0646a2007-04-22 11:55:59 +0100430 uap->port.ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100432 uap->port.ignore_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (termios->c_iflag & IGNBRK) {
Russell King1b0646a2007-04-22 11:55:59 +0100434 uap->port.ignore_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /*
436 * If we're ignoring parity and break indicators,
437 * ignore overruns too (for real raw support).
438 */
439 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100440 uap->port.ignore_status_mask |= UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 /*
444 * Ignore all characters if CREAD is not set.
445 */
446 if ((termios->c_cflag & CREAD) == 0)
Russell King1b0646a2007-04-22 11:55:59 +0100447 uap->port.ignore_status_mask |= UART_DUMMY_RSR_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 /* first, disable everything */
Russell King1b0646a2007-04-22 11:55:59 +0100450 old_cr = readb(uap->port.membase + UART010_CR) & ~UART010_CR_MSIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 if (UART_ENABLE_MS(port, termios->c_cflag))
453 old_cr |= UART010_CR_MSIE;
454
Russell King1b0646a2007-04-22 11:55:59 +0100455 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 /* Set baud rate */
458 quot -= 1;
Russell King1b0646a2007-04-22 11:55:59 +0100459 writel((quot & 0xf00) >> 8, uap->port.membase + UART010_LCRM);
460 writel(quot & 0xff, uap->port.membase + UART010_LCRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 /*
463 * ----------v----------v----------v----------v-----
464 * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L
465 * ----------^----------^----------^----------^-----
466 */
Russell King1b0646a2007-04-22 11:55:59 +0100467 writel(lcr_h, uap->port.membase + UART010_LCRH);
468 writel(old_cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Russell King1b0646a2007-04-22 11:55:59 +0100470 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Mika Westerberg476f7712010-09-04 10:23:23 +0300473static void pl010_set_ldisc(struct uart_port *port, int new)
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800474{
Mika Westerberg476f7712010-09-04 10:23:23 +0300475 if (new == N_PPS) {
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800476 port->flags |= UPF_HARDPPS_CD;
477 pl010_enable_ms(port);
478 } else
479 port->flags &= ~UPF_HARDPPS_CD;
480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482static const char *pl010_type(struct uart_port *port)
483{
484 return port->type == PORT_AMBA ? "AMBA" : NULL;
485}
486
487/*
488 * Release the memory region(s) being used by 'port'
489 */
490static void pl010_release_port(struct uart_port *port)
491{
492 release_mem_region(port->mapbase, UART_PORT_SIZE);
493}
494
495/*
496 * Request the memory region(s) being used by 'port'
497 */
498static int pl010_request_port(struct uart_port *port)
499{
500 return request_mem_region(port->mapbase, UART_PORT_SIZE, "uart-pl010")
501 != NULL ? 0 : -EBUSY;
502}
503
504/*
505 * Configure/autoconfigure the port.
506 */
507static void pl010_config_port(struct uart_port *port, int flags)
508{
509 if (flags & UART_CONFIG_TYPE) {
510 port->type = PORT_AMBA;
511 pl010_request_port(port);
512 }
513}
514
515/*
516 * verify the new serial_struct (for TIOCSSERIAL).
517 */
518static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser)
519{
520 int ret = 0;
521 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
522 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -0700523 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 ret = -EINVAL;
525 if (ser->baud_base < 9600)
526 ret = -EINVAL;
527 return ret;
528}
529
530static struct uart_ops amba_pl010_pops = {
531 .tx_empty = pl010_tx_empty,
532 .set_mctrl = pl010_set_mctrl,
533 .get_mctrl = pl010_get_mctrl,
534 .stop_tx = pl010_stop_tx,
535 .start_tx = pl010_start_tx,
536 .stop_rx = pl010_stop_rx,
537 .enable_ms = pl010_enable_ms,
538 .break_ctl = pl010_break_ctl,
539 .startup = pl010_startup,
540 .shutdown = pl010_shutdown,
541 .set_termios = pl010_set_termios,
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800542 .set_ldisc = pl010_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .type = pl010_type,
544 .release_port = pl010_release_port,
545 .request_port = pl010_request_port,
546 .config_port = pl010_config_port,
547 .verify_port = pl010_verify_port,
548};
549
Russell Kingfbb18a22006-03-26 23:13:39 +0100550static struct uart_amba_port *amba_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552#ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE
553
Russell Kingd3587882006-03-20 20:00:09 +0000554static void pl010_console_putchar(struct uart_port *port, int ch)
555{
Russell King1b0646a2007-04-22 11:55:59 +0100556 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Russell King98639a62006-03-25 21:30:11 +0000557 unsigned int status;
558
559 do {
Russell King1b0646a2007-04-22 11:55:59 +0100560 status = readb(uap->port.membase + UART01x_FR);
Russell Kingd3587882006-03-20 20:00:09 +0000561 barrier();
Russell King98639a62006-03-25 21:30:11 +0000562 } while (!UART_TX_READY(status));
Russell King1b0646a2007-04-22 11:55:59 +0100563 writel(ch, uap->port.membase + UART01x_DR);
Russell Kingd3587882006-03-20 20:00:09 +0000564}
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566static void
567pl010_console_write(struct console *co, const char *s, unsigned int count)
568{
Russell King1b0646a2007-04-22 11:55:59 +0100569 struct uart_amba_port *uap = amba_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 unsigned int status, old_cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Russell Kinged519de2007-04-22 12:30:41 +0100572 clk_enable(uap->clk);
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /*
575 * First save the CR then disable the interrupts
576 */
Russell King1b0646a2007-04-22 11:55:59 +0100577 old_cr = readb(uap->port.membase + UART010_CR);
578 writel(UART01x_CR_UARTEN, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Russell King1b0646a2007-04-22 11:55:59 +0100580 uart_console_write(&uap->port, s, count, pl010_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 /*
583 * Finally, wait for transmitter to become empty
584 * and restore the TCR
585 */
586 do {
Russell King1b0646a2007-04-22 11:55:59 +0100587 status = readb(uap->port.membase + UART01x_FR);
Russell King98639a62006-03-25 21:30:11 +0000588 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 } while (status & UART01x_FR_BUSY);
Russell King1b0646a2007-04-22 11:55:59 +0100590 writel(old_cr, uap->port.membase + UART010_CR);
Russell Kinged519de2007-04-22 12:30:41 +0100591
592 clk_disable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
595static void __init
Russell King1b0646a2007-04-22 11:55:59 +0100596pl010_console_get_options(struct uart_amba_port *uap, int *baud,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int *parity, int *bits)
598{
Russell King1b0646a2007-04-22 11:55:59 +0100599 if (readb(uap->port.membase + UART010_CR) & UART01x_CR_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 unsigned int lcr_h, quot;
Russell King1b0646a2007-04-22 11:55:59 +0100601 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 *parity = 'n';
604 if (lcr_h & UART01x_LCRH_PEN) {
605 if (lcr_h & UART01x_LCRH_EPS)
606 *parity = 'e';
607 else
608 *parity = 'o';
609 }
610
611 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
612 *bits = 7;
613 else
614 *bits = 8;
615
Russell King1b0646a2007-04-22 11:55:59 +0100616 quot = readb(uap->port.membase + UART010_LCRL) |
617 readb(uap->port.membase + UART010_LCRM) << 8;
618 *baud = uap->port.uartclk / (16 * (quot + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
620}
621
622static int __init pl010_console_setup(struct console *co, char *options)
623{
Russell King1b0646a2007-04-22 11:55:59 +0100624 struct uart_amba_port *uap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 int baud = 38400;
626 int bits = 8;
627 int parity = 'n';
628 int flow = 'n';
Russell King36b8f1e2011-09-22 11:35:09 +0100629 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 /*
632 * Check whether an invalid uart number has been specified, and
633 * if so, search for the first available port that does have
634 * console support.
635 */
636 if (co->index >= UART_NR)
637 co->index = 0;
Russell King1b0646a2007-04-22 11:55:59 +0100638 uap = amba_ports[co->index];
639 if (!uap)
Russell Kingd28122a2007-01-22 18:59:42 +0000640 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Russell King36b8f1e2011-09-22 11:35:09 +0100642 ret = clk_prepare(uap->clk);
643 if (ret)
644 return ret;
645
Russell Kinged519de2007-04-22 12:30:41 +0100646 uap->port.uartclk = clk_get_rate(uap->clk);
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (options)
649 uart_parse_options(options, &baud, &parity, &bits, &flow);
650 else
Russell King1b0646a2007-04-22 11:55:59 +0100651 pl010_console_get_options(uap, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Russell King1b0646a2007-04-22 11:55:59 +0100653 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Vincent Sanders2d934862005-09-14 22:36:03 +0100656static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657static struct console amba_console = {
658 .name = "ttyAM",
659 .write = pl010_console_write,
660 .device = uart_console_device,
661 .setup = pl010_console_setup,
662 .flags = CON_PRINTBUFFER,
663 .index = -1,
664 .data = &amba_reg,
665};
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#define AMBA_CONSOLE &amba_console
668#else
669#define AMBA_CONSOLE NULL
670#endif
671
672static struct uart_driver amba_reg = {
673 .owner = THIS_MODULE,
674 .driver_name = "ttyAM",
675 .dev_name = "ttyAM",
676 .major = SERIAL_AMBA_MAJOR,
677 .minor = SERIAL_AMBA_MINOR,
678 .nr = UART_NR,
679 .cons = AMBA_CONSOLE,
680};
681
Russell Kingaa25afa2011-02-19 15:55:00 +0000682static int pl010_probe(struct amba_device *dev, const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Russell King1b0646a2007-04-22 11:55:59 +0100684 struct uart_amba_port *uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100685 void __iomem *base;
686 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Russell Kingfbb18a22006-03-26 23:13:39 +0100688 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
689 if (amba_ports[i] == NULL)
690 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Russell Kingfbb18a22006-03-26 23:13:39 +0100692 if (i == ARRAY_SIZE(amba_ports)) {
693 ret = -EBUSY;
694 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
Russell King1b0646a2007-04-22 11:55:59 +0100697 uap = kzalloc(sizeof(struct uart_amba_port), GFP_KERNEL);
698 if (!uap) {
Russell Kingfbb18a22006-03-26 23:13:39 +0100699 ret = -ENOMEM;
700 goto out;
701 }
702
Linus Walleijdc890c22009-06-07 23:27:31 +0100703 base = ioremap(dev->res.start, resource_size(&dev->res));
Russell Kingfbb18a22006-03-26 23:13:39 +0100704 if (!base) {
705 ret = -ENOMEM;
706 goto free;
707 }
708
Russell Kingee569c42008-11-30 17:38:14 +0000709 uap->clk = clk_get(&dev->dev, NULL);
Russell Kinged519de2007-04-22 12:30:41 +0100710 if (IS_ERR(uap->clk)) {
711 ret = PTR_ERR(uap->clk);
712 goto unmap;
713 }
714
Russell King1b0646a2007-04-22 11:55:59 +0100715 uap->port.dev = &dev->dev;
716 uap->port.mapbase = dev->res.start;
717 uap->port.membase = base;
718 uap->port.iotype = UPIO_MEM;
719 uap->port.irq = dev->irq[0];
Russell King1b0646a2007-04-22 11:55:59 +0100720 uap->port.fifosize = 16;
721 uap->port.ops = &amba_pl010_pops;
722 uap->port.flags = UPF_BOOT_AUTOCONF;
723 uap->port.line = i;
724 uap->dev = dev;
725 uap->data = dev->dev.platform_data;
Russell Kingfbb18a22006-03-26 23:13:39 +0100726
Russell King1b0646a2007-04-22 11:55:59 +0100727 amba_ports[i] = uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100728
Russell King1b0646a2007-04-22 11:55:59 +0100729 amba_set_drvdata(dev, uap);
730 ret = uart_add_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100731 if (ret) {
732 amba_set_drvdata(dev, NULL);
733 amba_ports[i] = NULL;
Russell Kinged519de2007-04-22 12:30:41 +0100734 clk_put(uap->clk);
735 unmap:
Russell Kingfbb18a22006-03-26 23:13:39 +0100736 iounmap(base);
737 free:
Russell King1b0646a2007-04-22 11:55:59 +0100738 kfree(uap);
Russell Kingfbb18a22006-03-26 23:13:39 +0100739 }
Russell Kingfbb18a22006-03-26 23:13:39 +0100740 out:
741 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744static int pl010_remove(struct amba_device *dev)
745{
Russell King1b0646a2007-04-22 11:55:59 +0100746 struct uart_amba_port *uap = amba_get_drvdata(dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100747 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 amba_set_drvdata(dev, NULL);
750
Russell King1b0646a2007-04-22 11:55:59 +0100751 uart_remove_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100752
753 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
Russell King1b0646a2007-04-22 11:55:59 +0100754 if (amba_ports[i] == uap)
Russell Kingfbb18a22006-03-26 23:13:39 +0100755 amba_ports[i] = NULL;
756
Russell King1b0646a2007-04-22 11:55:59 +0100757 iounmap(uap->port.membase);
Russell Kinged519de2007-04-22 12:30:41 +0100758 clk_put(uap->clk);
Russell King1b0646a2007-04-22 11:55:59 +0100759 kfree(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return 0;
761}
762
Pavel Machek0370aff2005-04-16 15:25:35 -0700763static int pl010_suspend(struct amba_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
765 struct uart_amba_port *uap = amba_get_drvdata(dev);
766
767 if (uap)
768 uart_suspend_port(&amba_reg, &uap->port);
769
770 return 0;
771}
772
773static int pl010_resume(struct amba_device *dev)
774{
775 struct uart_amba_port *uap = amba_get_drvdata(dev);
776
777 if (uap)
778 uart_resume_port(&amba_reg, &uap->port);
779
780 return 0;
781}
782
Russell King2c39c9e2010-07-27 08:50:16 +0100783static struct amba_id pl010_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 {
785 .id = 0x00041010,
786 .mask = 0x000fffff,
787 },
788 { 0, 0 },
789};
790
Dave Martina664a112011-10-05 15:15:22 +0100791MODULE_DEVICE_TABLE(amba, pl010_ids);
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793static 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");