spifreg.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. /* $OpenBSD: spifreg.h,v 1.5 2003/06/02 18:32:41 jason Exp $ */
  2. /*
  3. * Copyright (c) 1999-2002 Jason L. Wright (jason@thought.net)
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  16. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  17. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  19. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  20. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  23. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  24. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. * POSSIBILITY OF SUCH DAMAGE.
  26. *
  27. * Effort sponsored in part by the Defense Advanced Research Projects
  28. * Agency (DARPA) and Air Force Research Laboratory, Air Force
  29. * Materiel Command, USAF, under agreement number F30602-01-2-0537.
  30. *
  31. */
  32. #define PPC_IN_PDATA 0x000 /* input data */
  33. #define PPC_IN_PSTAT 0x001 /* input status */
  34. #define PPC_IN_CTRL 0x002 /* input control */
  35. #define PPC_IN_PWEIRD 0x003 /* input weird */
  36. #define PPC_OUT_PDATA 0x000 /* output data */
  37. #define PPC_OUT_PSTAT 0x001 /* output status */
  38. #define PPC_OUT_PCTRL 0x002 /* output control */
  39. #define PPC_OUT_PWEIRD 0x003 /* output weird */
  40. #define PPC_IACK_PDATA 0x1fc /* iack data */
  41. #define PPC_IACK_PSTAT 0x1fd /* iack status */
  42. #define PPC_IACK_PCTRL 0x1fe /* iack control */
  43. #define PPC_IACK_PWEIRD 0x1ff /* iack weird */
  44. /* Parallel Status: read only */
  45. #define PPC_PSTAT_ERROR 0x08 /* error */
  46. #define PPC_PSTAT_SELECT 0x10 /* select */
  47. #define PPC_PSTAT_PAPER 0x20 /* paper out */
  48. #define PPC_PSTAT_ACK 0x40 /* ack */
  49. #define PPC_PSTAT_BUSY 0x80 /* busy */
  50. /* Parallel Control: read/write */
  51. #define PPC_CTRL_STROBE 0x01 /* strobe, 1=drop strobe */
  52. #define PPC_CTRL_AFX 0x02 /* auto form-feed */
  53. #define PPC_CTRL_INIT 0x04 /* init, 1=enable printer */
  54. #define PPC_CTRL_SLCT 0x08 /* SLC, 1=select printer */
  55. #define PPC_CTRL_IRQE 0x10 /* IRQ, 1=enable intrs */
  56. #define PPC_CTRL_OUTPUT 0x20 /* direction: 1=ppc out */
  57. /*
  58. * The 'stc' is a Cirrus Logic CL-CD180 (either revision B or revision C)
  59. */
  60. #define STC_CCR 0x01 /* channel command */
  61. #define STC_SRER 0x02 /* service request enable */
  62. #define STC_COR1 0x03 /* channel option 1 */
  63. #define STC_COR2 0x04 /* channel option 2 */
  64. #define STC_COR3 0x05 /* channel option 3 */
  65. #define STC_CCSR 0x06 /* channel control status */
  66. #define STC_RDCR 0x07 /* rx data count */
  67. #define STC_SCHR1 0x09 /* special character 1 */
  68. #define STC_SCHR2 0x0a /* special character 2 */
  69. #define STC_SCHR3 0x0b /* special character 3 */
  70. #define STC_SCHR4 0x0c /* special character 4 */
  71. #define STC_MCOR1 0x10 /* modem change option 1 */
  72. #define STC_MCOR2 0x11 /* modem change option 2 */
  73. #define STC_MCR 0x12 /* modem change */
  74. #define STC_RTPR 0x18 /* rx timeout period */
  75. #define STC_MSVR 0x28 /* modem signal value */
  76. #define STC_MSVRTS 0x29 /* modem signal value rts */
  77. #define STC_MSVDTR 0x2a /* modem signal value dtr */
  78. #define STC_RBPRH 0x31 /* rx bit rate period high */
  79. #define STC_RBPRL 0x32 /* rx bit rate period low */
  80. #define STC_RBR 0x33 /* rx bit */
  81. #define STC_TBPRH 0x39 /* tx bit rate period high */
  82. #define STC_TBPRL 0x3a /* tx bit rate period low */
  83. #define STC_GSVR 0x40 /* global service vector */
  84. #define STC_GSCR1 0x41 /* global service channel 1 */
  85. #define STC_GSCR2 0x42 /* global service channel 2 */
  86. #define STC_GSCR3 0x43 /* global service channel 3 */
  87. #define STC_MSMR 0x61 /* modem service match */
  88. #define STC_TSMR 0x62 /* tx service match */
  89. #define STC_RSMR 0x63 /* rx service match */
  90. #define STC_CAR 0x64 /* channel access */
  91. #define STC_SRSR 0x65 /* service request status */
  92. #define STC_SRCR 0x66 /* service request config */
  93. #define STC_GFRCR 0x6b /* global firmware rev code */
  94. #define STC_PPRH 0x70 /* prescalar period high */
  95. #define STC_PPRL 0x71 /* prescalar period low */
  96. #define STC_MRAR 0x75 /* modem request ack */
  97. #define STC_TRAR 0x76 /* tx request ack */
  98. #define STC_RRAR 0x77 /* rx request ack */
  99. #define STC_RDR 0x78 /* rx data */
  100. #define STC_RCSR 0x7a /* rx character status */
  101. #define STC_TDR 0x7b /* tx data */
  102. #define STC_EOSRR 0x7f /* end of service */
  103. #define STC_REGMAPSIZE 0x80
  104. /* Global Firmware Revision Code Register (rw) */
  105. #define CD180_GFRCR_REV_B 0x81 /* CL-CD180B */
  106. #define CD180_GFRCR_REV_C 0x82 /* CL-CD180C */
  107. /* Service Request Configuration Register (rw) (CD180C or higher) */
  108. #define CD180_SRCR_PKGTYP 0x80 /* pkg type,0=PLCC,1=PQFP */
  109. #define CD180_SRCR_REGACKEN 0x40 /* register ack enable */
  110. #define CD180_SRCR_DAISYEN 0x20 /* daisy chain enable */
  111. #define CD180_SRCR_GLOBPRI 0x10 /* global priority */
  112. #define CD180_SRCR_UNFAIR 0x08 /* use unfair interrupts */
  113. #define CD180_SRCR_AUTOPRI 0x02 /* automatic priority */
  114. #define CD180_SRCR_PRISEL 0x01 /* select rx/tx as high pri */
  115. /* Prescalar Period Register High (rw) */
  116. #define CD180_PPRH 0xf0 /* high byte */
  117. #define CD180_PPRL 0x00 /* low byte */
  118. /* Global Service Vector Register (rw) */
  119. /* Modem Request Acknowledgement Register (ro) (and IACK equivalent) */
  120. /* Receive Request Acknowledgement Register (ro) (and IACK equivalent) */
  121. /* Transmit Request Acknowledgement Register (ro) (and IACK equivalent) */
  122. #define CD180_GSVR_USERMASK 0xf8 /* user defined bits */
  123. #define CD180_GSVR_IMASK 0x07 /* interrupt type mask */
  124. #define CD180_GSVR_NOREQUEST 0x00 /* no request pending */
  125. #define CD180_GSVR_STATCHG 0x01 /* modem signal change */
  126. #define CD180_GSVR_TXDATA 0x02 /* tx service request */
  127. #define CD180_GSVR_RXGOOD 0x03 /* rx service request */
  128. #define CD180_GSVR_reserved1 0x04 /* reserved */
  129. #define CD180_GSVR_reserved2 0x05 /* reserved */
  130. #define CD180_GSVR_reserved3 0x06 /* reserved */
  131. #define CD180_GSVR_RXEXCEPTION 0x07 /* rx exception request */
  132. /* Service Request Status Register (ro) (CD180C and higher) */
  133. #define CD180_SRSR_MREQINT 0x01 /* modem request internal */
  134. #define CD180_SRSR_MREQEXT 0x02 /* modem request external */
  135. #define CD180_SRSR_TREQINT 0x04 /* tx request internal */
  136. #define CD180_SRSR_TREQEXT 0x08 /* tx request external */
  137. #define CD180_SRSR_RREQINT 0x10 /* rx request internal */
  138. #define CD180_SRSR_RREQEXT 0x20 /* rx request external */
  139. #define CD180_SRSR_ILV_MASK 0xc0 /* internal service context */
  140. #define CD180_SRSR_ILV_NONE 0x00 /* not in service context */
  141. #define CD180_SRSR_ILV_RX 0xc0 /* in rx service context */
  142. #define CD180_SRSR_ILV_TX 0x80 /* in tx service context */
  143. #define CD180_SRSR_ILV_MODEM 0x40 /* in modem service context */
  144. /* Global Service Channel Register 1,2,3 (rw) */
  145. #define CD180_GSCR_CHANNEL(gscr) (((gscr) >> 2) & 7)
  146. /* Receive Data Count Register (ro) */
  147. #define CD180_RDCR_MASK 0x0f /* mask for fifo length */
  148. /* Receive Character Status Register (ro) */
  149. #define CD180_RCSR_TO 0x80 /* time out */
  150. #define CD180_RCSR_SCD2 0x40 /* special char detect 2 */
  151. #define CD180_RCSR_SCD1 0x20 /* special char detect 1 */
  152. #define CD180_RCSR_SCD0 0x10 /* special char detect 0 */
  153. #define CD180_RCSR_BE 0x08 /* break exception */
  154. #define CD180_RCSR_PE 0x04 /* parity exception */
  155. #define CD180_RCSR_FE 0x02 /* framing exception */
  156. #define CD180_RCSR_OE 0x01 /* overrun exception */
  157. /* Service Request Enable Register (rw) */
  158. #define CD180_SRER_DSR 0x80 /* DSR service request */
  159. #define CD180_SRER_CD 0x40 /* CD service request */
  160. #define CD180_SRER_CTS 0x20 /* CTS service request */
  161. #define CD180_SRER_RXD 0x10 /* RXD service request */
  162. #define CD180_SRER_RXSCD 0x08 /* RX special char request */
  163. #define CD180_SRER_TXD 0x04 /* TX ready service request */
  164. #define CD180_SRER_TXE 0x02 /* TX empty service request */
  165. #define CD180_SRER_NNDT 0x01 /* No new data timeout req */
  166. /* Channel Command Register (rw) */
  167. /* Reset Channel Command */
  168. #define CD180_CCR_CMD_RESET 0x80 /* chip/channel reset */
  169. #define CD180_CCR_RESETALL 0x01 /* global reset */
  170. #define CD180_CCR_RESETCHAN 0x00 /* current channel reset */
  171. /* Channel Option Register Command */
  172. #define CD180_CCR_CMD_COR 0x40 /* channel opt reg changed */
  173. #define CD180_CCR_CORCHG1 0x02 /* cor1 has changed */
  174. #define CD180_CCR_CORCHG2 0x04 /* cor2 has changed */
  175. #define CD180_CCR_CORCHG3 0x08 /* cor3 has changed */
  176. /* Send Special Character Command */
  177. #define CD180_CCR_CMD_SPC 0x20 /* send special chars changed */
  178. #define CD180_CCR_SSPC0 0x01 /* send special char 0 change */
  179. #define CD180_CCR_SSPC1 0x02 /* send special char 1 change */
  180. #define CD180_CCR_SSPC2 0x04 /* send special char 2 change */
  181. /* Channel Control Command */
  182. #define CD180_CCR_CMD_CHAN 0x10 /* channel control command */
  183. #define CD180_CCR_CHAN_TXEN 0x08 /* enable channel tx */
  184. #define CD180_CCR_CHAN_TXDIS 0x04 /* disable channel tx */
  185. #define CD180_CCR_CHAN_RXEN 0x02 /* enable channel rx */
  186. #define CD180_CCR_CHAN_RXDIS 0x01 /* disable channel rx */
  187. /* Channel Option Register 1 (rw) */
  188. #define CD180_COR1_EVENPAR 0x00 /* even parity */
  189. #define CD180_COR1_ODDPAR 0x80 /* odd parity */
  190. #define CD180_COR1_PARMODE_NO 0x00 /* no parity */
  191. #define CD180_COR1_PARMODE_FORCE 0x20 /* force (odd=1, even=0) */
  192. #define CD180_COR1_PARMODE_NORMAL 0x40 /* normal parity mode */
  193. #define CD180_COR1_PARMODE_NA 0x60 /* notused */
  194. #define CD180_COR1_IGNPAR 0x10 /* ignore parity */
  195. #define CD180_COR1_STOP1 0x00 /* 1 stop bit */
  196. #define CD180_COR1_STOP15 0x04 /* 1.5 stop bits */
  197. #define CD180_COR1_STOP2 0x08 /* 2 stop bits */
  198. #define CD180_COR1_STOP25 0x0c /* 2.5 stop bits */
  199. #define CD180_COR1_CS5 0x00 /* 5 bit characters */
  200. #define CD180_COR1_CS6 0x01 /* 6 bit characters */
  201. #define CD180_COR1_CS7 0x02 /* 7 bit characters */
  202. #define CD180_COR1_CS8 0x03 /* 8 bit characters */
  203. /* Channel Option Register 2 (rw) */
  204. #define CD180_COR2_IXM 0x80 /* implied xon mode */
  205. #define CD180_COR2_TXIBE 0x40 /* tx in-band flow control */
  206. #define CD180_COR2_ETC 0x20 /* embedded tx command enbl */
  207. #define CD180_COR2_LLM 0x10 /* local loopback mode */
  208. #define CD180_COR2_RLM 0x08 /* remote loopback mode */
  209. #define CD180_COR2_RTSAO 0x04 /* RTS automatic output enbl */
  210. #define CD180_COR2_CTSAE 0x02 /* CTS automatic enable */
  211. #define CD180_COR2_DSRAE 0x01 /* DSR automatic enable */
  212. /* Channel Option Register 3 (rw) */
  213. #define CD180_COR3_XON2 0x80 /* XON char in spc1&3 */
  214. #define CD180_COR3_XON1 0x00 /* XON char in spc1 */
  215. #define CD180_COR3_XOFF2 0x40 /* XOFF char in spc2&4 */
  216. #define CD180_COR3_XOFF1 0x00 /* XOFF char in spc2 */
  217. #define CD180_COR3_FCT 0x20 /* flow control transparency */
  218. #define CD180_COR3_SCDE 0x10 /* special char recognition */
  219. #define CD180_COR3_RXFIFO_MASK 0x0f /* rx fifo threshold */
  220. /* Channel Control Status Register (ro) */
  221. #define CD180_CCSR_RXEN 0x80 /* rx is enabled */
  222. #define CD180_CCSR_RXFLOFF 0x40 /* rx flow-off */
  223. #define CD180_CCSR_RXFLON 0x20 /* rx flow-on */
  224. #define CD180_CCSR_TXEN 0x08 /* tx is enabled */
  225. #define CD180_CCSR_TXFLOFF 0x04 /* tx flow-off */
  226. #define CD180_CCSR_TXFLON 0x02 /* tx flow-on */
  227. /* Receiver Bit Register (ro) */
  228. #define CD180_RBR_RXD 0x40 /* state of RxD pin */
  229. #define CD180_RBR_STARTHUNT 0x20 /* looking for start bit */
  230. /* Modem Change Register (rw) */
  231. #define CD180_MCR_DSR 0x80 /* DSR changed */
  232. #define CD180_MCR_CD 0x40 /* CD changed */
  233. #define CD180_MCR_CTS 0x20 /* CTS changed */
  234. /* Modem Change Option Register 1 (rw) */
  235. #define CD180_MCOR1_DSRZD 0x80 /* catch 0->1 DSR changes */
  236. #define CD180_MCOR1_CDZD 0x40 /* catch 0->1 CD changes */
  237. #define CD180_MCOR1_CTSZD 0x40 /* catch 0->1 CTS changes */
  238. #define CD180_MCOR1_DTRTHRESH 0x0f /* DTR threshold mask */
  239. /* Modem Change Option Register 2 (rw) */
  240. #define CD180_MCOR2_DSROD 0x80 /* catch 1->0 DSR changes */
  241. #define CD180_MCOR2_CDOD 0x40 /* catch 1->0 CD changes */
  242. #define CD180_MCOR2_CTSOD 0x20 /* catch 1->0 CTS changes */
  243. /* Modem Signal Value Register (rw) */
  244. #define CD180_MSVR_DSR 0x80 /* DSR input state */
  245. #define CD180_MSVR_CD 0x40 /* CD input state */
  246. #define CD180_MSVR_CTS 0x20 /* CTS input state */
  247. #define CD180_MSVR_DTR 0x02 /* DTR output state */
  248. #define CD180_MSVR_RTS 0x01 /* RTS output state */
  249. /* Modem Signal Value Register - Request To Send (w) (CD180C and higher) */
  250. #define CD180_MSVRTS_RTS 0x01 /* RTS signal value */
  251. /* Modem Signal Value Register - Data Terminal Ready (w) (CD180C and higher) */
  252. #define CD180_MSVDTR_DTR 0x02 /* DTR signal value */
  253. /*
  254. * The register map for the SUNW,spif looks something like:
  255. * Offset: Function:
  256. * 0000 - 03ff Boot ROM
  257. * 0400 - 0407 dtr latches (one per port)
  258. * 0409 - 07ff unused
  259. * 0800 - 087f CD180 registers (normal mapping)
  260. * 0880 - 0bff unused
  261. * 0c00 - 0c7f CD180 registers (*iack mapping)
  262. * 0c80 - 0dff unused
  263. * 0e00 - 1fff PPC registers
  264. *
  265. * One note about the DTR latches: The values stored there are reversed.
  266. * By writing a 1 to the latch, DTR is lowered, and by writing a 0, DTR
  267. * is raised. The latches cannot be read, and no other value can be written
  268. * there or the system will crash due to "excessive bus loading (see
  269. * SBus loading and capacitance spec)"
  270. *
  271. * The *iack registers are read/written with the IACK bit set. When
  272. * the interrupt routine starts, it reads the MRAR, TRAR, and RRAR registers
  273. * from this mapping. This signals an interrupt acknowledgement cycle.
  274. * (NOTE: these are not really the MRAR, TRAR, and RRAR... They are copies
  275. * of the GSVR, I just mapped them to the same location as the mrar, trar,
  276. * and rrar because it seemed appropriate).
  277. */
  278. #define DTR_REG_OFFSET 0x400 /* DTR latches */
  279. #define DTR_REG_LEN 0x8
  280. #define STC_REG_OFFSET 0x800 /* normal cd180 access */
  281. #define STC_REG_LEN 0x80
  282. #define ISTC_REG_OFFSET 0xc00 /* IACK cd180 access */
  283. #define ISTC_REG_LEN STC_REG_LEN
  284. #define PPC_REG_OFFSET 0xe00 /* PPC registers */
  285. #define PPC_REG_LEN 0x200
  286. /*
  287. * The mapping of minor device number -> card and port is done as
  288. * follows by default:
  289. *
  290. * +---+---+---+---+---+---+---+---+
  291. * | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
  292. * +---+---+---+---+---+---+---+---+
  293. * | | | | | | | |
  294. * | | | | | +---+---+---> port number
  295. * | | | | |
  296. * | | | | +---------------> unused
  297. * | | | |
  298. * | | | +-------------------> dialout (on tty ports)
  299. * | | |
  300. * | | +-----------------------> unused
  301. * | |
  302. * +---+---------------------------> card number
  303. *
  304. */
  305. #define SPIF_MAX_CARDS 4
  306. #define SPIF_MAX_TTY 8
  307. #define SPIF_MAX_BPP 1
  308. /*
  309. * device selectors
  310. */
  311. #define SPIF_CARD(x) ((minor(x) >> 6) & 0x03)
  312. #define SPIF_PORT(x) (minor(x) & 0x07)
  313. #define STTY_DIALOUT(x) (minor(x) & 0x10)
  314. #define STTY_RX_FIFO_THRESHOLD 4
  315. #define STTY_RX_DTR_THRESHOLD 7
  316. #define CD180_TX_FIFO_SIZE 8 /* 8 chars of fifo */
  317. /*
  318. * These are the offsets of the MRAR, TRAR, and RRAR in *IACK space.
  319. * The high bit must be set as per specs for the MSMR, TSMR, and RSMR.
  320. */
  321. #define SPIF_MSMR (0x80 | STC_MRAR) /* offset of MRAR | 0x80 */
  322. #define SPIF_TSMR (0x80 | STC_TRAR) /* offset of TRAR | 0x80 */
  323. #define SPIF_RSMR (0x80 | STC_RRAR) /* offset of RRAR | 0x80 */
  324. /*
  325. * "verosc" node tells which oscillator we have.
  326. */
  327. #define SPIF_OSC9 1 /* 9.8304 MHz */
  328. #define SPIF_OSC10 2 /* 10MHz */
  329. /*
  330. * There are two interrupts, serial gets interrupt[0], and parallel
  331. * gets interrupt[1]
  332. */
  333. #define SERIAL_INTR 0
  334. #define PARALLEL_INTR 1
  335. /*
  336. * spif tty flags
  337. */
  338. #define STTYF_CDCHG 0x01 /* carrier changed */
  339. #define STTYF_RING_OVERFLOW 0x02 /* ring buffer overflowed */
  340. #define STTYF_DONE 0x04 /* done... flush buffers */
  341. #define STTYF_SET_BREAK 0x08 /* set break signal */
  342. #define STTYF_CLR_BREAK 0x10 /* clear break signal */
  343. #define STTYF_STOP 0x20 /* stopped */
  344. #define STTY_RBUF_SIZE (2 * 512)