sh-sci.h 30 KB

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