2 * drivers/serial/sh-sci.c
4 * SuperH on-chip serial module support. (SCI with no FIFO / with FIFO)
6 * Copyright (C) 2002 - 2008 Paul Mundt
7 * Modified to support SH7720 SCIF. Markus Brunner, Mark Jonas (Jul 2007).
9 * based off of the old drivers/char/sh-sci.c by:
11 * Copyright (C) 1999, 2000 Niibe Yutaka
12 * Copyright (C) 2000 Sugioka Toshinobu
13 * Modified to support multiple serial ports. Stuart Menefy (May 2000).
14 * Modified to support SecureEdge. David McCullough (2002)
15 * Modified to support SH7300 SCIF. Takashi Kusuda (Jun 2003).
16 * Removed SH7300 support (Jul 2007).
18 * This file is subject to the terms and conditions of the GNU General Public
19 * License. See the file "COPYING" in the main directory of this archive
22 #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
28 #include <linux/module.h>
29 #include <linux/errno.h>
30 #include <linux/timer.h>
31 #include <linux/interrupt.h>
32 #include <linux/tty.h>
33 #include <linux/tty_flip.h>
34 #include <linux/serial.h>
35 #include <linux/major.h>
36 #include <linux/string.h>
37 #include <linux/sysrq.h>
38 #include <linux/ioport.h>
40 #include <linux/init.h>
41 #include <linux/delay.h>
42 #include <linux/console.h>
43 #include <linux/platform_device.h>
44 #include <linux/serial_sci.h>
45 #include <linux/notifier.h>
46 #include <linux/cpufreq.h>
47 #include <linux/clk.h>
48 #include <linux/ctype.h>
49 #include <linux/err.h>
50 #include <linux/list.h>
53 #include <asm/clock.h>
54 #include <asm/sh_bios.h>
64 struct uart_port port
;
69 /* Port IRQs: ERI, RXI, TXI, BRI (optional) */
70 unsigned int irqs
[SCIx_NR_IRQS
];
72 /* Port enable callback */
73 void (*enable
)(struct uart_port
*port
);
75 /* Port disable callback */
76 void (*disable
)(struct uart_port
*port
);
79 struct timer_list break_timer
;
82 #ifdef CONFIG_HAVE_CLK
88 struct list_head node
;
93 struct list_head ports
;
95 #ifdef CONFIG_HAVE_CLK
96 struct notifier_block clk_nb
;
100 /* Function prototypes */
101 static void sci_stop_tx(struct uart_port
*port
);
103 #define SCI_NPORTS CONFIG_SERIAL_SH_SCI_NR_UARTS
105 static struct sci_port sci_ports
[SCI_NPORTS
];
106 static struct uart_driver sci_uart_driver
;
108 static inline struct sci_port
*
109 to_sci_port(struct uart_port
*uart
)
111 return container_of(uart
, struct sci_port
, port
);
114 #if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
116 #ifdef CONFIG_CONSOLE_POLL
117 static inline void handle_error(struct uart_port
*port
)
119 /* Clear error flags */
120 sci_out(port
, SCxSR
, SCxSR_ERROR_CLEAR(port
));
123 static int sci_poll_get_char(struct uart_port
*port
)
125 unsigned short status
;
129 status
= sci_in(port
, SCxSR
);
130 if (status
& SCxSR_ERRORS(port
)) {
134 } while (!(status
& SCxSR_RDxF(port
)));
136 c
= sci_in(port
, SCxRDR
);
140 sci_out(port
, SCxSR
, SCxSR_RDxF_CLEAR(port
));
146 static void sci_poll_put_char(struct uart_port
*port
, unsigned char c
)
148 unsigned short status
;
151 status
= sci_in(port
, SCxSR
);
152 } while (!(status
& SCxSR_TDxE(port
)));
154 sci_out(port
, SCxTDR
, c
);
155 sci_out(port
, SCxSR
, SCxSR_TDxE_CLEAR(port
) & ~SCxSR_TEND(port
));
157 #endif /* CONFIG_CONSOLE_POLL || CONFIG_SERIAL_SH_SCI_CONSOLE */
159 #if defined(__H8300S__)
160 enum { sci_disable
, sci_enable
};
162 static void h8300_sci_config(struct uart_port
*port
, unsigned int ctrl
)
164 volatile unsigned char *mstpcrl
= (volatile unsigned char *)MSTPCRL
;
165 int ch
= (port
->mapbase
- SMR0
) >> 3;
166 unsigned char mask
= 1 << (ch
+1);
168 if (ctrl
== sci_disable
)
174 static void h8300_sci_enable(struct uart_port
*port
)
176 h8300_sci_config(port
, sci_enable
);
179 static void h8300_sci_disable(struct uart_port
*port
)
181 h8300_sci_config(port
, sci_disable
);
185 #if defined(__H8300H__) || defined(__H8300S__)
186 static void sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
188 int ch
= (port
->mapbase
- SMR0
) >> 3;
191 H8300_GPIO_DDR(h8300_sci_pins
[ch
].port
,
192 h8300_sci_pins
[ch
].rx
,
194 H8300_GPIO_DDR(h8300_sci_pins
[ch
].port
,
195 h8300_sci_pins
[ch
].tx
,
199 H8300_SCI_DR(ch
) |= h8300_sci_pins
[ch
].tx
;
201 #elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
202 static inline void sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
204 if (port
->mapbase
== 0xA4400000) {
205 __raw_writew(__raw_readw(PACR
) & 0xffc0, PACR
);
206 __raw_writew(__raw_readw(PBCR
) & 0x0fff, PBCR
);
207 } else if (port
->mapbase
== 0xA4410000)
208 __raw_writew(__raw_readw(PBCR
) & 0xf003, PBCR
);
210 #elif defined(CONFIG_CPU_SUBTYPE_SH7720) || defined(CONFIG_CPU_SUBTYPE_SH7721)
211 static inline void sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
215 if (cflag
& CRTSCTS
) {
217 if (port
->mapbase
== 0xa4430000) { /* SCIF0 */
218 /* Clear PTCR bit 9-2; enable all scif pins but sck */
219 data
= __raw_readw(PORT_PTCR
);
220 __raw_writew((data
& 0xfc03), PORT_PTCR
);
221 } else if (port
->mapbase
== 0xa4438000) { /* SCIF1 */
222 /* Clear PVCR bit 9-2 */
223 data
= __raw_readw(PORT_PVCR
);
224 __raw_writew((data
& 0xfc03), PORT_PVCR
);
227 if (port
->mapbase
== 0xa4430000) { /* SCIF0 */
228 /* Clear PTCR bit 5-2; enable only tx and rx */
229 data
= __raw_readw(PORT_PTCR
);
230 __raw_writew((data
& 0xffc3), PORT_PTCR
);
231 } else if (port
->mapbase
== 0xa4438000) { /* SCIF1 */
232 /* Clear PVCR bit 5-2 */
233 data
= __raw_readw(PORT_PVCR
);
234 __raw_writew((data
& 0xffc3), PORT_PVCR
);
238 #elif defined(CONFIG_CPU_SH3)
239 /* For SH7705, SH7706, SH7707, SH7709, SH7709A, SH7729 */
240 static inline void sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
244 /* We need to set SCPCR to enable RTS/CTS */
245 data
= __raw_readw(SCPCR
);
246 /* Clear out SCP7MD1,0, SCP6MD1,0, SCP4MD1,0*/
247 __raw_writew(data
& 0x0fcf, SCPCR
);
249 if (!(cflag
& CRTSCTS
)) {
250 /* We need to set SCPCR to enable RTS/CTS */
251 data
= __raw_readw(SCPCR
);
252 /* Clear out SCP7MD1,0, SCP4MD1,0,
253 Set SCP6MD1,0 = {01} (output) */
254 __raw_writew((data
& 0x0fcf) | 0x1000, SCPCR
);
256 data
= ctrl_inb(SCPDR
);
257 /* Set /RTS2 (bit6) = 0 */
258 ctrl_outb(data
& 0xbf, SCPDR
);
261 #elif defined(CONFIG_CPU_SUBTYPE_SH7722)
262 static inline void sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
266 if (port
->mapbase
== 0xffe00000) {
267 data
= __raw_readw(PSCR
);
269 if (!(cflag
& CRTSCTS
))
272 __raw_writew(data
, PSCR
);
275 #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \
276 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
277 defined(CONFIG_CPU_SUBTYPE_SH7785) || \
278 defined(CONFIG_CPU_SUBTYPE_SH7786) || \
279 defined(CONFIG_CPU_SUBTYPE_SHX3)
280 static inline void sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
282 if (!(cflag
& CRTSCTS
))
283 __raw_writew(0x0080, SCSPTR0
); /* Set RTS = 1 */
285 #elif defined(CONFIG_CPU_SH4) && !defined(CONFIG_CPU_SH4A)
286 static inline void sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
288 if (!(cflag
& CRTSCTS
))
289 __raw_writew(0x0080, SCSPTR2
); /* Set RTS = 1 */
292 static inline void sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
298 #if defined(CONFIG_CPU_SUBTYPE_SH7760) || \
299 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
300 defined(CONFIG_CPU_SUBTYPE_SH7785) || \
301 defined(CONFIG_CPU_SUBTYPE_SH7786)
302 static inline int scif_txroom(struct uart_port
*port
)
304 return SCIF_TXROOM_MAX
- (sci_in(port
, SCTFDR
) & 0xff);
307 static inline int scif_rxroom(struct uart_port
*port
)
309 return sci_in(port
, SCRFDR
) & 0xff;
311 #elif defined(CONFIG_CPU_SUBTYPE_SH7763)
312 static inline int scif_txroom(struct uart_port
*port
)
314 if ((port
->mapbase
== 0xffe00000) ||
315 (port
->mapbase
== 0xffe08000)) {
317 return SCIF_TXROOM_MAX
- (sci_in(port
, SCTFDR
) & 0xff);
320 return SCIF2_TXROOM_MAX
- (sci_in(port
, SCFDR
) >> 8);
324 static inline int scif_rxroom(struct uart_port
*port
)
326 if ((port
->mapbase
== 0xffe00000) ||
327 (port
->mapbase
== 0xffe08000)) {
329 return sci_in(port
, SCRFDR
) & 0xff;
332 return sci_in(port
, SCFDR
) & SCIF2_RFDC_MASK
;
336 static inline int scif_txroom(struct uart_port
*port
)
338 return SCIF_TXROOM_MAX
- (sci_in(port
, SCFDR
) >> 8);
341 static inline int scif_rxroom(struct uart_port
*port
)
343 return sci_in(port
, SCFDR
) & SCIF_RFDC_MASK
;
347 static inline int sci_txroom(struct uart_port
*port
)
349 return (sci_in(port
, SCxSR
) & SCI_TDRE
) != 0;
352 static inline int sci_rxroom(struct uart_port
*port
)
354 return (sci_in(port
, SCxSR
) & SCxSR_RDxF(port
)) != 0;
357 /* ********************************************************************** *
358 * the interrupt related routines *
359 * ********************************************************************** */
361 static void sci_transmit_chars(struct uart_port
*port
)
363 struct circ_buf
*xmit
= &port
->info
->xmit
;
364 unsigned int stopped
= uart_tx_stopped(port
);
365 unsigned short status
;
369 status
= sci_in(port
, SCxSR
);
370 if (!(status
& SCxSR_TDxE(port
))) {
371 ctrl
= sci_in(port
, SCSCR
);
372 if (uart_circ_empty(xmit
))
373 ctrl
&= ~SCI_CTRL_FLAGS_TIE
;
375 ctrl
|= SCI_CTRL_FLAGS_TIE
;
376 sci_out(port
, SCSCR
, ctrl
);
380 if (port
->type
== PORT_SCI
)
381 count
= sci_txroom(port
);
383 count
= scif_txroom(port
);
391 } else if (!uart_circ_empty(xmit
) && !stopped
) {
392 c
= xmit
->buf
[xmit
->tail
];
393 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
398 sci_out(port
, SCxTDR
, c
);
401 } while (--count
> 0);
403 sci_out(port
, SCxSR
, SCxSR_TDxE_CLEAR(port
));
405 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
406 uart_write_wakeup(port
);
407 if (uart_circ_empty(xmit
)) {
410 ctrl
= sci_in(port
, SCSCR
);
412 if (port
->type
!= PORT_SCI
) {
413 sci_in(port
, SCxSR
); /* Dummy read */
414 sci_out(port
, SCxSR
, SCxSR_TDxE_CLEAR(port
));
417 ctrl
|= SCI_CTRL_FLAGS_TIE
;
418 sci_out(port
, SCSCR
, ctrl
);
422 /* On SH3, SCIF may read end-of-break as a space->mark char */
423 #define STEPFN(c) ({int __c = (c); (((__c-1)|(__c)) == -1); })
425 static inline void sci_receive_chars(struct uart_port
*port
)
427 struct sci_port
*sci_port
= to_sci_port(port
);
428 struct tty_struct
*tty
= port
->info
->port
.tty
;
429 int i
, count
, copied
= 0;
430 unsigned short status
;
433 status
= sci_in(port
, SCxSR
);
434 if (!(status
& SCxSR_RDxF(port
)))
438 if (port
->type
== PORT_SCI
)
439 count
= sci_rxroom(port
);
441 count
= scif_rxroom(port
);
443 /* Don't copy more bytes than there is room for in the buffer */
444 count
= tty_buffer_request_room(tty
, count
);
446 /* If for any reason we can't copy more data, we're done! */
450 if (port
->type
== PORT_SCI
) {
451 char c
= sci_in(port
, SCxRDR
);
452 if (uart_handle_sysrq_char(port
, c
) ||
453 sci_port
->break_flag
)
456 tty_insert_flip_char(tty
, c
, TTY_NORMAL
);
458 for (i
= 0; i
< count
; i
++) {
459 char c
= sci_in(port
, SCxRDR
);
460 status
= sci_in(port
, SCxSR
);
461 #if defined(CONFIG_CPU_SH3)
462 /* Skip "chars" during break */
463 if (sci_port
->break_flag
) {
465 (status
& SCxSR_FER(port
))) {
470 /* Nonzero => end-of-break */
471 dev_dbg(port
->dev
, "debounce<%02x>\n", c
);
472 sci_port
->break_flag
= 0;
479 #endif /* CONFIG_CPU_SH3 */
480 if (uart_handle_sysrq_char(port
, c
)) {
485 /* Store data and status */
486 if (status
&SCxSR_FER(port
)) {
488 dev_notice(port
->dev
, "frame error\n");
489 } else if (status
&SCxSR_PER(port
)) {
491 dev_notice(port
->dev
, "parity error\n");
495 tty_insert_flip_char(tty
, c
, flag
);
499 sci_in(port
, SCxSR
); /* dummy read */
500 sci_out(port
, SCxSR
, SCxSR_RDxF_CLEAR(port
));
503 port
->icount
.rx
+= count
;
507 /* Tell the rest of the system the news. New characters! */
508 tty_flip_buffer_push(tty
);
510 sci_in(port
, SCxSR
); /* dummy read */
511 sci_out(port
, SCxSR
, SCxSR_RDxF_CLEAR(port
));
515 #define SCI_BREAK_JIFFIES (HZ/20)
516 /* The sci generates interrupts during the break,
517 * 1 per millisecond or so during the break period, for 9600 baud.
518 * So dont bother disabling interrupts.
519 * But dont want more than 1 break event.
520 * Use a kernel timer to periodically poll the rx line until
521 * the break is finished.
523 static void sci_schedule_break_timer(struct sci_port
*port
)
525 port
->break_timer
.expires
= jiffies
+ SCI_BREAK_JIFFIES
;
526 add_timer(&port
->break_timer
);
528 /* Ensure that two consecutive samples find the break over. */
529 static void sci_break_timer(unsigned long data
)
531 struct sci_port
*port
= (struct sci_port
*)data
;
533 if (sci_rxd_in(&port
->port
) == 0) {
534 port
->break_flag
= 1;
535 sci_schedule_break_timer(port
);
536 } else if (port
->break_flag
== 1) {
538 port
->break_flag
= 2;
539 sci_schedule_break_timer(port
);
541 port
->break_flag
= 0;
544 static inline int sci_handle_errors(struct uart_port
*port
)
547 unsigned short status
= sci_in(port
, SCxSR
);
548 struct tty_struct
*tty
= port
->info
->port
.tty
;
550 if (status
& SCxSR_ORER(port
)) {
552 if (tty_insert_flip_char(tty
, 0, TTY_OVERRUN
))
555 dev_notice(port
->dev
, "overrun error");
558 if (status
& SCxSR_FER(port
)) {
559 if (sci_rxd_in(port
) == 0) {
560 /* Notify of BREAK */
561 struct sci_port
*sci_port
= to_sci_port(port
);
563 if (!sci_port
->break_flag
) {
564 sci_port
->break_flag
= 1;
565 sci_schedule_break_timer(sci_port
);
567 /* Do sysrq handling. */
568 if (uart_handle_break(port
))
571 dev_dbg(port
->dev
, "BREAK detected\n");
573 if (tty_insert_flip_char(tty
, 0, TTY_BREAK
))
579 if (tty_insert_flip_char(tty
, 0, TTY_FRAME
))
582 dev_notice(port
->dev
, "frame error\n");
586 if (status
& SCxSR_PER(port
)) {
588 if (tty_insert_flip_char(tty
, 0, TTY_PARITY
))
591 dev_notice(port
->dev
, "parity error");
595 tty_flip_buffer_push(tty
);
600 static inline int sci_handle_fifo_overrun(struct uart_port
*port
)
602 struct tty_struct
*tty
= port
->info
->port
.tty
;
605 if (port
->type
!= PORT_SCIF
)
608 if ((sci_in(port
, SCLSR
) & SCIF_ORER
) != 0) {
609 sci_out(port
, SCLSR
, 0);
611 tty_insert_flip_char(tty
, 0, TTY_OVERRUN
);
612 tty_flip_buffer_push(tty
);
614 dev_notice(port
->dev
, "overrun error\n");
621 static inline int sci_handle_breaks(struct uart_port
*port
)
624 unsigned short status
= sci_in(port
, SCxSR
);
625 struct tty_struct
*tty
= port
->info
->port
.tty
;
626 struct sci_port
*s
= to_sci_port(port
);
628 if (uart_handle_break(port
))
631 if (!s
->break_flag
&& status
& SCxSR_BRK(port
)) {
632 #if defined(CONFIG_CPU_SH3)
636 /* Notify of BREAK */
637 if (tty_insert_flip_char(tty
, 0, TTY_BREAK
))
640 dev_dbg(port
->dev
, "BREAK detected\n");
644 tty_flip_buffer_push(tty
);
646 copied
+= sci_handle_fifo_overrun(port
);
651 static irqreturn_t
sci_rx_interrupt(int irq
, void *port
)
653 /* I think sci_receive_chars has to be called irrespective
654 * of whether the I_IXOFF is set, otherwise, how is the interrupt
657 sci_receive_chars(port
);
662 static irqreturn_t
sci_tx_interrupt(int irq
, void *ptr
)
664 struct uart_port
*port
= ptr
;
666 spin_lock_irq(&port
->lock
);
667 sci_transmit_chars(port
);
668 spin_unlock_irq(&port
->lock
);
673 static irqreturn_t
sci_er_interrupt(int irq
, void *ptr
)
675 struct uart_port
*port
= ptr
;
678 if (port
->type
== PORT_SCI
) {
679 if (sci_handle_errors(port
)) {
680 /* discard character in rx buffer */
682 sci_out(port
, SCxSR
, SCxSR_RDxF_CLEAR(port
));
685 sci_handle_fifo_overrun(port
);
686 sci_rx_interrupt(irq
, ptr
);
689 sci_out(port
, SCxSR
, SCxSR_ERROR_CLEAR(port
));
691 /* Kick the transmission */
692 sci_tx_interrupt(irq
, ptr
);
697 static irqreturn_t
sci_br_interrupt(int irq
, void *ptr
)
699 struct uart_port
*port
= ptr
;
702 sci_handle_breaks(port
);
703 sci_out(port
, SCxSR
, SCxSR_BREAK_CLEAR(port
));
708 static irqreturn_t
sci_mpxed_interrupt(int irq
, void *ptr
)
710 unsigned short ssr_status
, scr_status
;
711 struct uart_port
*port
= ptr
;
712 irqreturn_t ret
= IRQ_NONE
;
714 ssr_status
= sci_in(port
, SCxSR
);
715 scr_status
= sci_in(port
, SCSCR
);
718 if ((ssr_status
& 0x0020) && (scr_status
& SCI_CTRL_FLAGS_TIE
))
719 ret
= sci_tx_interrupt(irq
, ptr
);
721 if ((ssr_status
& 0x0002) && (scr_status
& SCI_CTRL_FLAGS_RIE
))
722 ret
= sci_rx_interrupt(irq
, ptr
);
723 /* Error Interrupt */
724 if ((ssr_status
& 0x0080) && (scr_status
& SCI_CTRL_FLAGS_REIE
))
725 ret
= sci_er_interrupt(irq
, ptr
);
726 /* Break Interrupt */
727 if ((ssr_status
& 0x0010) && (scr_status
& SCI_CTRL_FLAGS_REIE
))
728 ret
= sci_br_interrupt(irq
, ptr
);
733 #ifdef CONFIG_HAVE_CLK
735 * Here we define a transistion notifier so that we can update all of our
736 * ports' baud rate when the peripheral clock changes.
738 static int sci_notifier(struct notifier_block
*self
,
739 unsigned long phase
, void *p
)
741 struct sh_sci_priv
*priv
= container_of(self
,
742 struct sh_sci_priv
, clk_nb
);
743 struct sci_port
*sci_port
;
746 if ((phase
== CPUFREQ_POSTCHANGE
) ||
747 (phase
== CPUFREQ_RESUMECHANGE
)) {
748 spin_lock_irqsave(&priv
->lock
, flags
);
749 list_for_each_entry(sci_port
, &priv
->ports
, node
)
750 sci_port
->port
.uartclk
= clk_get_rate(sci_port
->dclk
);
752 spin_unlock_irqrestore(&priv
->lock
, flags
);
758 static void sci_clk_enable(struct uart_port
*port
)
760 struct sci_port
*sci_port
= to_sci_port(port
);
762 clk_enable(sci_port
->dclk
);
763 sci_port
->port
.uartclk
= clk_get_rate(sci_port
->dclk
);
766 clk_enable(sci_port
->iclk
);
769 static void sci_clk_disable(struct uart_port
*port
)
771 struct sci_port
*sci_port
= to_sci_port(port
);
774 clk_disable(sci_port
->iclk
);
776 clk_disable(sci_port
->dclk
);
780 static int sci_request_irq(struct sci_port
*port
)
783 irqreturn_t (*handlers
[4])(int irq
, void *ptr
) = {
784 sci_er_interrupt
, sci_rx_interrupt
, sci_tx_interrupt
,
787 const char *desc
[] = { "SCI Receive Error", "SCI Receive Data Full",
788 "SCI Transmit Data Empty", "SCI Break" };
790 if (port
->irqs
[0] == port
->irqs
[1]) {
791 if (unlikely(!port
->irqs
[0]))
794 if (request_irq(port
->irqs
[0], sci_mpxed_interrupt
,
795 IRQF_DISABLED
, "sci", port
)) {
796 dev_err(port
->port
.dev
, "Can't allocate IRQ\n");
800 for (i
= 0; i
< ARRAY_SIZE(handlers
); i
++) {
801 if (unlikely(!port
->irqs
[i
]))
804 if (request_irq(port
->irqs
[i
], handlers
[i
],
805 IRQF_DISABLED
, desc
[i
], port
)) {
806 dev_err(port
->port
.dev
, "Can't allocate IRQ\n");
815 static void sci_free_irq(struct sci_port
*port
)
819 if (port
->irqs
[0] == port
->irqs
[1])
820 free_irq(port
->irqs
[0], port
);
822 for (i
= 0; i
< ARRAY_SIZE(port
->irqs
); i
++) {
826 free_irq(port
->irqs
[i
], port
);
831 static unsigned int sci_tx_empty(struct uart_port
*port
)
837 static void sci_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
839 /* This routine is used for seting signals of: DTR, DCD, CTS/RTS */
840 /* We use SCIF's hardware for CTS/RTS, so don't need any for that. */
841 /* If you have signals for DTR and DCD, please implement here. */
844 static unsigned int sci_get_mctrl(struct uart_port
*port
)
846 /* This routine is used for geting signals of: DTR, DCD, DSR, RI,
849 return TIOCM_DTR
| TIOCM_RTS
| TIOCM_DSR
;
852 static void sci_start_tx(struct uart_port
*port
)
856 /* Set TIE (Transmit Interrupt Enable) bit in SCSCR */
857 ctrl
= sci_in(port
, SCSCR
);
858 ctrl
|= SCI_CTRL_FLAGS_TIE
;
859 sci_out(port
, SCSCR
, ctrl
);
862 static void sci_stop_tx(struct uart_port
*port
)
866 /* Clear TIE (Transmit Interrupt Enable) bit in SCSCR */
867 ctrl
= sci_in(port
, SCSCR
);
868 ctrl
&= ~SCI_CTRL_FLAGS_TIE
;
869 sci_out(port
, SCSCR
, ctrl
);
872 static void sci_start_rx(struct uart_port
*port
, unsigned int tty_start
)
876 /* Set RIE (Receive Interrupt Enable) bit in SCSCR */
877 ctrl
= sci_in(port
, SCSCR
);
878 ctrl
|= SCI_CTRL_FLAGS_RIE
| SCI_CTRL_FLAGS_REIE
;
879 sci_out(port
, SCSCR
, ctrl
);
882 static void sci_stop_rx(struct uart_port
*port
)
886 /* Clear RIE (Receive Interrupt Enable) bit in SCSCR */
887 ctrl
= sci_in(port
, SCSCR
);
888 ctrl
&= ~(SCI_CTRL_FLAGS_RIE
| SCI_CTRL_FLAGS_REIE
);
889 sci_out(port
, SCSCR
, ctrl
);
892 static void sci_enable_ms(struct uart_port
*port
)
894 /* Nothing here yet .. */
897 static void sci_break_ctl(struct uart_port
*port
, int break_state
)
899 /* Nothing here yet .. */
902 static int sci_startup(struct uart_port
*port
)
904 struct sci_port
*s
= to_sci_port(port
);
911 sci_start_rx(port
, 1);
916 static void sci_shutdown(struct uart_port
*port
)
918 struct sci_port
*s
= to_sci_port(port
);
928 static void sci_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
929 struct ktermios
*old
)
931 unsigned int status
, baud
, smr_val
;
934 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/16);
936 t
= SCBRR_VALUE(baud
, port
->uartclk
);
939 status
= sci_in(port
, SCxSR
);
940 } while (!(status
& SCxSR_TEND(port
)));
942 sci_out(port
, SCSCR
, 0x00); /* TE=0, RE=0, CKE1=0 */
944 if (port
->type
!= PORT_SCI
)
945 sci_out(port
, SCFCR
, SCFCR_RFRST
| SCFCR_TFRST
);
947 smr_val
= sci_in(port
, SCSMR
) & 3;
948 if ((termios
->c_cflag
& CSIZE
) == CS7
)
950 if (termios
->c_cflag
& PARENB
)
952 if (termios
->c_cflag
& PARODD
)
954 if (termios
->c_cflag
& CSTOPB
)
957 uart_update_timeout(port
, termios
->c_cflag
, baud
);
959 sci_out(port
, SCSMR
, smr_val
);
963 sci_out(port
, SCSMR
, (sci_in(port
, SCSMR
) & ~3) | 1);
966 sci_out(port
, SCSMR
, sci_in(port
, SCSMR
) & ~3);
968 sci_out(port
, SCBRR
, t
);
969 udelay((1000000+(baud
-1)) / baud
); /* Wait one bit interval */
972 sci_init_pins(port
, termios
->c_cflag
);
973 sci_out(port
, SCFCR
, (termios
->c_cflag
& CRTSCTS
) ? SCFCR_MCE
: 0);
975 sci_out(port
, SCSCR
, SCSCR_INIT(port
));
977 if ((termios
->c_cflag
& CREAD
) != 0)
978 sci_start_rx(port
, 0);
981 static const char *sci_type(struct uart_port
*port
)
983 switch (port
->type
) {
997 static void sci_release_port(struct uart_port
*port
)
999 /* Nothing here yet .. */
1002 static int sci_request_port(struct uart_port
*port
)
1004 /* Nothing here yet .. */
1008 static void sci_config_port(struct uart_port
*port
, int flags
)
1010 struct sci_port
*s
= to_sci_port(port
);
1012 port
->type
= s
->type
;
1017 if (port
->flags
& UPF_IOREMAP
) {
1018 port
->membase
= ioremap_nocache(port
->mapbase
, 0x40);
1020 if (IS_ERR(port
->membase
))
1021 dev_err(port
->dev
, "can't remap port#%d\n", port
->line
);
1024 * For the simple (and majority of) cases where we don't
1025 * need to do any remapping, just cast the cookie
1028 port
->membase
= (void __iomem
*)port
->mapbase
;
1032 static int sci_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
1034 struct sci_port
*s
= to_sci_port(port
);
1036 if (ser
->irq
!= s
->irqs
[SCIx_TXI_IRQ
] || ser
->irq
> nr_irqs
)
1038 if (ser
->baud_base
< 2400)
1039 /* No paper tape reader for Mitch.. */
1045 static struct uart_ops sci_uart_ops
= {
1046 .tx_empty
= sci_tx_empty
,
1047 .set_mctrl
= sci_set_mctrl
,
1048 .get_mctrl
= sci_get_mctrl
,
1049 .start_tx
= sci_start_tx
,
1050 .stop_tx
= sci_stop_tx
,
1051 .stop_rx
= sci_stop_rx
,
1052 .enable_ms
= sci_enable_ms
,
1053 .break_ctl
= sci_break_ctl
,
1054 .startup
= sci_startup
,
1055 .shutdown
= sci_shutdown
,
1056 .set_termios
= sci_set_termios
,
1058 .release_port
= sci_release_port
,
1059 .request_port
= sci_request_port
,
1060 .config_port
= sci_config_port
,
1061 .verify_port
= sci_verify_port
,
1062 #ifdef CONFIG_CONSOLE_POLL
1063 .poll_get_char
= sci_poll_get_char
,
1064 .poll_put_char
= sci_poll_put_char
,
1068 static void __devinit
sci_init_single(struct platform_device
*dev
,
1069 struct sci_port
*sci_port
,
1071 struct plat_sci_port
*p
)
1073 sci_port
->port
.ops
= &sci_uart_ops
;
1074 sci_port
->port
.iotype
= UPIO_MEM
;
1075 sci_port
->port
.line
= index
;
1076 sci_port
->port
.fifosize
= 1;
1078 #if defined(__H8300H__) || defined(__H8300S__)
1080 sci_port
->enable
= h8300_sci_enable
;
1081 sci_port
->disable
= h8300_sci_disable
;
1083 sci_port
->port
.uartclk
= CONFIG_CPU_CLOCK
;
1084 #elif defined(CONFIG_HAVE_CLK)
1085 sci_port
->iclk
= p
->clk
? clk_get(&dev
->dev
, p
->clk
) : NULL
;
1086 sci_port
->dclk
= clk_get(&dev
->dev
, "peripheral_clk");
1087 sci_port
->enable
= sci_clk_enable
;
1088 sci_port
->disable
= sci_clk_disable
;
1090 #error "Need a valid uartclk"
1093 sci_port
->break_timer
.data
= (unsigned long)sci_port
;
1094 sci_port
->break_timer
.function
= sci_break_timer
;
1095 init_timer(&sci_port
->break_timer
);
1097 sci_port
->port
.mapbase
= p
->mapbase
;
1098 sci_port
->port
.membase
= p
->membase
;
1100 sci_port
->port
.irq
= p
->irqs
[SCIx_TXI_IRQ
];
1101 sci_port
->port
.flags
= p
->flags
;
1102 sci_port
->port
.dev
= &dev
->dev
;
1103 sci_port
->type
= sci_port
->port
.type
= p
->type
;
1105 memcpy(&sci_port
->irqs
, &p
->irqs
, sizeof(p
->irqs
));
1109 #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE
1110 static struct tty_driver
*serial_console_device(struct console
*co
, int *index
)
1112 struct uart_driver
*p
= &sci_uart_driver
;
1114 return p
->tty_driver
;
1117 static void serial_console_putchar(struct uart_port
*port
, int ch
)
1119 sci_poll_put_char(port
, ch
);
1123 * Print a string to the serial port trying not to disturb
1124 * any possible real use of the port...
1126 static void serial_console_write(struct console
*co
, const char *s
,
1129 struct uart_port
*port
= co
->data
;
1130 struct sci_port
*sci_port
= to_sci_port(port
);
1131 unsigned short bits
;
1133 if (sci_port
->enable
)
1134 sci_port
->enable(port
);
1136 uart_console_write(port
, s
, count
, serial_console_putchar
);
1138 /* wait until fifo is empty and last bit has been transmitted */
1139 bits
= SCxSR_TDxE(port
) | SCxSR_TEND(port
);
1140 while ((sci_in(port
, SCxSR
) & bits
) != bits
)
1143 if (sci_port
->disable
);
1144 sci_port
->disable(port
);
1147 static int __init
serial_console_setup(struct console
*co
, char *options
)
1149 struct sci_port
*sci_port
;
1150 struct uart_port
*port
;
1158 * Check whether an invalid uart number has been specified, and
1159 * if so, search for the first available port that does have
1162 if (co
->index
>= SCI_NPORTS
)
1165 sci_port
= &sci_ports
[co
->index
];
1166 port
= &sci_port
->port
;
1170 * Also need to check port->type, we don't actually have any
1171 * UPIO_PORT ports, but uart_report_port() handily misreports
1172 * it anyways if we don't have a port available by the time this is
1178 sci_config_port(port
, 0);
1180 if (sci_port
->enable
)
1181 sci_port
->enable(port
);
1184 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1186 ret
= uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
1187 #if defined(__H8300H__) || defined(__H8300S__)
1188 /* disable rx interrupt */
1192 /* TODO: disable clock */
1196 static struct console serial_console
= {
1198 .device
= serial_console_device
,
1199 .write
= serial_console_write
,
1200 .setup
= serial_console_setup
,
1201 .flags
= CON_PRINTBUFFER
,
1205 static int __init
sci_console_init(void)
1207 register_console(&serial_console
);
1210 console_initcall(sci_console_init
);
1211 #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */
1213 #if defined(CONFIG_SERIAL_SH_SCI_CONSOLE)
1214 #define SCI_CONSOLE (&serial_console)
1216 #define SCI_CONSOLE 0
1219 static char banner
[] __initdata
=
1220 KERN_INFO
"SuperH SCI(F) driver initialized\n";
1222 static struct uart_driver sci_uart_driver
= {
1223 .owner
= THIS_MODULE
,
1224 .driver_name
= "sci",
1225 .dev_name
= "ttySC",
1227 .minor
= SCI_MINOR_START
,
1229 .cons
= SCI_CONSOLE
,
1233 static int sci_remove(struct platform_device
*dev
)
1235 struct sh_sci_priv
*priv
= platform_get_drvdata(dev
);
1237 unsigned long flags
;
1239 #ifdef CONFIG_HAVE_CLK
1240 cpufreq_unregister_notifier(&priv
->clk_nb
, CPUFREQ_TRANSITION_NOTIFIER
);
1243 spin_lock_irqsave(&priv
->lock
, flags
);
1244 list_for_each_entry(p
, &priv
->ports
, node
)
1245 uart_remove_one_port(&sci_uart_driver
, &p
->port
);
1247 spin_unlock_irqrestore(&priv
->lock
, flags
);
1253 static int __devinit
sci_probe_single(struct platform_device
*dev
,
1255 struct plat_sci_port
*p
,
1256 struct sci_port
*sciport
)
1258 struct sh_sci_priv
*priv
= platform_get_drvdata(dev
);
1259 unsigned long flags
;
1263 if (unlikely(index
>= SCI_NPORTS
)) {
1264 dev_notice(&dev
->dev
, "Attempting to register port "
1265 "%d when only %d are available.\n",
1266 index
+1, SCI_NPORTS
);
1267 dev_notice(&dev
->dev
, "Consider bumping "
1268 "CONFIG_SERIAL_SH_SCI_NR_UARTS!\n");
1272 sci_init_single(dev
, sciport
, index
, p
);
1274 ret
= uart_add_one_port(&sci_uart_driver
, &sciport
->port
);
1278 INIT_LIST_HEAD(&sciport
->node
);
1280 spin_lock_irqsave(&priv
->lock
, flags
);
1281 list_add(&sciport
->node
, &priv
->ports
);
1282 spin_unlock_irqrestore(&priv
->lock
, flags
);
1288 * Register a set of serial devices attached to a platform device. The
1289 * list is terminated with a zero flags entry, which means we expect
1290 * all entries to have at least UPF_BOOT_AUTOCONF set. Platforms that need
1291 * remapping (such as sh64) should also set UPF_IOREMAP.
1293 static int __devinit
sci_probe(struct platform_device
*dev
)
1295 struct plat_sci_port
*p
= dev
->dev
.platform_data
;
1296 struct sh_sci_priv
*priv
;
1297 int i
, ret
= -EINVAL
;
1299 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
1303 INIT_LIST_HEAD(&priv
->ports
);
1304 spin_lock_init(&priv
->lock
);
1305 platform_set_drvdata(dev
, priv
);
1307 #ifdef CONFIG_HAVE_CLK
1308 priv
->clk_nb
.notifier_call
= sci_notifier
;
1309 cpufreq_register_notifier(&priv
->clk_nb
, CPUFREQ_TRANSITION_NOTIFIER
);
1312 if (dev
->id
!= -1) {
1313 ret
= sci_probe_single(dev
, dev
->id
, p
, &sci_ports
[dev
->id
]);
1317 for (i
= 0; p
&& p
->flags
!= 0; p
++, i
++) {
1318 ret
= sci_probe_single(dev
, i
, p
, &sci_ports
[i
]);
1324 #ifdef CONFIG_SH_STANDARD_BIOS
1325 sh_bios_gdb_detach();
1335 static int sci_suspend(struct device
*dev
)
1337 struct sh_sci_priv
*priv
= dev_get_drvdata(dev
);
1339 unsigned long flags
;
1341 spin_lock_irqsave(&priv
->lock
, flags
);
1342 list_for_each_entry(p
, &priv
->ports
, node
)
1343 uart_suspend_port(&sci_uart_driver
, &p
->port
);
1344 spin_unlock_irqrestore(&priv
->lock
, flags
);
1349 static int sci_resume(struct device
*dev
)
1351 struct sh_sci_priv
*priv
= dev_get_drvdata(dev
);
1353 unsigned long flags
;
1355 spin_lock_irqsave(&priv
->lock
, flags
);
1356 list_for_each_entry(p
, &priv
->ports
, node
)
1357 uart_resume_port(&sci_uart_driver
, &p
->port
);
1358 spin_unlock_irqrestore(&priv
->lock
, flags
);
1363 static struct dev_pm_ops sci_dev_pm_ops
= {
1364 .suspend
= sci_suspend
,
1365 .resume
= sci_resume
,
1368 static struct platform_driver sci_driver
= {
1370 .remove
= __devexit_p(sci_remove
),
1373 .owner
= THIS_MODULE
,
1374 .pm
= &sci_dev_pm_ops
,
1378 static int __init
sci_init(void)
1384 ret
= uart_register_driver(&sci_uart_driver
);
1385 if (likely(ret
== 0)) {
1386 ret
= platform_driver_register(&sci_driver
);
1388 uart_unregister_driver(&sci_uart_driver
);
1394 static void __exit
sci_exit(void)
1396 platform_driver_unregister(&sci_driver
);
1397 uart_unregister_driver(&sci_uart_driver
);
1400 module_init(sci_init
);
1401 module_exit(sci_exit
);
1403 MODULE_LICENSE("GPL");
1404 MODULE_ALIAS("platform:sh-sci");