rioboard.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /************************************************************************/
  2. /* */
  3. /* Title : RIO Host Card Hardware Definitions */
  4. /* */
  5. /* Author : N.P.Vassallo */
  6. /* */
  7. /* Creation : 26th April 1999 */
  8. /* */
  9. /* Version : 1.0.0 */
  10. /* */
  11. /* Copyright : (c) Specialix International Ltd. 1999 *
  12.  *
  13.  *      This program is free software; you can redistribute it and/or modify
  14.  *      it under the terms of the GNU General Public License as published by
  15.  *      the Free Software Foundation; either version 2 of the License, or
  16.  *      (at your option) any later version.
  17.  *
  18.  *      This program is distributed in the hope that it will be useful,
  19.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  *      GNU General Public License for more details.
  22.  *
  23.  *      You should have received a copy of the GNU General Public License
  24.  *      along with this program; if not, write to the Free Software
  25.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  * */
  27. /* Description : Prototypes, structures and definitions */
  28. /* describing the RIO board hardware */
  29. /* */
  30. /************************************************************************/
  31. /* History...
  32. 1.0.0 26/04/99 NPV Creation.
  33. */
  34. #ifndef _rioboard_h /* If RIOBOARD.H not already defined */
  35. #define _rioboard_h    1
  36. /*****************************************************************************
  37. ***********************                                ***********************
  38. ***********************   Hardware Control Registers   ***********************
  39. ***********************                                ***********************
  40. *****************************************************************************/
  41. /* Hardware Registers... */
  42. #define RIO_REG_BASE 0x7C00 /* Base of control registers */
  43. #define RIO_CONFIG RIO_REG_BASE + 0x0000 /* WRITE: Configuration Register */
  44. #define RIO_INTSET RIO_REG_BASE + 0x0080 /* WRITE: Interrupt Set */
  45. #define RIO_RESET RIO_REG_BASE + 0x0100 /* WRITE: Host Reset */
  46. #define RIO_INTRESET RIO_REG_BASE + 0x0180 /* WRITE: Interrupt Reset */
  47. #define RIO_VPD_ROM RIO_REG_BASE + 0x0000 /* READ: Vital Product Data ROM */
  48. #define RIO_INTSTAT RIO_REG_BASE + 0x0080 /* READ: Interrupt Status (Jet boards only) */
  49. #define RIO_RESETSTAT RIO_REG_BASE + 0x0100 /* READ: Reset Status (Jet boards only) */
  50. /* RIO_VPD_ROM definitions... */
  51. #define VPD_SLX_ID1 0x00 /* READ: Specialix Identifier #1 */
  52. #define VPD_SLX_ID2 0x01 /* READ: Specialix Identifier #2 */
  53. #define VPD_HW_REV 0x02 /* READ: Hardware Revision */
  54. #define VPD_HW_ASSEM 0x03 /* READ: Hardware Assembly Level */
  55. #define VPD_UNIQUEID4 0x04 /* READ: Unique Identifier #4 */
  56. #define VPD_UNIQUEID3 0x05 /* READ: Unique Identifier #3 */
  57. #define VPD_UNIQUEID2 0x06 /* READ: Unique Identifier #2 */
  58. #define VPD_UNIQUEID1 0x07 /* READ: Unique Identifier #1 */
  59. #define VPD_MANU_YEAR 0x08 /* READ: Year Of Manufacture (0 = 1970) */
  60. #define VPD_MANU_WEEK 0x09 /* READ: Week Of Manufacture (0 = week 1 Jan) */
  61. #define VPD_HWFEATURE1 0x0A /* READ: Hardware Feature Byte 1 */
  62. #define VPD_HWFEATURE2 0x0B /* READ: Hardware Feature Byte 2 */
  63. #define VPD_HWFEATURE3 0x0C /* READ: Hardware Feature Byte 3 */
  64. #define VPD_HWFEATURE4 0x0D /* READ: Hardware Feature Byte 4 */
  65. #define VPD_HWFEATURE5 0x0E /* READ: Hardware Feature Byte 5 */
  66. #define VPD_OEMID 0x0F /* READ: OEM Identifier */
  67. #define VPD_IDENT 0x10 /* READ: Identifier string (16 bytes) */
  68. #define VPD_IDENT_LEN 0x10
  69. /* VPD ROM Definitions... */
  70. #define SLX_ID1 0x4D
  71. #define SLX_ID2 0x98
  72. #define PRODUCT_ID(a) ((a>>4)&0xF) /* Use to obtain Product ID from VPD_UNIQUEID1 */
  73. #define ID_SX_ISA 0x2
  74. #define ID_RIO_EISA 0x3
  75. #define ID_SX_PCI 0x5
  76. #define ID_SX_EISA 0x7
  77. #define ID_RIO_RTA16 0x9
  78. #define ID_RIO_ISA 0xA
  79. #define ID_RIO_MCA 0xB
  80. #define ID_RIO_SBUS 0xC
  81. #define ID_RIO_PCI 0xD
  82. #define ID_RIO_RTA8 0xE
  83. /* Transputer bootstrap definitions... */
  84. #define BOOTLOADADDR (0x8000 - 6)
  85. #define BOOTINDICATE (0x8000 - 2)
  86. /* Firmware load position... */
  87. #define FIRMWARELOADADDR 0x7C00 /* Firmware is loaded _before_ this address */
  88. /*****************************************************************************
  89. *****************************                    *****************************
  90. *****************************   RIO (Rev1) ISA   *****************************
  91. *****************************                    *****************************
  92. *****************************************************************************/
  93. /* Control Register Definitions... */
  94. #define RIO_ISA_IDENT "JBJGPGGHINSMJPJR"
  95. #define RIO_ISA_CFG_BOOTRAM 0x01 /* Boot from RAM, else Link */
  96. #define RIO_ISA_CFG_BUSENABLE 0x02 /* Enable processor bus */
  97. #define RIO_ISA_CFG_IRQMASK 0x30 /* Interrupt mask */
  98. #define   RIO_ISA_CFG_IRQ12 0x10 /* Interrupt Level 12 */
  99. #define   RIO_ISA_CFG_IRQ11 0x20 /* Interrupt Level 11 */
  100. #define   RIO_ISA_CFG_IRQ9 0x30 /* Interrupt Level 9 */
  101. #define RIO_ISA_CFG_LINK20 0x40 /* 20Mbps link, else 10Mbps */
  102. #define RIO_ISA_CFG_WAITSTATE0 0x80 /* 0 waitstates, else 1 */
  103. /*****************************************************************************
  104. *****************************                    *****************************
  105. *****************************   RIO (Rev2) ISA   *****************************
  106. *****************************                    *****************************
  107. *****************************************************************************/
  108. /* Control Register Definitions... */
  109. #define RIO_ISA2_IDENT "JBJGPGGHINSMJPJR"
  110. #define RIO_ISA2_CFG_BOOTRAM 0x01 /* Boot from RAM, else Link */
  111. #define RIO_ISA2_CFG_BUSENABLE 0x02 /* Enable processor bus */
  112. #define RIO_ISA2_CFG_INTENABLE 0x04 /* Interrupt enable, else disable */
  113. #define RIO_ISA2_CFG_16BIT 0x08 /* 16bit mode, else 8bit */
  114. #define RIO_ISA2_CFG_IRQMASK 0x30 /* Interrupt mask */
  115. #define   RIO_ISA2_CFG_IRQ15 0x00 /* Interrupt Level 15 */
  116. #define   RIO_ISA2_CFG_IRQ12 0x10 /* Interrupt Level 12 */
  117. #define   RIO_ISA2_CFG_IRQ11 0x20 /* Interrupt Level 11 */
  118. #define   RIO_ISA2_CFG_IRQ9 0x30 /* Interrupt Level 9 */
  119. #define RIO_ISA2_CFG_LINK20 0x40 /* 20Mbps link, else 10Mbps */
  120. #define RIO_ISA2_CFG_WAITSTATE0 0x80 /* 0 waitstates, else 1 */
  121. /*****************************************************************************
  122. *****************************                   ******************************
  123. *****************************   RIO (Jet) ISA   ******************************
  124. *****************************                   ******************************
  125. *****************************************************************************/
  126. /* Control Register Definitions... */
  127. #define RIO_ISA3_IDENT "JET HOST BY KEV#"
  128. #define RIO_ISA3_CFG_BUSENABLE 0x02 /* Enable processor bus */
  129. #define RIO_ISA3_CFG_INTENABLE 0x04 /* Interrupt enable, else disable */
  130. #define RIO_ISA32_CFG_IRQMASK 0xF30 /* Interrupt mask */
  131. #define   RIO_ISA3_CFG_IRQ15 0xF0 /* Interrupt Level 15 */
  132. #define   RIO_ISA3_CFG_IRQ12 0xC0 /* Interrupt Level 12 */
  133. #define   RIO_ISA3_CFG_IRQ11 0xB0 /* Interrupt Level 11 */
  134. #define   RIO_ISA3_CFG_IRQ10 0xA0 /* Interrupt Level 10 */
  135. #define   RIO_ISA3_CFG_IRQ9 0x90 /* Interrupt Level 9 */
  136. /*****************************************************************************
  137. *********************************             ********************************
  138. *********************************   RIO MCA   ********************************
  139. *********************************             ********************************
  140. *****************************************************************************/
  141. /* Control Register Definitions... */
  142. #define RIO_MCA_IDENT "JBJGPGGHINSMJPJR"
  143. #define RIO_MCA_CFG_BOOTRAM 0x01 /* Boot from RAM, else Link */
  144. #define RIO_MCA_CFG_BUSENABLE 0x02 /* Enable processor bus */
  145. #define RIO_MCA_CFG_LINK20 0x40 /* 20Mbps link, else 10Mbps */
  146. /*****************************************************************************
  147. ********************************              ********************************
  148. ********************************   RIO EISA   ********************************
  149. ********************************              ********************************
  150. *****************************************************************************/
  151. /* EISA Configuration Space Definitions... */
  152. #define EISA_PRODUCT_ID1 0xC80
  153. #define EISA_PRODUCT_ID2 0xC81
  154. #define EISA_PRODUCT_NUMBER 0xC82
  155. #define EISA_REVISION_NUMBER 0xC83
  156. #define EISA_CARD_ENABLE 0xC84
  157. #define EISA_VPD_UNIQUEID4 0xC88 /* READ: Unique Identifier #4 */
  158. #define EISA_VPD_UNIQUEID3 0xC8A /* READ: Unique Identifier #3 */
  159. #define EISA_VPD_UNIQUEID2 0xC90 /* READ: Unique Identifier #2 */
  160. #define EISA_VPD_UNIQUEID1 0xC92 /* READ: Unique Identifier #1 */
  161. #define EISA_VPD_MANU_YEAR 0xC98 /* READ: Year Of Manufacture (0 = 1970) */
  162. #define EISA_VPD_MANU_WEEK 0xC9A /* READ: Week Of Manufacture (0 = week 1 Jan) */
  163. #define EISA_MEM_ADDR_23_16 0xC00
  164. #define EISA_MEM_ADDR_31_24 0xC01
  165. #define EISA_RIO_CONFIG 0xC02 /* WRITE: Configuration Register */
  166. #define EISA_RIO_INTSET 0xC03 /* WRITE: Interrupt Set */
  167. #define EISA_RIO_INTRESET 0xC03 /* READ:  Interrupt Reset */
  168. /* Control Register Definitions... */
  169. #define RIO_EISA_CFG_BOOTRAM 0x01 /* Boot from RAM, else Link */
  170. #define RIO_EISA_CFG_LINK20 0x02 /* 20Mbps link, else 10Mbps */
  171. #define RIO_EISA_CFG_BUSENABLE 0x04 /* Enable processor bus */
  172. #define RIO_EISA_CFG_PROCRUN 0x08 /* Processor running, else reset */
  173. #define RIO_EISA_CFG_IRQMASK 0xF0 /* Interrupt mask */
  174. #define   RIO_EISA_CFG_IRQ15 0xF0 /* Interrupt Level 15 */
  175. #define   RIO_EISA_CFG_IRQ14 0xE0 /* Interrupt Level 14 */
  176. #define   RIO_EISA_CFG_IRQ12 0xC0 /* Interrupt Level 12 */
  177. #define   RIO_EISA_CFG_IRQ11 0xB0 /* Interrupt Level 11 */
  178. #define   RIO_EISA_CFG_IRQ10 0xA0 /* Interrupt Level 10 */
  179. #define   RIO_EISA_CFG_IRQ9 0x90 /* Interrupt Level 9 */
  180. #define   RIO_EISA_CFG_IRQ7 0x70 /* Interrupt Level 7 */
  181. #define   RIO_EISA_CFG_IRQ6 0x60 /* Interrupt Level 6 */
  182. #define   RIO_EISA_CFG_IRQ5 0x50 /* Interrupt Level 5 */
  183. #define   RIO_EISA_CFG_IRQ4 0x40 /* Interrupt Level 4 */
  184. #define   RIO_EISA_CFG_IRQ3 0x30 /* Interrupt Level 3 */
  185. /*****************************************************************************
  186. ********************************              ********************************
  187. ********************************   RIO SBus   ********************************
  188. ********************************              ********************************
  189. *****************************************************************************/
  190. /* Control Register Definitions... */
  191. #define RIO_SBUS_IDENT "JBPGK#"
  192. #define RIO_SBUS_CFG_BOOTRAM 0x01 /* Boot from RAM, else Link */
  193. #define RIO_SBUS_CFG_BUSENABLE 0x02 /* Enable processor bus */
  194. #define RIO_SBUS_CFG_INTENABLE 0x04 /* Interrupt enable, else disable */
  195. #define RIO_SBUS_CFG_IRQMASK 0x38 /* Interrupt mask */
  196. #define   RIO_SBUS_CFG_IRQNONE 0x00 /* No Interrupt */
  197. #define   RIO_SBUS_CFG_IRQ7 0x38 /* Interrupt Level 7 */
  198. #define   RIO_SBUS_CFG_IRQ6 0x30 /* Interrupt Level 6 */
  199. #define   RIO_SBUS_CFG_IRQ5 0x28 /* Interrupt Level 5 */
  200. #define   RIO_SBUS_CFG_IRQ4 0x20 /* Interrupt Level 4 */
  201. #define   RIO_SBUS_CFG_IRQ3 0x18 /* Interrupt Level 3 */
  202. #define   RIO_SBUS_CFG_IRQ2 0x10 /* Interrupt Level 2 */
  203. #define   RIO_SBUS_CFG_IRQ1 0x08 /* Interrupt Level 1 */
  204. #define RIO_SBUS_CFG_LINK20 0x40 /* 20Mbps link, else 10Mbps */
  205. #define RIO_SBUS_CFG_PROC25 0x80 /* 25Mhz processor clock, else 20Mhz */
  206. /*****************************************************************************
  207. *********************************             ********************************
  208. *********************************   RIO PCI   ********************************
  209. *********************************             ********************************
  210. *****************************************************************************/
  211. /* Control Register Definitions... */
  212. #define RIO_PCI_IDENT "ECDDPGJGJHJRGSK#"
  213. #define RIO_PCI_CFG_BOOTRAM 0x01 /* Boot from RAM, else Link */
  214. #define RIO_PCI_CFG_BUSENABLE 0x02 /* Enable processor bus */
  215. #define RIO_PCI_CFG_INTENABLE 0x04 /* Interrupt enable, else disable */
  216. #define RIO_PCI_CFG_LINK20 0x40 /* 20Mbps link, else 10Mbps */
  217. #define RIO_PCI_CFG_PROC25 0x80 /* 25Mhz processor clock, else 20Mhz */
  218. /* PCI Definitions... */
  219. #define SPX_VENDOR_ID 0x11CB /* Assigned by the PCI SIG */
  220. #define SPX_DEVICE_ID 0x8000 /* RIO bridge boards */
  221. #define SPX_PLXDEVICE_ID 0x2000 /* PLX bridge boards */
  222. #define SPX_SUB_VENDOR_ID SPX_VENDOR_ID /* Same as vendor id */
  223. #define RIO_SUB_SYS_ID 0x0800 /* RIO PCI board */
  224. /*****************************************************************************
  225. *****************************                   ******************************
  226. *****************************   RIO (Jet) PCI   ******************************
  227. *****************************                   ******************************
  228. *****************************************************************************/
  229. /* Control Register Definitions... */
  230. #define RIO_PCI2_IDENT "JET HOST BY KEV#"
  231. #define RIO_PCI2_CFG_BUSENABLE 0x02 /* Enable processor bus */
  232. #define RIO_PCI2_CFG_INTENABLE 0x04 /* Interrupt enable, else disable */
  233. /* PCI Definitions... */
  234. #define RIO2_SUB_SYS_ID 0x0100 /* RIO (Jet) PCI board */
  235. #endif /*_rioboard_h */
  236. /* End of RIOBOARD.H */