Linux Audio

Check our new training course

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