blob: 22b3640c9424d60f592388b1698704791f348150 [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/*
Guenter Roeck4b084782013-08-30 06:01:49 -07008 * Generic header for SuperH (H)SCI(F) (used by sh/sh64 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 Mundt00b9de92009-06-24 17:53:33 +090013#define SCSCR_TIE (1 << 7)
14#define SCSCR_RIE (1 << 6)
15#define SCSCR_TE (1 << 5)
16#define SCSCR_RE (1 << 4)
Paul Mundtf43dc232011-01-13 15:06:28 +090017#define SCSCR_REIE (1 << 3) /* not supported by all parts */
Paul Mundt00b9de92009-06-24 17:53:33 +090018#define SCSCR_TOIE (1 << 2) /* not supported by all parts */
19#define SCSCR_CKE1 (1 << 1)
20#define SCSCR_CKE0 (1 << 0)
21
Paul Mundtdebf9502011-06-08 18:19:37 +090022/* SCxSR SCI */
23#define SCI_TDRE 0x80
24#define SCI_RDRF 0x40
25#define SCI_ORER 0x20
26#define SCI_FER 0x10
27#define SCI_PER 0x08
28#define SCI_TEND 0x04
29
30#define SCI_DEFAULT_ERROR_MASK (SCI_PER | SCI_FER)
31
Ulrich Hechtf303b362013-05-31 17:57:01 +020032/* SCxSR SCIF, HSCIF */
Paul Mundtdebf9502011-06-08 18:19:37 +090033#define SCIF_ER 0x0080
34#define SCIF_TEND 0x0040
35#define SCIF_TDFE 0x0020
36#define SCIF_BRK 0x0010
37#define SCIF_FER 0x0008
38#define SCIF_PER 0x0004
39#define SCIF_RDF 0x0002
40#define SCIF_DR 0x0001
41
42#define SCIF_DEFAULT_ERROR_MASK (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
43
Paul Mundtfaf02f82011-12-02 17:44:50 +090044/* SCSPTR, optional */
45#define SCSPTR_RTSIO (1 << 7)
46#define SCSPTR_CTSIO (1 << 5)
Shimoda, Yoshihirobbb4ce52012-04-06 09:59:14 +090047#define SCSPTR_SPB2IO (1 << 1)
48#define SCSPTR_SPB2DT (1 << 0)
Paul Mundtfaf02f82011-12-02 17:44:50 +090049
Ulrich Hechtf303b362013-05-31 17:57:01 +020050/* HSSRR HSCIF */
51#define HSCIF_SRE 0x8000
52
Paul Mundt61a69762011-06-14 12:40:19 +090053enum {
54 SCIx_PROBE_REGTYPE,
55
56 SCIx_SCI_REGTYPE,
57 SCIx_IRDA_REGTYPE,
58 SCIx_SCIFA_REGTYPE,
59 SCIx_SCIFB_REGTYPE,
Phil Edworthy3af1f8a2011-10-03 15:16:47 +010060 SCIx_SH2_SCIF_FIFODATA_REGTYPE,
Paul Mundt61a69762011-06-14 12:40:19 +090061 SCIx_SH3_SCIF_REGTYPE,
62 SCIx_SH4_SCIF_REGTYPE,
63 SCIx_SH4_SCIF_NO_SCSPTR_REGTYPE,
64 SCIx_SH4_SCIF_FIFODATA_REGTYPE,
65 SCIx_SH7705_SCIF_REGTYPE,
Ulrich Hechtf303b362013-05-31 17:57:01 +020066 SCIx_HSCIF_REGTYPE,
Paul Mundt61a69762011-06-14 12:40:19 +090067
68 SCIx_NR_REGTYPES,
69};
70
Paul Mundt61a69762011-06-14 12:40:19 +090071/*
72 * SCI register subset common for all port types.
73 * Not all registers will exist on all parts.
74 */
75enum {
76 SCSMR, SCBRR, SCSCR, SCxSR,
77 SCFCR, SCFDR, SCxTDR, SCxRDR,
78 SCLSR, SCTFDR, SCRFDR, SCSPTR,
Ulrich Hechtf303b362013-05-31 17:57:01 +020079 HSSRR,
Paul Mundt61a69762011-06-14 12:40:19 +090080
81 SCIx_NR_REGS,
82};
83
Guennadi Liakhovetski73a19e42010-03-02 11:39:15 +090084struct device;
85
Paul Mundt61a69762011-06-14 12:40:19 +090086struct plat_sci_port_ops {
87 void (*init_pins)(struct uart_port *, unsigned int cflag);
88};
89
Paul Mundtecd95612006-09-27 17:32:30 +090090/*
Paul Mundtfaf02f82011-12-02 17:44:50 +090091 * Port-specific capabilities
92 */
93#define SCIx_HAVE_RTSCTS (1 << 0)
94
95/*
Paul Mundtecd95612006-09-27 17:32:30 +090096 * Platform device specific platform_data struct
97 */
98struct plat_sci_port {
Ulrich Hechtf303b362013-05-31 17:57:01 +020099 unsigned int type; /* SCI / SCIF / IRDA / HSCIF */
Paul Mundtecd95612006-09-27 17:32:30 +0900100 upf_t flags; /* UPF_* flags */
Paul Mundtfaf02f82011-12-02 17:44:50 +0900101 unsigned long capabilities; /* Port features/capabilities */
Paul Mundt00b9de92009-06-24 17:53:33 +0900102
Laurent Pinchartec09c5e2013-12-06 10:59:20 +0100103 unsigned int sampling_rate;
Paul Mundt00b9de92009-06-24 17:53:33 +0900104 unsigned int scscr; /* SCSCR initialization */
Paul Mundtf43dc232011-01-13 15:06:28 +0900105
Paul Mundtdebf9502011-06-08 18:19:37 +0900106 /*
107 * Platform overrides if necessary, defaults otherwise.
108 */
Paul Mundt514820e2011-06-08 18:51:32 +0900109 int port_reg;
Paul Mundt61a69762011-06-14 12:40:19 +0900110 unsigned char regshift;
111 unsigned char regtype;
112
113 struct plat_sci_port_ops *ops;
Paul Mundt514820e2011-06-08 18:51:32 +0900114
Paul Mundt27bd1072011-01-19 15:37:31 +0900115 unsigned int dma_slave_tx;
116 unsigned int dma_slave_rx;
Paul Mundtecd95612006-09-27 17:32:30 +0900117};
118
Paul Mundt96de1a82008-02-26 14:52:45 +0900119#endif /* __LINUX_SERIAL_SCI_H */