blob: d34049712a4d7cee24958816840ca1c843e0541f [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/*
Ulrich Hechtf303b362013-05-31 17:57:01 +02008 * Generic header for SuperH (H)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) */
Ulrich Hechtf303b362013-05-31 17:57:01 +020019 SCBRR_ALGO_6, /* HSCIF variable sample rate algorithm */
Paul Mundt26c92f32009-06-24 18:23:52 +090020};
21
Paul Mundt00b9de92009-06-24 17:53:33 +090022#define SCSCR_TIE (1 << 7)
23#define SCSCR_RIE (1 << 6)
24#define SCSCR_TE (1 << 5)
25#define SCSCR_RE (1 << 4)
Paul Mundtf43dc232011-01-13 15:06:28 +090026#define SCSCR_REIE (1 << 3) /* not supported by all parts */
Paul Mundt00b9de92009-06-24 17:53:33 +090027#define SCSCR_TOIE (1 << 2) /* not supported by all parts */
28#define SCSCR_CKE1 (1 << 1)
29#define SCSCR_CKE0 (1 << 0)
30
Paul Mundtdebf9502011-06-08 18:19:37 +090031/* SCxSR SCI */
32#define SCI_TDRE 0x80
33#define SCI_RDRF 0x40
34#define SCI_ORER 0x20
35#define SCI_FER 0x10
36#define SCI_PER 0x08
37#define SCI_TEND 0x04
38
39#define SCI_DEFAULT_ERROR_MASK (SCI_PER | SCI_FER)
40
Ulrich Hechtf303b362013-05-31 17:57:01 +020041/* SCxSR SCIF, HSCIF */
Paul Mundtdebf9502011-06-08 18:19:37 +090042#define SCIF_ER 0x0080
43#define SCIF_TEND 0x0040
44#define SCIF_TDFE 0x0020
45#define SCIF_BRK 0x0010
46#define SCIF_FER 0x0008
47#define SCIF_PER 0x0004
48#define SCIF_RDF 0x0002
49#define SCIF_DR 0x0001
50
51#define SCIF_DEFAULT_ERROR_MASK (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
52
Paul Mundtfaf02f82011-12-02 17:44:50 +090053/* SCSPTR, optional */
54#define SCSPTR_RTSIO (1 << 7)
55#define SCSPTR_CTSIO (1 << 5)
Shimoda, Yoshihirobbb4ce52012-04-06 09:59:14 +090056#define SCSPTR_SPB2IO (1 << 1)
57#define SCSPTR_SPB2DT (1 << 0)
Paul Mundtfaf02f82011-12-02 17:44:50 +090058
Ulrich Hechtf303b362013-05-31 17:57:01 +020059/* HSSRR HSCIF */
60#define HSCIF_SRE 0x8000
61
Paul Mundtecd95612006-09-27 17:32:30 +090062/* Offsets into the sci_port->irqs array */
63enum {
64 SCIx_ERI_IRQ,
65 SCIx_RXI_IRQ,
66 SCIx_TXI_IRQ,
67 SCIx_BRI_IRQ,
68 SCIx_NR_IRQS,
Paul Mundt9174fc82011-06-28 15:25:36 +090069
70 SCIx_MUX_IRQ = SCIx_NR_IRQS, /* special case */
Paul Mundtecd95612006-09-27 17:32:30 +090071};
72
Paul Mundt50f09592011-12-02 20:09:48 +090073/* Offsets into the sci_port->gpios array */
74enum {
75 SCIx_SCK,
76 SCIx_RXD,
77 SCIx_TXD,
78 SCIx_CTS,
79 SCIx_RTS,
80
81 SCIx_NR_FNS,
82};
83
Paul Mundt61a69762011-06-14 12:40:19 +090084enum {
85 SCIx_PROBE_REGTYPE,
86
87 SCIx_SCI_REGTYPE,
88 SCIx_IRDA_REGTYPE,
89 SCIx_SCIFA_REGTYPE,
90 SCIx_SCIFB_REGTYPE,
Phil Edworthy3af1f8a2011-10-03 15:16:47 +010091 SCIx_SH2_SCIF_FIFODATA_REGTYPE,
Paul Mundt61a69762011-06-14 12:40:19 +090092 SCIx_SH3_SCIF_REGTYPE,
93 SCIx_SH4_SCIF_REGTYPE,
94 SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE,
95 SCIx_SH4_SCIF_FIFODATA_REGTYPE,
96 SCIx_SH7705_SCIF_REGTYPE,
Ulrich Hechtf303b362013-05-31 17:57:01 +020097 SCIx_HSCIF_REGTYPE,
Paul Mundt61a69762011-06-14 12:40:19 +090098
99 SCIx_NR_REGTYPES,
100};
101
Paul Mundt22cc8372011-01-19 14:37:14 +0900102#define SCIx_IRQ_MUXED(irq) \
103{ \
104 [SCIx_ERI_IRQ] = (irq), \
105 [SCIx_RXI_IRQ] = (irq), \
106 [SCIx_TXI_IRQ] = (irq), \
107 [SCIx_BRI_IRQ] = (irq), \
108}
109
Paul Mundt9174fc82011-06-28 15:25:36 +0900110#define SCIx_IRQ_IS_MUXED(port) \
111 ((port)->cfg->irqs[SCIx_ERI_IRQ] == \
112 (port)->cfg->irqs[SCIx_RXI_IRQ]) || \
113 ((port)->cfg->irqs[SCIx_ERI_IRQ] && \
114 !(port)->cfg->irqs[SCIx_RXI_IRQ])
Paul Mundt61a69762011-06-14 12:40:19 +0900115/*
116 * SCI register subset common for all port types.
117 * Not all registers will exist on all parts.
118 */
119enum {
120 SCSMR, SCBRR, SCSCR, SCxSR,
121 SCFCR, SCFDR, SCxTDR, SCxRDR,
122 SCLSR, SCTFDR, SCRFDR, SCSPTR,
Ulrich Hechtf303b362013-05-31 17:57:01 +0200123 HSSRR,
Paul Mundt61a69762011-06-14 12:40:19 +0900124
125 SCIx_NR_REGS,
126};
127
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +0900128struct device;
129
Paul Mundt61a69762011-06-14 12:40:19 +0900130struct plat_sci_port_ops {
131 void (*init_pins)(struct uart_port *, unsigned int cflag);
132};
133
Paul Mundtecd95612006-09-27 17:32:30 +0900134/*
Paul Mundtfaf02f82011-12-02 17:44:50 +0900135 * Port-specific capabilities
136 */
137#define SCIx_HAVE_RTSCTS (1 << 0)
138
139/*
Paul Mundtecd95612006-09-27 17:32:30 +0900140 * Platform device specific platform_data struct
141 */
142struct plat_sci_port {
Paul Mundtecd95612006-09-27 17:32:30 +0900143 unsigned long mapbase; /* resource base */
144 unsigned int irqs[SCIx_NR_IRQS]; /* ERI, RXI, TXI, BRI */
Paul Mundt50f09592011-12-02 20:09:48 +0900145 unsigned int gpios[SCIx_NR_FNS]; /* SCK, RXD, TXD, CTS, RTS */
Ulrich Hechtf303b362013-05-31 17:57:01 +0200146 unsigned int type; /* SCI / SCIF / IRDA / HSCIF */
Paul Mundtecd95612006-09-27 17:32:30 +0900147 upf_t flags; /* UPF_* flags */
Paul Mundtfaf02f82011-12-02 17:44:50 +0900148 unsigned long capabilities; /* Port features/capabilities */
Paul Mundt00b9de92009-06-24 17:53:33 +0900149
Paul Mundt26c92f32009-06-24 18:23:52 +0900150 unsigned int scbrr_algo_id; /* SCBRR calculation algo */
Paul Mundt00b9de92009-06-24 17:53:33 +0900151 unsigned int scscr; /* SCSCR initialization */
Paul Mundtf43dc232011-01-13 15:06:28 +0900152
Paul Mundtdebf9502011-06-08 18:19:37 +0900153 /*
154 * Platform overrides if necessary, defaults otherwise.
155 */
156 int overrun_bit;
157 unsigned int error_mask;
158
Paul Mundt514820e2011-06-08 18:51:32 +0900159 int port_reg;
Paul Mundt61a69762011-06-14 12:40:19 +0900160 unsigned char regshift;
161 unsigned char regtype;
162
163 struct plat_sci_port_ops *ops;
Paul Mundt514820e2011-06-08 18:51:32 +0900164
Paul Mundt27bd1072011-01-19 15:37:31 +0900165 unsigned int dma_slave_tx;
166 unsigned int dma_slave_rx;
Paul Mundtecd95612006-09-27 17:32:30 +0900167};
168
Paul Mundt96de1a82008-02-26 14:52:45 +0900169#endif /* __LINUX_SERIAL_SCI_H */