mc.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * mc.h: Definitions for SGI Memory Controller
  7. *
  8. * Copyright (C) 1996 David S. Miller
  9. * Copyright (C) 1999 Ralf Baechle
  10. * Copyright (C) 1999 Silicon Graphics, Inc.
  11. */
  12. #ifndef _SGI_MC_H
  13. #define _SGI_MC_H
  14. struct sgimc_regs {
  15. u32 _unused0;
  16. volatile u32 cpuctrl0; /* CPU control register 0, readwrite */
  17. #define SGIMC_CCTRL0_REFS 0x0000000f /* REFS mask */
  18. #define SGIMC_CCTRL0_EREFRESH 0x00000010 /* Memory refresh enable */
  19. #define SGIMC_CCTRL0_EPERRGIO 0x00000020 /* GIO parity error enable */
  20. #define SGIMC_CCTRL0_EPERRMEM 0x00000040 /* Main mem parity error enable */
  21. #define SGIMC_CCTRL0_EPERRCPU 0x00000080 /* CPU bus parity error enable */
  22. #define SGIMC_CCTRL0_WDOG 0x00000100 /* Watchdog timer enable */
  23. #define SGIMC_CCTRL0_SYSINIT 0x00000200 /* System init bit */
  24. #define SGIMC_CCTRL0_GFXRESET 0x00000400 /* Graphics interface reset */
  25. #define SGIMC_CCTRL0_EISALOCK 0x00000800 /* Lock CPU from memory for EISA */
  26. #define SGIMC_CCTRL0_EPERRSCMD 0x00001000 /* SysCMD bus parity error enable */
  27. #define SGIMC_CCTRL0_IENAB 0x00002000 /* Allow interrupts from MC */
  28. #define SGIMC_CCTRL0_ESNOOP 0x00004000 /* Snooping I/O enable */
  29. #define SGIMC_CCTRL0_EPROMWR 0x00008000 /* Prom writes from cpu enable */
  30. #define SGIMC_CCTRL0_WRESETPMEM 0x00010000 /* Perform warm reset, preserves mem */
  31. #define SGIMC_CCTRL0_LENDIAN 0x00020000 /* Put MC in little-endian mode */
  32. #define SGIMC_CCTRL0_WRESETDMEM 0x00040000 /* Warm reset, destroys mem contents */
  33. #define SGIMC_CCTRL0_CMEMBADPAR 0x02000000 /* Generate bad perr from cpu to mem */
  34. #define SGIMC_CCTRL0_R4KNOCHKPARR 0x04000000 /* Don't chk parity on mem data reads */
  35. #define SGIMC_CCTRL0_GIOBTOB 0x08000000 /* Allow GIO back to back writes */
  36. u32 _unused1;
  37. volatile u32 cpuctrl1; /* CPU control register 1, readwrite */
  38. #define SGIMC_CCTRL1_EGIOTIMEO 0x00000010 /* GIO bus timeout enable */
  39. #define SGIMC_CCTRL1_FIXEDEHPC 0x00001000 /* Fixed HPC endianness */
  40. #define SGIMC_CCTRL1_LITTLEHPC 0x00002000 /* Little endian HPC */
  41. #define SGIMC_CCTRL1_FIXEDEEXP0 0x00004000 /* Fixed EXP0 endianness */
  42. #define SGIMC_CCTRL1_LITTLEEXP0 0x00008000 /* Little endian EXP0 */
  43. #define SGIMC_CCTRL1_FIXEDEEXP1 0x00010000 /* Fixed EXP1 endianness */
  44. #define SGIMC_CCTRL1_LITTLEEXP1 0x00020000 /* Little endian EXP1 */
  45. u32 _unused2;
  46. volatile u32 watchdogt; /* Watchdog reg rdonly, write clears */
  47. u32 _unused3;
  48. volatile u32 systemid; /* MC system ID register, readonly */
  49. #define SGIMC_SYSID_MASKREV 0x0000000f /* Revision of MC controller */
  50. #define SGIMC_SYSID_EPRESENT 0x00000010 /* Indicates presence of EISA bus */
  51. u32 _unused4[3];
  52. volatile u32 divider; /* Divider reg for RPSS */
  53. u32 _unused5;
  54. u32 eeprom; /* EEPROM byte reg for r4k */
  55. #define SGIMC_EEPROM_PRE 0x00000001 /* eeprom chip PRE pin assertion */
  56. #define SGIMC_EEPROM_CSEL 0x00000002 /* Active high, eeprom chip select */
  57. #define SGIMC_EEPROM_SECLOCK 0x00000004 /* EEPROM serial clock */
  58. #define SGIMC_EEPROM_SDATAO 0x00000008 /* Serial EEPROM data-out */
  59. #define SGIMC_EEPROM_SDATAI 0x00000010 /* Serial EEPROM data-in */
  60. u32 _unused6[3];
  61. volatile u32 rcntpre; /* Preload refresh counter */
  62. u32 _unused7;
  63. volatile u32 rcounter; /* Readonly refresh counter */
  64. u32 _unused8[13];
  65. volatile u32 giopar; /* Parameter word for GIO64 */
  66. #define SGIMC_GIOPAR_HPC64 0x00000001 /* HPC talks to GIO using 64-bits */
  67. #define SGIMC_GIOPAR_GFX64 0x00000002 /* GFX talks to GIO using 64-bits */
  68. #define SGIMC_GIOPAR_EXP064 0x00000004 /* EXP(slot0) talks using 64-bits */
  69. #define SGIMC_GIOPAR_EXP164 0x00000008 /* EXP(slot1) talks using 64-bits */
  70. #define SGIMC_GIOPAR_EISA64 0x00000010 /* EISA bus talks 64-bits to GIO */
  71. #define SGIMC_GIOPAR_HPC264 0x00000020 /* 2nd HPX talks 64-bits to GIO */
  72. #define SGIMC_GIOPAR_RTIMEGFX 0x00000040 /* GFX device has realtime attr */
  73. #define SGIMC_GIOPAR_RTIMEEXP0 0x00000080 /* EXP(slot0) has realtime attr */
  74. #define SGIMC_GIOPAR_RTIMEEXP1 0x00000100 /* EXP(slot1) has realtime attr */
  75. #define SGIMC_GIOPAR_MASTEREISA 0x00000200 /* EISA bus can act as bus master */
  76. #define SGIMC_GIOPAR_ONEBUS 0x00000400 /* Exists one GIO64 pipelined bus */
  77. #define SGIMC_GIOPAR_MASTERGFX 0x00000800 /* GFX can act as a bus master */
  78. #define SGIMC_GIOPAR_MASTEREXP0 0x00001000 /* EXP(slot0) can bus master */
  79. #define SGIMC_GIOPAR_MASTEREXP1 0x00002000 /* EXP(slot1) can bus master */
  80. #define SGIMC_GIOPAR_PLINEEXP0 0x00004000 /* EXP(slot0) has pipeline attr */
  81. #define SGIMC_GIOPAR_PLINEEXP1 0x00008000 /* EXP(slot1) has pipeline attr */
  82. u32 _unused9;
  83. volatile u32 cputp; /* CPU bus arb time period */
  84. u32 _unused10[3];
  85. volatile u32 lbursttp; /* Time period for long bursts */
  86. /* MC chip can drive up to 4 bank 4 SIMMs each. All SIMMs in bank must
  87. * be the same size. The size encoding for supported SIMMs is bellow */
  88. u32 _unused11[9];
  89. volatile u32 mconfig0; /* Memory config register zero */
  90. u32 _unused12;
  91. volatile u32 mconfig1; /* Memory config register one */
  92. #define SGIMC_MCONFIG_BASEADDR 0x000000ff /* Base address of bank*/
  93. #define SGIMC_MCONFIG_RMASK 0x00001f00 /* Ram config bitmask */
  94. #define SGIMC_MCONFIG_BVALID 0x00002000 /* Bank is valid */
  95. #define SGIMC_MCONFIG_SBANKS 0x00004000 /* Number of subbanks */
  96. u32 _unused13;
  97. volatile u32 cmacc; /* Mem access config for CPU */
  98. u32 _unused14;
  99. volatile u32 gmacc; /* Mem access config for GIO */
  100. /* This define applies to both cmacc and gmacc registers above. */
  101. #define SGIMC_MACC_ALIASBIG 0x20000000 /* 512MB home for alias */
  102. /* Error address/status regs from GIO and CPU perspectives. */
  103. u32 _unused15;
  104. volatile u32 cerr; /* Error address reg for CPU */
  105. u32 _unused16;
  106. volatile u32 cstat; /* Status reg for CPU */
  107. #define SGIMC_CSTAT_RD 0x00000100 /* read parity error */
  108. #define SGIMC_CSTAT_PAR 0x00000200 /* CPU parity error */
  109. #define SGIMC_CSTAT_ADDR 0x00000400 /* memory bus error bad addr */
  110. #define SGIMC_CSTAT_SYSAD_PAR 0x00000800 /* sysad parity error */
  111. #define SGIMC_CSTAT_SYSCMD_PAR 0x00001000 /* syscmd parity error */
  112. #define SGIMC_CSTAT_BAD_DATA 0x00002000 /* bad data identifier */
  113. #define SGIMC_CSTAT_PAR_MASK 0x00001f00 /* parity error mask */
  114. #define SGIMC_CSTAT_RD_PAR (SGIMC_CSTAT_RD | SGIMC_CSTAT_PAR)
  115. u32 _unused17;
  116. volatile u32 gerr; /* Error address reg for GIO */
  117. u32 _unused18;
  118. volatile u32 gstat; /* Status reg for GIO */
  119. #define SGIMC_GSTAT_RD 0x00000100 /* read parity error */
  120. #define SGIMC_GSTAT_WR 0x00000200 /* write parity error */
  121. #define SGIMC_GSTAT_TIME 0x00000400 /* GIO bus timed out */
  122. #define SGIMC_GSTAT_PROM 0x00000800 /* write to PROM when PROM_EN not set */
  123. #define SGIMC_GSTAT_ADDR 0x00001000 /* parity error on addr cycle */
  124. #define SGIMC_GSTAT_BC 0x00002000 /* parity error on byte count cycle */
  125. #define SGIMC_GSTAT_PIO_RD 0x00004000 /* read data parity on pio */
  126. #define SGIMC_GSTAT_PIO_WR 0x00008000 /* write data parity on pio */
  127. /* Special hard bus locking registers. */
  128. u32 _unused19;
  129. volatile u32 syssembit; /* Uni-bit system semaphore */
  130. u32 _unused20;
  131. volatile u32 mlock; /* Global GIO memory access lock */
  132. u32 _unused21;
  133. volatile u32 elock; /* Locks EISA from GIO accesses */
  134. /* GIO dma control registers. */
  135. u32 _unused22[15];
  136. volatile u32 gio_dma_trans; /* DMA mask to translation GIO addrs */
  137. u32 _unused23;
  138. volatile u32 gio_dma_sbits; /* DMA GIO addr substitution bits */
  139. u32 _unused24;
  140. volatile u32 dma_intr_cause; /* DMA IRQ cause indicator bits */
  141. u32 _unused25;
  142. volatile u32 dma_ctrl; /* Main DMA control reg */
  143. /* DMA TLB entry 0 */
  144. u32 _unused26[5];
  145. volatile u32 dtlb_hi0;
  146. u32 _unused27;
  147. volatile u32 dtlb_lo0;
  148. /* DMA TLB entry 1 */
  149. u32 _unused28;
  150. volatile u32 dtlb_hi1;
  151. u32 _unused29;
  152. volatile u32 dtlb_lo1;
  153. /* DMA TLB entry 2 */
  154. u32 _unused30;
  155. volatile u32 dtlb_hi2;
  156. u32 _unused31;
  157. volatile u32 dtlb_lo2;
  158. /* DMA TLB entry 3 */
  159. u32 _unused32;
  160. volatile u32 dtlb_hi3;
  161. u32 _unused33;
  162. volatile u32 dtlb_lo3;
  163. u32 _unused34[0x0392];
  164. u32 _unused35;
  165. volatile u32 rpsscounter; /* Chirps at 100ns */
  166. u32 _unused36[0x1000/4-2*4];
  167. u32 _unused37;
  168. volatile u32 maddronly; /* Address DMA goes at */
  169. u32 _unused38;
  170. volatile u32 maddrpdeflts; /* Same as above, plus set defaults */
  171. u32 _unused39;
  172. volatile u32 dmasz; /* DMA count */
  173. u32 _unused40;
  174. volatile u32 ssize; /* DMA stride size */
  175. u32 _unused41;
  176. volatile u32 gmaddronly; /* Set GIO DMA but don't start trans */
  177. u32 _unused42;
  178. volatile u32 dmaddnpgo; /* Set GIO DMA addr + start transfer */
  179. u32 _unused43;
  180. volatile u32 dmamode; /* DMA mode config bit settings */
  181. u32 _unused44;
  182. volatile u32 dmaccount; /* Zoom and byte count for DMA */
  183. u32 _unused45;
  184. volatile u32 dmastart; /* Pedal to the metal. */
  185. u32 _unused46;
  186. volatile u32 dmarunning; /* DMA op is in progress */
  187. u32 _unused47;
  188. volatile u32 maddrdefstart; /* Set dma addr, defaults, and kick it */
  189. };
  190. extern struct sgimc_regs *sgimc;
  191. #define SGIMC_BASE 0x1fa00000 /* physical */
  192. /* Base location of the two ram banks found in IP2[0268] machines. */
  193. #define SGIMC_SEG0_BADDR 0x08000000
  194. #define SGIMC_SEG1_BADDR 0x20000000
  195. /* Maximum size of the above banks are per machine. */
  196. #define SGIMC_SEG0_SIZE_ALL 0x10000000 /* 256MB */
  197. #define SGIMC_SEG1_SIZE_IP20_IP22 0x08000000 /* 128MB */
  198. #define SGIMC_SEG1_SIZE_IP26_IP28 0x20000000 /* 512MB */
  199. extern void sgimc_init(void);
  200. #endif /* _SGI_MC_H */