Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 1 | #include <linux/bitops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #include <linux/serial_core.h> |
Paul Mundt | edad1f2 | 2009-11-25 16:23:35 +0900 | [diff] [blame] | 3 | #include <linux/io.h> |
Magnus Damm | 69edbba | 2008-12-25 18:17:34 +0900 | [diff] [blame] | 4 | #include <linux/gpio.h> |
Markus Brunner | 3ea6bc3 | 2007-08-20 08:59:33 +0900 | [diff] [blame] | 5 | |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 6 | #define SCI_MAJOR 204 |
| 7 | #define SCI_MINOR_START 8 |
| 8 | |
| 9 | |
| 10 | /* |
| 11 | * SCI register subset common for all port types. |
| 12 | * Not all registers will exist on all parts. |
| 13 | */ |
| 14 | enum { |
| 15 | SCSMR, /* Serial Mode Register */ |
| 16 | SCBRR, /* Bit Rate Register */ |
| 17 | SCSCR, /* Serial Control Register */ |
| 18 | SCxSR, /* Serial Status Register */ |
| 19 | SCFCR, /* FIFO Control Register */ |
| 20 | SCFDR, /* FIFO Data Count Register */ |
| 21 | SCxTDR, /* Transmit (FIFO) Data Register */ |
| 22 | SCxRDR, /* Receive (FIFO) Data Register */ |
| 23 | SCLSR, /* Line Status Register */ |
| 24 | SCTFDR, /* Transmit FIFO Data Count Register */ |
| 25 | SCRFDR, /* Receive FIFO Data Count Register */ |
| 26 | SCSPTR, /* Serial Port Register */ |
| 27 | HSSRR, /* Sampling Rate Register */ |
Geert Uytterhoeven | c097abc | 2015-04-30 18:21:27 +0200 | [diff] [blame] | 28 | SCPCR, /* Serial Port Control Register */ |
| 29 | SCPDR, /* Serial Port Data Register */ |
Geert Uytterhoeven | b8bbd6b | 2015-11-12 13:36:06 +0100 | [diff] [blame] | 30 | SCDL, /* BRG Frequency Division Register */ |
| 31 | SCCKS, /* BRG Clock Select Register */ |
Ulrich Hecht | 54e14ae | 2017-02-02 18:10:14 +0100 | [diff] [blame] | 32 | HSRTRGR, /* Rx FIFO Data Count Trigger Register */ |
| 33 | HSTTRGR, /* Tx FIFO Data Count Trigger Register */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 34 | |
| 35 | SCIx_NR_REGS, |
| 36 | }; |
| 37 | |
| 38 | |
| 39 | /* SCSMR (Serial Mode Register) */ |
Geert Uytterhoeven | 95ee05c | 2016-01-04 14:45:18 +0100 | [diff] [blame] | 40 | #define SCSMR_C_A BIT(7) /* Communication Mode */ |
| 41 | #define SCSMR_CSYNC BIT(7) /* - Clocked synchronous mode */ |
| 42 | #define SCSMR_ASYNC 0 /* - Asynchronous mode */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 43 | #define SCSMR_CHR BIT(6) /* 7-bit Character Length */ |
| 44 | #define SCSMR_PE BIT(5) /* Parity Enable */ |
| 45 | #define SCSMR_ODD BIT(4) /* Odd Parity */ |
| 46 | #define SCSMR_STOP BIT(3) /* Stop Bit Length */ |
| 47 | #define SCSMR_CKS 0x0003 /* Clock Select */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 48 | |
Geert Uytterhoeven | 95ee05c | 2016-01-04 14:45:18 +0100 | [diff] [blame] | 49 | /* Serial Mode Register, SCIFA/SCIFB only bits */ |
| 50 | #define SCSMR_CKEDG BIT(12) /* Transmit/Receive Clock Edge Select */ |
| 51 | #define SCSMR_SRC_MASK 0x0700 /* Sampling Control */ |
| 52 | #define SCSMR_SRC_16 0x0000 /* Sampling rate 1/16 */ |
| 53 | #define SCSMR_SRC_5 0x0100 /* Sampling rate 1/5 */ |
| 54 | #define SCSMR_SRC_7 0x0200 /* Sampling rate 1/7 */ |
| 55 | #define SCSMR_SRC_11 0x0300 /* Sampling rate 1/11 */ |
| 56 | #define SCSMR_SRC_13 0x0400 /* Sampling rate 1/13 */ |
| 57 | #define SCSMR_SRC_17 0x0500 /* Sampling rate 1/17 */ |
| 58 | #define SCSMR_SRC_19 0x0600 /* Sampling rate 1/19 */ |
| 59 | #define SCSMR_SRC_27 0x0700 /* Sampling rate 1/27 */ |
| 60 | |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 61 | /* Serial Control Register, SCIFA/SCIFB only bits */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 62 | #define SCSCR_TDRQE BIT(15) /* Tx Data Transfer Request Enable */ |
| 63 | #define SCSCR_RDRQE BIT(14) /* Rx Data Transfer Request Enable */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 64 | |
| 65 | /* SCxSR (Serial Status Register) on SCI */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 66 | #define SCI_TDRE BIT(7) /* Transmit Data Register Empty */ |
| 67 | #define SCI_RDRF BIT(6) /* Receive Data Register Full */ |
| 68 | #define SCI_ORER BIT(5) /* Overrun Error */ |
| 69 | #define SCI_FER BIT(4) /* Framing Error */ |
| 70 | #define SCI_PER BIT(3) /* Parity Error */ |
| 71 | #define SCI_TEND BIT(2) /* Transmit End */ |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame] | 72 | #define SCI_RESERVED 0x03 /* All reserved bits */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 73 | |
| 74 | #define SCI_DEFAULT_ERROR_MASK (SCI_PER | SCI_FER) |
| 75 | |
Geert Uytterhoeven | a9efeca | 2015-08-21 20:02:26 +0200 | [diff] [blame] | 76 | #define SCI_RDxF_CLEAR (u32)(~(SCI_RESERVED | SCI_RDRF)) |
| 77 | #define SCI_ERROR_CLEAR (u32)(~(SCI_RESERVED | SCI_PER | SCI_FER | SCI_ORER)) |
| 78 | #define SCI_TDxE_CLEAR (u32)(~(SCI_RESERVED | SCI_TEND | SCI_TDRE)) |
| 79 | #define SCI_BREAK_CLEAR (u32)(~(SCI_RESERVED | SCI_PER | SCI_FER | SCI_ORER)) |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame] | 80 | |
| 81 | /* SCxSR (Serial Status Register) on SCIF, SCIFA, SCIFB, HSCIF */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 82 | #define SCIF_ER BIT(7) /* Receive Error */ |
| 83 | #define SCIF_TEND BIT(6) /* Transmission End */ |
| 84 | #define SCIF_TDFE BIT(5) /* Transmit FIFO Data Empty */ |
| 85 | #define SCIF_BRK BIT(4) /* Break Detect */ |
| 86 | #define SCIF_FER BIT(3) /* Framing Error */ |
| 87 | #define SCIF_PER BIT(2) /* Parity Error */ |
| 88 | #define SCIF_RDF BIT(1) /* Receive FIFO Data Full */ |
| 89 | #define SCIF_DR BIT(0) /* Receive Data Ready */ |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame] | 90 | /* SCIF only (optional) */ |
| 91 | #define SCIF_PERC 0xf000 /* Number of Parity Errors */ |
| 92 | #define SCIF_FERC 0x0f00 /* Number of Framing Errors */ |
| 93 | /*SCIFA/SCIFB and SCIF on SH7705/SH7720/SH7721 only */ |
| 94 | #define SCIFA_ORER BIT(9) /* Overrun Error */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 95 | |
Geert Uytterhoeven | 2922598 | 2015-04-30 18:21:30 +0200 | [diff] [blame] | 96 | #define SCIF_DEFAULT_ERROR_MASK (SCIF_PER | SCIF_FER | SCIF_BRK | SCIF_ER) |
| 97 | |
Geert Uytterhoeven | a9efeca | 2015-08-21 20:02:26 +0200 | [diff] [blame] | 98 | #define SCIF_RDxF_CLEAR (u32)(~(SCIF_DR | SCIF_RDF)) |
Geert Uytterhoeven | 5da0f46 | 2015-08-21 20:02:27 +0200 | [diff] [blame] | 99 | #define SCIF_ERROR_CLEAR (u32)(~(SCIF_PER | SCIF_FER | SCIF_ER)) |
Geert Uytterhoeven | a9efeca | 2015-08-21 20:02:26 +0200 | [diff] [blame] | 100 | #define SCIF_TDxE_CLEAR (u32)(~(SCIF_TDFE)) |
| 101 | #define SCIF_BREAK_CLEAR (u32)(~(SCIF_PER | SCIF_FER | SCIF_BRK)) |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 102 | |
| 103 | /* SCFCR (FIFO Control Register) */ |
Ulrich Hecht | 54e14ae | 2017-02-02 18:10:14 +0100 | [diff] [blame] | 104 | #define SCFCR_RTRG1 BIT(7) /* Receive FIFO Data Count Trigger */ |
| 105 | #define SCFCR_RTRG0 BIT(6) |
| 106 | #define SCFCR_TTRG1 BIT(5) /* Transmit FIFO Data Count Trigger */ |
| 107 | #define SCFCR_TTRG0 BIT(4) |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 108 | #define SCFCR_MCE BIT(3) /* Modem Control Enable */ |
| 109 | #define SCFCR_TFRST BIT(2) /* Transmit FIFO Data Register Reset */ |
| 110 | #define SCFCR_RFRST BIT(1) /* Receive FIFO Data Register Reset */ |
| 111 | #define SCFCR_LOOP BIT(0) /* Loopback Test */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 112 | |
Geert Uytterhoeven | 75c249f | 2015-04-30 18:21:31 +0200 | [diff] [blame] | 113 | /* SCLSR (Line Status Register) on (H)SCIF */ |
Geert Uytterhoeven | fc2af33 | 2016-06-24 16:59:16 +0200 | [diff] [blame] | 114 | #define SCLSR_TO BIT(2) /* Timeout */ |
Geert Uytterhoeven | 75c249f | 2015-04-30 18:21:31 +0200 | [diff] [blame] | 115 | #define SCLSR_ORER BIT(0) /* Overrun Error */ |
| 116 | |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 117 | /* SCSPTR (Serial Port Register), optional */ |
Geert Uytterhoeven | ef5e90e | 2016-06-03 12:00:06 +0200 | [diff] [blame] | 118 | #define SCSPTR_RTSIO BIT(7) /* Serial Port RTS# Pin Input/Output */ |
| 119 | #define SCSPTR_RTSDT BIT(6) /* Serial Port RTS# Pin Data */ |
| 120 | #define SCSPTR_CTSIO BIT(5) /* Serial Port CTS# Pin Input/Output */ |
| 121 | #define SCSPTR_CTSDT BIT(4) /* Serial Port CTS# Pin Data */ |
| 122 | #define SCSPTR_SCKIO BIT(3) /* Serial Port Clock Pin Input/Output */ |
| 123 | #define SCSPTR_SCKDT BIT(2) /* Serial Port Clock Pin Data */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 124 | #define SCSPTR_SPB2IO BIT(1) /* Serial Port Break Input/Output */ |
| 125 | #define SCSPTR_SPB2DT BIT(0) /* Serial Port Break Data */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 126 | |
| 127 | /* HSSRR HSCIF */ |
Geert Uytterhoeven | d94a0a3 | 2015-04-30 18:21:29 +0200 | [diff] [blame] | 128 | #define HSCIF_SRE BIT(15) /* Sampling Rate Register Enable */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 129 | |
Geert Uytterhoeven | c097abc | 2015-04-30 18:21:27 +0200 | [diff] [blame] | 130 | /* SCPCR (Serial Port Control Register), SCIFA/SCIFB only */ |
Geert Uytterhoeven | 4780c09 | 2016-06-03 12:00:07 +0200 | [diff] [blame] | 131 | #define SCPCR_RTSC BIT(4) /* Serial Port RTS# Pin / Output Pin */ |
| 132 | #define SCPCR_CTSC BIT(3) /* Serial Port CTS# Pin / Input Pin */ |
| 133 | #define SCPCR_SCKC BIT(2) /* Serial Port SCK Pin / Output Pin */ |
| 134 | #define SCPCR_RXDC BIT(1) /* Serial Port RXD Pin / Input Pin */ |
| 135 | #define SCPCR_TXDC BIT(0) /* Serial Port TXD Pin / Output Pin */ |
Geert Uytterhoeven | c097abc | 2015-04-30 18:21:27 +0200 | [diff] [blame] | 136 | |
| 137 | /* SCPDR (Serial Port Data Register), SCIFA/SCIFB only */ |
Geert Uytterhoeven | 4780c09 | 2016-06-03 12:00:07 +0200 | [diff] [blame] | 138 | #define SCPDR_RTSD BIT(4) /* Serial Port RTS# Output Pin Data */ |
| 139 | #define SCPDR_CTSD BIT(3) /* Serial Port CTS# Input Pin Data */ |
| 140 | #define SCPDR_SCKD BIT(2) /* Serial Port SCK Output Pin Data */ |
| 141 | #define SCPDR_RXDD BIT(1) /* Serial Port RXD Input Pin Data */ |
| 142 | #define SCPDR_TXDD BIT(0) /* Serial Port TXD Output Pin Data */ |
Geert Uytterhoeven | c097abc | 2015-04-30 18:21:27 +0200 | [diff] [blame] | 143 | |
Geert Uytterhoeven | b8bbd6b | 2015-11-12 13:36:06 +0100 | [diff] [blame] | 144 | /* |
| 145 | * BRG Clock Select Register (Some SCIF and HSCIF) |
| 146 | * The Baud Rate Generator for external clock can provide a clock source for |
| 147 | * the sampling clock. It outputs either its frequency divided clock, or the |
| 148 | * (undivided) (H)SCK external clock. |
| 149 | */ |
| 150 | #define SCCKS_CKS BIT(15) /* Select (H)SCK (1) or divided SC_CLK (0) */ |
| 151 | #define SCCKS_XIN BIT(14) /* SC_CLK uses bus clock (1) or SCIF_CLK (0) */ |
Geert Uytterhoeven | c27ffc1 | 2015-04-30 18:21:25 +0200 | [diff] [blame] | 152 | |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 153 | #define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND) |
Ulrich Hecht | 88641c7 | 2017-02-02 18:10:15 +0100 | [diff] [blame] | 154 | #define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_DR | SCIF_RDF) |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 155 | #define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE) |
| 156 | #define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER) |
| 157 | #define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER) |
| 158 | #define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK) |
Paul Mundt | debf950 | 2011-06-08 18:19:37 +0900 | [diff] [blame] | 159 | |
Laurent Pinchart | b2f20ed | 2017-01-11 16:43:36 +0200 | [diff] [blame] | 160 | #define SCxSR_ERRORS(port) (to_sci_port(port)->params->error_mask) |
Paul Mundt | 15c73aa | 2008-10-02 19:47:12 +0900 | [diff] [blame] | 161 | |
Geert Uytterhoeven | a1b5b43 | 2015-08-21 20:02:25 +0200 | [diff] [blame] | 162 | #define SCxSR_RDxF_CLEAR(port) \ |
| 163 | (((port)->type == PORT_SCI) ? SCI_RDxF_CLEAR : SCIF_RDxF_CLEAR) |
| 164 | #define SCxSR_ERROR_CLEAR(port) \ |
Laurent Pinchart | b2f20ed | 2017-01-11 16:43:36 +0200 | [diff] [blame] | 165 | (to_sci_port(port)->params->error_clear) |
Geert Uytterhoeven | a1b5b43 | 2015-08-21 20:02:25 +0200 | [diff] [blame] | 166 | #define SCxSR_TDxE_CLEAR(port) \ |
| 167 | (((port)->type == PORT_SCI) ? SCI_TDxE_CLEAR : SCIF_TDxE_CLEAR) |
| 168 | #define SCxSR_BREAK_CLEAR(port) \ |
| 169 | (((port)->type == PORT_SCI) ? SCI_BREAK_CLEAR : SCIF_BREAK_CLEAR) |