mace.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Definitions for the SGI O2 Mace chip.
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 2000 Harald Koerfgen
  9.  */
  10. #ifndef __ASM_MACE_H__
  11. #define __ASM_MACE_H__
  12. #include <asm/addrspace.h>
  13. /*
  14.  * Address map
  15.  */
  16. #define MACE_BASE KSEG1ADDR(0x1f000000)
  17. #define MACE_PCI (0x00080000)
  18. #define MACE_VIN1 (0x00100000)
  19. #define MACE_VIN2 (0x00180000)
  20. #define MACE_VOUT (0x00200000)
  21. #define MACE_ENET (0x00280000)
  22. #define MACE_PERIF (0x00300000)
  23. #define MACE_ISA_EXT (0x00380000)
  24. #define MACE_AUDIO_BASE (MACE_PERIF )
  25. #define MACE_ISA_BASE (MACE_PERIF + 0x00010000)
  26. #define MACE_KBDMS_BASE (MACE_PERIF + 0x00020000)
  27. #define MACE_I2C_BASE (MACE_PERIF + 0x00030000)
  28. #define MACE_UST_BASE (MACE_PERIF + 0x00040000)
  29. #undef BIT
  30. #define BIT(__bit_offset) (1UL << (__bit_offset))
  31. /*
  32.  * Mace MACEPCI interface, 32 bit regs
  33.  */
  34. #define MACEPCI_ERROR_ADDR (MACE_PCI       )
  35. #define MACEPCI_ERROR_FLAGS (MACE_PCI + 0x00000004)
  36. #define MACEPCI_CONTROL (MACE_PCI + 0x00000008)
  37. #define MACEPCI_REV (MACE_PCI + 0x0000000c)
  38. #define MACEPCI_WFLUSH (MACE_PCI + 0x0000000c) /* ??? --IV !!! It's for flushing read buffers on PCI MEMORY accesses!!! */
  39. #define MACEPCI_CONFIG_ADDR (MACE_PCI + 0x00000cf8)
  40. #define MACEPCI_CONFIG_DATA (MACE_PCI + 0x00000cfc)
  41. #define MACEPCI_LOW_MEMORY 0x1a000000
  42. #define MACEPCI_LOW_IO 0x18000000
  43. #define MACEPCI_SWAPPED_VIEW 0
  44. #define MACEPCI_NATIVE_VIEW 0x40000000
  45. #define MACEPCI_IO 0x80000000
  46. /*#define MACEPCI_HI_MEMORY 0x0000000280000000UL * This mipght be just 0x0000000200000000UL 2G more :) (or maybe it is different between 1.1 & 1.5 */
  47. #define MACEPCI_HI_MEMORY 0x0000000200000000UL /* This mipght be just 0x0000000200000000UL 2G more :) (or maybe it is different between 1.1 & 1.5 */
  48. #define MACEPCI_HI_IO 0x0000000100000000UL
  49. /*
  50.  * Bits in the MACEPCI_CONTROL register
  51.  */
  52. #define MACEPCI_CONTROL_INT(x) BIT(x)
  53. #define MACEPCI_CONTROL_INT_MASK 0xff
  54. #define MACEPCI_CONTROL_SERR_ENA BIT(8)
  55. #define MACEPCI_CONTROL_ARB_N6 BIT(9)
  56. #define MACEPCI_CONTROL_PARITY_ERR BIT(10)
  57. #define MACEPCI_CONTROL_MRMRA_ENA BIT(11)
  58. #define MACEPCI_CONTROL_ARB_N3 BIT(12)
  59. #define MACEPCI_CONTROL_ARB_N4 BIT(13)
  60. #define MACEPCI_CONTROL_ARB_N5 BIT(14)
  61. #define MACEPCI_CONTROL_PARK_LIU BIT(15)
  62. #define MACEPCI_CONTROL_INV_INT(x) BIT(16+x)
  63. #define MACEPCI_CONTROL_INV_INT_MASK 0x00ff0000
  64. #define MACEPCI_CONTROL_OVERRUN_INT BIT(24)
  65. #define MACEPCI_CONTROL_PARITY_INT BIT(25)
  66. #define MACEPCI_CONTROL_SERR_INT BIT(26)
  67. #define MACEPCI_CONTROL_IT_INT BIT(27)
  68. #define MACEPCI_CONTROL_RE_INT BIT(28)
  69. #define MACEPCI_CONTROL_DPED_INT BIT(29)
  70. #define MACEPCI_CONTROL_TAR_INT BIT(30)
  71. #define MACEPCI_CONTROL_MAR_INT BIT(31)
  72. /*
  73.  * Bits in the MACE_PCI error register
  74.  */
  75. #define MACEPCI_ERROR_MASTER_ABORT BIT(31)
  76. #define MACEPCI_ERROR_TARGET_ABORT BIT(30)
  77. #define MACEPCI_ERROR_DATA_PARITY_ERR BIT(29)
  78. #define MACEPCI_ERROR_RETRY_ERR BIT(28)
  79. #define MACEPCI_ERROR_ILLEGAL_CMD BIT(27)
  80. #define MACEPCI_ERROR_SYSTEM_ERR BIT(26)
  81. #define MACEPCI_ERROR_INTERRUPT_TEST BIT(25)
  82. #define MACEPCI_ERROR_PARITY_ERR BIT(24)
  83. #define MACEPCI_ERROR_OVERRUN BIT(23)
  84. #define MACEPCI_ERROR_RSVD BIT(22)
  85. #define MACEPCI_ERROR_MEMORY_ADDR BIT(21)
  86. #define MACEPCI_ERROR_CONFIG_ADDR BIT(20)
  87. #define MACEPCI_ERROR_MASTER_ABORT_ADDR_VALID BIT(19)
  88. #define MACEPCI_ERROR_TARGET_ABORT_ADDR_VALID BIT(18)
  89. #define MACEPCI_ERROR_DATA_PARITY_ADDR_VALID BIT(17)
  90. #define MACEPCI_ERROR_RETRY_ADDR_VALID BIT(16)
  91. #define MACEPCI_ERROR_SIG_TABORT BIT(4)
  92. #define MACEPCI_ERROR_DEVSEL_MASK 0xc0
  93. #define MACEPCI_ERROR_DEVSEL_FAST 0
  94. #define MACEPCI_ERROR_DEVSEL_MED 0x40
  95. #define MACEPCI_ERROR_DEVSEL_SLOW 0x80
  96. #define MACEPCI_ERROR_FBB BIT(1)
  97. #define MACEPCI_ERROR_66MHZ BIT(0)
  98. /*
  99.  * Mace timer registers - 64 bit regs (63:32 are UST, 31:0 are MSC)
  100.  */
  101. #define MSC_PART(__reg) ((__reg) & 0x00000000ffffffff)
  102. #define UST_PART(__reg) (((__reg) & 0xffffffff00000000) >> 32)
  103. #define MACE_UST_UST (MACE_UST_BASE    ) /* Universial system time */
  104. #define MACE_UST_COMPARE1 (MACE_UST_BASE + 0x00000008) /* Interrupt compare reg 1 */
  105. #define MACE_UST_COMPARE2 (MACE_UST_BASE + 0x00000010) /* Interrupt compare reg 2 */
  106. #define MACE_UST_COMPARE3 (MACE_UST_BASE + 0x00000018) /* Interrupt compare reg 3 */
  107. #define MACE_UST_PERIOD_NS 960 /* UST Period in ns  */
  108. #define MACE_UST_AIN_MSC (MACE_UST_BASE + 0x00000020) /* Audio in MSC/UST pair */
  109. #define MACE_UST_AOUT1_MSC (MACE_UST_BASE + 0x00000028) /* Audio out 1 MSC/UST pair */
  110. #define MACE_UST_AOUT2_MSC (MACE_UST_BASE + 0x00000030) /* Audio out 2 MSC/UST pair */
  111. #define MACE_VIN1_MSC_UST (MACE_UST_BASE + 0x00000038) /* Video In 1 MSC/UST pair */
  112. #define MACE_VIN2_MSC_UST (MACE_UST_BASE + 0x00000040) /* Video In 2 MSC/UST pair */
  113. #define MACE_VOUT_MSC_UST (MACE_UST_BASE + 0x00000048) /* Video out MSC/UST pair */
  114. /*
  115.  * Mace "ISA" peripherals
  116.  */
  117. #define MACEISA_EPP_BASE    (MACE_ISA_EXT   )
  118. #define MACEISA_ECP_BASE    (MACE_ISA_EXT + 0x00008000)
  119. #define MACEISA_SER1_BASE (MACE_ISA_EXT + 0x00010000)
  120. #define MACEISA_SER2_BASE (MACE_ISA_EXT + 0x00018000)
  121. #define MACEISA_RTC_BASE (MACE_ISA_EXT + 0x00020000)
  122. #define MACEISA_GAME_BASE (MACE_ISA_EXT + 0x00030000)
  123. /*
  124.  * Ringbase address and reset register - 64 bits
  125.  */
  126. #define MACEISA_RINGBASE MACE_ISA_BASE
  127. /*
  128.  * Flash-ROM/LED/DP-RAM/NIC Controller Register - 64 bits (?)
  129.  */
  130. #define MACEISA_FLASH_NIC_REG (MACE_ISA_BASE + 0x00000008)
  131. /*
  132.  * Bit definitions for that
  133.  */
  134. #define MACEISA_FLASH_WE       BIT(0) /* 1=> Enable FLASH writes */
  135. #define MACEISA_PWD_CLEAR      BIT(1) /* 1=> PWD CLEAR jumper detected */
  136. #define MACEISA_NIC_DEASSERT   BIT(2)
  137. #define MACEISA_NIC_DATA       BIT(3)
  138. #define MACEISA_LED_RED        BIT(4) /* 1=> Illuminate RED LED */
  139. #define MACEISA_LED_GREEN      BIT(5) /* 1=> Illuminate GREEN LED */
  140. #define MACEISA_DP_RAM_ENABLE  BIT(6)
  141. /*
  142.  * ISA interrupt and status registers - 32 bit
  143.  */
  144. #define MACEISA_INT_STAT (MACE_ISA_BASE + 0x00000014)
  145. #define MACEISA_INT_MASK (MACE_ISA_BASE + 0x0000001c)
  146. /*
  147.  * Bits in the status/mask registers
  148.  */
  149. #define MACEISA_AUDIO_SW_INT BIT (0)
  150. #define MACEISA_AUDIO_SC_INT BIT (1)
  151. #define MACEISA_AUDIO1_DMAT_INT BIT (2)
  152. #define MACEISA_AUDIO1_OF_INT BIT (3)
  153. #define MACEISA_AUDIO2_DMAT_INT BIT (4)
  154. #define MACEISA_AUDIO2_MERR_INT BIT (5)
  155. #define MACEISA_AUDIO3_DMAT_INT BIT (6)
  156. #define MACEISA_AUDIO3_MERR_INT BIT (7)
  157. #define MACEISA_RTC_INT BIT (8)
  158. #define MACEISA_KEYB_INT BIT (9)
  159. #define MACEISA_KEYB_POLL_INT BIT (10)
  160. #define MACEISA_MOUSE_INT BIT (11)
  161. #define MACEISA_MOUSE_POLL_INT BIT (12)
  162. #define MACEISA_TIMER0_INT BIT (13)
  163. #define MACEISA_TIMER1_INT BIT (14)
  164. #define MACEISA_TIMER2_INT BIT (15)
  165. #define MACEISA_PARALLEL_INT BIT (16)
  166. #define MACEISA_PAR_CTXA_INT BIT (17)
  167. #define MACEISA_PAR_CTXB_INT BIT (18)
  168. #define MACEISA_PAR_MERR_INT BIT (19)
  169. #define MACEISA_SERIAL1_INT BIT (20)
  170. #define MACEISA_SERIAL1_TDMAT_INT BIT (21)
  171. #define MACEISA_SERIAL1_TDMAPR_INT BIT (22)
  172. #define MACEISA_SERIAL1_TDMAME_INT BIT (23)
  173. #define MACEISA_SERIAL1_RDMAT_INT BIT (24)
  174. #define MACEISA_SERIAL1_RDMAOR_INT BIT (25)
  175. #define MACEISA_SERIAL2_INT BIT (26)
  176. #define MACEISA_SERIAL2_TDMAT_INT BIT (27)
  177. #define MACEISA_SERIAL2_TDMAPR_INT BIT (28)
  178. #define MACEISA_SERIAL2_TDMAME_INT BIT (29)
  179. #define MACEISA_SERIAL2_RDMAT_INT BIT (30)
  180. #define MACEISA_SERIAL2_RDMAOR_INT BIT (31)
  181. #ifndef __ASSEMBLY__
  182. #include <asm/types.h>
  183. /*
  184.  * XXX Some of these are probably not needed (or even legal?)
  185.  */
  186. static inline u8 mace_read_8 (unsigned long __offset)
  187. {
  188. return *((volatile u8 *) (MACE_BASE + __offset));
  189. }
  190. static inline u16 mace_read_16 (unsigned long __offset)
  191. {
  192. return *((volatile u16 *) (MACE_BASE + __offset));
  193. }
  194. static inline u32 mace_read_32 (unsigned long __offset)
  195. {
  196. return *((volatile u32 *) (MACE_BASE + __offset));
  197. }
  198. static inline u64 mace_read_64 (unsigned long __offset)
  199. {
  200. return *((volatile u64 *) (MACE_BASE + __offset));
  201. }
  202. static inline void mace_write_8 (unsigned long __offset, u8 __val)
  203. {
  204. *((volatile u8 *) (MACE_BASE + __offset)) = __val;
  205. }
  206. static inline void mace_write_16 (unsigned long __offset, u16 __val)
  207. {
  208. *((volatile u16 *) (MACE_BASE + __offset)) = __val;
  209. }
  210. static inline void mace_write_32 (unsigned long __offset, u32 __val)
  211. {
  212. *((volatile u32 *) (MACE_BASE + __offset)) = __val;
  213. }
  214. static inline void mace_write_64 (unsigned long __offset, u64 __val)
  215. {
  216. *((volatile u64 *) (MACE_BASE + __offset)) = __val;
  217. }
  218. /* Call it whenever device needs to read data from main memory coherently */
  219. static inline void mace_inv_read_buffers(void)
  220. {
  221. /* mace_write_32(MACEPCI_WFLUSH,0xffffffff);*/
  222. }
  223. #endif /* !__ASSEMBLY__ */
  224. #endif /* __ASM_MACE_H__ */