Loading...
1/*
2 * altera_uart.c -- Altera UART driver
3 *
4 * Based on mcf.c -- Freescale ColdFire UART driver
5 *
6 * (C) Copyright 2003-2007, Greg Ungerer <gerg@snapgear.com>
7 * (C) Copyright 2008, Thomas Chou <thomas@wytron.com.tw>
8 * (C) Copyright 2010, Tobias Klauser <tklauser@distanz.ch>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 */
15
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/timer.h>
19#include <linux/interrupt.h>
20#include <linux/module.h>
21#include <linux/console.h>
22#include <linux/tty.h>
23#include <linux/tty_flip.h>
24#include <linux/serial.h>
25#include <linux/serial_core.h>
26#include <linux/platform_device.h>
27#include <linux/of.h>
28#include <linux/io.h>
29#include <linux/altera_uart.h>
30
31#define DRV_NAME "altera_uart"
32#define SERIAL_ALTERA_MAJOR 204
33#define SERIAL_ALTERA_MINOR 213
34
35/*
36 * Altera UART register definitions according to the Nios UART datasheet:
37 * http://www.altera.com/literature/ds/ds_nios_uart.pdf
38 */
39
40#define ALTERA_UART_SIZE 32
41
42#define ALTERA_UART_RXDATA_REG 0
43#define ALTERA_UART_TXDATA_REG 4
44#define ALTERA_UART_STATUS_REG 8
45#define ALTERA_UART_CONTROL_REG 12
46#define ALTERA_UART_DIVISOR_REG 16
47#define ALTERA_UART_EOP_REG 20
48
49#define ALTERA_UART_STATUS_PE_MSK 0x0001 /* parity error */
50#define ALTERA_UART_STATUS_FE_MSK 0x0002 /* framing error */
51#define ALTERA_UART_STATUS_BRK_MSK 0x0004 /* break */
52#define ALTERA_UART_STATUS_ROE_MSK 0x0008 /* RX overrun error */
53#define ALTERA_UART_STATUS_TOE_MSK 0x0010 /* TX overrun error */
54#define ALTERA_UART_STATUS_TMT_MSK 0x0020 /* TX shift register state */
55#define ALTERA_UART_STATUS_TRDY_MSK 0x0040 /* TX ready */
56#define ALTERA_UART_STATUS_RRDY_MSK 0x0080 /* RX ready */
57#define ALTERA_UART_STATUS_E_MSK 0x0100 /* exception condition */
58#define ALTERA_UART_STATUS_DCTS_MSK 0x0400 /* CTS logic-level change */
59#define ALTERA_UART_STATUS_CTS_MSK 0x0800 /* CTS logic state */
60#define ALTERA_UART_STATUS_EOP_MSK 0x1000 /* EOP written/read */
61
62 /* Enable interrupt on... */
63#define ALTERA_UART_CONTROL_PE_MSK 0x0001 /* ...parity error */
64#define ALTERA_UART_CONTROL_FE_MSK 0x0002 /* ...framing error */
65#define ALTERA_UART_CONTROL_BRK_MSK 0x0004 /* ...break */
66#define ALTERA_UART_CONTROL_ROE_MSK 0x0008 /* ...RX overrun */
67#define ALTERA_UART_CONTROL_TOE_MSK 0x0010 /* ...TX overrun */
68#define ALTERA_UART_CONTROL_TMT_MSK 0x0020 /* ...TX shift register empty */
69#define ALTERA_UART_CONTROL_TRDY_MSK 0x0040 /* ...TX ready */
70#define ALTERA_UART_CONTROL_RRDY_MSK 0x0080 /* ...RX ready */
71#define ALTERA_UART_CONTROL_E_MSK 0x0100 /* ...exception*/
72
73#define ALTERA_UART_CONTROL_TRBK_MSK 0x0200 /* TX break */
74#define ALTERA_UART_CONTROL_DCTS_MSK 0x0400 /* Interrupt on CTS change */
75#define ALTERA_UART_CONTROL_RTS_MSK 0x0800 /* RTS signal */
76#define ALTERA_UART_CONTROL_EOP_MSK 0x1000 /* Interrupt on EOP */
77
78/*
79 * Local per-uart structure.
80 */
81struct altera_uart {
82 struct uart_port port;
83 struct timer_list tmr;
84 unsigned int sigs; /* Local copy of line sigs */
85 unsigned short imr; /* Local IMR mirror */
86};
87
88static u32 altera_uart_readl(struct uart_port *port, int reg)
89{
90 return readl(port->membase + (reg << port->regshift));
91}
92
93static void altera_uart_writel(struct uart_port *port, u32 dat, int reg)
94{
95 writel(dat, port->membase + (reg << port->regshift));
96}
97
98static unsigned int altera_uart_tx_empty(struct uart_port *port)
99{
100 return (altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
101 ALTERA_UART_STATUS_TMT_MSK) ? TIOCSER_TEMT : 0;
102}
103
104static unsigned int altera_uart_get_mctrl(struct uart_port *port)
105{
106 struct altera_uart *pp = container_of(port, struct altera_uart, port);
107 unsigned int sigs;
108
109 sigs = (altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
110 ALTERA_UART_STATUS_CTS_MSK) ? TIOCM_CTS : 0;
111 sigs |= (pp->sigs & TIOCM_RTS);
112
113 return sigs;
114}
115
116static void altera_uart_set_mctrl(struct uart_port *port, unsigned int sigs)
117{
118 struct altera_uart *pp = container_of(port, struct altera_uart, port);
119
120 pp->sigs = sigs;
121 if (sigs & TIOCM_RTS)
122 pp->imr |= ALTERA_UART_CONTROL_RTS_MSK;
123 else
124 pp->imr &= ~ALTERA_UART_CONTROL_RTS_MSK;
125 altera_uart_writel(port, pp->imr, ALTERA_UART_CONTROL_REG);
126}
127
128static void altera_uart_start_tx(struct uart_port *port)
129{
130 struct altera_uart *pp = container_of(port, struct altera_uart, port);
131
132 pp->imr |= ALTERA_UART_CONTROL_TRDY_MSK;
133 altera_uart_writel(port, pp->imr, ALTERA_UART_CONTROL_REG);
134}
135
136static void altera_uart_stop_tx(struct uart_port *port)
137{
138 struct altera_uart *pp = container_of(port, struct altera_uart, port);
139
140 pp->imr &= ~ALTERA_UART_CONTROL_TRDY_MSK;
141 altera_uart_writel(port, pp->imr, ALTERA_UART_CONTROL_REG);
142}
143
144static void altera_uart_stop_rx(struct uart_port *port)
145{
146 struct altera_uart *pp = container_of(port, struct altera_uart, port);
147
148 pp->imr &= ~ALTERA_UART_CONTROL_RRDY_MSK;
149 altera_uart_writel(port, pp->imr, ALTERA_UART_CONTROL_REG);
150}
151
152static void altera_uart_break_ctl(struct uart_port *port, int break_state)
153{
154 struct altera_uart *pp = container_of(port, struct altera_uart, port);
155 unsigned long flags;
156
157 spin_lock_irqsave(&port->lock, flags);
158 if (break_state == -1)
159 pp->imr |= ALTERA_UART_CONTROL_TRBK_MSK;
160 else
161 pp->imr &= ~ALTERA_UART_CONTROL_TRBK_MSK;
162 altera_uart_writel(port, pp->imr, ALTERA_UART_CONTROL_REG);
163 spin_unlock_irqrestore(&port->lock, flags);
164}
165
166static void altera_uart_enable_ms(struct uart_port *port)
167{
168}
169
170static void altera_uart_set_termios(struct uart_port *port,
171 struct ktermios *termios,
172 struct ktermios *old)
173{
174 unsigned long flags;
175 unsigned int baud, baudclk;
176
177 baud = uart_get_baud_rate(port, termios, old, 0, 4000000);
178 baudclk = port->uartclk / baud;
179
180 if (old)
181 tty_termios_copy_hw(termios, old);
182 tty_termios_encode_baud_rate(termios, baud, baud);
183
184 spin_lock_irqsave(&port->lock, flags);
185 uart_update_timeout(port, termios->c_cflag, baud);
186 altera_uart_writel(port, baudclk, ALTERA_UART_DIVISOR_REG);
187 spin_unlock_irqrestore(&port->lock, flags);
188}
189
190static void altera_uart_rx_chars(struct altera_uart *pp)
191{
192 struct uart_port *port = &pp->port;
193 unsigned char ch, flag;
194 unsigned short status;
195
196 while ((status = altera_uart_readl(port, ALTERA_UART_STATUS_REG)) &
197 ALTERA_UART_STATUS_RRDY_MSK) {
198 ch = altera_uart_readl(port, ALTERA_UART_RXDATA_REG);
199 flag = TTY_NORMAL;
200 port->icount.rx++;
201
202 if (status & ALTERA_UART_STATUS_E_MSK) {
203 altera_uart_writel(port, status,
204 ALTERA_UART_STATUS_REG);
205
206 if (status & ALTERA_UART_STATUS_BRK_MSK) {
207 port->icount.brk++;
208 if (uart_handle_break(port))
209 continue;
210 } else if (status & ALTERA_UART_STATUS_PE_MSK) {
211 port->icount.parity++;
212 } else if (status & ALTERA_UART_STATUS_ROE_MSK) {
213 port->icount.overrun++;
214 } else if (status & ALTERA_UART_STATUS_FE_MSK) {
215 port->icount.frame++;
216 }
217
218 status &= port->read_status_mask;
219
220 if (status & ALTERA_UART_STATUS_BRK_MSK)
221 flag = TTY_BREAK;
222 else if (status & ALTERA_UART_STATUS_PE_MSK)
223 flag = TTY_PARITY;
224 else if (status & ALTERA_UART_STATUS_FE_MSK)
225 flag = TTY_FRAME;
226 }
227
228 if (uart_handle_sysrq_char(port, ch))
229 continue;
230 uart_insert_char(port, status, ALTERA_UART_STATUS_ROE_MSK, ch,
231 flag);
232 }
233
234 tty_flip_buffer_push(port->state->port.tty);
235}
236
237static void altera_uart_tx_chars(struct altera_uart *pp)
238{
239 struct uart_port *port = &pp->port;
240 struct circ_buf *xmit = &port->state->xmit;
241
242 if (port->x_char) {
243 /* Send special char - probably flow control */
244 altera_uart_writel(port, port->x_char, ALTERA_UART_TXDATA_REG);
245 port->x_char = 0;
246 port->icount.tx++;
247 return;
248 }
249
250 while (altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
251 ALTERA_UART_STATUS_TRDY_MSK) {
252 if (xmit->head == xmit->tail)
253 break;
254 altera_uart_writel(port, xmit->buf[xmit->tail],
255 ALTERA_UART_TXDATA_REG);
256 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
257 port->icount.tx++;
258 }
259
260 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
261 uart_write_wakeup(port);
262
263 if (xmit->head == xmit->tail) {
264 pp->imr &= ~ALTERA_UART_CONTROL_TRDY_MSK;
265 altera_uart_writel(port, pp->imr, ALTERA_UART_CONTROL_REG);
266 }
267}
268
269static irqreturn_t altera_uart_interrupt(int irq, void *data)
270{
271 struct uart_port *port = data;
272 struct altera_uart *pp = container_of(port, struct altera_uart, port);
273 unsigned int isr;
274
275 isr = altera_uart_readl(port, ALTERA_UART_STATUS_REG) & pp->imr;
276
277 spin_lock(&port->lock);
278 if (isr & ALTERA_UART_STATUS_RRDY_MSK)
279 altera_uart_rx_chars(pp);
280 if (isr & ALTERA_UART_STATUS_TRDY_MSK)
281 altera_uart_tx_chars(pp);
282 spin_unlock(&port->lock);
283
284 return IRQ_RETVAL(isr);
285}
286
287static void altera_uart_timer(unsigned long data)
288{
289 struct uart_port *port = (void *)data;
290 struct altera_uart *pp = container_of(port, struct altera_uart, port);
291
292 altera_uart_interrupt(0, port);
293 mod_timer(&pp->tmr, jiffies + uart_poll_timeout(port));
294}
295
296static void altera_uart_config_port(struct uart_port *port, int flags)
297{
298 port->type = PORT_ALTERA_UART;
299
300 /* Clear mask, so no surprise interrupts. */
301 altera_uart_writel(port, 0, ALTERA_UART_CONTROL_REG);
302 /* Clear status register */
303 altera_uart_writel(port, 0, ALTERA_UART_STATUS_REG);
304}
305
306static int altera_uart_startup(struct uart_port *port)
307{
308 struct altera_uart *pp = container_of(port, struct altera_uart, port);
309 unsigned long flags;
310 int ret;
311
312 if (!port->irq) {
313 setup_timer(&pp->tmr, altera_uart_timer, (unsigned long)port);
314 mod_timer(&pp->tmr, jiffies + uart_poll_timeout(port));
315 return 0;
316 }
317
318 ret = request_irq(port->irq, altera_uart_interrupt, IRQF_DISABLED,
319 DRV_NAME, port);
320 if (ret) {
321 pr_err(DRV_NAME ": unable to attach Altera UART %d "
322 "interrupt vector=%d\n", port->line, port->irq);
323 return ret;
324 }
325
326 spin_lock_irqsave(&port->lock, flags);
327
328 /* Enable RX interrupts now */
329 pp->imr = ALTERA_UART_CONTROL_RRDY_MSK;
330 writel(pp->imr, port->membase + ALTERA_UART_CONTROL_REG);
331
332 spin_unlock_irqrestore(&port->lock, flags);
333
334 return 0;
335}
336
337static void altera_uart_shutdown(struct uart_port *port)
338{
339 struct altera_uart *pp = container_of(port, struct altera_uart, port);
340 unsigned long flags;
341
342 spin_lock_irqsave(&port->lock, flags);
343
344 /* Disable all interrupts now */
345 pp->imr = 0;
346 writel(pp->imr, port->membase + ALTERA_UART_CONTROL_REG);
347
348 spin_unlock_irqrestore(&port->lock, flags);
349
350 if (port->irq)
351 free_irq(port->irq, port);
352 else
353 del_timer_sync(&pp->tmr);
354}
355
356static const char *altera_uart_type(struct uart_port *port)
357{
358 return (port->type == PORT_ALTERA_UART) ? "Altera UART" : NULL;
359}
360
361static int altera_uart_request_port(struct uart_port *port)
362{
363 /* UARTs always present */
364 return 0;
365}
366
367static void altera_uart_release_port(struct uart_port *port)
368{
369 /* Nothing to release... */
370}
371
372static int altera_uart_verify_port(struct uart_port *port,
373 struct serial_struct *ser)
374{
375 if ((ser->type != PORT_UNKNOWN) && (ser->type != PORT_ALTERA_UART))
376 return -EINVAL;
377 return 0;
378}
379
380/*
381 * Define the basic serial functions we support.
382 */
383static struct uart_ops altera_uart_ops = {
384 .tx_empty = altera_uart_tx_empty,
385 .get_mctrl = altera_uart_get_mctrl,
386 .set_mctrl = altera_uart_set_mctrl,
387 .start_tx = altera_uart_start_tx,
388 .stop_tx = altera_uart_stop_tx,
389 .stop_rx = altera_uart_stop_rx,
390 .enable_ms = altera_uart_enable_ms,
391 .break_ctl = altera_uart_break_ctl,
392 .startup = altera_uart_startup,
393 .shutdown = altera_uart_shutdown,
394 .set_termios = altera_uart_set_termios,
395 .type = altera_uart_type,
396 .request_port = altera_uart_request_port,
397 .release_port = altera_uart_release_port,
398 .config_port = altera_uart_config_port,
399 .verify_port = altera_uart_verify_port,
400};
401
402static struct altera_uart altera_uart_ports[CONFIG_SERIAL_ALTERA_UART_MAXPORTS];
403
404#if defined(CONFIG_SERIAL_ALTERA_UART_CONSOLE)
405
406int __init early_altera_uart_setup(struct altera_uart_platform_uart *platp)
407{
408 struct uart_port *port;
409 int i;
410
411 for (i = 0; i < CONFIG_SERIAL_ALTERA_UART_MAXPORTS && platp[i].mapbase; i++) {
412 port = &altera_uart_ports[i].port;
413
414 port->line = i;
415 port->type = PORT_ALTERA_UART;
416 port->mapbase = platp[i].mapbase;
417 port->membase = ioremap(port->mapbase, ALTERA_UART_SIZE);
418 port->iotype = SERIAL_IO_MEM;
419 port->irq = platp[i].irq;
420 port->uartclk = platp[i].uartclk;
421 port->flags = UPF_BOOT_AUTOCONF;
422 port->ops = &altera_uart_ops;
423 port->private_data = platp;
424 }
425
426 return 0;
427}
428
429static void altera_uart_console_putc(struct uart_port *port, const char c)
430{
431 while (!(altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
432 ALTERA_UART_STATUS_TRDY_MSK))
433 cpu_relax();
434
435 writel(c, port->membase + ALTERA_UART_TXDATA_REG);
436}
437
438static void altera_uart_console_write(struct console *co, const char *s,
439 unsigned int count)
440{
441 struct uart_port *port = &(altera_uart_ports + co->index)->port;
442
443 for (; count; count--, s++) {
444 altera_uart_console_putc(port, *s);
445 if (*s == '\n')
446 altera_uart_console_putc(port, '\r');
447 }
448}
449
450static int __init altera_uart_console_setup(struct console *co, char *options)
451{
452 struct uart_port *port;
453 int baud = CONFIG_SERIAL_ALTERA_UART_BAUDRATE;
454 int bits = 8;
455 int parity = 'n';
456 int flow = 'n';
457
458 if (co->index < 0 || co->index >= CONFIG_SERIAL_ALTERA_UART_MAXPORTS)
459 return -EINVAL;
460 port = &altera_uart_ports[co->index].port;
461 if (!port->membase)
462 return -ENODEV;
463
464 if (options)
465 uart_parse_options(options, &baud, &parity, &bits, &flow);
466
467 return uart_set_options(port, co, baud, parity, bits, flow);
468}
469
470static struct uart_driver altera_uart_driver;
471
472static struct console altera_uart_console = {
473 .name = "ttyAL",
474 .write = altera_uart_console_write,
475 .device = uart_console_device,
476 .setup = altera_uart_console_setup,
477 .flags = CON_PRINTBUFFER,
478 .index = -1,
479 .data = &altera_uart_driver,
480};
481
482static int __init altera_uart_console_init(void)
483{
484 register_console(&altera_uart_console);
485 return 0;
486}
487
488console_initcall(altera_uart_console_init);
489
490#define ALTERA_UART_CONSOLE (&altera_uart_console)
491
492#else
493
494#define ALTERA_UART_CONSOLE NULL
495
496#endif /* CONFIG_ALTERA_UART_CONSOLE */
497
498/*
499 * Define the altera_uart UART driver structure.
500 */
501static struct uart_driver altera_uart_driver = {
502 .owner = THIS_MODULE,
503 .driver_name = DRV_NAME,
504 .dev_name = "ttyAL",
505 .major = SERIAL_ALTERA_MAJOR,
506 .minor = SERIAL_ALTERA_MINOR,
507 .nr = CONFIG_SERIAL_ALTERA_UART_MAXPORTS,
508 .cons = ALTERA_UART_CONSOLE,
509};
510
511#ifdef CONFIG_OF
512static int altera_uart_get_of_uartclk(struct platform_device *pdev,
513 struct uart_port *port)
514{
515 int len;
516 const __be32 *clk;
517
518 clk = of_get_property(pdev->dev.of_node, "clock-frequency", &len);
519 if (!clk || len < sizeof(__be32))
520 return -ENODEV;
521
522 port->uartclk = be32_to_cpup(clk);
523
524 return 0;
525}
526#else
527static int altera_uart_get_of_uartclk(struct platform_device *pdev,
528 struct uart_port *port)
529{
530 return -ENODEV;
531}
532#endif /* CONFIG_OF */
533
534static int __devinit altera_uart_probe(struct platform_device *pdev)
535{
536 struct altera_uart_platform_uart *platp = pdev->dev.platform_data;
537 struct uart_port *port;
538 struct resource *res_mem;
539 struct resource *res_irq;
540 int i = pdev->id;
541 int ret;
542
543 /* if id is -1 scan for a free id and use that one */
544 if (i == -1) {
545 for (i = 0; i < CONFIG_SERIAL_ALTERA_UART_MAXPORTS; i++)
546 if (altera_uart_ports[i].port.mapbase == 0)
547 break;
548 }
549
550 if (i < 0 || i >= CONFIG_SERIAL_ALTERA_UART_MAXPORTS)
551 return -EINVAL;
552
553 port = &altera_uart_ports[i].port;
554
555 res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
556 if (res_mem)
557 port->mapbase = res_mem->start;
558 else if (platp->mapbase)
559 port->mapbase = platp->mapbase;
560 else
561 return -EINVAL;
562
563 res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
564 if (res_irq)
565 port->irq = res_irq->start;
566 else if (platp->irq)
567 port->irq = platp->irq;
568
569 /* Check platform data first so we can override device node data */
570 if (platp)
571 port->uartclk = platp->uartclk;
572 else {
573 ret = altera_uart_get_of_uartclk(pdev, port);
574 if (ret)
575 return ret;
576 }
577
578 port->membase = ioremap(port->mapbase, ALTERA_UART_SIZE);
579 if (!port->membase)
580 return -ENOMEM;
581
582 if (platp)
583 port->regshift = platp->bus_shift;
584 else
585 port->regshift = 0;
586
587 port->line = i;
588 port->type = PORT_ALTERA_UART;
589 port->iotype = SERIAL_IO_MEM;
590 port->ops = &altera_uart_ops;
591 port->flags = UPF_BOOT_AUTOCONF;
592
593 dev_set_drvdata(&pdev->dev, port);
594
595 uart_add_one_port(&altera_uart_driver, port);
596
597 return 0;
598}
599
600static int __devexit altera_uart_remove(struct platform_device *pdev)
601{
602 struct uart_port *port = dev_get_drvdata(&pdev->dev);
603
604 if (port) {
605 uart_remove_one_port(&altera_uart_driver, port);
606 dev_set_drvdata(&pdev->dev, NULL);
607 port->mapbase = 0;
608 }
609
610 return 0;
611}
612
613#ifdef CONFIG_OF
614static struct of_device_id altera_uart_match[] = {
615 { .compatible = "ALTR,uart-1.0", },
616 {},
617};
618MODULE_DEVICE_TABLE(of, altera_uart_match);
619#else
620#define altera_uart_match NULL
621#endif /* CONFIG_OF */
622
623static struct platform_driver altera_uart_platform_driver = {
624 .probe = altera_uart_probe,
625 .remove = __devexit_p(altera_uart_remove),
626 .driver = {
627 .name = DRV_NAME,
628 .owner = THIS_MODULE,
629 .of_match_table = altera_uart_match,
630 },
631};
632
633static int __init altera_uart_init(void)
634{
635 int rc;
636
637 rc = uart_register_driver(&altera_uart_driver);
638 if (rc)
639 return rc;
640 rc = platform_driver_register(&altera_uart_platform_driver);
641 if (rc) {
642 uart_unregister_driver(&altera_uart_driver);
643 return rc;
644 }
645 return 0;
646}
647
648static void __exit altera_uart_exit(void)
649{
650 platform_driver_unregister(&altera_uart_platform_driver);
651 uart_unregister_driver(&altera_uart_driver);
652}
653
654module_init(altera_uart_init);
655module_exit(altera_uart_exit);
656
657MODULE_DESCRIPTION("Altera UART driver");
658MODULE_AUTHOR("Thomas Chou <thomas@wytron.com.tw>");
659MODULE_LICENSE("GPL");
660MODULE_ALIAS("platform:" DRV_NAME);
661MODULE_ALIAS_CHARDEV_MAJOR(SERIAL_ALTERA_MAJOR);
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * altera_uart.c -- Altera UART driver
4 *
5 * Based on mcf.c -- Freescale ColdFire UART driver
6 *
7 * (C) Copyright 2003-2007, Greg Ungerer <gerg@snapgear.com>
8 * (C) Copyright 2008, Thomas Chou <thomas@wytron.com.tw>
9 * (C) Copyright 2010, Tobias Klauser <tklauser@distanz.ch>
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/timer.h>
15#include <linux/interrupt.h>
16#include <linux/module.h>
17#include <linux/console.h>
18#include <linux/tty.h>
19#include <linux/tty_flip.h>
20#include <linux/serial.h>
21#include <linux/serial_core.h>
22#include <linux/platform_device.h>
23#include <linux/of.h>
24#include <linux/io.h>
25#include <linux/altera_uart.h>
26
27#define DRV_NAME "altera_uart"
28#define SERIAL_ALTERA_MAJOR 204
29#define SERIAL_ALTERA_MINOR 213
30
31/*
32 * Altera UART register definitions according to the Nios UART datasheet:
33 * http://www.altera.com/literature/ds/ds_nios_uart.pdf
34 */
35
36#define ALTERA_UART_SIZE 32
37
38#define ALTERA_UART_RXDATA_REG 0
39#define ALTERA_UART_TXDATA_REG 4
40#define ALTERA_UART_STATUS_REG 8
41#define ALTERA_UART_CONTROL_REG 12
42#define ALTERA_UART_DIVISOR_REG 16
43#define ALTERA_UART_EOP_REG 20
44
45#define ALTERA_UART_STATUS_PE_MSK 0x0001 /* parity error */
46#define ALTERA_UART_STATUS_FE_MSK 0x0002 /* framing error */
47#define ALTERA_UART_STATUS_BRK_MSK 0x0004 /* break */
48#define ALTERA_UART_STATUS_ROE_MSK 0x0008 /* RX overrun error */
49#define ALTERA_UART_STATUS_TOE_MSK 0x0010 /* TX overrun error */
50#define ALTERA_UART_STATUS_TMT_MSK 0x0020 /* TX shift register state */
51#define ALTERA_UART_STATUS_TRDY_MSK 0x0040 /* TX ready */
52#define ALTERA_UART_STATUS_RRDY_MSK 0x0080 /* RX ready */
53#define ALTERA_UART_STATUS_E_MSK 0x0100 /* exception condition */
54#define ALTERA_UART_STATUS_DCTS_MSK 0x0400 /* CTS logic-level change */
55#define ALTERA_UART_STATUS_CTS_MSK 0x0800 /* CTS logic state */
56#define ALTERA_UART_STATUS_EOP_MSK 0x1000 /* EOP written/read */
57
58 /* Enable interrupt on... */
59#define ALTERA_UART_CONTROL_PE_MSK 0x0001 /* ...parity error */
60#define ALTERA_UART_CONTROL_FE_MSK 0x0002 /* ...framing error */
61#define ALTERA_UART_CONTROL_BRK_MSK 0x0004 /* ...break */
62#define ALTERA_UART_CONTROL_ROE_MSK 0x0008 /* ...RX overrun */
63#define ALTERA_UART_CONTROL_TOE_MSK 0x0010 /* ...TX overrun */
64#define ALTERA_UART_CONTROL_TMT_MSK 0x0020 /* ...TX shift register empty */
65#define ALTERA_UART_CONTROL_TRDY_MSK 0x0040 /* ...TX ready */
66#define ALTERA_UART_CONTROL_RRDY_MSK 0x0080 /* ...RX ready */
67#define ALTERA_UART_CONTROL_E_MSK 0x0100 /* ...exception*/
68
69#define ALTERA_UART_CONTROL_TRBK_MSK 0x0200 /* TX break */
70#define ALTERA_UART_CONTROL_DCTS_MSK 0x0400 /* Interrupt on CTS change */
71#define ALTERA_UART_CONTROL_RTS_MSK 0x0800 /* RTS signal */
72#define ALTERA_UART_CONTROL_EOP_MSK 0x1000 /* Interrupt on EOP */
73
74/*
75 * Local per-uart structure.
76 */
77struct altera_uart {
78 struct uart_port port;
79 struct timer_list tmr;
80 unsigned int sigs; /* Local copy of line sigs */
81 unsigned short imr; /* Local IMR mirror */
82};
83
84static u32 altera_uart_readl(struct uart_port *port, int reg)
85{
86 return readl(port->membase + (reg << port->regshift));
87}
88
89static void altera_uart_writel(struct uart_port *port, u32 dat, int reg)
90{
91 writel(dat, port->membase + (reg << port->regshift));
92}
93
94static unsigned int altera_uart_tx_empty(struct uart_port *port)
95{
96 return (altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
97 ALTERA_UART_STATUS_TMT_MSK) ? TIOCSER_TEMT : 0;
98}
99
100static unsigned int altera_uart_get_mctrl(struct uart_port *port)
101{
102 struct altera_uart *pp = container_of(port, struct altera_uart, port);
103 unsigned int sigs;
104
105 sigs = (altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
106 ALTERA_UART_STATUS_CTS_MSK) ? TIOCM_CTS : 0;
107 sigs |= (pp->sigs & TIOCM_RTS);
108
109 return sigs;
110}
111
112static void altera_uart_update_ctrl_reg(struct altera_uart *pp)
113{
114 unsigned short imr = pp->imr;
115
116 /*
117 * If the device doesn't have an irq, ensure that the irq bits are
118 * masked out to keep the irq line inactive.
119 */
120 if (!pp->port.irq)
121 imr &= ALTERA_UART_CONTROL_TRBK_MSK | ALTERA_UART_CONTROL_RTS_MSK;
122
123 altera_uart_writel(&pp->port, imr, ALTERA_UART_CONTROL_REG);
124}
125
126static void altera_uart_set_mctrl(struct uart_port *port, unsigned int sigs)
127{
128 struct altera_uart *pp = container_of(port, struct altera_uart, port);
129
130 pp->sigs = sigs;
131 if (sigs & TIOCM_RTS)
132 pp->imr |= ALTERA_UART_CONTROL_RTS_MSK;
133 else
134 pp->imr &= ~ALTERA_UART_CONTROL_RTS_MSK;
135 altera_uart_update_ctrl_reg(pp);
136}
137
138static void altera_uart_start_tx(struct uart_port *port)
139{
140 struct altera_uart *pp = container_of(port, struct altera_uart, port);
141
142 pp->imr |= ALTERA_UART_CONTROL_TRDY_MSK;
143 altera_uart_update_ctrl_reg(pp);
144}
145
146static void altera_uart_stop_tx(struct uart_port *port)
147{
148 struct altera_uart *pp = container_of(port, struct altera_uart, port);
149
150 pp->imr &= ~ALTERA_UART_CONTROL_TRDY_MSK;
151 altera_uart_update_ctrl_reg(pp);
152}
153
154static void altera_uart_stop_rx(struct uart_port *port)
155{
156 struct altera_uart *pp = container_of(port, struct altera_uart, port);
157
158 pp->imr &= ~ALTERA_UART_CONTROL_RRDY_MSK;
159 altera_uart_update_ctrl_reg(pp);
160}
161
162static void altera_uart_break_ctl(struct uart_port *port, int break_state)
163{
164 struct altera_uart *pp = container_of(port, struct altera_uart, port);
165 unsigned long flags;
166
167 spin_lock_irqsave(&port->lock, flags);
168 if (break_state == -1)
169 pp->imr |= ALTERA_UART_CONTROL_TRBK_MSK;
170 else
171 pp->imr &= ~ALTERA_UART_CONTROL_TRBK_MSK;
172 altera_uart_update_ctrl_reg(pp);
173 spin_unlock_irqrestore(&port->lock, flags);
174}
175
176static void altera_uart_set_termios(struct uart_port *port,
177 struct ktermios *termios,
178 struct ktermios *old)
179{
180 unsigned long flags;
181 unsigned int baud, baudclk;
182
183 baud = uart_get_baud_rate(port, termios, old, 0, 4000000);
184 baudclk = port->uartclk / baud;
185
186 if (old)
187 tty_termios_copy_hw(termios, old);
188 tty_termios_encode_baud_rate(termios, baud, baud);
189
190 spin_lock_irqsave(&port->lock, flags);
191 uart_update_timeout(port, termios->c_cflag, baud);
192 altera_uart_writel(port, baudclk, ALTERA_UART_DIVISOR_REG);
193 spin_unlock_irqrestore(&port->lock, flags);
194
195 /*
196 * FIXME: port->read_status_mask and port->ignore_status_mask
197 * need to be initialized based on termios settings for
198 * INPCK, IGNBRK, IGNPAR, PARMRK, BRKINT
199 */
200}
201
202static void altera_uart_rx_chars(struct altera_uart *pp)
203{
204 struct uart_port *port = &pp->port;
205 unsigned char ch, flag;
206 unsigned short status;
207
208 while ((status = altera_uart_readl(port, ALTERA_UART_STATUS_REG)) &
209 ALTERA_UART_STATUS_RRDY_MSK) {
210 ch = altera_uart_readl(port, ALTERA_UART_RXDATA_REG);
211 flag = TTY_NORMAL;
212 port->icount.rx++;
213
214 if (status & ALTERA_UART_STATUS_E_MSK) {
215 altera_uart_writel(port, status,
216 ALTERA_UART_STATUS_REG);
217
218 if (status & ALTERA_UART_STATUS_BRK_MSK) {
219 port->icount.brk++;
220 if (uart_handle_break(port))
221 continue;
222 } else if (status & ALTERA_UART_STATUS_PE_MSK) {
223 port->icount.parity++;
224 } else if (status & ALTERA_UART_STATUS_ROE_MSK) {
225 port->icount.overrun++;
226 } else if (status & ALTERA_UART_STATUS_FE_MSK) {
227 port->icount.frame++;
228 }
229
230 status &= port->read_status_mask;
231
232 if (status & ALTERA_UART_STATUS_BRK_MSK)
233 flag = TTY_BREAK;
234 else if (status & ALTERA_UART_STATUS_PE_MSK)
235 flag = TTY_PARITY;
236 else if (status & ALTERA_UART_STATUS_FE_MSK)
237 flag = TTY_FRAME;
238 }
239
240 if (uart_handle_sysrq_char(port, ch))
241 continue;
242 uart_insert_char(port, status, ALTERA_UART_STATUS_ROE_MSK, ch,
243 flag);
244 }
245
246 tty_flip_buffer_push(&port->state->port);
247}
248
249static void altera_uart_tx_chars(struct altera_uart *pp)
250{
251 struct uart_port *port = &pp->port;
252 struct circ_buf *xmit = &port->state->xmit;
253
254 if (port->x_char) {
255 /* Send special char - probably flow control */
256 altera_uart_writel(port, port->x_char, ALTERA_UART_TXDATA_REG);
257 port->x_char = 0;
258 port->icount.tx++;
259 return;
260 }
261
262 while (altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
263 ALTERA_UART_STATUS_TRDY_MSK) {
264 if (xmit->head == xmit->tail)
265 break;
266 altera_uart_writel(port, xmit->buf[xmit->tail],
267 ALTERA_UART_TXDATA_REG);
268 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
269 port->icount.tx++;
270 }
271
272 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
273 uart_write_wakeup(port);
274
275 if (xmit->head == xmit->tail) {
276 pp->imr &= ~ALTERA_UART_CONTROL_TRDY_MSK;
277 altera_uart_update_ctrl_reg(pp);
278 }
279}
280
281static irqreturn_t altera_uart_interrupt(int irq, void *data)
282{
283 struct uart_port *port = data;
284 struct altera_uart *pp = container_of(port, struct altera_uart, port);
285 unsigned int isr;
286
287 isr = altera_uart_readl(port, ALTERA_UART_STATUS_REG) & pp->imr;
288
289 spin_lock(&port->lock);
290 if (isr & ALTERA_UART_STATUS_RRDY_MSK)
291 altera_uart_rx_chars(pp);
292 if (isr & ALTERA_UART_STATUS_TRDY_MSK)
293 altera_uart_tx_chars(pp);
294 spin_unlock(&port->lock);
295
296 return IRQ_RETVAL(isr);
297}
298
299static void altera_uart_timer(struct timer_list *t)
300{
301 struct altera_uart *pp = from_timer(pp, t, tmr);
302 struct uart_port *port = &pp->port;
303
304 altera_uart_interrupt(0, port);
305 mod_timer(&pp->tmr, jiffies + uart_poll_timeout(port));
306}
307
308static void altera_uart_config_port(struct uart_port *port, int flags)
309{
310 port->type = PORT_ALTERA_UART;
311
312 /* Clear mask, so no surprise interrupts. */
313 altera_uart_writel(port, 0, ALTERA_UART_CONTROL_REG);
314 /* Clear status register */
315 altera_uart_writel(port, 0, ALTERA_UART_STATUS_REG);
316}
317
318static int altera_uart_startup(struct uart_port *port)
319{
320 struct altera_uart *pp = container_of(port, struct altera_uart, port);
321 unsigned long flags;
322
323 if (!port->irq) {
324 timer_setup(&pp->tmr, altera_uart_timer, 0);
325 mod_timer(&pp->tmr, jiffies + uart_poll_timeout(port));
326 } else {
327 int ret;
328
329 ret = request_irq(port->irq, altera_uart_interrupt, 0,
330 DRV_NAME, port);
331 if (ret) {
332 pr_err(DRV_NAME ": unable to attach Altera UART %d "
333 "interrupt vector=%d\n", port->line, port->irq);
334 return ret;
335 }
336 }
337
338 spin_lock_irqsave(&port->lock, flags);
339
340 /* Enable RX interrupts now */
341 pp->imr = ALTERA_UART_CONTROL_RRDY_MSK;
342 altera_uart_update_ctrl_reg(pp);
343
344 spin_unlock_irqrestore(&port->lock, flags);
345
346 return 0;
347}
348
349static void altera_uart_shutdown(struct uart_port *port)
350{
351 struct altera_uart *pp = container_of(port, struct altera_uart, port);
352 unsigned long flags;
353
354 spin_lock_irqsave(&port->lock, flags);
355
356 /* Disable all interrupts now */
357 pp->imr = 0;
358 altera_uart_update_ctrl_reg(pp);
359
360 spin_unlock_irqrestore(&port->lock, flags);
361
362 if (port->irq)
363 free_irq(port->irq, port);
364 else
365 del_timer_sync(&pp->tmr);
366}
367
368static const char *altera_uart_type(struct uart_port *port)
369{
370 return (port->type == PORT_ALTERA_UART) ? "Altera UART" : NULL;
371}
372
373static int altera_uart_request_port(struct uart_port *port)
374{
375 /* UARTs always present */
376 return 0;
377}
378
379static void altera_uart_release_port(struct uart_port *port)
380{
381 /* Nothing to release... */
382}
383
384static int altera_uart_verify_port(struct uart_port *port,
385 struct serial_struct *ser)
386{
387 if ((ser->type != PORT_UNKNOWN) && (ser->type != PORT_ALTERA_UART))
388 return -EINVAL;
389 return 0;
390}
391
392#ifdef CONFIG_CONSOLE_POLL
393static int altera_uart_poll_get_char(struct uart_port *port)
394{
395 while (!(altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
396 ALTERA_UART_STATUS_RRDY_MSK))
397 cpu_relax();
398
399 return altera_uart_readl(port, ALTERA_UART_RXDATA_REG);
400}
401
402static void altera_uart_poll_put_char(struct uart_port *port, unsigned char c)
403{
404 while (!(altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
405 ALTERA_UART_STATUS_TRDY_MSK))
406 cpu_relax();
407
408 altera_uart_writel(port, c, ALTERA_UART_TXDATA_REG);
409}
410#endif
411
412/*
413 * Define the basic serial functions we support.
414 */
415static const struct uart_ops altera_uart_ops = {
416 .tx_empty = altera_uart_tx_empty,
417 .get_mctrl = altera_uart_get_mctrl,
418 .set_mctrl = altera_uart_set_mctrl,
419 .start_tx = altera_uart_start_tx,
420 .stop_tx = altera_uart_stop_tx,
421 .stop_rx = altera_uart_stop_rx,
422 .break_ctl = altera_uart_break_ctl,
423 .startup = altera_uart_startup,
424 .shutdown = altera_uart_shutdown,
425 .set_termios = altera_uart_set_termios,
426 .type = altera_uart_type,
427 .request_port = altera_uart_request_port,
428 .release_port = altera_uart_release_port,
429 .config_port = altera_uart_config_port,
430 .verify_port = altera_uart_verify_port,
431#ifdef CONFIG_CONSOLE_POLL
432 .poll_get_char = altera_uart_poll_get_char,
433 .poll_put_char = altera_uart_poll_put_char,
434#endif
435};
436
437static struct altera_uart altera_uart_ports[CONFIG_SERIAL_ALTERA_UART_MAXPORTS];
438
439#if defined(CONFIG_SERIAL_ALTERA_UART_CONSOLE)
440
441static void altera_uart_console_putc(struct uart_port *port, int c)
442{
443 while (!(altera_uart_readl(port, ALTERA_UART_STATUS_REG) &
444 ALTERA_UART_STATUS_TRDY_MSK))
445 cpu_relax();
446
447 altera_uart_writel(port, c, ALTERA_UART_TXDATA_REG);
448}
449
450static void altera_uart_console_write(struct console *co, const char *s,
451 unsigned int count)
452{
453 struct uart_port *port = &(altera_uart_ports + co->index)->port;
454
455 uart_console_write(port, s, count, altera_uart_console_putc);
456}
457
458static int __init altera_uart_console_setup(struct console *co, char *options)
459{
460 struct uart_port *port;
461 int baud = CONFIG_SERIAL_ALTERA_UART_BAUDRATE;
462 int bits = 8;
463 int parity = 'n';
464 int flow = 'n';
465
466 if (co->index < 0 || co->index >= CONFIG_SERIAL_ALTERA_UART_MAXPORTS)
467 return -EINVAL;
468 port = &altera_uart_ports[co->index].port;
469 if (!port->membase)
470 return -ENODEV;
471
472 if (options)
473 uart_parse_options(options, &baud, &parity, &bits, &flow);
474
475 return uart_set_options(port, co, baud, parity, bits, flow);
476}
477
478static struct uart_driver altera_uart_driver;
479
480static struct console altera_uart_console = {
481 .name = "ttyAL",
482 .write = altera_uart_console_write,
483 .device = uart_console_device,
484 .setup = altera_uart_console_setup,
485 .flags = CON_PRINTBUFFER,
486 .index = -1,
487 .data = &altera_uart_driver,
488};
489
490static int __init altera_uart_console_init(void)
491{
492 register_console(&altera_uart_console);
493 return 0;
494}
495
496console_initcall(altera_uart_console_init);
497
498#define ALTERA_UART_CONSOLE (&altera_uart_console)
499
500static void altera_uart_earlycon_write(struct console *co, const char *s,
501 unsigned int count)
502{
503 struct earlycon_device *dev = co->data;
504
505 uart_console_write(&dev->port, s, count, altera_uart_console_putc);
506}
507
508static int __init altera_uart_earlycon_setup(struct earlycon_device *dev,
509 const char *options)
510{
511 struct uart_port *port = &dev->port;
512
513 if (!port->membase)
514 return -ENODEV;
515
516 /* Enable RX interrupts now */
517 altera_uart_writel(port, ALTERA_UART_CONTROL_RRDY_MSK,
518 ALTERA_UART_CONTROL_REG);
519
520 if (dev->baud) {
521 unsigned int baudclk = port->uartclk / dev->baud;
522
523 altera_uart_writel(port, baudclk, ALTERA_UART_DIVISOR_REG);
524 }
525
526 dev->con->write = altera_uart_earlycon_write;
527 return 0;
528}
529
530OF_EARLYCON_DECLARE(uart, "altr,uart-1.0", altera_uart_earlycon_setup);
531
532#else
533
534#define ALTERA_UART_CONSOLE NULL
535
536#endif /* CONFIG_SERIAL_ALTERA_UART_CONSOLE */
537
538/*
539 * Define the altera_uart UART driver structure.
540 */
541static struct uart_driver altera_uart_driver = {
542 .owner = THIS_MODULE,
543 .driver_name = DRV_NAME,
544 .dev_name = "ttyAL",
545 .major = SERIAL_ALTERA_MAJOR,
546 .minor = SERIAL_ALTERA_MINOR,
547 .nr = CONFIG_SERIAL_ALTERA_UART_MAXPORTS,
548 .cons = ALTERA_UART_CONSOLE,
549};
550
551static int altera_uart_probe(struct platform_device *pdev)
552{
553 struct altera_uart_platform_uart *platp = dev_get_platdata(&pdev->dev);
554 struct uart_port *port;
555 struct resource *res_mem;
556 struct resource *res_irq;
557 int i = pdev->id;
558 int ret;
559
560 /* if id is -1 scan for a free id and use that one */
561 if (i == -1) {
562 for (i = 0; i < CONFIG_SERIAL_ALTERA_UART_MAXPORTS; i++)
563 if (altera_uart_ports[i].port.mapbase == 0)
564 break;
565 }
566
567 if (i < 0 || i >= CONFIG_SERIAL_ALTERA_UART_MAXPORTS)
568 return -EINVAL;
569
570 port = &altera_uart_ports[i].port;
571
572 res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
573 if (res_mem)
574 port->mapbase = res_mem->start;
575 else if (platp)
576 port->mapbase = platp->mapbase;
577 else
578 return -EINVAL;
579
580 res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
581 if (res_irq)
582 port->irq = res_irq->start;
583 else if (platp)
584 port->irq = platp->irq;
585
586 /* Check platform data first so we can override device node data */
587 if (platp)
588 port->uartclk = platp->uartclk;
589 else {
590 ret = of_property_read_u32(pdev->dev.of_node, "clock-frequency",
591 &port->uartclk);
592 if (ret)
593 return ret;
594 }
595
596 port->membase = ioremap(port->mapbase, ALTERA_UART_SIZE);
597 if (!port->membase)
598 return -ENOMEM;
599
600 if (platp)
601 port->regshift = platp->bus_shift;
602 else
603 port->regshift = 0;
604
605 port->line = i;
606 port->type = PORT_ALTERA_UART;
607 port->iotype = SERIAL_IO_MEM;
608 port->ops = &altera_uart_ops;
609 port->flags = UPF_BOOT_AUTOCONF;
610 port->dev = &pdev->dev;
611
612 platform_set_drvdata(pdev, port);
613
614 uart_add_one_port(&altera_uart_driver, port);
615
616 return 0;
617}
618
619static int altera_uart_remove(struct platform_device *pdev)
620{
621 struct uart_port *port = platform_get_drvdata(pdev);
622
623 if (port) {
624 uart_remove_one_port(&altera_uart_driver, port);
625 port->mapbase = 0;
626 iounmap(port->membase);
627 }
628
629 return 0;
630}
631
632#ifdef CONFIG_OF
633static const struct of_device_id altera_uart_match[] = {
634 { .compatible = "ALTR,uart-1.0", },
635 { .compatible = "altr,uart-1.0", },
636 {},
637};
638MODULE_DEVICE_TABLE(of, altera_uart_match);
639#endif /* CONFIG_OF */
640
641static struct platform_driver altera_uart_platform_driver = {
642 .probe = altera_uart_probe,
643 .remove = altera_uart_remove,
644 .driver = {
645 .name = DRV_NAME,
646 .of_match_table = of_match_ptr(altera_uart_match),
647 },
648};
649
650static int __init altera_uart_init(void)
651{
652 int rc;
653
654 rc = uart_register_driver(&altera_uart_driver);
655 if (rc)
656 return rc;
657 rc = platform_driver_register(&altera_uart_platform_driver);
658 if (rc)
659 uart_unregister_driver(&altera_uart_driver);
660 return rc;
661}
662
663static void __exit altera_uart_exit(void)
664{
665 platform_driver_unregister(&altera_uart_platform_driver);
666 uart_unregister_driver(&altera_uart_driver);
667}
668
669module_init(altera_uart_init);
670module_exit(altera_uart_exit);
671
672MODULE_DESCRIPTION("Altera UART driver");
673MODULE_AUTHOR("Thomas Chou <thomas@wytron.com.tw>");
674MODULE_LICENSE("GPL");
675MODULE_ALIAS("platform:" DRV_NAME);
676MODULE_ALIAS_CHARDEV_MAJOR(SERIAL_ALTERA_MAJOR);