blob: fe8cde4dedb5ffe3ea9c33779841038cbc9e90d6 [file] [log] [blame]
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +09001/*
2 * Copy and modify from linux/drivers/serial/sh-sci.h
3 */
4
5struct uart_port {
6 unsigned long iobase; /* in/out[bwl] */
7 unsigned char *membase; /* read/write[bwl] */
8 unsigned long mapbase; /* for ioremap */
9 unsigned int type; /* port type */
10};
11
12#define PORT_SCI 52
13#define PORT_SCIF 53
14#define PORT_SCIFA 83
15#define PORT_SCIFB 93
16
17#if defined(CONFIG_H83007) || defined(CONFIG_H83068)
18#include <asm/regs306x.h>
19#endif
20#if defined(CONFIG_H8S2678)
21#include <asm/regs267x.h>
22#endif
23
24#if defined(CONFIG_CPU_SH7706) || \
25 defined(CONFIG_CPU_SH7707) || \
26 defined(CONFIG_CPU_SH7708) || \
27 defined(CONFIG_CPU_SH7709)
28# define SCPCR 0xA4000116 /* 16 bit SCI and SCIF */
29# define SCPDR 0xA4000136 /* 8 bit SCI and SCIF */
30# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
31#elif defined(CONFIG_CPU_SH7705)
32# define SCIF0 0xA4400000
33# define SCIF2 0xA4410000
34# define SCSMR_Ir 0xA44A0000
35# define IRDA_SCIF SCIF0
36# define SCPCR 0xA4000116
37# define SCPDR 0xA4000136
38
39/* Set the clock source,
40 * SCIF2 (0xA4410000) -> External clock, SCK pin used as clock input
41 * SCIF0 (0xA4400000) -> Internal clock, SCK pin as serial clock output
42 */
43# define SCSCR_INIT(port) (port->mapbase == SCIF2) ? 0xF3 : 0xF0
44#elif defined(CONFIG_CPU_SH7720) || \
45 defined(CONFIG_CPU_SH7721) || \
46 defined(CONFIG_ARCH_SH7367) || \
47 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsuc3d6a352012-06-21 13:21:32 +090048 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanod61678e2012-06-25 10:29:56 +090049 defined(CONFIG_SH73A0) || \
50 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +090051# define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */
52# define PORT_PTCR 0xA405011EUL
53# define PORT_PVCR 0xA4050122UL
54# define SCIF_ORER 0x0200 /* overrun error bit */
55#elif defined(CONFIG_SH_RTS7751R2D)
56# define SCSPTR1 0xFFE0001C /* 8 bit SCIF */
57# define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
58# define SCIF_ORER 0x0001 /* overrun error bit */
59# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
60#elif defined(CONFIG_CPU_SH7750) || \
61 defined(CONFIG_CPU_SH7750R) || \
62 defined(CONFIG_CPU_SH7750S) || \
63 defined(CONFIG_CPU_SH7091) || \
64 defined(CONFIG_CPU_SH7751) || \
65 defined(CONFIG_CPU_SH7751R)
66# define SCSPTR1 0xffe0001c /* 8 bit SCI */
67# define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
68# define SCIF_ORER 0x0001 /* overrun error bit */
69# define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? \
70 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \
71 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */)
72#elif defined(CONFIG_CPU_SH7760)
73# define SCSPTR0 0xfe600024 /* 16 bit SCIF */
74# define SCSPTR1 0xfe610024 /* 16 bit SCIF */
75# define SCSPTR2 0xfe620024 /* 16 bit SCIF */
76# define SCIF_ORER 0x0001 /* overrun error bit */
77# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
78#elif defined(CONFIG_CPU_SH7710) || defined(CONFIG_CPU_SH7712)
79# define SCSPTR0 0xA4400000 /* 16 bit SCIF */
80# define SCIF_ORER 0x0001 /* overrun error bit */
81# define PACR 0xa4050100
82# define PBCR 0xa4050102
83# define SCSCR_INIT(port) 0x3B
84#elif defined(CONFIG_CPU_SH7343)
85# define SCSPTR0 0xffe00010 /* 16 bit SCIF */
86# define SCSPTR1 0xffe10010 /* 16 bit SCIF */
87# define SCSPTR2 0xffe20010 /* 16 bit SCIF */
88# define SCSPTR3 0xffe30010 /* 16 bit SCIF */
89# define SCSCR_INIT(port) 0x32 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0,CKE=1 */
90#elif defined(CONFIG_CPU_SH7722)
91# define PADR 0xA4050120
Nobuhiro Iwamatsu99057062010-11-24 13:24:33 +090092# undef PSDR
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +090093# define PSDR 0xA405013e
94# define PWDR 0xA4050166
95# define PSCR 0xA405011E
96# define SCIF_ORER 0x0001 /* overrun error bit */
97# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
98#elif defined(CONFIG_CPU_SH7366)
99# define SCPDR0 0xA405013E /* 16 bit SCIF0 PSDR */
100# define SCSPTR0 SCPDR0
101# define SCIF_ORER 0x0001 /* overrun error bit */
102# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
103#elif defined(CONFIG_CPU_SH7723)
104# define SCSPTR0 0xa4050160
105# define SCSPTR1 0xa405013e
106# define SCSPTR2 0xa4050160
107# define SCSPTR3 0xa405013e
108# define SCSPTR4 0xa4050128
109# define SCSPTR5 0xa4050128
110# define SCIF_ORER 0x0001 /* overrun error bit */
111# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
112#elif defined(CONFIG_CPU_SH7724)
113# define SCIF_ORER 0x0001 /* overrun error bit */
114# define SCSCR_INIT(port) ((port)->type == PORT_SCIFA ? \
115 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \
116 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */)
Nobuhiro Iwamatsu2a57e7e2012-01-11 10:45:01 +0900117#elif defined(CONFIG_CPU_SH7734)
118# define SCSPTR0 0xFFE40020
119# define SCSPTR1 0xFFE41020
120# define SCSPTR2 0xFFE42020
121# define SCSPTR3 0xFFE43020
122# define SCSPTR4 0xFFE44020
123# define SCSPTR5 0xFFE45020
124# define SCIF_ORER 0x0001 /* overrun error bit */
125# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900126#elif defined(CONFIG_CPU_SH4_202)
127# define SCSPTR2 0xffe80020 /* 16 bit SCIF */
128# define SCIF_ORER 0x0001 /* overrun error bit */
129# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
130#elif defined(CONFIG_CPU_SH5_101) || defined(CONFIG_CPU_SH5_103)
131# define SCIF_BASE_ADDR 0x01030000
132# define SCIF_ADDR_SH5 (PHYS_PERIPHERAL_BLOCK+SCIF_BASE_ADDR)
133# define SCIF_PTR2_OFFS 0x0000020
134# define SCIF_LSR2_OFFS 0x0000024
135# define SCSPTR\
136 ((port->mapbase)+SCIF_PTR2_OFFS) /* 16 bit SCIF */
137# define SCLSR2\
138 ((port->mapbase)+SCIF_LSR2_OFFS) /* 16 bit SCIF */
139# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0, TE=1,RE=1,REIE=1 */
140#elif defined(CONFIG_H83007) || defined(CONFIG_H83068)
141# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
142# define H8300_SCI_DR(ch) (*(volatile char *)(P1DR + h8300_sci_pins[ch].port))
143#elif defined(CONFIG_H8S2678)
144# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
145# define H8300_SCI_DR(ch) (*(volatile char *)(P1DR + h8300_sci_pins[ch].port))
Yoshihiro Shimodaf3bf2122013-12-18 16:04:20 +0900146#elif defined(CONFIG_CPU_SH7757) || \
147 defined(CONFIG_CPU_SH7752) || \
148 defined(CONFIG_CPU_SH7753)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900149# define SCSPTR0 0xfe4b0020
150# define SCSPTR1 0xfe4b0020
151# define SCSPTR2 0xfe4b0020
152# define SCIF_ORER 0x0001
153# define SCSCR_INIT(port) 0x38
154# define SCIF_ONLY
155#elif defined(CONFIG_CPU_SH7763)
156# define SCSPTR0 0xffe00024 /* 16 bit SCIF */
157# define SCSPTR1 0xffe08024 /* 16 bit SCIF */
158# define SCSPTR2 0xffe10020 /* 16 bit SCIF/IRDA */
159# define SCIF_ORER 0x0001 /* overrun error bit */
160# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
161#elif defined(CONFIG_CPU_SH7770)
162# define SCSPTR0 0xff923020 /* 16 bit SCIF */
163# define SCSPTR1 0xff924020 /* 16 bit SCIF */
164# define SCSPTR2 0xff925020 /* 16 bit SCIF */
165# define SCIF_ORER 0x0001 /* overrun error bit */
166# define SCSCR_INIT(port) 0x3c /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,cke=2 */
167#elif defined(CONFIG_CPU_SH7780)
168# define SCSPTR0 0xffe00024 /* 16 bit SCIF */
169# define SCSPTR1 0xffe10024 /* 16 bit SCIF */
170# define SCIF_ORER 0x0001 /* Overrun error bit */
171
172#if defined(CONFIG_SH_SH2007)
173/* TIE=0,RIE=0,TE=1,RE=1,REIE=1,CKE1=0 */
174# define SCSCR_INIT(port) 0x38
175#else
176/* TIE=0,RIE=0,TE=1,RE=1,REIE=1,CKE1=1 */
177# define SCSCR_INIT(port) 0x3a
178#endif
179
180#elif defined(CONFIG_CPU_SH7785) || \
181 defined(CONFIG_CPU_SH7786)
182# define SCSPTR0 0xffea0024 /* 16 bit SCIF */
183# define SCSPTR1 0xffeb0024 /* 16 bit SCIF */
184# define SCSPTR2 0xffec0024 /* 16 bit SCIF */
185# define SCSPTR3 0xffed0024 /* 16 bit SCIF */
186# define SCSPTR4 0xffee0024 /* 16 bit SCIF */
187# define SCSPTR5 0xffef0024 /* 16 bit SCIF */
188# define SCIF_ORER 0x0001 /* Overrun error bit */
189# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
190#elif defined(CONFIG_CPU_SH7201) || \
191 defined(CONFIG_CPU_SH7203) || \
192 defined(CONFIG_CPU_SH7206) || \
Phil Edworthy7fbeb642011-06-01 07:35:13 +0100193 defined(CONFIG_CPU_SH7263) || \
194 defined(CONFIG_CPU_SH7264)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900195# define SCSPTR0 0xfffe8020 /* 16 bit SCIF */
196# define SCSPTR1 0xfffe8820 /* 16 bit SCIF */
197# define SCSPTR2 0xfffe9020 /* 16 bit SCIF */
198# define SCSPTR3 0xfffe9820 /* 16 bit SCIF */
199# if defined(CONFIG_CPU_SH7201)
200# define SCSPTR4 0xfffeA020 /* 16 bit SCIF */
201# define SCSPTR5 0xfffeA820 /* 16 bit SCIF */
202# define SCSPTR6 0xfffeB020 /* 16 bit SCIF */
203# define SCSPTR7 0xfffeB820 /* 16 bit SCIF */
204# endif
205# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Phil Edworthy99744b72012-05-15 22:15:51 +0000206#elif defined(CONFIG_CPU_SH7269)
207# define SCSPTR0 0xe8007020 /* 16 bit SCIF */
208# define SCSPTR1 0xe8007820 /* 16 bit SCIF */
209# define SCSPTR2 0xe8008020 /* 16 bit SCIF */
210# define SCSPTR3 0xe8008820 /* 16 bit SCIF */
211# define SCSPTR4 0xe8009020 /* 16 bit SCIF */
212# define SCSPTR5 0xe8009820 /* 16 bit SCIF */
213# define SCSPTR6 0xe800a020 /* 16 bit SCIF */
214# define SCSPTR7 0xe800a820 /* 16 bit SCIF */
215# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900216#elif defined(CONFIG_CPU_SH7619)
217# define SCSPTR0 0xf8400020 /* 16 bit SCIF */
218# define SCSPTR1 0xf8410020 /* 16 bit SCIF */
219# define SCSPTR2 0xf8420020 /* 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 */
222#elif defined(CONFIG_CPU_SHX3)
223# define SCSPTR0 0xffc30020 /* 16 bit SCIF */
224# define SCSPTR1 0xffc40020 /* 16 bit SCIF */
225# define SCSPTR2 0xffc50020 /* 16 bit SCIF */
226# define SCSPTR3 0xffc60020 /* 16 bit SCIF */
227# define SCIF_ORER 0x0001 /* Overrun error bit */
228# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Nobuhiro Iwamatsu2f972a32014-06-24 17:03:20 +0900229#elif defined(CONFIG_R8A7790) || defined(CONFIG_R8A7791) || \
230 defined(CONFIG_R8A7794)
Nobuhiro Iwamatsu48ca8822013-07-23 13:58:20 +0900231# define SCIF_ORER 0x0001
232# define SCSCR_INIT(port) 0x32 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0, */
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900233#else
234# error CPU subtype not defined
235#endif
236
237/* SCSCR */
238#define SCI_CTRL_FLAGS_TIE 0x80 /* all */
239#define SCI_CTRL_FLAGS_RIE 0x40 /* all */
240#define SCI_CTRL_FLAGS_TE 0x20 /* all */
241#define SCI_CTRL_FLAGS_RE 0x10 /* all */
242#if defined(CONFIG_CPU_SH7750) || \
243 defined(CONFIG_CPU_SH7091) || \
244 defined(CONFIG_CPU_SH7750R) || \
245 defined(CONFIG_CPU_SH7722) || \
Nobuhiro Iwamatsu2a57e7e2012-01-11 10:45:01 +0900246 defined(CONFIG_CPU_SH7734) || \
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900247 defined(CONFIG_CPU_SH7750S) || \
248 defined(CONFIG_CPU_SH7751) || \
249 defined(CONFIG_CPU_SH7751R) || \
250 defined(CONFIG_CPU_SH7763) || \
251 defined(CONFIG_CPU_SH7780) || \
252 defined(CONFIG_CPU_SH7785) || \
253 defined(CONFIG_CPU_SH7786) || \
254 defined(CONFIG_CPU_SHX3)
255#define SCI_CTRL_FLAGS_REIE 0x08 /* 7750 SCIF */
256#elif defined(CONFIG_CPU_SH7724)
257#define SCI_CTRL_FLAGS_REIE ((port)->type == PORT_SCIFA ? 0 : 8)
258#else
259#define SCI_CTRL_FLAGS_REIE 0
260#endif
261/* SCI_CTRL_FLAGS_MPIE 0x08 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
262/* SCI_CTRL_FLAGS_TEIE 0x04 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
263/* SCI_CTRL_FLAGS_CKE1 0x02 * all */
264/* SCI_CTRL_FLAGS_CKE0 0x01 * 7707 SCI/SCIF, 7708 SCI, 7709 SCI/SCIF, 7750 SCI */
265
266/* SCxSR SCI */
267#define SCI_TDRE 0x80 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
268#define SCI_RDRF 0x40 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
269#define SCI_ORER 0x20 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
270#define SCI_FER 0x10 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
271#define SCI_PER 0x08 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
272#define SCI_TEND 0x04 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
273/* SCI_MPB 0x02 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
274/* SCI_MPBT 0x01 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
275
276#define SCI_ERRORS ( SCI_PER | SCI_FER | SCI_ORER)
277
278/* SCxSR SCIF */
279#define SCIF_ER 0x0080 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
280#define SCIF_TEND 0x0040 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
281#define SCIF_TDFE 0x0020 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
282#define SCIF_BRK 0x0010 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
283#define SCIF_FER 0x0008 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
284#define SCIF_PER 0x0004 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
285#define SCIF_RDF 0x0002 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
286#define SCIF_DR 0x0001 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
287
288#if defined(CONFIG_CPU_SH7705) || \
289 defined(CONFIG_CPU_SH7720) || \
290 defined(CONFIG_CPU_SH7721) || \
291 defined(CONFIG_ARCH_SH7367) || \
292 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsuc3d6a352012-06-21 13:21:32 +0900293 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanod61678e2012-06-25 10:29:56 +0900294 defined(CONFIG_SH73A0) || \
295 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900296# define SCIF_ORER 0x0200
297# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER)
298# define SCIF_RFDC_MASK 0x007f
299# define SCIF_TXROOM_MAX 64
300#elif defined(CONFIG_CPU_SH7763)
301# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
302# define SCIF_RFDC_MASK 0x007f
303# define SCIF_TXROOM_MAX 64
304/* SH7763 SCIF2 support */
305# define SCIF2_RFDC_MASK 0x001f
306# define SCIF2_TXROOM_MAX 16
Nobuhiro Iwamatsu7f2013d2013-09-10 10:26:04 +0900307#elif defined(CONFIG_R8A7790) || defined(CONFIG_R8A7791)
Nobuhiro Iwamatsu48ca8822013-07-23 13:58:20 +0900308# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
309# define SCIF_RFDC_MASK 0x003f
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900310#else
311# define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
312# define SCIF_RFDC_MASK 0x001f
313# define SCIF_TXROOM_MAX 16
314#endif
315
316#ifndef SCIF_ORER
317#define SCIF_ORER 0x0000
318#endif
319
320#define SCxSR_TEND(port)\
321 (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
322#define SCxSR_ERRORS(port)\
323 (((port)->type == PORT_SCI) ? SCI_ERRORS : SCIF_ERRORS)
324#define SCxSR_RDxF(port)\
325 (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
326#define SCxSR_TDxE(port)\
327 (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
328#define SCxSR_FER(port)\
329 (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
330#define SCxSR_PER(port)\
331 (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
332#define SCxSR_BRK(port)\
333 ((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
334#define SCxSR_ORER(port)\
335 (((port)->type == PORT_SCI) ? SCI_ORER : SCIF_ORER)
336
337#if defined(CONFIG_CPU_SH7705) || \
338 defined(CONFIG_CPU_SH7720) || \
339 defined(CONFIG_CPU_SH7721) || \
340 defined(CONFIG_ARCH_SH7367) || \
341 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsuc3d6a352012-06-21 13:21:32 +0900342 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanod61678e2012-06-25 10:29:56 +0900343 defined(CONFIG_SH73A0) || \
344 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900345# define SCxSR_RDxF_CLEAR(port) (sci_in(port, SCxSR) & 0xfffc)
346# define SCxSR_ERROR_CLEAR(port) (sci_in(port, SCxSR) & 0xfd73)
347# define SCxSR_TDxE_CLEAR(port) (sci_in(port, SCxSR) & 0xffdf)
348# define SCxSR_BREAK_CLEAR(port) (sci_in(port, SCxSR) & 0xffe3)
349#else
350# define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
351# define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
352# define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
353# define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3)
354#endif
355
356/* SCFCR */
357#define SCFCR_RFRST 0x0002
358#define SCFCR_TFRST 0x0004
359#define SCFCR_TCRST 0x4000
360#define SCFCR_MCE 0x0008
361
362#define SCI_MAJOR 204
363#define SCI_MINOR_START 8
364
365/* Generic serial flags */
366#define SCI_RX_THROTTLE 0x0000001
367
368#define SCI_MAGIC 0xbabeface
369
370/*
371 * Events are used to schedule things to happen at timer-interrupt
372 * time, instead of at rs interrupt time.
373 */
374#define SCI_EVENT_WRITE_WAKEUP 0
375
376#define SCI_IN(size, offset)\
377 if ((size) == 8) {\
378 return readb(port->membase + (offset));\
379 } else {\
380 return readw(port->membase + (offset));\
381 }
382#define SCI_OUT(size, offset, value)\
383 if ((size) == 8) {\
384 writeb(value, port->membase + (offset));\
385 } else if ((size) == 16) {\
386 writew(value, port->membase + (offset));\
387 }
388
389#define CPU_SCIx_FNS(name, sci_offset, sci_size, scif_offset, scif_size)\
390 static inline unsigned int sci_##name##_in(struct uart_port *port) {\
391 if (port->type == PORT_SCIF || port->type == PORT_SCIFB) {\
392 SCI_IN(scif_size, scif_offset)\
393 } else { /* PORT_SCI or PORT_SCIFA */\
394 SCI_IN(sci_size, sci_offset);\
395 }\
396 }\
397static inline void sci_##name##_out(struct uart_port *port,\
398 unsigned int value) {\
399 if (port->type == PORT_SCIF || port->type == PORT_SCIFB) {\
400 SCI_OUT(scif_size, scif_offset, value)\
401 } else { /* PORT_SCI or PORT_SCIFA */\
402 SCI_OUT(sci_size, sci_offset, value);\
403 }\
404}
405
406#ifdef CONFIG_H8300
407/* h8300 don't have SCIF */
408#define CPU_SCIF_FNS(name) \
409 static inline unsigned int sci_##name##_in(struct uart_port *port) {\
410 return 0;\
411 }\
412 static inline void sci_##name##_out(struct uart_port *port,\
413 unsigned int value) {\
414 }
415#else
416#define CPU_SCIF_FNS(name, scif_offset, scif_size) \
417 static inline unsigned int sci_##name##_in(struct uart_port *port) {\
418 SCI_IN(scif_size, scif_offset);\
419 }\
420 static inline void sci_##name##_out(struct uart_port *port,\
421 unsigned int value) {\
422 SCI_OUT(scif_size, scif_offset, value);\
423 }
424#endif
425
426#define CPU_SCI_FNS(name, sci_offset, sci_size)\
427 static inline unsigned int sci_##name##_in(struct uart_port *port) {\
428 SCI_IN(sci_size, sci_offset);\
429 }\
430 static inline void sci_##name##_out(struct uart_port *port,\
431 unsigned int value) {\
432 SCI_OUT(sci_size, sci_offset, value);\
433 }
434
435#if defined(CONFIG_SH3) || \
436 defined(CONFIG_ARCH_SH7367) || \
437 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsuc3d6a352012-06-21 13:21:32 +0900438 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanod61678e2012-06-25 10:29:56 +0900439 defined(CONFIG_SH73A0) || \
440 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900441#if defined(CONFIG_CPU_SH7710) || defined(CONFIG_CPU_SH7712)
442#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
443 sh4_sci_offset, sh4_sci_size, \
444 sh3_scif_offset, sh3_scif_size, \
445 sh4_scif_offset, sh4_scif_size, \
446 h8_sci_offset, h8_sci_size) \
447 CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size,\
448 sh4_scif_offset, sh4_scif_size)
449#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
450 sh4_scif_offset, sh4_scif_size) \
451 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
452#elif defined(CONFIG_CPU_SH7705) || \
453 defined(CONFIG_CPU_SH7720) || \
454 defined(CONFIG_CPU_SH7721) || \
455 defined(CONFIG_ARCH_SH7367) || \
Nobuhiro Iwamatsuc3d6a352012-06-21 13:21:32 +0900456 defined(CONFIG_ARCH_SH7377) || \
457 defined(CONFIG_SH73A0)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900458#define SCIF_FNS(name, scif_offset, scif_size) \
459 CPU_SCIF_FNS(name, scif_offset, scif_size)
Hideyuki Sanod61678e2012-06-25 10:29:56 +0900460#elif defined(CONFIG_ARCH_SH7372) || \
461 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900462#define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
463 sh4_scifb_offset, sh4_scifb_size) \
464 CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
465 sh4_scifb_offset, sh4_scifb_size)
466#define SCIF_FNS(name, scif_offset, scif_size) \
467 CPU_SCIF_FNS(name, scif_offset, scif_size)
468#else
469#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
470 sh4_sci_offset, sh4_sci_size, \
471 sh3_scif_offset, sh3_scif_size,\
472 sh4_scif_offset, sh4_scif_size, \
473 h8_sci_offset, h8_sci_size) \
474 CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
475 sh3_scif_offset, sh3_scif_size)
476#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
477 sh4_scif_offset, sh4_scif_size) \
478 CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size)
479#endif
480#elif defined(__H8300H__) || defined(__H8300S__)
481#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
482 sh4_sci_offset, sh4_sci_size, \
483 sh3_scif_offset, sh3_scif_size,\
484 sh4_scif_offset, sh4_scif_size, \
485 h8_sci_offset, h8_sci_size) \
486 CPU_SCI_FNS(name, h8_sci_offset, h8_sci_size)
487#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
488 sh4_scif_offset, sh4_scif_size) \
489 CPU_SCIF_FNS(name)
490#elif defined(CONFIG_CPU_SH7723) || defined(CONFIG_CPU_SH7724)
491 #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
492 sh4_scif_offset, sh4_scif_size) \
493 CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
494 sh4_scif_offset, sh4_scif_size)
495 #define SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) \
496 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
497#else
498#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
499 sh4_sci_offset, sh4_sci_size, \
500 sh3_scif_offset, sh3_scif_size,\
501 sh4_scif_offset, sh4_scif_size, \
502 h8_sci_offset, h8_sci_size) \
503 CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size,\
504 sh4_scif_offset, sh4_scif_size)
505#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, \
506 sh4_scif_offset, sh4_scif_size) \
507 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
508#endif
509
510#if defined(CONFIG_CPU_SH7705) || \
511 defined(CONFIG_CPU_SH7720) || \
512 defined(CONFIG_CPU_SH7721) || \
513 defined(CONFIG_ARCH_SH7367) || \
Nobuhiro Iwamatsuc3d6a352012-06-21 13:21:32 +0900514 defined(CONFIG_ARCH_SH7377) || \
515 defined(CONFIG_SH73A0)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900516
517SCIF_FNS(SCSMR, 0x00, 16)
518SCIF_FNS(SCBRR, 0x04, 8)
519SCIF_FNS(SCSCR, 0x08, 16)
520SCIF_FNS(SCTDSR, 0x0c, 8)
521SCIF_FNS(SCFER, 0x10, 16)
522SCIF_FNS(SCxSR, 0x14, 16)
523SCIF_FNS(SCFCR, 0x18, 16)
524SCIF_FNS(SCFDR, 0x1c, 16)
525SCIF_FNS(SCxTDR, 0x20, 8)
526SCIF_FNS(SCxRDR, 0x24, 8)
527SCIF_FNS(SCLSR, 0x00, 0)
Hideyuki Sanod61678e2012-06-25 10:29:56 +0900528#elif defined(CONFIG_ARCH_SH7372) || \
529 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsu3f6c8e32010-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)
543#elif defined(CONFIG_CPU_SH7723) ||\
544 defined(CONFIG_CPU_SH7724)
545SCIx_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)
557#else
558/* reg SCI/SH3 SCI/SH4 SCIF/SH3 SCIF/SH4 SCI/H8*/
559/* name off sz off sz off sz off sz off sz*/
560SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16, 0x00, 8)
561SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8, 0x01, 8)
562SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16, 0x02, 8)
563SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8, 0x03, 8)
564SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16, 0x04, 8)
565SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8, 0x05, 8)
566SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16)
567#if defined(CONFIG_CPU_SH7760) || \
568 defined(CONFIG_CPU_SH7780) || \
569 defined(CONFIG_CPU_SH7785) || \
570 defined(CONFIG_CPU_SH7786)
571SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
572SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
573SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
574SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
575SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
576#elif defined(CONFIG_CPU_SH7763)
577SCIF_FNS(SCFDR, 0, 0, 0x1C, 16)
578SCIF_FNS(SCSPTR2, 0, 0, 0x20, 16)
579SCIF_FNS(SCLSR2, 0, 0, 0x24, 16)
580SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
581SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
582SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
583SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
584#else
585SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
586#if defined(CONFIG_CPU_SH7722)
587SCIF_FNS(SCSPTR, 0, 0, 0, 0)
588#else
589SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
590#endif
Nobuhiro Iwamatsu1a223c92014-07-28 15:07:43 +0900591#if defined(CONFIG_R8A7790) || defined(CONFIG_R8A7791) || \
592 defined(CONFIG_R8A7794)
Nobuhiro Iwamatsu48ca8822013-07-23 13:58:20 +0900593SCIF_FNS(DL, 0, 0, 0x30, 16)
594SCIF_FNS(CKS, 0, 0, 0x34, 16)
595#endif
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900596SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
597#endif
598#endif
599#define sci_in(port, reg) sci_##reg##_in(port)
600#define sci_out(port, reg, value) sci_##reg##_out(port, value)
601
602/* H8/300 series SCI pins assignment */
603#if defined(__H8300H__) || defined(__H8300S__)
604static const struct __attribute__((packed)) {
605 int port; /* GPIO port no */
606 unsigned short rx, tx; /* GPIO bit no */
607} h8300_sci_pins[] = {
608#if defined(CONFIG_H83007) || defined(CONFIG_H83068)
609 { /* SCI0 */
610 .port = H8300_GPIO_P9,
611 .rx = H8300_GPIO_B2,
612 .tx = H8300_GPIO_B0,
613 },
614 { /* SCI1 */
615 .port = H8300_GPIO_P9,
616 .rx = H8300_GPIO_B3,
617 .tx = H8300_GPIO_B1,
618 },
619 { /* SCI2 */
620 .port = H8300_GPIO_PB,
621 .rx = H8300_GPIO_B7,
622 .tx = H8300_GPIO_B6,
623 }
624#elif defined(CONFIG_H8S2678)
625 { /* SCI0 */
626 .port = H8300_GPIO_P3,
627 .rx = H8300_GPIO_B2,
628 .tx = H8300_GPIO_B0,
629 },
630 { /* SCI1 */
631 .port = H8300_GPIO_P3,
632 .rx = H8300_GPIO_B3,
633 .tx = H8300_GPIO_B1,
634 },
635 { /* SCI2 */
636 .port = H8300_GPIO_P5,
637 .rx = H8300_GPIO_B1,
638 .tx = H8300_GPIO_B0,
639 }
640#endif
641};
642#endif
643
644#if defined(CONFIG_CPU_SH7706) || \
645 defined(CONFIG_CPU_SH7707) || \
646 defined(CONFIG_CPU_SH7708) || \
647 defined(CONFIG_CPU_SH7709)
648static inline int sci_rxd_in(struct uart_port *port)
649{
650 if (port->mapbase == 0xfffffe80)
651 return __raw_readb(SCPDR)&0x01 ? 1 : 0; /* SCI */
652 return 1;
653}
654#elif defined(CONFIG_CPU_SH7750) || \
655 defined(CONFIG_CPU_SH7751) || \
656 defined(CONFIG_CPU_SH7751R) || \
657 defined(CONFIG_CPU_SH7750R) || \
658 defined(CONFIG_CPU_SH7750S) || \
659 defined(CONFIG_CPU_SH7091)
660static inline int sci_rxd_in(struct uart_port *port)
661{
662 if (port->mapbase == 0xffe00000)
663 return __raw_readb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */
664 return 1;
665}
666#elif defined(__H8300H__) || defined(__H8300S__)
667static inline int sci_rxd_in(struct uart_port *port)
668{
669 int ch = (port->mapbase - SMR0) >> 3;
670 return (H8300_SCI_DR(ch) & h8300_sci_pins[ch].rx) ? 1 : 0;
671}
672#else /* default case for non-SCI processors */
673static inline int sci_rxd_in(struct uart_port *port)
674{
675 return 1;
676}
677#endif
678
679/*
680 * Values for the BitRate Register (SCBRR)
681 *
682 * The values are actually divisors for a frequency which can
683 * be internal to the SH3 (14.7456MHz) or derived from an external
684 * clock source. This driver assumes the internal clock is used;
685 * to support using an external clock source, config options or
686 * possibly command-line options would need to be added.
687 *
688 * Also, to support speeds below 2400 (why?) the lower 2 bits of
689 * the SCSMR register would also need to be set to non-zero values.
690 *
691 * -- Greg Banks 27Feb2000
692 *
693 * Answer: The SCBRR register is only eight bits, and the value in
694 * it gets larger with lower baud rates. At around 2400 (depending on
695 * the peripherial module clock) you run out of bits. However the
696 * lower two bits of SCSMR allow the module clock to be divided down,
697 * scaling the value which is needed in SCBRR.
698 *
699 * -- Stuart Menefy - 23 May 2000
700 *
701 * I meant, why would anyone bother with bitrates below 2400.
702 *
703 * -- Greg Banks - 7Jul2000
704 *
705 * You "speedist"! How will I use my 110bps ASR-33 teletype with paper
706 * tape reader as a console!
707 *
708 * -- Mitch Davis - 15 Jul 2000
709 */
710
711#if (defined(CONFIG_CPU_SH7780) || \
712 defined(CONFIG_CPU_SH7785) || \
713 defined(CONFIG_CPU_SH7786)) && \
714 !defined(CONFIG_SH_SH2007)
715#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1)
716#elif defined(CONFIG_CPU_SH7705) || \
717 defined(CONFIG_CPU_SH7720) || \
718 defined(CONFIG_CPU_SH7721) || \
719 defined(CONFIG_ARCH_SH7367) || \
720 defined(CONFIG_ARCH_SH7377) || \
Nobuhiro Iwamatsuc3d6a352012-06-21 13:21:32 +0900721 defined(CONFIG_ARCH_SH7372) || \
Hideyuki Sanod61678e2012-06-25 10:29:56 +0900722 defined(CONFIG_SH73A0) || \
723 defined(CONFIG_R8A7740)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900724#define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1)
725#elif defined(CONFIG_CPU_SH7723) ||\
726 defined(CONFIG_CPU_SH7724)
Nobuhiro Iwamatsuf3038cd2010-11-24 13:42:13 +0900727static inline int scbrr_calc(struct uart_port port, int bps, int clk)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900728{
Nobuhiro Iwamatsuf3038cd2010-11-24 13:42:13 +0900729 if (port.type == PORT_SCIF)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900730 return (clk+16*bps)/(32*bps)-1;
731 else
732 return ((clk*2)+16*bps)/(16*bps)-1;
733}
Nobuhiro Iwamatsuf3038cd2010-11-24 13:42:13 +0900734#define SCBRR_VALUE(bps, clk) scbrr_calc(sh_sci, bps, clk)
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900735#elif defined(__H8300H__) || defined(__H8300S__)
736#define SCBRR_VALUE(bps, clk) (((clk*1000/32)/bps)-1)
Nobuhiro Iwamatsu7f2013d2013-09-10 10:26:04 +0900737#elif defined(CONFIG_R8A7790) || defined(CONFIG_R8A7791)
Nobuhiro Iwamatsu53022c32014-07-28 15:07:44 +0900738#define DL_VALUE(bps, clk) (clk / bps / 16) /* External Clock */
739#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1) /* Internal Clock */
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900740#else /* Generic SH */
741#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1)
742#endif