blob: baed2122c5a608b209cf68f398cf6875ca2f6224 [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>
Paul Mundt14baf9d2010-05-24 16:31:08 +09005#include <linux/sh_dma.h>
Paul Mundtecd95612006-09-27 17:32:30 +09006
7/*
Paul Mundt96de1a82008-02-26 14:52:45 +09008 * Generic header for SuperH SCI(F) (used by sh/sh64/h8300 and related parts)
Paul Mundtecd95612006-09-27 17:32:30 +09009 */
10
11/* Offsets into the sci_port->irqs array */
12enum {
13 SCIx_ERI_IRQ,
14 SCIx_RXI_IRQ,
15 SCIx_TXI_IRQ,
16 SCIx_BRI_IRQ,
17 SCIx_NR_IRQS,
18};
19
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090020struct device;
21
Paul Mundtecd95612006-09-27 17:32:30 +090022/*
23 * Platform device specific platform_data struct
24 */
25struct plat_sci_port {
26 void __iomem *membase; /* io cookie */
27 unsigned long mapbase; /* resource base */
28 unsigned int irqs[SCIx_NR_IRQS]; /* ERI, RXI, TXI, BRI */
29 unsigned int type; /* SCI / SCIF / IRDA */
30 upf_t flags; /* UPF_* flags */
Magnus Damm501b8252009-01-21 15:14:30 +000031 char *clk; /* clock string */
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090032 struct device *dma_dev;
Peter Huewe04e82ff2010-03-10 11:55:05 +090033#ifdef CONFIG_SERIAL_SH_SCI_DMA
Magnus Damm4bab9d42010-03-19 04:46:38 +000034 unsigned int dma_slave_tx;
35 unsigned int dma_slave_rx;
Peter Huewe04e82ff2010-03-10 11:55:05 +090036#endif
Paul Mundtecd95612006-09-27 17:32:30 +090037};
38
Paul Mundt96de1a82008-02-26 14:52:45 +090039#endif /* __LINUX_SERIAL_SCI_H */