1 #ifndef __LINUX_SERIAL_SCI_H
2 #define __LINUX_SERIAL_SCI_H
4 #include <linux/serial_core.h>
7 * Generic header for SuperH SCI(F) (used by sh/sh64/h8300 and related parts)
10 /* Offsets into the sci_port->irqs array */
20 * Platform device specific platform_data struct
22 struct plat_sci_port
{
23 void __iomem
*membase
; /* io cookie */
24 unsigned long mapbase
; /* resource base */
25 unsigned int irqs
[SCIx_NR_IRQS
]; /* ERI, RXI, TXI, BRI */
26 unsigned int type
; /* SCI / SCIF / IRDA */
27 upf_t flags
; /* UPF_* flags */
30 int early_sci_setup(struct uart_port
*port
);
32 #endif /* __LINUX_SERIAL_SCI_H */