serial_sh.h 25 KB

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