Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[linux-block.git] / drivers / tty / serial / amba-pl010.c
CommitLineData
e3b3d0f5 1// SPDX-License-Identifier: GPL-2.0+
1da177e4 2/*
1da177e4
LT
3 * 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 *
1da177e4
LT
10 * 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 */
1da177e4 17
1da177e4
LT
18#include <linux/module.h>
19#include <linux/ioport.h>
20#include <linux/init.h>
21#include <linux/console.h>
22#include <linux/sysrq.h>
23#include <linux/device.h>
24#include <linux/tty.h>
25#include <linux/tty_flip.h>
26#include <linux/serial_core.h>
27#include <linux/serial.h>
a62c80e5
RK
28#include <linux/amba/bus.h>
29#include <linux/amba/serial.h>
ed519ded 30#include <linux/clk.h>
5a0e3ad6 31#include <linux/slab.h>
44acd260 32#include <linux/io.h>
1da177e4 33
4faf4e0e 34#define UART_NR 8
1da177e4
LT
35
36#define SERIAL_AMBA_MAJOR 204
37#define SERIAL_AMBA_MINOR 16
38#define SERIAL_AMBA_NR UART_NR
39
40#define AMBA_ISR_PASS_LIMIT 256
41
1da177e4
LT
42#define UART_RX_DATA(s) (((s) & UART01x_FR_RXFE) == 0)
43#define UART_TX_READY(s) (((s) & UART01x_FR_TXFF) == 0)
1da177e4 44
fbb18a27 45#define UART_DUMMY_RSR_RX 256
1da177e4
LT
46#define UART_PORT_SIZE 64
47
1da177e4
LT
48/*
49 * We wrap our port structure around the generic uart_port.
50 */
51struct uart_amba_port {
52 struct uart_port port;
ed519ded 53 struct clk *clk;
fbb18a27
RK
54 struct amba_device *dev;
55 struct amba_pl010_data *data;
1da177e4
LT
56 unsigned int old_status;
57};
58
b129a8cc 59static void pl010_stop_tx(struct uart_port *port)
1da177e4 60{
b70e5e9d
FF
61 struct uart_amba_port *uap =
62 container_of(port, struct uart_amba_port, port);
1da177e4
LT
63 unsigned int cr;
64
1b0646a0 65 cr = readb(uap->port.membase + UART010_CR);
1da177e4 66 cr &= ~UART010_CR_TIE;
1b0646a0 67 writel(cr, uap->port.membase + UART010_CR);
1da177e4
LT
68}
69
b129a8cc 70static void pl010_start_tx(struct uart_port *port)
1da177e4 71{
b70e5e9d
FF
72 struct uart_amba_port *uap =
73 container_of(port, struct uart_amba_port, port);
1da177e4
LT
74 unsigned int cr;
75
1b0646a0 76 cr = readb(uap->port.membase + UART010_CR);
1da177e4 77 cr |= UART010_CR_TIE;
1b0646a0 78 writel(cr, uap->port.membase + UART010_CR);
1da177e4
LT
79}
80
81static void pl010_stop_rx(struct uart_port *port)
82{
b70e5e9d
FF
83 struct uart_amba_port *uap =
84 container_of(port, struct uart_amba_port, port);
1da177e4
LT
85 unsigned int cr;
86
1b0646a0 87 cr = readb(uap->port.membase + UART010_CR);
1da177e4 88 cr &= ~(UART010_CR_RIE | UART010_CR_RTIE);
1b0646a0 89 writel(cr, uap->port.membase + UART010_CR);
1da177e4
LT
90}
91
cab68f89
PH
92static void pl010_disable_ms(struct uart_port *port)
93{
94 struct uart_amba_port *uap = (struct uart_amba_port *)port;
95 unsigned int cr;
96
97 cr = readb(uap->port.membase + UART010_CR);
98 cr &= ~UART010_CR_MSIE;
99 writel(cr, uap->port.membase + UART010_CR);
100}
101
1da177e4
LT
102static void pl010_enable_ms(struct uart_port *port)
103{
b70e5e9d
FF
104 struct uart_amba_port *uap =
105 container_of(port, struct uart_amba_port, port);
1da177e4
LT
106 unsigned int cr;
107
1b0646a0 108 cr = readb(uap->port.membase + UART010_CR);
1da177e4 109 cr |= UART010_CR_MSIE;
1b0646a0 110 writel(cr, uap->port.membase + UART010_CR);
1da177e4
LT
111}
112
f166d19f 113static void pl010_rx_chars(struct uart_port *port)
1da177e4 114{
fd2b55f8
JS
115 unsigned int status, rsr, max_count = 256;
116 u8 ch, flag;
1da177e4 117
f166d19f 118 status = readb(port->membase + UART01x_FR);
1da177e4 119 while (UART_RX_DATA(status) && max_count--) {
f166d19f 120 ch = readb(port->membase + UART01x_DR);
1da177e4
LT
121 flag = TTY_NORMAL;
122
f166d19f 123 port->icount.rx++;
1da177e4
LT
124
125 /*
126 * Note that the error handling code is
127 * out of the main execution path
128 */
f166d19f 129 rsr = readb(port->membase + UART01x_RSR) | UART_DUMMY_RSR_RX;
45849282 130 if (unlikely(rsr & UART01x_RSR_ANY)) {
f166d19f 131 writel(0, port->membase + UART01x_ECR);
a4ed06ad 132
1da177e4
LT
133 if (rsr & UART01x_RSR_BE) {
134 rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE);
f166d19f
JS
135 port->icount.brk++;
136 if (uart_handle_break(port))
1da177e4
LT
137 goto ignore_char;
138 } else if (rsr & UART01x_RSR_PE)
f166d19f 139 port->icount.parity++;
1da177e4 140 else if (rsr & UART01x_RSR_FE)
f166d19f 141 port->icount.frame++;
1da177e4 142 if (rsr & UART01x_RSR_OE)
f166d19f 143 port->icount.overrun++;
1da177e4 144
f166d19f 145 rsr &= port->read_status_mask;
1da177e4
LT
146
147 if (rsr & UART01x_RSR_BE)
148 flag = TTY_BREAK;
149 else if (rsr & UART01x_RSR_PE)
150 flag = TTY_PARITY;
151 else if (rsr & UART01x_RSR_FE)
152 flag = TTY_FRAME;
153 }
154
f166d19f 155 if (uart_handle_sysrq_char(port, ch))
1da177e4
LT
156 goto ignore_char;
157
f166d19f 158 uart_insert_char(port, rsr, UART01x_RSR_OE, ch, flag);
05ab3014 159
1da177e4 160 ignore_char:
f166d19f 161 status = readb(port->membase + UART01x_FR);
1da177e4 162 }
f166d19f 163 tty_flip_buffer_push(&port->state->port);
1da177e4
LT
164}
165
f166d19f 166static void pl010_tx_chars(struct uart_port *port)
1da177e4 167{
d11cc8c3 168 u8 ch;
1da177e4 169
d11cc8c3
JSS
170 uart_port_tx_limited(port, ch, port->fifosize >> 1,
171 true,
172 writel(ch, port->membase + UART01x_DR),
173 ({}));
1da177e4
LT
174}
175
1b0646a0 176static void pl010_modem_status(struct uart_amba_port *uap)
1da177e4 177{
f166d19f 178 struct uart_port *port = &uap->port;
1da177e4
LT
179 unsigned int status, delta;
180
f166d19f 181 writel(0, port->membase + UART010_ICR);
1da177e4 182
f166d19f 183 status = readb(port->membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
1da177e4
LT
184
185 delta = status ^ uap->old_status;
186 uap->old_status = status;
187
188 if (!delta)
189 return;
190
191 if (delta & UART01x_FR_DCD)
f166d19f 192 uart_handle_dcd_change(port, status & UART01x_FR_DCD);
1da177e4
LT
193
194 if (delta & UART01x_FR_DSR)
f166d19f 195 port->icount.dsr++;
1da177e4
LT
196
197 if (delta & UART01x_FR_CTS)
f166d19f 198 uart_handle_cts_change(port, status & UART01x_FR_CTS);
1da177e4 199
f166d19f 200 wake_up_interruptible(&port->state->port.delta_msr_wait);
1da177e4
LT
201}
202
7d12e780 203static irqreturn_t pl010_int(int irq, void *dev_id)
1da177e4 204{
1b0646a0 205 struct uart_amba_port *uap = dev_id;
f166d19f 206 struct uart_port *port = &uap->port;
1da177e4
LT
207 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
208 int handled = 0;
209
01d6461a 210 uart_port_lock(port);
1da177e4 211
f166d19f 212 status = readb(port->membase + UART010_IIR);
1da177e4
LT
213 if (status) {
214 do {
215 if (status & (UART010_IIR_RTIS | UART010_IIR_RIS))
f166d19f 216 pl010_rx_chars(port);
1da177e4 217 if (status & UART010_IIR_MIS)
1b0646a0 218 pl010_modem_status(uap);
1da177e4 219 if (status & UART010_IIR_TIS)
f166d19f 220 pl010_tx_chars(port);
1da177e4
LT
221
222 if (pass_counter-- == 0)
223 break;
224
f166d19f 225 status = readb(port->membase + UART010_IIR);
1da177e4
LT
226 } while (status & (UART010_IIR_RTIS | UART010_IIR_RIS |
227 UART010_IIR_TIS));
228 handled = 1;
229 }
230
01d6461a 231 uart_port_unlock(port);
1da177e4
LT
232
233 return IRQ_RETVAL(handled);
234}
235
236static unsigned int pl010_tx_empty(struct uart_port *port)
237{
f166d19f
JS
238 unsigned int status = readb(port->membase + UART01x_FR);
239
1b0646a0 240 return status & UART01x_FR_BUSY ? 0 : TIOCSER_TEMT;
1da177e4
LT
241}
242
243static unsigned int pl010_get_mctrl(struct uart_port *port)
244{
245 unsigned int result = 0;
246 unsigned int status;
247
f166d19f 248 status = readb(port->membase + UART01x_FR);
1da177e4
LT
249 if (status & UART01x_FR_DCD)
250 result |= TIOCM_CAR;
251 if (status & UART01x_FR_DSR)
252 result |= TIOCM_DSR;
253 if (status & UART01x_FR_CTS)
254 result |= TIOCM_CTS;
255
256 return result;
257}
258
259static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl)
260{
b70e5e9d
FF
261 struct uart_amba_port *uap =
262 container_of(port, struct uart_amba_port, port);
1da177e4 263
fbb18a27 264 if (uap->data)
f166d19f 265 uap->data->set_mctrl(uap->dev, port->membase, mctrl);
1da177e4
LT
266}
267
268static void pl010_break_ctl(struct uart_port *port, int break_state)
269{
270 unsigned long flags;
271 unsigned int lcr_h;
272
01d6461a 273 uart_port_lock_irqsave(port, &flags);
f166d19f 274 lcr_h = readb(port->membase + UART010_LCRH);
1da177e4
LT
275 if (break_state == -1)
276 lcr_h |= UART01x_LCRH_BRK;
277 else
278 lcr_h &= ~UART01x_LCRH_BRK;
f166d19f 279 writel(lcr_h, port->membase + UART010_LCRH);
01d6461a 280 uart_port_unlock_irqrestore(port, flags);
1da177e4
LT
281}
282
283static int pl010_startup(struct uart_port *port)
284{
b70e5e9d
FF
285 struct uart_amba_port *uap =
286 container_of(port, struct uart_amba_port, port);
1da177e4
LT
287 int retval;
288
ed519ded
RK
289 /*
290 * Try to enable the clock producer.
291 */
1c4c4394 292 retval = clk_prepare_enable(uap->clk);
ed519ded 293 if (retval)
1c4c4394 294 goto out;
ed519ded 295
f166d19f 296 port->uartclk = clk_get_rate(uap->clk);
ed519ded 297
1da177e4
LT
298 /*
299 * Allocate the IRQ
300 */
f166d19f 301 retval = request_irq(port->irq, pl010_int, 0, "uart-pl010", uap);
1da177e4 302 if (retval)
ed519ded 303 goto clk_dis;
1da177e4
LT
304
305 /*
306 * initialise the old status of the modem signals
307 */
f166d19f 308 uap->old_status = readb(port->membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
1da177e4
LT
309
310 /*
311 * Finally, enable interrupts
312 */
98639a67 313 writel(UART01x_CR_UARTEN | UART010_CR_RIE | UART010_CR_RTIE,
f166d19f 314 port->membase + UART010_CR);
1da177e4
LT
315
316 return 0;
ed519ded
RK
317
318 clk_dis:
1c4c4394 319 clk_disable_unprepare(uap->clk);
ed519ded
RK
320 out:
321 return retval;
1da177e4
LT
322}
323
324static void pl010_shutdown(struct uart_port *port)
325{
b70e5e9d
FF
326 struct uart_amba_port *uap =
327 container_of(port, struct uart_amba_port, port);
1b0646a0 328
1da177e4
LT
329 /*
330 * Free the interrupt
331 */
f166d19f 332 free_irq(port->irq, uap);
1da177e4
LT
333
334 /*
335 * disable all interrupts, disable the port
336 */
f166d19f 337 writel(0, port->membase + UART010_CR);
1da177e4
LT
338
339 /* disable break condition and fifos */
f166d19f 340 writel(readb(port->membase + UART010_LCRH) &
98639a67 341 ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN),
f166d19f 342 port->membase + UART010_LCRH);
ed519ded
RK
343
344 /*
345 * Shut down the clock producer
346 */
1c4c4394 347 clk_disable_unprepare(uap->clk);
1da177e4
LT
348}
349
350static void
606d099c 351pl010_set_termios(struct uart_port *port, struct ktermios *termios,
bec5b814 352 const struct ktermios *old)
1da177e4
LT
353{
354 unsigned int lcr_h, old_cr;
355 unsigned long flags;
356 unsigned int baud, quot;
357
358 /*
359 * Ask the core to calculate the divisor for us.
360 */
f166d19f 361 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
1da177e4
LT
362 quot = uart_get_divisor(port, baud);
363
364 switch (termios->c_cflag & CSIZE) {
365 case CS5:
366 lcr_h = UART01x_LCRH_WLEN_5;
367 break;
368 case CS6:
369 lcr_h = UART01x_LCRH_WLEN_6;
370 break;
371 case CS7:
372 lcr_h = UART01x_LCRH_WLEN_7;
373 break;
374 default: // CS8
375 lcr_h = UART01x_LCRH_WLEN_8;
376 break;
377 }
378 if (termios->c_cflag & CSTOPB)
379 lcr_h |= UART01x_LCRH_STP2;
380 if (termios->c_cflag & PARENB) {
381 lcr_h |= UART01x_LCRH_PEN;
382 if (!(termios->c_cflag & PARODD))
383 lcr_h |= UART01x_LCRH_EPS;
384 }
f166d19f 385 if (port->fifosize > 1)
1da177e4
LT
386 lcr_h |= UART01x_LCRH_FEN;
387
01d6461a 388 uart_port_lock_irqsave(port, &flags);
1da177e4
LT
389
390 /*
391 * Update the per-port timeout.
392 */
393 uart_update_timeout(port, termios->c_cflag, baud);
394
f166d19f 395 port->read_status_mask = UART01x_RSR_OE;
1da177e4 396 if (termios->c_iflag & INPCK)
f166d19f 397 port->read_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
ef8b9ddc 398 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
f166d19f 399 port->read_status_mask |= UART01x_RSR_BE;
1da177e4
LT
400
401 /*
402 * Characters to ignore
403 */
f166d19f 404 port->ignore_status_mask = 0;
1da177e4 405 if (termios->c_iflag & IGNPAR)
f166d19f 406 port->ignore_status_mask |= UART01x_RSR_FE | UART01x_RSR_PE;
1da177e4 407 if (termios->c_iflag & IGNBRK) {
f166d19f 408 port->ignore_status_mask |= UART01x_RSR_BE;
1da177e4
LT
409 /*
410 * If we're ignoring parity and break indicators,
411 * ignore overruns too (for real raw support).
412 */
413 if (termios->c_iflag & IGNPAR)
f166d19f 414 port->ignore_status_mask |= UART01x_RSR_OE;
1da177e4
LT
415 }
416
417 /*
418 * Ignore all characters if CREAD is not set.
419 */
420 if ((termios->c_cflag & CREAD) == 0)
f166d19f 421 port->ignore_status_mask |= UART_DUMMY_RSR_RX;
1da177e4 422
f166d19f 423 old_cr = readb(port->membase + UART010_CR) & ~UART010_CR_MSIE;
1da177e4
LT
424
425 if (UART_ENABLE_MS(port, termios->c_cflag))
426 old_cr |= UART010_CR_MSIE;
427
1da177e4
LT
428 /* Set baud rate */
429 quot -= 1;
f166d19f
JS
430 writel((quot & 0xf00) >> 8, port->membase + UART010_LCRM);
431 writel(quot & 0xff, port->membase + UART010_LCRL);
1da177e4
LT
432
433 /*
434 * ----------v----------v----------v----------v-----
435 * NOTE: MUST BE WRITTEN AFTER UARTLCR_M & UARTLCR_L
436 * ----------^----------^----------^----------^-----
437 */
f166d19f
JS
438 writel(lcr_h, port->membase + UART010_LCRH);
439 writel(old_cr, port->membase + UART010_CR);
1da177e4 440
01d6461a 441 uart_port_unlock_irqrestore(port, flags);
1da177e4
LT
442}
443
732a84a0 444static void pl010_set_ldisc(struct uart_port *port, struct ktermios *termios)
7ed63d5e 445{
732a84a0 446 if (termios->c_line == N_PPS) {
7ed63d5e 447 port->flags |= UPF_HARDPPS_CD;
01d6461a 448 uart_port_lock_irq(port);
7ed63d5e 449 pl010_enable_ms(port);
01d6461a 450 uart_port_unlock_irq(port);
cab68f89 451 } else {
7ed63d5e 452 port->flags &= ~UPF_HARDPPS_CD;
cab68f89 453 if (!UART_ENABLE_MS(port, termios->c_cflag)) {
01d6461a 454 uart_port_lock_irq(port);
cab68f89 455 pl010_disable_ms(port);
01d6461a 456 uart_port_unlock_irq(port);
cab68f89
PH
457 }
458 }
7ed63d5e
RG
459}
460
1da177e4
LT
461static const char *pl010_type(struct uart_port *port)
462{
463 return port->type == PORT_AMBA ? "AMBA" : NULL;
464}
465
466/*
467 * Release the memory region(s) being used by 'port'
468 */
469static void pl010_release_port(struct uart_port *port)
470{
471 release_mem_region(port->mapbase, UART_PORT_SIZE);
472}
473
474/*
475 * Request the memory region(s) being used by 'port'
476 */
477static int pl010_request_port(struct uart_port *port)
478{
479 return request_mem_region(port->mapbase, UART_PORT_SIZE, "uart-pl010")
480 != NULL ? 0 : -EBUSY;
481}
482
483/*
484 * Configure/autoconfigure the port.
485 */
486static void pl010_config_port(struct uart_port *port, int flags)
487{
488 if (flags & UART_CONFIG_TYPE) {
489 port->type = PORT_AMBA;
490 pl010_request_port(port);
491 }
492}
493
494/*
495 * verify the new serial_struct (for TIOCSSERIAL).
496 */
497static int pl010_verify_port(struct uart_port *port, struct serial_struct *ser)
498{
499 int ret = 0;
500 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
501 ret = -EINVAL;
a62c4133 502 if (ser->irq < 0 || ser->irq >= nr_irqs)
1da177e4
LT
503 ret = -EINVAL;
504 if (ser->baud_base < 9600)
505 ret = -EINVAL;
506 return ret;
507}
508
2331e068 509static const struct uart_ops amba_pl010_pops = {
1da177e4
LT
510 .tx_empty = pl010_tx_empty,
511 .set_mctrl = pl010_set_mctrl,
512 .get_mctrl = pl010_get_mctrl,
513 .stop_tx = pl010_stop_tx,
514 .start_tx = pl010_start_tx,
515 .stop_rx = pl010_stop_rx,
516 .enable_ms = pl010_enable_ms,
517 .break_ctl = pl010_break_ctl,
518 .startup = pl010_startup,
519 .shutdown = pl010_shutdown,
520 .set_termios = pl010_set_termios,
7ed63d5e 521 .set_ldisc = pl010_set_ldisc,
1da177e4
LT
522 .type = pl010_type,
523 .release_port = pl010_release_port,
524 .request_port = pl010_request_port,
525 .config_port = pl010_config_port,
526 .verify_port = pl010_verify_port,
527};
528
fbb18a27 529static struct uart_amba_port *amba_ports[UART_NR];
1da177e4
LT
530
531#ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE
532
3f8bab17 533static void pl010_console_putchar(struct uart_port *port, unsigned char ch)
d358788f 534{
98639a67
RK
535 unsigned int status;
536
537 do {
f166d19f 538 status = readb(port->membase + UART01x_FR);
d358788f 539 barrier();
98639a67 540 } while (!UART_TX_READY(status));
f166d19f 541 writel(ch, port->membase + UART01x_DR);
d358788f
RK
542}
543
1da177e4
LT
544static void
545pl010_console_write(struct console *co, const char *s, unsigned int count)
546{
1b0646a0 547 struct uart_amba_port *uap = amba_ports[co->index];
f166d19f 548 struct uart_port *port = &uap->port;
1da177e4 549 unsigned int status, old_cr;
1da177e4 550
ed519ded
RK
551 clk_enable(uap->clk);
552
1da177e4
LT
553 /*
554 * First save the CR then disable the interrupts
555 */
f166d19f
JS
556 old_cr = readb(port->membase + UART010_CR);
557 writel(UART01x_CR_UARTEN, port->membase + UART010_CR);
1da177e4 558
f166d19f 559 uart_console_write(port, s, count, pl010_console_putchar);
1da177e4
LT
560
561 /*
562 * Finally, wait for transmitter to become empty
563 * and restore the TCR
564 */
565 do {
f166d19f 566 status = readb(port->membase + UART01x_FR);
98639a67 567 barrier();
1da177e4 568 } while (status & UART01x_FR_BUSY);
f166d19f 569 writel(old_cr, port->membase + UART010_CR);
ed519ded
RK
570
571 clk_disable(uap->clk);
1da177e4
LT
572}
573
574static void __init
1b0646a0 575pl010_console_get_options(struct uart_amba_port *uap, int *baud,
1da177e4
LT
576 int *parity, int *bits)
577{
1b0646a0 578 if (readb(uap->port.membase + UART010_CR) & UART01x_CR_UARTEN) {
1da177e4 579 unsigned int lcr_h, quot;
1b0646a0 580 lcr_h = readb(uap->port.membase + UART010_LCRH);
1da177e4
LT
581
582 *parity = 'n';
583 if (lcr_h & UART01x_LCRH_PEN) {
584 if (lcr_h & UART01x_LCRH_EPS)
585 *parity = 'e';
586 else
587 *parity = 'o';
588 }
589
590 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
591 *bits = 7;
592 else
593 *bits = 8;
594
1b0646a0
RK
595 quot = readb(uap->port.membase + UART010_LCRL) |
596 readb(uap->port.membase + UART010_LCRM) << 8;
597 *baud = uap->port.uartclk / (16 * (quot + 1));
1da177e4
LT
598 }
599}
600
601static int __init pl010_console_setup(struct console *co, char *options)
602{
1b0646a0 603 struct uart_amba_port *uap;
1da177e4
LT
604 int baud = 38400;
605 int bits = 8;
606 int parity = 'n';
607 int flow = 'n';
36b8f1e2 608 int ret;
1da177e4
LT
609
610 /*
611 * Check whether an invalid uart number has been specified, and
612 * if so, search for the first available port that does have
613 * console support.
614 */
615 if (co->index >= UART_NR)
616 co->index = 0;
1b0646a0
RK
617 uap = amba_ports[co->index];
618 if (!uap)
d28122a5 619 return -ENODEV;
1da177e4 620
36b8f1e2
RK
621 ret = clk_prepare(uap->clk);
622 if (ret)
623 return ret;
624
ed519ded
RK
625 uap->port.uartclk = clk_get_rate(uap->clk);
626
1da177e4
LT
627 if (options)
628 uart_parse_options(options, &baud, &parity, &bits, &flow);
629 else
1b0646a0 630 pl010_console_get_options(uap, &baud, &parity, &bits);
1da177e4 631
1b0646a0 632 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
1da177e4
LT
633}
634
2d93486c 635static struct uart_driver amba_reg;
1da177e4
LT
636static struct console amba_console = {
637 .name = "ttyAM",
638 .write = pl010_console_write,
639 .device = uart_console_device,
640 .setup = pl010_console_setup,
641 .flags = CON_PRINTBUFFER,
642 .index = -1,
643 .data = &amba_reg,
644};
645
1da177e4
LT
646#define AMBA_CONSOLE &amba_console
647#else
648#define AMBA_CONSOLE NULL
649#endif
650
bd8766b1 651static DEFINE_MUTEX(amba_reg_lock);
1da177e4
LT
652static struct uart_driver amba_reg = {
653 .owner = THIS_MODULE,
654 .driver_name = "ttyAM",
655 .dev_name = "ttyAM",
656 .major = SERIAL_AMBA_MAJOR,
657 .minor = SERIAL_AMBA_MINOR,
658 .nr = UART_NR,
659 .cons = AMBA_CONSOLE,
660};
661
aa25afad 662static int pl010_probe(struct amba_device *dev, const struct amba_id *id)
1da177e4 663{
1b0646a0 664 struct uart_amba_port *uap;
fbb18a27
RK
665 void __iomem *base;
666 int i, ret;
1da177e4 667
fbb18a27
RK
668 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
669 if (amba_ports[i] == NULL)
670 break;
1da177e4 671
44acd260
TB
672 if (i == ARRAY_SIZE(amba_ports))
673 return -EBUSY;
1da177e4 674
44acd260
TB
675 uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
676 GFP_KERNEL);
677 if (!uap)
678 return -ENOMEM;
fbb18a27 679
44acd260
TB
680 base = devm_ioremap(&dev->dev, dev->res.start,
681 resource_size(&dev->res));
682 if (!base)
683 return -ENOMEM;
fbb18a27 684
44acd260
TB
685 uap->clk = devm_clk_get(&dev->dev, NULL);
686 if (IS_ERR(uap->clk))
687 return PTR_ERR(uap->clk);
ed519ded 688
1b0646a0
RK
689 uap->port.dev = &dev->dev;
690 uap->port.mapbase = dev->res.start;
691 uap->port.membase = base;
692 uap->port.iotype = UPIO_MEM;
693 uap->port.irq = dev->irq[0];
1b0646a0 694 uap->port.fifosize = 16;
5f99fca9 695 uap->port.has_sysrq = IS_ENABLED(CONFIG_SERIAL_AMBA_PL010_CONSOLE);
1b0646a0
RK
696 uap->port.ops = &amba_pl010_pops;
697 uap->port.flags = UPF_BOOT_AUTOCONF;
698 uap->port.line = i;
699 uap->dev = dev;
574de559 700 uap->data = dev_get_platdata(&dev->dev);
1b0646a0
RK
701
702 amba_ports[i] = uap;
703
704 amba_set_drvdata(dev, uap);
bd8766b1
SS
705
706 mutex_lock(&amba_reg_lock);
707 if (!amba_reg.state) {
708 ret = uart_register_driver(&amba_reg);
709 if (ret < 0) {
710 mutex_unlock(&amba_reg_lock);
711 dev_err(uap->port.dev,
712 "Failed to register AMBA-PL010 driver\n");
713 return ret;
714 }
715 }
716 mutex_unlock(&amba_reg_lock);
717
1b0646a0 718 ret = uart_add_one_port(&amba_reg, &uap->port);
44acd260 719 if (ret)
fbb18a27 720 amba_ports[i] = NULL;
44acd260 721
fbb18a27 722 return ret;
1da177e4
LT
723}
724
3fd269e7 725static void pl010_remove(struct amba_device *dev)
1da177e4 726{
1b0646a0 727 struct uart_amba_port *uap = amba_get_drvdata(dev);
fbb18a27 728 int i;
bd8766b1 729 bool busy = false;
1da177e4 730
1b0646a0 731 uart_remove_one_port(&amba_reg, &uap->port);
fbb18a27
RK
732
733 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
1b0646a0 734 if (amba_ports[i] == uap)
fbb18a27 735 amba_ports[i] = NULL;
bd8766b1
SS
736 else if (amba_ports[i])
737 busy = true;
738
739 if (!busy)
740 uart_unregister_driver(&amba_reg);
1da177e4
LT
741}
742
95468240
UH
743#ifdef CONFIG_PM_SLEEP
744static int pl010_suspend(struct device *dev)
1da177e4 745{
95468240 746 struct uart_amba_port *uap = dev_get_drvdata(dev);
1da177e4
LT
747
748 if (uap)
749 uart_suspend_port(&amba_reg, &uap->port);
750
751 return 0;
752}
753
95468240 754static int pl010_resume(struct device *dev)
1da177e4 755{
95468240 756 struct uart_amba_port *uap = dev_get_drvdata(dev);
1da177e4
LT
757
758 if (uap)
759 uart_resume_port(&amba_reg, &uap->port);
760
761 return 0;
762}
95468240
UH
763#endif
764
765static SIMPLE_DEV_PM_OPS(pl010_dev_pm_ops, pl010_suspend, pl010_resume);
1da177e4 766
5337e549 767static const struct amba_id pl010_ids[] = {
1da177e4
LT
768 {
769 .id = 0x00041010,
770 .mask = 0x000fffff,
771 },
772 { 0, 0 },
773};
774
a664a119
DM
775MODULE_DEVICE_TABLE(amba, pl010_ids);
776
1da177e4
LT
777static struct amba_driver pl010_driver = {
778 .drv = {
779 .name = "uart-pl010",
95468240 780 .pm = &pl010_dev_pm_ops,
1da177e4
LT
781 },
782 .id_table = pl010_ids,
783 .probe = pl010_probe,
784 .remove = pl010_remove,
1da177e4
LT
785};
786
787static int __init pl010_init(void)
788{
d87a6d95 789 printk(KERN_INFO "Serial: AMBA driver\n");
1da177e4 790
bd8766b1 791 return amba_driver_register(&pl010_driver);
1da177e4
LT
792}
793
794static void __exit pl010_exit(void)
795{
796 amba_driver_unregister(&pl010_driver);
1da177e4
LT
797}
798
799module_init(pl010_init);
800module_exit(pl010_exit);
801
802MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
d87a6d95 803MODULE_DESCRIPTION("ARM AMBA serial port driver");
1da177e4 804MODULE_LICENSE("GPL");