sh-sci.h 29 KB

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