1 #include <linux/serial_sci.h>
2 #include <linux/serial_core.h>
5 #define PSCR 0xA405011E
7 static void sh7722_sci_init_pins(struct uart_port
*port
, unsigned int cflag
)
11 if (port
->mapbase
== 0xffe00000) {
12 data
= __raw_readw(PSCR
);
14 if (!(cflag
& CRTSCTS
))
17 __raw_writew(data
, PSCR
);
21 struct plat_sci_port_ops sh7722_sci_port_ops
= {
22 .init_pins
= sh7722_sci_init_pins
,