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

嵌入式Linux

开发平台:

Unix_Linux

  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.  * Copyright (C) 1992 - 1997 Silicon Graphics, Inc.
  7.  */
  8. #ifndef __ASM_SN_INTR_H
  9. #define __ASM_SN_INTR_H
  10. /* Number of interrupt levels associated with each interrupt register. */
  11. #define N_INTPEND_BITS 64
  12. #define INT_PEND0_BASELVL 0
  13. #define INT_PEND1_BASELVL 64
  14. #define N_INTPENDJUNK_BITS 8
  15. #define INTPENDJUNK_CLRBIT 0x80
  16. #include <asm/sn/intr_public.h>
  17. #if _LANGUAGE_C
  18. /*
  19.  * Macros to manipulate the interrupt register on the calling hub chip.
  20.  */
  21. #define LOCAL_HUB_SEND_INTR(_level) LOCAL_HUB_S(PI_INT_PEND_MOD, 
  22.     (0x100|(_level)))
  23. #define REMOTE_HUB_SEND_INTR(_hub, _level) 
  24. REMOTE_HUB_S((_hub), PI_INT_PEND_MOD, (0x100|(_level)))
  25. /*
  26.  * When clearing the interrupt, make sure this clear does make it 
  27.  * to the hub. Otherwise we could end up losing interrupts.
  28.  * We do an uncached load of the int_pend0 register to ensure this.
  29.  */
  30. #define LOCAL_HUB_CLR_INTR(_level)   
  31.                 LOCAL_HUB_S(PI_INT_PEND_MOD, (_level)),
  32.                 LOCAL_HUB_L(PI_INT_PEND0)
  33. #define REMOTE_HUB_CLR_INTR(_hub, _level) 
  34. REMOTE_HUB_S((_hub), PI_INT_PEND_MOD, (_level)),
  35.                 REMOTE_HUB_L((_hub), PI_INT_PEND0)
  36. #else /* LANGUAGE_ASSEMBLY */
  37. #endif /* LANGUAGE_C */
  38. /*
  39.  * Hard-coded interrupt levels:
  40.  */
  41. /*
  42.  * L0 = SW1
  43.  * L1 = SW2
  44.  * L2 = INT_PEND0
  45.  * L3 = INT_PEND1
  46.  * L4 = RTC
  47.  * L5 = Profiling Timer
  48.  * L6 = Hub Errors
  49.  * L7 = Count/Compare (T5 counters)
  50.  */
  51. /* INT_PEND0 hard-coded bits. */
  52. #ifdef SABLE
  53. #define SDISK_INTR 63
  54. #endif
  55. #ifdef DEBUG_INTR_TSTAMP
  56. /* hard coded interrupt level for interrupt latency test interrupt */
  57. #define CPU_INTRLAT_B 62
  58. #define CPU_INTRLAT_A 61
  59. #endif
  60. /* Hardcoded bits required by software. */
  61. #define MSC_MESG_INTR 13
  62. #define CPU_ACTION_B 11
  63. #define CPU_ACTION_A 10
  64. /* These are determined by hardware: */
  65. #define CC_PEND_B 6
  66. #define CC_PEND_A 5
  67. #define UART_INTR 4
  68. #define PG_MIG_INTR 3
  69. #define GFX_INTR_B 2
  70. #define GFX_INTR_A 1
  71. #define RESERVED_INTR 0
  72. /* INT_PEND1 hard-coded bits: */
  73. #define MSC_PANIC_INTR 63
  74. #define NI_ERROR_INTR 62
  75. #define MD_COR_ERR_INTR 61
  76. #define COR_ERR_INTR_B 60
  77. #define COR_ERR_INTR_A 59
  78. #define CLK_ERR_INTR 58
  79. #define IO_ERROR_INTR 57 /* set up by prom */
  80. #define DEBUG_INTR_B 55 /* used by symmon to stop all cpus */
  81. #define DEBUG_INTR_A 54
  82. #define BRIDGE_ERROR_INTR 53 /* Setup by PROM to catch Bridge Errors */
  83. #define IP27_INTR_0 52 /* Reserved for PROM use */
  84. #define IP27_INTR_1 51 /*   (do not use in Kernel) */
  85. #define IP27_INTR_2 50
  86. #define IP27_INTR_3 49
  87. #define IP27_INTR_4 48
  88. #define IP27_INTR_5 47
  89. #define IP27_INTR_6 46
  90. #define IP27_INTR_7 45
  91. #define TLB_INTR_B 44 /* used for tlb flush random */
  92. #define TLB_INTR_A 43
  93. #define LLP_PFAIL_INTR_B 42 /* see ml/SN/SN0/sysctlr.c */
  94. #define LLP_PFAIL_INTR_A 41
  95. #define NI_BRDCAST_ERR_B 40
  96. #define NI_BRDCAST_ERR_A 39
  97. #endif /* __ASM_SN_INTR_H */