Linux Audio

Check our new training course

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