sh-sci.h 31 KB

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