sunsab.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* sunsab.h: Register Definitions for the Siemens SAB82532 DUSCC
  3. *
  4. * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
  5. */
  6. #ifndef _SUNSAB_H
  7. #define _SUNSAB_H
  8. struct sab82532_async_rd_regs {
  9. u8 rfifo[0x20]; /* Receive FIFO */
  10. u8 star; /* Status Register */
  11. u8 __pad1;
  12. u8 mode; /* Mode Register */
  13. u8 timr; /* Timer Register */
  14. u8 xon; /* XON Character */
  15. u8 xoff; /* XOFF Character */
  16. u8 tcr; /* Termination Character Register */
  17. u8 dafo; /* Data Format */
  18. u8 rfc; /* RFIFO Control Register */
  19. u8 __pad2;
  20. u8 rbcl; /* Receive Byte Count Low */
  21. u8 rbch; /* Receive Byte Count High */
  22. u8 ccr0; /* Channel Configuration Register 0 */
  23. u8 ccr1; /* Channel Configuration Register 1 */
  24. u8 ccr2; /* Channel Configuration Register 2 */
  25. u8 ccr3; /* Channel Configuration Register 3 */
  26. u8 __pad3[4];
  27. u8 vstr; /* Version Status Register */
  28. u8 __pad4[3];
  29. u8 gis; /* Global Interrupt Status */
  30. u8 ipc; /* Interrupt Port Configuration */
  31. u8 isr0; /* Interrupt Status 0 */
  32. u8 isr1; /* Interrupt Status 1 */
  33. u8 pvr; /* Port Value Register */
  34. u8 pis; /* Port Interrupt Status */
  35. u8 pcr; /* Port Configuration Register */
  36. u8 ccr4; /* Channel Configuration Register 4 */
  37. };
  38. struct sab82532_async_wr_regs {
  39. u8 xfifo[0x20]; /* Transmit FIFO */
  40. u8 cmdr; /* Command Register */
  41. u8 __pad1;
  42. u8 mode;
  43. u8 timr;
  44. u8 xon;
  45. u8 xoff;
  46. u8 tcr;
  47. u8 dafo;
  48. u8 rfc;
  49. u8 __pad2;
  50. u8 xbcl; /* Transmit Byte Count Low */
  51. u8 xbch; /* Transmit Byte Count High */
  52. u8 ccr0;
  53. u8 ccr1;
  54. u8 ccr2;
  55. u8 ccr3;
  56. u8 tsax; /* Time-Slot Assignment Reg. Transmit */
  57. u8 tsar; /* Time-Slot Assignment Reg. Receive */
  58. u8 xccr; /* Transmit Channel Capacity Register */
  59. u8 rccr; /* Receive Channel Capacity Register */
  60. u8 bgr; /* Baud Rate Generator Register */
  61. u8 tic; /* Transmit Immediate Character */
  62. u8 mxn; /* Mask XON Character */
  63. u8 mxf; /* Mask XOFF Character */
  64. u8 iva; /* Interrupt Vector Address */
  65. u8 ipc;
  66. u8 imr0; /* Interrupt Mask Register 0 */
  67. u8 imr1; /* Interrupt Mask Register 1 */
  68. u8 pvr;
  69. u8 pim; /* Port Interrupt Mask */
  70. u8 pcr;
  71. u8 ccr4;
  72. };
  73. struct sab82532_async_rw_regs { /* Read/Write registers */
  74. u8 __pad1[0x20];
  75. u8 __pad2;
  76. u8 __pad3;
  77. u8 mode;
  78. u8 timr;
  79. u8 xon;
  80. u8 xoff;
  81. u8 tcr;
  82. u8 dafo;
  83. u8 rfc;
  84. u8 __pad4;
  85. u8 __pad5;
  86. u8 __pad6;
  87. u8 ccr0;
  88. u8 ccr1;
  89. u8 ccr2;
  90. u8 ccr3;
  91. u8 __pad7;
  92. u8 __pad8;
  93. u8 __pad9;
  94. u8 __pad10;
  95. u8 __pad11;
  96. u8 __pad12;
  97. u8 __pad13;
  98. u8 __pad14;
  99. u8 __pad15;
  100. u8 ipc;
  101. u8 __pad16;
  102. u8 __pad17;
  103. u8 pvr;
  104. u8 __pad18;
  105. u8 pcr;
  106. u8 ccr4;
  107. };
  108. union sab82532_async_regs {
  109. __volatile__ struct sab82532_async_rd_regs r;
  110. __volatile__ struct sab82532_async_wr_regs w;
  111. __volatile__ struct sab82532_async_rw_regs rw;
  112. };
  113. union sab82532_irq_status {
  114. unsigned short stat;
  115. struct {
  116. unsigned char isr0;
  117. unsigned char isr1;
  118. } sreg;
  119. };
  120. /* irqflags bits */
  121. #define SAB82532_ALLS 0x00000001
  122. #define SAB82532_XPR 0x00000002
  123. #define SAB82532_REGS_PENDING 0x00000004
  124. /* RFIFO Status Byte */
  125. #define SAB82532_RSTAT_PE 0x80
  126. #define SAB82532_RSTAT_FE 0x40
  127. #define SAB82532_RSTAT_PARITY 0x01
  128. /* Status Register (STAR) */
  129. #define SAB82532_STAR_XDOV 0x80
  130. #define SAB82532_STAR_XFW 0x40
  131. #define SAB82532_STAR_RFNE 0x20
  132. #define SAB82532_STAR_FCS 0x10
  133. #define SAB82532_STAR_TEC 0x08
  134. #define SAB82532_STAR_CEC 0x04
  135. #define SAB82532_STAR_CTS 0x02
  136. /* Command Register (CMDR) */
  137. #define SAB82532_CMDR_RMC 0x80
  138. #define SAB82532_CMDR_RRES 0x40
  139. #define SAB82532_CMDR_RFRD 0x20
  140. #define SAB82532_CMDR_STI 0x10
  141. #define SAB82532_CMDR_XF 0x08
  142. #define SAB82532_CMDR_XRES 0x01
  143. /* Mode Register (MODE) */
  144. #define SAB82532_MODE_FRTS 0x40
  145. #define SAB82532_MODE_FCTS 0x20
  146. #define SAB82532_MODE_FLON 0x10
  147. #define SAB82532_MODE_RAC 0x08
  148. #define SAB82532_MODE_RTS 0x04
  149. #define SAB82532_MODE_TRS 0x02
  150. #define SAB82532_MODE_TLP 0x01
  151. /* Timer Register (TIMR) */
  152. #define SAB82532_TIMR_CNT_MASK 0xe0
  153. #define SAB82532_TIMR_VALUE_MASK 0x1f
  154. /* Data Format (DAFO) */
  155. #define SAB82532_DAFO_XBRK 0x40
  156. #define SAB82532_DAFO_STOP 0x20
  157. #define SAB82532_DAFO_PAR_SPACE 0x00
  158. #define SAB82532_DAFO_PAR_ODD 0x08
  159. #define SAB82532_DAFO_PAR_EVEN 0x10
  160. #define SAB82532_DAFO_PAR_MARK 0x18
  161. #define SAB82532_DAFO_PARE 0x04
  162. #define SAB82532_DAFO_CHL8 0x00
  163. #define SAB82532_DAFO_CHL7 0x01
  164. #define SAB82532_DAFO_CHL6 0x02
  165. #define SAB82532_DAFO_CHL5 0x03
  166. /* RFIFO Control Register (RFC) */
  167. #define SAB82532_RFC_DPS 0x40
  168. #define SAB82532_RFC_DXS 0x20
  169. #define SAB82532_RFC_RFDF 0x10
  170. #define SAB82532_RFC_RFTH_1 0x00
  171. #define SAB82532_RFC_RFTH_4 0x04
  172. #define SAB82532_RFC_RFTH_16 0x08
  173. #define SAB82532_RFC_RFTH_32 0x0c
  174. #define SAB82532_RFC_TCDE 0x01
  175. /* Received Byte Count High (RBCH) */
  176. #define SAB82532_RBCH_DMA 0x80
  177. #define SAB82532_RBCH_CAS 0x20
  178. /* Transmit Byte Count High (XBCH) */
  179. #define SAB82532_XBCH_DMA 0x80
  180. #define SAB82532_XBCH_CAS 0x20
  181. #define SAB82532_XBCH_XC 0x10
  182. /* Channel Configuration Register 0 (CCR0) */
  183. #define SAB82532_CCR0_PU 0x80
  184. #define SAB82532_CCR0_MCE 0x40
  185. #define SAB82532_CCR0_SC_NRZ 0x00
  186. #define SAB82532_CCR0_SC_NRZI 0x08
  187. #define SAB82532_CCR0_SC_FM0 0x10
  188. #define SAB82532_CCR0_SC_FM1 0x14
  189. #define SAB82532_CCR0_SC_MANCH 0x18
  190. #define SAB82532_CCR0_SM_HDLC 0x00
  191. #define SAB82532_CCR0_SM_SDLC_LOOP 0x01
  192. #define SAB82532_CCR0_SM_BISYNC 0x02
  193. #define SAB82532_CCR0_SM_ASYNC 0x03
  194. /* Channel Configuration Register 1 (CCR1) */
  195. #define SAB82532_CCR1_ODS 0x10
  196. #define SAB82532_CCR1_BCR 0x08
  197. #define SAB82532_CCR1_CM_MASK 0x07
  198. /* Channel Configuration Register 2 (CCR2) */
  199. #define SAB82532_CCR2_SOC1 0x80
  200. #define SAB82532_CCR2_SOC0 0x40
  201. #define SAB82532_CCR2_BR9 0x80
  202. #define SAB82532_CCR2_BR8 0x40
  203. #define SAB82532_CCR2_BDF 0x20
  204. #define SAB82532_CCR2_SSEL 0x10
  205. #define SAB82532_CCR2_XCS0 0x20
  206. #define SAB82532_CCR2_RCS0 0x10
  207. #define SAB82532_CCR2_TOE 0x08
  208. #define SAB82532_CCR2_RWX 0x04
  209. #define SAB82532_CCR2_DIV 0x01
  210. /* Channel Configuration Register 3 (CCR3) */
  211. #define SAB82532_CCR3_PSD 0x01
  212. /* Time Slot Assignment Register Transmit (TSAX) */
  213. #define SAB82532_TSAX_TSNX_MASK 0xfc
  214. #define SAB82532_TSAX_XCS2 0x02 /* see also CCR2 */
  215. #define SAB82532_TSAX_XCS1 0x01
  216. /* Time Slot Assignment Register Receive (TSAR) */
  217. #define SAB82532_TSAR_TSNR_MASK 0xfc
  218. #define SAB82532_TSAR_RCS2 0x02 /* see also CCR2 */
  219. #define SAB82532_TSAR_RCS1 0x01
  220. /* Version Status Register (VSTR) */
  221. #define SAB82532_VSTR_CD 0x80
  222. #define SAB82532_VSTR_DPLA 0x40
  223. #define SAB82532_VSTR_VN_MASK 0x0f
  224. #define SAB82532_VSTR_VN_1 0x00
  225. #define SAB82532_VSTR_VN_2 0x01
  226. #define SAB82532_VSTR_VN_3_2 0x02
  227. /* Global Interrupt Status Register (GIS) */
  228. #define SAB82532_GIS_PI 0x80
  229. #define SAB82532_GIS_ISA1 0x08
  230. #define SAB82532_GIS_ISA0 0x04
  231. #define SAB82532_GIS_ISB1 0x02
  232. #define SAB82532_GIS_ISB0 0x01
  233. /* Interrupt Vector Address (IVA) */
  234. #define SAB82532_IVA_MASK 0xf1
  235. /* Interrupt Port Configuration (IPC) */
  236. #define SAB82532_IPC_VIS 0x80
  237. #define SAB82532_IPC_SLA1 0x10
  238. #define SAB82532_IPC_SLA0 0x08
  239. #define SAB82532_IPC_CASM 0x04
  240. #define SAB82532_IPC_IC_OPEN_DRAIN 0x00
  241. #define SAB82532_IPC_IC_ACT_LOW 0x01
  242. #define SAB82532_IPC_IC_ACT_HIGH 0x03
  243. /* Interrupt Status Register 0 (ISR0) */
  244. #define SAB82532_ISR0_TCD 0x80
  245. #define SAB82532_ISR0_TIME 0x40
  246. #define SAB82532_ISR0_PERR 0x20
  247. #define SAB82532_ISR0_FERR 0x10
  248. #define SAB82532_ISR0_PLLA 0x08
  249. #define SAB82532_ISR0_CDSC 0x04
  250. #define SAB82532_ISR0_RFO 0x02
  251. #define SAB82532_ISR0_RPF 0x01
  252. /* Interrupt Status Register 1 (ISR1) */
  253. #define SAB82532_ISR1_BRK 0x80
  254. #define SAB82532_ISR1_BRKT 0x40
  255. #define SAB82532_ISR1_ALLS 0x20
  256. #define SAB82532_ISR1_XOFF 0x10
  257. #define SAB82532_ISR1_TIN 0x08
  258. #define SAB82532_ISR1_CSC 0x04
  259. #define SAB82532_ISR1_XON 0x02
  260. #define SAB82532_ISR1_XPR 0x01
  261. /* Interrupt Mask Register 0 (IMR0) */
  262. #define SAB82532_IMR0_TCD 0x80
  263. #define SAB82532_IMR0_TIME 0x40
  264. #define SAB82532_IMR0_PERR 0x20
  265. #define SAB82532_IMR0_FERR 0x10
  266. #define SAB82532_IMR0_PLLA 0x08
  267. #define SAB82532_IMR0_CDSC 0x04
  268. #define SAB82532_IMR0_RFO 0x02
  269. #define SAB82532_IMR0_RPF 0x01
  270. /* Interrupt Mask Register 1 (IMR1) */
  271. #define SAB82532_IMR1_BRK 0x80
  272. #define SAB82532_IMR1_BRKT 0x40
  273. #define SAB82532_IMR1_ALLS 0x20
  274. #define SAB82532_IMR1_XOFF 0x10
  275. #define SAB82532_IMR1_TIN 0x08
  276. #define SAB82532_IMR1_CSC 0x04
  277. #define SAB82532_IMR1_XON 0x02
  278. #define SAB82532_IMR1_XPR 0x01
  279. /* Port Interrupt Status Register (PIS) */
  280. #define SAB82532_PIS_SYNC_B 0x08
  281. #define SAB82532_PIS_DTR_B 0x04
  282. #define SAB82532_PIS_DTR_A 0x02
  283. #define SAB82532_PIS_SYNC_A 0x01
  284. /* Channel Configuration Register 4 (CCR4) */
  285. #define SAB82532_CCR4_MCK4 0x80
  286. #define SAB82532_CCR4_EBRG 0x40
  287. #define SAB82532_CCR4_TST1 0x20
  288. #define SAB82532_CCR4_ICD 0x10
  289. #endif /* !(_SUNSAB_H) */