blob: 8aa80d4a371153cc127bd8cf15f44f87272a3a43 [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
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090015#if defined(CONFIG_H83007) || defined(CONFIG_H83068)
16#include <asm/regs306x.h>
17#endif
18#if defined(CONFIG_H8S2678)
19#include <asm/regs267x.h>
20#endif
21
22#if defined(CONFIG_CPU_SH7706) || \
23 defined(CONFIG_CPU_SH7707) || \
24 defined(CONFIG_CPU_SH7708) || \
25 defined(CONFIG_CPU_SH7709)
26# define SCPCR 0xA4000116 /* 16 bit SCI and SCIF */
27# define SCPDR 0xA4000136 /* 8 bit SCI and SCIF */
28# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
29#elif defined(CONFIG_CPU_SH7705)
30# define SCIF0 0xA4400000
31# define SCIF2 0xA4410000
32# define SCSMR_Ir 0xA44A0000
33# define IRDA_SCIF SCIF0
34# define SCPCR 0xA4000116
35# define SCPDR 0xA4000136
36
37/* Set the clock source,
38 * SCIF2 (0xA4410000) -> External clock, SCK pin used as clock input
39 * SCIF0 (0xA4400000) -> Internal clock, SCK pin as serial clock output
40 */
41# define SCSCR_INIT(port) (port->mapbase == SCIF2) ? 0xF3 : 0xF0
42#elif defined(CONFIG_CPU_SH7720) || \
43 defined(CONFIG_CPU_SH7721) || \
44 defined(CONFIG_ARCH_SH7367) || \
45 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsu866515f2012-06-21 13:21:32 +090046 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +090047 defined(CONFIG_SH73A0) || \
48 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090049# define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */
50# define PORT_PTCR 0xA405011EUL
51# define PORT_PVCR 0xA4050122UL
52# define SCIF_ORER 0x0200 /* overrun error bit */
53#elif defined(CONFIG_SH_RTS7751R2D)
54# define SCSPTR1 0xFFE0001C /* 8 bit SCIF */
55# define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
56# define SCIF_ORER 0x0001 /* overrun error bit */
57# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
58#elif defined(CONFIG_CPU_SH7750) || \
59 defined(CONFIG_CPU_SH7750R) || \
60 defined(CONFIG_CPU_SH7750S) || \
61 defined(CONFIG_CPU_SH7091) || \
62 defined(CONFIG_CPU_SH7751) || \
63 defined(CONFIG_CPU_SH7751R)
64# define SCSPTR1 0xffe0001c /* 8 bit SCI */
65# define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
66# define SCIF_ORER 0x0001 /* overrun error bit */
67# define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? \
68 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \
69 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */)
70#elif defined(CONFIG_CPU_SH7760)
71# define SCSPTR0 0xfe600024 /* 16 bit SCIF */
72# define SCSPTR1 0xfe610024 /* 16 bit SCIF */
73# define SCSPTR2 0xfe620024 /* 16 bit SCIF */
74# define SCIF_ORER 0x0001 /* overrun error bit */
75# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
76#elif defined(CONFIG_CPU_SH7710) || defined(CONFIG_CPU_SH7712)
77# define SCSPTR0 0xA4400000 /* 16 bit SCIF */
78# define SCIF_ORER 0x0001 /* overrun error bit */
79# define PACR 0xa4050100
80# define PBCR 0xa4050102
81# define SCSCR_INIT(port) 0x3B
82#elif defined(CONFIG_CPU_SH7343)
83# define SCSPTR0 0xffe00010 /* 16 bit SCIF */
84# define SCSPTR1 0xffe10010 /* 16 bit SCIF */
85# define SCSPTR2 0xffe20010 /* 16 bit SCIF */
86# define SCSPTR3 0xffe30010 /* 16 bit SCIF */
87# define SCSCR_INIT(port) 0x32 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0,CKE=1 */
88#elif defined(CONFIG_CPU_SH7722)
89# define PADR 0xA4050120
Nobuhiro Iwamatsu4df4ed62010-11-24 13:24:33 +090090# undef PSDR
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090091# define PSDR 0xA405013e
92# define PWDR 0xA4050166
93# define PSCR 0xA405011E
94# define SCIF_ORER 0x0001 /* overrun error bit */
95# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
96#elif defined(CONFIG_CPU_SH7366)
97# define SCPDR0 0xA405013E /* 16 bit SCIF0 PSDR */
98# define SCSPTR0 SCPDR0
99# define SCIF_ORER 0x0001 /* overrun error bit */
100# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
101#elif defined(CONFIG_CPU_SH7723)
102# define SCSPTR0 0xa4050160
103# define SCSPTR1 0xa405013e
104# define SCSPTR2 0xa4050160
105# define SCSPTR3 0xa405013e
106# define SCSPTR4 0xa4050128
107# define SCSPTR5 0xa4050128
108# define SCIF_ORER 0x0001 /* overrun error bit */
109# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Nobuhiro Iwamatsu73bbe6d2012-01-11 10:45:01 +0900110#elif defined(CONFIG_CPU_SH7734)
111# define SCSPTR0 0xFFE40020
112# define SCSPTR1 0xFFE41020
113# define SCSPTR2 0xFFE42020
114# define SCSPTR3 0xFFE43020
115# define SCSPTR4 0xFFE44020
116# define SCSPTR5 0xFFE45020
117# define SCIF_ORER 0x0001 /* overrun error bit */
118# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900119#elif defined(CONFIG_CPU_SH4_202)
120# define SCSPTR2 0xffe80020 /* 16 bit SCIF */
121# define SCIF_ORER 0x0001 /* overrun error bit */
122# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
123#elif defined(CONFIG_CPU_SH5_101) || defined(CONFIG_CPU_SH5_103)
124# define SCIF_BASE_ADDR 0x01030000
125# define SCIF_ADDR_SH5 (PHYS_PERIPHERAL_BLOCK+SCIF_BASE_ADDR)
126# define SCIF_PTR2_OFFS 0x0000020
127# define SCIF_LSR2_OFFS 0x0000024
128# define SCSPTR\
129 ((port->mapbase)+SCIF_PTR2_OFFS) /* 16 bit SCIF */
130# define SCLSR2\
131 ((port->mapbase)+SCIF_LSR2_OFFS) /* 16 bit SCIF */
132# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0, TE=1,RE=1,REIE=1 */
133#elif defined(CONFIG_H83007) || defined(CONFIG_H83068)
134# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
135# define H8300_SCI_DR(ch) (*(volatile char *)(P1DR + h8300_sci_pins[ch].port))
136#elif defined(CONFIG_H8S2678)
137# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
138# define H8300_SCI_DR(ch) (*(volatile char *)(P1DR + h8300_sci_pins[ch].port))
Yoshihiro Shimodab94d0f62013-12-18 16:04:20 +0900139#elif defined(CONFIG_CPU_SH7757) || \
140 defined(CONFIG_CPU_SH7752) || \
141 defined(CONFIG_CPU_SH7753)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900142# define SCSPTR0 0xfe4b0020
143# define SCSPTR1 0xfe4b0020
144# define SCSPTR2 0xfe4b0020
145# define SCIF_ORER 0x0001
146# define SCSCR_INIT(port) 0x38
147# define SCIF_ONLY
148#elif defined(CONFIG_CPU_SH7763)
149# define SCSPTR0 0xffe00024 /* 16 bit SCIF */
150# define SCSPTR1 0xffe08024 /* 16 bit SCIF */
151# define SCSPTR2 0xffe10020 /* 16 bit SCIF/IRDA */
152# define SCIF_ORER 0x0001 /* overrun error bit */
153# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
154#elif defined(CONFIG_CPU_SH7770)
155# define SCSPTR0 0xff923020 /* 16 bit SCIF */
156# define SCSPTR1 0xff924020 /* 16 bit SCIF */
157# define SCSPTR2 0xff925020 /* 16 bit SCIF */
158# define SCIF_ORER 0x0001 /* overrun error bit */
159# define SCSCR_INIT(port) 0x3c /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,cke=2 */
160#elif defined(CONFIG_CPU_SH7780)
161# define SCSPTR0 0xffe00024 /* 16 bit SCIF */
162# define SCSPTR1 0xffe10024 /* 16 bit SCIF */
163# define SCIF_ORER 0x0001 /* Overrun error bit */
164
165#if defined(CONFIG_SH_SH2007)
166/* TIE=0,RIE=0,TE=1,RE=1,REIE=1,CKE1=0 */
167# define SCSCR_INIT(port) 0x38
168#else
169/* TIE=0,RIE=0,TE=1,RE=1,REIE=1,CKE1=1 */
170# define SCSCR_INIT(port) 0x3a
171#endif
172
Marek Vasut76ee98f2019-05-04 13:28:04 +0200173#elif defined(CONFIG_CPU_SH7786)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900174# define SCSPTR0 0xffea0024 /* 16 bit SCIF */
175# define SCSPTR1 0xffeb0024 /* 16 bit SCIF */
176# define SCSPTR2 0xffec0024 /* 16 bit SCIF */
177# define SCSPTR3 0xffed0024 /* 16 bit SCIF */
178# define SCSPTR4 0xffee0024 /* 16 bit SCIF */
179# define SCSPTR5 0xffef0024 /* 16 bit SCIF */
180# define SCIF_ORER 0x0001 /* Overrun error bit */
181# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
182#elif defined(CONFIG_CPU_SH7201) || \
183 defined(CONFIG_CPU_SH7203) || \
184 defined(CONFIG_CPU_SH7206) || \
Phil Edworthy2b3228d2011-06-01 07:35:13 +0100185 defined(CONFIG_CPU_SH7263) || \
186 defined(CONFIG_CPU_SH7264)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900187# define SCSPTR0 0xfffe8020 /* 16 bit SCIF */
188# define SCSPTR1 0xfffe8820 /* 16 bit SCIF */
189# define SCSPTR2 0xfffe9020 /* 16 bit SCIF */
190# define SCSPTR3 0xfffe9820 /* 16 bit SCIF */
191# if defined(CONFIG_CPU_SH7201)
192# define SCSPTR4 0xfffeA020 /* 16 bit SCIF */
193# define SCSPTR5 0xfffeA820 /* 16 bit SCIF */
194# define SCSPTR6 0xfffeB020 /* 16 bit SCIF */
195# define SCSPTR7 0xfffeB820 /* 16 bit SCIF */
196# endif
197# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Marek Vasut2d2e3ff2019-05-01 18:20:00 +0200198#elif defined(CONFIG_CPU_SH7269) || defined(CONFIG_RZA1)
Phil Edworthy04a62752012-05-15 22:15:51 +0000199# define SCSPTR0 0xe8007020 /* 16 bit SCIF */
200# define SCSPTR1 0xe8007820 /* 16 bit SCIF */
201# define SCSPTR2 0xe8008020 /* 16 bit SCIF */
202# define SCSPTR3 0xe8008820 /* 16 bit SCIF */
203# define SCSPTR4 0xe8009020 /* 16 bit SCIF */
204# define SCSPTR5 0xe8009820 /* 16 bit SCIF */
205# define SCSPTR6 0xe800a020 /* 16 bit SCIF */
206# define SCSPTR7 0xe800a820 /* 16 bit SCIF */
207# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Marek Vasut2d2e3ff2019-05-01 18:20:00 +0200208# define SCIF_ORER 0x0001 /* overrun error bit */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900209#elif defined(CONFIG_CPU_SH7619)
210# define SCSPTR0 0xf8400020 /* 16 bit SCIF */
211# define SCSPTR1 0xf8410020 /* 16 bit SCIF */
212# define SCSPTR2 0xf8420020 /* 16 bit SCIF */
213# define SCIF_ORER 0x0001 /* overrun error bit */
214# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
215#elif defined(CONFIG_CPU_SHX3)
216# define SCSPTR0 0xffc30020 /* 16 bit SCIF */
217# define SCSPTR1 0xffc40020 /* 16 bit SCIF */
218# define SCSPTR2 0xffc50020 /* 16 bit SCIF */
219# define SCSPTR3 0xffc60020 /* 16 bit SCIF */
220# define SCIF_ORER 0x0001 /* Overrun error bit */
221# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Chris Brandt3603e502018-01-16 20:52:18 -0500222#elif defined(CONFIG_RCAR_GEN2) || defined(CONFIG_RCAR_GEN3) || \
223 defined(CONFIG_R7S72100)
Vladimir Barinov3ed0b622015-07-20 20:49:39 +0300224# if defined(CONFIG_SCIF_A)
225# define SCIF_ORER 0x0200
226# else
227# define SCIF_ORER 0x0001
228# endif
Vladimir Barinov51d3b402015-02-14 01:05:18 +0300229# define SCSCR_INIT(port) (port->clk_mode == EXT_CLK ? 0x32 : 0x30)
230 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0, */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900231#else
232# error CPU subtype not defined
233#endif
234
235/* SCSCR */
236#define SCI_CTRL_FLAGS_TIE 0x80 /* all */
237#define SCI_CTRL_FLAGS_RIE 0x40 /* all */
238#define SCI_CTRL_FLAGS_TE 0x20 /* all */
239#define SCI_CTRL_FLAGS_RE 0x10 /* all */
240#if defined(CONFIG_CPU_SH7750) || \
241 defined(CONFIG_CPU_SH7091) || \
242 defined(CONFIG_CPU_SH7750R) || \
243 defined(CONFIG_CPU_SH7722) || \
Nobuhiro Iwamatsu73bbe6d2012-01-11 10:45:01 +0900244 defined(CONFIG_CPU_SH7734) || \
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900245 defined(CONFIG_CPU_SH7750S) || \
246 defined(CONFIG_CPU_SH7751) || \
247 defined(CONFIG_CPU_SH7751R) || \
248 defined(CONFIG_CPU_SH7763) || \
249 defined(CONFIG_CPU_SH7780) || \
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900250 defined(CONFIG_CPU_SH7786) || \
251 defined(CONFIG_CPU_SHX3)
252#define SCI_CTRL_FLAGS_REIE 0x08 /* 7750 SCIF */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900253#else
254#define SCI_CTRL_FLAGS_REIE 0
255#endif
256/* SCI_CTRL_FLAGS_MPIE 0x08 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
257/* SCI_CTRL_FLAGS_TEIE 0x04 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
258/* SCI_CTRL_FLAGS_CKE1 0x02 * all */
259/* SCI_CTRL_FLAGS_CKE0 0x01 * 7707 SCI/SCIF, 7708 SCI, 7709 SCI/SCIF, 7750 SCI */
260
261/* SCxSR SCI */
262#define SCI_TDRE 0x80 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
263#define SCI_RDRF 0x40 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
264#define SCI_ORER 0x20 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
265#define SCI_FER 0x10 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
266#define SCI_PER 0x08 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
267#define SCI_TEND 0x04 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
268/* SCI_MPB 0x02 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
269/* SCI_MPBT 0x01 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
270
271#define SCI_ERRORS ( SCI_PER | SCI_FER | SCI_ORER)
272
273/* SCxSR SCIF */
274#define SCIF_ER 0x0080 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
275#define SCIF_TEND 0x0040 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
276#define SCIF_TDFE 0x0020 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
277#define SCIF_BRK 0x0010 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
278#define SCIF_FER 0x0008 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
279#define SCIF_PER 0x0004 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
280#define SCIF_RDF 0x0002 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
281#define SCIF_DR 0x0001 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
282
283#if defined(CONFIG_CPU_SH7705) || \
284 defined(CONFIG_CPU_SH7720) || \
285 defined(CONFIG_CPU_SH7721) || \
286 defined(CONFIG_ARCH_SH7367) || \
287 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsu866515f2012-06-21 13:21:32 +0900288 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900289 defined(CONFIG_SH73A0) || \
290 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900291# define SCIF_ORER 0x0200
292# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER)
293# define SCIF_RFDC_MASK 0x007f
294# define SCIF_TXROOM_MAX 64
295#elif defined(CONFIG_CPU_SH7763)
296# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
297# define SCIF_RFDC_MASK 0x007f
298# define SCIF_TXROOM_MAX 64
299/* SH7763 SCIF2 support */
300# define SCIF2_RFDC_MASK 0x001f
301# define SCIF2_TXROOM_MAX 16
Marek Vasutaa329a82018-01-22 01:43:25 +0100302#elif defined(CONFIG_RCAR_GEN2)
Nobuhiro Iwamatsu788b73f2013-07-23 13:58:20 +0900303# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
Vladimir Barinov3ed0b622015-07-20 20:49:39 +0300304# if defined(CONFIG_SCIF_A)
305# define SCIF_RFDC_MASK 0x007f
306# else
307# define SCIF_RFDC_MASK 0x001f
308# endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900309#else
310# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
311# define SCIF_RFDC_MASK 0x001f
312# define SCIF_TXROOM_MAX 16
313#endif
314
315#ifndef SCIF_ORER
316#define SCIF_ORER 0x0000
317#endif
318
319#define SCxSR_TEND(port)\
320 (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
321#define SCxSR_ERRORS(port)\
322 (((port)->type == PORT_SCI) ? SCI_ERRORS : SCIF_ERRORS)
323#define SCxSR_RDxF(port)\
324 (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
325#define SCxSR_TDxE(port)\
326 (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
327#define SCxSR_FER(port)\
328 (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
329#define SCxSR_PER(port)\
330 (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
331#define SCxSR_BRK(port)\
332 ((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
333#define SCxSR_ORER(port)\
334 (((port)->type == PORT_SCI) ? SCI_ORER : SCIF_ORER)
335
336#if defined(CONFIG_CPU_SH7705) || \
337 defined(CONFIG_CPU_SH7720) || \
338 defined(CONFIG_CPU_SH7721) || \
339 defined(CONFIG_ARCH_SH7367) || \
340 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsu866515f2012-06-21 13:21:32 +0900341 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900342 defined(CONFIG_SH73A0) || \
343 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900344# define SCxSR_RDxF_CLEAR(port) (sci_in(port, SCxSR) & 0xfffc)
345# define SCxSR_ERROR_CLEAR(port) (sci_in(port, SCxSR) & 0xfd73)
346# define SCxSR_TDxE_CLEAR(port) (sci_in(port, SCxSR) & 0xffdf)
347# define SCxSR_BREAK_CLEAR(port) (sci_in(port, SCxSR) & 0xffe3)
348#else
349# define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
350# define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
351# define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
352# define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3)
353#endif
354
355/* SCFCR */
356#define SCFCR_RFRST 0x0002
357#define SCFCR_TFRST 0x0004
358#define SCFCR_TCRST 0x4000
359#define SCFCR_MCE 0x0008
360
361#define SCI_MAJOR 204
362#define SCI_MINOR_START 8
363
364/* Generic serial flags */
365#define SCI_RX_THROTTLE 0x0000001
366
367#define SCI_MAGIC 0xbabeface
368
369/*
370 * Events are used to schedule things to happen at timer-interrupt
371 * time, instead of at rs interrupt time.
372 */
373#define SCI_EVENT_WRITE_WAKEUP 0
374
375#define SCI_IN(size, offset)\
376 if ((size) == 8) {\
377 return readb(port->membase + (offset));\
378 } else {\
379 return readw(port->membase + (offset));\
380 }
381#define SCI_OUT(size, offset, value)\
382 if ((size) == 8) {\
383 writeb(value, port->membase + (offset));\
384 } else if ((size) == 16) {\
385 writew(value, port->membase + (offset));\
386 }
387
388#define CPU_SCIx_FNS(name, sci_offset, sci_size, scif_offset, scif_size)\
389 static inline unsigned int sci_##name##_in(struct uart_port *port) {\
390 if (port->type == PORT_SCIF || port->type == PORT_SCIFB) {\
391 SCI_IN(scif_size, scif_offset)\
392 } else { /* PORT_SCI or PORT_SCIFA */\
393 SCI_IN(sci_size, sci_offset);\
394 }\
395 }\
396static inline void sci_##name##_out(struct uart_port *port,\
397 unsigned int value) {\
398 if (port->type == PORT_SCIF || port->type == PORT_SCIFB) {\
399 SCI_OUT(scif_size, scif_offset, value)\
400 } else { /* PORT_SCI or PORT_SCIFA */\
401 SCI_OUT(sci_size, sci_offset, value);\
402 }\
403}
404
405#ifdef CONFIG_H8300
406/* h8300 don't have SCIF */
407#define CPU_SCIF_FNS(name) \
408 static inline unsigned int sci_##name##_in(struct uart_port *port) {\
409 return 0;\
410 }\
411 static inline void sci_##name##_out(struct uart_port *port,\
412 unsigned int value) {\
413 }
414#else
415#define CPU_SCIF_FNS(name, scif_offset, scif_size) \
416 static inline unsigned int sci_##name##_in(struct uart_port *port) {\
417 SCI_IN(scif_size, scif_offset);\
418 }\
419 static inline void sci_##name##_out(struct uart_port *port,\
420 unsigned int value) {\
421 SCI_OUT(scif_size, scif_offset, value);\
422 }
423#endif
424
425#define CPU_SCI_FNS(name, sci_offset, sci_size)\
426 static inline unsigned int sci_##name##_in(struct uart_port *port) {\
427 SCI_IN(sci_size, sci_offset);\
428 }\
429 static inline void sci_##name##_out(struct uart_port *port,\
430 unsigned int value) {\
431 SCI_OUT(sci_size, sci_offset, value);\
432 }
433
Masahiro Yamada4770e412014-11-06 15:55:21 +0900434#if defined(CONFIG_CPU_SH3) || \
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900435 defined(CONFIG_ARCH_SH7367) || \
436 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsu866515f2012-06-21 13:21:32 +0900437 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900438 defined(CONFIG_SH73A0) || \
439 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900440#if defined(CONFIG_CPU_SH7710) || defined(CONFIG_CPU_SH7712)
441#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
442 sh4_sci_offset, sh4_sci_size, \
443 sh3_scif_offset, sh3_scif_size, \
444 sh4_scif_offset, sh4_scif_size, \
445 h8_sci_offset, h8_sci_size) \
446 CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size,\
447 sh4_scif_offset, sh4_scif_size)
448#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
449 sh4_scif_offset, sh4_scif_size) \
450 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
451#elif defined(CONFIG_CPU_SH7705) || \
452 defined(CONFIG_CPU_SH7720) || \
453 defined(CONFIG_CPU_SH7721) || \
454 defined(CONFIG_ARCH_SH7367) || \
Nobuhiro Iwamatsu866515f2012-06-21 13:21:32 +0900455 defined(CONFIG_ARCH_SH7377) || \
456 defined(CONFIG_SH73A0)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900457#define SCIF_FNS(name, scif_offset, scif_size) \
458 CPU_SCIF_FNS(name, scif_offset, scif_size)
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900459#elif defined(CONFIG_ARCH_SH7372) || \
460 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900461#define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
462 sh4_scifb_offset, sh4_scifb_size) \
463 CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
464 sh4_scifb_offset, sh4_scifb_size)
465#define SCIF_FNS(name, scif_offset, scif_size) \
466 CPU_SCIF_FNS(name, scif_offset, scif_size)
467#else
468#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
469 sh4_sci_offset, sh4_sci_size, \
470 sh3_scif_offset, sh3_scif_size,\
471 sh4_scif_offset, sh4_scif_size, \
472 h8_sci_offset, h8_sci_size) \
473 CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
474 sh3_scif_offset, sh3_scif_size)
475#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
476 sh4_scif_offset, sh4_scif_size) \
477 CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size)
478#endif
479#elif defined(__H8300H__) || defined(__H8300S__)
480#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
481 sh4_sci_offset, sh4_sci_size, \
482 sh3_scif_offset, sh3_scif_size,\
483 sh4_scif_offset, sh4_scif_size, \
484 h8_sci_offset, h8_sci_size) \
485 CPU_SCI_FNS(name, h8_sci_offset, h8_sci_size)
486#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
487 sh4_scif_offset, sh4_scif_size) \
488 CPU_SCIF_FNS(name)
Marek Vasuta71ce472019-05-04 13:31:06 +0200489#elif defined(CONFIG_CPU_SH7723)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900490 #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
491 sh4_scif_offset, sh4_scif_size) \
492 CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
493 sh4_scif_offset, sh4_scif_size)
494 #define SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) \
495 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
496#else
497#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
498 sh4_sci_offset, sh4_sci_size, \
499 sh3_scif_offset, sh3_scif_size,\
500 sh4_scif_offset, sh4_scif_size, \
501 h8_sci_offset, h8_sci_size) \
502 CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size,\
503 sh4_scif_offset, sh4_scif_size)
504#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, \
505 sh4_scif_offset, sh4_scif_size) \
506 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
507#endif
508
509#if defined(CONFIG_CPU_SH7705) || \
510 defined(CONFIG_CPU_SH7720) || \
511 defined(CONFIG_CPU_SH7721) || \
512 defined(CONFIG_ARCH_SH7367) || \
Nobuhiro Iwamatsu866515f2012-06-21 13:21:32 +0900513 defined(CONFIG_ARCH_SH7377) || \
514 defined(CONFIG_SH73A0)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900515
516SCIF_FNS(SCSMR, 0x00, 16)
517SCIF_FNS(SCBRR, 0x04, 8)
518SCIF_FNS(SCSCR, 0x08, 16)
519SCIF_FNS(SCTDSR, 0x0c, 8)
520SCIF_FNS(SCFER, 0x10, 16)
521SCIF_FNS(SCxSR, 0x14, 16)
522SCIF_FNS(SCFCR, 0x18, 16)
523SCIF_FNS(SCFDR, 0x1c, 16)
524SCIF_FNS(SCxTDR, 0x20, 8)
525SCIF_FNS(SCxRDR, 0x24, 8)
526SCIF_FNS(SCLSR, 0x00, 0)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900527SCIF_FNS(DL, 0x00, 0) /* dummy */
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900528#elif defined(CONFIG_ARCH_SH7372) || \
529 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900530SCIF_FNS(SCSMR, 0x00, 16)
531SCIF_FNS(SCBRR, 0x04, 8)
532SCIF_FNS(SCSCR, 0x08, 16)
533SCIF_FNS(SCTDSR, 0x0c, 16)
534SCIF_FNS(SCFER, 0x10, 16)
535SCIF_FNS(SCxSR, 0x14, 16)
536SCIF_FNS(SCFCR, 0x18, 16)
537SCIF_FNS(SCFDR, 0x1c, 16)
538SCIF_FNS(SCTFDR, 0x38, 16)
539SCIF_FNS(SCRFDR, 0x3c, 16)
540SCIx_FNS(SCxTDR, 0x20, 8, 0x40, 8)
541SCIx_FNS(SCxRDR, 0x24, 8, 0x60, 8)
542SCIF_FNS(SCLSR, 0x00, 0)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900543SCIF_FNS(DL, 0x00, 0) /* dummy */
Marek Vasuta71ce472019-05-04 13:31:06 +0200544#elif defined(CONFIG_CPU_SH7723)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900545SCIx_FNS(SCSMR, 0x00, 16, 0x00, 16)
546SCIx_FNS(SCBRR, 0x04, 8, 0x04, 8)
547SCIx_FNS(SCSCR, 0x08, 16, 0x08, 16)
548SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8)
549SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16)
550SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8)
551SCIx_FNS(SCSPTR, 0, 0, 0, 0)
552SCIF_FNS(SCTDSR, 0x0c, 8)
553SCIF_FNS(SCFER, 0x10, 16)
554SCIF_FNS(SCFCR, 0x18, 16)
555SCIF_FNS(SCFDR, 0x1c, 16)
556SCIF_FNS(SCLSR, 0x24, 16)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900557SCIF_FNS(DL, 0x00, 0) /* dummy */
Marek Vasutaa329a82018-01-22 01:43:25 +0100558#elif defined(CONFIG_RCAR_GEN2)
Vladimir Barinov3ed0b622015-07-20 20:49:39 +0300559/* SCIFA and SCIF register offsets and size */
560SCIx_FNS(SCSMR, 0, 0, 0x00, 16, 0, 0, 0x00, 16, 0, 0)
561SCIx_FNS(SCBRR, 0, 0, 0x04, 8, 0, 0, 0x04, 8, 0, 0)
562SCIx_FNS(SCSCR, 0, 0, 0x08, 16, 0, 0, 0x08, 16, 0, 0)
563SCIx_FNS(SCxTDR, 0, 0, 0x20, 8, 0, 0, 0x0C, 8, 0, 0)
564SCIx_FNS(SCxSR, 0, 0, 0x14, 16, 0, 0, 0x10, 16, 0, 0)
565SCIx_FNS(SCxRDR, 0, 0, 0x24, 8, 0, 0, 0x14, 8, 0, 0)
566SCIF_FNS(SCFCR, 0, 0, 0x18, 16)
567SCIF_FNS(SCFDR, 0, 0, 0x1C, 16)
568SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
569SCIF_FNS(DL, 0, 0, 0x30, 16)
570SCIF_FNS(CKS, 0, 0, 0x34, 16)
571#if defined(CONFIG_SCIF_A)
572SCIF_FNS(SCLSR, 0, 0, 0x14, 16)
573#else
574SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
575#endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900576#else
577/* reg SCI/SH3 SCI/SH4 SCIF/SH3 SCIF/SH4 SCI/H8*/
578/* name off sz off sz off sz off sz off sz*/
579SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16, 0x00, 8)
580SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8, 0x01, 8)
581SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16, 0x02, 8)
582SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8, 0x03, 8)
583SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16, 0x04, 8)
584SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8, 0x05, 8)
585SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16)
586#if defined(CONFIG_CPU_SH7760) || \
587 defined(CONFIG_CPU_SH7780) || \
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900588 defined(CONFIG_CPU_SH7786)
589SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
590SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
591SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
592SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
593SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
594#elif defined(CONFIG_CPU_SH7763)
595SCIF_FNS(SCFDR, 0, 0, 0x1C, 16)
596SCIF_FNS(SCSPTR2, 0, 0, 0x20, 16)
597SCIF_FNS(SCLSR2, 0, 0, 0x24, 16)
598SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
599SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
600SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
601SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
602#else
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900603
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900604SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
605#if defined(CONFIG_CPU_SH7722)
606SCIF_FNS(SCSPTR, 0, 0, 0, 0)
607#else
608SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
609#endif
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900610SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
611#endif
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900612SCIF_FNS(DL, 0, 0, 0x0, 0) /* dummy */
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900613#endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900614#define sci_in(port, reg) sci_##reg##_in(port)
615#define sci_out(port, reg, value) sci_##reg##_out(port, value)
616
617/* H8/300 series SCI pins assignment */
618#if defined(__H8300H__) || defined(__H8300S__)
619static const struct __attribute__((packed)) {
620 int port; /* GPIO port no */
621 unsigned short rx, tx; /* GPIO bit no */
622} h8300_sci_pins[] = {
623#if defined(CONFIG_H83007) || defined(CONFIG_H83068)
624 { /* SCI0 */
625 .port = H8300_GPIO_P9,
626 .rx = H8300_GPIO_B2,
627 .tx = H8300_GPIO_B0,
628 },
629 { /* SCI1 */
630 .port = H8300_GPIO_P9,
631 .rx = H8300_GPIO_B3,
632 .tx = H8300_GPIO_B1,
633 },
634 { /* SCI2 */
635 .port = H8300_GPIO_PB,
636 .rx = H8300_GPIO_B7,
637 .tx = H8300_GPIO_B6,
638 }
639#elif defined(CONFIG_H8S2678)
640 { /* SCI0 */
641 .port = H8300_GPIO_P3,
642 .rx = H8300_GPIO_B2,
643 .tx = H8300_GPIO_B0,
644 },
645 { /* SCI1 */
646 .port = H8300_GPIO_P3,
647 .rx = H8300_GPIO_B3,
648 .tx = H8300_GPIO_B1,
649 },
650 { /* SCI2 */
651 .port = H8300_GPIO_P5,
652 .rx = H8300_GPIO_B1,
653 .tx = H8300_GPIO_B0,
654 }
655#endif
656};
657#endif
658
659#if defined(CONFIG_CPU_SH7706) || \
660 defined(CONFIG_CPU_SH7707) || \
661 defined(CONFIG_CPU_SH7708) || \
662 defined(CONFIG_CPU_SH7709)
663static inline int sci_rxd_in(struct uart_port *port)
664{
665 if (port->mapbase == 0xfffffe80)
666 return __raw_readb(SCPDR)&0x01 ? 1 : 0; /* SCI */
667 return 1;
668}
669#elif defined(CONFIG_CPU_SH7750) || \
670 defined(CONFIG_CPU_SH7751) || \
671 defined(CONFIG_CPU_SH7751R) || \
672 defined(CONFIG_CPU_SH7750R) || \
673 defined(CONFIG_CPU_SH7750S) || \
674 defined(CONFIG_CPU_SH7091)
675static inline int sci_rxd_in(struct uart_port *port)
676{
677 if (port->mapbase == 0xffe00000)
678 return __raw_readb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */
679 return 1;
680}
681#elif defined(__H8300H__) || defined(__H8300S__)
682static inline int sci_rxd_in(struct uart_port *port)
683{
684 int ch = (port->mapbase - SMR0) >> 3;
685 return (H8300_SCI_DR(ch) & h8300_sci_pins[ch].rx) ? 1 : 0;
686}
687#else /* default case for non-SCI processors */
688static inline int sci_rxd_in(struct uart_port *port)
689{
690 return 1;
691}
692#endif
693
694/*
695 * Values for the BitRate Register (SCBRR)
696 *
697 * The values are actually divisors for a frequency which can
698 * be internal to the SH3 (14.7456MHz) or derived from an external
699 * clock source. This driver assumes the internal clock is used;
700 * to support using an external clock source, config options or
701 * possibly command-line options would need to be added.
702 *
703 * Also, to support speeds below 2400 (why?) the lower 2 bits of
704 * the SCSMR register would also need to be set to non-zero values.
705 *
706 * -- Greg Banks 27Feb2000
707 *
708 * Answer: The SCBRR register is only eight bits, and the value in
709 * it gets larger with lower baud rates. At around 2400 (depending on
710 * the peripherial module clock) you run out of bits. However the
711 * lower two bits of SCSMR allow the module clock to be divided down,
712 * scaling the value which is needed in SCBRR.
713 *
714 * -- Stuart Menefy - 23 May 2000
715 *
716 * I meant, why would anyone bother with bitrates below 2400.
717 *
718 * -- Greg Banks - 7Jul2000
719 *
720 * You "speedist"! How will I use my 110bps ASR-33 teletype with paper
721 * tape reader as a console!
722 *
723 * -- Mitch Davis - 15 Jul 2000
724 */
725
726#if (defined(CONFIG_CPU_SH7780) || \
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900727 defined(CONFIG_CPU_SH7786)) && \
728 !defined(CONFIG_SH_SH2007)
729#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1)
730#elif defined(CONFIG_CPU_SH7705) || \
731 defined(CONFIG_CPU_SH7720) || \
732 defined(CONFIG_CPU_SH7721) || \
733 defined(CONFIG_ARCH_SH7367) || \
734 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsu866515f2012-06-21 13:21:32 +0900735 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanodde220f2012-06-25 10:29:56 +0900736 defined(CONFIG_SH73A0) || \
737 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900738#define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1)
Marek Vasuta71ce472019-05-04 13:31:06 +0200739#elif defined(CONFIG_CPU_SH7723)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900740static inline int scbrr_calc(struct uart_port *port, int bps, int clk)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900741{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900742 if (port->type == PORT_SCIF)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900743 return (clk+16*bps)/(32*bps)-1;
744 else
745 return ((clk*2)+16*bps)/(16*bps)-1;
746}
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900747#define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900748#elif defined(__H8300H__) || defined(__H8300S__)
749#define SCBRR_VALUE(bps, clk) (((clk*1000/32)/bps)-1)
Marek Vasutaa329a82018-01-22 01:43:25 +0100750#elif defined(CONFIG_RCAR_GEN2)
Nobuhiro Iwamatsu65653302014-07-28 15:07:44 +0900751#define DL_VALUE(bps, clk) (clk / bps / 16) /* External Clock */
Vladimir Barinov3ed0b622015-07-20 20:49:39 +0300752 #if defined(CONFIG_SCIF_A)
753 #define SCBRR_VALUE(bps, clk) (clk / bps / 16 - 1) /* Internal Clock */
754 #else
755 #define SCBRR_VALUE(bps, clk) (clk / bps / 32 - 1) /* Internal Clock */
756 #endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900757#else /* Generic SH */
758#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1)
759#endif
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900760
761#ifndef DL_VALUE
762#define DL_VALUE(bps, clk) 0
763#endif