blob: 2064d31d0c8b3067ff23c161daf6cd4e9797f906 [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>
Tushar Behera44acd262014-06-26 15:35:36 +053049#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Lennert Buytenhek4faf4e02006-06-20 19:24:07 +010051#define UART_NR 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#define SERIAL_AMBA_MAJOR 204
54#define SERIAL_AMBA_MINOR 16
55#define SERIAL_AMBA_NR UART_NR
56
57#define AMBA_ISR_PASS_LIMIT 256
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define UART_RX_DATA(s) (((s) & UART01x_FR_RXFE) == 0)
60#define UART_TX_READY(s) (((s) & UART01x_FR_TXFF) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Russell Kingfbb18a22006-03-26 23:13:39 +010062#define UART_DUMMY_RSR_RX 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define UART_PORT_SIZE 64
64
65/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * We wrap our port structure around the generic uart_port.
67 */
68struct uart_amba_port {
69 struct uart_port port;
Russell Kinged519de2007-04-22 12:30:41 +010070 struct clk *clk;
Russell Kingfbb18a22006-03-26 23:13:39 +010071 struct amba_device *dev;
72 struct amba_pl010_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned int old_status;
74};
75
Russell Kingb129a8c2005-08-31 10:12:14 +010076static void pl010_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Russell King1b0646a2007-04-22 11:55:59 +010078 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 unsigned int cr;
80
Russell King1b0646a2007-04-22 11:55:59 +010081 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 cr &= ~UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010083 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Russell Kingb129a8c2005-08-31 10:12:14 +010086static void pl010_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Russell King1b0646a2007-04-22 11:55:59 +010088 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 unsigned int cr;
90
Russell King1b0646a2007-04-22 11:55:59 +010091 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 cr |= UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010093 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96static void pl010_stop_rx(struct uart_port *port)
97{
Russell King1b0646a2007-04-22 11:55:59 +010098 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 unsigned int cr;
100
Russell King1b0646a2007-04-22 11:55:59 +0100101 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 cr &= ~(UART010_CR_RIE | UART010_CR_RTIE);
Russell King1b0646a2007-04-22 11:55:59 +0100103 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106static void pl010_enable_ms(struct uart_port *port)
107{
Russell King1b0646a2007-04-22 11:55:59 +0100108 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 unsigned int cr;
110
Russell King1b0646a2007-04-22 11:55:59 +0100111 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 cr |= UART010_CR_MSIE;
Russell King1b0646a2007-04-22 11:55:59 +0100113 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Russell King1b0646a2007-04-22 11:55:59 +0100116static void pl010_rx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unsigned int status, ch, flag, rsr, max_count = 256;
119
Russell King1b0646a2007-04-22 11:55:59 +0100120 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 while (UART_RX_DATA(status) && max_count--) {
Russell King1b0646a2007-04-22 11:55:59 +0100122 ch = readb(uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 flag = TTY_NORMAL;
124
Russell King1b0646a2007-04-22 11:55:59 +0100125 uap->port.icount.rx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /*
128 * Note that the error handling code is
129 * out of the main execution path
130 */
Russell King1b0646a2007-04-22 11:55:59 +0100131 rsr = readb(uap->port.membase + UART01x_RSR) | UART_DUMMY_RSR_RX;
Russell King45849282005-04-26 15:29:44 +0100132 if (unlikely(rsr & UART01x_RSR_ANY)) {
Russell King1b0646a2007-04-22 11:55:59 +0100133 writel(0, uap->port.membase + UART01x_ECR);
Lennert Buytenheka4ed06a2006-12-06 20:39:57 -0800134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (rsr & UART01x_RSR_BE) {
136 rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE);
Russell King1b0646a2007-04-22 11:55:59 +0100137 uap->port.icount.brk++;
138 if (uart_handle_break(&uap->port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 goto ignore_char;
140 } else if (rsr & UART01x_RSR_PE)
Russell King1b0646a2007-04-22 11:55:59 +0100141 uap->port.icount.parity++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 else if (rsr & UART01x_RSR_FE)
Russell King1b0646a2007-04-22 11:55:59 +0100143 uap->port.icount.frame++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (rsr & UART01x_RSR_OE)
Russell King1b0646a2007-04-22 11:55:59 +0100145 uap->port.icount.overrun++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Russell King1b0646a2007-04-22 11:55:59 +0100147 rsr &= uap->port.read_status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 if (rsr & UART01x_RSR_BE)
150 flag = TTY_BREAK;
151 else if (rsr & UART01x_RSR_PE)
152 flag = TTY_PARITY;
153 else if (rsr & UART01x_RSR_FE)
154 flag = TTY_FRAME;
155 }
156
Russell King1b0646a2007-04-22 11:55:59 +0100157 if (uart_handle_sysrq_char(&uap->port, ch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 goto ignore_char;
159
Russell King1b0646a2007-04-22 11:55:59 +0100160 uart_insert_char(&uap->port, rsr, UART01x_RSR_OE, ch, flag);
Russell King05ab3012005-05-09 23:21:59 +0100161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ignore_char:
Russell King1b0646a2007-04-22 11:55:59 +0100163 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
Russell Kingdb002b82007-06-05 19:39:49 +0100165 spin_unlock(&uap->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100166 tty_flip_buffer_push(&uap->port.state->port);
Russell Kingdb002b82007-06-05 19:39:49 +0100167 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Russell King1b0646a2007-04-22 11:55:59 +0100170static void pl010_tx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700172 struct circ_buf *xmit = &uap->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 int count;
174
Russell King1b0646a2007-04-22 11:55:59 +0100175 if (uap->port.x_char) {
176 writel(uap->port.x_char, uap->port.membase + UART01x_DR);
177 uap->port.icount.tx++;
178 uap->port.x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return;
180 }
Russell King1b0646a2007-04-22 11:55:59 +0100181 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
182 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return;
184 }
185
Russell King1b0646a2007-04-22 11:55:59 +0100186 count = uap->port.fifosize >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 do {
Russell King1b0646a2007-04-22 11:55:59 +0100188 writel(xmit->buf[xmit->tail], uap->port.membase + UART01x_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Russell King1b0646a2007-04-22 11:55:59 +0100190 uap->port.icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (uart_circ_empty(xmit))
192 break;
193 } while (--count > 0);
194
195 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
Russell King1b0646a2007-04-22 11:55:59 +0100196 uart_write_wakeup(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 if (uart_circ_empty(xmit))
Russell King1b0646a2007-04-22 11:55:59 +0100199 pl010_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Russell King1b0646a2007-04-22 11:55:59 +0100202static void pl010_modem_status(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 unsigned int status, delta;
205
Russell King98639a62006-03-25 21:30:11 +0000206 writel(0, uap->port.membase + UART010_ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Russell King98639a62006-03-25 21:30:11 +0000208 status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 delta = status ^ uap->old_status;
211 uap->old_status = status;
212
213 if (!delta)
214 return;
215
216 if (delta & UART01x_FR_DCD)
217 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
218
219 if (delta & UART01x_FR_DSR)
220 uap->port.icount.dsr++;
221
222 if (delta & UART01x_FR_CTS)
223 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
224
Alan Coxbdc04e32009-09-19 13:13:31 -0700225 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
David Howells7d12e782006-10-05 14:55:46 +0100228static irqreturn_t pl010_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Russell King1b0646a2007-04-22 11:55:59 +0100230 struct uart_amba_port *uap = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
232 int handled = 0;
233
Russell King1b0646a2007-04-22 11:55:59 +0100234 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Russell King1b0646a2007-04-22 11:55:59 +0100236 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (status) {
238 do {
239 if (status & (UART010_IIR_RTIS | UART010_IIR_RIS))
Russell King1b0646a2007-04-22 11:55:59 +0100240 pl010_rx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (status & UART010_IIR_MIS)
Russell King1b0646a2007-04-22 11:55:59 +0100242 pl010_modem_status(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (status & UART010_IIR_TIS)
Russell King1b0646a2007-04-22 11:55:59 +0100244 pl010_tx_chars(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 if (pass_counter-- == 0)
247 break;
248
Russell King1b0646a2007-04-22 11:55:59 +0100249 status = readb(uap->port.membase + UART010_IIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 } while (status & (UART010_IIR_RTIS | UART010_IIR_RIS |
251 UART010_IIR_TIS));
252 handled = 1;
253 }
254
Russell King1b0646a2007-04-22 11:55:59 +0100255 spin_unlock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 return IRQ_RETVAL(handled);
258}
259
260static unsigned int pl010_tx_empty(struct uart_port *port)
261{
Russell King1b0646a2007-04-22 11:55:59 +0100262 struct uart_amba_port *uap = (struct uart_amba_port *)port;
263 unsigned int status = readb(uap->port.membase + UART01x_FR);
264 return status & UART01x_FR_BUSY ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267static unsigned int pl010_get_mctrl(struct uart_port *port)
268{
Russell King1b0646a2007-04-22 11:55:59 +0100269 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 unsigned int result = 0;
271 unsigned int status;
272
Russell King1b0646a2007-04-22 11:55:59 +0100273 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (status & UART01x_FR_DCD)
275 result |= TIOCM_CAR;
276 if (status & UART01x_FR_DSR)
277 result |= TIOCM_DSR;
278 if (status & UART01x_FR_CTS)
279 result |= TIOCM_CTS;
280
281 return result;
282}
283
284static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl)
285{
286 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Russell Kingfbb18a22006-03-26 23:13:39 +0100288 if (uap->data)
289 uap->data->set_mctrl(uap->dev, uap->port.membase, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292static void pl010_break_ctl(struct uart_port *port, int break_state)
293{
Russell King1b0646a2007-04-22 11:55:59 +0100294 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 unsigned long flags;
296 unsigned int lcr_h;
297
Russell King1b0646a2007-04-22 11:55:59 +0100298 spin_lock_irqsave(&uap->port.lock, flags);
299 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (break_state == -1)
301 lcr_h |= UART01x_LCRH_BRK;
302 else
303 lcr_h &= ~UART01x_LCRH_BRK;
Russell King1b0646a2007-04-22 11:55:59 +0100304 writel(lcr_h, uap->port.membase + UART010_LCRH);
305 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308static int pl010_startup(struct uart_port *port)
309{
310 struct uart_amba_port *uap = (struct uart_amba_port *)port;
311 int retval;
312
313 /*
Russell Kinged519de2007-04-22 12:30:41 +0100314 * Try to enable the clock producer.
315 */
Julia Lawall1c4c4392012-08-26 18:01:01 +0200316 retval = clk_prepare_enable(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100317 if (retval)
Julia Lawall1c4c4392012-08-26 18:01:01 +0200318 goto out;
Russell Kinged519de2007-04-22 12:30:41 +0100319
320 uap->port.uartclk = clk_get_rate(uap->clk);
321
322 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * Allocate the IRQ
324 */
Russell King1b0646a2007-04-22 11:55:59 +0100325 retval = request_irq(uap->port.irq, pl010_int, 0, "uart-pl010", uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (retval)
Russell Kinged519de2007-04-22 12:30:41 +0100327 goto clk_dis;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 /*
330 * initialise the old status of the modem signals
331 */
Russell King1b0646a2007-04-22 11:55:59 +0100332 uap->old_status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /*
335 * Finally, enable interrupts
336 */
Russell King98639a62006-03-25 21:30:11 +0000337 writel(UART01x_CR_UARTEN | UART010_CR_RIE | UART010_CR_RTIE,
Russell King1b0646a2007-04-22 11:55:59 +0100338 uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 return 0;
Russell Kinged519de2007-04-22 12:30:41 +0100341
342 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +0200343 clk_disable_unprepare(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100344 out:
345 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348static void pl010_shutdown(struct uart_port *port)
349{
Russell King1b0646a2007-04-22 11:55:59 +0100350 struct uart_amba_port *uap = (struct uart_amba_port *)port;
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
353 * Free the interrupt
354 */
Russell King1b0646a2007-04-22 11:55:59 +0100355 free_irq(uap->port.irq, uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /*
358 * disable all interrupts, disable the port
359 */
Russell King1b0646a2007-04-22 11:55:59 +0100360 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 /* disable break condition and fifos */
Russell King1b0646a2007-04-22 11:55:59 +0100363 writel(readb(uap->port.membase + UART010_LCRH) &
Russell King98639a62006-03-25 21:30:11 +0000364 ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN),
Russell King1b0646a2007-04-22 11:55:59 +0100365 uap->port.membase + UART010_LCRH);
Russell Kinged519de2007-04-22 12:30:41 +0100366
367 /*
368 * Shut down the clock producer
369 */
Julia Lawall1c4c4392012-08-26 18:01:01 +0200370 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
373static void
Alan Cox606d0992006-12-08 02:38:45 -0800374pl010_set_termios(struct uart_port *port, struct ktermios *termios,
375 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Russell King1b0646a2007-04-22 11:55:59 +0100377 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 unsigned int lcr_h, old_cr;
379 unsigned long flags;
380 unsigned int baud, quot;
381
382 /*
383 * Ask the core to calculate the divisor for us.
384 */
Russell King1b0646a2007-04-22 11:55:59 +0100385 baud = uart_get_baud_rate(port, termios, old, 0, uap->port.uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 quot = uart_get_divisor(port, baud);
387
388 switch (termios->c_cflag & CSIZE) {
389 case CS5:
390 lcr_h = UART01x_LCRH_WLEN_5;
391 break;
392 case CS6:
393 lcr_h = UART01x_LCRH_WLEN_6;
394 break;
395 case CS7:
396 lcr_h = UART01x_LCRH_WLEN_7;
397 break;
398 default: // CS8
399 lcr_h = UART01x_LCRH_WLEN_8;
400 break;
401 }
402 if (termios->c_cflag & CSTOPB)
403 lcr_h |= UART01x_LCRH_STP2;
404 if (termios->c_cflag & PARENB) {
405 lcr_h |= UART01x_LCRH_PEN;
406 if (!(termios->c_cflag & PARODD))
407 lcr_h |= UART01x_LCRH_EPS;
408 }
Russell King1b0646a2007-04-22 11:55:59 +0100409 if (uap->port.fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 lcr_h |= UART01x_LCRH_FEN;
411
Russell King1b0646a2007-04-22 11:55:59 +0100412 spin_lock_irqsave(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /*
415 * Update the per-port timeout.
416 */
417 uart_update_timeout(port, termios->c_cflag, baud);
418
Russell King1b0646a2007-04-22 11:55:59 +0100419 uap->port.read_status_mask = UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (termios->c_iflag & INPCK)
Russell King1b0646a2007-04-22 11:55:59 +0100421 uap->port.read_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Peter Hurleyef8b9dd2014-06-16 08:10:41 -0400422 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Russell King1b0646a2007-04-22 11:55:59 +0100423 uap->port.read_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 /*
426 * Characters to ignore
427 */
Russell King1b0646a2007-04-22 11:55:59 +0100428 uap->port.ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100430 uap->port.ignore_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (termios->c_iflag & IGNBRK) {
Russell King1b0646a2007-04-22 11:55:59 +0100432 uap->port.ignore_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /*
434 * If we're ignoring parity and break indicators,
435 * ignore overruns too (for real raw support).
436 */
437 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100438 uap->port.ignore_status_mask |= UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
441 /*
442 * Ignore all characters if CREAD is not set.
443 */
444 if ((termios->c_cflag & CREAD) == 0)
Russell King1b0646a2007-04-22 11:55:59 +0100445 uap->port.ignore_status_mask |= UART_DUMMY_RSR_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /* first, disable everything */
Russell King1b0646a2007-04-22 11:55:59 +0100448 old_cr = readb(uap->port.membase + UART010_CR) & ~UART010_CR_MSIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 if (UART_ENABLE_MS(port, termios->c_cflag))
451 old_cr |= UART010_CR_MSIE;
452
Russell King1b0646a2007-04-22 11:55:59 +0100453 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 /* Set baud rate */
456 quot -= 1;
Russell King1b0646a2007-04-22 11:55:59 +0100457 writel((quot & 0xf00) >> 8, uap->port.membase + UART010_LCRM);
458 writel(quot & 0xff, uap->port.membase + UART010_LCRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 /*
461 * ----------v----------v----------v----------v-----
462 * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L
463 * ----------^----------^----------^----------^-----
464 */
Russell King1b0646a2007-04-22 11:55:59 +0100465 writel(lcr_h, uap->port.membase + UART010_LCRH);
466 writel(old_cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Russell King1b0646a2007-04-22 11:55:59 +0100468 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Mika Westerberg476f7712010-09-04 10:23:23 +0300471static void pl010_set_ldisc(struct uart_port *port, int new)
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800472{
Mika Westerberg476f7712010-09-04 10:23:23 +0300473 if (new == N_PPS) {
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800474 port->flags |= UPF_HARDPPS_CD;
475 pl010_enable_ms(port);
476 } else
477 port->flags &= ~UPF_HARDPPS_CD;
478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480static const char *pl010_type(struct uart_port *port)
481{
482 return port->type == PORT_AMBA ? "AMBA" : NULL;
483}
484
485/*
486 * Release the memory region(s) being used by 'port'
487 */
488static void pl010_release_port(struct uart_port *port)
489{
490 release_mem_region(port->mapbase, UART_PORT_SIZE);
491}
492
493/*
494 * Request the memory region(s) being used by 'port'
495 */
496static int pl010_request_port(struct uart_port *port)
497{
498 return request_mem_region(port->mapbase, UART_PORT_SIZE, "uart-pl010")
499 != NULL ? 0 : -EBUSY;
500}
501
502/*
503 * Configure/autoconfigure the port.
504 */
505static void pl010_config_port(struct uart_port *port, int flags)
506{
507 if (flags & UART_CONFIG_TYPE) {
508 port->type = PORT_AMBA;
509 pl010_request_port(port);
510 }
511}
512
513/*
514 * verify the new serial_struct (for TIOCSSERIAL).
515 */
516static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser)
517{
518 int ret = 0;
519 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
520 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -0700521 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 ret = -EINVAL;
523 if (ser->baud_base < 9600)
524 ret = -EINVAL;
525 return ret;
526}
527
528static struct uart_ops amba_pl010_pops = {
529 .tx_empty = pl010_tx_empty,
530 .set_mctrl = pl010_set_mctrl,
531 .get_mctrl = pl010_get_mctrl,
532 .stop_tx = pl010_stop_tx,
533 .start_tx = pl010_start_tx,
534 .stop_rx = pl010_stop_rx,
535 .enable_ms = pl010_enable_ms,
536 .break_ctl = pl010_break_ctl,
537 .startup = pl010_startup,
538 .shutdown = pl010_shutdown,
539 .set_termios = pl010_set_termios,
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800540 .set_ldisc = pl010_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 .type = pl010_type,
542 .release_port = pl010_release_port,
543 .request_port = pl010_request_port,
544 .config_port = pl010_config_port,
545 .verify_port = pl010_verify_port,
546};
547
Russell Kingfbb18a22006-03-26 23:13:39 +0100548static struct uart_amba_port *amba_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550#ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE
551
Russell Kingd3587882006-03-20 20:00:09 +0000552static void pl010_console_putchar(struct uart_port *port, int ch)
553{
Russell King1b0646a2007-04-22 11:55:59 +0100554 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Russell King98639a62006-03-25 21:30:11 +0000555 unsigned int status;
556
557 do {
Russell King1b0646a2007-04-22 11:55:59 +0100558 status = readb(uap->port.membase + UART01x_FR);
Russell Kingd3587882006-03-20 20:00:09 +0000559 barrier();
Russell King98639a62006-03-25 21:30:11 +0000560 } while (!UART_TX_READY(status));
Russell King1b0646a2007-04-22 11:55:59 +0100561 writel(ch, uap->port.membase + UART01x_DR);
Russell Kingd3587882006-03-20 20:00:09 +0000562}
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564static void
565pl010_console_write(struct console *co, const char *s, unsigned int count)
566{
Russell King1b0646a2007-04-22 11:55:59 +0100567 struct uart_amba_port *uap = amba_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 unsigned int status, old_cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Russell Kinged519de2007-04-22 12:30:41 +0100570 clk_enable(uap->clk);
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /*
573 * First save the CR then disable the interrupts
574 */
Russell King1b0646a2007-04-22 11:55:59 +0100575 old_cr = readb(uap->port.membase + UART010_CR);
576 writel(UART01x_CR_UARTEN, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Russell King1b0646a2007-04-22 11:55:59 +0100578 uart_console_write(&uap->port, s, count, pl010_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /*
581 * Finally, wait for transmitter to become empty
582 * and restore the TCR
583 */
584 do {
Russell King1b0646a2007-04-22 11:55:59 +0100585 status = readb(uap->port.membase + UART01x_FR);
Russell King98639a62006-03-25 21:30:11 +0000586 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 } while (status & UART01x_FR_BUSY);
Russell King1b0646a2007-04-22 11:55:59 +0100588 writel(old_cr, uap->port.membase + UART010_CR);
Russell Kinged519de2007-04-22 12:30:41 +0100589
590 clk_disable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593static void __init
Russell King1b0646a2007-04-22 11:55:59 +0100594pl010_console_get_options(struct uart_amba_port *uap, int *baud,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 int *parity, int *bits)
596{
Russell King1b0646a2007-04-22 11:55:59 +0100597 if (readb(uap->port.membase + UART010_CR) & UART01x_CR_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 unsigned int lcr_h, quot;
Russell King1b0646a2007-04-22 11:55:59 +0100599 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 *parity = 'n';
602 if (lcr_h & UART01x_LCRH_PEN) {
603 if (lcr_h & UART01x_LCRH_EPS)
604 *parity = 'e';
605 else
606 *parity = 'o';
607 }
608
609 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
610 *bits = 7;
611 else
612 *bits = 8;
613
Russell King1b0646a2007-04-22 11:55:59 +0100614 quot = readb(uap->port.membase + UART010_LCRL) |
615 readb(uap->port.membase + UART010_LCRM) << 8;
616 *baud = uap->port.uartclk / (16 * (quot + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618}
619
620static int __init pl010_console_setup(struct console *co, char *options)
621{
Russell King1b0646a2007-04-22 11:55:59 +0100622 struct uart_amba_port *uap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 int baud = 38400;
624 int bits = 8;
625 int parity = 'n';
626 int flow = 'n';
Russell King36b8f1e2011-09-22 11:35:09 +0100627 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /*
630 * Check whether an invalid uart number has been specified, and
631 * if so, search for the first available port that does have
632 * console support.
633 */
634 if (co->index >= UART_NR)
635 co->index = 0;
Russell King1b0646a2007-04-22 11:55:59 +0100636 uap = amba_ports[co->index];
637 if (!uap)
Russell Kingd28122a2007-01-22 18:59:42 +0000638 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Russell King36b8f1e2011-09-22 11:35:09 +0100640 ret = clk_prepare(uap->clk);
641 if (ret)
642 return ret;
643
Russell Kinged519de2007-04-22 12:30:41 +0100644 uap->port.uartclk = clk_get_rate(uap->clk);
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (options)
647 uart_parse_options(options, &baud, &parity, &bits, &flow);
648 else
Russell King1b0646a2007-04-22 11:55:59 +0100649 pl010_console_get_options(uap, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Russell King1b0646a2007-04-22 11:55:59 +0100651 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Vincent Sanders2d934862005-09-14 22:36:03 +0100654static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655static struct console amba_console = {
656 .name = "ttyAM",
657 .write = pl010_console_write,
658 .device = uart_console_device,
659 .setup = pl010_console_setup,
660 .flags = CON_PRINTBUFFER,
661 .index = -1,
662 .data = &amba_reg,
663};
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#define AMBA_CONSOLE &amba_console
666#else
667#define AMBA_CONSOLE NULL
668#endif
669
670static struct uart_driver amba_reg = {
671 .owner = THIS_MODULE,
672 .driver_name = "ttyAM",
673 .dev_name = "ttyAM",
674 .major = SERIAL_AMBA_MAJOR,
675 .minor = SERIAL_AMBA_MINOR,
676 .nr = UART_NR,
677 .cons = AMBA_CONSOLE,
678};
679
Russell Kingaa25afa2011-02-19 15:55:00 +0000680static int pl010_probe(struct amba_device *dev, const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Russell King1b0646a2007-04-22 11:55:59 +0100682 struct uart_amba_port *uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100683 void __iomem *base;
684 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Russell Kingfbb18a22006-03-26 23:13:39 +0100686 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
687 if (amba_ports[i] == NULL)
688 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Tushar Behera44acd262014-06-26 15:35:36 +0530690 if (i == ARRAY_SIZE(amba_ports))
691 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Tushar Behera44acd262014-06-26 15:35:36 +0530693 uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
694 GFP_KERNEL);
695 if (!uap)
696 return -ENOMEM;
Russell Kingfbb18a22006-03-26 23:13:39 +0100697
Tushar Behera44acd262014-06-26 15:35:36 +0530698 base = devm_ioremap(&dev->dev, dev->res.start,
699 resource_size(&dev->res));
700 if (!base)
701 return -ENOMEM;
Russell Kingfbb18a22006-03-26 23:13:39 +0100702
Tushar Behera44acd262014-06-26 15:35:36 +0530703 uap->clk = devm_clk_get(&dev->dev, NULL);
704 if (IS_ERR(uap->clk))
705 return PTR_ERR(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100706
Russell King1b0646a2007-04-22 11:55:59 +0100707 uap->port.dev = &dev->dev;
708 uap->port.mapbase = dev->res.start;
709 uap->port.membase = base;
710 uap->port.iotype = UPIO_MEM;
711 uap->port.irq = dev->irq[0];
Russell King1b0646a2007-04-22 11:55:59 +0100712 uap->port.fifosize = 16;
713 uap->port.ops = &amba_pl010_pops;
714 uap->port.flags = UPF_BOOT_AUTOCONF;
715 uap->port.line = i;
716 uap->dev = dev;
Jingoo Han574de552013-07-30 17:06:57 +0900717 uap->data = dev_get_platdata(&dev->dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100718
Russell King1b0646a2007-04-22 11:55:59 +0100719 amba_ports[i] = uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100720
Russell King1b0646a2007-04-22 11:55:59 +0100721 amba_set_drvdata(dev, uap);
722 ret = uart_add_one_port(&amba_reg, &uap->port);
Tushar Behera44acd262014-06-26 15:35:36 +0530723 if (ret)
Russell Kingfbb18a22006-03-26 23:13:39 +0100724 amba_ports[i] = NULL;
Tushar Behera44acd262014-06-26 15:35:36 +0530725
Russell Kingfbb18a22006-03-26 23:13:39 +0100726 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
729static int pl010_remove(struct amba_device *dev)
730{
Russell King1b0646a2007-04-22 11:55:59 +0100731 struct uart_amba_port *uap = amba_get_drvdata(dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100732 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Russell King1b0646a2007-04-22 11:55:59 +0100734 uart_remove_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100735
736 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
Russell King1b0646a2007-04-22 11:55:59 +0100737 if (amba_ports[i] == uap)
Russell Kingfbb18a22006-03-26 23:13:39 +0100738 amba_ports[i] = NULL;
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return 0;
741}
742
Ulf Hansson95468242013-12-03 11:04:27 +0100743#ifdef CONFIG_PM_SLEEP
744static int pl010_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Ulf Hansson95468242013-12-03 11:04:27 +0100746 struct uart_amba_port *uap = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 if (uap)
749 uart_suspend_port(&amba_reg, &uap->port);
750
751 return 0;
752}
753
Ulf Hansson95468242013-12-03 11:04:27 +0100754static int pl010_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Ulf Hansson95468242013-12-03 11:04:27 +0100756 struct uart_amba_port *uap = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 if (uap)
759 uart_resume_port(&amba_reg, &uap->port);
760
761 return 0;
762}
Ulf Hansson95468242013-12-03 11:04:27 +0100763#endif
764
765static SIMPLE_DEV_PM_OPS(pl010_dev_pm_ops, pl010_suspend, pl010_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Russell King2c39c9e2010-07-27 08:50:16 +0100767static struct amba_id pl010_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 {
769 .id = 0x00041010,
770 .mask = 0x000fffff,
771 },
772 { 0, 0 },
773};
774
Dave Martina664a112011-10-05 15:15:22 +0100775MODULE_DEVICE_TABLE(amba, pl010_ids);
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777static struct amba_driver pl010_driver = {
778 .drv = {
779 .name = "uart-pl010",
Ulf Hansson95468242013-12-03 11:04:27 +0100780 .pm = &pl010_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 },
782 .id_table = pl010_ids,
783 .probe = pl010_probe,
784 .remove = pl010_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785};
786
787static int __init pl010_init(void)
788{
789 int ret;
790
Adrian Bunkd87a6d92008-07-16 21:53:31 +0100791 printk(KERN_INFO "Serial: AMBA driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 ret = uart_register_driver(&amba_reg);
794 if (ret == 0) {
795 ret = amba_driver_register(&pl010_driver);
796 if (ret)
797 uart_unregister_driver(&amba_reg);
798 }
799 return ret;
800}
801
802static void __exit pl010_exit(void)
803{
804 amba_driver_unregister(&pl010_driver);
805 uart_unregister_driver(&amba_reg);
806}
807
808module_init(pl010_init);
809module_exit(pl010_exit);
810
811MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
Adrian Bunkd87a6d92008-07-16 21:53:31 +0100812MODULE_DESCRIPTION("ARM AMBA serial port driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813MODULE_LICENSE("GPL");