blob: 2c37d11726aba666d88933a7cf9e0a534d6c8f49 [file] [log] [blame]
Greg Kroah-Hartmane3b3d0f2017-11-06 18:11:51 +01001// SPDX-License-Identifier: GPL-2.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Driver for AMBA serial ports
4 *
5 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
6 *
7 * Copyright 1999 ARM Limited
8 * Copyright (C) 2000 Deep Blue Solutions Ltd.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * This is a generic driver for ARM AMBA-type serial ports. They
11 * have a lot of 16550-like features, but are not register compatible.
12 * Note that although they do have CTS, DCD and DSR inputs, they do
13 * not have an RI input, nor do they have DTR or RTS outputs. If
14 * required, these have to be supplied via some other means (eg, GPIO)
15 * and hooked into this driver.
16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#if defined(CONFIG_SERIAL_AMBA_PL010_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
19#define SUPPORT_SYSRQ
20#endif
21
22#include <linux/module.h>
23#include <linux/ioport.h>
24#include <linux/init.h>
25#include <linux/console.h>
26#include <linux/sysrq.h>
27#include <linux/device.h>
28#include <linux/tty.h>
29#include <linux/tty_flip.h>
30#include <linux/serial_core.h>
31#include <linux/serial.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000032#include <linux/amba/bus.h>
33#include <linux/amba/serial.h>
Russell Kinged519de2007-04-22 12:30:41 +010034#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Tushar Behera44acd262014-06-26 15:35:36 +053036#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Lennert Buytenhek4faf4e02006-06-20 19:24:07 +010038#define UART_NR 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#define SERIAL_AMBA_MAJOR 204
41#define SERIAL_AMBA_MINOR 16
42#define SERIAL_AMBA_NR UART_NR
43
44#define AMBA_ISR_PASS_LIMIT 256
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define UART_RX_DATA(s) (((s) & UART01x_FR_RXFE) == 0)
47#define UART_TX_READY(s) (((s) & UART01x_FR_TXFF) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Russell Kingfbb18a22006-03-26 23:13:39 +010049#define UART_DUMMY_RSR_RX 256
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define UART_PORT_SIZE 64
51
52/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * We wrap our port structure around the generic uart_port.
54 */
55struct uart_amba_port {
56 struct uart_port port;
Russell Kinged519de2007-04-22 12:30:41 +010057 struct clk *clk;
Russell Kingfbb18a22006-03-26 23:13:39 +010058 struct amba_device *dev;
59 struct amba_pl010_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 unsigned int old_status;
61};
62
Russell Kingb129a8c2005-08-31 10:12:14 +010063static void pl010_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Fabian Frederickb70e5e92014-10-05 19:19:46 +020065 struct uart_amba_port *uap =
66 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 unsigned int cr;
68
Russell King1b0646a2007-04-22 11:55:59 +010069 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 cr &= ~UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010071 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
Russell Kingb129a8c2005-08-31 10:12:14 +010074static void pl010_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Fabian Frederickb70e5e92014-10-05 19:19:46 +020076 struct uart_amba_port *uap =
77 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 unsigned int cr;
79
Russell King1b0646a2007-04-22 11:55:59 +010080 cr = readb(uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 cr |= UART010_CR_TIE;
Russell King1b0646a2007-04-22 11:55:59 +010082 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
85static void pl010_stop_rx(struct uart_port *port)
86{
Fabian Frederickb70e5e92014-10-05 19:19:46 +020087 struct uart_amba_port *uap =
88 container_of(port, 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_RIE | UART010_CR_RTIE);
Russell King1b0646a2007-04-22 11:55:59 +010093 writel(cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
Peter Hurleycab68f82014-11-05 13:11:45 -050096static void pl010_disable_ms(struct uart_port *port)
97{
98 struct uart_amba_port *uap = (struct uart_amba_port *)port;
99 unsigned int cr;
100
101 cr = readb(uap->port.membase + UART010_CR);
102 cr &= ~UART010_CR_MSIE;
103 writel(cr, uap->port.membase + UART010_CR);
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static void pl010_enable_ms(struct uart_port *port)
107{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200108 struct uart_amba_port *uap =
109 container_of(port, 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{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200263 struct uart_amba_port *uap =
264 container_of(port, struct uart_amba_port, port);
Russell King1b0646a2007-04-22 11:55:59 +0100265 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{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200271 struct uart_amba_port *uap =
272 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 unsigned int result = 0;
274 unsigned int status;
275
Russell King1b0646a2007-04-22 11:55:59 +0100276 status = readb(uap->port.membase + UART01x_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (status & UART01x_FR_DCD)
278 result |= TIOCM_CAR;
279 if (status & UART01x_FR_DSR)
280 result |= TIOCM_DSR;
281 if (status & UART01x_FR_CTS)
282 result |= TIOCM_CTS;
283
284 return result;
285}
286
287static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl)
288{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200289 struct uart_amba_port *uap =
290 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Russell Kingfbb18a22006-03-26 23:13:39 +0100292 if (uap->data)
293 uap->data->set_mctrl(uap->dev, uap->port.membase, mctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296static void pl010_break_ctl(struct uart_port *port, int break_state)
297{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200298 struct uart_amba_port *uap =
299 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 unsigned long flags;
301 unsigned int lcr_h;
302
Russell King1b0646a2007-04-22 11:55:59 +0100303 spin_lock_irqsave(&uap->port.lock, flags);
304 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (break_state == -1)
306 lcr_h |= UART01x_LCRH_BRK;
307 else
308 lcr_h &= ~UART01x_LCRH_BRK;
Russell King1b0646a2007-04-22 11:55:59 +0100309 writel(lcr_h, uap->port.membase + UART010_LCRH);
310 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313static int pl010_startup(struct uart_port *port)
314{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200315 struct uart_amba_port *uap =
316 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 int retval;
318
319 /*
Russell Kinged519de2007-04-22 12:30:41 +0100320 * Try to enable the clock producer.
321 */
Julia Lawall1c4c4392012-08-26 18:01:01 +0200322 retval = clk_prepare_enable(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100323 if (retval)
Julia Lawall1c4c4392012-08-26 18:01:01 +0200324 goto out;
Russell Kinged519de2007-04-22 12:30:41 +0100325
326 uap->port.uartclk = clk_get_rate(uap->clk);
327
328 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * Allocate the IRQ
330 */
Russell King1b0646a2007-04-22 11:55:59 +0100331 retval = request_irq(uap->port.irq, pl010_int, 0, "uart-pl010", uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (retval)
Russell Kinged519de2007-04-22 12:30:41 +0100333 goto clk_dis;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * initialise the old status of the modem signals
337 */
Russell King1b0646a2007-04-22 11:55:59 +0100338 uap->old_status = readb(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /*
341 * Finally, enable interrupts
342 */
Russell King98639a62006-03-25 21:30:11 +0000343 writel(UART01x_CR_UARTEN | UART010_CR_RIE | UART010_CR_RTIE,
Russell King1b0646a2007-04-22 11:55:59 +0100344 uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 return 0;
Russell Kinged519de2007-04-22 12:30:41 +0100347
348 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +0200349 clk_disable_unprepare(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100350 out:
351 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354static void pl010_shutdown(struct uart_port *port)
355{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200356 struct uart_amba_port *uap =
357 container_of(port, struct uart_amba_port, port);
Russell King1b0646a2007-04-22 11:55:59 +0100358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 /*
360 * Free the interrupt
361 */
Russell King1b0646a2007-04-22 11:55:59 +0100362 free_irq(uap->port.irq, uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /*
365 * disable all interrupts, disable the port
366 */
Russell King1b0646a2007-04-22 11:55:59 +0100367 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /* disable break condition and fifos */
Russell King1b0646a2007-04-22 11:55:59 +0100370 writel(readb(uap->port.membase + UART010_LCRH) &
Russell King98639a62006-03-25 21:30:11 +0000371 ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN),
Russell King1b0646a2007-04-22 11:55:59 +0100372 uap->port.membase + UART010_LCRH);
Russell Kinged519de2007-04-22 12:30:41 +0100373
374 /*
375 * Shut down the clock producer
376 */
Julia Lawall1c4c4392012-08-26 18:01:01 +0200377 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380static void
Alan Cox606d0992006-12-08 02:38:45 -0800381pl010_set_termios(struct uart_port *port, struct ktermios *termios,
382 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200384 struct uart_amba_port *uap =
385 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 unsigned int lcr_h, old_cr;
387 unsigned long flags;
388 unsigned int baud, quot;
389
390 /*
391 * Ask the core to calculate the divisor for us.
392 */
Russell King1b0646a2007-04-22 11:55:59 +0100393 baud = uart_get_baud_rate(port, termios, old, 0, uap->port.uartclk/16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 quot = uart_get_divisor(port, baud);
395
396 switch (termios->c_cflag & CSIZE) {
397 case CS5:
398 lcr_h = UART01x_LCRH_WLEN_5;
399 break;
400 case CS6:
401 lcr_h = UART01x_LCRH_WLEN_6;
402 break;
403 case CS7:
404 lcr_h = UART01x_LCRH_WLEN_7;
405 break;
406 default: // CS8
407 lcr_h = UART01x_LCRH_WLEN_8;
408 break;
409 }
410 if (termios->c_cflag & CSTOPB)
411 lcr_h |= UART01x_LCRH_STP2;
412 if (termios->c_cflag & PARENB) {
413 lcr_h |= UART01x_LCRH_PEN;
414 if (!(termios->c_cflag & PARODD))
415 lcr_h |= UART01x_LCRH_EPS;
416 }
Russell King1b0646a2007-04-22 11:55:59 +0100417 if (uap->port.fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 lcr_h |= UART01x_LCRH_FEN;
419
Russell King1b0646a2007-04-22 11:55:59 +0100420 spin_lock_irqsave(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /*
423 * Update the per-port timeout.
424 */
425 uart_update_timeout(port, termios->c_cflag, baud);
426
Russell King1b0646a2007-04-22 11:55:59 +0100427 uap->port.read_status_mask = UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (termios->c_iflag & INPCK)
Russell King1b0646a2007-04-22 11:55:59 +0100429 uap->port.read_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Peter Hurleyef8b9dd2014-06-16 08:10:41 -0400430 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Russell King1b0646a2007-04-22 11:55:59 +0100431 uap->port.read_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /*
434 * Characters to ignore
435 */
Russell King1b0646a2007-04-22 11:55:59 +0100436 uap->port.ignore_status_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100438 uap->port.ignore_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (termios->c_iflag & IGNBRK) {
Russell King1b0646a2007-04-22 11:55:59 +0100440 uap->port.ignore_status_mask |= UART01x_RSR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /*
442 * If we're ignoring parity and break indicators,
443 * ignore overruns too (for real raw support).
444 */
445 if (termios->c_iflag & IGNPAR)
Russell King1b0646a2007-04-22 11:55:59 +0100446 uap->port.ignore_status_mask |= UART01x_RSR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 /*
450 * Ignore all characters if CREAD is not set.
451 */
452 if ((termios->c_cflag & CREAD) == 0)
Russell King1b0646a2007-04-22 11:55:59 +0100453 uap->port.ignore_status_mask |= UART_DUMMY_RSR_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 /* first, disable everything */
Russell King1b0646a2007-04-22 11:55:59 +0100456 old_cr = readb(uap->port.membase + UART010_CR) & ~UART010_CR_MSIE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 if (UART_ENABLE_MS(port, termios->c_cflag))
459 old_cr |= UART010_CR_MSIE;
460
Russell King1b0646a2007-04-22 11:55:59 +0100461 writel(0, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* Set baud rate */
464 quot -= 1;
Russell King1b0646a2007-04-22 11:55:59 +0100465 writel((quot & 0xf00) >> 8, uap->port.membase + UART010_LCRM);
466 writel(quot & 0xff, uap->port.membase + UART010_LCRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /*
469 * ----------v----------v----------v----------v-----
470 * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L
471 * ----------^----------^----------^----------^-----
472 */
Russell King1b0646a2007-04-22 11:55:59 +0100473 writel(lcr_h, uap->port.membase + UART010_LCRH);
474 writel(old_cr, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Russell King1b0646a2007-04-22 11:55:59 +0100476 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Peter Hurley732a84a2014-11-05 13:11:43 -0500479static void pl010_set_ldisc(struct uart_port *port, struct ktermios *termios)
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800480{
Peter Hurley732a84a2014-11-05 13:11:43 -0500481 if (termios->c_line == N_PPS) {
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800482 port->flags |= UPF_HARDPPS_CD;
Peter Hurleyd41510c2014-11-05 13:11:44 -0500483 spin_lock_irq(&port->lock);
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800484 pl010_enable_ms(port);
Peter Hurleyd41510c2014-11-05 13:11:44 -0500485 spin_unlock_irq(&port->lock);
Peter Hurleycab68f82014-11-05 13:11:45 -0500486 } else {
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800487 port->flags &= ~UPF_HARDPPS_CD;
Peter Hurleycab68f82014-11-05 13:11:45 -0500488 if (!UART_ENABLE_MS(port, termios->c_cflag)) {
489 spin_lock_irq(&port->lock);
490 pl010_disable_ms(port);
491 spin_unlock_irq(&port->lock);
492 }
493 }
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static const char *pl010_type(struct uart_port *port)
497{
498 return port->type == PORT_AMBA ? "AMBA" : NULL;
499}
500
501/*
502 * Release the memory region(s) being used by 'port'
503 */
504static void pl010_release_port(struct uart_port *port)
505{
506 release_mem_region(port->mapbase, UART_PORT_SIZE);
507}
508
509/*
510 * Request the memory region(s) being used by 'port'
511 */
512static int pl010_request_port(struct uart_port *port)
513{
514 return request_mem_region(port->mapbase, UART_PORT_SIZE, "uart-pl010")
515 != NULL ? 0 : -EBUSY;
516}
517
518/*
519 * Configure/autoconfigure the port.
520 */
521static void pl010_config_port(struct uart_port *port, int flags)
522{
523 if (flags & UART_CONFIG_TYPE) {
524 port->type = PORT_AMBA;
525 pl010_request_port(port);
526 }
527}
528
529/*
530 * verify the new serial_struct (for TIOCSSERIAL).
531 */
532static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser)
533{
534 int ret = 0;
535 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
536 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -0700537 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 ret = -EINVAL;
539 if (ser->baud_base < 9600)
540 ret = -EINVAL;
541 return ret;
542}
543
Bhumika Goyal2331e062017-01-25 23:18:52 +0530544static const struct uart_ops amba_pl010_pops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 .tx_empty = pl010_tx_empty,
546 .set_mctrl = pl010_set_mctrl,
547 .get_mctrl = pl010_get_mctrl,
548 .stop_tx = pl010_stop_tx,
549 .start_tx = pl010_start_tx,
550 .stop_rx = pl010_stop_rx,
551 .enable_ms = pl010_enable_ms,
552 .break_ctl = pl010_break_ctl,
553 .startup = pl010_startup,
554 .shutdown = pl010_shutdown,
555 .set_termios = pl010_set_termios,
Rodolfo Giometti7ed63d52010-03-10 15:23:48 -0800556 .set_ldisc = pl010_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 .type = pl010_type,
558 .release_port = pl010_release_port,
559 .request_port = pl010_request_port,
560 .config_port = pl010_config_port,
561 .verify_port = pl010_verify_port,
562};
563
Russell Kingfbb18a22006-03-26 23:13:39 +0100564static struct uart_amba_port *amba_ports[UART_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566#ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE
567
Russell Kingd3587882006-03-20 20:00:09 +0000568static void pl010_console_putchar(struct uart_port *port, int ch)
569{
Fabian Frederickb70e5e92014-10-05 19:19:46 +0200570 struct uart_amba_port *uap =
571 container_of(port, struct uart_amba_port, port);
Russell King98639a62006-03-25 21:30:11 +0000572 unsigned int status;
573
574 do {
Russell King1b0646a2007-04-22 11:55:59 +0100575 status = readb(uap->port.membase + UART01x_FR);
Russell Kingd3587882006-03-20 20:00:09 +0000576 barrier();
Russell King98639a62006-03-25 21:30:11 +0000577 } while (!UART_TX_READY(status));
Russell King1b0646a2007-04-22 11:55:59 +0100578 writel(ch, uap->port.membase + UART01x_DR);
Russell Kingd3587882006-03-20 20:00:09 +0000579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581static void
582pl010_console_write(struct console *co, const char *s, unsigned int count)
583{
Russell King1b0646a2007-04-22 11:55:59 +0100584 struct uart_amba_port *uap = amba_ports[co->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 unsigned int status, old_cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Russell Kinged519de2007-04-22 12:30:41 +0100587 clk_enable(uap->clk);
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /*
590 * First save the CR then disable the interrupts
591 */
Russell King1b0646a2007-04-22 11:55:59 +0100592 old_cr = readb(uap->port.membase + UART010_CR);
593 writel(UART01x_CR_UARTEN, uap->port.membase + UART010_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Russell King1b0646a2007-04-22 11:55:59 +0100595 uart_console_write(&uap->port, s, count, pl010_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 /*
598 * Finally, wait for transmitter to become empty
599 * and restore the TCR
600 */
601 do {
Russell King1b0646a2007-04-22 11:55:59 +0100602 status = readb(uap->port.membase + UART01x_FR);
Russell King98639a62006-03-25 21:30:11 +0000603 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 } while (status & UART01x_FR_BUSY);
Russell King1b0646a2007-04-22 11:55:59 +0100605 writel(old_cr, uap->port.membase + UART010_CR);
Russell Kinged519de2007-04-22 12:30:41 +0100606
607 clk_disable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
610static void __init
Russell King1b0646a2007-04-22 11:55:59 +0100611pl010_console_get_options(struct uart_amba_port *uap, int *baud,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int *parity, int *bits)
613{
Russell King1b0646a2007-04-22 11:55:59 +0100614 if (readb(uap->port.membase + UART010_CR) & UART01x_CR_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 unsigned int lcr_h, quot;
Russell King1b0646a2007-04-22 11:55:59 +0100616 lcr_h = readb(uap->port.membase + UART010_LCRH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 *parity = 'n';
619 if (lcr_h & UART01x_LCRH_PEN) {
620 if (lcr_h & UART01x_LCRH_EPS)
621 *parity = 'e';
622 else
623 *parity = 'o';
624 }
625
626 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
627 *bits = 7;
628 else
629 *bits = 8;
630
Russell King1b0646a2007-04-22 11:55:59 +0100631 quot = readb(uap->port.membase + UART010_LCRL) |
632 readb(uap->port.membase + UART010_LCRM) << 8;
633 *baud = uap->port.uartclk / (16 * (quot + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635}
636
637static int __init pl010_console_setup(struct console *co, char *options)
638{
Russell King1b0646a2007-04-22 11:55:59 +0100639 struct uart_amba_port *uap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 int baud = 38400;
641 int bits = 8;
642 int parity = 'n';
643 int flow = 'n';
Russell King36b8f1e2011-09-22 11:35:09 +0100644 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 /*
647 * Check whether an invalid uart number has been specified, and
648 * if so, search for the first available port that does have
649 * console support.
650 */
651 if (co->index >= UART_NR)
652 co->index = 0;
Russell King1b0646a2007-04-22 11:55:59 +0100653 uap = amba_ports[co->index];
654 if (!uap)
Russell Kingd28122a2007-01-22 18:59:42 +0000655 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Russell King36b8f1e2011-09-22 11:35:09 +0100657 ret = clk_prepare(uap->clk);
658 if (ret)
659 return ret;
660
Russell Kinged519de2007-04-22 12:30:41 +0100661 uap->port.uartclk = clk_get_rate(uap->clk);
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (options)
664 uart_parse_options(options, &baud, &parity, &bits, &flow);
665 else
Russell King1b0646a2007-04-22 11:55:59 +0100666 pl010_console_get_options(uap, &baud, &parity, &bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Russell King1b0646a2007-04-22 11:55:59 +0100668 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Vincent Sanders2d934862005-09-14 22:36:03 +0100671static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672static struct console amba_console = {
673 .name = "ttyAM",
674 .write = pl010_console_write,
675 .device = uart_console_device,
676 .setup = pl010_console_setup,
677 .flags = CON_PRINTBUFFER,
678 .index = -1,
679 .data = &amba_reg,
680};
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682#define AMBA_CONSOLE &amba_console
683#else
684#define AMBA_CONSOLE NULL
685#endif
686
Sjoerd Simonsbd8766b2017-04-20 14:13:00 +0200687static DEFINE_MUTEX(amba_reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688static struct uart_driver amba_reg = {
689 .owner = THIS_MODULE,
690 .driver_name = "ttyAM",
691 .dev_name = "ttyAM",
692 .major = SERIAL_AMBA_MAJOR,
693 .minor = SERIAL_AMBA_MINOR,
694 .nr = UART_NR,
695 .cons = AMBA_CONSOLE,
696};
697
Russell Kingaa25afa2011-02-19 15:55:00 +0000698static int pl010_probe(struct amba_device *dev, const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Russell King1b0646a2007-04-22 11:55:59 +0100700 struct uart_amba_port *uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100701 void __iomem *base;
702 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Russell Kingfbb18a22006-03-26 23:13:39 +0100704 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
705 if (amba_ports[i] == NULL)
706 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Tushar Behera44acd262014-06-26 15:35:36 +0530708 if (i == ARRAY_SIZE(amba_ports))
709 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Tushar Behera44acd262014-06-26 15:35:36 +0530711 uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
712 GFP_KERNEL);
713 if (!uap)
714 return -ENOMEM;
Russell Kingfbb18a22006-03-26 23:13:39 +0100715
Tushar Behera44acd262014-06-26 15:35:36 +0530716 base = devm_ioremap(&dev->dev, dev->res.start,
717 resource_size(&dev->res));
718 if (!base)
719 return -ENOMEM;
Russell Kingfbb18a22006-03-26 23:13:39 +0100720
Tushar Behera44acd262014-06-26 15:35:36 +0530721 uap->clk = devm_clk_get(&dev->dev, NULL);
722 if (IS_ERR(uap->clk))
723 return PTR_ERR(uap->clk);
Russell Kinged519de2007-04-22 12:30:41 +0100724
Russell King1b0646a2007-04-22 11:55:59 +0100725 uap->port.dev = &dev->dev;
726 uap->port.mapbase = dev->res.start;
727 uap->port.membase = base;
728 uap->port.iotype = UPIO_MEM;
729 uap->port.irq = dev->irq[0];
Russell King1b0646a2007-04-22 11:55:59 +0100730 uap->port.fifosize = 16;
731 uap->port.ops = &amba_pl010_pops;
732 uap->port.flags = UPF_BOOT_AUTOCONF;
733 uap->port.line = i;
734 uap->dev = dev;
Jingoo Han574de552013-07-30 17:06:57 +0900735 uap->data = dev_get_platdata(&dev->dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100736
Russell King1b0646a2007-04-22 11:55:59 +0100737 amba_ports[i] = uap;
Russell Kingfbb18a22006-03-26 23:13:39 +0100738
Russell King1b0646a2007-04-22 11:55:59 +0100739 amba_set_drvdata(dev, uap);
Sjoerd Simonsbd8766b2017-04-20 14:13:00 +0200740
741 mutex_lock(&amba_reg_lock);
742 if (!amba_reg.state) {
743 ret = uart_register_driver(&amba_reg);
744 if (ret < 0) {
745 mutex_unlock(&amba_reg_lock);
746 dev_err(uap->port.dev,
747 "Failed to register AMBA-PL010 driver\n");
748 return ret;
749 }
750 }
751 mutex_unlock(&amba_reg_lock);
752
Russell King1b0646a2007-04-22 11:55:59 +0100753 ret = uart_add_one_port(&amba_reg, &uap->port);
Tushar Behera44acd262014-06-26 15:35:36 +0530754 if (ret)
Russell Kingfbb18a22006-03-26 23:13:39 +0100755 amba_ports[i] = NULL;
Tushar Behera44acd262014-06-26 15:35:36 +0530756
Russell Kingfbb18a22006-03-26 23:13:39 +0100757 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760static int pl010_remove(struct amba_device *dev)
761{
Russell King1b0646a2007-04-22 11:55:59 +0100762 struct uart_amba_port *uap = amba_get_drvdata(dev);
Russell Kingfbb18a22006-03-26 23:13:39 +0100763 int i;
Sjoerd Simonsbd8766b2017-04-20 14:13:00 +0200764 bool busy = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Russell King1b0646a2007-04-22 11:55:59 +0100766 uart_remove_one_port(&amba_reg, &uap->port);
Russell Kingfbb18a22006-03-26 23:13:39 +0100767
768 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
Russell King1b0646a2007-04-22 11:55:59 +0100769 if (amba_ports[i] == uap)
Russell Kingfbb18a22006-03-26 23:13:39 +0100770 amba_ports[i] = NULL;
Sjoerd Simonsbd8766b2017-04-20 14:13:00 +0200771 else if (amba_ports[i])
772 busy = true;
773
774 if (!busy)
775 uart_unregister_driver(&amba_reg);
Russell Kingfbb18a22006-03-26 23:13:39 +0100776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return 0;
778}
779
Ulf Hansson95468242013-12-03 11:04:27 +0100780#ifdef CONFIG_PM_SLEEP
781static int pl010_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Ulf Hansson95468242013-12-03 11:04:27 +0100783 struct uart_amba_port *uap = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 if (uap)
786 uart_suspend_port(&amba_reg, &uap->port);
787
788 return 0;
789}
790
Ulf Hansson95468242013-12-03 11:04:27 +0100791static int pl010_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Ulf Hansson95468242013-12-03 11:04:27 +0100793 struct uart_amba_port *uap = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 if (uap)
796 uart_resume_port(&amba_reg, &uap->port);
797
798 return 0;
799}
Ulf Hansson95468242013-12-03 11:04:27 +0100800#endif
801
802static SIMPLE_DEV_PM_OPS(pl010_dev_pm_ops, pl010_suspend, pl010_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Arvind Yadav5337e542017-08-23 22:17:58 +0530804static const struct amba_id pl010_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 {
806 .id = 0x00041010,
807 .mask = 0x000fffff,
808 },
809 { 0, 0 },
810};
811
Dave Martina664a112011-10-05 15:15:22 +0100812MODULE_DEVICE_TABLE(amba, pl010_ids);
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814static struct amba_driver pl010_driver = {
815 .drv = {
816 .name = "uart-pl010",
Ulf Hansson95468242013-12-03 11:04:27 +0100817 .pm = &pl010_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 },
819 .id_table = pl010_ids,
820 .probe = pl010_probe,
821 .remove = pl010_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822};
823
824static int __init pl010_init(void)
825{
Adrian Bunkd87a6d92008-07-16 21:53:31 +0100826 printk(KERN_INFO "Serial: AMBA driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Sjoerd Simonsbd8766b2017-04-20 14:13:00 +0200828 return amba_driver_register(&pl010_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831static void __exit pl010_exit(void)
832{
833 amba_driver_unregister(&pl010_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
836module_init(pl010_init);
837module_exit(pl010_exit);
838
839MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
Adrian Bunkd87a6d92008-07-16 21:53:31 +0100840MODULE_DESCRIPTION("ARM AMBA serial port driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841MODULE_LICENSE("GPL");