4 * Driver for M32R serial ports
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 * Based on drivers/serial/8250.c.
9 * Copyright (C) 2001 Russell King.
10 * Copyright (C) 2004 Hirokazu Takata <takata at linux-m32r.org>
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.
19 * A note about mapbase / membase
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.
25 * membase is an 'ioremapped' cookie. This is compatible with the old
26 * serial.c driver, and is currently the preferred form.
29 #if defined(CONFIG_SERIAL_M32R_SIO_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
33 #include <linux/module.h>
34 #include <linux/tty.h>
35 #include <linux/tty_flip.h>
36 #include <linux/ioport.h>
37 #include <linux/init.h>
38 #include <linux/console.h>
39 #include <linux/sysrq.h>
40 #include <linux/serial.h>
41 #include <linux/delay.h>
47 #define BAUD_RATE 115200
49 #include <linux/serial_core.h>
51 #include "m32r_sio_reg.h"
57 #define DEBUG_AUTOCONF(fmt...) printk(fmt)
59 #define DEBUG_AUTOCONF(fmt...) do { } while (0)
63 #define DEBUG_INTR(fmt...) printk(fmt)
65 #define DEBUG_INTR(fmt...) do { } while (0)
68 #define PASS_LIMIT 256
70 #define BASE_BAUD 115200
72 /* Standard COM flags */
73 #define STD_COM_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST)
76 * SERIAL_PORT_DFNS tells us about built-in ports that have no
77 * standard enumeration mechanism. Platforms that can find all
78 * serial ports via mechanisms like ACPI or PCI need not supply it.
80 #if defined(CONFIG_PLAT_USRV)
82 #define SERIAL_PORT_DFNS \
83 /* UART CLK PORT IRQ FLAGS */ \
84 { 0, BASE_BAUD, 0x3F8, PLD_IRQ_UART0, STD_COM_FLAGS }, /* ttyS0 */ \
85 { 0, BASE_BAUD, 0x2F8, PLD_IRQ_UART1, STD_COM_FLAGS }, /* ttyS1 */
87 #else /* !CONFIG_PLAT_USRV */
89 #if defined(CONFIG_SERIAL_M32R_PLDSIO)
90 #define SERIAL_PORT_DFNS \
91 { 0, BASE_BAUD, ((unsigned long)PLD_ESIO0CR), PLD_IRQ_SIO0_RCV, \
92 STD_COM_FLAGS }, /* ttyS0 */
94 #define SERIAL_PORT_DFNS \
95 { 0, BASE_BAUD, M32R_SIO_OFFSET, M32R_IRQ_SIO0_R, \
96 STD_COM_FLAGS }, /* ttyS0 */
99 #endif /* !CONFIG_PLAT_USRV */
101 static struct old_serial_port old_serial_port
[] = {
105 #define UART_NR ARRAY_SIZE(old_serial_port)
107 struct uart_sio_port
{
108 struct uart_port port
;
109 struct timer_list timer
; /* "no irq" timer */
110 struct list_head list
; /* ports on this IRQ */
115 unsigned char mcr_mask
; /* mask of user bits */
116 unsigned char mcr_force
; /* mask of forced bits */
117 unsigned char lsr_break_flag
;
120 * We provide a per-port pm hook.
122 void (*pm
)(struct uart_port
*port
,
123 unsigned int state
, unsigned int old
);
128 struct list_head
*head
;
131 static struct irq_info irq_lists
[NR_IRQS
];
133 #ifdef CONFIG_SERIAL_M32R_PLDSIO
135 #define __sio_in(x) inw((unsigned long)(x))
136 #define __sio_out(v,x) outw((v),(unsigned long)(x))
138 static inline void sio_set_baud_rate(unsigned long baud
)
140 unsigned short sbaud
;
141 sbaud
= (boot_cpu_data
.bus_clock
/ (baud
* 4))-1;
142 __sio_out(sbaud
, PLD_ESIO0BAUR
);
145 static void sio_reset(void)
149 tmp
= __sio_in(PLD_ESIO0RXB
);
150 tmp
= __sio_in(PLD_ESIO0RXB
);
151 tmp
= __sio_in(PLD_ESIO0CR
);
152 sio_set_baud_rate(BAUD_RATE
);
153 __sio_out(0x0300, PLD_ESIO0CR
);
154 __sio_out(0x0003, PLD_ESIO0CR
);
157 static void sio_init(void)
161 tmp
= __sio_in(PLD_ESIO0RXB
);
162 tmp
= __sio_in(PLD_ESIO0RXB
);
163 tmp
= __sio_in(PLD_ESIO0CR
);
164 __sio_out(0x0300, PLD_ESIO0CR
);
165 __sio_out(0x0003, PLD_ESIO0CR
);
168 static void sio_error(int *status
)
170 printk("SIO0 error[%04x]\n", *status
);
173 } while ((*status
= __sio_in(PLD_ESIO0CR
)) != 3);
176 #else /* not CONFIG_SERIAL_M32R_PLDSIO */
178 #define __sio_in(x) inl(x)
179 #define __sio_out(v,x) outl((v),(x))
181 static inline void sio_set_baud_rate(unsigned long baud
)
185 i
= boot_cpu_data
.bus_clock
/ (baud
* 16);
186 j
= (boot_cpu_data
.bus_clock
- (i
* baud
* 16)) / baud
;
190 __sio_out(i
, M32R_SIO0_BAUR_PORTL
);
191 __sio_out(j
, M32R_SIO0_RBAUR_PORTL
);
194 static void sio_reset(void)
196 __sio_out(0x00000300, M32R_SIO0_CR_PORTL
); /* init status */
197 __sio_out(0x00000800, M32R_SIO0_MOD1_PORTL
); /* 8bit */
198 __sio_out(0x00000080, M32R_SIO0_MOD0_PORTL
); /* 1stop non */
199 sio_set_baud_rate(BAUD_RATE
);
200 __sio_out(0x00000000, M32R_SIO0_TRCR_PORTL
);
201 __sio_out(0x00000003, M32R_SIO0_CR_PORTL
); /* RXCEN */
204 static void sio_init(void)
208 tmp
= __sio_in(M32R_SIO0_RXB_PORTL
);
209 tmp
= __sio_in(M32R_SIO0_RXB_PORTL
);
210 tmp
= __sio_in(M32R_SIO0_STS_PORTL
);
211 __sio_out(0x00000003, M32R_SIO0_CR_PORTL
);
214 static void sio_error(int *status
)
216 printk("SIO0 error[%04x]\n", *status
);
219 } while ((*status
= __sio_in(M32R_SIO0_CR_PORTL
)) != 3);
222 #endif /* CONFIG_SERIAL_M32R_PLDSIO */
224 static unsigned int sio_in(struct uart_sio_port
*up
, int offset
)
226 return __sio_in(up
->port
.iobase
+ offset
);
229 static void sio_out(struct uart_sio_port
*up
, int offset
, int value
)
231 __sio_out(value
, up
->port
.iobase
+ offset
);
234 static unsigned int serial_in(struct uart_sio_port
*up
, int offset
)
239 return __sio_in(offset
);
242 static void serial_out(struct uart_sio_port
*up
, int offset
, int value
)
247 __sio_out(value
, offset
);
250 static void m32r_sio_stop_tx(struct uart_port
*port
)
252 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
254 if (up
->ier
& UART_IER_THRI
) {
255 up
->ier
&= ~UART_IER_THRI
;
256 serial_out(up
, UART_IER
, up
->ier
);
260 static void m32r_sio_start_tx(struct uart_port
*port
)
262 #ifdef CONFIG_SERIAL_M32R_PLDSIO
263 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
264 struct circ_buf
*xmit
= &up
->port
.state
->xmit
;
266 if (!(up
->ier
& UART_IER_THRI
)) {
267 up
->ier
|= UART_IER_THRI
;
268 serial_out(up
, UART_IER
, up
->ier
);
269 serial_out(up
, UART_TX
, xmit
->buf
[xmit
->tail
]);
270 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
271 up
->port
.icount
.tx
++;
273 while((serial_in(up
, UART_LSR
) & UART_EMPTY
) != UART_EMPTY
);
275 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
277 if (!(up
->ier
& UART_IER_THRI
)) {
278 up
->ier
|= UART_IER_THRI
;
279 serial_out(up
, UART_IER
, up
->ier
);
284 static void m32r_sio_stop_rx(struct uart_port
*port
)
286 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
288 up
->ier
&= ~UART_IER_RLSI
;
289 up
->port
.read_status_mask
&= ~UART_LSR_DR
;
290 serial_out(up
, UART_IER
, up
->ier
);
293 static void m32r_sio_enable_ms(struct uart_port
*port
)
295 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
297 up
->ier
|= UART_IER_MSI
;
298 serial_out(up
, UART_IER
, up
->ier
);
301 static void receive_chars(struct uart_sio_port
*up
, int *status
)
303 struct tty_port
*port
= &up
->port
.state
->port
;
309 ch
= sio_in(up
, SIORXB
);
311 up
->port
.icount
.rx
++;
313 if (unlikely(*status
& (UART_LSR_BI
| UART_LSR_PE
|
314 UART_LSR_FE
| UART_LSR_OE
))) {
316 * For statistics only
318 if (*status
& UART_LSR_BI
) {
319 *status
&= ~(UART_LSR_FE
| UART_LSR_PE
);
320 up
->port
.icount
.brk
++;
322 * We do the SysRQ and SAK checking
323 * here because otherwise the break
324 * may get masked by ignore_status_mask
325 * or read_status_mask.
327 if (uart_handle_break(&up
->port
))
329 } else if (*status
& UART_LSR_PE
)
330 up
->port
.icount
.parity
++;
331 else if (*status
& UART_LSR_FE
)
332 up
->port
.icount
.frame
++;
333 if (*status
& UART_LSR_OE
)
334 up
->port
.icount
.overrun
++;
337 * Mask off conditions which should be ingored.
339 *status
&= up
->port
.read_status_mask
;
341 if (up
->port
.line
== up
->port
.cons
->index
) {
342 /* Recover the break flag from console xmit */
343 *status
|= up
->lsr_break_flag
;
344 up
->lsr_break_flag
= 0;
347 if (*status
& UART_LSR_BI
) {
348 DEBUG_INTR("handling break....");
350 } else if (*status
& UART_LSR_PE
)
352 else if (*status
& UART_LSR_FE
)
355 if (uart_handle_sysrq_char(&up
->port
, ch
))
357 if ((*status
& up
->port
.ignore_status_mask
) == 0)
358 tty_insert_flip_char(port
, ch
, flag
);
360 if (*status
& UART_LSR_OE
) {
362 * Overrun is special, since it's reported
363 * immediately, and doesn't affect the current
366 tty_insert_flip_char(port
, 0, TTY_OVERRUN
);
369 *status
= serial_in(up
, UART_LSR
);
370 } while ((*status
& UART_LSR_DR
) && (max_count
-- > 0));
372 spin_unlock(&up
->port
.lock
);
373 tty_flip_buffer_push(port
);
374 spin_lock(&up
->port
.lock
);
377 static void transmit_chars(struct uart_sio_port
*up
)
379 struct circ_buf
*xmit
= &up
->port
.state
->xmit
;
382 if (up
->port
.x_char
) {
383 #ifndef CONFIG_SERIAL_M32R_PLDSIO /* XXX */
384 serial_out(up
, UART_TX
, up
->port
.x_char
);
386 up
->port
.icount
.tx
++;
390 if (uart_circ_empty(xmit
) || uart_tx_stopped(&up
->port
)) {
391 m32r_sio_stop_tx(&up
->port
);
395 count
= up
->port
.fifosize
;
397 serial_out(up
, UART_TX
, xmit
->buf
[xmit
->tail
]);
398 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
399 up
->port
.icount
.tx
++;
400 if (uart_circ_empty(xmit
))
402 while (!(serial_in(up
, UART_LSR
) & UART_LSR_THRE
));
404 } while (--count
> 0);
406 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
407 uart_write_wakeup(&up
->port
);
409 DEBUG_INTR("THRE...");
411 if (uart_circ_empty(xmit
))
412 m32r_sio_stop_tx(&up
->port
);
416 * This handles the interrupt from one port.
418 static inline void m32r_sio_handle_port(struct uart_sio_port
*up
,
421 DEBUG_INTR("status = %x...", status
);
424 receive_chars(up
, &status
);
430 * This is the serial driver's interrupt routine.
432 * Arjan thinks the old way was overly complex, so it got simplified.
433 * Alan disagrees, saying that need the complexity to handle the weird
434 * nature of ISA shared interrupts. (This is a special exception.)
436 * In order to handle ISA shared interrupts properly, we need to check
437 * that all ports have been serviced, and therefore the ISA interrupt
438 * line has been de-asserted.
440 * This means we need to loop through all ports. checking that they
441 * don't have an interrupt pending.
443 static irqreturn_t
m32r_sio_interrupt(int irq
, void *dev_id
)
445 struct irq_info
*i
= dev_id
;
446 struct list_head
*l
, *end
= NULL
;
447 int pass_counter
= 0;
449 DEBUG_INTR("m32r_sio_interrupt(%d)...", irq
);
451 #ifdef CONFIG_SERIAL_M32R_PLDSIO
452 // if (irq == PLD_IRQ_SIO0_SND)
453 // irq = PLD_IRQ_SIO0_RCV;
455 if (irq
== M32R_IRQ_SIO0_S
)
456 irq
= M32R_IRQ_SIO0_R
;
463 struct uart_sio_port
*up
;
466 up
= list_entry(l
, struct uart_sio_port
, list
);
468 sts
= sio_in(up
, SIOSTS
);
470 spin_lock(&up
->port
.lock
);
471 m32r_sio_handle_port(up
, sts
);
472 spin_unlock(&up
->port
.lock
);
475 } else if (end
== NULL
)
480 if (l
== i
->head
&& pass_counter
++ > PASS_LIMIT
) {
487 spin_unlock(&i
->lock
);
489 DEBUG_INTR("end.\n");
495 * To support ISA shared interrupts, we need to have one interrupt
496 * handler that ensures that the IRQ line has been deasserted
497 * before returning. Failing to do this will result in the IRQ
498 * line being stuck active, and, since ISA irqs are edge triggered,
499 * no more IRQs will be seen.
501 static void serial_do_unlink(struct irq_info
*i
, struct uart_sio_port
*up
)
503 spin_lock_irq(&i
->lock
);
505 if (!list_empty(i
->head
)) {
506 if (i
->head
== &up
->list
)
507 i
->head
= i
->head
->next
;
510 BUG_ON(i
->head
!= &up
->list
);
514 spin_unlock_irq(&i
->lock
);
517 static int serial_link_irq_chain(struct uart_sio_port
*up
)
519 struct irq_info
*i
= irq_lists
+ up
->port
.irq
;
520 int ret
, irq_flags
= 0;
522 spin_lock_irq(&i
->lock
);
525 list_add(&up
->list
, i
->head
);
526 spin_unlock_irq(&i
->lock
);
530 INIT_LIST_HEAD(&up
->list
);
532 spin_unlock_irq(&i
->lock
);
534 ret
= request_irq(up
->port
.irq
, m32r_sio_interrupt
,
535 irq_flags
, "SIO0-RX", i
);
536 ret
|= request_irq(up
->port
.irq
+ 1, m32r_sio_interrupt
,
537 irq_flags
, "SIO0-TX", i
);
539 serial_do_unlink(i
, up
);
545 static void serial_unlink_irq_chain(struct uart_sio_port
*up
)
547 struct irq_info
*i
= irq_lists
+ up
->port
.irq
;
549 BUG_ON(i
->head
== NULL
);
551 if (list_empty(i
->head
)) {
552 free_irq(up
->port
.irq
, i
);
553 free_irq(up
->port
.irq
+ 1, i
);
556 serial_do_unlink(i
, up
);
560 * This function is used to handle ports that do not have an interrupt.
562 static void m32r_sio_timeout(unsigned long data
)
564 struct uart_sio_port
*up
= (struct uart_sio_port
*)data
;
565 unsigned int timeout
;
568 sts
= sio_in(up
, SIOSTS
);
570 spin_lock(&up
->port
.lock
);
571 m32r_sio_handle_port(up
, sts
);
572 spin_unlock(&up
->port
.lock
);
575 timeout
= up
->port
.timeout
;
576 timeout
= timeout
> 6 ? (timeout
/ 2 - 2) : 1;
577 mod_timer(&up
->timer
, jiffies
+ timeout
);
580 static unsigned int m32r_sio_tx_empty(struct uart_port
*port
)
582 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
586 spin_lock_irqsave(&up
->port
.lock
, flags
);
587 ret
= serial_in(up
, UART_LSR
) & UART_LSR_TEMT
? TIOCSER_TEMT
: 0;
588 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
593 static unsigned int m32r_sio_get_mctrl(struct uart_port
*port
)
598 static void m32r_sio_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
603 static void m32r_sio_break_ctl(struct uart_port
*port
, int break_state
)
608 static int m32r_sio_startup(struct uart_port
*port
)
610 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
616 * If the "interrupt" for this port doesn't correspond with any
617 * hardware interrupt, we use a timer-based system. The original
618 * driver used to do this with IRQ0.
621 unsigned int timeout
= up
->port
.timeout
;
623 timeout
= timeout
> 6 ? (timeout
/ 2 - 2) : 1;
625 up
->timer
.data
= (unsigned long)up
;
626 mod_timer(&up
->timer
, jiffies
+ timeout
);
628 retval
= serial_link_irq_chain(up
);
634 * Finally, enable interrupts. Note: Modem status interrupts
635 * are set via set_termios(), which will be occurring imminently
636 * anyway, so we don't enable them here.
638 * - M32R_PLDSIO: 0x04
640 up
->ier
= UART_IER_MSI
| UART_IER_RLSI
| UART_IER_RDI
;
641 sio_out(up
, SIOTRCR
, up
->ier
);
644 * And clear the interrupt registers again for luck.
651 static void m32r_sio_shutdown(struct uart_port
*port
)
653 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
656 * Disable interrupts from this port
659 sio_out(up
, SIOTRCR
, 0);
662 * Disable break condition and FIFOs
668 del_timer_sync(&up
->timer
);
670 serial_unlink_irq_chain(up
);
673 static unsigned int m32r_sio_get_divisor(struct uart_port
*port
,
676 return uart_get_divisor(port
, baud
);
679 static void m32r_sio_set_termios(struct uart_port
*port
,
680 struct ktermios
*termios
, struct ktermios
*old
)
682 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
683 unsigned char cval
= 0;
685 unsigned int baud
, quot
;
687 switch (termios
->c_cflag
& CSIZE
) {
689 cval
= UART_LCR_WLEN5
;
692 cval
= UART_LCR_WLEN6
;
695 cval
= UART_LCR_WLEN7
;
699 cval
= UART_LCR_WLEN8
;
703 if (termios
->c_cflag
& CSTOPB
)
704 cval
|= UART_LCR_STOP
;
705 if (termios
->c_cflag
& PARENB
)
706 cval
|= UART_LCR_PARITY
;
707 if (!(termios
->c_cflag
& PARODD
))
708 cval
|= UART_LCR_EPAR
;
710 if (termios
->c_cflag
& CMSPAR
)
711 cval
|= UART_LCR_SPAR
;
715 * Ask the core to calculate the divisor for us.
717 #ifdef CONFIG_SERIAL_M32R_PLDSIO
718 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/4);
720 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/16);
722 quot
= m32r_sio_get_divisor(port
, baud
);
725 * Ok, we're now changing the port state. Do it with
726 * interrupts disabled.
728 spin_lock_irqsave(&up
->port
.lock
, flags
);
730 sio_set_baud_rate(baud
);
733 * Update the per-port timeout.
735 uart_update_timeout(port
, termios
->c_cflag
, baud
);
737 up
->port
.read_status_mask
= UART_LSR_OE
| UART_LSR_THRE
| UART_LSR_DR
;
738 if (termios
->c_iflag
& INPCK
)
739 up
->port
.read_status_mask
|= UART_LSR_FE
| UART_LSR_PE
;
740 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
741 up
->port
.read_status_mask
|= UART_LSR_BI
;
744 * Characteres to ignore
746 up
->port
.ignore_status_mask
= 0;
747 if (termios
->c_iflag
& IGNPAR
)
748 up
->port
.ignore_status_mask
|= UART_LSR_PE
| UART_LSR_FE
;
749 if (termios
->c_iflag
& IGNBRK
) {
750 up
->port
.ignore_status_mask
|= UART_LSR_BI
;
752 * If we're ignoring parity and break indicators,
753 * ignore overruns too (for real raw support).
755 if (termios
->c_iflag
& IGNPAR
)
756 up
->port
.ignore_status_mask
|= UART_LSR_OE
;
760 * ignore all characters if CREAD is not set
762 if ((termios
->c_cflag
& CREAD
) == 0)
763 up
->port
.ignore_status_mask
|= UART_LSR_DR
;
766 * CTS flow control flag and modem status interrupts
768 up
->ier
&= ~UART_IER_MSI
;
769 if (UART_ENABLE_MS(&up
->port
, termios
->c_cflag
))
770 up
->ier
|= UART_IER_MSI
;
772 serial_out(up
, UART_IER
, up
->ier
);
774 up
->lcr
= cval
; /* Save LCR */
775 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
778 static void m32r_sio_pm(struct uart_port
*port
, unsigned int state
,
779 unsigned int oldstate
)
781 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
784 up
->pm(port
, state
, oldstate
);
788 * Resource handling. This is complicated by the fact that resources
789 * depend on the port type. Maybe we should be claiming the standard
790 * 8250 ports, and then trying to get other resources as necessary?
793 m32r_sio_request_std_resource(struct uart_sio_port
*up
, struct resource
**res
)
795 unsigned int size
= 8 << up
->port
.regshift
;
796 #ifndef CONFIG_SERIAL_M32R_PLDSIO
801 switch (up
->port
.iotype
) {
803 if (up
->port
.mapbase
) {
804 #ifdef CONFIG_SERIAL_M32R_PLDSIO
805 *res
= request_mem_region(up
->port
.mapbase
, size
, "serial");
807 start
= up
->port
.mapbase
;
808 *res
= request_mem_region(start
, size
, "serial");
816 *res
= request_region(up
->port
.iobase
, size
, "serial");
824 static void m32r_sio_release_port(struct uart_port
*port
)
826 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
827 unsigned long start
, offset
= 0, size
= 0;
829 size
<<= up
->port
.regshift
;
831 switch (up
->port
.iotype
) {
833 if (up
->port
.mapbase
) {
837 iounmap(up
->port
.membase
);
838 up
->port
.membase
= NULL
;
840 start
= up
->port
.mapbase
;
843 release_mem_region(start
+ offset
, size
);
844 release_mem_region(start
, 8 << up
->port
.regshift
);
849 start
= up
->port
.iobase
;
852 release_region(start
+ offset
, size
);
853 release_region(start
+ offset
, 8 << up
->port
.regshift
);
861 static int m32r_sio_request_port(struct uart_port
*port
)
863 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
864 struct resource
*res
= NULL
;
867 ret
= m32r_sio_request_std_resource(up
, &res
);
870 * If we have a mapbase, then request that as well.
872 if (ret
== 0 && up
->port
.flags
& UPF_IOREMAP
) {
873 int size
= resource_size(res
);
875 up
->port
.membase
= ioremap(up
->port
.mapbase
, size
);
876 if (!up
->port
.membase
)
882 release_resource(res
);
888 static void m32r_sio_config_port(struct uart_port
*port
, int unused
)
890 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
893 spin_lock_irqsave(&up
->port
.lock
, flags
);
895 up
->port
.fifosize
= 1;
897 spin_unlock_irqrestore(&up
->port
.lock
, flags
);
901 m32r_sio_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
903 if (ser
->irq
>= nr_irqs
|| ser
->irq
< 0 || ser
->baud_base
< 9600)
908 static struct uart_ops m32r_sio_pops
= {
909 .tx_empty
= m32r_sio_tx_empty
,
910 .set_mctrl
= m32r_sio_set_mctrl
,
911 .get_mctrl
= m32r_sio_get_mctrl
,
912 .stop_tx
= m32r_sio_stop_tx
,
913 .start_tx
= m32r_sio_start_tx
,
914 .stop_rx
= m32r_sio_stop_rx
,
915 .enable_ms
= m32r_sio_enable_ms
,
916 .break_ctl
= m32r_sio_break_ctl
,
917 .startup
= m32r_sio_startup
,
918 .shutdown
= m32r_sio_shutdown
,
919 .set_termios
= m32r_sio_set_termios
,
921 .release_port
= m32r_sio_release_port
,
922 .request_port
= m32r_sio_request_port
,
923 .config_port
= m32r_sio_config_port
,
924 .verify_port
= m32r_sio_verify_port
,
927 static struct uart_sio_port m32r_sio_ports
[UART_NR
];
929 static void __init
m32r_sio_init_ports(void)
931 struct uart_sio_port
*up
;
932 static int first
= 1;
939 for (i
= 0, up
= m32r_sio_ports
; i
< ARRAY_SIZE(old_serial_port
);
941 up
->port
.iobase
= old_serial_port
[i
].port
;
942 up
->port
.irq
= irq_canonicalize(old_serial_port
[i
].irq
);
943 up
->port
.uartclk
= old_serial_port
[i
].baud_base
* 16;
944 up
->port
.flags
= old_serial_port
[i
].flags
;
945 up
->port
.membase
= old_serial_port
[i
].iomem_base
;
946 up
->port
.iotype
= old_serial_port
[i
].io_type
;
947 up
->port
.regshift
= old_serial_port
[i
].iomem_reg_shift
;
948 up
->port
.ops
= &m32r_sio_pops
;
952 static void __init
m32r_sio_register_ports(struct uart_driver
*drv
)
956 m32r_sio_init_ports();
958 for (i
= 0; i
< UART_NR
; i
++) {
959 struct uart_sio_port
*up
= &m32r_sio_ports
[i
];
962 up
->port
.ops
= &m32r_sio_pops
;
963 init_timer(&up
->timer
);
964 up
->timer
.function
= m32r_sio_timeout
;
969 uart_add_one_port(drv
, &up
->port
);
973 #ifdef CONFIG_SERIAL_M32R_SIO_CONSOLE
976 * Wait for transmitter & holding register to empty
978 static inline void wait_for_xmitr(struct uart_sio_port
*up
)
980 unsigned int status
, tmout
= 10000;
982 /* Wait up to 10ms for the character(s) to be sent. */
984 status
= sio_in(up
, SIOSTS
);
989 } while ((status
& UART_EMPTY
) != UART_EMPTY
);
991 /* Wait up to 1s for flow control if necessary */
992 if (up
->port
.flags
& UPF_CONS_FLOW
) {
999 static void m32r_sio_console_putchar(struct uart_port
*port
, int ch
)
1001 struct uart_sio_port
*up
= (struct uart_sio_port
*)port
;
1004 sio_out(up
, SIOTXB
, ch
);
1008 * Print a string to the serial port trying not to disturb
1009 * any possible real use of the port...
1011 * The console_lock must be held when we get here.
1013 static void m32r_sio_console_write(struct console
*co
, const char *s
,
1016 struct uart_sio_port
*up
= &m32r_sio_ports
[co
->index
];
1020 * First save the UER then disable the interrupts
1022 ier
= sio_in(up
, SIOTRCR
);
1023 sio_out(up
, SIOTRCR
, 0);
1025 uart_console_write(&up
->port
, s
, count
, m32r_sio_console_putchar
);
1028 * Finally, wait for transmitter to become empty
1029 * and restore the IER
1032 sio_out(up
, SIOTRCR
, ier
);
1035 static int __init
m32r_sio_console_setup(struct console
*co
, char *options
)
1037 struct uart_port
*port
;
1044 * Check whether an invalid uart number has been specified, and
1045 * if so, search for the first available port that does have
1048 if (co
->index
>= UART_NR
)
1050 port
= &m32r_sio_ports
[co
->index
].port
;
1055 spin_lock_init(&port
->lock
);
1058 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1060 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
1063 static struct uart_driver m32r_sio_reg
;
1064 static struct console m32r_sio_console
= {
1066 .write
= m32r_sio_console_write
,
1067 .device
= uart_console_device
,
1068 .setup
= m32r_sio_console_setup
,
1069 .flags
= CON_PRINTBUFFER
,
1071 .data
= &m32r_sio_reg
,
1074 static int __init
m32r_sio_console_init(void)
1078 m32r_sio_init_ports();
1079 register_console(&m32r_sio_console
);
1082 console_initcall(m32r_sio_console_init
);
1084 #define M32R_SIO_CONSOLE &m32r_sio_console
1086 #define M32R_SIO_CONSOLE NULL
1089 static struct uart_driver m32r_sio_reg
= {
1090 .owner
= THIS_MODULE
,
1091 .driver_name
= "sio",
1096 .cons
= M32R_SIO_CONSOLE
,
1100 * m32r_sio_suspend_port - suspend one serial port
1101 * @line: serial line number
1103 * Suspend one serial port.
1105 void m32r_sio_suspend_port(int line
)
1107 uart_suspend_port(&m32r_sio_reg
, &m32r_sio_ports
[line
].port
);
1111 * m32r_sio_resume_port - resume one serial port
1112 * @line: serial line number
1114 * Resume one serial port.
1116 void m32r_sio_resume_port(int line
)
1118 uart_resume_port(&m32r_sio_reg
, &m32r_sio_ports
[line
].port
);
1121 static int __init
m32r_sio_init(void)
1125 printk(KERN_INFO
"Serial: M32R SIO driver\n");
1127 for (i
= 0; i
< nr_irqs
; i
++)
1128 spin_lock_init(&irq_lists
[i
].lock
);
1130 ret
= uart_register_driver(&m32r_sio_reg
);
1132 m32r_sio_register_ports(&m32r_sio_reg
);
1137 static void __exit
m32r_sio_exit(void)
1141 for (i
= 0; i
< UART_NR
; i
++)
1142 uart_remove_one_port(&m32r_sio_reg
, &m32r_sio_ports
[i
].port
);
1144 uart_unregister_driver(&m32r_sio_reg
);
1147 module_init(m32r_sio_init
);
1148 module_exit(m32r_sio_exit
);
1150 EXPORT_SYMBOL(m32r_sio_suspend_port
);
1151 EXPORT_SYMBOL(m32r_sio_resume_port
);
1153 MODULE_LICENSE("GPL");
1154 MODULE_DESCRIPTION("Generic M32R SIO serial driver");