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