blob: 38c600c0dbbf4f6ae98e9f006ecefdbbe028b6cb [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <asm/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 */
Markus Brunner3ea6bc32007-08-20 08:59:33 +090035#define SCIF_ORER 0x0200 /* overrun error bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#elif defined(CONFIG_SH_RTS7751R2D)
Matt Fleming7abc4042008-10-29 07:16:02 +000037# define SCSPTR1 0xFFE0001C /* 8 bit SCIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038# define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
39# define SCIF_ORER 0x0001 /* overrun error bit */
40# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt05627482007-05-15 16:25:47 +090041#elif defined(CONFIG_CPU_SUBTYPE_SH7750) || \
42 defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
43 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
44 defined(CONFIG_CPU_SUBTYPE_SH7091) || \
45 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
46 defined(CONFIG_CPU_SUBTYPE_SH7751R)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047# define SCSPTR1 0xffe0001c /* 8 bit SCI */
48# define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
49# define SCIF_ORER 0x0001 /* overrun error bit */
50# define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? \
51 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \
52 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ )
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#elif defined(CONFIG_CPU_SUBTYPE_SH7760)
Paul Mundtb7a76e42006-02-01 03:06:06 -080054# define SCSPTR0 0xfe600024 /* 16 bit SCIF */
55# define SCSPTR1 0xfe610024 /* 16 bit SCIF */
56# define SCSPTR2 0xfe620024 /* 16 bit SCIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057# define SCIF_ORER 0x0001 /* overrun error bit */
58# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt2b1bd1a2007-06-20 18:27:10 +090059#elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
Paul Mundte108b2c2006-09-27 16:32:13 +090060# define SCSPTR0 0xA4400000 /* 16 bit SCIF */
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +090061# define SCIF_ORER 0x0001 /* overrun error bit */
62# define PACR 0xa4050100
63# define PBCR 0xa4050102
64# define SCSCR_INIT(port) 0x3B
Paul Mundte108b2c2006-09-27 16:32:13 +090065#elif defined(CONFIG_CPU_SUBTYPE_SH7343)
66# define SCSPTR0 0xffe00010 /* 16 bit SCIF */
67# define SCSPTR1 0xffe10010 /* 16 bit SCIF */
68# define SCSPTR2 0xffe20010 /* 16 bit SCIF */
69# define SCSPTR3 0xffe30010 /* 16 bit SCIF */
70# define SCSCR_INIT(port) 0x32 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0,CKE=1 */
Paul Mundt41504c32006-12-11 20:28:03 +090071#elif defined(CONFIG_CPU_SUBTYPE_SH7722)
Magnus Damm346b7462008-04-23 21:25:29 +090072# define PADR 0xA4050120
73# define PSDR 0xA405013e
74# define PWDR 0xA4050166
75# define PSCR 0xA405011E
Paul Mundt41504c32006-12-11 20:28:03 +090076# define SCIF_ORER 0x0001 /* overrun error bit */
77# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Magnus Damm9109a302008-02-08 17:31:24 +090078#elif defined(CONFIG_CPU_SUBTYPE_SH7366)
79# define SCPDR0 0xA405013E /* 16 bit SCIF0 PSDR */
80# define SCSPTR0 SCPDR0
81# define SCIF_ORER 0x0001 /* overrun error bit */
82# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt178dd0c2008-04-09 17:56:18 +090083#elif defined(CONFIG_CPU_SUBTYPE_SH7723)
84# define SCSPTR0 0xa4050160
85# define SCSPTR1 0xa405013e
86# define SCSPTR2 0xa4050160
87# define SCSPTR3 0xa405013e
88# define SCSPTR4 0xa4050128
89# define SCSPTR5 0xa4050128
90# define SCIF_ORER 0x0001 /* overrun error bit */
91# define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#elif defined(CONFIG_CPU_SUBTYPE_SH4_202)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093# define SCSPTR2 0xffe80020 /* 16 bit SCIF */
94# define SCIF_ORER 0x0001 /* overrun error bit */
95# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097# define SCIF_BASE_ADDR 0x01030000
98# define SCIF_ADDR_SH5 PHYS_PERIPHERAL_BLOCK+SCIF_BASE_ADDR
99# define SCIF_PTR2_OFFS 0x0000020
100# define SCIF_LSR2_OFFS 0x0000024
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101# define SCSPTR2 ((port->mapbase)+SCIF_PTR2_OFFS) /* 16 bit SCIF */
102# define SCLSR2 ((port->mapbase)+SCIF_LSR2_OFFS) /* 16 bit SCIF */
Paul Mundtf9669182007-11-07 11:05:32 +0900103# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0, TE=1,RE=1,REIE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#elif defined(CONFIG_H83007) || defined(CONFIG_H83068)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106# define H8300_SCI_DR(ch) *(volatile char *)(P1DR + h8300_sci_pins[ch].port)
107#elif defined(CONFIG_H8S2678)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108# define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109# define H8300_SCI_DR(ch) *(volatile char *)(P1DR + h8300_sci_pins[ch].port)
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900110#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
111# define SCSPTR0 0xffe00024 /* 16 bit SCIF */
112# define SCSPTR1 0xffe08024 /* 16 bit SCIF */
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900113# define SCSPTR2 0xffe10020 /* 16 bit SCIF/IRDA */
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900114# define SCIF_ORER 0x0001 /* overrun error bit */
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900115# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800116#elif defined(CONFIG_CPU_SUBTYPE_SH7770)
117# define SCSPTR0 0xff923020 /* 16 bit SCIF */
118# define SCSPTR1 0xff924020 /* 16 bit SCIF */
119# define SCSPTR2 0xff925020 /* 16 bit SCIF */
120# define SCIF_ORER 0x0001 /* overrun error bit */
121# define SCSCR_INIT(port) 0x3c /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,cke=2 */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800122#elif defined(CONFIG_CPU_SUBTYPE_SH7780)
123# define SCSPTR0 0xffe00024 /* 16 bit SCIF */
124# define SCSPTR1 0xffe10024 /* 16 bit SCIF */
Paul Mundte108b2c2006-09-27 16:32:13 +0900125# define SCIF_ORER 0x0001 /* Overrun error bit */
Paul Mundtb7a76e42006-02-01 03:06:06 -0800126# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt32351a22007-03-12 14:38:59 +0900127#elif defined(CONFIG_CPU_SUBTYPE_SH7785)
128# define SCSPTR0 0xffea0024 /* 16 bit SCIF */
129# define SCSPTR1 0xffeb0024 /* 16 bit SCIF */
130# define SCSPTR2 0xffec0024 /* 16 bit SCIF */
131# define SCSPTR3 0xffed0024 /* 16 bit SCIF */
132# define SCSPTR4 0xffee0024 /* 16 bit SCIF */
133# define SCSPTR5 0xffef0024 /* 16 bit SCIF */
134# define SCIF_OPER 0x0001 /* Overrun error bit */
135# define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Peter Griffin28259992008-11-28 22:48:20 +0900136#elif defined(CONFIG_CPU_SUBTYPE_SH7201) || \
137 defined(CONFIG_CPU_SUBTYPE_SH7203) || \
Paul Mundta8f67f42007-11-26 19:54:02 +0900138 defined(CONFIG_CPU_SUBTYPE_SH7206) || \
139 defined(CONFIG_CPU_SUBTYPE_SH7263)
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900140# define SCSPTR0 0xfffe8020 /* 16 bit SCIF */
141# define SCSPTR1 0xfffe8820 /* 16 bit SCIF */
142# define SCSPTR2 0xfffe9020 /* 16 bit SCIF */
143# define SCSPTR3 0xfffe9820 /* 16 bit SCIF */
Peter Griffin28259992008-11-28 22:48:20 +0900144# if defined(CONFIG_CPU_SUBTYPE_SH7201)
145# define SCSPTR4 0xfffeA020 /* 16 bit SCIF */
146# define SCSPTR5 0xfffeA820 /* 16 bit SCIF */
147# define SCSPTR6 0xfffeB020 /* 16 bit SCIF */
148# define SCSPTR7 0xfffeB820 /* 16 bit SCIF */
149# endif
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900150# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900151#elif defined(CONFIG_CPU_SUBTYPE_SH7619)
152# define SCSPTR0 0xf8400020 /* 16 bit SCIF */
153# define SCSPTR1 0xf8410020 /* 16 bit SCIF */
154# define SCSPTR2 0xf8420020 /* 16 bit SCIF */
155# define SCIF_ORER 0x0001 /* overrun error bit */
156# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900157#elif defined(CONFIG_CPU_SUBTYPE_SHX3)
158# define SCSPTR0 0xffc30020 /* 16 bit SCIF */
159# define SCSPTR1 0xffc40020 /* 16 bit SCIF */
160# define SCSPTR2 0xffc50020 /* 16 bit SCIF */
161# define SCSPTR3 0xffc60020 /* 16 bit SCIF */
162# define SCIF_ORER 0x0001 /* Overrun error bit */
163# define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#else
165# error CPU subtype not defined
166#endif
167
168/* SCSCR */
169#define SCI_CTRL_FLAGS_TIE 0x80 /* all */
170#define SCI_CTRL_FLAGS_RIE 0x40 /* all */
171#define SCI_CTRL_FLAGS_TE 0x20 /* all */
172#define SCI_CTRL_FLAGS_RE 0x10 /* all */
Paul Mundt05627482007-05-15 16:25:47 +0900173#if defined(CONFIG_CPU_SUBTYPE_SH7750) || \
174 defined(CONFIG_CPU_SUBTYPE_SH7091) || \
175 defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
Michael Trimarchia8884e32008-10-31 16:10:23 +0900176 defined(CONFIG_CPU_SUBTYPE_SH7722) || \
Paul Mundt05627482007-05-15 16:25:47 +0900177 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
178 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
179 defined(CONFIG_CPU_SUBTYPE_SH7751R) || \
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900180 defined(CONFIG_CPU_SUBTYPE_SH7763) || \
Paul Mundt05627482007-05-15 16:25:47 +0900181 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900182 defined(CONFIG_CPU_SUBTYPE_SH7785) || \
183 defined(CONFIG_CPU_SUBTYPE_SHX3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#define SCI_CTRL_FLAGS_REIE 0x08 /* 7750 SCIF */
185#else
186#define SCI_CTRL_FLAGS_REIE 0
187#endif
188/* SCI_CTRL_FLAGS_MPIE 0x08 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
189/* SCI_CTRL_FLAGS_TEIE 0x04 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
190/* SCI_CTRL_FLAGS_CKE1 0x02 * all */
191/* SCI_CTRL_FLAGS_CKE0 0x01 * 7707 SCI/SCIF, 7708 SCI, 7709 SCI/SCIF, 7750 SCI */
192
193/* SCxSR SCI */
194#define SCI_TDRE 0x80 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
195#define SCI_RDRF 0x40 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
196#define SCI_ORER 0x20 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
197#define SCI_FER 0x10 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
198#define SCI_PER 0x08 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
199#define SCI_TEND 0x04 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
200/* SCI_MPB 0x02 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
201/* SCI_MPBT 0x01 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
202
203#define SCI_ERRORS ( SCI_PER | SCI_FER | SCI_ORER)
204
205/* SCxSR SCIF */
206#define SCIF_ER 0x0080 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
207#define SCIF_TEND 0x0040 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
208#define SCIF_TDFE 0x0020 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
209#define SCIF_BRK 0x0010 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
210#define SCIF_FER 0x0008 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
211#define SCIF_PER 0x0004 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
212#define SCIF_RDF 0x0002 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
213#define SCIF_DR 0x0001 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
214
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900215#if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900216 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
217 defined(CONFIG_CPU_SUBTYPE_SH7721)
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900218# define SCIF_ORER 0x0200
219# define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER)
220# define SCIF_RFDC_MASK 0x007f
221# define SCIF_TXROOM_MAX 64
222#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
223# define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK )
224# define SCIF_RFDC_MASK 0x007f
225# define SCIF_TXROOM_MAX 64
226/* SH7763 SCIF2 support */
227# define SCIF2_RFDC_MASK 0x001f
228# define SCIF2_TXROOM_MAX 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229#else
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900230# define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
231# define SCIF_RFDC_MASK 0x001f
232# define SCIF_TXROOM_MAX 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233#endif
234
Paul Mundtd830fa42008-12-16 19:29:38 +0900235#ifndef SCIF_ORER
236#define SCIF_ORER 0x0000
237#endif
238
Paul Mundt15c73aa2008-10-02 19:47:12 +0900239#define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
240#define SCxSR_ERRORS(port) (((port)->type == PORT_SCI) ? SCI_ERRORS : SCIF_ERRORS)
241#define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
242#define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
243#define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
244#define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
245#define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
Paul Mundtd830fa42008-12-16 19:29:38 +0900246#define SCxSR_ORER(port) (((port)->type == PORT_SCI) ? SCI_ORER : SCIF_ORER)
Paul Mundt15c73aa2008-10-02 19:47:12 +0900247
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900248#if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900249 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
250 defined(CONFIG_CPU_SUBTYPE_SH7721)
Paul Mundt15c73aa2008-10-02 19:47:12 +0900251# define SCxSR_RDxF_CLEAR(port) (sci_in(port, SCxSR) & 0xfffc)
252# define SCxSR_ERROR_CLEAR(port) (sci_in(port, SCxSR) & 0xfd73)
253# define SCxSR_TDxE_CLEAR(port) (sci_in(port, SCxSR) & 0xffdf)
254# define SCxSR_BREAK_CLEAR(port) (sci_in(port, SCxSR) & 0xffe3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256# define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
257# define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
258# define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
259# define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3)
260#endif
261
262/* SCFCR */
263#define SCFCR_RFRST 0x0002
264#define SCFCR_TFRST 0x0004
265#define SCFCR_TCRST 0x4000
266#define SCFCR_MCE 0x0008
267
268#define SCI_MAJOR 204
269#define SCI_MINOR_START 8
270
271/* Generic serial flags */
272#define SCI_RX_THROTTLE 0x0000001
273
274#define SCI_MAGIC 0xbabeface
275
276/*
277 * Events are used to schedule things to happen at timer-interrupt
278 * time, instead of at rs interrupt time.
279 */
280#define SCI_EVENT_WRITE_WAKEUP 0
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define SCI_IN(size, offset) \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800283 if ((size) == 8) { \
Paul Mundt7ff731a2008-10-01 15:46:58 +0900284 return ioread8(port->membase + (offset)); \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800285 } else { \
Paul Mundt7ff731a2008-10-01 15:46:58 +0900286 return ioread16(port->membase + (offset)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288#define SCI_OUT(size, offset, value) \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800289 if ((size) == 8) { \
Paul Mundt7ff731a2008-10-01 15:46:58 +0900290 iowrite8(value, port->membase + (offset)); \
Magnus Damm3d2c2f32008-04-23 21:37:39 +0900291 } else if ((size) == 16) { \
Paul Mundt7ff731a2008-10-01 15:46:58 +0900292 iowrite16(value, port->membase + (offset)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
295#define CPU_SCIx_FNS(name, sci_offset, sci_size, scif_offset, scif_size)\
296 static inline unsigned int sci_##name##_in(struct uart_port *port) \
297 { \
Yoshihiro Shimoda1a22f082008-11-11 12:19:05 +0900298 if (port->type == PORT_SCIF) { \
299 SCI_IN(scif_size, scif_offset) \
300 } else { /* PORT_SCI or PORT_SCIFA */ \
301 SCI_IN(sci_size, sci_offset); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 } \
303 } \
304 static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \
305 { \
Yoshihiro Shimoda1a22f082008-11-11 12:19:05 +0900306 if (port->type == PORT_SCIF) { \
307 SCI_OUT(scif_size, scif_offset, value) \
308 } else { /* PORT_SCI or PORT_SCIFA */ \
309 SCI_OUT(sci_size, sci_offset, value); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 } \
311 }
312
313#define CPU_SCIF_FNS(name, scif_offset, scif_size) \
314 static inline unsigned int sci_##name##_in(struct uart_port *port) \
315 { \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800316 SCI_IN(scif_size, scif_offset); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 } \
318 static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \
319 { \
320 SCI_OUT(scif_size, scif_offset, value); \
321 }
322
323#define CPU_SCI_FNS(name, sci_offset, sci_size) \
324 static inline unsigned int sci_##name##_in(struct uart_port* port) \
325 { \
Paul Mundtb7a76e42006-02-01 03:06:06 -0800326 SCI_IN(sci_size, sci_offset); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 } \
328 static inline void sci_##name##_out(struct uart_port* port, unsigned int value) \
329 { \
330 SCI_OUT(sci_size, sci_offset, value); \
331 }
332
333#ifdef CONFIG_CPU_SH3
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900334#if defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
335#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
336 sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
337 h8_sci_offset, h8_sci_size) \
338 CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size)
339#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
340 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900341#elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900342 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
343 defined(CONFIG_CPU_SUBTYPE_SH7721)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#define SCIF_FNS(name, scif_offset, scif_size) \
345 CPU_SCIF_FNS(name, scif_offset, scif_size)
346#else
347#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
348 sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
349 h8_sci_offset, h8_sci_size) \
350 CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh3_scif_offset, sh3_scif_size)
351#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
352 CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size)
353#endif
354#elif defined(__H8300H__) || defined(__H8300S__)
355#define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
356 sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
357 h8_sci_offset, h8_sci_size) \
358 CPU_SCI_FNS(name, h8_sci_offset, h8_sci_size)
359#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size)
Paul Mundt178dd0c2008-04-09 17:56:18 +0900360#elif defined(CONFIG_CPU_SUBTYPE_SH7723)
361 #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scif_offset, sh4_scif_size) \
362 CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scif_offset, sh4_scif_size)
363 #define SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) \
364 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365#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, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size)
370#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
371 CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
372#endif
373
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900374#if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900375 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
376 defined(CONFIG_CPU_SUBTYPE_SH7721)
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378SCIF_FNS(SCSMR, 0x00, 16)
379SCIF_FNS(SCBRR, 0x04, 8)
380SCIF_FNS(SCSCR, 0x08, 16)
381SCIF_FNS(SCTDSR, 0x0c, 8)
382SCIF_FNS(SCFER, 0x10, 16)
383SCIF_FNS(SCxSR, 0x14, 16)
384SCIF_FNS(SCFCR, 0x18, 16)
385SCIF_FNS(SCFDR, 0x1c, 16)
386SCIF_FNS(SCxTDR, 0x20, 8)
387SCIF_FNS(SCxRDR, 0x24, 8)
388SCIF_FNS(SCLSR, 0x24, 16)
Paul Mundt178dd0c2008-04-09 17:56:18 +0900389#elif defined(CONFIG_CPU_SUBTYPE_SH7723)
390SCIx_FNS(SCSMR, 0x00, 16, 0x00, 16)
391SCIx_FNS(SCBRR, 0x04, 8, 0x04, 8)
392SCIx_FNS(SCSCR, 0x08, 16, 0x08, 16)
393SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8)
394SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16)
395SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8)
396SCIF_FNS(SCTDSR, 0x0c, 8)
397SCIF_FNS(SCFER, 0x10, 16)
398SCIF_FNS(SCFCR, 0x18, 16)
399SCIF_FNS(SCFDR, 0x1c, 16)
400SCIF_FNS(SCLSR, 0x24, 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401#else
402/* reg SCI/SH3 SCI/SH4 SCIF/SH3 SCIF/SH4 SCI/H8*/
403/* name off sz off sz off sz off sz off sz*/
404SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16, 0x00, 8)
405SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8, 0x01, 8)
406SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16, 0x02, 8)
407SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8, 0x03, 8)
408SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16, 0x04, 8)
409SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8, 0x05, 8)
410SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16)
Paul Mundt32351a22007-03-12 14:38:59 +0900411#if defined(CONFIG_CPU_SUBTYPE_SH7760) || \
412 defined(CONFIG_CPU_SUBTYPE_SH7780) || \
413 defined(CONFIG_CPU_SUBTYPE_SH7785)
Paul Mundtc2697962008-07-30 00:56:39 +0900414SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800415SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
416SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
417SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
418SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
Paul Mundtc2697962008-07-30 00:56:39 +0900419#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900420SCIF_FNS(SCFDR, 0, 0, 0x1C, 16)
421SCIF_FNS(SCSPTR2, 0, 0, 0x20, 16)
Paul Mundtc2697962008-07-30 00:56:39 +0900422SCIF_FNS(SCLSR2, 0, 0, 0x24, 16)
423SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
424SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
425SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
426SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800427#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
Magnus Damm9b4e4662008-04-23 21:31:14 +0900429#if defined(CONFIG_CPU_SUBTYPE_SH7722)
430SCIF_FNS(SCSPTR, 0, 0, 0, 0)
431#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
Magnus Damm9b4e4662008-04-23 21:31:14 +0900433#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
435#endif
Paul Mundtb7a76e42006-02-01 03:06:06 -0800436#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437#define sci_in(port, reg) sci_##reg##_in(port)
438#define sci_out(port, reg, value) sci_##reg##_out(port, value)
439
440/* H8/300 series SCI pins assignment */
441#if defined(__H8300H__) || defined(__H8300S__)
442static const struct __attribute__((packed)) {
443 int port; /* GPIO port no */
444 unsigned short rx,tx; /* GPIO bit no */
445} h8300_sci_pins[] = {
446#if defined(CONFIG_H83007) || defined(CONFIG_H83068)
447 { /* SCI0 */
448 .port = H8300_GPIO_P9,
449 .rx = H8300_GPIO_B2,
450 .tx = H8300_GPIO_B0,
451 },
452 { /* SCI1 */
453 .port = H8300_GPIO_P9,
454 .rx = H8300_GPIO_B3,
455 .tx = H8300_GPIO_B1,
456 },
457 { /* SCI2 */
458 .port = H8300_GPIO_PB,
459 .rx = H8300_GPIO_B7,
460 .tx = H8300_GPIO_B6,
461 }
462#elif defined(CONFIG_H8S2678)
463 { /* SCI0 */
464 .port = H8300_GPIO_P3,
465 .rx = H8300_GPIO_B2,
466 .tx = H8300_GPIO_B0,
467 },
468 { /* SCI1 */
469 .port = H8300_GPIO_P3,
470 .rx = H8300_GPIO_B3,
471 .tx = H8300_GPIO_B1,
472 },
473 { /* SCI2 */
474 .port = H8300_GPIO_P5,
475 .rx = H8300_GPIO_B1,
476 .tx = H8300_GPIO_B0,
477 }
478#endif
479};
480#endif
481
Magnus Damm0fbde952007-07-26 10:14:16 +0900482#if defined(CONFIG_CPU_SUBTYPE_SH7706) || \
483 defined(CONFIG_CPU_SUBTYPE_SH7707) || \
484 defined(CONFIG_CPU_SUBTYPE_SH7708) || \
485 defined(CONFIG_CPU_SUBTYPE_SH7709)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486static inline int sci_rxd_in(struct uart_port *port)
487{
488 if (port->mapbase == 0xfffffe80)
489 return ctrl_inb(SCPDR)&0x01 ? 1 : 0; /* SCI */
490 if (port->mapbase == 0xa4000150)
491 return ctrl_inb(SCPDR)&0x10 ? 1 : 0; /* SCIF */
492 if (port->mapbase == 0xa4000140)
493 return ctrl_inb(SCPDR)&0x04 ? 1 : 0; /* IRDA */
494 return 1;
495}
496#elif defined(CONFIG_CPU_SUBTYPE_SH7705)
497static inline int sci_rxd_in(struct uart_port *port)
498{
499 if (port->mapbase == SCIF0)
500 return ctrl_inb(SCPDR)&0x04 ? 1 : 0; /* IRDA */
501 if (port->mapbase == SCIF2)
502 return ctrl_inb(SCPDR)&0x10 ? 1 : 0; /* SCIF */
503 return 1;
504}
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900505#elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
Paul Mundte108b2c2006-09-27 16:32:13 +0900506static inline int sci_rxd_in(struct uart_port *port)
507{
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +0900508 return sci_in(port,SCxSR)&0x0010 ? 1 : 0;
Paul Mundte108b2c2006-09-27 16:32:13 +0900509}
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900510#elif defined(CONFIG_CPU_SUBTYPE_SH7720) || \
511 defined(CONFIG_CPU_SUBTYPE_SH7721)
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900512static inline int sci_rxd_in(struct uart_port *port)
513{
514 if (port->mapbase == 0xa4430000)
515 return sci_in(port, SCxSR) & 0x0003 ? 1 : 0;
516 else if (port->mapbase == 0xa4438000)
517 return sci_in(port, SCxSR) & 0x0003 ? 1 : 0;
518 return 1;
519}
Paul Mundt05627482007-05-15 16:25:47 +0900520#elif defined(CONFIG_CPU_SUBTYPE_SH7750) || \
521 defined(CONFIG_CPU_SUBTYPE_SH7751) || \
522 defined(CONFIG_CPU_SUBTYPE_SH7751R) || \
523 defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
524 defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
Nobuhiro Iwamatsu961e9ff2008-10-29 13:33:45 +0900525 defined(CONFIG_CPU_SUBTYPE_SH7091)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526static inline int sci_rxd_in(struct uart_port *port)
527{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (port->mapbase == 0xffe00000)
529 return ctrl_inb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (port->mapbase == 0xffe80000)
531 return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return 1;
533}
Nobuhiro Iwamatsu961e9ff2008-10-29 13:33:45 +0900534#elif defined(CONFIG_CPU_SUBTYPE_SH4_202)
535static inline int sci_rxd_in(struct uart_port *port)
536{
537 if (port->mapbase == 0xffe80000)
538 return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
539 return 1;
540}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541#elif defined(CONFIG_CPU_SUBTYPE_SH7760)
542static inline int sci_rxd_in(struct uart_port *port)
543{
544 if (port->mapbase == 0xfe600000)
545 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
546 if (port->mapbase == 0xfe610000)
547 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
548 if (port->mapbase == 0xfe620000)
549 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt31388752006-12-08 14:26:19 +0900550 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
Paul Mundte108b2c2006-09-27 16:32:13 +0900552#elif defined(CONFIG_CPU_SUBTYPE_SH7343)
553static inline int sci_rxd_in(struct uart_port *port)
554{
555 if (port->mapbase == 0xffe00000)
556 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
557 if (port->mapbase == 0xffe10000)
558 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
559 if (port->mapbase == 0xffe20000)
560 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
561 if (port->mapbase == 0xffe30000)
562 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
563 return 1;
564}
Magnus Damm346b7462008-04-23 21:25:29 +0900565#elif defined(CONFIG_CPU_SUBTYPE_SH7366)
Paul Mundt41504c32006-12-11 20:28:03 +0900566static inline int sci_rxd_in(struct uart_port *port)
567{
568 if (port->mapbase == 0xffe00000)
569 return ctrl_inb(SCPDR0) & 0x0001 ? 1 : 0; /* SCIF0 */
570 return 1;
571}
Magnus Damm346b7462008-04-23 21:25:29 +0900572#elif defined(CONFIG_CPU_SUBTYPE_SH7722)
573static inline int sci_rxd_in(struct uart_port *port)
574{
575 if (port->mapbase == 0xffe00000)
576 return ctrl_inb(PSDR) & 0x02 ? 1 : 0; /* SCIF0 */
577 if (port->mapbase == 0xffe10000)
578 return ctrl_inb(PADR) & 0x40 ? 1 : 0; /* SCIF1 */
579 if (port->mapbase == 0xffe20000)
580 return ctrl_inb(PWDR) & 0x04 ? 1 : 0; /* SCIF2 */
581
582 return 1;
583}
Paul Mundt178dd0c2008-04-09 17:56:18 +0900584#elif defined(CONFIG_CPU_SUBTYPE_SH7723)
585static inline int sci_rxd_in(struct uart_port *port)
586{
587 if (port->mapbase == 0xffe00000)
588 return ctrl_inb(SCSPTR0) & 0x0008 ? 1 : 0; /* SCIF0 */
589 if (port->mapbase == 0xffe10000)
590 return ctrl_inb(SCSPTR1) & 0x0020 ? 1 : 0; /* SCIF1 */
591 if (port->mapbase == 0xffe20000)
592 return ctrl_inb(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF2 */
593 if (port->mapbase == 0xa4e30000)
594 return ctrl_inb(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF3 */
595 if (port->mapbase == 0xa4e40000)
596 return ctrl_inb(SCSPTR4) & 0x0001 ? 1 : 0; /* SCIF4 */
597 if (port->mapbase == 0xa4e50000)
598 return ctrl_inb(SCSPTR5) & 0x0008 ? 1 : 0; /* SCIF5 */
599 return 1;
600}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601#elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
602static inline int sci_rxd_in(struct uart_port *port)
603{
Nobuhiro Iwamatsuaeffd542008-10-29 13:34:50 +0900604 return sci_in(port, SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606#elif defined(__H8300H__) || defined(__H8300S__)
607static inline int sci_rxd_in(struct uart_port *port)
608{
609 int ch = (port->mapbase - SMR0) >> 3;
610 return (H8300_SCI_DR(ch) & h8300_sci_pins[ch].rx) ? 1 : 0;
611}
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900612#elif defined(CONFIG_CPU_SUBTYPE_SH7763)
613static inline int sci_rxd_in(struct uart_port *port)
614{
615 if (port->mapbase == 0xffe00000)
616 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
617 if (port->mapbase == 0xffe08000)
618 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900619 if (port->mapbase == 0xffe10000)
620 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF/IRDA */
621
Yoshihiro Shimoda7d740a02008-01-07 14:40:07 +0900622 return 1;
623}
Paul Mundtb7a76e42006-02-01 03:06:06 -0800624#elif defined(CONFIG_CPU_SUBTYPE_SH7770)
625static inline int sci_rxd_in(struct uart_port *port)
626{
627 if (port->mapbase == 0xff923000)
628 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
629 if (port->mapbase == 0xff924000)
630 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
631 if (port->mapbase == 0xff925000)
632 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt31388752006-12-08 14:26:19 +0900633 return 1;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800634}
635#elif defined(CONFIG_CPU_SUBTYPE_SH7780)
636static inline int sci_rxd_in(struct uart_port *port)
637{
638 if (port->mapbase == 0xffe00000)
639 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
640 if (port->mapbase == 0xffe10000)
641 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt31388752006-12-08 14:26:19 +0900642 return 1;
Paul Mundtb7a76e42006-02-01 03:06:06 -0800643}
Paul Mundt32351a22007-03-12 14:38:59 +0900644#elif defined(CONFIG_CPU_SUBTYPE_SH7785)
645static inline int sci_rxd_in(struct uart_port *port)
646{
647 if (port->mapbase == 0xffea0000)
648 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
649 if (port->mapbase == 0xffeb0000)
650 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
651 if (port->mapbase == 0xffec0000)
652 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
653 if (port->mapbase == 0xffed0000)
654 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
655 if (port->mapbase == 0xffee0000)
656 return ctrl_inw(SCSPTR4) & 0x0001 ? 1 : 0; /* SCIF */
657 if (port->mapbase == 0xffef0000)
658 return ctrl_inw(SCSPTR5) & 0x0001 ? 1 : 0; /* SCIF */
659 return 1;
660}
Peter Griffin28259992008-11-28 22:48:20 +0900661#elif defined(CONFIG_CPU_SUBTYPE_SH7201) || \
662 defined(CONFIG_CPU_SUBTYPE_SH7203) || \
Paul Mundta8f67f42007-11-26 19:54:02 +0900663 defined(CONFIG_CPU_SUBTYPE_SH7206) || \
664 defined(CONFIG_CPU_SUBTYPE_SH7263)
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900665static inline int sci_rxd_in(struct uart_port *port)
666{
667 if (port->mapbase == 0xfffe8000)
668 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
669 if (port->mapbase == 0xfffe8800)
670 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
671 if (port->mapbase == 0xfffe9000)
672 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
673 if (port->mapbase == 0xfffe9800)
674 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
Peter Griffin28259992008-11-28 22:48:20 +0900675#if defined(CONFIG_CPU_SUBTYPE_SH7201)
676 if (port->mapbase == 0xfffeA000)
677 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
678 if (port->mapbase == 0xfffeA800)
679 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
680 if (port->mapbase == 0xfffeB000)
681 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
682 if (port->mapbase == 0xfffeB800)
683 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
684#endif
Paul Mundt31388752006-12-08 14:26:19 +0900685 return 1;
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900686}
687#elif defined(CONFIG_CPU_SUBTYPE_SH7619)
688static inline int sci_rxd_in(struct uart_port *port)
689{
690 if (port->mapbase == 0xf8400000)
691 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
692 if (port->mapbase == 0xf8410000)
693 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
694 if (port->mapbase == 0xf8420000)
695 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt31388752006-12-08 14:26:19 +0900696 return 1;
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900697}
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900698#elif defined(CONFIG_CPU_SUBTYPE_SHX3)
699static inline int sci_rxd_in(struct uart_port *port)
700{
701 if (port->mapbase == 0xffc30000)
702 return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
703 if (port->mapbase == 0xffc40000)
704 return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
705 if (port->mapbase == 0xffc50000)
706 return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
707 if (port->mapbase == 0xffc60000)
708 return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
Paul Mundt1760b7d72007-08-08 16:57:05 +0900709 return 1;
Paul Mundt2b1bd1a2007-06-20 18:27:10 +0900710}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711#endif
712
713/*
714 * Values for the BitRate Register (SCBRR)
715 *
716 * The values are actually divisors for a frequency which can
717 * be internal to the SH3 (14.7456MHz) or derived from an external
718 * clock source. This driver assumes the internal clock is used;
719 * to support using an external clock source, config options or
720 * possibly command-line options would need to be added.
721 *
722 * Also, to support speeds below 2400 (why?) the lower 2 bits of
723 * the SCSMR register would also need to be set to non-zero values.
724 *
725 * -- Greg Banks 27Feb2000
726 *
727 * Answer: The SCBRR register is only eight bits, and the value in
728 * it gets larger with lower baud rates. At around 2400 (depending on
729 * the peripherial module clock) you run out of bits. However the
730 * lower two bits of SCSMR allow the module clock to be divided down,
731 * scaling the value which is needed in SCBRR.
732 *
733 * -- Stuart Menefy - 23 May 2000
734 *
735 * I meant, why would anyone bother with bitrates below 2400.
736 *
737 * -- Greg Banks - 7Jul2000
738 *
739 * You "speedist"! How will I use my 110bps ASR-33 teletype with paper
740 * tape reader as a console!
741 *
742 * -- Mitch Davis - 15 Jul 2000
743 */
744
Nobuhiro Iwamatsuc63847a2008-06-06 17:04:08 +0900745#if defined(CONFIG_CPU_SUBTYPE_SH7780) || \
Paul Mundt32351a22007-03-12 14:38:59 +0900746 defined(CONFIG_CPU_SUBTYPE_SH7785)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800747#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1)
Markus Brunner3ea6bc32007-08-20 08:59:33 +0900748#elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +0900749 defined(CONFIG_CPU_SUBTYPE_SH7720) || \
750 defined(CONFIG_CPU_SUBTYPE_SH7721)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800751#define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1)
Paul Mundt178dd0c2008-04-09 17:56:18 +0900752#elif defined(CONFIG_CPU_SUBTYPE_SH7723)
Nobuhiro Iwamatsuba1d2812008-10-03 17:37:31 +0900753static inline int scbrr_calc(struct uart_port *port, int bps, int clk)
754{
755 if (port->type == PORT_SCIF)
756 return (clk+16*bps)/(32*bps)-1;
757 else
758 return ((clk*2)+16*bps)/(16*bps)-1;
759}
760#define SCBRR_VALUE(bps, clk) scbrr_calc(port, bps, clk)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800761#elif defined(__H8300H__) || defined(__H8300S__)
Paul Mundta2159b52008-10-02 19:09:13 +0900762#define SCBRR_VALUE(bps, clk) (((clk*1000/32)/bps)-1)
Paul Mundtb7a76e42006-02-01 03:06:06 -0800763#else /* Generic SH */
764#define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765#endif