blob: 28c9ce6f0bdc52023816e1e7dfc555debd08327f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * m32r_sio.c
3 *
4 * Driver for M32R serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 * Based on drivers/serial/8250.c.
8 *
9 * Copyright (C) 2001 Russell King.
10 * Copyright (C) 2004 Hirokazu Takata <takata at linux-m32r.org>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 */
17
18/*
19 * A note about mapbase / membase
20 *
21 * mapbase is the physical address of the IO port. Currently, we don't
22 * support this very well, and it may well be dropped from this driver
23 * in future. As such, mapbase should be NULL.
24 *
25 * membase is an 'ioremapped' cookie. This is compatible with the old
26 * serial.c driver, and is currently the preferred form.
27 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#if defined(CONFIG_SERIAL_M32R_SIO_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
30#define SUPPORT_SYSRQ
31#endif
32
33#include <linux/module.h>
34#include <linux/tty.h>
35#include <linux/ioport.h>
36#include <linux/init.h>
37#include <linux/console.h>
38#include <linux/sysrq.h>
39#include <linux/serial.h>
40#include <linux/serialP.h>
41#include <linux/delay.h>
42
43#include <asm/m32r.h>
44#include <asm/io.h>
45#include <asm/irq.h>
46
47#define PORT_M32R_BASE PORT_M32R_SIO
48#define PORT_INDEX(x) (x - PORT_M32R_BASE + 1)
49#define BAUD_RATE 115200
50
51#include <linux/serial_core.h>
52#include "m32r_sio.h"
53#include "m32r_sio_reg.h"
54
55/*
56 * Debugging.
57 */
58#if 0
59#define DEBUG_AUTOCONF(fmt...) printk(fmt)
60#else
61#define DEBUG_AUTOCONF(fmt...) do { } while (0)
62#endif
63
64#if 0
65#define DEBUG_INTR(fmt...) printk(fmt)
66#else
67#define DEBUG_INTR(fmt...) do { } while (0)
68#endif
69
70#define PASS_LIMIT 256
71
72/*
73 * We default to IRQ0 for the "no irq" hack. Some
74 * machine types want others as well - they're free
75 * to redefine this in their header file.
76 */
77#define is_real_interrupt(irq) ((irq) != 0)
78
Russell Kingde6cc842006-08-30 15:30:39 +010079#define BASE_BAUD 115200
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* Standard COM flags */
Russell King59a675b2006-02-05 10:52:29 +000082#define STD_COM_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/*
85 * SERIAL_PORT_DFNS tells us about built-in ports that have no
86 * standard enumeration mechanism. Platforms that can find all
87 * serial ports via mechanisms like ACPI or PCI need not supply it.
88 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#if defined(CONFIG_PLAT_USRV)
90
91#define SERIAL_PORT_DFNS \
92 /* UART CLK PORT IRQ FLAGS */ \
93 { 0, BASE_BAUD, 0x3F8, PLD_IRQ_UART0, STD_COM_FLAGS }, /* ttyS0 */ \
94 { 0, BASE_BAUD, 0x2F8, PLD_IRQ_UART1, STD_COM_FLAGS }, /* ttyS1 */
95
96#else /* !CONFIG_PLAT_USRV */
97
98#if defined(CONFIG_SERIAL_M32R_PLDSIO)
99#define SERIAL_PORT_DFNS \
100 { 0, BASE_BAUD, ((unsigned long)PLD_ESIO0CR), PLD_IRQ_SIO0_RCV, \
101 STD_COM_FLAGS }, /* ttyS0 */
102#else
103#define SERIAL_PORT_DFNS \
104 { 0, BASE_BAUD, M32R_SIO_OFFSET, M32R_IRQ_SIO0_R, \
105 STD_COM_FLAGS }, /* ttyS0 */
106#endif
107
108#endif /* !CONFIG_PLAT_USRV */
109
110static struct old_serial_port old_serial_port[] = {
Russell Kingde6cc842006-08-30 15:30:39 +0100111 SERIAL_PORT_DFNS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
114#define UART_NR ARRAY_SIZE(old_serial_port)
115
116struct uart_sio_port {
117 struct uart_port port;
118 struct timer_list timer; /* "no irq" timer */
119 struct list_head list; /* ports on this IRQ */
120 unsigned short rev;
121 unsigned char acr;
122 unsigned char ier;
123 unsigned char lcr;
124 unsigned char mcr_mask; /* mask of user bits */
125 unsigned char mcr_force; /* mask of forced bits */
126 unsigned char lsr_break_flag;
127
128 /*
129 * We provide a per-port pm hook.
130 */
131 void (*pm)(struct uart_port *port,
132 unsigned int state, unsigned int old);
133};
134
135struct irq_info {
136 spinlock_t lock;
137 struct list_head *head;
138};
139
140static struct irq_info irq_lists[NR_IRQS];
141
142/*
143 * Here we define the default xmit fifo size used for each type of UART.
144 */
145static const struct serial_uart_config uart_config[] = {
146 [PORT_UNKNOWN] = {
147 .name = "unknown",
148 .dfl_xmit_fifo_size = 1,
149 .flags = 0,
150 },
151 [PORT_INDEX(PORT_M32R_SIO)] = {
152 .name = "M32RSIO",
153 .dfl_xmit_fifo_size = 1,
154 .flags = 0,
155 },
156};
157
158#ifdef CONFIG_SERIAL_M32R_PLDSIO
159
160#define __sio_in(x) inw((unsigned long)(x))
161#define __sio_out(v,x) outw((v),(unsigned long)(x))
162
163static inline void sio_set_baud_rate(unsigned long baud)
164{
165 unsigned short sbaud;
166 sbaud = (boot_cpu_data.bus_clock / (baud * 4))-1;
167 __sio_out(sbaud, PLD_ESIO0BAUR);
168}
169
170static void sio_reset(void)
171{
172 unsigned short tmp;
173
174 tmp = __sio_in(PLD_ESIO0RXB);
175 tmp = __sio_in(PLD_ESIO0RXB);
176 tmp = __sio_in(PLD_ESIO0CR);
177 sio_set_baud_rate(BAUD_RATE);
178 __sio_out(0x0300, PLD_ESIO0CR);
179 __sio_out(0x0003, PLD_ESIO0CR);
180}
181
182static void sio_init(void)
183{
184 unsigned short tmp;
185
186 tmp = __sio_in(PLD_ESIO0RXB);
187 tmp = __sio_in(PLD_ESIO0RXB);
188 tmp = __sio_in(PLD_ESIO0CR);
189 __sio_out(0x0300, PLD_ESIO0CR);
190 __sio_out(0x0003, PLD_ESIO0CR);
191}
192
193static void sio_error(int *status)
194{
195 printk("SIO0 error[%04x]\n", *status);
196 do {
197 sio_init();
198 } while ((*status = __sio_in(PLD_ESIO0CR)) != 3);
199}
200
201#else /* not CONFIG_SERIAL_M32R_PLDSIO */
202
203#define __sio_in(x) inl(x)
204#define __sio_out(v,x) outl((v),(x))
205
206static inline void sio_set_baud_rate(unsigned long baud)
207{
208 unsigned long i, j;
209
210 i = boot_cpu_data.bus_clock / (baud * 16);
211 j = (boot_cpu_data.bus_clock - (i * baud * 16)) / baud;
212 i -= 1;
213 j = (j + 1) >> 1;
214
215 __sio_out(i, M32R_SIO0_BAUR_PORTL);
216 __sio_out(j, M32R_SIO0_RBAUR_PORTL);
217}
218
219static void sio_reset(void)
220{
221 __sio_out(0x00000300, M32R_SIO0_CR_PORTL); /* init status */
222 __sio_out(0x00000800, M32R_SIO0_MOD1_PORTL); /* 8bit */
223 __sio_out(0x00000080, M32R_SIO0_MOD0_PORTL); /* 1stop non */
224 sio_set_baud_rate(BAUD_RATE);
225 __sio_out(0x00000000, M32R_SIO0_TRCR_PORTL);
226 __sio_out(0x00000003, M32R_SIO0_CR_PORTL); /* RXCEN */
227}
228
229static void sio_init(void)
230{
231 unsigned int tmp;
232
233 tmp = __sio_in(M32R_SIO0_RXB_PORTL);
234 tmp = __sio_in(M32R_SIO0_RXB_PORTL);
235 tmp = __sio_in(M32R_SIO0_STS_PORTL);
236 __sio_out(0x00000003, M32R_SIO0_CR_PORTL);
237}
238
239static void sio_error(int *status)
240{
241 printk("SIO0 error[%04x]\n", *status);
242 do {
243 sio_init();
244 } while ((*status = __sio_in(M32R_SIO0_CR_PORTL)) != 3);
245}
246
247#endif /* CONFIG_SERIAL_M32R_PLDSIO */
248
Adrian Bunk41c28ff2006-03-23 03:00:56 -0800249static unsigned int sio_in(struct uart_sio_port *up, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 return __sio_in(up->port.iobase + offset);
252}
253
Adrian Bunk41c28ff2006-03-23 03:00:56 -0800254static void sio_out(struct uart_sio_port *up, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 __sio_out(value, up->port.iobase + offset);
257}
258
Adrian Bunk41c28ff2006-03-23 03:00:56 -0800259static unsigned int serial_in(struct uart_sio_port *up, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 if (!offset)
262 return 0;
263
264 return __sio_in(offset);
265}
266
Adrian Bunk41c28ff2006-03-23 03:00:56 -0800267static void serial_out(struct uart_sio_port *up, int offset, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 if (!offset)
270 return;
271
272 __sio_out(value, offset);
273}
274
Russell Kingb129a8c2005-08-31 10:12:14 +0100275static void m32r_sio_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct uart_sio_port *up = (struct uart_sio_port *)port;
278
279 if (up->ier & UART_IER_THRI) {
280 up->ier &= ~UART_IER_THRI;
281 serial_out(up, UART_IER, up->ier);
282 }
283}
284
Russell Kingb129a8c2005-08-31 10:12:14 +0100285static void m32r_sio_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287#ifdef CONFIG_SERIAL_M32R_PLDSIO
288 struct uart_sio_port *up = (struct uart_sio_port *)port;
289 struct circ_buf *xmit = &up->port.info->xmit;
290
291 if (!(up->ier & UART_IER_THRI)) {
292 up->ier |= UART_IER_THRI;
293 serial_out(up, UART_IER, up->ier);
294 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
295 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
296 up->port.icount.tx++;
297 }
298 while((serial_in(up, UART_LSR) & UART_EMPTY) != UART_EMPTY);
299#else
300 struct uart_sio_port *up = (struct uart_sio_port *)port;
301
302 if (!(up->ier & UART_IER_THRI)) {
303 up->ier |= UART_IER_THRI;
304 serial_out(up, UART_IER, up->ier);
305 }
306#endif
307}
308
309static void m32r_sio_stop_rx(struct uart_port *port)
310{
311 struct uart_sio_port *up = (struct uart_sio_port *)port;
312
313 up->ier &= ~UART_IER_RLSI;
314 up->port.read_status_mask &= ~UART_LSR_DR;
315 serial_out(up, UART_IER, up->ier);
316}
317
318static void m32r_sio_enable_ms(struct uart_port *port)
319{
320 struct uart_sio_port *up = (struct uart_sio_port *)port;
321
322 up->ier |= UART_IER_MSI;
323 serial_out(up, UART_IER, up->ier);
324}
325
Adrian Bunk41c28ff2006-03-23 03:00:56 -0800326static void receive_chars(struct uart_sio_port *up, int *status,
327 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct tty_struct *tty = up->port.info->tty;
330 unsigned char ch;
Alan Cox33f0f882006-01-09 20:54:13 -0800331 unsigned char flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 int max_count = 256;
333
334 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 ch = sio_in(up, SIORXB);
Alan Cox33f0f882006-01-09 20:54:13 -0800336 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 up->port.icount.rx++;
338
339 if (unlikely(*status & (UART_LSR_BI | UART_LSR_PE |
340 UART_LSR_FE | UART_LSR_OE))) {
341 /*
342 * For statistics only
343 */
344 if (*status & UART_LSR_BI) {
345 *status &= ~(UART_LSR_FE | UART_LSR_PE);
346 up->port.icount.brk++;
347 /*
348 * We do the SysRQ and SAK checking
349 * here because otherwise the break
350 * may get masked by ignore_status_mask
351 * or read_status_mask.
352 */
353 if (uart_handle_break(&up->port))
354 goto ignore_char;
355 } else if (*status & UART_LSR_PE)
356 up->port.icount.parity++;
357 else if (*status & UART_LSR_FE)
358 up->port.icount.frame++;
359 if (*status & UART_LSR_OE)
360 up->port.icount.overrun++;
361
362 /*
363 * Mask off conditions which should be ingored.
364 */
365 *status &= up->port.read_status_mask;
366
367 if (up->port.line == up->port.cons->index) {
368 /* Recover the break flag from console xmit */
369 *status |= up->lsr_break_flag;
370 up->lsr_break_flag = 0;
371 }
372
373 if (*status & UART_LSR_BI) {
374 DEBUG_INTR("handling break....");
Alan Cox33f0f882006-01-09 20:54:13 -0800375 flag = TTY_BREAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 } else if (*status & UART_LSR_PE)
Alan Cox33f0f882006-01-09 20:54:13 -0800377 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 else if (*status & UART_LSR_FE)
Alan Cox33f0f882006-01-09 20:54:13 -0800379 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381 if (uart_handle_sysrq_char(&up->port, ch, regs))
382 goto ignore_char;
Alan Cox33f0f882006-01-09 20:54:13 -0800383 if ((*status & up->port.ignore_status_mask) == 0)
384 tty_insert_flip_char(tty, ch, flag);
385
386 if (*status & UART_LSR_OE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /*
388 * Overrun is special, since it's reported
389 * immediately, and doesn't affect the current
390 * character.
391 */
Alan Cox33f0f882006-01-09 20:54:13 -0800392 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394 ignore_char:
395 *status = serial_in(up, UART_LSR);
396 } while ((*status & UART_LSR_DR) && (max_count-- > 0));
397 tty_flip_buffer_push(tty);
398}
399
Adrian Bunk41c28ff2006-03-23 03:00:56 -0800400static void transmit_chars(struct uart_sio_port *up)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 struct circ_buf *xmit = &up->port.info->xmit;
403 int count;
404
405 if (up->port.x_char) {
406#ifndef CONFIG_SERIAL_M32R_PLDSIO /* XXX */
407 serial_out(up, UART_TX, up->port.x_char);
408#endif
409 up->port.icount.tx++;
410 up->port.x_char = 0;
411 return;
412 }
413 if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100414 m32r_sio_stop_tx(&up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return;
416 }
417
418 count = up->port.fifosize;
419 do {
420 serial_out(up, UART_TX, xmit->buf[xmit->tail]);
421 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
422 up->port.icount.tx++;
423 if (uart_circ_empty(xmit))
424 break;
425 while (!serial_in(up, UART_LSR) & UART_LSR_THRE);
426
427 } while (--count > 0);
428
429 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
430 uart_write_wakeup(&up->port);
431
432 DEBUG_INTR("THRE...");
433
434 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100435 m32r_sio_stop_tx(&up->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
438/*
439 * This handles the interrupt from one port.
440 */
441static inline void m32r_sio_handle_port(struct uart_sio_port *up,
442 unsigned int status, struct pt_regs *regs)
443{
444 DEBUG_INTR("status = %x...", status);
445
446 if (status & 0x04)
447 receive_chars(up, &status, regs);
448 if (status & 0x01)
449 transmit_chars(up);
450}
451
452/*
453 * This is the serial driver's interrupt routine.
454 *
455 * Arjan thinks the old way was overly complex, so it got simplified.
456 * Alan disagrees, saying that need the complexity to handle the weird
457 * nature of ISA shared interrupts. (This is a special exception.)
458 *
459 * In order to handle ISA shared interrupts properly, we need to check
460 * that all ports have been serviced, and therefore the ISA interrupt
461 * line has been de-asserted.
462 *
463 * This means we need to loop through all ports. checking that they
464 * don't have an interrupt pending.
465 */
466static irqreturn_t m32r_sio_interrupt(int irq, void *dev_id,
467 struct pt_regs *regs)
468{
469 struct irq_info *i = dev_id;
470 struct list_head *l, *end = NULL;
471 int pass_counter = 0;
472
473 DEBUG_INTR("m32r_sio_interrupt(%d)...", irq);
474
475#ifdef CONFIG_SERIAL_M32R_PLDSIO
476// if (irq == PLD_IRQ_SIO0_SND)
477// irq = PLD_IRQ_SIO0_RCV;
478#else
479 if (irq == M32R_IRQ_SIO0_S)
480 irq = M32R_IRQ_SIO0_R;
481#endif
482
483 spin_lock(&i->lock);
484
485 l = i->head;
486 do {
487 struct uart_sio_port *up;
488 unsigned int sts;
489
490 up = list_entry(l, struct uart_sio_port, list);
491
492 sts = sio_in(up, SIOSTS);
493 if (sts & 0x5) {
494 spin_lock(&up->port.lock);
495 m32r_sio_handle_port(up, sts, regs);
496 spin_unlock(&up->port.lock);
497
498 end = NULL;
499 } else if (end == NULL)
500 end = l;
501
502 l = l->next;
503
504 if (l == i->head && pass_counter++ > PASS_LIMIT) {
505 if (sts & 0xe0)
506 sio_error(&sts);
507 break;
508 }
509 } while (l != end);
510
511 spin_unlock(&i->lock);
512
513 DEBUG_INTR("end.\n");
514
515 return IRQ_HANDLED;
516}
517
518/*
519 * To support ISA shared interrupts, we need to have one interrupt
520 * handler that ensures that the IRQ line has been deasserted
521 * before returning. Failing to do this will result in the IRQ
522 * line being stuck active, and, since ISA irqs are edge triggered,
523 * no more IRQs will be seen.
524 */
525static void serial_do_unlink(struct irq_info *i, struct uart_sio_port *up)
526{
527 spin_lock_irq(&i->lock);
528
529 if (!list_empty(i->head)) {
530 if (i->head == &up->list)
531 i->head = i->head->next;
532 list_del(&up->list);
533 } else {
534 BUG_ON(i->head != &up->list);
535 i->head = NULL;
536 }
537
538 spin_unlock_irq(&i->lock);
539}
540
541static int serial_link_irq_chain(struct uart_sio_port *up)
542{
543 struct irq_info *i = irq_lists + up->port.irq;
Thomas Gleixner40663cc2006-07-01 19:29:43 -0700544 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 spin_lock_irq(&i->lock);
547
548 if (i->head) {
549 list_add(&up->list, i->head);
550 spin_unlock_irq(&i->lock);
551
552 ret = 0;
553 } else {
554 INIT_LIST_HEAD(&up->list);
555 i->head = &up->list;
556 spin_unlock_irq(&i->lock);
557
558 ret = request_irq(up->port.irq, m32r_sio_interrupt,
559 irq_flags, "SIO0-RX", i);
560 ret |= request_irq(up->port.irq + 1, m32r_sio_interrupt,
561 irq_flags, "SIO0-TX", i);
562 if (ret < 0)
563 serial_do_unlink(i, up);
564 }
565
566 return ret;
567}
568
569static void serial_unlink_irq_chain(struct uart_sio_port *up)
570{
571 struct irq_info *i = irq_lists + up->port.irq;
572
573 BUG_ON(i->head == NULL);
574
575 if (list_empty(i->head)) {
576 free_irq(up->port.irq, i);
577 free_irq(up->port.irq + 1, i);
578 }
579
580 serial_do_unlink(i, up);
581}
582
583/*
584 * This function is used to handle ports that do not have an interrupt.
585 */
586static void m32r_sio_timeout(unsigned long data)
587{
588 struct uart_sio_port *up = (struct uart_sio_port *)data;
589 unsigned int timeout;
590 unsigned int sts;
591
592 sts = sio_in(up, SIOSTS);
593 if (sts & 0x5) {
594 spin_lock(&up->port.lock);
595 m32r_sio_handle_port(up, sts, NULL);
596 spin_unlock(&up->port.lock);
597 }
598
599 timeout = up->port.timeout;
600 timeout = timeout > 6 ? (timeout / 2 - 2) : 1;
601 mod_timer(&up->timer, jiffies + timeout);
602}
603
604static unsigned int m32r_sio_tx_empty(struct uart_port *port)
605{
606 struct uart_sio_port *up = (struct uart_sio_port *)port;
607 unsigned long flags;
608 unsigned int ret;
609
610 spin_lock_irqsave(&up->port.lock, flags);
611 ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0;
612 spin_unlock_irqrestore(&up->port.lock, flags);
613
614 return ret;
615}
616
617static unsigned int m32r_sio_get_mctrl(struct uart_port *port)
618{
619 return 0;
620}
621
622static void m32r_sio_set_mctrl(struct uart_port *port, unsigned int mctrl)
623{
624
625}
626
627static void m32r_sio_break_ctl(struct uart_port *port, int break_state)
628{
629
630}
631
632static int m32r_sio_startup(struct uart_port *port)
633{
634 struct uart_sio_port *up = (struct uart_sio_port *)port;
635 int retval;
636
637 sio_init();
638
639 /*
640 * If the "interrupt" for this port doesn't correspond with any
641 * hardware interrupt, we use a timer-based system. The original
642 * driver used to do this with IRQ0.
643 */
644 if (!is_real_interrupt(up->port.irq)) {
645 unsigned int timeout = up->port.timeout;
646
647 timeout = timeout > 6 ? (timeout / 2 - 2) : 1;
648
649 up->timer.data = (unsigned long)up;
650 mod_timer(&up->timer, jiffies + timeout);
651 } else {
652 retval = serial_link_irq_chain(up);
653 if (retval)
654 return retval;
655 }
656
657 /*
658 * Finally, enable interrupts. Note: Modem status interrupts
659 * are set via set_termios(), which will be occurring imminently
660 * anyway, so we don't enable them here.
661 * - M32R_SIO: 0x0c
662 * - M32R_PLDSIO: 0x04
663 */
664 up->ier = UART_IER_MSI | UART_IER_RLSI | UART_IER_RDI;
665 sio_out(up, SIOTRCR, up->ier);
666
667 /*
668 * And clear the interrupt registers again for luck.
669 */
670 sio_reset();
671
672 return 0;
673}
674
675static void m32r_sio_shutdown(struct uart_port *port)
676{
677 struct uart_sio_port *up = (struct uart_sio_port *)port;
678
679 /*
680 * Disable interrupts from this port
681 */
682 up->ier = 0;
683 sio_out(up, SIOTRCR, 0);
684
685 /*
686 * Disable break condition and FIFOs
687 */
688
689 sio_init();
690
691 if (!is_real_interrupt(up->port.irq))
692 del_timer_sync(&up->timer);
693 else
694 serial_unlink_irq_chain(up);
695}
696
697static unsigned int m32r_sio_get_divisor(struct uart_port *port,
698 unsigned int baud)
699{
700 return uart_get_divisor(port, baud);
701}
702
703static void m32r_sio_set_termios(struct uart_port *port,
704 struct termios *termios, struct termios *old)
705{
706 struct uart_sio_port *up = (struct uart_sio_port *)port;
707 unsigned char cval = 0;
708 unsigned long flags;
709 unsigned int baud, quot;
710
711 switch (termios->c_cflag & CSIZE) {
712 case CS5:
Russell King0a8b80c52005-06-24 19:48:22 +0100713 cval = UART_LCR_WLEN5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 break;
715 case CS6:
Russell King0a8b80c52005-06-24 19:48:22 +0100716 cval = UART_LCR_WLEN6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 break;
718 case CS7:
Russell King0a8b80c52005-06-24 19:48:22 +0100719 cval = UART_LCR_WLEN7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 break;
721 default:
722 case CS8:
Russell King0a8b80c52005-06-24 19:48:22 +0100723 cval = UART_LCR_WLEN8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 break;
725 }
726
727 if (termios->c_cflag & CSTOPB)
Russell King0a8b80c52005-06-24 19:48:22 +0100728 cval |= UART_LCR_STOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (termios->c_cflag & PARENB)
730 cval |= UART_LCR_PARITY;
731 if (!(termios->c_cflag & PARODD))
732 cval |= UART_LCR_EPAR;
733#ifdef CMSPAR
734 if (termios->c_cflag & CMSPAR)
735 cval |= UART_LCR_SPAR;
736#endif
737
738 /*
739 * Ask the core to calculate the divisor for us.
740 */
741#ifdef CONFIG_SERIAL_M32R_PLDSIO
742 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/4);
743#else
744 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
745#endif
746 quot = m32r_sio_get_divisor(port, baud);
747
748 /*
749 * Ok, we're now changing the port state. Do it with
750 * interrupts disabled.
751 */
752 spin_lock_irqsave(&up->port.lock, flags);
753
754 sio_set_baud_rate(baud);
755
756 /*
757 * Update the per-port timeout.
758 */
759 uart_update_timeout(port, termios->c_cflag, baud);
760
761 up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR;
762 if (termios->c_iflag & INPCK)
763 up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE;
764 if (termios->c_iflag & (BRKINT | PARMRK))
765 up->port.read_status_mask |= UART_LSR_BI;
766
767 /*
768 * Characteres to ignore
769 */
770 up->port.ignore_status_mask = 0;
771 if (termios->c_iflag & IGNPAR)
772 up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
773 if (termios->c_iflag & IGNBRK) {
774 up->port.ignore_status_mask |= UART_LSR_BI;
775 /*
776 * If we're ignoring parity and break indicators,
777 * ignore overruns too (for real raw support).
778 */
779 if (termios->c_iflag & IGNPAR)
780 up->port.ignore_status_mask |= UART_LSR_OE;
781 }
782
783 /*
784 * ignore all characters if CREAD is not set
785 */
786 if ((termios->c_cflag & CREAD) == 0)
787 up->port.ignore_status_mask |= UART_LSR_DR;
788
789 /*
790 * CTS flow control flag and modem status interrupts
791 */
792 up->ier &= ~UART_IER_MSI;
793 if (UART_ENABLE_MS(&up->port, termios->c_cflag))
794 up->ier |= UART_IER_MSI;
795
796 serial_out(up, UART_IER, up->ier);
797
798 up->lcr = cval; /* Save LCR */
799 spin_unlock_irqrestore(&up->port.lock, flags);
800}
801
802static void m32r_sio_pm(struct uart_port *port, unsigned int state,
803 unsigned int oldstate)
804{
805 struct uart_sio_port *up = (struct uart_sio_port *)port;
806
807 if (up->pm)
808 up->pm(port, state, oldstate);
809}
810
811/*
812 * Resource handling. This is complicated by the fact that resources
813 * depend on the port type. Maybe we should be claiming the standard
814 * 8250 ports, and then trying to get other resources as necessary?
815 */
816static int
817m32r_sio_request_std_resource(struct uart_sio_port *up, struct resource **res)
818{
819 unsigned int size = 8 << up->port.regshift;
820#ifndef CONFIG_SERIAL_M32R_PLDSIO
821 unsigned long start;
822#endif
823 int ret = 0;
824
825 switch (up->port.iotype) {
826 case UPIO_MEM:
827 if (up->port.mapbase) {
828#ifdef CONFIG_SERIAL_M32R_PLDSIO
829 *res = request_mem_region(up->port.mapbase, size, "serial");
830#else
831 start = up->port.mapbase;
832 *res = request_mem_region(start, size, "serial");
833#endif
834 if (!*res)
835 ret = -EBUSY;
836 }
837 break;
838
839 case UPIO_PORT:
840 *res = request_region(up->port.iobase, size, "serial");
841 if (!*res)
842 ret = -EBUSY;
843 break;
844 }
845 return ret;
846}
847
848static void m32r_sio_release_port(struct uart_port *port)
849{
850 struct uart_sio_port *up = (struct uart_sio_port *)port;
851 unsigned long start, offset = 0, size = 0;
852
853 size <<= up->port.regshift;
854
855 switch (up->port.iotype) {
856 case UPIO_MEM:
857 if (up->port.mapbase) {
858 /*
859 * Unmap the area.
860 */
861 iounmap(up->port.membase);
862 up->port.membase = NULL;
863
864 start = up->port.mapbase;
865
866 if (size)
867 release_mem_region(start + offset, size);
868 release_mem_region(start, 8 << up->port.regshift);
869 }
870 break;
871
872 case UPIO_PORT:
873 start = up->port.iobase;
874
875 if (size)
876 release_region(start + offset, size);
877 release_region(start + offset, 8 << up->port.regshift);
878 break;
879
880 default:
881 break;
882 }
883}
884
885static int m32r_sio_request_port(struct uart_port *port)
886{
887 struct uart_sio_port *up = (struct uart_sio_port *)port;
888 struct resource *res = NULL;
889 int ret = 0;
890
891 ret = m32r_sio_request_std_resource(up, &res);
892
893 /*
894 * If we have a mapbase, then request that as well.
895 */
896 if (ret == 0 && up->port.flags & UPF_IOREMAP) {
897 int size = res->end - res->start + 1;
898
899 up->port.membase = ioremap(up->port.mapbase, size);
900 if (!up->port.membase)
901 ret = -ENOMEM;
902 }
903
904 if (ret < 0) {
905 if (res)
906 release_resource(res);
907 }
908
909 return ret;
910}
911
912static void m32r_sio_config_port(struct uart_port *port, int flags)
913{
914 struct uart_sio_port *up = (struct uart_sio_port *)port;
915
916 spin_lock_irqsave(&up->port.lock, flags);
917
918 up->port.type = (PORT_M32R_SIO - PORT_M32R_BASE + 1);
919 up->port.fifosize = uart_config[up->port.type].dfl_xmit_fifo_size;
920
921 spin_unlock_irqrestore(&up->port.lock, flags);
922}
923
924static int
925m32r_sio_verify_port(struct uart_port *port, struct serial_struct *ser)
926{
927 if (ser->irq >= NR_IRQS || ser->irq < 0 ||
928 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN ||
929 ser->type >= ARRAY_SIZE(uart_config))
930 return -EINVAL;
931 return 0;
932}
933
934static const char *
935m32r_sio_type(struct uart_port *port)
936{
937 int type = port->type;
938
939 if (type >= ARRAY_SIZE(uart_config))
940 type = 0;
941 return uart_config[type].name;
942}
943
944static struct uart_ops m32r_sio_pops = {
945 .tx_empty = m32r_sio_tx_empty,
946 .set_mctrl = m32r_sio_set_mctrl,
947 .get_mctrl = m32r_sio_get_mctrl,
948 .stop_tx = m32r_sio_stop_tx,
949 .start_tx = m32r_sio_start_tx,
950 .stop_rx = m32r_sio_stop_rx,
951 .enable_ms = m32r_sio_enable_ms,
952 .break_ctl = m32r_sio_break_ctl,
953 .startup = m32r_sio_startup,
954 .shutdown = m32r_sio_shutdown,
955 .set_termios = m32r_sio_set_termios,
956 .pm = m32r_sio_pm,
957 .type = m32r_sio_type,
958 .release_port = m32r_sio_release_port,
959 .request_port = m32r_sio_request_port,
960 .config_port = m32r_sio_config_port,
961 .verify_port = m32r_sio_verify_port,
962};
963
964static struct uart_sio_port m32r_sio_ports[UART_NR];
965
966static void __init m32r_sio_init_ports(void)
967{
968 struct uart_sio_port *up;
969 static int first = 1;
970 int i;
971
972 if (!first)
973 return;
974 first = 0;
975
976 for (i = 0, up = m32r_sio_ports; i < ARRAY_SIZE(old_serial_port);
977 i++, up++) {
978 up->port.iobase = old_serial_port[i].port;
979 up->port.irq = irq_canonicalize(old_serial_port[i].irq);
980 up->port.uartclk = old_serial_port[i].baud_base * 16;
981 up->port.flags = old_serial_port[i].flags;
982 up->port.membase = old_serial_port[i].iomem_base;
983 up->port.iotype = old_serial_port[i].io_type;
984 up->port.regshift = old_serial_port[i].iomem_reg_shift;
985 up->port.ops = &m32r_sio_pops;
986 }
987}
988
989static void __init m32r_sio_register_ports(struct uart_driver *drv)
990{
991 int i;
992
993 m32r_sio_init_ports();
994
995 for (i = 0; i < UART_NR; i++) {
996 struct uart_sio_port *up = &m32r_sio_ports[i];
997
998 up->port.line = i;
999 up->port.ops = &m32r_sio_pops;
1000 init_timer(&up->timer);
1001 up->timer.function = m32r_sio_timeout;
1002
1003 /*
1004 * ALPHA_KLUDGE_MCR needs to be killed.
1005 */
1006 up->mcr_mask = ~ALPHA_KLUDGE_MCR;
1007 up->mcr_force = ALPHA_KLUDGE_MCR;
1008
1009 uart_add_one_port(drv, &up->port);
1010 }
1011}
1012
1013#ifdef CONFIG_SERIAL_M32R_SIO_CONSOLE
1014
1015/*
1016 * Wait for transmitter & holding register to empty
1017 */
1018static inline void wait_for_xmitr(struct uart_sio_port *up)
1019{
1020 unsigned int status, tmout = 10000;
1021
1022 /* Wait up to 10ms for the character(s) to be sent. */
1023 do {
1024 status = sio_in(up, SIOSTS);
1025
1026 if (--tmout == 0)
1027 break;
1028 udelay(1);
1029 } while ((status & UART_EMPTY) != UART_EMPTY);
1030
1031 /* Wait up to 1s for flow control if necessary */
1032 if (up->port.flags & UPF_CONS_FLOW) {
1033 tmout = 1000000;
1034 while (--tmout)
1035 udelay(1);
1036 }
1037}
1038
Russell Kingd3587882006-03-20 20:00:09 +00001039static void m32r_sio_console_putchar(struct uart_port *port, int ch)
1040{
1041 struct uart_sio_port *up = (struct uart_sio_port *)port;
1042
1043 wait_for_xmitr(up);
1044 sio_out(up, SIOTXB, ch);
1045}
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047/*
1048 * Print a string to the serial port trying not to disturb
1049 * any possible real use of the port...
1050 *
1051 * The console_lock must be held when we get here.
1052 */
1053static void m32r_sio_console_write(struct console *co, const char *s,
1054 unsigned int count)
1055{
1056 struct uart_sio_port *up = &m32r_sio_ports[co->index];
1057 unsigned int ier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 /*
1060 * First save the UER then disable the interrupts
1061 */
1062 ier = sio_in(up, SIOTRCR);
1063 sio_out(up, SIOTRCR, 0);
1064
Russell Kingd3587882006-03-20 20:00:09 +00001065 uart_console_write(&up->port, s, count, m32r_sio_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 /*
1068 * Finally, wait for transmitter to become empty
1069 * and restore the IER
1070 */
1071 wait_for_xmitr(up);
1072 sio_out(up, SIOTRCR, ier);
1073}
1074
1075static int __init m32r_sio_console_setup(struct console *co, char *options)
1076{
1077 struct uart_port *port;
1078 int baud = 9600;
1079 int bits = 8;
1080 int parity = 'n';
1081 int flow = 'n';
1082
1083 /*
1084 * Check whether an invalid uart number has been specified, and
1085 * if so, search for the first available port that does have
1086 * console support.
1087 */
1088 if (co->index >= UART_NR)
1089 co->index = 0;
1090 port = &m32r_sio_ports[co->index].port;
1091
1092 /*
1093 * Temporary fix.
1094 */
1095 spin_lock_init(&port->lock);
1096
1097 if (options)
1098 uart_parse_options(options, &baud, &parity, &bits, &flow);
1099
1100 return uart_set_options(port, co, baud, parity, bits, flow);
1101}
1102
Al Viroa828b8e2005-08-23 22:47:27 +01001103static struct uart_driver m32r_sio_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104static struct console m32r_sio_console = {
1105 .name = "ttyS",
1106 .write = m32r_sio_console_write,
1107 .device = uart_console_device,
1108 .setup = m32r_sio_console_setup,
1109 .flags = CON_PRINTBUFFER,
1110 .index = -1,
1111 .data = &m32r_sio_reg,
1112};
1113
1114static int __init m32r_sio_console_init(void)
1115{
1116 sio_reset();
1117 sio_init();
1118 m32r_sio_init_ports();
1119 register_console(&m32r_sio_console);
1120 return 0;
1121}
1122console_initcall(m32r_sio_console_init);
1123
1124#define M32R_SIO_CONSOLE &m32r_sio_console
1125#else
1126#define M32R_SIO_CONSOLE NULL
1127#endif
1128
1129static struct uart_driver m32r_sio_reg = {
1130 .owner = THIS_MODULE,
1131 .driver_name = "sio",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 .dev_name = "ttyS",
1133 .major = TTY_MAJOR,
1134 .minor = 64,
1135 .nr = UART_NR,
1136 .cons = M32R_SIO_CONSOLE,
1137};
1138
1139/**
1140 * m32r_sio_suspend_port - suspend one serial port
1141 * @line: serial line number
1142 *
1143 * Suspend one serial port.
1144 */
1145void m32r_sio_suspend_port(int line)
1146{
1147 uart_suspend_port(&m32r_sio_reg, &m32r_sio_ports[line].port);
1148}
1149
1150/**
1151 * m32r_sio_resume_port - resume one serial port
1152 * @line: serial line number
1153 *
1154 * Resume one serial port.
1155 */
1156void m32r_sio_resume_port(int line)
1157{
1158 uart_resume_port(&m32r_sio_reg, &m32r_sio_ports[line].port);
1159}
1160
1161static int __init m32r_sio_init(void)
1162{
1163 int ret, i;
1164
1165 printk(KERN_INFO "Serial: M32R SIO driver $Revision: 1.11 $ ");
1166
1167 for (i = 0; i < NR_IRQS; i++)
1168 spin_lock_init(&irq_lists[i].lock);
1169
1170 ret = uart_register_driver(&m32r_sio_reg);
1171 if (ret >= 0)
1172 m32r_sio_register_ports(&m32r_sio_reg);
1173
1174 return ret;
1175}
1176
1177static void __exit m32r_sio_exit(void)
1178{
1179 int i;
1180
1181 for (i = 0; i < UART_NR; i++)
1182 uart_remove_one_port(&m32r_sio_reg, &m32r_sio_ports[i].port);
1183
1184 uart_unregister_driver(&m32r_sio_reg);
1185}
1186
1187module_init(m32r_sio_init);
1188module_exit(m32r_sio_exit);
1189
1190EXPORT_SYMBOL(m32r_sio_suspend_port);
1191EXPORT_SYMBOL(m32r_sio_resume_port);
1192
1193MODULE_LICENSE("GPL");
1194MODULE_DESCRIPTION("Generic M32R SIO serial driver $Revision: 1.11 $");