Paul Mundt | 96de1a8 | 2008-02-26 14:52:45 +0900 | [diff] [blame] | 1 | #ifndef __LINUX_SERIAL_SCI_H |
| 2 | #define __LINUX_SERIAL_SCI_H |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 3 | |
| 4 | #include <linux/serial_core.h> |
Paul Mundt | 14baf9d | 2010-05-24 16:31:08 +0900 | [diff] [blame] | 5 | #include <linux/sh_dma.h> |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 6 | |
| 7 | /* |
Guenter Roeck | 4b08478 | 2013-08-30 06:01:49 -0700 | [diff] [blame] | 8 | * Generic header for SuperH (H)SCI(F) (used by sh/sh64 and related parts) |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 9 | */ |
| 10 | |
Paul Mundt | debf950 | 2011-06-08 18:19:37 +0900 | [diff] [blame] | 11 | #define SCIx_NOT_SUPPORTED (-1) |
| 12 | |
Paul Mundt | 00b9de9 | 2009-06-24 17:53:33 +0900 | [diff] [blame] | 13 | #define SCSCR_TIE (1 << 7) |
| 14 | #define SCSCR_RIE (1 << 6) |
| 15 | #define SCSCR_TE (1 << 5) |
| 16 | #define SCSCR_RE (1 << 4) |
Paul Mundt | f43dc23 | 2011-01-13 15:06:28 +0900 | [diff] [blame] | 17 | #define SCSCR_REIE (1 << 3) /* not supported by all parts */ |
Paul Mundt | 00b9de9 | 2009-06-24 17:53:33 +0900 | [diff] [blame] | 18 | #define SCSCR_TOIE (1 << 2) /* not supported by all parts */ |
| 19 | #define SCSCR_CKE1 (1 << 1) |
| 20 | #define SCSCR_CKE0 (1 << 0) |
| 21 | |
Paul Mundt | debf950 | 2011-06-08 18:19:37 +0900 | [diff] [blame] | 22 | /* 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 Hecht | f303b36 | 2013-05-31 17:57:01 +0200 | [diff] [blame] | 32 | /* SCxSR SCIF, HSCIF */ |
Paul Mundt | debf950 | 2011-06-08 18:19:37 +0900 | [diff] [blame] | 33 | #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 Mundt | faf02f8 | 2011-12-02 17:44:50 +0900 | [diff] [blame] | 44 | /* SCSPTR, optional */ |
| 45 | #define SCSPTR_RTSIO (1 << 7) |
| 46 | #define SCSPTR_CTSIO (1 << 5) |
Shimoda, Yoshihiro | bbb4ce5 | 2012-04-06 09:59:14 +0900 | [diff] [blame] | 47 | #define SCSPTR_SPB2IO (1 << 1) |
| 48 | #define SCSPTR_SPB2DT (1 << 0) |
Paul Mundt | faf02f8 | 2011-12-02 17:44:50 +0900 | [diff] [blame] | 49 | |
Ulrich Hecht | f303b36 | 2013-05-31 17:57:01 +0200 | [diff] [blame] | 50 | /* HSSRR HSCIF */ |
| 51 | #define HSCIF_SRE 0x8000 |
| 52 | |
Paul Mundt | 61a6976 | 2011-06-14 12:40:19 +0900 | [diff] [blame] | 53 | enum { |
| 54 | SCIx_PROBE_REGTYPE, |
| 55 | |
| 56 | SCIx_SCI_REGTYPE, |
| 57 | SCIx_IRDA_REGTYPE, |
| 58 | SCIx_SCIFA_REGTYPE, |
| 59 | SCIx_SCIFB_REGTYPE, |
Phil Edworthy | 3af1f8a | 2011-10-03 15:16:47 +0100 | [diff] [blame] | 60 | SCIx_SH2_SCIF_FIFODATA_REGTYPE, |
Paul Mundt | 61a6976 | 2011-06-14 12:40:19 +0900 | [diff] [blame] | 61 | 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 Hecht | f303b36 | 2013-05-31 17:57:01 +0200 | [diff] [blame] | 66 | SCIx_HSCIF_REGTYPE, |
Paul Mundt | 61a6976 | 2011-06-14 12:40:19 +0900 | [diff] [blame] | 67 | |
| 68 | SCIx_NR_REGTYPES, |
| 69 | }; |
| 70 | |
Paul Mundt | 61a6976 | 2011-06-14 12:40:19 +0900 | [diff] [blame] | 71 | /* |
| 72 | * SCI register subset common for all port types. |
| 73 | * Not all registers will exist on all parts. |
| 74 | */ |
| 75 | enum { |
| 76 | SCSMR, SCBRR, SCSCR, SCxSR, |
| 77 | SCFCR, SCFDR, SCxTDR, SCxRDR, |
| 78 | SCLSR, SCTFDR, SCRFDR, SCSPTR, |
Ulrich Hecht | f303b36 | 2013-05-31 17:57:01 +0200 | [diff] [blame] | 79 | HSSRR, |
Paul Mundt | 61a6976 | 2011-06-14 12:40:19 +0900 | [diff] [blame] | 80 | |
| 81 | SCIx_NR_REGS, |
| 82 | }; |
| 83 | |
Guennadi Liakhovetski | 73a19e4 | 2010-03-02 11:39:15 +0900 | [diff] [blame] | 84 | struct device; |
| 85 | |
Paul Mundt | 61a6976 | 2011-06-14 12:40:19 +0900 | [diff] [blame] | 86 | struct plat_sci_port_ops { |
| 87 | void (*init_pins)(struct uart_port *, unsigned int cflag); |
| 88 | }; |
| 89 | |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 90 | /* |
Paul Mundt | faf02f8 | 2011-12-02 17:44:50 +0900 | [diff] [blame] | 91 | * Port-specific capabilities |
| 92 | */ |
| 93 | #define SCIx_HAVE_RTSCTS (1 << 0) |
| 94 | |
| 95 | /* |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 96 | * Platform device specific platform_data struct |
| 97 | */ |
| 98 | struct plat_sci_port { |
Ulrich Hecht | f303b36 | 2013-05-31 17:57:01 +0200 | [diff] [blame] | 99 | unsigned int type; /* SCI / SCIF / IRDA / HSCIF */ |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 100 | upf_t flags; /* UPF_* flags */ |
Paul Mundt | faf02f8 | 2011-12-02 17:44:50 +0900 | [diff] [blame] | 101 | unsigned long capabilities; /* Port features/capabilities */ |
Paul Mundt | 00b9de9 | 2009-06-24 17:53:33 +0900 | [diff] [blame] | 102 | |
Laurent Pinchart | ec09c5e | 2013-12-06 10:59:20 +0100 | [diff] [blame] | 103 | unsigned int sampling_rate; |
Paul Mundt | 00b9de9 | 2009-06-24 17:53:33 +0900 | [diff] [blame] | 104 | unsigned int scscr; /* SCSCR initialization */ |
Paul Mundt | f43dc23 | 2011-01-13 15:06:28 +0900 | [diff] [blame] | 105 | |
Paul Mundt | debf950 | 2011-06-08 18:19:37 +0900 | [diff] [blame] | 106 | /* |
| 107 | * Platform overrides if necessary, defaults otherwise. |
| 108 | */ |
Paul Mundt | 514820e | 2011-06-08 18:51:32 +0900 | [diff] [blame] | 109 | int port_reg; |
Paul Mundt | 61a6976 | 2011-06-14 12:40:19 +0900 | [diff] [blame] | 110 | unsigned char regshift; |
| 111 | unsigned char regtype; |
| 112 | |
| 113 | struct plat_sci_port_ops *ops; |
Paul Mundt | 514820e | 2011-06-08 18:51:32 +0900 | [diff] [blame] | 114 | |
Paul Mundt | 27bd107 | 2011-01-19 15:37:31 +0900 | [diff] [blame] | 115 | unsigned int dma_slave_tx; |
| 116 | unsigned int dma_slave_rx; |
Paul Mundt | ecd9561 | 2006-09-27 17:32:30 +0900 | [diff] [blame] | 117 | }; |
| 118 | |
Paul Mundt | 96de1a8 | 2008-02-26 14:52:45 +0900 | [diff] [blame] | 119 | #endif /* __LINUX_SERIAL_SCI_H */ |