2 * drivers/serial/sh-sci.c
4 * SuperH on-chip serial module support. (SCI with no FIFO / with FIFO)
6 * Copyright (C) 2002, 2003, 2004 Paul Mundt
8 * based off of the old drivers/char/sh-sci.c by:
10 * Copyright (C) 1999, 2000 Niibe Yutaka
11 * Copyright (C) 2000 Sugioka Toshinobu
12 * Modified to support multiple serial ports. Stuart Menefy (May 2000).
13 * Modified to support SecureEdge. David McCullough (2002)
14 * Modified to support SH7300 SCIF. Takashi Kusuda (Jun 2003).
16 * This file is subject to the terms and conditions of the GNU General Public
17 * License. See the file "COPYING" in the main directory of this archive
23 #include <linux/config.h>
24 #include <linux/module.h>
25 #include <linux/errno.h>
26 #include <linux/signal.h>
27 #include <linux/sched.h>
28 #include <linux/timer.h>
29 #include <linux/interrupt.h>
30 #include <linux/tty.h>
31 #include <linux/tty_flip.h>
32 #include <linux/serial.h>
33 #include <linux/major.h>
34 #include <linux/string.h>
35 #include <linux/sysrq.h>
36 #include <linux/fcntl.h>
37 #include <linux/ptrace.h>
38 #include <linux/ioport.h>
40 #include <linux/slab.h>
41 #include <linux/init.h>
42 #include <linux/delay.h>
43 #include <linux/console.h>
44 #include <linux/bitops.h>
46 #ifdef CONFIG_CPU_FREQ
47 #include <linux/notifier.h>
48 #include <linux/cpufreq.h>
51 #include <asm/system.h>
54 #include <asm/uaccess.h>
56 #include <linux/generic_serial.h>
58 #ifdef CONFIG_SH_STANDARD_BIOS
59 #include <asm/sh_bios.h>
62 #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
71 static int kgdb_get_char(struct sci_port *port);
72 static void kgdb_put_char(struct sci_port *port, char c);
73 static void kgdb_handle_error(struct sci_port *port);
74 static struct sci_port *kgdb_sci_port;
75 #endif /* CONFIG_SH_KGDB */
77 #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
78 static struct sci_port *serial_console_port = 0;
79 #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
81 /* Function prototypes */
82 static void sci_stop_tx(struct uart_port *port);
83 static void sci_start_tx(struct uart_port *port);
84 static void sci_start_rx(struct uart_port *port, unsigned int tty_start);
85 static void sci_stop_rx(struct uart_port *port);
86 static int sci_request_irq(struct sci_port *port);
87 static void sci_free_irq(struct sci_port *port);
89 static struct sci_port sci_ports[SCI_NPORTS];
90 static struct uart_driver sci_uart_driver;
92 #if defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
94 static void handle_error(struct uart_port *port)
95 { /* Clear error flags */
96 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
99 static int get_char(struct uart_port *port)
102 unsigned short status;
105 local_irq_save(flags);
107 status = sci_in(port, SCxSR);
108 if (status & SCxSR_ERRORS(port)) {
112 } while (!(status & SCxSR_RDxF(port)));
113 c = sci_in(port, SCxRDR);
114 sci_in(port, SCxSR); /* Dummy read */
115 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
116 local_irq_restore(flags);
121 /* Taken from sh-stub.c of GDB 4.18 */
122 static const char hexchars[] = "0123456789abcdef";
124 static __inline__ char highhex(int x)
126 return hexchars[(x >> 4) & 0xf];
129 static __inline__ char lowhex(int x)
131 return hexchars[x & 0xf];
134 #endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
137 * Send the packet in buffer. The host gets one chance to read it.
138 * This routine does not wait for a positive acknowledge.
141 #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
142 static void put_char(struct uart_port *port, char c)
145 unsigned short status;
147 local_irq_save(flags);
150 status = sci_in(port, SCxSR);
151 } while (!(status & SCxSR_TDxE(port)));
153 sci_out(port, SCxTDR, c);
154 sci_in(port, SCxSR); /* Dummy read */
155 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
157 local_irq_restore(flags);
160 static void put_string(struct sci_port *sci_port, const char *buffer, int count)
162 struct uart_port *port = &sci_port->port;
163 const unsigned char *p = buffer;
166 #if defined(CONFIG_SH_STANDARD_BIOS) || defined(CONFIG_SH_KGDB)
170 #ifdef CONFIG_SH_STANDARD_BIOS
171 /* This call only does a trap the first time it is
172 * called, and so is safe to do here unconditionally
174 usegdb |= sh_bios_in_gdb_mode();
176 #ifdef CONFIG_SH_KGDB
177 usegdb |= (kgdb_in_gdb_mode && (port == kgdb_sci_port));
181 /* $<packet info>#<checksum>. */
185 put_char(port, 'O'); /* 'O'utput to console */
188 for (i=0; i<count; i++) { /* Don't use run length encoding */
199 put_char(port, highhex(checksum));
200 put_char(port, lowhex(checksum));
201 } while (get_char(port) != '+');
203 #endif /* CONFIG_SH_STANDARD_BIOS || CONFIG_SH_KGDB */
204 for (i=0; i<count; i++) {
206 put_char(port, '\r');
207 put_char(port, *p++);
210 #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
213 #ifdef CONFIG_SH_KGDB
215 /* Is the SCI ready, ie is there a char waiting? */
216 static int kgdb_is_char_ready(struct sci_port *port)
218 unsigned short status = sci_in(port, SCxSR);
220 if (status & (SCxSR_ERRORS(port) | SCxSR_BRK(port)))
221 kgdb_handle_error(port);
223 return (status & SCxSR_RDxF(port));
227 static void kgdb_put_char(struct sci_port *port, char c)
229 unsigned short status;
232 status = sci_in(port, SCxSR);
233 while (!(status & SCxSR_TDxE(port)));
235 sci_out(port, SCxTDR, c);
236 sci_in(port, SCxSR); /* Dummy read */
237 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
240 /* Get a char if there is one, else ret -1 */
241 static int kgdb_get_char(struct sci_port *port)
245 if (kgdb_is_char_ready(port) == 0)
248 c = sci_in(port, SCxRDR);
249 sci_in(port, SCxSR); /* Dummy read */
250 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
256 /* Called from kgdbstub.c to get a character, i.e. is blocking */
257 static int kgdb_sci_getchar(void)
261 /* Keep trying to read a character, this could be neater */
262 while ((c = kgdb_get_char(kgdb_sci_port)) < 0);
267 /* Called from kgdbstub.c to put a character, just a wrapper */
268 static void kgdb_sci_putchar(int c)
271 kgdb_put_char(kgdb_sci_port, c);
274 /* Clear any errors on the SCI */
275 static void kgdb_handle_error(struct sci_port *port)
277 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port)); /* Clear error flags */
280 /* Breakpoint if there's a break sent on the serial port */
281 static void kgdb_break_interrupt(int irq, void *ptr, struct pt_regs *regs)
283 struct sci_port *port = ptr;
284 unsigned short status = sci_in(port, SCxSR);
286 if (status & SCxSR_BRK(port)) {
288 /* Break into the debugger if a break is detected */
292 sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
296 #endif /* CONFIG_SH_KGDB */
298 #if defined(__H8300S__)
299 enum { sci_disable, sci_enable };
301 static void h8300_sci_enable(struct uart_port* port, unsigned int ctrl)
303 volatile unsigned char *mstpcrl=(volatile unsigned char *)MSTPCRL;
304 int ch = (port->mapbase - SMR0) >> 3;
305 unsigned char mask = 1 << (ch+1);
307 if (ctrl == sci_disable) {
315 #if defined(SCI_ONLY) || defined(SCI_AND_SCIF)
316 #if defined(__H8300H__) || defined(__H8300S__)
317 static void sci_init_pins_sci(struct uart_port* port, unsigned int cflag)
319 int ch = (port->mapbase - SMR0) >> 3;
322 H8300_GPIO_DDR(h8300_sci_pins[ch].port,h8300_sci_pins[ch].rx,H8300_GPIO_INPUT);
323 H8300_GPIO_DDR(h8300_sci_pins[ch].port,h8300_sci_pins[ch].tx,H8300_GPIO_OUTPUT);
325 H8300_SCI_DR(ch) |= h8300_sci_pins[ch].tx;
328 static void sci_init_pins_sci(struct uart_port *port, unsigned int cflag)
334 #if defined(SCIF_ONLY) || defined(SCI_AND_SCIF)
335 #if defined(CONFIG_CPU_SH3)
336 /* For SH7705, SH7707, SH7709, SH7709A, SH7729, SH7300*/
337 static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
339 unsigned int fcr_val = 0;
340 #if !defined(CONFIG_CPU_SUBTYPE_SH7300) /* SH7300 doesn't use RTS/CTS */
344 /* We need to set SCPCR to enable RTS/CTS */
345 data = ctrl_inw(SCPCR);
346 /* Clear out SCP7MD1,0, SCP6MD1,0, SCP4MD1,0*/
347 ctrl_outw(data&0x0fcf, SCPCR);
350 fcr_val |= SCFCR_MCE;
354 /* We need to set SCPCR to enable RTS/CTS */
355 data = ctrl_inw(SCPCR);
356 /* Clear out SCP7MD1,0, SCP4MD1,0,
357 Set SCP6MD1,0 = {01} (output) */
358 ctrl_outw((data&0x0fcf)|0x1000, SCPCR);
360 data = ctrl_inb(SCPDR);
361 /* Set /RTS2 (bit6) = 0 */
362 ctrl_outb(data&0xbf, SCPDR);
365 sci_out(port, SCFCR, fcr_val);
368 static void sci_init_pins_irda(struct uart_port *port, unsigned int cflag)
370 unsigned int fcr_val = 0;
373 fcr_val |= SCFCR_MCE;
375 sci_out(port, SCFCR, fcr_val);
381 static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag)
383 unsigned int fcr_val = 0;
385 if (cflag & CRTSCTS) {
386 fcr_val |= SCFCR_MCE;
388 ctrl_outw(0x0080, SCSPTR2); /* Set RTS = 1 */
390 sci_out(port, SCFCR, fcr_val);
394 #endif /* SCIF_ONLY || SCI_AND_SCIF */
396 /* ********************************************************************** *
397 * the interrupt related routines *
398 * ********************************************************************** */
400 static void sci_transmit_chars(struct uart_port *port)
402 struct circ_buf *xmit = &port->info->xmit;
403 unsigned int stopped = uart_tx_stopped(port);
405 unsigned short status;
409 status = sci_in(port, SCxSR);
410 if (!(status & SCxSR_TDxE(port))) {
411 local_irq_save(flags);
412 ctrl = sci_in(port, SCSCR);
413 if (uart_circ_empty(xmit)) {
414 ctrl &= ~SCI_CTRL_FLAGS_TIE;
416 ctrl |= SCI_CTRL_FLAGS_TIE;
418 sci_out(port, SCSCR, ctrl);
419 local_irq_restore(flags);
423 #if !defined(SCI_ONLY)
424 if (port->type == PORT_SCIF) {
425 txroom = SCIF_TXROOM_MAX - (sci_in(port, SCFDR)>>8);
427 txroom = (sci_in(port, SCxSR) & SCI_TDRE)?1:0;
430 txroom = (sci_in(port, SCxSR) & SCI_TDRE)?1:0;
441 } else if (!uart_circ_empty(xmit) && !stopped) {
442 c = xmit->buf[xmit->tail];
443 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
448 sci_out(port, SCxTDR, c);
451 } while (--count > 0);
453 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
455 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
456 uart_write_wakeup(port);
457 if (uart_circ_empty(xmit)) {
460 local_irq_save(flags);
461 ctrl = sci_in(port, SCSCR);
463 #if !defined(SCI_ONLY)
464 if (port->type == PORT_SCIF) {
465 sci_in(port, SCxSR); /* Dummy read */
466 sci_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
470 ctrl |= SCI_CTRL_FLAGS_TIE;
471 sci_out(port, SCSCR, ctrl);
472 local_irq_restore(flags);
476 /* On SH3, SCIF may read end-of-break as a space->mark char */
477 #define STEPFN(c) ({int __c=(c); (((__c-1)|(__c)) == -1); })
479 static inline void sci_receive_chars(struct uart_port *port,
480 struct pt_regs *regs)
482 struct tty_struct *tty = port->info->tty;
483 int i, count, copied = 0;
484 unsigned short status;
487 status = sci_in(port, SCxSR);
488 if (!(status & SCxSR_RDxF(port)))
492 #if !defined(SCI_ONLY)
493 if (port->type == PORT_SCIF) {
494 count = sci_in(port, SCFDR)&SCIF_RFDC_MASK ;
496 count = (sci_in(port, SCxSR)&SCxSR_RDxF(port))?1:0;
499 count = (sci_in(port, SCxSR)&SCxSR_RDxF(port))?1:0;
502 /* Don't copy more bytes than there is room for in the buffer */
503 count = tty_buffer_request_room(tty, count);
505 /* If for any reason we can't copy more data, we're done! */
509 if (port->type == PORT_SCI) {
510 char c = sci_in(port, SCxRDR);
511 if(((struct sci_port *)port)->break_flag
512 || uart_handle_sysrq_char(port, c, regs)) {
515 tty_insert_flip_char(tty, c, TTY_NORMAL);
518 for (i=0; i<count; i++) {
519 char c = sci_in(port, SCxRDR);
520 status = sci_in(port, SCxSR);
521 #if defined(CONFIG_CPU_SH3)
522 /* Skip "chars" during break */
523 if (((struct sci_port *)port)->break_flag) {
525 (status & SCxSR_FER(port))) {
529 /* Nonzero => end-of-break */
530 pr_debug("scif: debounce<%02x>\n", c);
531 ((struct sci_port *)port)->break_flag = 0;
537 #endif /* CONFIG_CPU_SH3 */
538 if (uart_handle_sysrq_char(port, c, regs)) {
543 /* Store data and status */
544 if (status&SCxSR_FER(port)) {
546 pr_debug("sci: frame error\n");
547 } else if (status&SCxSR_PER(port)) {
549 pr_debug("sci: parity error\n");
552 tty_insert_flip_char(tty, c, flag);
556 sci_in(port, SCxSR); /* dummy read */
557 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
560 port->icount.rx += count;
564 /* Tell the rest of the system the news. New characters! */
565 tty_flip_buffer_push(tty);
567 sci_in(port, SCxSR); /* dummy read */
568 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
572 #define SCI_BREAK_JIFFIES (HZ/20)
573 /* The sci generates interrupts during the break,
574 * 1 per millisecond or so during the break period, for 9600 baud.
575 * So dont bother disabling interrupts.
576 * But dont want more than 1 break event.
577 * Use a kernel timer to periodically poll the rx line until
578 * the break is finished.
580 static void sci_schedule_break_timer(struct sci_port *port)
582 port->break_timer.expires = jiffies + SCI_BREAK_JIFFIES;
583 add_timer(&port->break_timer);
585 /* Ensure that two consecutive samples find the break over. */
586 static void sci_break_timer(unsigned long data)
588 struct sci_port * port = (struct sci_port *)data;
589 if(sci_rxd_in(&port->port) == 0) {
590 port->break_flag = 1;
591 sci_schedule_break_timer(port);
592 } else if(port->break_flag == 1){
594 port->break_flag = 2;
595 sci_schedule_break_timer(port);
596 } else port->break_flag = 0;
599 static inline int sci_handle_errors(struct uart_port *port)
602 unsigned short status = sci_in(port, SCxSR);
603 struct tty_struct *tty = port->info->tty;
605 if (status&SCxSR_ORER(port)) {
607 if(tty_insert_flip_char(tty, 0, TTY_OVERRUN))
609 pr_debug("sci: overrun error\n");
612 if (status&SCxSR_FER(port)) {
613 if (sci_rxd_in(port) == 0) {
614 /* Notify of BREAK */
615 struct sci_port * sci_port = (struct sci_port *)port;
616 if(!sci_port->break_flag) {
617 sci_port->break_flag = 1;
618 sci_schedule_break_timer((struct sci_port *)port);
619 /* Do sysrq handling. */
620 if(uart_handle_break(port))
622 pr_debug("sci: BREAK detected\n");
623 if(tty_insert_flip_char(tty, 0, TTY_BREAK))
629 if(tty_insert_flip_char(tty, 0, TTY_FRAME))
631 pr_debug("sci: frame error\n");
635 if (status&SCxSR_PER(port)) {
636 if(tty_insert_flip_char(tty, 0, TTY_PARITY))
639 pr_debug("sci: parity error\n");
643 tty_flip_buffer_push(tty);
648 static inline int sci_handle_breaks(struct uart_port *port)
651 unsigned short status = sci_in(port, SCxSR);
652 struct tty_struct *tty = port->info->tty;
653 struct sci_port *s = &sci_ports[port->line];
655 if (!s->break_flag && status & SCxSR_BRK(port))
656 #if defined(CONFIG_CPU_SH3)
660 /* Notify of BREAK */
661 if(tty_insert_flip_char(tty, 0, TTY_BREAK))
663 pr_debug("sci: BREAK detected\n");
666 #if defined(SCIF_ORER)
667 /* XXX: Handle SCIF overrun error */
668 if (port->type == PORT_SCIF && (sci_in(port, SCLSR) & SCIF_ORER) != 0) {
669 sci_out(port, SCLSR, 0);
670 if(tty_insert_flip_char(tty, 0, TTY_OVERRUN)) {
672 pr_debug("sci: overrun error\n");
678 tty_flip_buffer_push(tty);
682 static irqreturn_t sci_rx_interrupt(int irq, void *ptr, struct pt_regs *regs)
684 struct uart_port *port = ptr;
686 /* I think sci_receive_chars has to be called irrespective
687 * of whether the I_IXOFF is set, otherwise, how is the interrupt
690 sci_receive_chars(port, regs);
695 static irqreturn_t sci_tx_interrupt(int irq, void *ptr, struct pt_regs *regs)
697 struct uart_port *port = ptr;
699 sci_transmit_chars(port);
704 static irqreturn_t sci_er_interrupt(int irq, void *ptr, struct pt_regs *regs)
706 struct uart_port *port = ptr;
709 if (port->type == PORT_SCI) {
710 if (sci_handle_errors(port)) {
711 /* discard character in rx buffer */
713 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
716 #if defined(SCIF_ORER)
717 if((sci_in(port, SCLSR) & SCIF_ORER) != 0) {
718 struct tty_struct *tty = port->info->tty;
720 sci_out(port, SCLSR, 0);
721 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
722 tty_flip_buffer_push(tty);
723 pr_debug("scif: overrun error\n");
726 sci_rx_interrupt(irq, ptr, regs);
729 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
731 /* Kick the transmission */
732 sci_tx_interrupt(irq, ptr, regs);
737 static irqreturn_t sci_br_interrupt(int irq, void *ptr, struct pt_regs *regs)
739 struct uart_port *port = ptr;
742 sci_handle_breaks(port);
743 sci_out(port, SCxSR, SCxSR_BREAK_CLEAR(port));
748 static irqreturn_t sci_mpxed_interrupt(int irq, void *ptr, struct pt_regs *regs)
750 unsigned short ssr_status, scr_status;
751 struct uart_port *port = ptr;
753 ssr_status = sci_in(port,SCxSR);
754 scr_status = sci_in(port,SCSCR);
757 if ((ssr_status&0x0020) && (scr_status&0x0080))
758 sci_tx_interrupt(irq, ptr, regs);
760 if ((ssr_status&0x0002) && (scr_status&0x0040))
761 sci_rx_interrupt(irq, ptr, regs);
762 /* Error Interrupt */
763 if ((ssr_status&0x0080) && (scr_status&0x0400))
764 sci_er_interrupt(irq, ptr, regs);
765 /* Break Interrupt */
766 if ((ssr_status&0x0010) && (scr_status&0x0200))
767 sci_br_interrupt(irq, ptr, regs);
772 #ifdef CONFIG_CPU_FREQ
774 * Here we define a transistion notifier so that we can update all of our
775 * ports' baud rate when the peripheral clock changes.
777 static int sci_notifier(struct notifier_block *self, unsigned long phase, void *p)
779 struct cpufreq_freqs *freqs = p;
782 if ((phase == CPUFREQ_POSTCHANGE) ||
783 (phase == CPUFREQ_RESUMECHANGE)){
784 for (i = 0; i < SCI_NPORTS; i++) {
785 struct uart_port *port = &sci_ports[i].port;
788 * Update the uartclk per-port if frequency has
789 * changed, since it will no longer necessarily be
790 * consistent with the old frequency.
792 * Really we want to be able to do something like
793 * uart_change_speed() or something along those lines
794 * here to implicitly reset the per-port baud rate..
796 * Clean this up later..
798 port->uartclk = current_cpu_data.module_clock * 16;
801 printk("%s: got a postchange notification for cpu %d (old %d, new %d)\n",
802 __FUNCTION__, freqs->cpu, freqs->old, freqs->new);
808 static struct notifier_block sci_nb = { &sci_notifier, NULL, 0 };
809 #endif /* CONFIG_CPU_FREQ */
811 static int sci_request_irq(struct sci_port *port)
814 irqreturn_t (*handlers[4])(int irq, void *ptr, struct pt_regs *regs) = {
815 sci_er_interrupt, sci_rx_interrupt, sci_tx_interrupt,
818 const char *desc[] = { "SCI Receive Error", "SCI Receive Data Full",
819 "SCI Transmit Data Empty", "SCI Break" };
821 if (port->irqs[0] == port->irqs[1]) {
822 if (!port->irqs[0]) {
823 printk(KERN_ERR "sci: Cannot allocate irq.(IRQ=0)\n");
826 if (request_irq(port->irqs[0], sci_mpxed_interrupt, SA_INTERRUPT,
828 printk(KERN_ERR "sci: Cannot allocate irq.\n");
832 for (i = 0; i < ARRAY_SIZE(handlers); i++) {
835 if (request_irq(port->irqs[i], handlers[i], SA_INTERRUPT,
837 printk(KERN_ERR "sci: Cannot allocate irq.\n");
846 static void sci_free_irq(struct sci_port *port)
850 if (port->irqs[0] == port->irqs[1]) {
852 printk("sci: sci_free_irq error\n");
854 free_irq(port->irqs[0], port);
856 for (i = 0; i < ARRAY_SIZE(port->irqs); i++) {
860 free_irq(port->irqs[i], port);
865 static unsigned int sci_tx_empty(struct uart_port *port)
871 static void sci_set_mctrl(struct uart_port *port, unsigned int mctrl)
873 /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */
874 /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */
875 /* If you have signals for DTR and DCD, please implement here. */
878 static unsigned int sci_get_mctrl(struct uart_port *port)
880 /* This routine is used for geting signals of: DTR, DCD, DSR, RI,
883 return TIOCM_DTR | TIOCM_RTS | TIOCM_DSR;
886 static void sci_start_tx(struct uart_port *port)
888 struct sci_port *s = &sci_ports[port->line];
890 disable_irq(s->irqs[SCIx_TXI_IRQ]);
891 sci_transmit_chars(port);
892 enable_irq(s->irqs[SCIx_TXI_IRQ]);
895 static void sci_stop_tx(struct uart_port *port)
900 /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
901 local_irq_save(flags);
902 ctrl = sci_in(port, SCSCR);
903 ctrl &= ~SCI_CTRL_FLAGS_TIE;
904 sci_out(port, SCSCR, ctrl);
905 local_irq_restore(flags);
908 static void sci_start_rx(struct uart_port *port, unsigned int tty_start)
913 /* Set RIE (Receive Interrupt Enable) bit in SCSCR */
914 local_irq_save(flags);
915 ctrl = sci_in(port, SCSCR);
916 ctrl |= SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE;
917 sci_out(port, SCSCR, ctrl);
918 local_irq_restore(flags);
921 static void sci_stop_rx(struct uart_port *port)
926 /* Clear RIE (Receive Interrupt Enable) bit in SCSCR */
927 local_irq_save(flags);
928 ctrl = sci_in(port, SCSCR);
929 ctrl &= ~(SCI_CTRL_FLAGS_RIE | SCI_CTRL_FLAGS_REIE);
930 sci_out(port, SCSCR, ctrl);
931 local_irq_restore(flags);
934 static void sci_enable_ms(struct uart_port *port)
936 /* Nothing here yet .. */
939 static void sci_break_ctl(struct uart_port *port, int break_state)
941 /* Nothing here yet .. */
944 static int sci_startup(struct uart_port *port)
946 struct sci_port *s = &sci_ports[port->line];
948 #if defined(__H8300S__)
949 h8300_sci_enable(port, sci_enable);
954 sci_start_rx(port, 1);
959 static void sci_shutdown(struct uart_port *port)
961 struct sci_port *s = &sci_ports[port->line];
967 #if defined(__H8300S__)
968 h8300_sci_enable(port, sci_disable);
972 static void sci_set_termios(struct uart_port *port, struct termios *termios,
975 struct sci_port *s = &sci_ports[port->line];
976 unsigned int status, baud, smr_val;
980 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16);
982 spin_lock_irqsave(&port->lock, flags);
985 status = sci_in(port, SCxSR);
986 } while (!(status & SCxSR_TEND(port)));
988 sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */
990 #if !defined(SCI_ONLY)
991 if (port->type == PORT_SCIF) {
992 sci_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST);
996 smr_val = sci_in(port, SCSMR) & 3;
997 if ((termios->c_cflag & CSIZE) == CS7)
999 if (termios->c_cflag & PARENB)
1001 if (termios->c_cflag & PARODD)
1003 if (termios->c_cflag & CSTOPB)
1006 uart_update_timeout(port, termios->c_cflag, baud);
1008 sci_out(port, SCSMR, smr_val);
1011 case 0: t = -1; break;
1012 case 2400: t = BPS_2400; break;
1013 case 4800: t = BPS_4800; break;
1014 case 9600: t = BPS_9600; break;
1015 case 19200: t = BPS_19200; break;
1016 case 38400: t = BPS_38400; break;
1017 case 57600: t = BPS_57600; break;
1018 case 115200: t = BPS_115200; break;
1019 default: t = SCBRR_VALUE(baud); break;
1024 sci_out(port, SCSMR, (sci_in(port, SCSMR) & ~3) | 1);
1027 sci_out(port, SCSMR, sci_in(port, SCSMR) & ~3);
1029 sci_out(port, SCBRR, t);
1030 udelay((1000000+(baud-1)) / baud); /* Wait one bit interval */
1033 s->init_pins(port, termios->c_cflag);
1034 sci_out(port, SCSCR, SCSCR_INIT(port));
1036 if ((termios->c_cflag & CREAD) != 0)
1037 sci_start_rx(port,0);
1039 spin_unlock_irqrestore(&port->lock, flags);
1042 static const char *sci_type(struct uart_port *port)
1044 switch (port->type) {
1045 case PORT_SCI: return "sci";
1046 case PORT_SCIF: return "scif";
1047 case PORT_IRDA: return "irda";
1053 static void sci_release_port(struct uart_port *port)
1055 /* Nothing here yet .. */
1058 static int sci_request_port(struct uart_port *port)
1060 /* Nothing here yet .. */
1064 static void sci_config_port(struct uart_port *port, int flags)
1066 struct sci_port *s = &sci_ports[port->line];
1068 port->type = s->type;
1070 #if defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
1071 if (port->mapbase == 0)
1072 port->mapbase = onchip_remap(SCIF_ADDR_SH5, 1024, "SCIF");
1074 port->membase = (void *)port->mapbase;
1078 static int sci_verify_port(struct uart_port *port, struct serial_struct *ser)
1080 struct sci_port *s = &sci_ports[port->line];
1082 if (ser->irq != s->irqs[SCIx_TXI_IRQ] || ser->irq > NR_IRQS)
1084 if (ser->baud_base < 2400)
1085 /* No paper tape reader for Mitch.. */
1091 static struct uart_ops sci_uart_ops = {
1092 .tx_empty = sci_tx_empty,
1093 .set_mctrl = sci_set_mctrl,
1094 .get_mctrl = sci_get_mctrl,
1095 .start_tx = sci_start_tx,
1096 .stop_tx = sci_stop_tx,
1097 .stop_rx = sci_stop_rx,
1098 .enable_ms = sci_enable_ms,
1099 .break_ctl = sci_break_ctl,
1100 .startup = sci_startup,
1101 .shutdown = sci_shutdown,
1102 .set_termios = sci_set_termios,
1104 .release_port = sci_release_port,
1105 .request_port = sci_request_port,
1106 .config_port = sci_config_port,
1107 .verify_port = sci_verify_port,
1110 static struct sci_port sci_ports[SCI_NPORTS] = {
1111 #if defined(CONFIG_CPU_SUBTYPE_SH7708)
1114 .membase = (void *)0xfffffe80,
1115 .mapbase = 0xfffffe80,
1118 .ops = &sci_uart_ops,
1119 .flags = UPF_BOOT_AUTOCONF,
1124 .init_pins = sci_init_pins_sci,
1126 #elif defined(CONFIG_CPU_SUBTYPE_SH7705)
1129 .membase = (void *)SCIF0,
1133 .ops = &sci_uart_ops,
1134 .flags = UPF_BOOT_AUTOCONF,
1138 .irqs = SH3_IRDA_IRQS,
1139 .init_pins = sci_init_pins_scif,
1143 .membase = (void *)SCIF2,
1147 .ops = &sci_uart_ops,
1148 .flags = UPF_BOOT_AUTOCONF,
1152 .irqs = SH3_SCIF_IRQS,
1153 .init_pins = sci_init_pins_scif,
1155 #elif defined(CONFIG_CPU_SUBTYPE_SH7707) || defined(CONFIG_CPU_SUBTYPE_SH7709)
1158 .membase = (void *)0xfffffe80,
1159 .mapbase = 0xfffffe80,
1162 .ops = &sci_uart_ops,
1163 .flags = UPF_BOOT_AUTOCONF,
1168 .init_pins = sci_init_pins_sci,
1172 .membase = (void *)0xa4000150,
1173 .mapbase = 0xa4000150,
1176 .ops = &sci_uart_ops,
1177 .flags = UPF_BOOT_AUTOCONF,
1181 .irqs = SH3_SCIF_IRQS,
1182 .init_pins = sci_init_pins_scif,
1186 .membase = (void *)0xa4000140,
1187 .mapbase = 0xa4000140,
1190 .ops = &sci_uart_ops,
1191 .flags = UPF_BOOT_AUTOCONF,
1195 .irqs = SH3_IRDA_IRQS,
1196 .init_pins = sci_init_pins_irda,
1198 #elif defined(CONFIG_CPU_SUBTYPE_SH7300)
1201 .membase = (void *)0xA4430000,
1202 .mapbase = 0xA4430000,
1205 .ops = &sci_uart_ops,
1206 .flags = UPF_BOOT_AUTOCONF,
1210 .irqs = SH7300_SCIF0_IRQS,
1211 .init_pins = sci_init_pins_scif,
1213 #elif defined(CONFIG_CPU_SUBTYPE_SH73180)
1216 .membase = (void *)0xffe00000,
1217 .mapbase = 0xffe00000,
1220 .ops = &sci_uart_ops,
1221 .flags = UPF_BOOT_AUTOCONF,
1225 .irqs = SH73180_SCIF_IRQS,
1226 .init_pins = sci_init_pins_scif,
1228 #elif defined(CONFIG_SH_RTS7751R2D)
1231 .membase = (void *)0xffe80000,
1232 .mapbase = 0xffe80000,
1235 .ops = &sci_uart_ops,
1236 .flags = UPF_BOOT_AUTOCONF,
1240 .irqs = SH4_SCIF_IRQS,
1241 .init_pins = sci_init_pins_scif,
1243 #elif defined(CONFIG_CPU_SUBTYPE_SH7750) || defined(CONFIG_CPU_SUBTYPE_SH7751)
1246 .membase = (void *)0xffe00000,
1247 .mapbase = 0xffe00000,
1250 .ops = &sci_uart_ops,
1251 .flags = UPF_BOOT_AUTOCONF,
1256 .init_pins = sci_init_pins_sci,
1260 .membase = (void *)0xffe80000,
1261 .mapbase = 0xffe80000,
1264 .ops = &sci_uart_ops,
1265 .flags = UPF_BOOT_AUTOCONF,
1269 .irqs = SH4_SCIF_IRQS,
1270 .init_pins = sci_init_pins_scif,
1272 #elif defined(CONFIG_CPU_SUBTYPE_SH7760)
1275 .membase = (void *)0xfe600000,
1276 .mapbase = 0xfe600000,
1279 .ops = &sci_uart_ops,
1280 .flags = UPF_BOOT_AUTOCONF,
1284 .irqs = SH7760_SCIF0_IRQS,
1285 .init_pins = sci_init_pins_scif,
1289 .membase = (void *)0xfe610000,
1290 .mapbase = 0xfe610000,
1293 .ops = &sci_uart_ops,
1294 .flags = UPF_BOOT_AUTOCONF,
1298 .irqs = SH7760_SCIF1_IRQS,
1299 .init_pins = sci_init_pins_scif,
1303 .membase = (void *)0xfe620000,
1304 .mapbase = 0xfe620000,
1307 .ops = &sci_uart_ops,
1308 .flags = UPF_BOOT_AUTOCONF,
1312 .irqs = SH7760_SCIF2_IRQS,
1313 .init_pins = sci_init_pins_scif,
1315 #elif defined(CONFIG_CPU_SUBTYPE_SH4_202)
1318 .membase = (void *)0xffe80000,
1319 .mapbase = 0xffe80000,
1322 .ops = &sci_uart_ops,
1323 .flags = UPF_BOOT_AUTOCONF,
1327 .irqs = SH4_SCIF_IRQS,
1328 .init_pins = sci_init_pins_scif,
1330 #elif defined(CONFIG_CPU_SUBTYPE_ST40STB1)
1333 .membase = (void *)0xffe00000,
1334 .mapbase = 0xffe00000,
1337 .ops = &sci_uart_ops,
1338 .flags = UPF_BOOT_AUTOCONF,
1342 .irqs = STB1_SCIF1_IRQS,
1343 .init_pins = sci_init_pins_scif,
1347 .membase = (void *)0xffe80000,
1348 .mapbase = 0xffe80000,
1351 .ops = &sci_uart_ops,
1352 .flags = UPF_BOOT_AUTOCONF,
1356 .irqs = SH4_SCIF_IRQS,
1357 .init_pins = sci_init_pins_scif,
1359 #elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
1364 .ops = &sci_uart_ops,
1365 .flags = UPF_BOOT_AUTOCONF,
1369 .irqs = SH5_SCIF_IRQS,
1370 .init_pins = sci_init_pins_scif,
1372 #elif defined(CONFIG_H83007) || defined(CONFIG_H83068)
1375 .membase = (void *)0x00ffffb0,
1376 .mapbase = 0x00ffffb0,
1379 .ops = &sci_uart_ops,
1380 .flags = UPF_BOOT_AUTOCONF,
1384 .irqs = H8300H_SCI_IRQS0,
1385 .init_pins = sci_init_pins_sci,
1389 .membase = (void *)0x00ffffb8,
1390 .mapbase = 0x00ffffb8,
1393 .ops = &sci_uart_ops,
1394 .flags = UPF_BOOT_AUTOCONF,
1398 .irqs = H8300H_SCI_IRQS1,
1399 .init_pins = sci_init_pins_sci,
1403 .membase = (void *)0x00ffffc0,
1404 .mapbase = 0x00ffffc0,
1407 .ops = &sci_uart_ops,
1408 .flags = UPF_BOOT_AUTOCONF,
1412 .irqs = H8300H_SCI_IRQS2,
1413 .init_pins = sci_init_pins_sci,
1415 #elif defined(CONFIG_H8S2678)
1418 .membase = (void *)0x00ffff78,
1419 .mapbase = 0x00ffff78,
1422 .ops = &sci_uart_ops,
1423 .flags = UPF_BOOT_AUTOCONF,
1427 .irqs = H8S_SCI_IRQS0,
1428 .init_pins = sci_init_pins_sci,
1432 .membase = (void *)0x00ffff80,
1433 .mapbase = 0x00ffff80,
1436 .ops = &sci_uart_ops,
1437 .flags = UPF_BOOT_AUTOCONF,
1441 .irqs = H8S_SCI_IRQS1,
1442 .init_pins = sci_init_pins_sci,
1446 .membase = (void *)0x00ffff88,
1447 .mapbase = 0x00ffff88,
1450 .ops = &sci_uart_ops,
1451 .flags = UPF_BOOT_AUTOCONF,
1455 .irqs = H8S_SCI_IRQS2,
1456 .init_pins = sci_init_pins_sci,
1459 #error "CPU subtype not defined"
1463 #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
1465 * Print a string to the serial port trying not to disturb
1466 * any possible real use of the port...
1468 static void serial_console_write(struct console *co, const char *s,
1471 put_string(serial_console_port, s, count);
1474 static int __init serial_console_setup(struct console *co, char *options)
1476 struct uart_port *port;
1483 if (co->index >= SCI_NPORTS)
1486 serial_console_port = &sci_ports[co->index];
1487 port = &serial_console_port->port;
1488 port->type = serial_console_port->type;
1490 #ifdef CONFIG_SUPERH64
1491 /* This is especially needed on sh64 to remap the SCIF */
1492 sci_config_port(port, 0);
1496 * We need to set the initial uartclk here, since otherwise it will
1497 * only ever be setup at sci_init() time.
1499 #if !defined(__H8300H__) && !defined(__H8300S__)
1500 port->uartclk = current_cpu_data.module_clock * 16;
1502 port->uartclk = CONFIG_CPU_CLOCK;
1504 #if defined(__H8300S__)
1505 h8300_sci_enable(port, sci_enable);
1508 uart_parse_options(options, &baud, &parity, &bits, &flow);
1510 ret = uart_set_options(port, co, baud, parity, bits, flow);
1511 #if defined(__H8300H__) || defined(__H8300S__)
1512 /* disable rx interrupt */
1519 static struct console serial_console = {
1521 .device = uart_console_device,
1522 .write = serial_console_write,
1523 .setup = serial_console_setup,
1524 .flags = CON_PRINTBUFFER,
1526 .data = &sci_uart_driver,
1529 static int __init sci_console_init(void)
1531 register_console(&serial_console);
1535 console_initcall(sci_console_init);
1536 #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
1538 #ifdef CONFIG_SH_KGDB
1540 * FIXME: Most of this can go away.. at the moment, we rely on
1541 * arch/sh/kernel/setup.c to do the command line parsing for kgdb, though
1542 * most of that can easily be done here instead.
1544 * For the time being, just accept the values that were parsed earlier..
1546 static void __init kgdb_console_get_options(struct uart_port *port, int *baud,
1547 int *parity, int *bits)
1550 *parity = tolower(kgdb_parity);
1551 *bits = kgdb_bits - '0';
1555 * The naming here is somewhat misleading, since kgdb_console_setup() takes
1556 * care of the early-on initialization for kgdb, regardless of whether we
1557 * actually use kgdb as a console or not.
1559 * On the plus side, this lets us kill off the old kgdb_sci_setup() nonsense.
1561 int __init kgdb_console_setup(struct console *co, char *options)
1563 struct uart_port *port = &sci_ports[kgdb_portnum].port;
1569 if (co->index >= SCI_NPORTS || co->index != kgdb_portnum)
1570 co->index = kgdb_portnum;
1573 uart_parse_options(options, &baud, &parity, &bits, &flow);
1575 kgdb_console_get_options(port, &baud, &parity, &bits);
1577 kgdb_getchar = kgdb_sci_getchar;
1578 kgdb_putchar = kgdb_sci_putchar;
1580 return uart_set_options(port, co, baud, parity, bits, flow);
1582 #endif /* CONFIG_SH_KGDB */
1584 #ifdef CONFIG_SH_KGDB_CONSOLE
1585 static struct console kgdb_console = {
1587 .write = kgdb_console_write,
1588 .setup = kgdb_console_setup,
1589 .flags = CON_PRINTBUFFER | CON_ENABLED,
1591 .data = &sci_uart_driver,
1594 /* Register the KGDB console so we get messages (d'oh!) */
1595 static int __init kgdb_console_init(void)
1597 register_console(&kgdb_console);
1601 console_initcall(kgdb_console_init);
1602 #endif /* CONFIG_SH_KGDB_CONSOLE */
1604 #if defined(CONFIG_SH_KGDB_CONSOLE)
1605 #define SCI_CONSOLE &kgdb_console
1606 #elif defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
1607 #define SCI_CONSOLE &serial_console
1609 #define SCI_CONSOLE 0
1612 static char banner[] __initdata =
1613 KERN_INFO "SuperH SCI(F) driver initialized\n";
1615 static struct uart_driver sci_uart_driver = {
1616 .owner = THIS_MODULE,
1617 .driver_name = "sci",
1618 #ifdef CONFIG_DEVFS_FS
1619 .devfs_name = "ttsc/",
1621 .dev_name = "ttySC",
1623 .minor = SCI_MINOR_START,
1625 .cons = SCI_CONSOLE,
1628 static int __init sci_init(void)
1632 printk("%s", banner);
1634 ret = uart_register_driver(&sci_uart_driver);
1636 for (chan = 0; chan < SCI_NPORTS; chan++) {
1637 struct sci_port *sciport = &sci_ports[chan];
1639 #if !defined(__H8300H__) && !defined(__H8300S__)
1640 sciport->port.uartclk = (current_cpu_data.module_clock * 16);
1642 sciport->port.uartclk = CONFIG_CPU_CLOCK;
1644 uart_add_one_port(&sci_uart_driver, &sciport->port);
1645 sciport->break_timer.data = (unsigned long)sciport;
1646 sciport->break_timer.function = sci_break_timer;
1647 init_timer(&sciport->break_timer);
1651 #ifdef CONFIG_CPU_FREQ
1652 cpufreq_register_notifier(&sci_nb, CPUFREQ_TRANSITION_NOTIFIER);
1653 printk("sci: CPU frequency notifier registered\n");
1656 #ifdef CONFIG_SH_STANDARD_BIOS
1657 sh_bios_gdb_detach();
1663 static void __exit sci_exit(void)
1667 for (chan = 0; chan < SCI_NPORTS; chan++)
1668 uart_remove_one_port(&sci_uart_driver, &sci_ports[chan].port);
1670 uart_unregister_driver(&sci_uart_driver);
1673 module_init(sci_init);
1674 module_exit(sci_exit);