blob: 660aaab66388200ebc50ea777c6018a5d30a7a82 [file] [log] [blame]
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +09001/*
2 * Copy and modify from linux/drivers/serial/sh-sci.h
3 */
4
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +09005#include <dm/platform_data/serial_sh.h>
6
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +09007struct uart_port {
8 unsigned long iobase; /* in/out[bwl] */
9 unsigned char *membase; /* read/write[bwl] */
10 unsigned long mapbase; /* for ioremap */
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090011 enum sh_serial_type type; /* port type */
12 enum sh_clk_mode clk_mode; /* clock mode */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090013};
14
Marek Vasuta1a61d62019-05-07 22:04:05 +020015#if defined(CONFIG_CPU_SH7721) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +090016 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090017# 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 Iwamatsua5579ca2010-10-26 03:55:15 +090021#elif defined(CONFIG_CPU_SH7750) || \
22 defined(CONFIG_CPU_SH7750R) || \
23 defined(CONFIG_CPU_SH7750S) || \
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090024 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 Iwamatsua5579ca2010-10-26 03:55:15 +090032#elif defined(CONFIG_CPU_SH7722)
33# define PADR 0xA4050120
Nobuhiro Iwamatsu4df4ed62010-11-24 13:24:33 +090034# undef PSDR
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090035# 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 Iwamatsua5579ca2010-10-26 03:55:15 +090040#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 Iwamatsu73bbe6d2012-01-11 10:45:01 +090049#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 Shimodab94d0f62013-12-18 16:04:20 +090058#elif defined(CONFIG_CPU_SH7757) || \
59 defined(CONFIG_CPU_SH7752) || \
60 defined(CONFIG_CPU_SH7753)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090061# 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 Iwamatsua5579ca2010-10-26 03:55:15 +090073#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 Iwamatsua5579ca2010-10-26 03:55:15 +090078/* TIE=0,RIE=0,TE=1,RE=1,REIE=1,CKE1=1 */
79# define SCSCR_INIT(port) 0x3a
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090080
Marek Vasut5b54a942019-05-07 21:52:47 +020081#elif defined(CONFIG_RZA1)
Phil Edworthy04a62752012-05-15 22:15:51 +000082# 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 Vasut2d2e3ff2019-05-01 18:20:00 +020091# define SCIF_ORER 0x0001 /* overrun error bit */
Chris Brandt3603e502018-01-16 20:52:18 -050092#elif defined(CONFIG_RCAR_GEN2) || defined(CONFIG_RCAR_GEN3) || \
93 defined(CONFIG_R7S72100)
Tom Rini31b8b4d2022-12-04 10:13:43 -050094# if defined(CFG_SCIF_A)
Vladimir Barinov3ed0b622015-07-20 20:49:39 +030095# define SCIF_ORER 0x0200
96# else
97# define SCIF_ORER 0x0001
98# endif
Vladimir Barinov51d3b402015-02-14 01:05:18 +030099# define SCSCR_INIT(port) (port->clk_mode == EXT_CLK ? 0x32 : 0x30)
100 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0, */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900101#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 Iwamatsua5579ca2010-10-26 03:55:15 +0900111 defined(CONFIG_CPU_SH7750R) || \
112 defined(CONFIG_CPU_SH7722) || \
Nobuhiro Iwamatsu73bbe6d2012-01-11 10:45:01 +0900113 defined(CONFIG_CPU_SH7734) || \
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900114 defined(CONFIG_CPU_SH7750S) || \
115 defined(CONFIG_CPU_SH7751) || \
116 defined(CONFIG_CPU_SH7751R) || \
117 defined(CONFIG_CPU_SH7763) || \
Marek Vasut39df77a2019-05-07 22:31:23 +0200118 defined(CONFIG_CPU_SH7780)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900119#define SCI_CTRL_FLAGS_REIE 0x08 /* 7750 SCIF */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900120#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 Vasuta1a61d62019-05-07 22:04:05 +0200150#if defined(CONFIG_CPU_SH7721) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900151 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900152# 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 Vasutaa329a82018-01-22 01:43:25 +0100163#elif defined(CONFIG_RCAR_GEN2)
Nobuhiro Iwamatsu788b73f2013-07-23 13:58:20 +0900164# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
Tom Rini31b8b4d2022-12-04 10:13:43 -0500165# if defined(CFG_SCIF_A)
Vladimir Barinov3ed0b622015-07-20 20:49:39 +0300166# define SCIF_RFDC_MASK 0x007f
167# else
168# define SCIF_RFDC_MASK 0x001f
169# endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900170#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 Vasuta1a61d62019-05-07 22:04:05 +0200197#if defined(CONFIG_CPU_SH7721) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900198 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900199# 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 }\
251static 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 Iwamatsua5579ca2010-10-26 03:55:15 +0900260#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 Iwamatsua5579ca2010-10-26 03:55:15 +0900268
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 Glass403a8382023-02-01 13:20:07 -0700278#if defined(CONFIG_R8A7740)
Marek Vasuta1a61d62019-05-07 22:04:05 +0200279#if defined(CONFIG_CPU_SH7721) || \
Nobuhiro Iwamatsu866515f2012-06-21 13:21:32 +0900280 defined(CONFIG_SH73A0)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900281#define SCIF_FNS(name, scif_offset, scif_size) \
282 CPU_SCIF_FNS(name, scif_offset, scif_size)
Marek Vasut39df77a2019-05-07 22:31:23 +0200283#elif defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900284#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 Vasuta71ce472019-05-04 13:31:06 +0200302#elif defined(CONFIG_CPU_SH7723)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900303 #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 Glass403a8382023-02-01 13:20:07 -0700322#if defined(CONFIG_CPU_SH7721)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900323
324SCIF_FNS(SCSMR, 0x00, 16)
325SCIF_FNS(SCBRR, 0x04, 8)
326SCIF_FNS(SCSCR, 0x08, 16)
327SCIF_FNS(SCTDSR, 0x0c, 8)
328SCIF_FNS(SCFER, 0x10, 16)
329SCIF_FNS(SCxSR, 0x14, 16)
330SCIF_FNS(SCFCR, 0x18, 16)
331SCIF_FNS(SCFDR, 0x1c, 16)
332SCIF_FNS(SCxTDR, 0x20, 8)
333SCIF_FNS(SCxRDR, 0x24, 8)
334SCIF_FNS(SCLSR, 0x00, 0)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900335SCIF_FNS(DL, 0x00, 0) /* dummy */
Marek Vasut39df77a2019-05-07 22:31:23 +0200336#elif defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900337SCIF_FNS(SCSMR, 0x00, 16)
338SCIF_FNS(SCBRR, 0x04, 8)
339SCIF_FNS(SCSCR, 0x08, 16)
340SCIF_FNS(SCTDSR, 0x0c, 16)
341SCIF_FNS(SCFER, 0x10, 16)
342SCIF_FNS(SCxSR, 0x14, 16)
343SCIF_FNS(SCFCR, 0x18, 16)
344SCIF_FNS(SCFDR, 0x1c, 16)
345SCIF_FNS(SCTFDR, 0x38, 16)
346SCIF_FNS(SCRFDR, 0x3c, 16)
347SCIx_FNS(SCxTDR, 0x20, 8, 0x40, 8)
348SCIx_FNS(SCxRDR, 0x24, 8, 0x60, 8)
349SCIF_FNS(SCLSR, 0x00, 0)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900350SCIF_FNS(DL, 0x00, 0) /* dummy */
Marek Vasuta71ce472019-05-04 13:31:06 +0200351#elif defined(CONFIG_CPU_SH7723)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900352SCIx_FNS(SCSMR, 0x00, 16, 0x00, 16)
353SCIx_FNS(SCBRR, 0x04, 8, 0x04, 8)
354SCIx_FNS(SCSCR, 0x08, 16, 0x08, 16)
355SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8)
356SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16)
357SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8)
358SCIx_FNS(SCSPTR, 0, 0, 0, 0)
359SCIF_FNS(SCTDSR, 0x0c, 8)
360SCIF_FNS(SCFER, 0x10, 16)
361SCIF_FNS(SCFCR, 0x18, 16)
362SCIF_FNS(SCFDR, 0x1c, 16)
363SCIF_FNS(SCLSR, 0x24, 16)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900364SCIF_FNS(DL, 0x00, 0) /* dummy */
Marek Vasutaa329a82018-01-22 01:43:25 +0100365#elif defined(CONFIG_RCAR_GEN2)
Vladimir Barinov3ed0b622015-07-20 20:49:39 +0300366/* SCIFA and SCIF register offsets and size */
367SCIx_FNS(SCSMR, 0, 0, 0x00, 16, 0, 0, 0x00, 16, 0, 0)
368SCIx_FNS(SCBRR, 0, 0, 0x04, 8, 0, 0, 0x04, 8, 0, 0)
369SCIx_FNS(SCSCR, 0, 0, 0x08, 16, 0, 0, 0x08, 16, 0, 0)
370SCIx_FNS(SCxTDR, 0, 0, 0x20, 8, 0, 0, 0x0C, 8, 0, 0)
371SCIx_FNS(SCxSR, 0, 0, 0x14, 16, 0, 0, 0x10, 16, 0, 0)
372SCIx_FNS(SCxRDR, 0, 0, 0x24, 8, 0, 0, 0x14, 8, 0, 0)
373SCIF_FNS(SCFCR, 0, 0, 0x18, 16)
374SCIF_FNS(SCFDR, 0, 0, 0x1C, 16)
375SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
376SCIF_FNS(DL, 0, 0, 0x30, 16)
377SCIF_FNS(CKS, 0, 0, 0x34, 16)
Tom Rini31b8b4d2022-12-04 10:13:43 -0500378#if defined(CFG_SCIF_A)
Vladimir Barinov3ed0b622015-07-20 20:49:39 +0300379SCIF_FNS(SCLSR, 0, 0, 0x14, 16)
380#else
381SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
382#endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900383#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*/
386SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16, 0x00, 8)
387SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8, 0x01, 8)
388SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16, 0x02, 8)
389SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8, 0x03, 8)
390SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16, 0x04, 8)
391SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8, 0x05, 8)
392SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16)
Marek Vasut39df77a2019-05-07 22:31:23 +0200393#if defined(CONFIG_CPU_SH7780)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900394SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
395SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
396SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
397SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
398SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
399#elif defined(CONFIG_CPU_SH7763)
400SCIF_FNS(SCFDR, 0, 0, 0x1C, 16)
401SCIF_FNS(SCSPTR2, 0, 0, 0x20, 16)
402SCIF_FNS(SCLSR2, 0, 0, 0x24, 16)
403SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
404SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
405SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
406SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
407#else
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900408
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900409SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
410#if defined(CONFIG_CPU_SH7722)
411SCIF_FNS(SCSPTR, 0, 0, 0, 0)
412#else
413SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
414#endif
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900415SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
416#endif
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900417SCIF_FNS(DL, 0, 0, 0x0, 0) /* dummy */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900418#endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900419#define sci_in(port, reg) sci_##reg##_in(port)
420#define sci_out(port, reg, value) sci_##reg##_out(port, value)
421
Marek Vasuta1a61d62019-05-07 22:04:05 +0200422#if defined(CONFIG_CPU_SH7750) || \
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900423 defined(CONFIG_CPU_SH7751) || \
424 defined(CONFIG_CPU_SH7751R) || \
425 defined(CONFIG_CPU_SH7750R) || \
Marek Vasut39df77a2019-05-07 22:31:23 +0200426 defined(CONFIG_CPU_SH7750S)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900427static 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 Iwamatsua5579ca2010-10-26 03:55:15 +0900433#else /* default case for non-SCI processors */
434static 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 Vasut39df77a2019-05-07 22:31:23 +0200472#if defined(CONFIG_CPU_SH7780)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900473#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1)
Marek Vasuta1a61d62019-05-07 22:04:05 +0200474#elif defined(CONFIG_CPU_SH7721) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900475 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900476#define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1)
Marek Vasuta71ce472019-05-04 13:31:06 +0200477#elif defined(CONFIG_CPU_SH7723)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900478static inline int scbrr_calc(struct uart_port *port, int bps, int clk)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900479{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900480 if (port->type == PORT_SCIF)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900481 return (clk+16*bps)/(32*bps)-1;
482 else
483 return ((clk*2)+16*bps)/(16*bps)-1;
484}
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900485#define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk)
Marek Vasutaa329a82018-01-22 01:43:25 +0100486#elif defined(CONFIG_RCAR_GEN2)
Nobuhiro Iwamatsu65653302014-07-28 15:07:44 +0900487#define DL_VALUE(bps, clk) (clk / bps / 16) /* External Clock */
Tom Rini31b8b4d2022-12-04 10:13:43 -0500488 #if defined(CFG_SCIF_A)
Vladimir Barinov3ed0b622015-07-20 20:49:39 +0300489 #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 Iwamatsua5579ca2010-10-26 03:55:15 +0900493#else /* Generic SH */
494#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1)
495#endif
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900496
497#ifndef DL_VALUE
498#define DL_VALUE(bps, clk) 0
499#endif