Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copy and modify from linux/drivers/serial/sh-sci.h |
| 3 | */ |
| 4 | |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 5 | #include <dm/platform_data/serial_sh.h> |
| 6 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 7 | struct uart_port { |
| 8 | unsigned long iobase; /* in/out[bwl] */ |
| 9 | unsigned char *membase; /* read/write[bwl] */ |
| 10 | unsigned long mapbase; /* for ioremap */ |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 11 | enum sh_serial_type type; /* port type */ |
| 12 | enum sh_clk_mode clk_mode; /* clock mode */ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 13 | }; |
| 14 | |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 15 | #if defined(CONFIG_CPU_SH7721) || \ |
Hideyuki Sano | d61678e | 2012-06-25 10:29:56 +0900 | [diff] [blame] | 16 | defined(CONFIG_SH73A0) || \ |
| 17 | defined(CONFIG_R8A7740) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 18 | # define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */ |
| 19 | # define PORT_PTCR 0xA405011EUL |
| 20 | # define PORT_PVCR 0xA4050122UL |
| 21 | # define SCIF_ORER 0x0200 /* overrun error bit */ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 22 | #elif defined(CONFIG_CPU_SH7750) || \ |
| 23 | defined(CONFIG_CPU_SH7750R) || \ |
| 24 | defined(CONFIG_CPU_SH7750S) || \ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 25 | defined(CONFIG_CPU_SH7751) || \ |
| 26 | defined(CONFIG_CPU_SH7751R) |
| 27 | # define SCSPTR1 0xffe0001c /* 8 bit SCI */ |
| 28 | # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */ |
| 29 | # define SCIF_ORER 0x0001 /* overrun error bit */ |
| 30 | # define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? \ |
| 31 | 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \ |
| 32 | 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 33 | #elif defined(CONFIG_CPU_SH7722) |
| 34 | # define PADR 0xA4050120 |
Nobuhiro Iwamatsu | 9905706 | 2010-11-24 13:24:33 +0900 | [diff] [blame] | 35 | # undef PSDR |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 36 | # define PSDR 0xA405013e |
| 37 | # define PWDR 0xA4050166 |
| 38 | # define PSCR 0xA405011E |
| 39 | # define SCIF_ORER 0x0001 /* overrun error bit */ |
| 40 | # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 41 | #elif defined(CONFIG_CPU_SH7723) |
| 42 | # define SCSPTR0 0xa4050160 |
| 43 | # define SCSPTR1 0xa405013e |
| 44 | # define SCSPTR2 0xa4050160 |
| 45 | # define SCSPTR3 0xa405013e |
| 46 | # define SCSPTR4 0xa4050128 |
| 47 | # define SCSPTR5 0xa4050128 |
| 48 | # define SCIF_ORER 0x0001 /* overrun error bit */ |
| 49 | # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ |
Nobuhiro Iwamatsu | 2a57e7e | 2012-01-11 10:45:01 +0900 | [diff] [blame] | 50 | #elif defined(CONFIG_CPU_SH7734) |
| 51 | # define SCSPTR0 0xFFE40020 |
| 52 | # define SCSPTR1 0xFFE41020 |
| 53 | # define SCSPTR2 0xFFE42020 |
| 54 | # define SCSPTR3 0xFFE43020 |
| 55 | # define SCSPTR4 0xFFE44020 |
| 56 | # define SCSPTR5 0xFFE45020 |
| 57 | # define SCIF_ORER 0x0001 /* overrun error bit */ |
| 58 | # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ |
Yoshihiro Shimoda | f3bf212 | 2013-12-18 16:04:20 +0900 | [diff] [blame] | 59 | #elif defined(CONFIG_CPU_SH7757) || \ |
| 60 | defined(CONFIG_CPU_SH7752) || \ |
| 61 | defined(CONFIG_CPU_SH7753) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 62 | # define SCSPTR0 0xfe4b0020 |
| 63 | # define SCSPTR1 0xfe4b0020 |
| 64 | # define SCSPTR2 0xfe4b0020 |
| 65 | # define SCIF_ORER 0x0001 |
| 66 | # define SCSCR_INIT(port) 0x38 |
| 67 | # define SCIF_ONLY |
| 68 | #elif defined(CONFIG_CPU_SH7763) |
| 69 | # define SCSPTR0 0xffe00024 /* 16 bit SCIF */ |
| 70 | # define SCSPTR1 0xffe08024 /* 16 bit SCIF */ |
| 71 | # define SCSPTR2 0xffe10020 /* 16 bit SCIF/IRDA */ |
| 72 | # define SCIF_ORER 0x0001 /* overrun error bit */ |
| 73 | # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 74 | #elif defined(CONFIG_CPU_SH7780) |
| 75 | # define SCSPTR0 0xffe00024 /* 16 bit SCIF */ |
| 76 | # define SCSPTR1 0xffe10024 /* 16 bit SCIF */ |
| 77 | # define SCIF_ORER 0x0001 /* Overrun error bit */ |
| 78 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 79 | /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,CKE1=1 */ |
| 80 | # define SCSCR_INIT(port) 0x3a |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 81 | |
Marek Vasut | 7de3ea8 | 2019-05-07 21:52:47 +0200 | [diff] [blame] | 82 | #elif defined(CONFIG_RZA1) |
Phil Edworthy | 99744b7 | 2012-05-15 22:15:51 +0000 | [diff] [blame] | 83 | # define SCSPTR0 0xe8007020 /* 16 bit SCIF */ |
| 84 | # define SCSPTR1 0xe8007820 /* 16 bit SCIF */ |
| 85 | # define SCSPTR2 0xe8008020 /* 16 bit SCIF */ |
| 86 | # define SCSPTR3 0xe8008820 /* 16 bit SCIF */ |
| 87 | # define SCSPTR4 0xe8009020 /* 16 bit SCIF */ |
| 88 | # define SCSPTR5 0xe8009820 /* 16 bit SCIF */ |
| 89 | # define SCSPTR6 0xe800a020 /* 16 bit SCIF */ |
| 90 | # define SCSPTR7 0xe800a820 /* 16 bit SCIF */ |
| 91 | # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ |
Marek Vasut | 67180fe | 2019-05-01 18:20:00 +0200 | [diff] [blame] | 92 | # define SCIF_ORER 0x0001 /* overrun error bit */ |
Chris Brandt | 8591ac8 | 2018-01-16 20:52:18 -0500 | [diff] [blame] | 93 | #elif defined(CONFIG_RCAR_GEN2) || defined(CONFIG_RCAR_GEN3) || \ |
| 94 | defined(CONFIG_R7S72100) |
Vladimir Barinov | 53be7bf | 2015-07-20 20:49:39 +0300 | [diff] [blame] | 95 | # if defined(CONFIG_SCIF_A) |
| 96 | # define SCIF_ORER 0x0200 |
| 97 | # else |
| 98 | # define SCIF_ORER 0x0001 |
| 99 | # endif |
Vladimir Barinov | 2cbb17c | 2015-02-14 01:05:18 +0300 | [diff] [blame] | 100 | # define SCSCR_INIT(port) (port->clk_mode == EXT_CLK ? 0x32 : 0x30) |
| 101 | /* TIE=0,RIE=0,TE=1,RE=1,REIE=0, */ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 102 | #else |
| 103 | # error CPU subtype not defined |
| 104 | #endif |
| 105 | |
| 106 | /* SCSCR */ |
| 107 | #define SCI_CTRL_FLAGS_TIE 0x80 /* all */ |
| 108 | #define SCI_CTRL_FLAGS_RIE 0x40 /* all */ |
| 109 | #define SCI_CTRL_FLAGS_TE 0x20 /* all */ |
| 110 | #define SCI_CTRL_FLAGS_RE 0x10 /* all */ |
| 111 | #if defined(CONFIG_CPU_SH7750) || \ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 112 | defined(CONFIG_CPU_SH7750R) || \ |
| 113 | defined(CONFIG_CPU_SH7722) || \ |
Nobuhiro Iwamatsu | 2a57e7e | 2012-01-11 10:45:01 +0900 | [diff] [blame] | 114 | defined(CONFIG_CPU_SH7734) || \ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 115 | defined(CONFIG_CPU_SH7750S) || \ |
| 116 | defined(CONFIG_CPU_SH7751) || \ |
| 117 | defined(CONFIG_CPU_SH7751R) || \ |
| 118 | defined(CONFIG_CPU_SH7763) || \ |
Marek Vasut | 10e91cf | 2019-05-07 22:31:23 +0200 | [diff] [blame] | 119 | defined(CONFIG_CPU_SH7780) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 120 | #define SCI_CTRL_FLAGS_REIE 0x08 /* 7750 SCIF */ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 121 | #else |
| 122 | #define SCI_CTRL_FLAGS_REIE 0 |
| 123 | #endif |
| 124 | /* SCI_CTRL_FLAGS_MPIE 0x08 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 125 | /* SCI_CTRL_FLAGS_TEIE 0x04 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 126 | /* SCI_CTRL_FLAGS_CKE1 0x02 * all */ |
| 127 | /* SCI_CTRL_FLAGS_CKE0 0x01 * 7707 SCI/SCIF, 7708 SCI, 7709 SCI/SCIF, 7750 SCI */ |
| 128 | |
| 129 | /* SCxSR SCI */ |
| 130 | #define SCI_TDRE 0x80 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 131 | #define SCI_RDRF 0x40 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 132 | #define SCI_ORER 0x20 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 133 | #define SCI_FER 0x10 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 134 | #define SCI_PER 0x08 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 135 | #define SCI_TEND 0x04 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 136 | /* SCI_MPB 0x02 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 137 | /* SCI_MPBT 0x01 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */ |
| 138 | |
| 139 | #define SCI_ERRORS ( SCI_PER | SCI_FER | SCI_ORER) |
| 140 | |
| 141 | /* SCxSR SCIF */ |
| 142 | #define SCIF_ER 0x0080 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */ |
| 143 | #define SCIF_TEND 0x0040 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */ |
| 144 | #define SCIF_TDFE 0x0020 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */ |
| 145 | #define SCIF_BRK 0x0010 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */ |
| 146 | #define SCIF_FER 0x0008 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */ |
| 147 | #define SCIF_PER 0x0004 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */ |
| 148 | #define SCIF_RDF 0x0002 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */ |
| 149 | #define SCIF_DR 0x0001 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */ |
| 150 | |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 151 | #if defined(CONFIG_CPU_SH7721) || \ |
Hideyuki Sano | d61678e | 2012-06-25 10:29:56 +0900 | [diff] [blame] | 152 | defined(CONFIG_SH73A0) || \ |
| 153 | defined(CONFIG_R8A7740) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 154 | # define SCIF_ORER 0x0200 |
| 155 | # define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER) |
| 156 | # define SCIF_RFDC_MASK 0x007f |
| 157 | # define SCIF_TXROOM_MAX 64 |
| 158 | #elif defined(CONFIG_CPU_SH7763) |
| 159 | # define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK) |
| 160 | # define SCIF_RFDC_MASK 0x007f |
| 161 | # define SCIF_TXROOM_MAX 64 |
| 162 | /* SH7763 SCIF2 support */ |
| 163 | # define SCIF2_RFDC_MASK 0x001f |
| 164 | # define SCIF2_TXROOM_MAX 16 |
Marek Vasut | a6e25b2 | 2018-01-22 01:43:25 +0100 | [diff] [blame] | 165 | #elif defined(CONFIG_RCAR_GEN2) |
Nobuhiro Iwamatsu | 48ca882 | 2013-07-23 13:58:20 +0900 | [diff] [blame] | 166 | # define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK) |
Vladimir Barinov | 53be7bf | 2015-07-20 20:49:39 +0300 | [diff] [blame] | 167 | # if defined(CONFIG_SCIF_A) |
| 168 | # define SCIF_RFDC_MASK 0x007f |
| 169 | # else |
| 170 | # define SCIF_RFDC_MASK 0x001f |
| 171 | # endif |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 172 | #else |
| 173 | # define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK) |
| 174 | # define SCIF_RFDC_MASK 0x001f |
| 175 | # define SCIF_TXROOM_MAX 16 |
| 176 | #endif |
| 177 | |
| 178 | #ifndef SCIF_ORER |
| 179 | #define SCIF_ORER 0x0000 |
| 180 | #endif |
| 181 | |
| 182 | #define SCxSR_TEND(port)\ |
| 183 | (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND) |
| 184 | #define SCxSR_ERRORS(port)\ |
| 185 | (((port)->type == PORT_SCI) ? SCI_ERRORS : SCIF_ERRORS) |
| 186 | #define SCxSR_RDxF(port)\ |
| 187 | (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF) |
| 188 | #define SCxSR_TDxE(port)\ |
| 189 | (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE) |
| 190 | #define SCxSR_FER(port)\ |
| 191 | (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER) |
| 192 | #define SCxSR_PER(port)\ |
| 193 | (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER) |
| 194 | #define SCxSR_BRK(port)\ |
| 195 | ((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK) |
| 196 | #define SCxSR_ORER(port)\ |
| 197 | (((port)->type == PORT_SCI) ? SCI_ORER : SCIF_ORER) |
| 198 | |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 199 | #if defined(CONFIG_CPU_SH7721) || \ |
Hideyuki Sano | d61678e | 2012-06-25 10:29:56 +0900 | [diff] [blame] | 200 | defined(CONFIG_SH73A0) || \ |
| 201 | defined(CONFIG_R8A7740) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 202 | # define SCxSR_RDxF_CLEAR(port) (sci_in(port, SCxSR) & 0xfffc) |
| 203 | # define SCxSR_ERROR_CLEAR(port) (sci_in(port, SCxSR) & 0xfd73) |
| 204 | # define SCxSR_TDxE_CLEAR(port) (sci_in(port, SCxSR) & 0xffdf) |
| 205 | # define SCxSR_BREAK_CLEAR(port) (sci_in(port, SCxSR) & 0xffe3) |
| 206 | #else |
| 207 | # define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc) |
| 208 | # define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073) |
| 209 | # define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df) |
| 210 | # define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3) |
| 211 | #endif |
| 212 | |
| 213 | /* SCFCR */ |
| 214 | #define SCFCR_RFRST 0x0002 |
| 215 | #define SCFCR_TFRST 0x0004 |
| 216 | #define SCFCR_TCRST 0x4000 |
| 217 | #define SCFCR_MCE 0x0008 |
| 218 | |
| 219 | #define SCI_MAJOR 204 |
| 220 | #define SCI_MINOR_START 8 |
| 221 | |
| 222 | /* Generic serial flags */ |
| 223 | #define SCI_RX_THROTTLE 0x0000001 |
| 224 | |
| 225 | #define SCI_MAGIC 0xbabeface |
| 226 | |
| 227 | /* |
| 228 | * Events are used to schedule things to happen at timer-interrupt |
| 229 | * time, instead of at rs interrupt time. |
| 230 | */ |
| 231 | #define SCI_EVENT_WRITE_WAKEUP 0 |
| 232 | |
| 233 | #define SCI_IN(size, offset)\ |
| 234 | if ((size) == 8) {\ |
| 235 | return readb(port->membase + (offset));\ |
| 236 | } else {\ |
| 237 | return readw(port->membase + (offset));\ |
| 238 | } |
| 239 | #define SCI_OUT(size, offset, value)\ |
| 240 | if ((size) == 8) {\ |
| 241 | writeb(value, port->membase + (offset));\ |
| 242 | } else if ((size) == 16) {\ |
| 243 | writew(value, port->membase + (offset));\ |
| 244 | } |
| 245 | |
| 246 | #define CPU_SCIx_FNS(name, sci_offset, sci_size, scif_offset, scif_size)\ |
| 247 | static inline unsigned int sci_##name##_in(struct uart_port *port) {\ |
| 248 | if (port->type == PORT_SCIF || port->type == PORT_SCIFB) {\ |
| 249 | SCI_IN(scif_size, scif_offset)\ |
| 250 | } else { /* PORT_SCI or PORT_SCIFA */\ |
| 251 | SCI_IN(sci_size, sci_offset);\ |
| 252 | }\ |
| 253 | }\ |
| 254 | static inline void sci_##name##_out(struct uart_port *port,\ |
| 255 | unsigned int value) {\ |
| 256 | if (port->type == PORT_SCIF || port->type == PORT_SCIFB) {\ |
| 257 | SCI_OUT(scif_size, scif_offset, value)\ |
| 258 | } else { /* PORT_SCI or PORT_SCIFA */\ |
| 259 | SCI_OUT(sci_size, sci_offset, value);\ |
| 260 | }\ |
| 261 | } |
| 262 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 263 | #define CPU_SCIF_FNS(name, scif_offset, scif_size) \ |
| 264 | static inline unsigned int sci_##name##_in(struct uart_port *port) {\ |
| 265 | SCI_IN(scif_size, scif_offset);\ |
| 266 | }\ |
| 267 | static inline void sci_##name##_out(struct uart_port *port,\ |
| 268 | unsigned int value) {\ |
| 269 | SCI_OUT(scif_size, scif_offset, value);\ |
| 270 | } |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 271 | |
| 272 | #define CPU_SCI_FNS(name, sci_offset, sci_size)\ |
| 273 | static inline unsigned int sci_##name##_in(struct uart_port *port) {\ |
| 274 | SCI_IN(sci_size, sci_offset);\ |
| 275 | }\ |
| 276 | static inline void sci_##name##_out(struct uart_port *port,\ |
| 277 | unsigned int value) {\ |
| 278 | SCI_OUT(sci_size, sci_offset, value);\ |
| 279 | } |
| 280 | |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 281 | #if defined(CONFIG_SH73A0) || \ |
Hideyuki Sano | d61678e | 2012-06-25 10:29:56 +0900 | [diff] [blame] | 282 | defined(CONFIG_R8A7740) |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 283 | #if defined(CONFIG_CPU_SH7721) || \ |
Nobuhiro Iwamatsu | c3d6a35 | 2012-06-21 13:21:32 +0900 | [diff] [blame] | 284 | defined(CONFIG_SH73A0) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 285 | #define SCIF_FNS(name, scif_offset, scif_size) \ |
| 286 | CPU_SCIF_FNS(name, scif_offset, scif_size) |
Marek Vasut | 10e91cf | 2019-05-07 22:31:23 +0200 | [diff] [blame] | 287 | #elif defined(CONFIG_R8A7740) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 288 | #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\ |
| 289 | sh4_scifb_offset, sh4_scifb_size) \ |
| 290 | CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\ |
| 291 | sh4_scifb_offset, sh4_scifb_size) |
| 292 | #define SCIF_FNS(name, scif_offset, scif_size) \ |
| 293 | CPU_SCIF_FNS(name, scif_offset, scif_size) |
| 294 | #else |
| 295 | #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\ |
| 296 | sh4_sci_offset, sh4_sci_size, \ |
| 297 | sh3_scif_offset, sh3_scif_size,\ |
| 298 | sh4_scif_offset, sh4_scif_size, \ |
| 299 | h8_sci_offset, h8_sci_size) \ |
| 300 | CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\ |
| 301 | sh3_scif_offset, sh3_scif_size) |
| 302 | #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\ |
| 303 | sh4_scif_offset, sh4_scif_size) \ |
| 304 | CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size) |
| 305 | #endif |
Marek Vasut | d13a614 | 2019-05-04 13:31:06 +0200 | [diff] [blame] | 306 | #elif defined(CONFIG_CPU_SH7723) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 307 | #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\ |
| 308 | sh4_scif_offset, sh4_scif_size) \ |
| 309 | CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\ |
| 310 | sh4_scif_offset, sh4_scif_size) |
| 311 | #define SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) \ |
| 312 | CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) |
| 313 | #else |
| 314 | #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\ |
| 315 | sh4_sci_offset, sh4_sci_size, \ |
| 316 | sh3_scif_offset, sh3_scif_size,\ |
| 317 | sh4_scif_offset, sh4_scif_size, \ |
| 318 | h8_sci_offset, h8_sci_size) \ |
| 319 | CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size,\ |
| 320 | sh4_scif_offset, sh4_scif_size) |
| 321 | #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, \ |
| 322 | sh4_scif_offset, sh4_scif_size) \ |
| 323 | CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) |
| 324 | #endif |
| 325 | |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 326 | #if defined(CONFIG_CPU_SH7721) || \ |
Nobuhiro Iwamatsu | c3d6a35 | 2012-06-21 13:21:32 +0900 | [diff] [blame] | 327 | defined(CONFIG_SH73A0) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 328 | |
| 329 | SCIF_FNS(SCSMR, 0x00, 16) |
| 330 | SCIF_FNS(SCBRR, 0x04, 8) |
| 331 | SCIF_FNS(SCSCR, 0x08, 16) |
| 332 | SCIF_FNS(SCTDSR, 0x0c, 8) |
| 333 | SCIF_FNS(SCFER, 0x10, 16) |
| 334 | SCIF_FNS(SCxSR, 0x14, 16) |
| 335 | SCIF_FNS(SCFCR, 0x18, 16) |
| 336 | SCIF_FNS(SCFDR, 0x1c, 16) |
| 337 | SCIF_FNS(SCxTDR, 0x20, 8) |
| 338 | SCIF_FNS(SCxRDR, 0x24, 8) |
| 339 | SCIF_FNS(SCLSR, 0x00, 0) |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 340 | SCIF_FNS(DL, 0x00, 0) /* dummy */ |
Marek Vasut | 10e91cf | 2019-05-07 22:31:23 +0200 | [diff] [blame] | 341 | #elif defined(CONFIG_R8A7740) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 342 | SCIF_FNS(SCSMR, 0x00, 16) |
| 343 | SCIF_FNS(SCBRR, 0x04, 8) |
| 344 | SCIF_FNS(SCSCR, 0x08, 16) |
| 345 | SCIF_FNS(SCTDSR, 0x0c, 16) |
| 346 | SCIF_FNS(SCFER, 0x10, 16) |
| 347 | SCIF_FNS(SCxSR, 0x14, 16) |
| 348 | SCIF_FNS(SCFCR, 0x18, 16) |
| 349 | SCIF_FNS(SCFDR, 0x1c, 16) |
| 350 | SCIF_FNS(SCTFDR, 0x38, 16) |
| 351 | SCIF_FNS(SCRFDR, 0x3c, 16) |
| 352 | SCIx_FNS(SCxTDR, 0x20, 8, 0x40, 8) |
| 353 | SCIx_FNS(SCxRDR, 0x24, 8, 0x60, 8) |
| 354 | SCIF_FNS(SCLSR, 0x00, 0) |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 355 | SCIF_FNS(DL, 0x00, 0) /* dummy */ |
Marek Vasut | d13a614 | 2019-05-04 13:31:06 +0200 | [diff] [blame] | 356 | #elif defined(CONFIG_CPU_SH7723) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 357 | SCIx_FNS(SCSMR, 0x00, 16, 0x00, 16) |
| 358 | SCIx_FNS(SCBRR, 0x04, 8, 0x04, 8) |
| 359 | SCIx_FNS(SCSCR, 0x08, 16, 0x08, 16) |
| 360 | SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8) |
| 361 | SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16) |
| 362 | SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8) |
| 363 | SCIx_FNS(SCSPTR, 0, 0, 0, 0) |
| 364 | SCIF_FNS(SCTDSR, 0x0c, 8) |
| 365 | SCIF_FNS(SCFER, 0x10, 16) |
| 366 | SCIF_FNS(SCFCR, 0x18, 16) |
| 367 | SCIF_FNS(SCFDR, 0x1c, 16) |
| 368 | SCIF_FNS(SCLSR, 0x24, 16) |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 369 | SCIF_FNS(DL, 0x00, 0) /* dummy */ |
Marek Vasut | a6e25b2 | 2018-01-22 01:43:25 +0100 | [diff] [blame] | 370 | #elif defined(CONFIG_RCAR_GEN2) |
Vladimir Barinov | 53be7bf | 2015-07-20 20:49:39 +0300 | [diff] [blame] | 371 | /* SCIFA and SCIF register offsets and size */ |
| 372 | SCIx_FNS(SCSMR, 0, 0, 0x00, 16, 0, 0, 0x00, 16, 0, 0) |
| 373 | SCIx_FNS(SCBRR, 0, 0, 0x04, 8, 0, 0, 0x04, 8, 0, 0) |
| 374 | SCIx_FNS(SCSCR, 0, 0, 0x08, 16, 0, 0, 0x08, 16, 0, 0) |
| 375 | SCIx_FNS(SCxTDR, 0, 0, 0x20, 8, 0, 0, 0x0C, 8, 0, 0) |
| 376 | SCIx_FNS(SCxSR, 0, 0, 0x14, 16, 0, 0, 0x10, 16, 0, 0) |
| 377 | SCIx_FNS(SCxRDR, 0, 0, 0x24, 8, 0, 0, 0x14, 8, 0, 0) |
| 378 | SCIF_FNS(SCFCR, 0, 0, 0x18, 16) |
| 379 | SCIF_FNS(SCFDR, 0, 0, 0x1C, 16) |
| 380 | SCIF_FNS(SCSPTR, 0, 0, 0x20, 16) |
| 381 | SCIF_FNS(DL, 0, 0, 0x30, 16) |
| 382 | SCIF_FNS(CKS, 0, 0, 0x34, 16) |
| 383 | #if defined(CONFIG_SCIF_A) |
| 384 | SCIF_FNS(SCLSR, 0, 0, 0x14, 16) |
| 385 | #else |
| 386 | SCIF_FNS(SCLSR, 0, 0, 0x24, 16) |
| 387 | #endif |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 388 | #else |
| 389 | /* reg SCI/SH3 SCI/SH4 SCIF/SH3 SCIF/SH4 SCI/H8*/ |
| 390 | /* name off sz off sz off sz off sz off sz*/ |
| 391 | SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16, 0x00, 8) |
| 392 | SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8, 0x01, 8) |
| 393 | SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16, 0x02, 8) |
| 394 | SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8, 0x03, 8) |
| 395 | SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16, 0x04, 8) |
| 396 | SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8, 0x05, 8) |
| 397 | SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16) |
Marek Vasut | 10e91cf | 2019-05-07 22:31:23 +0200 | [diff] [blame] | 398 | #if defined(CONFIG_CPU_SH7780) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 399 | SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16) |
| 400 | SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16) |
| 401 | SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16) |
| 402 | SCIF_FNS(SCSPTR, 0, 0, 0x24, 16) |
| 403 | SCIF_FNS(SCLSR, 0, 0, 0x28, 16) |
| 404 | #elif defined(CONFIG_CPU_SH7763) |
| 405 | SCIF_FNS(SCFDR, 0, 0, 0x1C, 16) |
| 406 | SCIF_FNS(SCSPTR2, 0, 0, 0x20, 16) |
| 407 | SCIF_FNS(SCLSR2, 0, 0, 0x24, 16) |
| 408 | SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16) |
| 409 | SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16) |
| 410 | SCIF_FNS(SCSPTR, 0, 0, 0x24, 16) |
| 411 | SCIF_FNS(SCLSR, 0, 0, 0x28, 16) |
| 412 | #else |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 413 | |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 414 | SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16) |
| 415 | #if defined(CONFIG_CPU_SH7722) |
| 416 | SCIF_FNS(SCSPTR, 0, 0, 0, 0) |
| 417 | #else |
| 418 | SCIF_FNS(SCSPTR, 0, 0, 0x20, 16) |
| 419 | #endif |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 420 | SCIF_FNS(SCLSR, 0, 0, 0x24, 16) |
| 421 | #endif |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 422 | SCIF_FNS(DL, 0, 0, 0x0, 0) /* dummy */ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 423 | #endif |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 424 | #define sci_in(port, reg) sci_##reg##_in(port) |
| 425 | #define sci_out(port, reg, value) sci_##reg##_out(port, value) |
| 426 | |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 427 | #if defined(CONFIG_CPU_SH7750) || \ |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 428 | defined(CONFIG_CPU_SH7751) || \ |
| 429 | defined(CONFIG_CPU_SH7751R) || \ |
| 430 | defined(CONFIG_CPU_SH7750R) || \ |
Marek Vasut | 10e91cf | 2019-05-07 22:31:23 +0200 | [diff] [blame] | 431 | defined(CONFIG_CPU_SH7750S) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 432 | static inline int sci_rxd_in(struct uart_port *port) |
| 433 | { |
| 434 | if (port->mapbase == 0xffe00000) |
| 435 | return __raw_readb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */ |
| 436 | return 1; |
| 437 | } |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 438 | #else /* default case for non-SCI processors */ |
| 439 | static inline int sci_rxd_in(struct uart_port *port) |
| 440 | { |
| 441 | return 1; |
| 442 | } |
| 443 | #endif |
| 444 | |
| 445 | /* |
| 446 | * Values for the BitRate Register (SCBRR) |
| 447 | * |
| 448 | * The values are actually divisors for a frequency which can |
| 449 | * be internal to the SH3 (14.7456MHz) or derived from an external |
| 450 | * clock source. This driver assumes the internal clock is used; |
| 451 | * to support using an external clock source, config options or |
| 452 | * possibly command-line options would need to be added. |
| 453 | * |
| 454 | * Also, to support speeds below 2400 (why?) the lower 2 bits of |
| 455 | * the SCSMR register would also need to be set to non-zero values. |
| 456 | * |
| 457 | * -- Greg Banks 27Feb2000 |
| 458 | * |
| 459 | * Answer: The SCBRR register is only eight bits, and the value in |
| 460 | * it gets larger with lower baud rates. At around 2400 (depending on |
| 461 | * the peripherial module clock) you run out of bits. However the |
| 462 | * lower two bits of SCSMR allow the module clock to be divided down, |
| 463 | * scaling the value which is needed in SCBRR. |
| 464 | * |
| 465 | * -- Stuart Menefy - 23 May 2000 |
| 466 | * |
| 467 | * I meant, why would anyone bother with bitrates below 2400. |
| 468 | * |
| 469 | * -- Greg Banks - 7Jul2000 |
| 470 | * |
| 471 | * You "speedist"! How will I use my 110bps ASR-33 teletype with paper |
| 472 | * tape reader as a console! |
| 473 | * |
| 474 | * -- Mitch Davis - 15 Jul 2000 |
| 475 | */ |
| 476 | |
Marek Vasut | 10e91cf | 2019-05-07 22:31:23 +0200 | [diff] [blame] | 477 | #if defined(CONFIG_CPU_SH7780) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 478 | #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1) |
Marek Vasut | d0487da | 2019-05-07 22:04:05 +0200 | [diff] [blame] | 479 | #elif defined(CONFIG_CPU_SH7721) || \ |
Hideyuki Sano | d61678e | 2012-06-25 10:29:56 +0900 | [diff] [blame] | 480 | defined(CONFIG_SH73A0) || \ |
| 481 | defined(CONFIG_R8A7740) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 482 | #define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1) |
Marek Vasut | d13a614 | 2019-05-04 13:31:06 +0200 | [diff] [blame] | 483 | #elif defined(CONFIG_CPU_SH7723) |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 484 | static inline int scbrr_calc(struct uart_port *port, int bps, int clk) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 485 | { |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 486 | if (port->type == PORT_SCIF) |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 487 | return (clk+16*bps)/(32*bps)-1; |
| 488 | else |
| 489 | return ((clk*2)+16*bps)/(16*bps)-1; |
| 490 | } |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 491 | #define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk) |
Marek Vasut | a6e25b2 | 2018-01-22 01:43:25 +0100 | [diff] [blame] | 492 | #elif defined(CONFIG_RCAR_GEN2) |
Nobuhiro Iwamatsu | 53022c3 | 2014-07-28 15:07:44 +0900 | [diff] [blame] | 493 | #define DL_VALUE(bps, clk) (clk / bps / 16) /* External Clock */ |
Vladimir Barinov | 53be7bf | 2015-07-20 20:49:39 +0300 | [diff] [blame] | 494 | #if defined(CONFIG_SCIF_A) |
| 495 | #define SCBRR_VALUE(bps, clk) (clk / bps / 16 - 1) /* Internal Clock */ |
| 496 | #else |
| 497 | #define SCBRR_VALUE(bps, clk) (clk / bps / 32 - 1) /* Internal Clock */ |
| 498 | #endif |
Nobuhiro Iwamatsu | 3f6c8e3 | 2010-10-26 03:55:15 +0900 | [diff] [blame] | 499 | #else /* Generic SH */ |
| 500 | #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1) |
| 501 | #endif |
Nobuhiro Iwamatsu | 59088e4 | 2015-02-12 13:48:04 +0900 | [diff] [blame] | 502 | |
| 503 | #ifndef DL_VALUE |
| 504 | #define DL_VALUE(bps, clk) 0 |
| 505 | #endif |