blob: 9de26ba48d20461facf62159b59598845d2a606a [file] [log] [blame]
Vineet Gupta2ac4ad22012-10-27 12:47:12 +05301/*
2 * ARC On-Chip(fpga) UART Driver
3 *
4 * Copyright (C) 2010-2012 Synopsys, Inc. (www.synopsys.com)
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * vineetg: July 10th 2012
11 * -Decoupled the driver from arch/arc
12 * +Using platform_get_resource() for irq/membase (thx to bfin_uart.c)
13 * +Using early_platform_xxx() for early console (thx to mach-shmobile/xxx)
14 *
15 * Vineetg: Aug 21st 2010
16 * -Is uart_tx_stopped() not done in tty write path as it has already been
17 * taken care of, in serial core
18 *
19 * Vineetg: Aug 18th 2010
20 * -New Serial Core based ARC UART driver
21 * -Derived largely from blackfin driver albiet with some major tweaks
22 *
23 * TODO:
24 * -check if sysreq works
25 */
26
27#if defined(CONFIG_SERIAL_ARC_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
28#define SUPPORT_SYSRQ
29#endif
30
31#include <linux/module.h>
32#include <linux/serial.h>
33#include <linux/console.h>
34#include <linux/sysrq.h>
35#include <linux/platform_device.h>
36#include <linux/tty.h>
37#include <linux/tty_flip.h>
38#include <linux/serial_core.h>
39#include <linux/io.h>
40
41/*************************************
42 * ARC UART Hardware Specs
43 ************************************/
44#define ARC_UART_TX_FIFO_SIZE 1
45
46/*
47 * UART Register set (this is not a Standards Compliant IP)
48 * Also each reg is Word aligned, but only 8 bits wide
49 */
50#define R_ID0 0
51#define R_ID1 4
52#define R_ID2 8
53#define R_ID3 12
54#define R_DATA 16
55#define R_STS 20
56#define R_BAUDL 24
57#define R_BAUDH 28
58
59/* Bits for UART Status Reg (R/W) */
60#define RXIENB 0x04 /* Receive Interrupt Enable */
61#define TXIENB 0x40 /* Transmit Interrupt Enable */
62
63#define RXEMPTY 0x20 /* Receive FIFO Empty: No char receivede */
64#define TXEMPTY 0x80 /* Transmit FIFO Empty, thus char can be written into */
65
66#define RXFULL 0x08 /* Receive FIFO full */
67#define RXFULL1 0x10 /* Receive FIFO has space for 1 char (tot space=4) */
68
69#define RXFERR 0x01 /* Frame Error: Stop Bit not detected */
70#define RXOERR 0x02 /* OverFlow Err: Char recv but RXFULL still set */
71
72/* Uart bit fiddling helpers: lowest level */
73#define RBASE(uart, reg) (uart->port.membase + reg)
74#define UART_REG_SET(u, r, v) writeb((v), RBASE(u, r))
75#define UART_REG_GET(u, r) readb(RBASE(u, r))
76
77#define UART_REG_OR(u, r, v) UART_REG_SET(u, r, UART_REG_GET(u, r) | (v))
78#define UART_REG_CLR(u, r, v) UART_REG_SET(u, r, UART_REG_GET(u, r) & ~(v))
79
80/* Uart bit fiddling helpers: API level */
81#define UART_SET_DATA(uart, val) UART_REG_SET(uart, R_DATA, val)
82#define UART_GET_DATA(uart) UART_REG_GET(uart, R_DATA)
83
84#define UART_SET_BAUDH(uart, val) UART_REG_SET(uart, R_BAUDH, val)
85#define UART_SET_BAUDL(uart, val) UART_REG_SET(uart, R_BAUDL, val)
86
87#define UART_CLR_STATUS(uart, val) UART_REG_CLR(uart, R_STS, val)
88#define UART_GET_STATUS(uart) UART_REG_GET(uart, R_STS)
89
90#define UART_ALL_IRQ_DISABLE(uart) UART_REG_CLR(uart, R_STS, RXIENB|TXIENB)
91#define UART_RX_IRQ_DISABLE(uart) UART_REG_CLR(uart, R_STS, RXIENB)
92#define UART_TX_IRQ_DISABLE(uart) UART_REG_CLR(uart, R_STS, TXIENB)
93
94#define UART_ALL_IRQ_ENABLE(uart) UART_REG_OR(uart, R_STS, RXIENB|TXIENB)
95#define UART_RX_IRQ_ENABLE(uart) UART_REG_OR(uart, R_STS, RXIENB)
96#define UART_TX_IRQ_ENABLE(uart) UART_REG_OR(uart, R_STS, TXIENB)
97
98#define ARC_SERIAL_DEV_NAME "ttyARC"
99
100struct arc_uart_port {
101 struct uart_port port;
102 unsigned long baud;
103 int is_emulated; /* H/w vs. Instruction Set Simulator */
104};
105
106#define to_arc_port(uport) container_of(uport, struct arc_uart_port, port)
107
108static struct arc_uart_port arc_uart_ports[CONFIG_SERIAL_ARC_NR_PORTS];
109
110#ifdef CONFIG_SERIAL_ARC_CONSOLE
111static struct console arc_console;
112#endif
113
114#define DRIVER_NAME "arc-uart"
115
116static struct uart_driver arc_uart_driver = {
117 .owner = THIS_MODULE,
118 .driver_name = DRIVER_NAME,
119 .dev_name = ARC_SERIAL_DEV_NAME,
120 .major = 0,
121 .minor = 0,
122 .nr = CONFIG_SERIAL_ARC_NR_PORTS,
123#ifdef CONFIG_SERIAL_ARC_CONSOLE
124 .cons = &arc_console,
125#endif
126};
127
128static void arc_serial_stop_rx(struct uart_port *port)
129{
130 struct arc_uart_port *uart = to_arc_port(port);
131
132 UART_RX_IRQ_DISABLE(uart);
133}
134
135static void arc_serial_stop_tx(struct uart_port *port)
136{
137 struct arc_uart_port *uart = to_arc_port(port);
138
139 while (!(UART_GET_STATUS(uart) & TXEMPTY))
140 cpu_relax();
141
142 UART_TX_IRQ_DISABLE(uart);
143}
144
145/*
146 * Return TIOCSER_TEMT when transmitter is not busy.
147 */
148static unsigned int arc_serial_tx_empty(struct uart_port *port)
149{
150 struct arc_uart_port *uart = to_arc_port(port);
151 unsigned int stat;
152
153 stat = UART_GET_STATUS(uart);
154 if (stat & TXEMPTY)
155 return TIOCSER_TEMT;
156
157 return 0;
158}
159
160/*
161 * Driver internal routine, used by both tty(serial core) as well as tx-isr
162 * -Called under spinlock in either cases
163 * -also tty->stopped / tty->hw_stopped has already been checked
164 * = by uart_start( ) before calling us
165 * = tx_ist checks that too before calling
166 */
167static void arc_serial_tx_chars(struct arc_uart_port *uart)
168{
169 struct circ_buf *xmit = &uart->port.state->xmit;
170 int sent = 0;
171 unsigned char ch;
172
173 if (unlikely(uart->port.x_char)) {
174 UART_SET_DATA(uart, uart->port.x_char);
175 uart->port.icount.tx++;
176 uart->port.x_char = 0;
177 sent = 1;
178 } else if (xmit->tail != xmit->head) { /* TODO: uart_circ_empty */
179 ch = xmit->buf[xmit->tail];
180 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
181 uart->port.icount.tx++;
182 while (!(UART_GET_STATUS(uart) & TXEMPTY))
183 cpu_relax();
184 UART_SET_DATA(uart, ch);
185 sent = 1;
186 }
187
188 /*
189 * If num chars in xmit buffer are too few, ask tty layer for more.
190 * By Hard ISR to schedule processing in software interrupt part
191 */
192 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
193 uart_write_wakeup(&uart->port);
194
195 if (sent)
196 UART_TX_IRQ_ENABLE(uart);
197}
198
199/*
200 * port is locked and interrupts are disabled
201 * uart_start( ) calls us under the port spinlock irqsave
202 */
203static void arc_serial_start_tx(struct uart_port *port)
204{
205 struct arc_uart_port *uart = to_arc_port(port);
206
207 arc_serial_tx_chars(uart);
208}
209
210static void arc_serial_rx_chars(struct arc_uart_port *uart)
211{
212 struct tty_struct *tty = tty_port_tty_get(&uart->port.state->port);
213 unsigned int status, ch, flg = 0;
214
215 if (!tty)
216 return;
217
218 /*
219 * UART has 4 deep RX-FIFO. Driver's recongnition of this fact
220 * is very subtle. Here's how ...
221 * Upon getting a RX-Intr, such that RX-EMPTY=0, meaning data available,
222 * driver reads the DATA Reg and keeps doing that in a loop, until
223 * RX-EMPTY=1. Multiple chars being avail, with a single Interrupt,
224 * before RX-EMPTY=0, implies some sort of buffering going on in the
225 * controller, which is indeed the Rx-FIFO.
226 */
227 while (!((status = UART_GET_STATUS(uart)) & RXEMPTY)) {
228
229 ch = UART_GET_DATA(uart);
230 uart->port.icount.rx++;
231
232 if (unlikely(status & (RXOERR | RXFERR))) {
233 if (status & RXOERR) {
234 uart->port.icount.overrun++;
235 flg = TTY_OVERRUN;
236 UART_CLR_STATUS(uart, RXOERR);
237 }
238
239 if (status & RXFERR) {
240 uart->port.icount.frame++;
241 flg = TTY_FRAME;
242 UART_CLR_STATUS(uart, RXFERR);
243 }
244 } else
245 flg = TTY_NORMAL;
246
247 if (unlikely(uart_handle_sysrq_char(&uart->port, ch)))
248 goto done;
249
250 uart_insert_char(&uart->port, status, RXOERR, ch, flg);
251
252done:
253 tty_flip_buffer_push(tty);
254 }
255
256 tty_kref_put(tty);
257}
258
259/*
260 * A note on the Interrupt handling state machine of this driver
261 *
262 * kernel printk writes funnel thru the console driver framework and in order
263 * to keep things simple as well as efficient, it writes to UART in polled
264 * mode, in one shot, and exits.
265 *
266 * OTOH, Userland output (via tty layer), uses interrupt based writes as there
267 * can be undeterministic delay between char writes.
268 *
269 * Thus Rx-interrupts are always enabled, while tx-interrupts are by default
270 * disabled.
271 *
272 * When tty has some data to send out, serial core calls driver's start_tx
273 * which
274 * -checks-if-tty-buffer-has-char-to-send
275 * -writes-data-to-uart
276 * -enable-tx-intr
277 *
278 * Once data bits are pushed out, controller raises the Tx-room-avail-Interrupt.
279 * The first thing Tx ISR does is disable further Tx interrupts (as this could
280 * be the last char to send, before settling down into the quiet polled mode).
281 * It then calls the exact routine used by tty layer write to send out any
282 * more char in tty buffer. In case of sending, it re-enables Tx-intr. In case
283 * of no data, it remains disabled.
284 * This is how the transmit state machine is dynamically switched on/off
285 */
286
287static irqreturn_t arc_serial_isr(int irq, void *dev_id)
288{
289 struct arc_uart_port *uart = dev_id;
290 unsigned int status;
291
292 status = UART_GET_STATUS(uart);
293
294 /*
295 * Single IRQ for both Rx (data available) Tx (room available) Interrupt
296 * notifications from the UART Controller.
297 * To demultiplex between the two, we check the relevant bits
298 */
299 if ((status & RXIENB) && !(status & RXEMPTY)) {
300
301 /* already in ISR, no need of xx_irqsave */
302 spin_lock(&uart->port.lock);
303 arc_serial_rx_chars(uart);
304 spin_unlock(&uart->port.lock);
305 }
306
307 if ((status & TXIENB) && (status & TXEMPTY)) {
308
309 /* Unconditionally disable further Tx-Interrupts.
310 * will be enabled by tx_chars() if needed.
311 */
312 UART_TX_IRQ_DISABLE(uart);
313
314 spin_lock(&uart->port.lock);
315
316 if (!uart_tx_stopped(&uart->port))
317 arc_serial_tx_chars(uart);
318
319 spin_unlock(&uart->port.lock);
320 }
321
322 return IRQ_HANDLED;
323}
324
325static unsigned int arc_serial_get_mctrl(struct uart_port *port)
326{
327 /*
328 * Pretend we have a Modem status reg and following bits are
329 * always set, to satify the serial core state machine
330 * (DSR) Data Set Ready
331 * (CTS) Clear To Send
332 * (CAR) Carrier Detect
333 */
334 return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
335}
336
337static void arc_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
338{
339 /* MCR not present */
340}
341
342/* Enable Modem Status Interrupts */
343
344static void arc_serial_enable_ms(struct uart_port *port)
345{
346 /* MSR not present */
347}
348
349static void arc_serial_break_ctl(struct uart_port *port, int break_state)
350{
351 /* ARC UART doesn't support sending Break signal */
352}
353
354static int arc_serial_startup(struct uart_port *port)
355{
356 struct arc_uart_port *uart = to_arc_port(port);
357
358 /* Before we hook up the ISR, Disable all UART Interrupts */
359 UART_ALL_IRQ_DISABLE(uart);
360
361 if (request_irq(uart->port.irq, arc_serial_isr, 0, "arc uart rx-tx",
362 uart)) {
363 dev_warn(uart->port.dev, "Unable to attach ARC UART intr\n");
364 return -EBUSY;
365 }
366
367 UART_RX_IRQ_ENABLE(uart); /* Only Rx IRQ enabled to begin with */
368
369 return 0;
370}
371
372/* This is not really needed */
373static void arc_serial_shutdown(struct uart_port *port)
374{
375 struct arc_uart_port *uart = to_arc_port(port);
376 free_irq(uart->port.irq, uart);
377}
378
379static void
380arc_serial_set_termios(struct uart_port *port, struct ktermios *new,
381 struct ktermios *old)
382{
383 struct arc_uart_port *uart = to_arc_port(port);
384 unsigned int baud, uartl, uarth, hw_val;
385 unsigned long flags;
386
387 /*
388 * Use the generic handler so that any specially encoded baud rates
389 * such as SPD_xx flags or "%B0" can be handled
390 * Max Baud I suppose will not be more than current 115K * 4
391 * Formula for ARC UART is: hw-val = ((CLK/(BAUD*4)) -1)
392 * spread over two 8-bit registers
393 */
394 baud = uart_get_baud_rate(port, new, old, 0, 460800);
395
396 hw_val = port->uartclk / (uart->baud * 4) - 1;
397 uartl = hw_val & 0xFF;
398 uarth = (hw_val >> 8) & 0xFF;
399
400 /*
401 * UART ISS(Instruction Set simulator) emulation has a subtle bug:
402 * A existing value of Baudh = 0 is used as a indication to startup
403 * it's internal state machine.
404 * Thus if baudh is set to 0, 2 times, it chokes.
405 * This happens with BAUD=115200 and the formaula above
406 * Until that is fixed, when running on ISS, we will set baudh to !0
407 */
408 if (uart->is_emulated)
409 uarth = 1;
410
411 spin_lock_irqsave(&port->lock, flags);
412
413 UART_ALL_IRQ_DISABLE(uart);
414
415 UART_SET_BAUDL(uart, uartl);
416 UART_SET_BAUDH(uart, uarth);
417
418 UART_RX_IRQ_ENABLE(uart);
419
420 /*
421 * UART doesn't support Parity/Hardware Flow Control;
422 * Only supports 8N1 character size
423 */
424 new->c_cflag &= ~(CMSPAR|CRTSCTS|CSIZE);
425 new->c_cflag |= CS8;
426
427 if (old)
428 tty_termios_copy_hw(new, old);
429
430 /* Don't rewrite B0 */
431 if (tty_termios_baud_rate(new))
432 tty_termios_encode_baud_rate(new, baud, baud);
433
434 uart_update_timeout(port, new->c_cflag, baud);
435
436 spin_unlock_irqrestore(&port->lock, flags);
437}
438
439static const char *arc_serial_type(struct uart_port *port)
440{
441 struct arc_uart_port *uart = to_arc_port(port);
442
443 return uart->port.type == PORT_ARC ? DRIVER_NAME : NULL;
444}
445
446static void arc_serial_release_port(struct uart_port *port)
447{
448}
449
450static int arc_serial_request_port(struct uart_port *port)
451{
452 return 0;
453}
454
455/*
456 * Verify the new serial_struct (for TIOCSSERIAL).
457 */
458static int
459arc_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
460{
461 if (port->type != PORT_UNKNOWN && ser->type != PORT_ARC)
462 return -EINVAL;
463
464 return 0;
465}
466
467/*
468 * Configure/autoconfigure the port.
469 */
470static void arc_serial_config_port(struct uart_port *port, int flags)
471{
472 struct arc_uart_port *uart = to_arc_port(port);
473
474 if (flags & UART_CONFIG_TYPE)
475 uart->port.type = PORT_ARC;
476}
477
478#if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_ARC_CONSOLE)
479
480static void arc_serial_poll_putchar(struct uart_port *port, unsigned char chr)
481{
482 struct arc_uart_port *uart = to_arc_port(port);
483
484 while (!(UART_GET_STATUS(uart) & TXEMPTY))
485 cpu_relax();
486
487 UART_SET_DATA(uart, chr);
488}
489#endif
490
491#ifdef CONFIG_CONSOLE_POLL
492static int arc_serial_poll_getchar(struct uart_port *port)
493{
494 struct arc_uart_port *uart = to_arc_port(port);
495 unsigned char chr;
496
497 while (!(UART_GET_STATUS(uart) & RXEMPTY))
498 cpu_relax();
499
500 chr = UART_GET_DATA(uart);
501 return chr;
502}
503#endif
504
505static struct uart_ops arc_serial_pops = {
506 .tx_empty = arc_serial_tx_empty,
507 .set_mctrl = arc_serial_set_mctrl,
508 .get_mctrl = arc_serial_get_mctrl,
509 .stop_tx = arc_serial_stop_tx,
510 .start_tx = arc_serial_start_tx,
511 .stop_rx = arc_serial_stop_rx,
512 .enable_ms = arc_serial_enable_ms,
513 .break_ctl = arc_serial_break_ctl,
514 .startup = arc_serial_startup,
515 .shutdown = arc_serial_shutdown,
516 .set_termios = arc_serial_set_termios,
517 .type = arc_serial_type,
518 .release_port = arc_serial_release_port,
519 .request_port = arc_serial_request_port,
520 .config_port = arc_serial_config_port,
521 .verify_port = arc_serial_verify_port,
522#ifdef CONFIG_CONSOLE_POLL
523 .poll_put_char = arc_serial_poll_putchar,
524 .poll_get_char = arc_serial_poll_getchar,
525#endif
526};
527
Bill Pemberton9671f092012-11-19 13:21:50 -0500528static int
Vineet Gupta026bb292013-01-11 11:50:20 +0530529arc_uart_init_one(struct platform_device *pdev, int dev_id)
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530530{
531 struct resource *res, *res2;
532 unsigned long *plat_data;
Vineet Gupta026bb292013-01-11 11:50:20 +0530533 struct arc_uart_port *uart = &arc_uart_ports[dev_id];
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530534
535 plat_data = ((unsigned long *)(pdev->dev.platform_data));
536 uart->baud = plat_data[0];
537
538 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
539 if (!res)
540 return -ENODEV;
541
542 res2 = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
543 if (!res2)
544 return -ENODEV;
545
546 uart->port.mapbase = res->start;
547 uart->port.membase = ioremap_nocache(res->start, resource_size(res));
548 if (!uart->port.membase)
549 /* No point of dev_err since UART itself is hosed here */
550 return -ENXIO;
551
552 uart->port.irq = res2->start;
553 uart->port.dev = &pdev->dev;
554 uart->port.iotype = UPIO_MEM;
555 uart->port.flags = UPF_BOOT_AUTOCONF;
Vineet Gupta026bb292013-01-11 11:50:20 +0530556 uart->port.line = dev_id;
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530557 uart->port.ops = &arc_serial_pops;
558
559 uart->port.uartclk = plat_data[1];
560 uart->port.fifosize = ARC_UART_TX_FIFO_SIZE;
561
562 /*
563 * uart_insert_char( ) uses it in decideding whether to ignore a
564 * char or not. Explicitly setting it here, removes the subtelty
565 */
566 uart->port.ignore_status_mask = 0;
567
568 /* Real Hardware vs. emulated to work around a bug */
569 uart->is_emulated = !!plat_data[2];
570
571 return 0;
572}
573
574#ifdef CONFIG_SERIAL_ARC_CONSOLE
575
Bill Pemberton9671f092012-11-19 13:21:50 -0500576static int arc_serial_console_setup(struct console *co, char *options)
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530577{
578 struct uart_port *port;
579 int baud = 115200;
580 int bits = 8;
581 int parity = 'n';
582 int flow = 'n';
583
584 if (co->index < 0 || co->index >= CONFIG_SERIAL_ARC_NR_PORTS)
585 return -ENODEV;
586
587 /*
588 * The uart port backing the console (e.g. ttyARC1) might not have been
589 * init yet. If so, defer the console setup to after the port.
590 */
591 port = &arc_uart_ports[co->index].port;
592 if (!port->membase)
593 return -ENODEV;
594
595 if (options)
596 uart_parse_options(options, &baud, &parity, &bits, &flow);
597
598 /*
599 * Serial core will call port->ops->set_termios( )
600 * which will set the baud reg
601 */
602 return uart_set_options(port, co, baud, parity, bits, flow);
603}
604
605static void arc_serial_console_putchar(struct uart_port *port, int ch)
606{
607 arc_serial_poll_putchar(port, (unsigned char)ch);
608}
609
610/*
611 * Interrupts are disabled on entering
612 */
613static void arc_serial_console_write(struct console *co, const char *s,
614 unsigned int count)
615{
616 struct uart_port *port = &arc_uart_ports[co->index].port;
617 unsigned long flags;
618
619 spin_lock_irqsave(&port->lock, flags);
620 uart_console_write(port, s, count, arc_serial_console_putchar);
621 spin_unlock_irqrestore(&port->lock, flags);
622}
623
624static struct console arc_console = {
625 .name = ARC_SERIAL_DEV_NAME,
626 .write = arc_serial_console_write,
627 .device = uart_console_device,
628 .setup = arc_serial_console_setup,
629 .flags = CON_PRINTBUFFER,
630 .index = -1,
631 .data = &arc_uart_driver
632};
633
634static __init void early_serial_write(struct console *con, const char *s,
635 unsigned int n)
636{
637 struct uart_port *port = &arc_uart_ports[con->index].port;
638 unsigned int i;
639
640 for (i = 0; i < n; i++, s++) {
641 if (*s == '\n')
642 arc_serial_poll_putchar(port, '\r');
643 arc_serial_poll_putchar(port, *s);
644 }
645}
646
647static struct __initdata console arc_early_serial_console = {
648 .name = "early_ARCuart",
649 .write = early_serial_write,
650 .flags = CON_PRINTBUFFER | CON_BOOT,
651 .index = -1
652};
653
Vineet Guptae163d1f2013-01-11 11:50:21 +0530654static int __init arc_serial_probe_earlyprintk(struct platform_device *pdev)
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530655{
Vineet Gupta026bb292013-01-11 11:50:20 +0530656 int dev_id = pdev->id < 0 ? 0 : pdev->id;
657 int rc;
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530658
Vineet Gupta026bb292013-01-11 11:50:20 +0530659 arc_early_serial_console.index = dev_id;
660
661 rc = arc_uart_init_one(pdev, dev_id);
662 if (rc)
663 panic("early console init failed\n");
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530664
665 arc_serial_console_setup(&arc_early_serial_console, NULL);
666
667 register_console(&arc_early_serial_console);
668 return 0;
669}
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530670#endif /* CONFIG_SERIAL_ARC_CONSOLE */
671
Bill Pemberton9671f092012-11-19 13:21:50 -0500672static int arc_serial_probe(struct platform_device *pdev)
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530673{
Vineet Gupta026bb292013-01-11 11:50:20 +0530674 int rc, dev_id;
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530675
Vineet Gupta026bb292013-01-11 11:50:20 +0530676 dev_id = pdev->id < 0 ? 0 : pdev->id;
677 rc = arc_uart_init_one(pdev, dev_id);
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530678 if (rc)
679 return rc;
680
Vineet Gupta026bb292013-01-11 11:50:20 +0530681 rc = uart_add_one_port(&arc_uart_driver, &arc_uart_ports[dev_id].port);
682 return rc;
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530683}
684
Bill Pembertonae8d8a12012-11-19 13:26:18 -0500685static int arc_serial_remove(struct platform_device *pdev)
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530686{
687 /* This will never be called */
688 return 0;
689}
690
691static struct platform_driver arc_platform_driver = {
692 .probe = arc_serial_probe,
Bill Pemberton2d47b712012-11-19 13:21:34 -0500693 .remove = arc_serial_remove,
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530694 .driver = {
695 .name = DRIVER_NAME,
696 .owner = THIS_MODULE,
697 },
698};
699
700#ifdef CONFIG_SERIAL_ARC_CONSOLE
Vineet Guptae163d1f2013-01-11 11:50:21 +0530701
702static struct platform_driver early_arc_platform_driver = {
703 .probe = arc_serial_probe_earlyprintk,
704 .remove = arc_serial_remove,
705 .driver = {
706 .name = DRIVER_NAME,
707 .owner = THIS_MODULE,
708 },
709};
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530710/*
711 * Register an early platform driver of "earlyprintk" class.
712 * ARCH platform code installs the driver and probes the early devices
713 * The installation could rely on user specifying earlyprintk=xyx in cmd line
714 * or it could be done independently, for all "earlyprintk" class drivers.
715 * [see arch/arc/plat-arcfpga/platform.c]
716 */
Vineet Guptae163d1f2013-01-11 11:50:21 +0530717early_platform_init("earlyprintk", &early_arc_platform_driver);
Vineet Gupta2ac4ad22012-10-27 12:47:12 +0530718
719#endif /* CONFIG_SERIAL_ARC_CONSOLE */
720
721static int __init arc_serial_init(void)
722{
723 int ret;
724
725 ret = uart_register_driver(&arc_uart_driver);
726 if (ret)
727 return ret;
728
729 ret = platform_driver_register(&arc_platform_driver);
730 if (ret)
731 uart_unregister_driver(&arc_uart_driver);
732
733 return ret;
734}
735
736static void __exit arc_serial_exit(void)
737{
738 platform_driver_unregister(&arc_platform_driver);
739 uart_unregister_driver(&arc_uart_driver);
740}
741
742module_init(arc_serial_init);
743module_exit(arc_serial_exit);
744
745MODULE_LICENSE("GPL");
746MODULE_ALIAS("plat-arcfpga/uart");
747MODULE_AUTHOR("Vineet Gupta");
748MODULE_DESCRIPTION("ARC(Synopsys) On-Chip(fpga) serial driver");