serial_sh.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. /*
  2. * Copy and modify from linux/drivers/serial/sh-sci.h
  3. */
  4. struct uart_port {
  5. unsigned long iobase; /* in/out[bwl] */
  6. unsigned char *membase; /* read/write[bwl] */
  7. unsigned long mapbase; /* for ioremap */
  8. unsigned int type; /* port type */
  9. };
  10. #define PORT_SCI 52
  11. #define PORT_SCIF 53
  12. #define PORT_SCIFA 83
  13. #define PORT_SCIFB 93
  14. #if defined(CONFIG_H83007) || defined(CONFIG_H83068)
  15. #include <asm/regs306x.h>
  16. #endif
  17. #if defined(CONFIG_H8S2678)
  18. #include <asm/regs267x.h>
  19. #endif
  20. #if defined(CONFIG_CPU_SH7706) || \
  21. defined(CONFIG_CPU_SH7707) || \
  22. defined(CONFIG_CPU_SH7708) || \
  23. defined(CONFIG_CPU_SH7709)
  24. # define SCPCR 0xA4000116 /* 16 bit SCI and SCIF */
  25. # define SCPDR 0xA4000136 /* 8 bit SCI and SCIF */
  26. # define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
  27. #elif defined(CONFIG_CPU_SH7705)
  28. # define SCIF0 0xA4400000
  29. # define SCIF2 0xA4410000
  30. # define SCSMR_Ir 0xA44A0000
  31. # define IRDA_SCIF SCIF0
  32. # define SCPCR 0xA4000116
  33. # define SCPDR 0xA4000136
  34. /* Set the clock source,
  35. * SCIF2 (0xA4410000) -> External clock, SCK pin used as clock input
  36. * SCIF0 (0xA4400000) -> Internal clock, SCK pin as serial clock output
  37. */
  38. # define SCSCR_INIT(port) (port->mapbase == SCIF2) ? 0xF3 : 0xF0
  39. #elif defined(CONFIG_CPU_SH7720) || \
  40. defined(CONFIG_CPU_SH7721) || \
  41. defined(CONFIG_ARCH_SH7367) || \
  42. defined(CONFIG_ARCH_SH7377) || \
  43. defined(CONFIG_ARCH_SH7372)
  44. # define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */
  45. # define PORT_PTCR 0xA405011EUL
  46. # define PORT_PVCR 0xA4050122UL
  47. # define SCIF_ORER 0x0200 /* overrun error bit */
  48. #elif defined(CONFIG_SH_RTS7751R2D)
  49. # define SCSPTR1 0xFFE0001C /* 8 bit SCIF */
  50. # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
  51. # define SCIF_ORER 0x0001 /* overrun error bit */
  52. # define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  53. #elif defined(CONFIG_CPU_SH7750) || \
  54. defined(CONFIG_CPU_SH7750R) || \
  55. defined(CONFIG_CPU_SH7750S) || \
  56. defined(CONFIG_CPU_SH7091) || \
  57. defined(CONFIG_CPU_SH7751) || \
  58. defined(CONFIG_CPU_SH7751R)
  59. # define SCSPTR1 0xffe0001c /* 8 bit SCI */
  60. # define SCSPTR2 0xFFE80020 /* 16 bit SCIF */
  61. # define SCIF_ORER 0x0001 /* overrun error bit */
  62. # define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? \
  63. 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \
  64. 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */)
  65. #elif defined(CONFIG_CPU_SH7760)
  66. # define SCSPTR0 0xfe600024 /* 16 bit SCIF */
  67. # define SCSPTR1 0xfe610024 /* 16 bit SCIF */
  68. # define SCSPTR2 0xfe620024 /* 16 bit SCIF */
  69. # define SCIF_ORER 0x0001 /* overrun error bit */
  70. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  71. #elif defined(CONFIG_CPU_SH7710) || defined(CONFIG_CPU_SH7712)
  72. # define SCSPTR0 0xA4400000 /* 16 bit SCIF */
  73. # define SCIF_ORER 0x0001 /* overrun error bit */
  74. # define PACR 0xa4050100
  75. # define PBCR 0xa4050102
  76. # define SCSCR_INIT(port) 0x3B
  77. #elif defined(CONFIG_CPU_SH7343)
  78. # define SCSPTR0 0xffe00010 /* 16 bit SCIF */
  79. # define SCSPTR1 0xffe10010 /* 16 bit SCIF */
  80. # define SCSPTR2 0xffe20010 /* 16 bit SCIF */
  81. # define SCSPTR3 0xffe30010 /* 16 bit SCIF */
  82. # define SCSCR_INIT(port) 0x32 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0,CKE=1 */
  83. #elif defined(CONFIG_CPU_SH7722)
  84. # define PADR 0xA4050120
  85. # undef PSDR
  86. # define PSDR 0xA405013e
  87. # define PWDR 0xA4050166
  88. # define PSCR 0xA405011E
  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_SH7366)
  92. # define SCPDR0 0xA405013E /* 16 bit SCIF0 PSDR */
  93. # define SCSPTR0 SCPDR0
  94. # define SCIF_ORER 0x0001 /* overrun error bit */
  95. # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  96. #elif defined(CONFIG_CPU_SH7723)
  97. # define SCSPTR0 0xa4050160
  98. # define SCSPTR1 0xa405013e
  99. # define SCSPTR2 0xa4050160
  100. # define SCSPTR3 0xa405013e
  101. # define SCSPTR4 0xa4050128
  102. # define SCSPTR5 0xa4050128
  103. # define SCIF_ORER 0x0001 /* overrun error bit */
  104. # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  105. #elif defined(CONFIG_CPU_SH7724)
  106. # define SCIF_ORER 0x0001 /* overrun error bit */
  107. # define SCSCR_INIT(port) ((port)->type == PORT_SCIFA ? \
  108. 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ : \
  109. 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */)
  110. #elif defined(CONFIG_CPU_SH7734)
  111. # define SCSPTR0 0xFFE40020
  112. # define SCSPTR1 0xFFE41020
  113. # define SCSPTR2 0xFFE42020
  114. # define SCSPTR3 0xFFE43020
  115. # define SCSPTR4 0xFFE44020
  116. # define SCSPTR5 0xFFE45020
  117. # define SCIF_ORER 0x0001 /* overrun error bit */
  118. # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  119. #elif defined(CONFIG_CPU_SH4_202)
  120. # define SCSPTR2 0xffe80020 /* 16 bit SCIF */
  121. # define SCIF_ORER 0x0001 /* overrun error bit */
  122. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  123. #elif defined(CONFIG_CPU_SH5_101) || defined(CONFIG_CPU_SH5_103)
  124. # define SCIF_BASE_ADDR 0x01030000
  125. # define SCIF_ADDR_SH5 (PHYS_PERIPHERAL_BLOCK+SCIF_BASE_ADDR)
  126. # define SCIF_PTR2_OFFS 0x0000020
  127. # define SCIF_LSR2_OFFS 0x0000024
  128. # define SCSPTR\
  129. ((port->mapbase)+SCIF_PTR2_OFFS) /* 16 bit SCIF */
  130. # define SCLSR2\
  131. ((port->mapbase)+SCIF_LSR2_OFFS) /* 16 bit SCIF */
  132. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0, TE=1,RE=1,REIE=1 */
  133. #elif defined(CONFIG_H83007) || defined(CONFIG_H83068)
  134. # define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
  135. # define H8300_SCI_DR(ch) (*(volatile char *)(P1DR + h8300_sci_pins[ch].port))
  136. #elif defined(CONFIG_H8S2678)
  137. # define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */
  138. # define H8300_SCI_DR(ch) (*(volatile char *)(P1DR + h8300_sci_pins[ch].port))
  139. #elif defined(CONFIG_CPU_SH7757)
  140. # define SCSPTR0 0xfe4b0020
  141. # define SCSPTR1 0xfe4b0020
  142. # define SCSPTR2 0xfe4b0020
  143. # define SCIF_ORER 0x0001
  144. # define SCSCR_INIT(port) 0x38
  145. # define SCIF_ONLY
  146. #elif defined(CONFIG_CPU_SH7763)
  147. # define SCSPTR0 0xffe00024 /* 16 bit SCIF */
  148. # define SCSPTR1 0xffe08024 /* 16 bit SCIF */
  149. # define SCSPTR2 0xffe10020 /* 16 bit SCIF/IRDA */
  150. # define SCIF_ORER 0x0001 /* overrun error bit */
  151. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  152. #elif defined(CONFIG_CPU_SH7770)
  153. # define SCSPTR0 0xff923020 /* 16 bit SCIF */
  154. # define SCSPTR1 0xff924020 /* 16 bit SCIF */
  155. # define SCSPTR2 0xff925020 /* 16 bit SCIF */
  156. # define SCIF_ORER 0x0001 /* overrun error bit */
  157. # define SCSCR_INIT(port) 0x3c /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,cke=2 */
  158. #elif defined(CONFIG_CPU_SH7780)
  159. # define SCSPTR0 0xffe00024 /* 16 bit SCIF */
  160. # define SCSPTR1 0xffe10024 /* 16 bit SCIF */
  161. # define SCIF_ORER 0x0001 /* Overrun error bit */
  162. #if defined(CONFIG_SH_SH2007)
  163. /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,CKE1=0 */
  164. # define SCSCR_INIT(port) 0x38
  165. #else
  166. /* TIE=0,RIE=0,TE=1,RE=1,REIE=1,CKE1=1 */
  167. # define SCSCR_INIT(port) 0x3a
  168. #endif
  169. #elif defined(CONFIG_CPU_SH7785) || \
  170. defined(CONFIG_CPU_SH7786)
  171. # define SCSPTR0 0xffea0024 /* 16 bit SCIF */
  172. # define SCSPTR1 0xffeb0024 /* 16 bit SCIF */
  173. # define SCSPTR2 0xffec0024 /* 16 bit SCIF */
  174. # define SCSPTR3 0xffed0024 /* 16 bit SCIF */
  175. # define SCSPTR4 0xffee0024 /* 16 bit SCIF */
  176. # define SCSPTR5 0xffef0024 /* 16 bit SCIF */
  177. # define SCIF_ORER 0x0001 /* Overrun error bit */
  178. # define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  179. #elif defined(CONFIG_CPU_SH7201) || \
  180. defined(CONFIG_CPU_SH7203) || \
  181. defined(CONFIG_CPU_SH7206) || \
  182. defined(CONFIG_CPU_SH7263) || \
  183. defined(CONFIG_CPU_SH7264)
  184. # define SCSPTR0 0xfffe8020 /* 16 bit SCIF */
  185. # define SCSPTR1 0xfffe8820 /* 16 bit SCIF */
  186. # define SCSPTR2 0xfffe9020 /* 16 bit SCIF */
  187. # define SCSPTR3 0xfffe9820 /* 16 bit SCIF */
  188. # if defined(CONFIG_CPU_SH7201)
  189. # define SCSPTR4 0xfffeA020 /* 16 bit SCIF */
  190. # define SCSPTR5 0xfffeA820 /* 16 bit SCIF */
  191. # define SCSPTR6 0xfffeB020 /* 16 bit SCIF */
  192. # define SCSPTR7 0xfffeB820 /* 16 bit SCIF */
  193. # endif
  194. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  195. #elif defined(CONFIG_CPU_SH7269)
  196. # define SCSPTR0 0xe8007020 /* 16 bit SCIF */
  197. # define SCSPTR1 0xe8007820 /* 16 bit SCIF */
  198. # define SCSPTR2 0xe8008020 /* 16 bit SCIF */
  199. # define SCSPTR3 0xe8008820 /* 16 bit SCIF */
  200. # define SCSPTR4 0xe8009020 /* 16 bit SCIF */
  201. # define SCSPTR5 0xe8009820 /* 16 bit SCIF */
  202. # define SCSPTR6 0xe800a020 /* 16 bit SCIF */
  203. # define SCSPTR7 0xe800a820 /* 16 bit SCIF */
  204. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  205. #elif defined(CONFIG_CPU_SH7619)
  206. # define SCSPTR0 0xf8400020 /* 16 bit SCIF */
  207. # define SCSPTR1 0xf8410020 /* 16 bit SCIF */
  208. # define SCSPTR2 0xf8420020 /* 16 bit SCIF */
  209. # define SCIF_ORER 0x0001 /* overrun error bit */
  210. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  211. #elif defined(CONFIG_CPU_SHX3)
  212. # define SCSPTR0 0xffc30020 /* 16 bit SCIF */
  213. # define SCSPTR1 0xffc40020 /* 16 bit SCIF */
  214. # define SCSPTR2 0xffc50020 /* 16 bit SCIF */
  215. # define SCSPTR3 0xffc60020 /* 16 bit SCIF */
  216. # define SCIF_ORER 0x0001 /* Overrun error bit */
  217. # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */
  218. #else
  219. # error CPU subtype not defined
  220. #endif
  221. /* SCSCR */
  222. #define SCI_CTRL_FLAGS_TIE 0x80 /* all */
  223. #define SCI_CTRL_FLAGS_RIE 0x40 /* all */
  224. #define SCI_CTRL_FLAGS_TE 0x20 /* all */
  225. #define SCI_CTRL_FLAGS_RE 0x10 /* all */
  226. #if defined(CONFIG_CPU_SH7750) || \
  227. defined(CONFIG_CPU_SH7091) || \
  228. defined(CONFIG_CPU_SH7750R) || \
  229. defined(CONFIG_CPU_SH7722) || \
  230. defined(CONFIG_CPU_SH7734) || \
  231. defined(CONFIG_CPU_SH7750S) || \
  232. defined(CONFIG_CPU_SH7751) || \
  233. defined(CONFIG_CPU_SH7751R) || \
  234. defined(CONFIG_CPU_SH7763) || \
  235. defined(CONFIG_CPU_SH7780) || \
  236. defined(CONFIG_CPU_SH7785) || \
  237. defined(CONFIG_CPU_SH7786) || \
  238. defined(CONFIG_CPU_SHX3)
  239. #define SCI_CTRL_FLAGS_REIE 0x08 /* 7750 SCIF */
  240. #elif defined(CONFIG_CPU_SH7724)
  241. #define SCI_CTRL_FLAGS_REIE ((port)->type == PORT_SCIFA ? 0 : 8)
  242. #else
  243. #define SCI_CTRL_FLAGS_REIE 0
  244. #endif
  245. /* SCI_CTRL_FLAGS_MPIE 0x08 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  246. /* SCI_CTRL_FLAGS_TEIE 0x04 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  247. /* SCI_CTRL_FLAGS_CKE1 0x02 * all */
  248. /* SCI_CTRL_FLAGS_CKE0 0x01 * 7707 SCI/SCIF, 7708 SCI, 7709 SCI/SCIF, 7750 SCI */
  249. /* SCxSR SCI */
  250. #define SCI_TDRE 0x80 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  251. #define SCI_RDRF 0x40 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  252. #define SCI_ORER 0x20 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  253. #define SCI_FER 0x10 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  254. #define SCI_PER 0x08 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  255. #define SCI_TEND 0x04 /* 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  256. /* SCI_MPB 0x02 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  257. /* SCI_MPBT 0x01 * 7707 SCI, 7708 SCI, 7709 SCI, 7750 SCI */
  258. #define SCI_ERRORS ( SCI_PER | SCI_FER | SCI_ORER)
  259. /* SCxSR SCIF */
  260. #define SCIF_ER 0x0080 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  261. #define SCIF_TEND 0x0040 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  262. #define SCIF_TDFE 0x0020 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  263. #define SCIF_BRK 0x0010 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  264. #define SCIF_FER 0x0008 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  265. #define SCIF_PER 0x0004 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  266. #define SCIF_RDF 0x0002 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  267. #define SCIF_DR 0x0001 /* 7705 SCIF, 7707 SCIF, 7709 SCIF, 7750 SCIF */
  268. #if defined(CONFIG_CPU_SH7705) || \
  269. defined(CONFIG_CPU_SH7720) || \
  270. defined(CONFIG_CPU_SH7721) || \
  271. defined(CONFIG_ARCH_SH7367) || \
  272. defined(CONFIG_ARCH_SH7377) || \
  273. defined(CONFIG_ARCH_SH7372)
  274. # define SCIF_ORER 0x0200
  275. # define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK | SCIF_ORER)
  276. # define SCIF_RFDC_MASK 0x007f
  277. # define SCIF_TXROOM_MAX 64
  278. #elif defined(CONFIG_CPU_SH7763)
  279. # define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
  280. # define SCIF_RFDC_MASK 0x007f
  281. # define SCIF_TXROOM_MAX 64
  282. /* SH7763 SCIF2 support */
  283. # define SCIF2_RFDC_MASK 0x001f
  284. # define SCIF2_TXROOM_MAX 16
  285. #else
  286. # define SCIF_ERRORS (SCIF_PER | SCIF_FER | SCIF_ER | SCIF_BRK)
  287. # define SCIF_RFDC_MASK 0x001f
  288. # define SCIF_TXROOM_MAX 16
  289. #endif
  290. #ifndef SCIF_ORER
  291. #define SCIF_ORER 0x0000
  292. #endif
  293. #define SCxSR_TEND(port)\
  294. (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
  295. #define SCxSR_ERRORS(port)\
  296. (((port)->type == PORT_SCI) ? SCI_ERRORS : SCIF_ERRORS)
  297. #define SCxSR_RDxF(port)\
  298. (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
  299. #define SCxSR_TDxE(port)\
  300. (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
  301. #define SCxSR_FER(port)\
  302. (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
  303. #define SCxSR_PER(port)\
  304. (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
  305. #define SCxSR_BRK(port)\
  306. ((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
  307. #define SCxSR_ORER(port)\
  308. (((port)->type == PORT_SCI) ? SCI_ORER : SCIF_ORER)
  309. #if defined(CONFIG_CPU_SH7705) || \
  310. defined(CONFIG_CPU_SH7720) || \
  311. defined(CONFIG_CPU_SH7721) || \
  312. defined(CONFIG_ARCH_SH7367) || \
  313. defined(CONFIG_ARCH_SH7377) || \
  314. defined(CONFIG_ARCH_SH7372)
  315. # define SCxSR_RDxF_CLEAR(port) (sci_in(port, SCxSR) & 0xfffc)
  316. # define SCxSR_ERROR_CLEAR(port) (sci_in(port, SCxSR) & 0xfd73)
  317. # define SCxSR_TDxE_CLEAR(port) (sci_in(port, SCxSR) & 0xffdf)
  318. # define SCxSR_BREAK_CLEAR(port) (sci_in(port, SCxSR) & 0xffe3)
  319. #else
  320. # define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
  321. # define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
  322. # define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
  323. # define SCxSR_BREAK_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x00e3)
  324. #endif
  325. /* SCFCR */
  326. #define SCFCR_RFRST 0x0002
  327. #define SCFCR_TFRST 0x0004
  328. #define SCFCR_TCRST 0x4000
  329. #define SCFCR_MCE 0x0008
  330. #define SCI_MAJOR 204
  331. #define SCI_MINOR_START 8
  332. /* Generic serial flags */
  333. #define SCI_RX_THROTTLE 0x0000001
  334. #define SCI_MAGIC 0xbabeface
  335. /*
  336. * Events are used to schedule things to happen at timer-interrupt
  337. * time, instead of at rs interrupt time.
  338. */
  339. #define SCI_EVENT_WRITE_WAKEUP 0
  340. #define SCI_IN(size, offset)\
  341. if ((size) == 8) {\
  342. return readb(port->membase + (offset));\
  343. } else {\
  344. return readw(port->membase + (offset));\
  345. }
  346. #define SCI_OUT(size, offset, value)\
  347. if ((size) == 8) {\
  348. writeb(value, port->membase + (offset));\
  349. } else if ((size) == 16) {\
  350. writew(value, port->membase + (offset));\
  351. }
  352. #define CPU_SCIx_FNS(name, sci_offset, sci_size, scif_offset, scif_size)\
  353. static inline unsigned int sci_##name##_in(struct uart_port *port) {\
  354. if (port->type == PORT_SCIF || port->type == PORT_SCIFB) {\
  355. SCI_IN(scif_size, scif_offset)\
  356. } else { /* PORT_SCI or PORT_SCIFA */\
  357. SCI_IN(sci_size, sci_offset);\
  358. }\
  359. }\
  360. static inline void sci_##name##_out(struct uart_port *port,\
  361. unsigned int value) {\
  362. if (port->type == PORT_SCIF || port->type == PORT_SCIFB) {\
  363. SCI_OUT(scif_size, scif_offset, value)\
  364. } else { /* PORT_SCI or PORT_SCIFA */\
  365. SCI_OUT(sci_size, sci_offset, value);\
  366. }\
  367. }
  368. #ifdef CONFIG_H8300
  369. /* h8300 don't have SCIF */
  370. #define CPU_SCIF_FNS(name) \
  371. static inline unsigned int sci_##name##_in(struct uart_port *port) {\
  372. return 0;\
  373. }\
  374. static inline void sci_##name##_out(struct uart_port *port,\
  375. unsigned int value) {\
  376. }
  377. #else
  378. #define CPU_SCIF_FNS(name, scif_offset, scif_size) \
  379. static inline unsigned int sci_##name##_in(struct uart_port *port) {\
  380. SCI_IN(scif_size, scif_offset);\
  381. }\
  382. static inline void sci_##name##_out(struct uart_port *port,\
  383. unsigned int value) {\
  384. SCI_OUT(scif_size, scif_offset, value);\
  385. }
  386. #endif
  387. #define CPU_SCI_FNS(name, sci_offset, sci_size)\
  388. static inline unsigned int sci_##name##_in(struct uart_port *port) {\
  389. SCI_IN(sci_size, sci_offset);\
  390. }\
  391. static inline void sci_##name##_out(struct uart_port *port,\
  392. unsigned int value) {\
  393. SCI_OUT(sci_size, sci_offset, value);\
  394. }
  395. #if defined(CONFIG_SH3) || \
  396. defined(CONFIG_ARCH_SH7367) || \
  397. defined(CONFIG_ARCH_SH7377) || \
  398. defined(CONFIG_ARCH_SH7372)
  399. #if defined(CONFIG_CPU_SH7710) || defined(CONFIG_CPU_SH7712)
  400. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
  401. sh4_sci_offset, sh4_sci_size, \
  402. sh3_scif_offset, sh3_scif_size, \
  403. sh4_scif_offset, sh4_scif_size, \
  404. h8_sci_offset, h8_sci_size) \
  405. CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size,\
  406. sh4_scif_offset, sh4_scif_size)
  407. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
  408. sh4_scif_offset, sh4_scif_size) \
  409. CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
  410. #elif defined(CONFIG_CPU_SH7705) || \
  411. defined(CONFIG_CPU_SH7720) || \
  412. defined(CONFIG_CPU_SH7721) || \
  413. defined(CONFIG_ARCH_SH7367) || \
  414. defined(CONFIG_ARCH_SH7377)
  415. #define SCIF_FNS(name, scif_offset, scif_size) \
  416. CPU_SCIF_FNS(name, scif_offset, scif_size)
  417. #elif defined(CONFIG_ARCH_SH7372)
  418. #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
  419. sh4_scifb_offset, sh4_scifb_size) \
  420. CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
  421. sh4_scifb_offset, sh4_scifb_size)
  422. #define SCIF_FNS(name, scif_offset, scif_size) \
  423. CPU_SCIF_FNS(name, scif_offset, scif_size)
  424. #else
  425. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
  426. sh4_sci_offset, sh4_sci_size, \
  427. sh3_scif_offset, sh3_scif_size,\
  428. sh4_scif_offset, sh4_scif_size, \
  429. h8_sci_offset, h8_sci_size) \
  430. CPU_SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
  431. sh3_scif_offset, sh3_scif_size)
  432. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
  433. sh4_scif_offset, sh4_scif_size) \
  434. CPU_SCIF_FNS(name, sh3_scif_offset, sh3_scif_size)
  435. #endif
  436. #elif defined(__H8300H__) || defined(__H8300S__)
  437. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
  438. sh4_sci_offset, sh4_sci_size, \
  439. sh3_scif_offset, sh3_scif_size,\
  440. sh4_scif_offset, sh4_scif_size, \
  441. h8_sci_offset, h8_sci_size) \
  442. CPU_SCI_FNS(name, h8_sci_offset, h8_sci_size)
  443. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size,\
  444. sh4_scif_offset, sh4_scif_size) \
  445. CPU_SCIF_FNS(name)
  446. #elif defined(CONFIG_CPU_SH7723) || defined(CONFIG_CPU_SH7724)
  447. #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
  448. sh4_scif_offset, sh4_scif_size) \
  449. CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size,\
  450. sh4_scif_offset, sh4_scif_size)
  451. #define SCIF_FNS(name, sh4_scif_offset, sh4_scif_size) \
  452. CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
  453. #else
  454. #define SCIx_FNS(name, sh3_sci_offset, sh3_sci_size,\
  455. sh4_sci_offset, sh4_sci_size, \
  456. sh3_scif_offset, sh3_scif_size,\
  457. sh4_scif_offset, sh4_scif_size, \
  458. h8_sci_offset, h8_sci_size) \
  459. CPU_SCIx_FNS(name, sh4_sci_offset, sh4_sci_size,\
  460. sh4_scif_offset, sh4_scif_size)
  461. #define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, \
  462. sh4_scif_offset, sh4_scif_size) \
  463. CPU_SCIF_FNS(name, sh4_scif_offset, sh4_scif_size)
  464. #endif
  465. #if defined(CONFIG_CPU_SH7705) || \
  466. defined(CONFIG_CPU_SH7720) || \
  467. defined(CONFIG_CPU_SH7721) || \
  468. defined(CONFIG_ARCH_SH7367) || \
  469. defined(CONFIG_ARCH_SH7377)
  470. SCIF_FNS(SCSMR, 0x00, 16)
  471. SCIF_FNS(SCBRR, 0x04, 8)
  472. SCIF_FNS(SCSCR, 0x08, 16)
  473. SCIF_FNS(SCTDSR, 0x0c, 8)
  474. SCIF_FNS(SCFER, 0x10, 16)
  475. SCIF_FNS(SCxSR, 0x14, 16)
  476. SCIF_FNS(SCFCR, 0x18, 16)
  477. SCIF_FNS(SCFDR, 0x1c, 16)
  478. SCIF_FNS(SCxTDR, 0x20, 8)
  479. SCIF_FNS(SCxRDR, 0x24, 8)
  480. SCIF_FNS(SCLSR, 0x00, 0)
  481. #elif defined(CONFIG_ARCH_SH7372)
  482. SCIF_FNS(SCSMR, 0x00, 16)
  483. SCIF_FNS(SCBRR, 0x04, 8)
  484. SCIF_FNS(SCSCR, 0x08, 16)
  485. SCIF_FNS(SCTDSR, 0x0c, 16)
  486. SCIF_FNS(SCFER, 0x10, 16)
  487. SCIF_FNS(SCxSR, 0x14, 16)
  488. SCIF_FNS(SCFCR, 0x18, 16)
  489. SCIF_FNS(SCFDR, 0x1c, 16)
  490. SCIF_FNS(SCTFDR, 0x38, 16)
  491. SCIF_FNS(SCRFDR, 0x3c, 16)
  492. SCIx_FNS(SCxTDR, 0x20, 8, 0x40, 8)
  493. SCIx_FNS(SCxRDR, 0x24, 8, 0x60, 8)
  494. SCIF_FNS(SCLSR, 0x00, 0)
  495. #elif defined(CONFIG_CPU_SH7723) ||\
  496. defined(CONFIG_CPU_SH7724)
  497. SCIx_FNS(SCSMR, 0x00, 16, 0x00, 16)
  498. SCIx_FNS(SCBRR, 0x04, 8, 0x04, 8)
  499. SCIx_FNS(SCSCR, 0x08, 16, 0x08, 16)
  500. SCIx_FNS(SCxTDR, 0x20, 8, 0x0c, 8)
  501. SCIx_FNS(SCxSR, 0x14, 16, 0x10, 16)
  502. SCIx_FNS(SCxRDR, 0x24, 8, 0x14, 8)
  503. SCIx_FNS(SCSPTR, 0, 0, 0, 0)
  504. SCIF_FNS(SCTDSR, 0x0c, 8)
  505. SCIF_FNS(SCFER, 0x10, 16)
  506. SCIF_FNS(SCFCR, 0x18, 16)
  507. SCIF_FNS(SCFDR, 0x1c, 16)
  508. SCIF_FNS(SCLSR, 0x24, 16)
  509. #else
  510. /* reg SCI/SH3 SCI/SH4 SCIF/SH3 SCIF/SH4 SCI/H8*/
  511. /* name off sz off sz off sz off sz off sz*/
  512. SCIx_FNS(SCSMR, 0x00, 8, 0x00, 8, 0x00, 8, 0x00, 16, 0x00, 8)
  513. SCIx_FNS(SCBRR, 0x02, 8, 0x04, 8, 0x02, 8, 0x04, 8, 0x01, 8)
  514. SCIx_FNS(SCSCR, 0x04, 8, 0x08, 8, 0x04, 8, 0x08, 16, 0x02, 8)
  515. SCIx_FNS(SCxTDR, 0x06, 8, 0x0c, 8, 0x06, 8, 0x0C, 8, 0x03, 8)
  516. SCIx_FNS(SCxSR, 0x08, 8, 0x10, 8, 0x08, 16, 0x10, 16, 0x04, 8)
  517. SCIx_FNS(SCxRDR, 0x0a, 8, 0x14, 8, 0x0A, 8, 0x14, 8, 0x05, 8)
  518. SCIF_FNS(SCFCR, 0x0c, 8, 0x18, 16)
  519. #if defined(CONFIG_CPU_SH7760) || \
  520. defined(CONFIG_CPU_SH7780) || \
  521. defined(CONFIG_CPU_SH7785) || \
  522. defined(CONFIG_CPU_SH7786)
  523. SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
  524. SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
  525. SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
  526. SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
  527. SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
  528. #elif defined(CONFIG_CPU_SH7763)
  529. SCIF_FNS(SCFDR, 0, 0, 0x1C, 16)
  530. SCIF_FNS(SCSPTR2, 0, 0, 0x20, 16)
  531. SCIF_FNS(SCLSR2, 0, 0, 0x24, 16)
  532. SCIF_FNS(SCTFDR, 0x0e, 16, 0x1C, 16)
  533. SCIF_FNS(SCRFDR, 0x0e, 16, 0x20, 16)
  534. SCIF_FNS(SCSPTR, 0, 0, 0x24, 16)
  535. SCIF_FNS(SCLSR, 0, 0, 0x28, 16)
  536. #else
  537. SCIF_FNS(SCFDR, 0x0e, 16, 0x1C, 16)
  538. #if defined(CONFIG_CPU_SH7722)
  539. SCIF_FNS(SCSPTR, 0, 0, 0, 0)
  540. #else
  541. SCIF_FNS(SCSPTR, 0, 0, 0x20, 16)
  542. #endif
  543. SCIF_FNS(SCLSR, 0, 0, 0x24, 16)
  544. #endif
  545. #endif
  546. #define sci_in(port, reg) sci_##reg##_in(port)
  547. #define sci_out(port, reg, value) sci_##reg##_out(port, value)
  548. /* H8/300 series SCI pins assignment */
  549. #if defined(__H8300H__) || defined(__H8300S__)
  550. static const struct __attribute__((packed)) {
  551. int port; /* GPIO port no */
  552. unsigned short rx, tx; /* GPIO bit no */
  553. } h8300_sci_pins[] = {
  554. #if defined(CONFIG_H83007) || defined(CONFIG_H83068)
  555. { /* SCI0 */
  556. .port = H8300_GPIO_P9,
  557. .rx = H8300_GPIO_B2,
  558. .tx = H8300_GPIO_B0,
  559. },
  560. { /* SCI1 */
  561. .port = H8300_GPIO_P9,
  562. .rx = H8300_GPIO_B3,
  563. .tx = H8300_GPIO_B1,
  564. },
  565. { /* SCI2 */
  566. .port = H8300_GPIO_PB,
  567. .rx = H8300_GPIO_B7,
  568. .tx = H8300_GPIO_B6,
  569. }
  570. #elif defined(CONFIG_H8S2678)
  571. { /* SCI0 */
  572. .port = H8300_GPIO_P3,
  573. .rx = H8300_GPIO_B2,
  574. .tx = H8300_GPIO_B0,
  575. },
  576. { /* SCI1 */
  577. .port = H8300_GPIO_P3,
  578. .rx = H8300_GPIO_B3,
  579. .tx = H8300_GPIO_B1,
  580. },
  581. { /* SCI2 */
  582. .port = H8300_GPIO_P5,
  583. .rx = H8300_GPIO_B1,
  584. .tx = H8300_GPIO_B0,
  585. }
  586. #endif
  587. };
  588. #endif
  589. #if defined(CONFIG_CPU_SH7706) || \
  590. defined(CONFIG_CPU_SH7707) || \
  591. defined(CONFIG_CPU_SH7708) || \
  592. defined(CONFIG_CPU_SH7709)
  593. static inline int sci_rxd_in(struct uart_port *port)
  594. {
  595. if (port->mapbase == 0xfffffe80)
  596. return __raw_readb(SCPDR)&0x01 ? 1 : 0; /* SCI */
  597. return 1;
  598. }
  599. #elif defined(CONFIG_CPU_SH7750) || \
  600. defined(CONFIG_CPU_SH7751) || \
  601. defined(CONFIG_CPU_SH7751R) || \
  602. defined(CONFIG_CPU_SH7750R) || \
  603. defined(CONFIG_CPU_SH7750S) || \
  604. defined(CONFIG_CPU_SH7091)
  605. static inline int sci_rxd_in(struct uart_port *port)
  606. {
  607. if (port->mapbase == 0xffe00000)
  608. return __raw_readb(SCSPTR1)&0x01 ? 1 : 0; /* SCI */
  609. return 1;
  610. }
  611. #elif defined(__H8300H__) || defined(__H8300S__)
  612. static inline int sci_rxd_in(struct uart_port *port)
  613. {
  614. int ch = (port->mapbase - SMR0) >> 3;
  615. return (H8300_SCI_DR(ch) & h8300_sci_pins[ch].rx) ? 1 : 0;
  616. }
  617. #else /* default case for non-SCI processors */
  618. static inline int sci_rxd_in(struct uart_port *port)
  619. {
  620. return 1;
  621. }
  622. #endif
  623. /*
  624. * Values for the BitRate Register (SCBRR)
  625. *
  626. * The values are actually divisors for a frequency which can
  627. * be internal to the SH3 (14.7456MHz) or derived from an external
  628. * clock source. This driver assumes the internal clock is used;
  629. * to support using an external clock source, config options or
  630. * possibly command-line options would need to be added.
  631. *
  632. * Also, to support speeds below 2400 (why?) the lower 2 bits of
  633. * the SCSMR register would also need to be set to non-zero values.
  634. *
  635. * -- Greg Banks 27Feb2000
  636. *
  637. * Answer: The SCBRR register is only eight bits, and the value in
  638. * it gets larger with lower baud rates. At around 2400 (depending on
  639. * the peripherial module clock) you run out of bits. However the
  640. * lower two bits of SCSMR allow the module clock to be divided down,
  641. * scaling the value which is needed in SCBRR.
  642. *
  643. * -- Stuart Menefy - 23 May 2000
  644. *
  645. * I meant, why would anyone bother with bitrates below 2400.
  646. *
  647. * -- Greg Banks - 7Jul2000
  648. *
  649. * You "speedist"! How will I use my 110bps ASR-33 teletype with paper
  650. * tape reader as a console!
  651. *
  652. * -- Mitch Davis - 15 Jul 2000
  653. */
  654. #if (defined(CONFIG_CPU_SH7780) || \
  655. defined(CONFIG_CPU_SH7785) || \
  656. defined(CONFIG_CPU_SH7786)) && \
  657. !defined(CONFIG_SH_SH2007)
  658. #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1)
  659. #elif defined(CONFIG_CPU_SH7705) || \
  660. defined(CONFIG_CPU_SH7720) || \
  661. defined(CONFIG_CPU_SH7721) || \
  662. defined(CONFIG_ARCH_SH7367) || \
  663. defined(CONFIG_ARCH_SH7377) || \
  664. defined(CONFIG_ARCH_SH7372)
  665. #define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1)
  666. #elif defined(CONFIG_CPU_SH7723) ||\
  667. defined(CONFIG_CPU_SH7724)
  668. static inline int scbrr_calc(struct uart_port port, int bps, int clk)
  669. {
  670. if (port.type == PORT_SCIF)
  671. return (clk+16*bps)/(32*bps)-1;
  672. else
  673. return ((clk*2)+16*bps)/(16*bps)-1;
  674. }
  675. #define SCBRR_VALUE(bps, clk) scbrr_calc(sh_sci, bps, clk)
  676. #elif defined(__H8300H__) || defined(__H8300S__)
  677. #define SCBRR_VALUE(bps, clk) (((clk*1000/32)/bps)-1)
  678. #else /* Generic SH */
  679. #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(32*bps)-1)
  680. #endif