sh-sci.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707
  1. /* $Id: sh-sci.h,v 1.4 2004/02/19 16:43:56 lethal Exp $
  2. *
  3. * linux/drivers/serial/sh-sci.h
  4. *
  5. * SuperH on-chip serial module support. (SCI with no FIFO / with FIFO)
  6. * Copyright (C) 1999, 2000 Niibe Yutaka
  7. * Copyright (C) 2000 Greg Banks
  8. * Copyright (C) 2002, 2003 Paul Mundt
  9. * Modified to support multiple serial ports. Stuart Menefy (May 2000).
  10. * Modified to support SH7300(SH-Mobile) SCIF. Takashi Kusuda (Jun 2003).
  11. * Modified to support H8/300 Series Yoshinori Sato (Feb 2004).
  12. * Removed SH7300 support (Jul 2007).
  13. * Modified to support SH7720 SCIF. Markus Brunner, Mark Jonas (Aug 2007).
  14. */
  15. #include <linux/serial_core.h>
  16. #include <asm/io.h>
  17. #include <asm/gpio.h>
  18. #if defined(CONFIG_H83007) || defined(CONFIG_H83068)
  19. #include <asm/regs306x.h>
  20. #endif
  21. #if defined(CONFIG_H8S2678)
  22. #include <asm/regs267x.h>
  23. #endif
  24. #if defined(CONFIG_CPU_SUBTYPE_SH7706) || \
  25. defined(CONFIG_CPU_SUBTYPE_SH7707) || \
  26. defined(CONFIG_CPU_SUBTYPE_SH7708) || \
  27. defined(CONFIG_CPU_SUBTYPE_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. # define SCI_AND_SCIF
  32. #elif defined(CONFIG_CPU_SUBTYPE_SH7705)
  33. # define SCIF0 0xA4400000
  34. # define SCIF2 0xA4410000
  35. # define SCSMR_Ir 0xA44A0000
  36. # define IRDA_SCIF SCIF0
  37. # define SCPCR 0xA4000116
  38. # define SCPDR 0xA4000136
  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. # define SCIF_ONLY
  45. #elif defined(CONFIG_CPU_SUBTYPE_SH7720)
  46. # define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */
  47. # define SCIF_ONLY
  48. #define SCIF_ORER 0x0200 /* overrun error bit */
  49. #elif defined(CONFIG_SH_RTS7751R2D)
  50. # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
  51. # define SCIF_ORER 0x0001 /* overrun error bit */
  52. # define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  53. # define SCIF_ONLY
  54. #elif defined(CONFIG_CPU_SUBTYPE_SH7750) || \
  55. defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
  56. defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
  57. defined(CONFIG_CPU_SUBTYPE_SH7091) || \
  58. defined(CONFIG_CPU_SUBTYPE_SH7751) || \
  59. defined(CONFIG_CPU_SUBTYPE_SH7751R)
  60. # define SCSPTR1 0xffe0001c /* 8 bit SCI */
  61. # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
  62. # define SCIF_ORER 0x0001 /* overrun error bit */
  63. # define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? \
  64. 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \
  65. 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ )
  66. # define SCI_AND_SCIF
  67. #elif defined(CONFIG_CPU_SUBTYPE_SH7760)
  68. # define SCSPTR0 0xfe600024 /* 16 bit SCIF */
  69. # define SCSPTR1 0xfe610024 /* 16 bit SCIF */
  70. # define SCSPTR2 0xfe620024 /* 16 bit SCIF */
  71. # define SCIF_ORER 0x0001 /* overrun error bit */
  72. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  73. # define SCIF_ONLY
  74. #elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
  75. # define SCSPTR0 0xA4400000 /* 16 bit SCIF */
  76. # define SCIF_ORER 0x0001 /* overrun error bit */
  77. # define PACR 0xa4050100
  78. # define PBCR 0xa4050102
  79. # define SCSCR_INIT(port) 0x3B
  80. # define SCIF_ONLY
  81. #elif defined(CONFIG_CPU_SUBTYPE_SH7343)
  82. # define SCSPTR0 0xffe00010 /* 16 bit SCIF */
  83. # define SCSPTR1 0xffe10010 /* 16 bit SCIF */
  84. # define SCSPTR2 0xffe20010 /* 16 bit SCIF */
  85. # define SCSPTR3 0xffe30010 /* 16 bit SCIF */
  86. # define SCSCR_INIT(port) 0x32 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0,CKE=1 */
  87. # define SCIF_ONLY
  88. #elif defined(CONFIG_CPU_SUBTYPE_SH7722)
  89. # define SCPDR0 0xA405013E /* 16 bit SCIF0 PSDR */
  90. # define SCSPTR0 SCPDR0
  91. # define SCIF_ORER 0x0001 /* overrun error bit */
  92. # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  93. # define SCIF_ONLY
  94. # define PORT_PSCR 0xA405011E
  95. #elif defined(CONFIG_CPU_SUBTYPE_SH4_202)
  96. # define SCSPTR2 0xffe80020 /* 16 bit SCIF */
  97. # define SCIF_ORER 0x0001 /* overrun error bit */
  98. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  99. # define SCIF_ONLY
  100. #elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
  101. # include <asm/hardware.h>
  102. # 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
  106. # define SCSPTR2 ((port->mapbase)+SCIF_PTR2_OFFS) /* 16 bit SCIF */
  107. # define SCLSR2 ((port->mapbase)+SCIF_LSR2_OFFS) /* 16 bit SCIF */
  108. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0, TE=1,RE=1,REIE=1 */
  109. # define SCIF_ONLY
  110. #elif defined(CONFIG_H83007) || defined(CONFIG_H83068)
  111. # define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
  112. # define SCI_ONLY
  113. # define H8300_SCI_DR(ch) *(volatile char *)(P1DR + h8300_sci_pins[ch].port)
  114. #elif defined(CONFIG_H8S2678)
  115. # define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
  116. # define SCI_ONLY
  117. # define H8300_SCI_DR(ch) *(volatile char *)(P1DR + h8300_sci_pins[ch].port)
  118. #elif defined(CONFIG_CPU_SUBTYPE_SH7770)
  119. # define SCSPTR0 0xff923020 /* 16 bit SCIF */
  120. # define SCSPTR1 0xff924020 /* 16 bit SCIF */
  121. # define SCSPTR2 0xff925020 /* 16 bit SCIF */
  122. # define SCIF_ORER 0x0001 /* overrun error bit */
  123. # define SCSCR_INIT(port) 0x3c /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,cke=2 */
  124. # define SCIF_ONLY
  125. #elif defined(CONFIG_CPU_SUBTYPE_SH7780)
  126. # define SCSPTR0 0xffe00024 /* 16 bit SCIF */
  127. # define SCSPTR1 0xffe10024 /* 16 bit SCIF */
  128. # define SCIF_ORER 0x0001 /* Overrun error bit */
  129. # define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  130. # define SCIF_ONLY
  131. #elif defined(CONFIG_CPU_SUBTYPE_SH7785)
  132. # define SCSPTR0 0xffea0024 /* 16 bit SCIF */
  133. # define SCSPTR1 0xffeb0024 /* 16 bit SCIF */
  134. # define SCSPTR2 0xffec0024 /* 16 bit SCIF */
  135. # define SCSPTR3 0xffed0024 /* 16 bit SCIF */
  136. # define SCSPTR4 0xffee0024 /* 16 bit SCIF */
  137. # define SCSPTR5 0xffef0024 /* 16 bit SCIF */
  138. # define SCIF_OPER 0x0001 /* Overrun error bit */
  139. # define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  140. # define SCIF_ONLY
  141. #elif defined(CONFIG_CPU_SUBTYPE_SH7203) || \
  142. defined(CONFIG_CPU_SUBTYPE_SH7206) || \
  143. defined(CONFIG_CPU_SUBTYPE_SH7263)
  144. # define SCSPTR0 0xfffe8020 /* 16 bit SCIF */
  145. # define SCSPTR1 0xfffe8820 /* 16 bit SCIF */
  146. # define SCSPTR2 0xfffe9020 /* 16 bit SCIF */
  147. # define SCSPTR3 0xfffe9820 /* 16 bit SCIF */
  148. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  149. # define SCIF_ONLY
  150. #elif defined(CONFIG_CPU_SUBTYPE_SH7619)
  151. # define SCSPTR0 0xf8400020 /* 16 bit SCIF */
  152. # define SCSPTR1 0xf8410020 /* 16 bit SCIF */
  153. # define SCSPTR2 0xf8420020 /* 16 bit SCIF */
  154. # define SCIF_ORER 0x0001 /* overrun error bit */
  155. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  156. # define SCIF_ONLY
  157. #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 */
  164. # define SCIF_ONLY
  165. #else
  166. # error CPU subtype not defined
  167. #endif
  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 */
  173. #if defined(CONFIG_CPU_SUBTYPE_SH7750) || \
  174. defined(CONFIG_CPU_SUBTYPE_SH7091) || \
  175. defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
  176. defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
  177. defined(CONFIG_CPU_SUBTYPE_SH7751) || \
  178. defined(CONFIG_CPU_SUBTYPE_SH7751R) || \
  179. defined(CONFIG_CPU_SUBTYPE_SH7780) || \
  180. defined(CONFIG_CPU_SUBTYPE_SH7785) || \
  181. defined(CONFIG_CPU_SUBTYPE_SHX3)
  182. #define SCI_CTRL_FLAGS_REIE 0x08 /* 7750 SCIF */
  183. #else
  184. #define SCI_CTRL_FLAGS_REIE 0
  185. #endif
  186. /* SCI_CTRL_FLAGS_MPIE 0x08 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  187. /* SCI_CTRL_FLAGS_TEIE 0x04 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  188. /* SCI_CTRL_FLAGS_CKE1 0x02 * all */
  189. /* SCI_CTRL_FLAGS_CKE0 0x01 * 7707 SCI/SCIF, 7708 SCI, 7709 SCI/SCIF, 7750 SCI */
  190. /* SCxSR SCI */
  191. #define SCI_TDRE 0x80 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  192. #define SCI_RDRF 0x40 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  193. #define SCI_ORER 0x20 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  194. #define SCI_FER 0x10 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  195. #define SCI_PER 0x08 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  196. #define SCI_TEND 0x04 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  197. /* SCI_MPB 0x02 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  198. /* SCI_MPBT 0x01 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  199. #define SCI_ERRORS ( SCI_PER | SCI_FER | SCI_ORER)
  200. /* SCxSR SCIF */
  201. #define SCIF_ER 0x0080 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  202. #define SCIF_TEND 0x0040 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  203. #define SCIF_TDFE 0x0020 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  204. #define SCIF_BRK 0x0010 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  205. #define SCIF_FER 0x0008 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  206. #define SCIF_PER 0x0004 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  207. #define SCIF_RDF 0x0002 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  208. #define SCIF_DR 0x0001 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  209. #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
  210. defined(CONFIG_CPU_SUBTYPE_SH7720)
  211. #define SCIF_ORER 0x0200
  212. #define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER)
  213. #define SCIF_RFDC_MASK 0x007f
  214. #define SCIF_TXROOM_MAX 64
  215. #else
  216. #define SCIF_ERRORS ( SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
  217. #define SCIF_RFDC_MASK 0x001f
  218. #define SCIF_TXROOM_MAX 16
  219. #endif
  220. #if defined(SCI_ONLY)
  221. # define SCxSR_TEND(port) SCI_TEND
  222. # define SCxSR_ERRORS(port) SCI_ERRORS
  223. # define SCxSR_RDxF(port) SCI_RDRF
  224. # define SCxSR_TDxE(port) SCI_TDRE
  225. # define SCxSR_ORER(port) SCI_ORER
  226. # define SCxSR_FER(port) SCI_FER
  227. # define SCxSR_PER(port) SCI_PER
  228. # define SCxSR_BRK(port) 0x00
  229. # define SCxSR_RDxF_CLEAR(port) 0xbc
  230. # define SCxSR_ERROR_CLEAR(port) 0xc4
  231. # define SCxSR_TDxE_CLEAR(port) 0x78
  232. # define SCxSR_BREAK_CLEAR(port) 0xc4
  233. #elif defined(SCIF_ONLY)
  234. # define SCxSR_TEND(port) SCIF_TEND
  235. # define SCxSR_ERRORS(port) SCIF_ERRORS
  236. # define SCxSR_RDxF(port) SCIF_RDF
  237. # define SCxSR_TDxE(port) SCIF_TDFE
  238. #if defined(CONFIG_CPU_SUBTYPE_SH7705)
  239. # define SCxSR_ORER(port) SCIF_ORER
  240. #else
  241. # define SCxSR_ORER(port) 0x0000
  242. #endif
  243. # define SCxSR_FER(port) SCIF_FER
  244. # define SCxSR_PER(port) SCIF_PER
  245. # define SCxSR_BRK(port) SCIF_BRK
  246. #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
  247. defined(CONFIG_CPU_SUBTYPE_SH7720)
  248. # define SCxSR_RDxF_CLEAR(port) (sci_in(port,SCxSR)&0xfffc)
  249. # define SCxSR_ERROR_CLEAR(port) (sci_in(port,SCxSR)&0xfd73)
  250. # define SCxSR_TDxE_CLEAR(port) (sci_in(port,SCxSR)&0xffdf)
  251. # define SCxSR_BREAK_CLEAR(port) (sci_in(port,SCxSR)&0xffe3)
  252. #else
  253. /* SH7705 can also use this, clearing is same between 7705 and 7709 */
  254. # define SCxSR_RDxF_CLEAR(port) 0x00fc
  255. # define SCxSR_ERROR_CLEAR(port) 0x0073
  256. # define SCxSR_TDxE_CLEAR(port) 0x00df
  257. # define SCxSR_BREAK_CLEAR(port) 0x00e3
  258. #endif
  259. #else
  260. # define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
  261. # define SCxSR_ERRORS(port) (((port)->type == PORT_SCI) ? SCI_ERRORS : SCIF_ERRORS)
  262. # define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
  263. # define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
  264. # define SCxSR_ORER(port) (((port)->type == PORT_SCI) ? SCI_ORER : 0x0000)
  265. # define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
  266. # define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
  267. # define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
  268. # define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
  269. # define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
  270. # define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
  271. # define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3)
  272. #endif
  273. /* SCFCR */
  274. #define SCFCR_RFRST 0x0002
  275. #define SCFCR_TFRST 0x0004
  276. #define SCFCR_TCRST 0x4000
  277. #define SCFCR_MCE 0x0008
  278. #define SCI_MAJOR 204
  279. #define SCI_MINOR_START 8
  280. /* Generic serial flags */
  281. #define SCI_RX_THROTTLE 0x0000001
  282. #define SCI_MAGIC 0xbabeface
  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. #define SCI_IN(size, offset) \
  289. unsigned int addr = port->mapbase + (offset); \
  290. if ((size) == 8) { \
  291. return ctrl_inb(addr); \
  292. } else { \
  293. return ctrl_inw(addr); \
  294. }
  295. #define SCI_OUT(size, offset, value) \
  296. unsigned int addr = port->mapbase + (offset); \
  297. if ((size) == 8) { \
  298. ctrl_outb(value, addr); \
  299. } else { \
  300. ctrl_outw(value, addr); \
  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. { \
  305. if (port->type == PORT_SCI) { \
  306. SCI_IN(sci_size, sci_offset) \
  307. } else { \
  308. SCI_IN(scif_size, scif_offset); \
  309. } \
  310. } \
  311. static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \
  312. { \
  313. if (port->type == PORT_SCI) { \
  314. SCI_OUT(sci_size, sci_offset, value) \
  315. } else { \
  316. SCI_OUT(scif_size, scif_offset, value); \
  317. } \
  318. }
  319. #define CPU_SCIF_FNS(name, scif_offset, scif_size) \
  320. static inline unsigned int sci_##name##_in(struct uart_port *port) \
  321. { \
  322. SCI_IN(scif_size, scif_offset); \
  323. } \
  324. static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \
  325. { \
  326. SCI_OUT(scif_size, scif_offset, value); \
  327. }
  328. #define CPU_SCI_FNS(name, sci_offset, sci_size) \
  329. static inline unsigned int sci_##name##_in(struct uart_port* port) \
  330. { \
  331. SCI_IN(sci_size, sci_offset); \
  332. } \
  333. static inline void sci_##name##_out(struct uart_port* port, unsigned int value) \
  334. { \
  335. SCI_OUT(sci_size, sci_offset, value); \
  336. }
  337. #ifdef CONFIG_CPU_SH3
  338. #if defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
  339. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
  340. sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
  341. h8_sci_offset, h8_sci_size) \
  342. CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size)
  343. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
  344. CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
  345. #elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \
  346. defined(CONFIG_CPU_SUBTYPE_SH7720)
  347. #define SCIF_FNS(name, scif_offset, scif_size) \
  348. CPU_SCIF_FNS(name, scif_offset, scif_size)
  349. #else
  350. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
  351. sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
  352. h8_sci_offset, h8_sci_size) \
  353. CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh3_scif_offset, sh3_scif_size)
  354. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
  355. CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size)
  356. #endif
  357. #elif defined(__H8300H__) || defined(__H8300S__)
  358. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
  359. sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
  360. h8_sci_offset, h8_sci_size) \
  361. CPU_SCI_FNS(name, h8_sci_offset, h8_sci_size)
  362. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size)
  363. #else
  364. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size, sh4_sci_offset, sh4_sci_size, \
  365. sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
  366. h8_sci_offset, h8_sci_size) \
  367. CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size, sh4_scif_offset, sh4_scif_size)
  368. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
  369. CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
  370. #endif
  371. #if defined(CONFIG_CPU_SUBTYPE_SH7705) || \
  372. defined(CONFIG_CPU_SUBTYPE_SH7720)
  373. SCIF_FNS(SCSMR, 0x00, 16)
  374. SCIF_FNS(SCBRR, 0x04, 8)
  375. SCIF_FNS(SCSCR, 0x08, 16)
  376. SCIF_FNS(SCTDSR, 0x0c, 8)
  377. SCIF_FNS(SCFER, 0x10, 16)
  378. SCIF_FNS(SCxSR, 0x14, 16)
  379. SCIF_FNS(SCFCR, 0x18, 16)
  380. SCIF_FNS(SCFDR, 0x1c, 16)
  381. SCIF_FNS(SCxTDR, 0x20, 8)
  382. SCIF_FNS(SCxRDR, 0x24, 8)
  383. SCIF_FNS(SCLSR, 0x24, 16)
  384. #else
  385. /* reg SCI/SH3 SCI/SH4 SCIF/SH3 SCIF/SH4 SCI/H8*/
  386. /* name off sz off sz off sz off sz off sz*/
  387. SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16, 0x00, 8)
  388. SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8, 0x01, 8)
  389. SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16, 0x02, 8)
  390. SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8, 0x03, 8)
  391. SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16, 0x04, 8)
  392. SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8, 0x05, 8)
  393. SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16)
  394. #if defined(CONFIG_CPU_SUBTYPE_SH7760) || \
  395. defined(CONFIG_CPU_SUBTYPE_SH7780) || \
  396. defined(CONFIG_CPU_SUBTYPE_SH7785)
  397. SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
  398. SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
  399. SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
  400. SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
  401. SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
  402. #else
  403. SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
  404. SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
  405. SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
  406. #endif
  407. #endif
  408. #define sci_in(port, reg) sci_##reg##_in(port)
  409. #define sci_out(port, reg, value) sci_##reg##_out(port, value)
  410. /* H8/300 series SCI pins assignment */
  411. #if defined(__H8300H__) || defined(__H8300S__)
  412. static const struct __attribute__((packed)) {
  413. int port; /* GPIO port no */
  414. unsigned short rx,tx; /* GPIO bit no */
  415. } h8300_sci_pins[] = {
  416. #if defined(CONFIG_H83007) || defined(CONFIG_H83068)
  417. { /* SCI0 */
  418. .port = H8300_GPIO_P9,
  419. .rx = H8300_GPIO_B2,
  420. .tx = H8300_GPIO_B0,
  421. },
  422. { /* SCI1 */
  423. .port = H8300_GPIO_P9,
  424. .rx = H8300_GPIO_B3,
  425. .tx = H8300_GPIO_B1,
  426. },
  427. { /* SCI2 */
  428. .port = H8300_GPIO_PB,
  429. .rx = H8300_GPIO_B7,
  430. .tx = H8300_GPIO_B6,
  431. }
  432. #elif defined(CONFIG_H8S2678)
  433. { /* SCI0 */
  434. .port = H8300_GPIO_P3,
  435. .rx = H8300_GPIO_B2,
  436. .tx = H8300_GPIO_B0,
  437. },
  438. { /* SCI1 */
  439. .port = H8300_GPIO_P3,
  440. .rx = H8300_GPIO_B3,
  441. .tx = H8300_GPIO_B1,
  442. },
  443. { /* SCI2 */
  444. .port = H8300_GPIO_P5,
  445. .rx = H8300_GPIO_B1,
  446. .tx = H8300_GPIO_B0,
  447. }
  448. #endif
  449. };
  450. #endif
  451. #if defined(CONFIG_CPU_SUBTYPE_SH7706) || \
  452. defined(CONFIG_CPU_SUBTYPE_SH7707) || \
  453. defined(CONFIG_CPU_SUBTYPE_SH7708) || \
  454. defined(CONFIG_CPU_SUBTYPE_SH7709)
  455. static inline int sci_rxd_in(struct uart_port *port)
  456. {
  457. if (port->mapbase == 0xfffffe80)
  458. return ctrl_inb(SCPDR)&0x01 ? 1 : 0; /* SCI */
  459. if (port->mapbase == 0xa4000150)
  460. return ctrl_inb(SCPDR)&0x10 ? 1 : 0; /* SCIF */
  461. if (port->mapbase == 0xa4000140)
  462. return ctrl_inb(SCPDR)&0x04 ? 1 : 0; /* IRDA */
  463. return 1;
  464. }
  465. #elif defined(CONFIG_CPU_SUBTYPE_SH7705)
  466. static inline int sci_rxd_in(struct uart_port *port)
  467. {
  468. if (port->mapbase == SCIF0)
  469. return ctrl_inb(SCPDR)&0x04 ? 1 : 0; /* IRDA */
  470. if (port->mapbase == SCIF2)
  471. return ctrl_inb(SCPDR)&0x10 ? 1 : 0; /* SCIF */
  472. return 1;
  473. }
  474. #elif defined(CONFIG_CPU_SUBTYPE_SH7710) || defined(CONFIG_CPU_SUBTYPE_SH7712)
  475. static inline int sci_rxd_in(struct uart_port *port)
  476. {
  477. return sci_in(port,SCxSR)&0x0010 ? 1 : 0;
  478. }
  479. static inline void set_sh771x_scif_pfc(struct uart_port *port)
  480. {
  481. if (port->mapbase == 0xA4400000){
  482. ctrl_outw(ctrl_inw(PACR)&0xffc0,PACR);
  483. ctrl_outw(ctrl_inw(PBCR)&0x0fff,PBCR);
  484. return;
  485. }
  486. if (port->mapbase == 0xA4410000){
  487. ctrl_outw(ctrl_inw(PBCR)&0xf003,PBCR);
  488. return;
  489. }
  490. }
  491. #elif defined(CONFIG_CPU_SUBTYPE_SH7720)
  492. static inline int sci_rxd_in(struct uart_port *port)
  493. {
  494. if (port->mapbase == 0xa4430000)
  495. return sci_in(port, SCxSR) & 0x0003 ? 1 : 0;
  496. else if (port->mapbase == 0xa4438000)
  497. return sci_in(port, SCxSR) & 0x0003 ? 1 : 0;
  498. return 1;
  499. }
  500. #elif defined(CONFIG_CPU_SUBTYPE_SH7750) || \
  501. defined(CONFIG_CPU_SUBTYPE_SH7751) || \
  502. defined(CONFIG_CPU_SUBTYPE_SH7751R) || \
  503. defined(CONFIG_CPU_SUBTYPE_SH7750R) || \
  504. defined(CONFIG_CPU_SUBTYPE_SH7750S) || \
  505. defined(CONFIG_CPU_SUBTYPE_SH7091) || \
  506. defined(CONFIG_CPU_SUBTYPE_SH4_202)
  507. static inline int sci_rxd_in(struct uart_port *port)
  508. {
  509. #ifndef SCIF_ONLY
  510. if (port->mapbase == 0xffe00000)
  511. return ctrl_inb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */
  512. #endif
  513. #ifndef SCI_ONLY
  514. if (port->mapbase == 0xffe80000)
  515. return ctrl_inw(SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
  516. #endif
  517. return 1;
  518. }
  519. #elif defined(CONFIG_CPU_SUBTYPE_SH7760)
  520. static inline int sci_rxd_in(struct uart_port *port)
  521. {
  522. if (port->mapbase == 0xfe600000)
  523. return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
  524. if (port->mapbase == 0xfe610000)
  525. return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
  526. if (port->mapbase == 0xfe620000)
  527. return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
  528. return 1;
  529. }
  530. #elif defined(CONFIG_CPU_SUBTYPE_SH7343)
  531. static inline int sci_rxd_in(struct uart_port *port)
  532. {
  533. if (port->mapbase == 0xffe00000)
  534. return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
  535. if (port->mapbase == 0xffe10000)
  536. return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
  537. if (port->mapbase == 0xffe20000)
  538. return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
  539. if (port->mapbase == 0xffe30000)
  540. return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
  541. return 1;
  542. }
  543. #elif defined(CONFIG_CPU_SUBTYPE_SH7722)
  544. static inline int sci_rxd_in(struct uart_port *port)
  545. {
  546. if (port->mapbase == 0xffe00000)
  547. return ctrl_inb(SCPDR0) & 0x0001 ? 1 : 0; /* SCIF0 */
  548. return 1;
  549. }
  550. #elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
  551. static inline int sci_rxd_in(struct uart_port *port)
  552. {
  553. return sci_in(port, SCSPTR)&0x0001 ? 1 : 0; /* SCIF */
  554. }
  555. #elif defined(__H8300H__) || defined(__H8300S__)
  556. static inline int sci_rxd_in(struct uart_port *port)
  557. {
  558. int ch = (port->mapbase - SMR0) >> 3;
  559. return (H8300_SCI_DR(ch) & h8300_sci_pins[ch].rx) ? 1 : 0;
  560. }
  561. #elif defined(CONFIG_CPU_SUBTYPE_SH7770)
  562. static inline int sci_rxd_in(struct uart_port *port)
  563. {
  564. if (port->mapbase == 0xff923000)
  565. return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
  566. if (port->mapbase == 0xff924000)
  567. return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
  568. if (port->mapbase == 0xff925000)
  569. return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
  570. return 1;
  571. }
  572. #elif defined(CONFIG_CPU_SUBTYPE_SH7780)
  573. static inline int sci_rxd_in(struct uart_port *port)
  574. {
  575. if (port->mapbase == 0xffe00000)
  576. return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
  577. if (port->mapbase == 0xffe10000)
  578. return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
  579. return 1;
  580. }
  581. #elif defined(CONFIG_CPU_SUBTYPE_SH7785)
  582. static inline int sci_rxd_in(struct uart_port *port)
  583. {
  584. if (port->mapbase == 0xffea0000)
  585. return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
  586. if (port->mapbase == 0xffeb0000)
  587. return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
  588. if (port->mapbase == 0xffec0000)
  589. return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
  590. if (port->mapbase == 0xffed0000)
  591. return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
  592. if (port->mapbase == 0xffee0000)
  593. return ctrl_inw(SCSPTR4) & 0x0001 ? 1 : 0; /* SCIF */
  594. if (port->mapbase == 0xffef0000)
  595. return ctrl_inw(SCSPTR5) & 0x0001 ? 1 : 0; /* SCIF */
  596. return 1;
  597. }
  598. #elif defined(CONFIG_CPU_SUBTYPE_SH7203) || \
  599. defined(CONFIG_CPU_SUBTYPE_SH7206) || \
  600. defined(CONFIG_CPU_SUBTYPE_SH7263)
  601. static inline int sci_rxd_in(struct uart_port *port)
  602. {
  603. if (port->mapbase == 0xfffe8000)
  604. return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
  605. if (port->mapbase == 0xfffe8800)
  606. return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
  607. if (port->mapbase == 0xfffe9000)
  608. return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
  609. if (port->mapbase == 0xfffe9800)
  610. return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
  611. return 1;
  612. }
  613. #elif defined(CONFIG_CPU_SUBTYPE_SH7619)
  614. static inline int sci_rxd_in(struct uart_port *port)
  615. {
  616. if (port->mapbase == 0xf8400000)
  617. return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
  618. if (port->mapbase == 0xf8410000)
  619. return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
  620. if (port->mapbase == 0xf8420000)
  621. return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
  622. return 1;
  623. }
  624. #elif defined(CONFIG_CPU_SUBTYPE_SHX3)
  625. static inline int sci_rxd_in(struct uart_port *port)
  626. {
  627. if (port->mapbase == 0xffc30000)
  628. return ctrl_inw(SCSPTR0) & 0x0001 ? 1 : 0; /* SCIF */
  629. if (port->mapbase == 0xffc40000)
  630. return ctrl_inw(SCSPTR1) & 0x0001 ? 1 : 0; /* SCIF */
  631. if (port->mapbase == 0xffc50000)
  632. return ctrl_inw(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF */
  633. if (port->mapbase == 0xffc60000)
  634. return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */
  635. return 1;
  636. }
  637. #endif
  638. /*
  639. * Values for the BitRate Register (SCBRR)
  640. *
  641. * The values are actually divisors for a frequency which can
  642. * be internal to the SH3 (14.7456MHz) or derived from an external
  643. * clock source. This driver assumes the internal clock is used;
  644. * to support using an external clock source, config options or
  645. * possibly command-line options would need to be added.
  646. *
  647. * Also, to support speeds below 2400 (why?) the lower 2 bits of
  648. * the SCSMR register would also need to be set to non-zero values.
  649. *
  650. * -- Greg Banks 27Feb2000
  651. *
  652. * Answer: The SCBRR register is only eight bits, and the value in
  653. * it gets larger with lower baud rates. At around 2400 (depending on
  654. * the peripherial module clock) you run out of bits. However the
  655. * lower two bits of SCSMR allow the module clock to be divided down,
  656. * scaling the value which is needed in SCBRR.
  657. *
  658. * -- Stuart Menefy - 23 May 2000
  659. *
  660. * I meant, why would anyone bother with bitrates below 2400.
  661. *
  662. * -- Greg Banks - 7Jul2000
  663. *
  664. * You "speedist"! How will I use my 110bps ASR-33 teletype with paper
  665. * tape reader as a console!
  666. *
  667. * -- Mitch Davis - 15 Jul 2000
  668. */
  669. #if defined(CONFIG_CPU_SUBTYPE_SH7780) || \
  670. defined(CONFIG_CPU_SUBTYPE_SH7785)
  671. #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1)
  672. #elif defined(CONFIG_CPU_SUBTYPE_SH7705) || \
  673. defined(CONFIG_CPU_SUBTYPE_SH7720)
  674. #define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1)
  675. #elif defined(__H8300H__) || defined(__H8300S__)
  676. #define SCBRR_VALUE(bps) (((CONFIG_CPU_CLOCK*1000/32)/bps)-1)
  677. #elif defined(CONFIG_SUPERH64)
  678. #define SCBRR_VALUE(bps) ((current_cpu_data.module_clock+16*bps)/(32*bps)-1)
  679. #else /* Generic SH */
  680. #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1)
  681. #endif