sni.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. /*
  2. * SNI specific definitions
  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) 1997, 1998 by Ralf Baechle
  9. * Copyright (C) 2006 Thomas Bogendoerfer (tsbogend@alpha.franken.de)
  10. */
  11. #ifndef __ASM_SNI_H
  12. #define __ASM_SNI_H
  13. extern unsigned int sni_brd_type;
  14. #define SNI_BRD_10 2
  15. #define SNI_BRD_10NEW 3
  16. #define SNI_BRD_TOWER_OASIC 4
  17. #define SNI_BRD_MINITOWER 5
  18. #define SNI_BRD_PCI_TOWER 6
  19. #define SNI_BRD_RM200 7
  20. #define SNI_BRD_PCI_MTOWER 8
  21. #define SNI_BRD_PCI_DESKTOP 9
  22. #define SNI_BRD_PCI_TOWER_CPLUS 10
  23. #define SNI_BRD_PCI_MTOWER_CPLUS 11
  24. /* RM400 cpu types */
  25. #define SNI_CPU_M8021 0x01
  26. #define SNI_CPU_M8030 0x04
  27. #define SNI_CPU_M8031 0x06
  28. #define SNI_CPU_M8034 0x0f
  29. #define SNI_CPU_M8037 0x07
  30. #define SNI_CPU_M8040 0x05
  31. #define SNI_CPU_M8043 0x09
  32. #define SNI_CPU_M8050 0x0b
  33. #define SNI_CPU_M8053 0x0d
  34. #define SNI_PORT_BASE 0xb4000000
  35. #ifndef __MIPSEL__
  36. /*
  37. * ASIC PCI registers for big endian configuration.
  38. */
  39. #define PCIMT_UCONF 0xbfff0004
  40. #define PCIMT_IOADTIMEOUT2 0xbfff000c
  41. #define PCIMT_IOMEMCONF 0xbfff0014
  42. #define PCIMT_IOMMU 0xbfff001c
  43. #define PCIMT_IOADTIMEOUT1 0xbfff0024
  44. #define PCIMT_DMAACCESS 0xbfff002c
  45. #define PCIMT_DMAHIT 0xbfff0034
  46. #define PCIMT_ERRSTATUS 0xbfff003c
  47. #define PCIMT_ERRADDR 0xbfff0044
  48. #define PCIMT_SYNDROME 0xbfff004c
  49. #define PCIMT_ITPEND 0xbfff0054
  50. #define IT_INT2 0x01
  51. #define IT_INTD 0x02
  52. #define IT_INTC 0x04
  53. #define IT_INTB 0x08
  54. #define IT_INTA 0x10
  55. #define IT_EISA 0x20
  56. #define IT_SCSI 0x40
  57. #define IT_ETH 0x80
  58. #define PCIMT_IRQSEL 0xbfff005c
  59. #define PCIMT_TESTMEM 0xbfff0064
  60. #define PCIMT_ECCREG 0xbfff006c
  61. #define PCIMT_CONFIG_ADDRESS 0xbfff0074
  62. #define PCIMT_ASIC_ID 0xbfff007c /* read */
  63. #define PCIMT_SOFT_RESET 0xbfff007c /* write */
  64. #define PCIMT_PIA_OE 0xbfff0084
  65. #define PCIMT_PIA_DATAOUT 0xbfff008c
  66. #define PCIMT_PIA_DATAIN 0xbfff0094
  67. #define PCIMT_CACHECONF 0xbfff009c
  68. #define PCIMT_INVSPACE 0xbfff00a4
  69. #else
  70. /*
  71. * ASIC PCI registers for little endian configuration.
  72. */
  73. #define PCIMT_UCONF 0xbfff0000
  74. #define PCIMT_IOADTIMEOUT2 0xbfff0008
  75. #define PCIMT_IOMEMCONF 0xbfff0010
  76. #define PCIMT_IOMMU 0xbfff0018
  77. #define PCIMT_IOADTIMEOUT1 0xbfff0020
  78. #define PCIMT_DMAACCESS 0xbfff0028
  79. #define PCIMT_DMAHIT 0xbfff0030
  80. #define PCIMT_ERRSTATUS 0xbfff0038
  81. #define PCIMT_ERRADDR 0xbfff0040
  82. #define PCIMT_SYNDROME 0xbfff0048
  83. #define PCIMT_ITPEND 0xbfff0050
  84. #define IT_INT2 0x01
  85. #define IT_INTD 0x02
  86. #define IT_INTC 0x04
  87. #define IT_INTB 0x08
  88. #define IT_INTA 0x10
  89. #define IT_EISA 0x20
  90. #define IT_SCSI 0x40
  91. #define IT_ETH 0x80
  92. #define PCIMT_IRQSEL 0xbfff0058
  93. #define PCIMT_TESTMEM 0xbfff0060
  94. #define PCIMT_ECCREG 0xbfff0068
  95. #define PCIMT_CONFIG_ADDRESS 0xbfff0070
  96. #define PCIMT_ASIC_ID 0xbfff0078 /* read */
  97. #define PCIMT_SOFT_RESET 0xbfff0078 /* write */
  98. #define PCIMT_PIA_OE 0xbfff0080
  99. #define PCIMT_PIA_DATAOUT 0xbfff0088
  100. #define PCIMT_PIA_DATAIN 0xbfff0090
  101. #define PCIMT_CACHECONF 0xbfff0098
  102. #define PCIMT_INVSPACE 0xbfff00a0
  103. #endif
  104. #define PCIMT_PCI_CONF 0xbfff0100
  105. /*
  106. * Data port for the PCI bus in IO space
  107. */
  108. #define PCIMT_CONFIG_DATA 0x0cfc
  109. /*
  110. * Board specific registers
  111. */
  112. #define PCIMT_CSMSR 0xbfd00000
  113. #define PCIMT_CSSWITCH 0xbfd10000
  114. #define PCIMT_CSITPEND 0xbfd20000
  115. #define PCIMT_AUTO_PO_EN 0xbfd30000
  116. #define PCIMT_CLR_TEMP 0xbfd40000
  117. #define PCIMT_AUTO_PO_DIS 0xbfd50000
  118. #define PCIMT_EXMSR 0xbfd60000
  119. #define PCIMT_UNUSED1 0xbfd70000
  120. #define PCIMT_CSWCSM 0xbfd80000
  121. #define PCIMT_UNUSED2 0xbfd90000
  122. #define PCIMT_CSLED 0xbfda0000
  123. #define PCIMT_CSMAPISA 0xbfdb0000
  124. #define PCIMT_CSRSTBP 0xbfdc0000
  125. #define PCIMT_CLRPOFF 0xbfdd0000
  126. #define PCIMT_CSTIMER 0xbfde0000
  127. #define PCIMT_PWDN 0xbfdf0000
  128. /*
  129. * A20R based boards
  130. */
  131. #define A20R_PT_CLOCK_BASE 0xbc040000
  132. #define A20R_PT_TIM0_ACK 0xbc050000
  133. #define A20R_PT_TIM1_ACK 0xbc060000
  134. #define SNI_MIPS_IRQ_CPU_TIMER (MIPS_CPU_IRQ_BASE+7)
  135. #define SNI_A20R_IRQ_BASE MIPS_CPU_IRQ_BASE
  136. #define SNI_A20R_IRQ_TIMER (SNI_A20R_IRQ_BASE+5)
  137. #define SNI_PCIT_INT_REG 0xbfff000c
  138. #define SNI_PCIT_INT_START 24
  139. #define SNI_PCIT_INT_END 30
  140. #define PCIT_IRQ_ETHERNET (MIPS_CPU_IRQ_BASE + 5)
  141. #define PCIT_IRQ_INTA (SNI_PCIT_INT_START + 0)
  142. #define PCIT_IRQ_INTB (SNI_PCIT_INT_START + 1)
  143. #define PCIT_IRQ_INTC (SNI_PCIT_INT_START + 2)
  144. #define PCIT_IRQ_INTD (SNI_PCIT_INT_START + 3)
  145. #define PCIT_IRQ_SCSI0 (SNI_PCIT_INT_START + 4)
  146. #define PCIT_IRQ_SCSI1 (SNI_PCIT_INT_START + 5)
  147. /*
  148. * Interrupt 0-16 are EISA interrupts. Interrupts from 16 on are assigned
  149. * to the other interrupts generated by ASIC PCI.
  150. *
  151. * INT2 is a wired-or of the push button interrupt, high temperature interrupt
  152. * ASIC PCI interrupt.
  153. */
  154. #define PCIMT_KEYBOARD_IRQ 1
  155. #define PCIMT_IRQ_INT2 24
  156. #define PCIMT_IRQ_INTD 25
  157. #define PCIMT_IRQ_INTC 26
  158. #define PCIMT_IRQ_INTB 27
  159. #define PCIMT_IRQ_INTA 28
  160. #define PCIMT_IRQ_EISA 29
  161. #define PCIMT_IRQ_SCSI 30
  162. #define PCIMT_IRQ_ETHERNET (MIPS_CPU_IRQ_BASE+6)
  163. #if 0
  164. #define PCIMT_IRQ_TEMPERATURE 24
  165. #define PCIMT_IRQ_EISA_NMI 25
  166. #define PCIMT_IRQ_POWER_OFF 26
  167. #define PCIMT_IRQ_BUTTON 27
  168. #endif
  169. /*
  170. * Base address for the mapped 16mb EISA bus segment.
  171. */
  172. #define PCIMT_EISA_BASE 0xb0000000
  173. /* PCI EISA Interrupt acknowledge */
  174. #define PCIMT_INT_ACKNOWLEDGE 0xba000000
  175. /* board specific init functions */
  176. extern void sni_a20r_init(void);
  177. extern void sni_pcit_init(void);
  178. extern void sni_rm200_init(void);
  179. extern void sni_pcimt_init(void);
  180. /* board specific irq init functions */
  181. extern void sni_a20r_irq_init(void);
  182. extern void sni_pcit_irq_init(void);
  183. extern void sni_pcit_cplus_irq_init(void);
  184. extern void sni_rm200_irq_init(void);
  185. extern void sni_pcimt_irq_init(void);
  186. /* timer inits */
  187. extern void sni_cpu_time_init(void);
  188. /* common irq stuff */
  189. extern void (*sni_hwint)(void);
  190. extern struct irqaction sni_isa_irq;
  191. #endif /* __ASM_SNI_H */