blob: 15b1bdcaa9f52e55b8e81bed64da2e4ecbe4dd3b [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
Paul Mundtdebf9502011-06-08 18:19:37 +090011#define SCIx_NOT_SUPPORTED (-1)
12
Paul Mundt26c92f32009-06-24 18:23:52 +090013enum {
14 SCBRR_ALGO_1, /* ((clk + 16 * bps) / (16 * bps) - 1) */
15 SCBRR_ALGO_2, /* ((clk + 16 * bps) / (32 * bps) - 1) */
16 SCBRR_ALGO_3, /* (((clk * 2) + 16 * bps) / (16 * bps) - 1) */
17 SCBRR_ALGO_4, /* (((clk * 2) + 16 * bps) / (32 * bps) - 1) */
18 SCBRR_ALGO_5, /* (((clk * 1000 / 32) / bps) - 1) */
19};
20
Paul Mundt00b9de92009-06-24 17:53:33 +090021#define SCSCR_TIE (1 << 7)
22#define SCSCR_RIE (1 << 6)
23#define SCSCR_TE (1 << 5)
24#define SCSCR_RE (1 << 4)
Paul Mundtf43dc232011-01-13 15:06:28 +090025#define SCSCR_REIE (1 << 3) /* not supported by all parts */
Paul Mundt00b9de92009-06-24 17:53:33 +090026#define SCSCR_TOIE (1 << 2) /* not supported by all parts */
27#define SCSCR_CKE1 (1 << 1)
28#define SCSCR_CKE0 (1 << 0)
29
Paul Mundtdebf9502011-06-08 18:19:37 +090030/* SCxSR SCI */
31#define SCI_TDRE 0x80
32#define SCI_RDRF 0x40
33#define SCI_ORER 0x20
34#define SCI_FER 0x10
35#define SCI_PER 0x08
36#define SCI_TEND 0x04
37
38#define SCI_DEFAULT_ERROR_MASK (SCI_PER | SCI_FER)
39
40/* SCxSR SCIF */
41#define SCIF_ER 0x0080
42#define SCIF_TEND 0x0040
43#define SCIF_TDFE 0x0020
44#define SCIF_BRK 0x0010
45#define SCIF_FER 0x0008
46#define SCIF_PER 0x0004
47#define SCIF_RDF 0x0002
48#define SCIF_DR 0x0001
49
50#define SCIF_DEFAULT_ERROR_MASK (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
51
Paul Mundtfaf02f82011-12-02 17:44:50 +090052/* SCSPTR, optional */
53#define SCSPTR_RTSIO (1 << 7)
54#define SCSPTR_CTSIO (1 << 5)
55
Paul Mundtecd95612006-09-27 17:32:30 +090056/* Offsets into the sci_port->irqs array */
57enum {
58 SCIx_ERI_IRQ,
59 SCIx_RXI_IRQ,
60 SCIx_TXI_IRQ,
61 SCIx_BRI_IRQ,
62 SCIx_NR_IRQS,
Paul Mundt9174fc82011-06-28 15:25:36 +090063
64 SCIx_MUX_IRQ = SCIx_NR_IRQS, /* special case */
Paul Mundtecd95612006-09-27 17:32:30 +090065};
66
Paul Mundt61a69762011-06-14 12:40:19 +090067enum {
68 SCIx_PROBE_REGTYPE,
69
70 SCIx_SCI_REGTYPE,
71 SCIx_IRDA_REGTYPE,
72 SCIx_SCIFA_REGTYPE,
73 SCIx_SCIFB_REGTYPE,
Phil Edworthy3af1f8a2011-10-03 15:16:47 +010074 SCIx_SH2_SCIF_FIFODATA_REGTYPE,
Paul Mundt61a69762011-06-14 12:40:19 +090075 SCIx_SH3_SCIF_REGTYPE,
76 SCIx_SH4_SCIF_REGTYPE,
77 SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE,
78 SCIx_SH4_SCIF_FIFODATA_REGTYPE,
79 SCIx_SH7705_SCIF_REGTYPE,
80
81 SCIx_NR_REGTYPES,
82};
83
Paul Mundt22cc8372011-01-19 14:37:14 +090084#define SCIx_IRQ_MUXED(irq) \
85{ \
86 [SCIx_ERI_IRQ] = (irq), \
87 [SCIx_RXI_IRQ] = (irq), \
88 [SCIx_TXI_IRQ] = (irq), \
89 [SCIx_BRI_IRQ] = (irq), \
90}
91
Paul Mundt9174fc82011-06-28 15:25:36 +090092#define SCIx_IRQ_IS_MUXED(port) \
93 ((port)->cfg->irqs[SCIx_ERI_IRQ] == \
94 (port)->cfg->irqs[SCIx_RXI_IRQ]) || \
95 ((port)->cfg->irqs[SCIx_ERI_IRQ] && \
96 !(port)->cfg->irqs[SCIx_RXI_IRQ])
Paul Mundt61a69762011-06-14 12:40:19 +090097/*
98 * SCI register subset common for all port types.
99 * Not all registers will exist on all parts.
100 */
101enum {
102 SCSMR, SCBRR, SCSCR, SCxSR,
103 SCFCR, SCFDR, SCxTDR, SCxRDR,
104 SCLSR, SCTFDR, SCRFDR, SCSPTR,
105
106 SCIx_NR_REGS,
107};
108
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900109struct device;
110
Paul Mundt61a69762011-06-14 12:40:19 +0900111struct plat_sci_port_ops {
112 void (*init_pins)(struct uart_port *, unsigned int cflag);
113};
114
Paul Mundtecd95612006-09-27 17:32:30 +0900115/*
Paul Mundtfaf02f82011-12-02 17:44:50 +0900116 * Port-specific capabilities
117 */
118#define SCIx_HAVE_RTSCTS (1 << 0)
119
120/*
Paul Mundtecd95612006-09-27 17:32:30 +0900121 * Platform device specific platform_data struct
122 */
123struct plat_sci_port {
Paul Mundtecd95612006-09-27 17:32:30 +0900124 unsigned long mapbase; /* resource base */
125 unsigned int irqs[SCIx_NR_IRQS]; /* ERI, RXI, TXI, BRI */
126 unsigned int type; /* SCI / SCIF / IRDA */
127 upf_t flags; /* UPF_* flags */
Paul Mundtfaf02f82011-12-02 17:44:50 +0900128 unsigned long capabilities; /* Port features/capabilities */
Paul Mundt00b9de92009-06-24 17:53:33 +0900129
Paul Mundt26c92f32009-06-24 18:23:52 +0900130 unsigned int scbrr_algo_id; /* SCBRR calculation algo */
Paul Mundt00b9de92009-06-24 17:53:33 +0900131 unsigned int scscr; /* SCSCR initialization */
Paul Mundtf43dc232011-01-13 15:06:28 +0900132
Paul Mundtdebf9502011-06-08 18:19:37 +0900133 /*
134 * Platform overrides if necessary, defaults otherwise.
135 */
136 int overrun_bit;
137 unsigned int error_mask;
138
Paul Mundt514820e2011-06-08 18:51:32 +0900139 int port_reg;
Paul Mundt61a69762011-06-14 12:40:19 +0900140 unsigned char regshift;
141 unsigned char regtype;
142
143 struct plat_sci_port_ops *ops;
Paul Mundt514820e2011-06-08 18:51:32 +0900144
Paul Mundt27bd1072011-01-19 15:37:31 +0900145 unsigned int dma_slave_tx;
146 unsigned int dma_slave_rx;
Paul Mundtecd95612006-09-27 17:32:30 +0900147};
148
Paul Mundt96de1a82008-02-26 14:52:45 +0900149#endif /* __LINUX_SERIAL_SCI_H */