blob: 1c297ddc9d5a4ef50895e9199ca7bf6fcb411182 [file] [log] [blame]
Paul Mundt96de1a82008-02-26 14:52:45 +09001#ifndef __LINUX_SERIAL_SCI_H
2#define __LINUX_SERIAL_SCI_H
Paul Mundtecd95612006-09-27 17:32:30 +09003
4#include <linux/serial_core.h>
5
6/*
Paul Mundt96de1a82008-02-26 14:52:45 +09007 * Generic header for SuperH SCI(F) (used by sh/sh64/h8300 and related parts)
Paul Mundtecd95612006-09-27 17:32:30 +09008 */
9
10/* Offsets into the sci_port->irqs array */
11enum {
12 SCIx_ERI_IRQ,
13 SCIx_RXI_IRQ,
14 SCIx_TXI_IRQ,
15 SCIx_BRI_IRQ,
16 SCIx_NR_IRQS,
17};
18
19/*
20 * Platform device specific platform_data struct
21 */
22struct 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 */
Magnus Damm501b8252009-01-21 15:14:30 +000028 char *clk; /* clock string */
Paul Mundtecd95612006-09-27 17:32:30 +090029};
30
Paul Mundt96de1a82008-02-26 14:52:45 +090031#endif /* __LINUX_SERIAL_SCI_H */