blob: 38072c15b845d5d2877f18fa1ed5fcb6fb5c12a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/serial_core.h>
Paul Mundte108b2c2006-09-27 16:32:13 +09002#include <asm/io.h>
Magnus Damm69edbba2008-12-25 18:17:34 +09003#include <linux/gpio.h>
Markus Brunner3ea6bc32007-08-20 08:59:33 +09004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#if defined(CONFIG_H83007) || defined(CONFIG_H83068)
6#include <asm/regs306x.h>
7#endif
8#if defined(CONFIG_H8S2678)
9#include <asm/regs267x.h>
10#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Magnus Damm0fbde952007-07-26 10:14:16 +090012#if defined(CONFIG_CPU_SUBTYPE_SH7706) || \
13 defined(CONFIG_CPU_SUBTYPE_SH7707) || \
14 defined(CONFIG_CPU_SUBTYPE_SH7708) || \
15 defined(CONFIG_CPU_SUBTYPE_SH7709)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016# define SCPCR 0xA4000116 /* 16 bit SCI and SCIF */
17# define SCPDR 0xA4000136 /* 8 bit SCI and SCIF */
18# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#elif defined(CONFIG_CPU_SUBTYPE_SH7705)
20# define SCIF0 0xA4400000
21# define SCIF2 0xA4410000
Paul Mundtb7a76e42006-02-01 03:06:06 -080022# define SCSMR_Ir 0xA44A0000
23# define IRDA_SCIF SCIF0
Linus Torvalds1da177e2005-04-16 15:20:36 -070024# define SCPCR 0xA4000116
25# define SCPDR 0xA4000136
26
27/* Set the clock source,
28 * SCIF2 (0xA4410000) -> External clock, SCK pin used as clock input
29 * SCIF0 (0xA4400000) -> Internal clock, SCK pin as serial clock output
30 */
31# define SCSCR_INIT(port) (port->mapbase == SCIF2) ? 0xF3 : 0xF0
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +090032#elif defined(CONFIG_CPU_SUBTYPE_SH7720) || \
33 defined(CONFIG_CPU_SUBTYPE_SH7721)
Markus Brunner3ea6bc32007-08-20 08:59:33 +090034# define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */
Paul Mundtfd88cac2009-01-09 16:32:08 +090035# define PORT_PTCR 0xA405011EUL
36# define PORT_PVCR 0xA4050122UL
37# define SCIF_ORER 0x0200 /* overrun error bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#elif defined(CONFIG_SH_RTS7751R2D)
Matt Fleming7abc4042008-10-29 07:16:02 +000039# define SCSPTR1 0xFFE0001C /* 8 bit SCIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040# define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
41# define SCIF_ORER 0x0001 /* overrun error bit */
42# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt05627482007-05-15 16:25:47 +090043#elif defined(CONFIG_CPU_SUBTYPE_SH7750) || \
44 defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
45 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
46 defined(CONFIG_CPU_SUBTYPE_SH7091) || \
47 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
48 defined(CONFIG_CPU_SUBTYPE_SH7751R)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049# define SCSPTR1 0xffe0001c /* 8 bit SCI */
50# define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
51# define SCIF_ORER 0x0001 /* overrun error bit */
52# define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? \
53 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \
54 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ )
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#elif defined(CONFIG_CPU_SUBTYPE_SH7760)
Paul Mundtb7a76e42006-02-01 03:06:06 -080056# define SCSPTR0 0xfe600024 /* 16 bit SCIF */
57# define SCSPTR1 0xfe610024 /* 16 bit SCIF */
58# define SCSPTR2 0xfe620024 /* 16 bit SCIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059# define SCIF_ORER 0x0001 /* overrun error bit */
60# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt2b1bd1a2007-06-20 18:27:10 +090061#elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
Paul Mundte108b2c2006-09-27 16:32:13 +090062# define SCSPTR0 0xA4400000 /* 16 bit SCIF */
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +090063# define SCIF_ORER 0x0001 /* overrun error bit */
64# define PACR 0xa4050100
65# define PBCR 0xa4050102
66# define SCSCR_INIT(port) 0x3B
Paul Mundte108b2c2006-09-27 16:32:13 +090067#elif defined(CONFIG_CPU_SUBTYPE_SH7343)
68# define SCSPTR0 0xffe00010 /* 16 bit SCIF */
69# define SCSPTR1 0xffe10010 /* 16 bit SCIF */
70# define SCSPTR2 0xffe20010 /* 16 bit SCIF */
71# define SCSPTR3 0xffe30010 /* 16 bit SCIF */
72# define SCSCR_INIT(port) 0x32 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0,CKE=1 */
Paul Mundt41504c32006-12-11 20:28:03 +090073#elif defined(CONFIG_CPU_SUBTYPE_SH7722)
Magnus Damm346b7462008-04-23 21:25:29 +090074# define PADR 0xA4050120
75# define PSDR 0xA405013e
76# define PWDR 0xA4050166
77# define PSCR 0xA405011E
Paul Mundt41504c32006-12-11 20:28:03 +090078# define SCIF_ORER 0x0001 /* overrun error bit */
79# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Magnus Damm9109a302008-02-08 17:31:24 +090080#elif defined(CONFIG_CPU_SUBTYPE_SH7366)
81# define SCPDR0 0xA405013E /* 16 bit SCIF0 PSDR */
82# define SCSPTR0 SCPDR0
83# define SCIF_ORER 0x0001 /* overrun error bit */
84# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt178dd0c2008-04-09 17:56:18 +090085#elif defined(CONFIG_CPU_SUBTYPE_SH7723)
86# define SCSPTR0 0xa4050160
87# define SCSPTR1 0xa405013e
88# define SCSPTR2 0xa4050160
89# define SCSPTR3 0xa405013e
90# define SCSPTR4 0xa4050128
91# define SCSPTR5 0xa4050128
92# define SCIF_ORER 0x0001 /* overrun error bit */
93# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Kuninori Morimoto47948d22009-04-15 11:42:47 +090094#elif defined(CONFIG_CPU_SUBTYPE_SH7724)
95# define SCIF_ORER 0x0001 /* overrun error bit */
96# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#elif defined(CONFIG_CPU_SUBTYPE_SH4_202)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098# define SCSPTR2 0xffe80020 /* 16 bit SCIF */
99# define SCIF_ORER 0x0001 /* overrun error bit */
100# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102# define SCIF_BASE_ADDR 0x01030000
103# define SCIF_ADDR_SH5 PHYS_PERIPHERAL_BLOCK+SCIF_BASE_ADDR
104# define SCIF_PTR2_OFFS 0x0000020
105# define SCIF_LSR2_OFFS 0x0000024
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106# define SCSPTR2 ((port->mapbase)+SCIF_PTR2_OFFS) /* 16 bit SCIF */
107# define SCLSR2 ((port->mapbase)+SCIF_LSR2_OFFS) /* 16 bit SCIF */
Paul Mundtf9669182007-11-07 11:05:32 +0900108# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0, TE=1,RE=1,REIE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#elif defined(CONFIG_H83007) || defined(CONFIG_H83068)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111# define H8300_SCI_DR(ch) *(volatile char *)(P1DR + h8300_sci_pins[ch].port)
112#elif defined(CONFIG_H8S2678)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114# define H8300_SCI_DR(ch) *(volatile char *)(P1DR + h8300_sci_pins[ch].port)
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900115#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
116# define SCSPTR0 0xffe00024 /* 16 bit SCIF */
117# define SCSPTR1 0xffe08024 /* 16 bit SCIF */
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900118# define SCSPTR2 0xffe10020 /* 16 bit SCIF/IRDA */
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900119# define SCIF_ORER 0x0001 /* overrun error bit */
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900120# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800121#elif defined(CONFIG_CPU_SUBTYPE_SH7770)
122# define SCSPTR0 0xff923020 /* 16 bit SCIF */
123# define SCSPTR1 0xff924020 /* 16 bit SCIF */
124# define SCSPTR2 0xff925020 /* 16 bit SCIF */
125# define SCIF_ORER 0x0001 /* overrun error bit */
126# define SCSCR_INIT(port) 0x3c /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,cke=2 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800127#elif defined(CONFIG_CPU_SUBTYPE_SH7780)
128# define SCSPTR0 0xffe00024 /* 16 bit SCIF */
129# define SCSPTR1 0xffe10024 /* 16 bit SCIF */
Paul Mundte108b2c2006-09-27 16:32:13 +0900130# define SCIF_ORER 0x0001 /* Overrun error bit */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800131# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Kuninori Morimoto55ba99e2009-03-03 15:40:25 +0900132#elif defined(CONFIG_CPU_SUBTYPE_SH7785) || \
133 defined(CONFIG_CPU_SUBTYPE_SH7786)
Paul Mundt32351a22007-03-12 14:38:59 +0900134# define SCSPTR0 0xffea0024 /* 16 bit SCIF */
135# define SCSPTR1 0xffeb0024 /* 16 bit SCIF */
136# define SCSPTR2 0xffec0024 /* 16 bit SCIF */
137# define SCSPTR3 0xffed0024 /* 16 bit SCIF */
138# define SCSPTR4 0xffee0024 /* 16 bit SCIF */
139# define SCSPTR5 0xffef0024 /* 16 bit SCIF */
Kuninori Morimoto34aeb432009-02-10 09:04:00 +0000140# define SCIF_ORER 0x0001 /* Overrun error bit */
Paul Mundt32351a22007-03-12 14:38:59 +0900141# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Peter Griffin28259992008-11-28 22:48:20 +0900142#elif defined(CONFIG_CPU_SUBTYPE_SH7201) || \
143 defined(CONFIG_CPU_SUBTYPE_SH7203) || \
Paul Mundta8f67f42007-11-26 19:54:02 +0900144 defined(CONFIG_CPU_SUBTYPE_SH7206) || \
145 defined(CONFIG_CPU_SUBTYPE_SH7263)
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900146# define SCSPTR0 0xfffe8020 /* 16 bit SCIF */
147# define SCSPTR1 0xfffe8820 /* 16 bit SCIF */
148# define SCSPTR2 0xfffe9020 /* 16 bit SCIF */
149# define SCSPTR3 0xfffe9820 /* 16 bit SCIF */
Peter Griffin28259992008-11-28 22:48:20 +0900150# if defined(CONFIG_CPU_SUBTYPE_SH7201)
151# define SCSPTR4 0xfffeA020 /* 16 bit SCIF */
152# define SCSPTR5 0xfffeA820 /* 16 bit SCIF */
153# define SCSPTR6 0xfffeB020 /* 16 bit SCIF */
154# define SCSPTR7 0xfffeB820 /* 16 bit SCIF */
155# endif
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900156# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900157#elif defined(CONFIG_CPU_SUBTYPE_SH7619)
158# define SCSPTR0 0xf8400020 /* 16 bit SCIF */
159# define SCSPTR1 0xf8410020 /* 16 bit SCIF */
160# define SCSPTR2 0xf8420020 /* 16 bit SCIF */
161# define SCIF_ORER 0x0001 /* overrun error bit */
162# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900163#elif defined(CONFIG_CPU_SUBTYPE_SHX3)
164# define SCSPTR0 0xffc30020 /* 16 bit SCIF */
165# define SCSPTR1 0xffc40020 /* 16 bit SCIF */
166# define SCSPTR2 0xffc50020 /* 16 bit SCIF */
167# define SCSPTR3 0xffc60020 /* 16 bit SCIF */
168# define SCIF_ORER 0x0001 /* Overrun error bit */
169# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#else
171# error CPU subtype not defined
172#endif
173
174/* SCSCR */
175#define SCI_CTRL_FLAGS_TIE 0x80 /* all */
176#define SCI_CTRL_FLAGS_RIE 0x40 /* all */
177#define SCI_CTRL_FLAGS_TE 0x20 /* all */
178#define SCI_CTRL_FLAGS_RE 0x10 /* all */
Paul Mundt05627482007-05-15 16:25:47 +0900179#if defined(CONFIG_CPU_SUBTYPE_SH7750) || \
180 defined(CONFIG_CPU_SUBTYPE_SH7091) || \
181 defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
Michael Trimarchia8884e32008-10-31 16:10:23 +0900182 defined(CONFIG_CPU_SUBTYPE_SH7722) || \
Paul Mundt05627482007-05-15 16:25:47 +0900183 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
184 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
185 defined(CONFIG_CPU_SUBTYPE_SH7751R) || \
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900186 defined(CONFIG_CPU_SUBTYPE_SH7763) || \
Paul Mundt05627482007-05-15 16:25:47 +0900187 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900188 defined(CONFIG_CPU_SUBTYPE_SH7785) || \
Kuninori Morimoto55ba99e2009-03-03 15:40:25 +0900189 defined(CONFIG_CPU_SUBTYPE_SH7786) || \
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900190 defined(CONFIG_CPU_SUBTYPE_SHX3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#define SCI_CTRL_FLAGS_REIE 0x08 /* 7750 SCIF */
192#else
193#define SCI_CTRL_FLAGS_REIE 0
194#endif
195/* SCI_CTRL_FLAGS_MPIE 0x08 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
196/* SCI_CTRL_FLAGS_TEIE 0x04 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
197/* SCI_CTRL_FLAGS_CKE1 0x02 * all */
198/* SCI_CTRL_FLAGS_CKE0 0x01 * 7707 SCI/SCIF, 7708 SCI, 7709 SCI/SCIF, 7750 SCI */
199
200/* SCxSR SCI */
201#define SCI_TDRE 0x80 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
202#define SCI_RDRF 0x40 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
203#define SCI_ORER 0x20 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
204#define SCI_FER 0x10 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
205#define SCI_PER 0x08 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
206#define SCI_TEND 0x04 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
207/* SCI_MPB 0x02 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
208/* SCI_MPBT 0x01 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
209
210#define SCI_ERRORS ( SCI_PER | SCI_FER | SCI_ORER)
211
212/* SCxSR SCIF */
213#define SCIF_ER 0x0080 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
214#define SCIF_TEND 0x0040 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
215#define SCIF_TDFE 0x0020 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
216#define SCIF_BRK 0x0010 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
217#define SCIF_FER 0x0008 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
218#define SCIF_PER 0x0004 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
219#define SCIF_RDF 0x0002 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
220#define SCIF_DR 0x0001 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
221
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900222#if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900223 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
224 defined(CONFIG_CPU_SUBTYPE_SH7721)
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900225# define SCIF_ORER 0x0200
226# define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER)
227# define SCIF_RFDC_MASK 0x007f
228# define SCIF_TXROOM_MAX 64
229#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
230# define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK )
231# define SCIF_RFDC_MASK 0x007f
232# define SCIF_TXROOM_MAX 64
233/* SH7763 SCIF2 support */
234# define SCIF2_RFDC_MASK 0x001f
235# define SCIF2_TXROOM_MAX 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#else
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900237# define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
238# define SCIF_RFDC_MASK 0x001f
239# define SCIF_TXROOM_MAX 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#endif
241
Paul Mundtd830fa42008-12-16 19:29:38 +0900242#ifndef SCIF_ORER
243#define SCIF_ORER 0x0000
244#endif
245
Paul Mundt15c73aa2008-10-02 19:47:12 +0900246#define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
247#define SCxSR_ERRORS(port) (((port)->type == PORT_SCI) ? SCI_ERRORS : SCIF_ERRORS)
248#define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
249#define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
250#define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
251#define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
252#define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
Paul Mundtd830fa42008-12-16 19:29:38 +0900253#define SCxSR_ORER(port) (((port)->type == PORT_SCI) ? SCI_ORER : SCIF_ORER)
Paul Mundt15c73aa2008-10-02 19:47:12 +0900254
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900255#if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900256 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
257 defined(CONFIG_CPU_SUBTYPE_SH7721)
Paul Mundt15c73aa2008-10-02 19:47:12 +0900258# define SCxSR_RDxF_CLEAR(port) (sci_in(port, SCxSR) & 0xfffc)
259# define SCxSR_ERROR_CLEAR(port) (sci_in(port, SCxSR) & 0xfd73)
260# define SCxSR_TDxE_CLEAR(port) (sci_in(port, SCxSR) & 0xffdf)
261# define SCxSR_BREAK_CLEAR(port) (sci_in(port, SCxSR) & 0xffe3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263# define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
264# define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
265# define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
266# define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3)
267#endif
268
269/* SCFCR */
270#define SCFCR_RFRST 0x0002
271#define SCFCR_TFRST 0x0004
272#define SCFCR_TCRST 0x4000
273#define SCFCR_MCE 0x0008
274
275#define SCI_MAJOR 204
276#define SCI_MINOR_START 8
277
278/* Generic serial flags */
279#define SCI_RX_THROTTLE 0x0000001
280
281#define SCI_MAGIC 0xbabeface
282
283/*
284 * Events are used to schedule things to happen at timer-interrupt
285 * time, instead of at rs interrupt time.
286 */
287#define SCI_EVENT_WRITE_WAKEUP 0
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289#define SCI_IN(size, offset) \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800290 if ((size) == 8) { \
Paul Mundt7ff731a2008-10-01 15:46:58 +0900291 return ioread8(port->membase + (offset)); \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800292 } else { \
Paul Mundt7ff731a2008-10-01 15:46:58 +0900293 return ioread16(port->membase + (offset)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295#define SCI_OUT(size, offset, value) \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800296 if ((size) == 8) { \
Paul Mundt7ff731a2008-10-01 15:46:58 +0900297 iowrite8(value, port->membase + (offset)); \
Magnus Damm3d2c2f32008-04-23 21:37:39 +0900298 } else if ((size) == 16) { \
Paul Mundt7ff731a2008-10-01 15:46:58 +0900299 iowrite16(value, port->membase + (offset)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301
302#define CPU_SCIx_FNS(name, sci_offset, sci_size, scif_offset, scif_size)\
303 static inline unsigned int sci_##name##_in(struct uart_port *port) \
304 { \
Yoshihiro Shimoda1a22f082008-11-11 12:19:05 +0900305 if (port->type == PORT_SCIF) { \
306 SCI_IN(scif_size, scif_offset) \
307 } else { /* PORT_SCI or PORT_SCIFA */ \
308 SCI_IN(sci_size, sci_offset); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 } \
310 } \
311 static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \
312 { \
Yoshihiro Shimoda1a22f082008-11-11 12:19:05 +0900313 if (port->type == PORT_SCIF) { \
314 SCI_OUT(scif_size, scif_offset, value) \
315 } else { /* PORT_SCI or PORT_SCIFA */ \
316 SCI_OUT(sci_size, sci_offset, value); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 } \
318 }
319
Yoshinori Sato168f3622009-04-28 04:40:15 +0000320#ifdef CONFIG_H8300
321/* h8300 don't have SCIF */
322#define CPU_SCIF_FNS(name) \
323 static inline unsigned int sci_##name##_in(struct uart_port *port) \
324 { \
325 return 0; \
326 } \
327 static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \
328 { \
329 }
330#else
331#define CPU_SCIF_FNS(name, scif_offset, scif_size) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 static inline unsigned int sci_##name##_in(struct uart_port *port) \
333 { \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800334 SCI_IN(scif_size, scif_offset); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 } \
336 static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \
337 { \
338 SCI_OUT(scif_size, scif_offset, value); \
339 }
Yoshinori Sato168f3622009-04-28 04:40:15 +0000340#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342#define CPU_SCI_FNS(name, sci_offset, sci_size) \
343 static inline unsigned int sci_##name##_in(struct uart_port* port) \
344 { \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800345 SCI_IN(sci_size, sci_offset); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 } \
347 static inline void sci_##name##_out(struct uart_port* port, unsigned int value) \
348 { \
349 SCI_OUT(sci_size, sci_offset, value); \
350 }
351
352#ifdef CONFIG_CPU_SH3
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900353#if defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
354#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
355 sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
356 h8_sci_offset, h8_sci_size) \
357 CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size)
358#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
359 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900360#elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900361 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
362 defined(CONFIG_CPU_SUBTYPE_SH7721)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363#define SCIF_FNS(name, scif_offset, scif_size) \
364 CPU_SCIF_FNS(name, scif_offset, scif_size)
365#else
366#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
367 sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
368 h8_sci_offset, h8_sci_size) \
369 CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh3_scif_offset, sh3_scif_size)
370#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
371 CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size)
372#endif
373#elif defined(__H8300H__) || defined(__H8300S__)
374#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
375 sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
376 h8_sci_offset, h8_sci_size) \
377 CPU_SCI_FNS(name, h8_sci_offset, h8_sci_size)
Yoshinori Sato168f3622009-04-28 04:40:15 +0000378#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
379 CPU_SCIF_FNS(name)
Kuninori Morimoto47948d22009-04-15 11:42:47 +0900380#elif defined(CONFIG_CPU_SUBTYPE_SH7723) ||\
381 defined(CONFIG_CPU_SUBTYPE_SH7724)
Paul Mundt178dd0c2008-04-09 17:56:18 +0900382 #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scif_offset, sh4_scif_size) \
383 CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scif_offset, sh4_scif_size)
384 #define SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) \
385 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#else
387#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
388 sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
389 h8_sci_offset, h8_sci_size) \
390 CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size)
391#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
392 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
393#endif
394
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900395#if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900396 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
397 defined(CONFIG_CPU_SUBTYPE_SH7721)
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399SCIF_FNS(SCSMR, 0x00, 16)
400SCIF_FNS(SCBRR, 0x04, 8)
401SCIF_FNS(SCSCR, 0x08, 16)
402SCIF_FNS(SCTDSR, 0x0c, 8)
403SCIF_FNS(SCFER, 0x10, 16)
404SCIF_FNS(SCxSR, 0x14, 16)
405SCIF_FNS(SCFCR, 0x18, 16)
406SCIF_FNS(SCFDR, 0x1c, 16)
407SCIF_FNS(SCxTDR, 0x20, 8)
408SCIF_FNS(SCxRDR, 0x24, 8)
409SCIF_FNS(SCLSR, 0x24, 16)
Kuninori Morimoto47948d22009-04-15 11:42:47 +0900410#elif defined(CONFIG_CPU_SUBTYPE_SH7723) ||\
411 defined(CONFIG_CPU_SUBTYPE_SH7724)
Paul Mundt178dd0c2008-04-09 17:56:18 +0900412SCIx_FNS(SCSMR, 0x00, 16, 0x00, 16)
413SCIx_FNS(SCBRR, 0x04, 8, 0x04, 8)
414SCIx_FNS(SCSCR, 0x08, 16, 0x08, 16)
415SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8)
416SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16)
417SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8)
Magnus Dammf6863592009-01-20 12:18:22 +0900418SCIx_FNS(SCSPTR, 0, 0, 0, 0)
Paul Mundt178dd0c2008-04-09 17:56:18 +0900419SCIF_FNS(SCTDSR, 0x0c, 8)
420SCIF_FNS(SCFER, 0x10, 16)
421SCIF_FNS(SCFCR, 0x18, 16)
422SCIF_FNS(SCFDR, 0x1c, 16)
423SCIF_FNS(SCLSR, 0x24, 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#else
425/* reg SCI/SH3 SCI/SH4 SCIF/SH3 SCIF/SH4 SCI/H8*/
426/* name off sz off sz off sz off sz off sz*/
427SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16, 0x00, 8)
428SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8, 0x01, 8)
429SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16, 0x02, 8)
430SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8, 0x03, 8)
431SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16, 0x04, 8)
432SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8, 0x05, 8)
433SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16)
Paul Mundt32351a22007-03-12 14:38:59 +0900434#if defined(CONFIG_CPU_SUBTYPE_SH7760) || \
435 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
Kuninori Morimoto55ba99e2009-03-03 15:40:25 +0900436 defined(CONFIG_CPU_SUBTYPE_SH7785) || \
437 defined(CONFIG_CPU_SUBTYPE_SH7786)
Paul Mundtc2697962008-07-30 00:56:39 +0900438SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800439SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
440SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
441SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
442SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
Paul Mundtc2697962008-07-30 00:56:39 +0900443#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900444SCIF_FNS(SCFDR, 0, 0, 0x1C, 16)
445SCIF_FNS(SCSPTR2, 0, 0, 0x20, 16)
Paul Mundtc2697962008-07-30 00:56:39 +0900446SCIF_FNS(SCLSR2, 0, 0, 0x24, 16)
447SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
448SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
449SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
450SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800451#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
Magnus Damm9b4e4662008-04-23 21:31:14 +0900453#if defined(CONFIG_CPU_SUBTYPE_SH7722)
454SCIF_FNS(SCSPTR, 0, 0, 0, 0)
455#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
Magnus Damm9b4e4662008-04-23 21:31:14 +0900457#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
459#endif
Paul Mundtb7a76e42006-02-01 03:06:06 -0800460#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461#define sci_in(port, reg) sci_##reg##_in(port)
462#define sci_out(port, reg, value) sci_##reg##_out(port, value)
463
464/* H8/300 series SCI pins assignment */
465#if defined(__H8300H__) || defined(__H8300S__)
466static const struct __attribute__((packed)) {
467 int port; /* GPIO port no */
468 unsigned short rx,tx; /* GPIO bit no */
469} h8300_sci_pins[] = {
470#if defined(CONFIG_H83007) || defined(CONFIG_H83068)
471 { /* SCI0 */
472 .port = H8300_GPIO_P9,
473 .rx = H8300_GPIO_B2,
474 .tx = H8300_GPIO_B0,
475 },
476 { /* SCI1 */
477 .port = H8300_GPIO_P9,
478 .rx = H8300_GPIO_B3,
479 .tx = H8300_GPIO_B1,
480 },
481 { /* SCI2 */
482 .port = H8300_GPIO_PB,
483 .rx = H8300_GPIO_B7,
484 .tx = H8300_GPIO_B6,
485 }
486#elif defined(CONFIG_H8S2678)
487 { /* SCI0 */
488 .port = H8300_GPIO_P3,
489 .rx = H8300_GPIO_B2,
490 .tx = H8300_GPIO_B0,
491 },
492 { /* SCI1 */
493 .port = H8300_GPIO_P3,
494 .rx = H8300_GPIO_B3,
495 .tx = H8300_GPIO_B1,
496 },
497 { /* SCI2 */
498 .port = H8300_GPIO_P5,
499 .rx = H8300_GPIO_B1,
500 .tx = H8300_GPIO_B0,
501 }
502#endif
503};
504#endif
505
Magnus Damm0fbde952007-07-26 10:14:16 +0900506#if defined(CONFIG_CPU_SUBTYPE_SH7706) || \
507 defined(CONFIG_CPU_SUBTYPE_SH7707) || \
508 defined(CONFIG_CPU_SUBTYPE_SH7708) || \
509 defined(CONFIG_CPU_SUBTYPE_SH7709)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510static inline int sci_rxd_in(struct uart_port *port)
511{
512 if (port->mapbase == 0xfffffe80)
513 return ctrl_inb(SCPDR)&0x01 ? 1 : 0; /* SCI */
514 if (port->mapbase == 0xa4000150)
515 return ctrl_inb(SCPDR)&0x10 ? 1 : 0; /* SCIF */
516 if (port->mapbase == 0xa4000140)
517 return ctrl_inb(SCPDR)&0x04 ? 1 : 0; /* IRDA */
518 return 1;
519}
520#elif defined(CONFIG_CPU_SUBTYPE_SH7705)
521static inline int sci_rxd_in(struct uart_port *port)
522{
523 if (port->mapbase == SCIF0)
524 return ctrl_inb(SCPDR)&0x04 ? 1 : 0; /* IRDA */
525 if (port->mapbase == SCIF2)
526 return ctrl_inb(SCPDR)&0x10 ? 1 : 0; /* SCIF */
527 return 1;
528}
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900529#elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
Paul Mundte108b2c2006-09-27 16:32:13 +0900530static inline int sci_rxd_in(struct uart_port *port)
531{
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900532 return sci_in(port,SCxSR)&0x0010 ? 1 : 0;
Paul Mundte108b2c2006-09-27 16:32:13 +0900533}
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900534#elif defined(CONFIG_CPU_SUBTYPE_SH7720) || \
535 defined(CONFIG_CPU_SUBTYPE_SH7721)
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900536static inline int sci_rxd_in(struct uart_port *port)
537{
538 if (port->mapbase == 0xa4430000)
539 return sci_in(port, SCxSR) & 0x0003 ? 1 : 0;
540 else if (port->mapbase == 0xa4438000)
541 return sci_in(port, SCxSR) & 0x0003 ? 1 : 0;
542 return 1;
543}
Paul Mundt05627482007-05-15 16:25:47 +0900544#elif defined(CONFIG_CPU_SUBTYPE_SH7750) || \
545 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
546 defined(CONFIG_CPU_SUBTYPE_SH7751R) || \
547 defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
548 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
Nobuhiro Iwamatsu961e9ff2008-10-29 13:33:45 +0900549 defined(CONFIG_CPU_SUBTYPE_SH7091)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static inline int sci_rxd_in(struct uart_port *port)
551{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (port->mapbase == 0xffe00000)
553 return ctrl_inb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (port->mapbase == 0xffe80000)
555 return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return 1;
557}
Nobuhiro Iwamatsu961e9ff2008-10-29 13:33:45 +0900558#elif defined(CONFIG_CPU_SUBTYPE_SH4_202)
559static inline int sci_rxd_in(struct uart_port *port)
560{
561 if (port->mapbase == 0xffe80000)
562 return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
563 return 1;
564}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565#elif defined(CONFIG_CPU_SUBTYPE_SH7760)
566static inline int sci_rxd_in(struct uart_port *port)
567{
568 if (port->mapbase == 0xfe600000)
569 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
570 if (port->mapbase == 0xfe610000)
571 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
572 if (port->mapbase == 0xfe620000)
573 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt31388752006-12-08 14:26:19 +0900574 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
Paul Mundte108b2c2006-09-27 16:32:13 +0900576#elif defined(CONFIG_CPU_SUBTYPE_SH7343)
577static inline int sci_rxd_in(struct uart_port *port)
578{
579 if (port->mapbase == 0xffe00000)
580 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
581 if (port->mapbase == 0xffe10000)
582 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
583 if (port->mapbase == 0xffe20000)
584 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
585 if (port->mapbase == 0xffe30000)
586 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
587 return 1;
588}
Magnus Damm346b7462008-04-23 21:25:29 +0900589#elif defined(CONFIG_CPU_SUBTYPE_SH7366)
Paul Mundt41504c32006-12-11 20:28:03 +0900590static inline int sci_rxd_in(struct uart_port *port)
591{
592 if (port->mapbase == 0xffe00000)
593 return ctrl_inb(SCPDR0) & 0x0001 ? 1 : 0; /* SCIF0 */
594 return 1;
595}
Magnus Damm346b7462008-04-23 21:25:29 +0900596#elif defined(CONFIG_CPU_SUBTYPE_SH7722)
597static inline int sci_rxd_in(struct uart_port *port)
598{
599 if (port->mapbase == 0xffe00000)
600 return ctrl_inb(PSDR) & 0x02 ? 1 : 0; /* SCIF0 */
601 if (port->mapbase == 0xffe10000)
602 return ctrl_inb(PADR) & 0x40 ? 1 : 0; /* SCIF1 */
603 if (port->mapbase == 0xffe20000)
604 return ctrl_inb(PWDR) & 0x04 ? 1 : 0; /* SCIF2 */
605
606 return 1;
607}
Paul Mundt178dd0c2008-04-09 17:56:18 +0900608#elif defined(CONFIG_CPU_SUBTYPE_SH7723)
609static inline int sci_rxd_in(struct uart_port *port)
610{
611 if (port->mapbase == 0xffe00000)
612 return ctrl_inb(SCSPTR0) & 0x0008 ? 1 : 0; /* SCIF0 */
613 if (port->mapbase == 0xffe10000)
614 return ctrl_inb(SCSPTR1) & 0x0020 ? 1 : 0; /* SCIF1 */
615 if (port->mapbase == 0xffe20000)
616 return ctrl_inb(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF2 */
617 if (port->mapbase == 0xa4e30000)
618 return ctrl_inb(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF3 */
619 if (port->mapbase == 0xa4e40000)
620 return ctrl_inb(SCSPTR4) & 0x0001 ? 1 : 0; /* SCIF4 */
621 if (port->mapbase == 0xa4e50000)
622 return ctrl_inb(SCSPTR5) & 0x0008 ? 1 : 0; /* SCIF5 */
623 return 1;
624}
Kuninori Morimoto47948d22009-04-15 11:42:47 +0900625#elif defined(CONFIG_CPU_SUBTYPE_SH7724)
626# define SCFSR 0x0010
627# define SCASSR 0x0014
628static inline int sci_rxd_in(struct uart_port *port)
629{
630 if (port->type == PORT_SCIF)
631 return ctrl_inw((port->mapbase + SCFSR)) & SCIF_BRK ? 1 : 0;
632 if (port->type == PORT_SCIFA)
633 return ctrl_inw((port->mapbase + SCASSR)) & SCIF_BRK ? 1 : 0;
634 return 1;
635}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636#elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
637static inline int sci_rxd_in(struct uart_port *port)
638{
Paul Mundte9e8b1f2009-05-09 14:31:37 +0900639 return sci_in(port, SCSPTR)&0x0001 ? 1 : 0; /* SCIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641#elif defined(__H8300H__) || defined(__H8300S__)
642static inline int sci_rxd_in(struct uart_port *port)
643{
644 int ch = (port->mapbase - SMR0) >> 3;
645 return (H8300_SCI_DR(ch) & h8300_sci_pins[ch].rx) ? 1 : 0;
646}
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900647#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
648static inline int sci_rxd_in(struct uart_port *port)
649{
650 if (port->mapbase == 0xffe00000)
651 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
652 if (port->mapbase == 0xffe08000)
653 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900654 if (port->mapbase == 0xffe10000)
655 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF/IRDA */
656
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900657 return 1;
658}
Paul Mundtb7a76e42006-02-01 03:06:06 -0800659#elif defined(CONFIG_CPU_SUBTYPE_SH7770)
660static inline int sci_rxd_in(struct uart_port *port)
661{
662 if (port->mapbase == 0xff923000)
663 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
664 if (port->mapbase == 0xff924000)
665 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
666 if (port->mapbase == 0xff925000)
667 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt31388752006-12-08 14:26:19 +0900668 return 1;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800669}
670#elif defined(CONFIG_CPU_SUBTYPE_SH7780)
671static inline int sci_rxd_in(struct uart_port *port)
672{
673 if (port->mapbase == 0xffe00000)
674 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
675 if (port->mapbase == 0xffe10000)
676 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt31388752006-12-08 14:26:19 +0900677 return 1;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800678}
Kuninori Morimoto55ba99e2009-03-03 15:40:25 +0900679#elif defined(CONFIG_CPU_SUBTYPE_SH7785) || \
680 defined(CONFIG_CPU_SUBTYPE_SH7786)
Paul Mundt32351a22007-03-12 14:38:59 +0900681static inline int sci_rxd_in(struct uart_port *port)
682{
683 if (port->mapbase == 0xffea0000)
684 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
685 if (port->mapbase == 0xffeb0000)
686 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
687 if (port->mapbase == 0xffec0000)
688 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
689 if (port->mapbase == 0xffed0000)
690 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
691 if (port->mapbase == 0xffee0000)
692 return ctrl_inw(SCSPTR4) & 0x0001 ? 1 : 0; /* SCIF */
693 if (port->mapbase == 0xffef0000)
694 return ctrl_inw(SCSPTR5) & 0x0001 ? 1 : 0; /* SCIF */
695 return 1;
696}
Peter Griffin28259992008-11-28 22:48:20 +0900697#elif defined(CONFIG_CPU_SUBTYPE_SH7201) || \
698 defined(CONFIG_CPU_SUBTYPE_SH7203) || \
Paul Mundta8f67f42007-11-26 19:54:02 +0900699 defined(CONFIG_CPU_SUBTYPE_SH7206) || \
700 defined(CONFIG_CPU_SUBTYPE_SH7263)
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900701static inline int sci_rxd_in(struct uart_port *port)
702{
703 if (port->mapbase == 0xfffe8000)
704 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
705 if (port->mapbase == 0xfffe8800)
706 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
707 if (port->mapbase == 0xfffe9000)
708 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
709 if (port->mapbase == 0xfffe9800)
710 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
Peter Griffin28259992008-11-28 22:48:20 +0900711#if defined(CONFIG_CPU_SUBTYPE_SH7201)
712 if (port->mapbase == 0xfffeA000)
713 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
714 if (port->mapbase == 0xfffeA800)
715 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
716 if (port->mapbase == 0xfffeB000)
717 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
718 if (port->mapbase == 0xfffeB800)
719 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
720#endif
Paul Mundt31388752006-12-08 14:26:19 +0900721 return 1;
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900722}
723#elif defined(CONFIG_CPU_SUBTYPE_SH7619)
724static inline int sci_rxd_in(struct uart_port *port)
725{
726 if (port->mapbase == 0xf8400000)
727 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
728 if (port->mapbase == 0xf8410000)
729 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
730 if (port->mapbase == 0xf8420000)
731 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt31388752006-12-08 14:26:19 +0900732 return 1;
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900733}
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900734#elif defined(CONFIG_CPU_SUBTYPE_SHX3)
735static inline int sci_rxd_in(struct uart_port *port)
736{
737 if (port->mapbase == 0xffc30000)
738 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
739 if (port->mapbase == 0xffc40000)
740 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
741 if (port->mapbase == 0xffc50000)
742 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
743 if (port->mapbase == 0xffc60000)
744 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt1760b7d72007-08-08 16:57:05 +0900745 return 1;
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900746}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747#endif
748
749/*
750 * Values for the BitRate Register (SCBRR)
751 *
752 * The values are actually divisors for a frequency which can
753 * be internal to the SH3 (14.7456MHz) or derived from an external
754 * clock source. This driver assumes the internal clock is used;
755 * to support using an external clock source, config options or
756 * possibly command-line options would need to be added.
757 *
758 * Also, to support speeds below 2400 (why?) the lower 2 bits of
759 * the SCSMR register would also need to be set to non-zero values.
760 *
761 * -- Greg Banks 27Feb2000
762 *
763 * Answer: The SCBRR register is only eight bits, and the value in
764 * it gets larger with lower baud rates. At around 2400 (depending on
765 * the peripherial module clock) you run out of bits. However the
766 * lower two bits of SCSMR allow the module clock to be divided down,
767 * scaling the value which is needed in SCBRR.
768 *
769 * -- Stuart Menefy - 23 May 2000
770 *
771 * I meant, why would anyone bother with bitrates below 2400.
772 *
773 * -- Greg Banks - 7Jul2000
774 *
775 * You "speedist"! How will I use my 110bps ASR-33 teletype with paper
776 * tape reader as a console!
777 *
778 * -- Mitch Davis - 15 Jul 2000
779 */
780
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900781#if defined(CONFIG_CPU_SUBTYPE_SH7780) || \
Kuninori Morimoto55ba99e2009-03-03 15:40:25 +0900782 defined(CONFIG_CPU_SUBTYPE_SH7785) || \
783 defined(CONFIG_CPU_SUBTYPE_SH7786)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800784#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1)
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900785#elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900786 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
787 defined(CONFIG_CPU_SUBTYPE_SH7721)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800788#define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1)
Kuninori Morimoto47948d22009-04-15 11:42:47 +0900789#elif defined(CONFIG_CPU_SUBTYPE_SH7723) ||\
790 defined(CONFIG_CPU_SUBTYPE_SH7724)
Nobuhiro Iwamatsuba1d2812008-10-03 17:37:31 +0900791static inline int scbrr_calc(struct uart_port *port, int bps, int clk)
792{
793 if (port->type == PORT_SCIF)
794 return (clk+16*bps)/(32*bps)-1;
795 else
796 return ((clk*2)+16*bps)/(16*bps)-1;
797}
798#define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800799#elif defined(__H8300H__) || defined(__H8300S__)
Paul Mundta2159b52008-10-02 19:09:13 +0900800#define SCBRR_VALUE(bps, clk) (((clk*1000/32)/bps)-1)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800801#else /* Generic SH */
802#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803#endif