blob: 5da7622e88c30bc86cc7f31693685fa0fface92b [file] [log] [blame]
Benjamin Krill5886188d2009-01-07 10:32:38 +01001/*
2 * Serial Port driver for a NWP uart device
3 *
4 * Copyright (C) 2008 IBM Corp., Benjamin Krill <ben@codiert.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12#include <linux/init.h>
Paul Gortmaker0e648f42011-05-27 10:46:24 -040013#include <linux/export.h>
Benjamin Krill5886188d2009-01-07 10:32:38 +010014#include <linux/console.h>
15#include <linux/serial.h>
16#include <linux/serial_reg.h>
17#include <linux/serial_core.h>
18#include <linux/tty.h>
Jiri Slabyee160a32011-09-01 16:20:57 +020019#include <linux/tty_flip.h>
Benjamin Krill5886188d2009-01-07 10:32:38 +010020#include <linux/irqreturn.h>
21#include <linux/mutex.h>
22#include <linux/of_platform.h>
23#include <linux/of_device.h>
24#include <linux/nwpserial.h>
Pranith Kumar920314d2014-08-20 12:55:45 -040025#include <linux/delay.h>
Benjamin Krill5886188d2009-01-07 10:32:38 +010026#include <asm/prom.h>
27#include <asm/dcr.h>
28
29#define NWPSERIAL_NR 2
30
31#define NWPSERIAL_STATUS_RXVALID 0x1
32#define NWPSERIAL_STATUS_TXFULL 0x2
33
34struct nwpserial_port {
35 struct uart_port port;
36 dcr_host_t dcr_host;
37 unsigned int ier;
38 unsigned int mcr;
39};
40
41static DEFINE_MUTEX(nwpserial_mutex);
42static struct nwpserial_port nwpserial_ports[NWPSERIAL_NR];
43
44static void wait_for_bits(struct nwpserial_port *up, int bits)
45{
46 unsigned int status, tmout = 10000;
47
48 /* Wait up to 10ms for the character(s) to be sent. */
49 do {
50 status = dcr_read(up->dcr_host, UART_LSR);
51
52 if (--tmout == 0)
53 break;
54 udelay(1);
55 } while ((status & bits) != bits);
56}
57
58#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL_CONSOLE
59static void nwpserial_console_putchar(struct uart_port *port, int c)
60{
61 struct nwpserial_port *up;
62 up = container_of(port, struct nwpserial_port, port);
63 /* check if tx buffer is full */
64 wait_for_bits(up, UART_LSR_THRE);
65 dcr_write(up->dcr_host, UART_TX, c);
66 up->port.icount.tx++;
67}
68
69static void
70nwpserial_console_write(struct console *co, const char *s, unsigned int count)
71{
72 struct nwpserial_port *up = &nwpserial_ports[co->index];
73 unsigned long flags;
74 int locked = 1;
75
76 if (oops_in_progress)
77 locked = spin_trylock_irqsave(&up->port.lock, flags);
78 else
79 spin_lock_irqsave(&up->port.lock, flags);
80
81 /* save and disable interrupt */
82 up->ier = dcr_read(up->dcr_host, UART_IER);
83 dcr_write(up->dcr_host, UART_IER, up->ier & ~UART_IER_RDI);
84
85 uart_console_write(&up->port, s, count, nwpserial_console_putchar);
86
Uwe Kleine-Königa7ce2e02010-07-12 17:15:44 +020087 /* wait for transmitter to become empty */
Benjamin Krill5886188d2009-01-07 10:32:38 +010088 while ((dcr_read(up->dcr_host, UART_LSR) & UART_LSR_THRE) == 0)
89 cpu_relax();
90
91 /* restore interrupt state */
92 dcr_write(up->dcr_host, UART_IER, up->ier);
93
94 if (locked)
95 spin_unlock_irqrestore(&up->port.lock, flags);
96}
97
98static struct uart_driver nwpserial_reg;
99static struct console nwpserial_console = {
100 .name = "ttySQ",
101 .write = nwpserial_console_write,
102 .device = uart_console_device,
103 .flags = CON_PRINTBUFFER,
104 .index = -1,
105 .data = &nwpserial_reg,
106};
107#define NWPSERIAL_CONSOLE (&nwpserial_console)
108#else
109#define NWPSERIAL_CONSOLE NULL
110#endif /* CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL_CONSOLE */
111
112/**************************************************************************/
113
114static int nwpserial_request_port(struct uart_port *port)
115{
116 return 0;
117}
118
119static void nwpserial_release_port(struct uart_port *port)
120{
121 /* N/A */
122}
123
124static void nwpserial_config_port(struct uart_port *port, int flags)
125{
126 port->type = PORT_NWPSERIAL;
127}
128
129static irqreturn_t nwpserial_interrupt(int irq, void *dev_id)
130{
131 struct nwpserial_port *up = dev_id;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100132 struct tty_port *port = &up->port.state->port;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100133 irqreturn_t ret;
134 unsigned int iir;
135 unsigned char ch;
136
137 spin_lock(&up->port.lock);
138
139 /* check if the uart was the interrupt source. */
140 iir = dcr_read(up->dcr_host, UART_IIR);
141 if (!iir) {
142 ret = IRQ_NONE;
143 goto out;
144 }
145
146 do {
147 up->port.icount.rx++;
148 ch = dcr_read(up->dcr_host, UART_RX);
149 if (up->port.ignore_status_mask != NWPSERIAL_STATUS_RXVALID)
Jiri Slaby92a19f92013-01-03 15:53:03 +0100150 tty_insert_flip_char(port, ch, TTY_NORMAL);
Benjamin Krill951c4df2009-05-13 05:56:54 +0000151 } while (dcr_read(up->dcr_host, UART_LSR) & UART_LSR_DR);
Benjamin Krill5886188d2009-01-07 10:32:38 +0100152
Viresh Kumar931c0572013-08-19 20:14:22 +0530153 spin_unlock(&up->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100154 tty_flip_buffer_push(port);
Viresh Kumar931c0572013-08-19 20:14:22 +0530155 spin_lock(&up->port.lock);
156
Benjamin Krill5886188d2009-01-07 10:32:38 +0100157 ret = IRQ_HANDLED;
158
Benjamin Krill951c4df2009-05-13 05:56:54 +0000159 /* clear interrupt */
160 dcr_write(up->dcr_host, UART_IIR, 1);
Benjamin Krill5886188d2009-01-07 10:32:38 +0100161out:
162 spin_unlock(&up->port.lock);
163 return ret;
164}
165
166static int nwpserial_startup(struct uart_port *port)
167{
168 struct nwpserial_port *up;
169 int err;
170
171 up = container_of(port, struct nwpserial_port, port);
172
173 /* disable flow control by default */
174 up->mcr = dcr_read(up->dcr_host, UART_MCR) & ~UART_MCR_AFE;
175 dcr_write(up->dcr_host, UART_MCR, up->mcr);
176
177 /* register interrupt handler */
178 err = request_irq(up->port.irq, nwpserial_interrupt,
179 IRQF_SHARED, "nwpserial", up);
180 if (err)
181 return err;
182
183 /* enable interrupts */
184 up->ier = UART_IER_RDI;
185 dcr_write(up->dcr_host, UART_IER, up->ier);
186
187 /* enable receiving */
188 up->port.ignore_status_mask &= ~NWPSERIAL_STATUS_RXVALID;
189
190 return 0;
191}
192
193static void nwpserial_shutdown(struct uart_port *port)
194{
195 struct nwpserial_port *up;
196 up = container_of(port, struct nwpserial_port, port);
197
198 /* disable receiving */
199 up->port.ignore_status_mask |= NWPSERIAL_STATUS_RXVALID;
200
201 /* disable interrupts from this port */
202 up->ier = 0;
203 dcr_write(up->dcr_host, UART_IER, up->ier);
204
205 /* free irq */
Lars-Peter Clausen383d2fc2013-05-20 19:07:30 +0200206 free_irq(up->port.irq, up);
Benjamin Krill5886188d2009-01-07 10:32:38 +0100207}
208
209static int nwpserial_verify_port(struct uart_port *port,
210 struct serial_struct *ser)
211{
212 return -EINVAL;
213}
214
215static const char *nwpserial_type(struct uart_port *port)
216{
217 return port->type == PORT_NWPSERIAL ? "nwpserial" : NULL;
218}
219
220static void nwpserial_set_termios(struct uart_port *port,
221 struct ktermios *termios, struct ktermios *old)
222{
223 struct nwpserial_port *up;
224 up = container_of(port, struct nwpserial_port, port);
225
226 up->port.read_status_mask = NWPSERIAL_STATUS_RXVALID
227 | NWPSERIAL_STATUS_TXFULL;
228
229 up->port.ignore_status_mask = 0;
230 /* ignore all characters if CREAD is not set */
231 if ((termios->c_cflag & CREAD) == 0)
232 up->port.ignore_status_mask |= NWPSERIAL_STATUS_RXVALID;
233
234 /* Copy back the old hardware settings */
235 if (old)
236 tty_termios_copy_hw(termios, old);
237}
238
239static void nwpserial_break_ctl(struct uart_port *port, int ctl)
240{
241 /* N/A */
242}
243
Benjamin Krill5886188d2009-01-07 10:32:38 +0100244static void nwpserial_stop_rx(struct uart_port *port)
245{
246 struct nwpserial_port *up;
247 up = container_of(port, struct nwpserial_port, port);
248 /* don't forward any more data (like !CREAD) */
249 up->port.ignore_status_mask = NWPSERIAL_STATUS_RXVALID;
250}
251
252static void nwpserial_putchar(struct nwpserial_port *up, unsigned char c)
253{
254 /* check if tx buffer is full */
255 wait_for_bits(up, UART_LSR_THRE);
256 dcr_write(up->dcr_host, UART_TX, c);
257 up->port.icount.tx++;
258}
259
260static void nwpserial_start_tx(struct uart_port *port)
261{
262 struct nwpserial_port *up;
263 struct circ_buf *xmit;
264 up = container_of(port, struct nwpserial_port, port);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700265 xmit = &up->port.state->xmit;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100266
267 if (port->x_char) {
268 nwpserial_putchar(up, up->port.x_char);
269 port->x_char = 0;
270 }
271
272 while (!(uart_circ_empty(xmit) || uart_tx_stopped(&up->port))) {
273 nwpserial_putchar(up, xmit->buf[xmit->tail]);
274 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE-1);
275 }
276}
277
278static unsigned int nwpserial_get_mctrl(struct uart_port *port)
279{
280 return 0;
281}
282
283static void nwpserial_set_mctrl(struct uart_port *port, unsigned int mctrl)
284{
285 /* N/A */
286}
287
288static void nwpserial_stop_tx(struct uart_port *port)
289{
290 /* N/A */
291}
292
293static unsigned int nwpserial_tx_empty(struct uart_port *port)
294{
295 struct nwpserial_port *up;
296 unsigned long flags;
297 int ret;
298 up = container_of(port, struct nwpserial_port, port);
299
300 spin_lock_irqsave(&up->port.lock, flags);
301 ret = dcr_read(up->dcr_host, UART_LSR);
302 spin_unlock_irqrestore(&up->port.lock, flags);
303
304 return ret & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
305}
306
307static struct uart_ops nwpserial_pops = {
308 .tx_empty = nwpserial_tx_empty,
309 .set_mctrl = nwpserial_set_mctrl,
310 .get_mctrl = nwpserial_get_mctrl,
311 .stop_tx = nwpserial_stop_tx,
312 .start_tx = nwpserial_start_tx,
313 .stop_rx = nwpserial_stop_rx,
Benjamin Krill5886188d2009-01-07 10:32:38 +0100314 .break_ctl = nwpserial_break_ctl,
315 .startup = nwpserial_startup,
316 .shutdown = nwpserial_shutdown,
317 .set_termios = nwpserial_set_termios,
318 .type = nwpserial_type,
319 .release_port = nwpserial_release_port,
320 .request_port = nwpserial_request_port,
321 .config_port = nwpserial_config_port,
322 .verify_port = nwpserial_verify_port,
323};
324
325static struct uart_driver nwpserial_reg = {
326 .owner = THIS_MODULE,
327 .driver_name = "nwpserial",
328 .dev_name = "ttySQ",
329 .major = TTY_MAJOR,
330 .minor = 68,
331 .nr = NWPSERIAL_NR,
332 .cons = NWPSERIAL_CONSOLE,
333};
334
335int nwpserial_register_port(struct uart_port *port)
336{
337 struct nwpserial_port *up = NULL;
338 int ret = -1;
339 int i;
340 static int first = 1;
341 int dcr_len;
342 int dcr_base;
343 struct device_node *dn;
344
345 mutex_lock(&nwpserial_mutex);
346
Grant Likely2dc11582010-08-06 09:25:50 -0600347 dn = port->dev->of_node;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100348 if (dn == NULL)
349 goto out;
350
351 /* get dcr base. */
352 dcr_base = dcr_resource_start(dn, 0);
353
354 /* find matching entry */
355 for (i = 0; i < NWPSERIAL_NR; i++)
356 if (nwpserial_ports[i].port.iobase == dcr_base) {
357 up = &nwpserial_ports[i];
358 break;
359 }
360
361 /* we didn't find a mtching entry, search for a free port */
362 if (up == NULL)
363 for (i = 0; i < NWPSERIAL_NR; i++)
364 if (nwpserial_ports[i].port.type == PORT_UNKNOWN &&
365 nwpserial_ports[i].port.iobase == 0) {
366 up = &nwpserial_ports[i];
367 break;
368 }
369
370 if (up == NULL) {
371 ret = -EBUSY;
372 goto out;
373 }
374
375 if (first)
376 uart_register_driver(&nwpserial_reg);
377 first = 0;
378
379 up->port.membase = port->membase;
380 up->port.irq = port->irq;
381 up->port.uartclk = port->uartclk;
382 up->port.fifosize = port->fifosize;
383 up->port.regshift = port->regshift;
384 up->port.iotype = port->iotype;
385 up->port.flags = port->flags;
386 up->port.mapbase = port->mapbase;
387 up->port.private_data = port->private_data;
388
389 if (port->dev)
390 up->port.dev = port->dev;
391
392 if (up->port.iobase != dcr_base) {
393 up->port.ops = &nwpserial_pops;
394 up->port.fifosize = 16;
395
396 spin_lock_init(&up->port.lock);
397
398 up->port.iobase = dcr_base;
399 dcr_len = dcr_resource_len(dn, 0);
400
401 up->dcr_host = dcr_map(dn, dcr_base, dcr_len);
402 if (!DCR_MAP_OK(up->dcr_host)) {
403 printk(KERN_ERR "Cannot map DCR resources for NWPSERIAL");
404 goto out;
405 }
406 }
407
408 ret = uart_add_one_port(&nwpserial_reg, &up->port);
409 if (ret == 0)
410 ret = up->port.line;
411
412out:
413 mutex_unlock(&nwpserial_mutex);
414
415 return ret;
416}
417EXPORT_SYMBOL(nwpserial_register_port);
418
419void nwpserial_unregister_port(int line)
420{
421 struct nwpserial_port *up = &nwpserial_ports[line];
422 mutex_lock(&nwpserial_mutex);
423 uart_remove_one_port(&nwpserial_reg, &up->port);
424
425 up->port.type = PORT_UNKNOWN;
426
427 mutex_unlock(&nwpserial_mutex);
428}
429EXPORT_SYMBOL(nwpserial_unregister_port);
430
431#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL_CONSOLE
432static int __init nwpserial_console_init(void)
433{
434 struct nwpserial_port *up = NULL;
435 struct device_node *dn;
436 const char *name;
437 int dcr_base;
438 int dcr_len;
439 int i;
440
441 /* search for a free port */
442 for (i = 0; i < NWPSERIAL_NR; i++)
443 if (nwpserial_ports[i].port.type == PORT_UNKNOWN) {
444 up = &nwpserial_ports[i];
445 break;
446 }
447
448 if (up == NULL)
449 return -1;
450
451 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
452 if (name == NULL)
453 return -1;
454
455 dn = of_find_node_by_path(name);
456 if (!dn)
457 return -1;
458
459 spin_lock_init(&up->port.lock);
460 up->port.ops = &nwpserial_pops;
461 up->port.type = PORT_NWPSERIAL;
462 up->port.fifosize = 16;
463
464 dcr_base = dcr_resource_start(dn, 0);
465 dcr_len = dcr_resource_len(dn, 0);
466 up->port.iobase = dcr_base;
467
468 up->dcr_host = dcr_map(dn, dcr_base, dcr_len);
469 if (!DCR_MAP_OK(up->dcr_host)) {
470 printk("Cannot map DCR resources for SERIAL");
471 return -1;
472 }
473 register_console(&nwpserial_console);
474 return 0;
475}
476console_initcall(nwpserial_console_init);
477#endif /* CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL_CONSOLE */