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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: obio.h,v 1.4 1998/03/09 14:04:55 jj Exp $
  2.  * obio.h:  Some useful locations in 0xFXXXXXXXX PA obio space on sun4d.
  3.  *
  4.  * Copyright (C) 1997 Jakub Jelinek <jj@sunsite.mff.cuni.cz>
  5.  */
  6. #ifndef _SPARC_OBIO_H
  7. #define _SPARC_OBIO_H
  8. #include <asm/asi.h>
  9. /* This weird monster likes to use the very upper parts of
  10.    36bit PA for these things :) */
  11.    
  12. /* CSR space (for each XDBUS)
  13.  *  ------------------------------------------------------------------------
  14.  *  |   0xFE  |   DEVID    |                | XDBUS ID |                   |
  15.  *  ------------------------------------------------------------------------
  16.  *  35      28 27        20 19            10 9        8 7                 0
  17.  */
  18.    
  19. #define CSR_BASE_ADDR 0xe0000000
  20. #define CSR_CPU_SHIFT (32 - 4 - 5)
  21. #define CSR_XDBUS_SHIFT 8
  22. #define CSR_BASE(cpu) (((CSR_BASE_ADDR >> CSR_CPU_SHIFT) + cpu) << CSR_CPU_SHIFT)
  23. /* ECSR space (not for each XDBUS)
  24.  *  ------------------------------------------------------------------------
  25.  *  |   0xF  | DEVID[7:1] |                            |
  26.  *  ------------------------------------------------------------------------
  27.  *  35     32 31        25 24                    0
  28.  */
  29.    
  30. #define ECSR_BASE_ADDR 0x00000000
  31. #define ECSR_CPU_SHIFT (32 - 5)
  32. #define ECSR_DEV_SHIFT (32 - 8)
  33. #define ECSR_BASE(cpu) ((cpu) << ECSR_CPU_SHIFT)
  34. #define ECSR_DEV_BASE(devid) ((devid) << ECSR_DEV_SHIFT) 
  35. /* Bus Watcher */
  36. #define BW_LOCAL_BASE 0xfff00000
  37. #define BW_CID 0x00000000
  38. #define BW_DBUS_CTRL 0x00000008
  39. #define BW_DBUS_DATA 0x00000010
  40. #define BW_CTRL 0x00001000
  41. #define BW_INTR_TABLE 0x00001040
  42. #define BW_INTR_TABLE_CLEAR 0x00001080
  43. #define BW_PRESCALER 0x000010c0
  44. #define BW_PTIMER_LIMIT 0x00002000
  45. #define BW_PTIMER_COUNTER2 0x00002004
  46. #define BW_PTIMER_NDLIMIT 0x00002008
  47. #define BW_PTIMER_CTRL 0x0000200c
  48. #define BW_PTIMER_COUNTER 0x00002010
  49. #define BW_TIMER_LIMIT 0x00003000
  50. #define BW_TIMER_COUNTER2 0x00003004
  51. #define BW_TIMER_NDLIMIT 0x00003008
  52. #define BW_TIMER_CTRL 0x0000300c
  53. #define BW_TIMER_COUNTER 0x00003010
  54. /* BW Control */
  55. #define BW_CTRL_USER_TIMER 0x00000004 /* Is User Timer Free run enabled */
  56. /* Boot Bus */
  57. #define BB_LOCAL_BASE 0xf0000000
  58. #define BB_STAT1 0x00100000
  59. #define BB_STAT2 0x00120000
  60. #define BB_STAT3 0x00140000
  61. #define BB_LEDS 0x002e0000
  62. /* Bits in BB_STAT2 */
  63. #define BB_STAT2_AC_INTR 0x04 /* Aiee! 5ms and power is gone... */
  64. #define BB_STAT2_TMP_INTR 0x10 /* My Penguins are burning. Are you able to smell it? */
  65. #define BB_STAT2_FAN_INTR 0x20 /* My fan refuses to work */
  66. #define BB_STAT2_PWR_INTR 0x40 /* On SC2000, one of the two ACs died. Ok, we go on... */
  67. #define BB_STAT2_MASK (BB_STAT2_AC_INTR|BB_STAT2_TMP_INTR|BB_STAT2_FAN_INTR|BB_STAT2_PWR_INTR)
  68. /* Cache Controller */
  69. #define CC_BASE 0x1F00000
  70. #define CC_DATSTREAM 0x1F00000  /* Data stream register */
  71. #define CC_DATSIZE 0x1F0003F  /* Size */
  72. #define CC_SRCSTREAM 0x1F00100  /* Source stream register */
  73. #define CC_DESSTREAM 0x1F00200  /* Destination stream register */
  74. #define CC_RMCOUNT 0x1F00300  /* Count of references and misses */
  75. #define CC_IPEN 0x1F00406  /* Pending Interrupts */
  76. #define CC_IMSK 0x1F00506  /* Interrupt Mask */
  77. #define CC_ICLR 0x1F00606  /* Clear pending Interrupts */
  78. #define CC_IGEN 0x1F00704  /* Generate Interrupt register */
  79. #define CC_STEST 0x1F00804  /* Internal self-test */
  80. #define CC_CREG 0x1F00A04  /* Control register */
  81. #define CC_SREG 0x1F00B00  /* Status register */
  82. #define CC_RREG 0x1F00C04  /* Reset register */
  83. #define CC_EREG 0x1F00E00  /* Error code register */
  84. #define CC_CID 0x1F00F04  /* Component ID */
  85. #ifndef __ASSEMBLY__
  86. extern __inline__ int bw_get_intr_mask(int sbus_level)
  87. {
  88. int mask;
  89. __asm__ __volatile__ ("lduha [%1] %2, %0" :
  90.       "=r" (mask) :
  91.       "r" (BW_LOCAL_BASE + BW_INTR_TABLE + (sbus_level << 3)),
  92.       "i" (ASI_M_CTL));
  93. return mask;
  94. }
  95. extern __inline__ void bw_clear_intr_mask(int sbus_level, int mask)
  96. {
  97. __asm__ __volatile__ ("stha %0, [%1] %2" : :
  98.       "r" (mask),
  99.       "r" (BW_LOCAL_BASE + BW_INTR_TABLE_CLEAR + (sbus_level << 3)),
  100.       "i" (ASI_M_CTL));
  101. }
  102. extern __inline__ unsigned bw_get_prof_limit(int cpu)
  103. {
  104. unsigned limit;
  105. __asm__ __volatile__ ("lda [%1] %2, %0" :
  106.       "=r" (limit) :
  107.       "r" (CSR_BASE(cpu) + BW_PTIMER_LIMIT),
  108.       "i" (ASI_M_CTL));
  109. return limit;
  110. }
  111. extern __inline__ void bw_set_prof_limit(int cpu, unsigned limit)
  112. {
  113. __asm__ __volatile__ ("sta %0, [%1] %2" : :
  114.       "r" (limit),
  115.       "r" (CSR_BASE(cpu) + BW_PTIMER_LIMIT),
  116.       "i" (ASI_M_CTL));
  117. }
  118. extern __inline__ unsigned bw_get_ctrl(int cpu)
  119. {
  120. unsigned ctrl;
  121. __asm__ __volatile__ ("lda [%1] %2, %0" :
  122.       "=r" (ctrl) :
  123.       "r" (CSR_BASE(cpu) + BW_CTRL),
  124.       "i" (ASI_M_CTL));
  125. return ctrl;
  126. }
  127. extern __inline__ void bw_set_ctrl(int cpu, unsigned ctrl)
  128. {
  129. __asm__ __volatile__ ("sta %0, [%1] %2" : :
  130.       "r" (ctrl),
  131.       "r" (CSR_BASE(cpu) + BW_CTRL),
  132.       "i" (ASI_M_CTL));
  133. }
  134. extern unsigned char cpu_leds[32];
  135. extern __inline__ void show_leds(int cpuid)
  136. {
  137. cpuid &= 0x1e;
  138. __asm__ __volatile__ ("stba %0, [%1] %2" : :
  139.       "r" ((cpu_leds[cpuid] << 4) | cpu_leds[cpuid+1]),
  140.       "r" (ECSR_BASE(cpuid) | BB_LEDS),
  141.       "i" (ASI_M_CTL));
  142. }
  143. extern __inline__ unsigned cc_get_ipen(void)
  144. {
  145. unsigned pending;
  146. __asm__ __volatile__ ("lduha [%1] %2, %0" :
  147.       "=r" (pending) :
  148.       "r" (CC_IPEN),
  149.       "i" (ASI_M_MXCC));
  150. return pending;
  151. }
  152. extern __inline__ void cc_set_iclr(unsigned clear)
  153. {
  154. __asm__ __volatile__ ("stha %0, [%1] %2" : :
  155.       "r" (clear),
  156.       "r" (CC_ICLR),
  157.       "i" (ASI_M_MXCC));
  158. }
  159. extern __inline__ unsigned cc_get_imsk(void)
  160. {
  161. unsigned mask;
  162. __asm__ __volatile__ ("lduha [%1] %2, %0" :
  163.       "=r" (mask) :
  164.       "r" (CC_IMSK),
  165.       "i" (ASI_M_MXCC));
  166. return mask;
  167. }
  168. extern __inline__ void cc_set_imsk(unsigned mask)
  169. {
  170. __asm__ __volatile__ ("stha %0, [%1] %2" : :
  171.       "r" (mask),
  172.       "r" (CC_IMSK),
  173.       "i" (ASI_M_MXCC));
  174. }
  175. extern __inline__ unsigned cc_get_imsk_other(int cpuid)
  176. {
  177. unsigned mask;
  178. __asm__ __volatile__ ("lduha [%1] %2, %0" :
  179.       "=r" (mask) :
  180.       "r" (ECSR_BASE(cpuid) | CC_IMSK),
  181.       "i" (ASI_M_CTL));
  182. return mask;
  183. }
  184. extern __inline__ void cc_set_imsk_other(int cpuid, unsigned mask)
  185. {
  186. __asm__ __volatile__ ("stha %0, [%1] %2" : :
  187.       "r" (mask),
  188.       "r" (ECSR_BASE(cpuid) | CC_IMSK),
  189.       "i" (ASI_M_CTL));
  190. }
  191. extern __inline__ void cc_set_igen(unsigned gen)
  192. {
  193. __asm__ __volatile__ ("sta %0, [%1] %2" : :
  194.       "r" (gen),
  195.       "r" (CC_IGEN),
  196.       "i" (ASI_M_MXCC));
  197. }
  198. /* +-------+-------------+-----------+------------------------------------+
  199.  * | bcast |  devid      |   sid     |              levels mask           |
  200.  * +-------+-------------+-----------+------------------------------------+
  201.  *  31      30         23 22       15 14                                 0
  202.  */
  203. #define IGEN_MESSAGE(bcast, devid, sid, levels) 
  204. (((bcast) << 31) | ((devid) << 23) | ((sid) << 15) | (levels))
  205.             
  206. extern __inline__ void sun4d_send_ipi(int cpu, int level)
  207. {
  208. cc_set_igen(IGEN_MESSAGE(0, cpu << 3, 6 + ((level >> 1) & 7), 1 << (level - 1)));
  209. }
  210. #endif /* !__ASSEMBLY__ */
  211. #endif /* !(_SPARC_OBIO_H) */