diff options
author | David S. Miller <davem@davemloft.net> | 2008-03-18 02:44:31 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-18 02:44:31 -0400 |
commit | 2f633928cbba8a5858bb39b11e7219a41b0fbef5 (patch) | |
tree | 9a82f4b7f2c3afe4b0208d8e44ea61bae90a7d22 /include/linux/serial_sci.h | |
parent | 5e226e4d9016daee170699f8a4188a5505021756 (diff) | |
parent | bde4f8fa8db2abd5ac9c542d76012d0fedab050f (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'include/linux/serial_sci.h')
-rw-r--r-- | include/linux/serial_sci.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/include/linux/serial_sci.h b/include/linux/serial_sci.h new file mode 100644 index 000000000000..893cc53486bc --- /dev/null +++ b/include/linux/serial_sci.h | |||
@@ -0,0 +1,32 @@ | |||
1 | #ifndef __LINUX_SERIAL_SCI_H | ||
2 | #define __LINUX_SERIAL_SCI_H | ||
3 | |||
4 | #include <linux/serial_core.h> | ||
5 | |||
6 | /* | ||
7 | * Generic header for SuperH SCI(F) (used by sh/sh64/h8300 and related parts) | ||
8 | */ | ||
9 | |||
10 | /* Offsets into the sci_port->irqs array */ | ||
11 | enum { | ||
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 | */ | ||
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 */ | ||
28 | }; | ||
29 | |||
30 | int early_sci_setup(struct uart_port *port); | ||
31 | |||
32 | #endif /* __LINUX_SERIAL_SCI_H */ | ||