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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * SN1 Platform specific error Support
  3.  *
  4.  * Copyright (C) 2001-2002 Silicon Graphics, Inc. All rights reserved.
  5.  * 
  6.  * This program is free software; you can redistribute it and/or modify it 
  7.  * under the terms of version 2 of the GNU General Public License 
  8.  * as published by the Free Software Foundation.
  9.  * 
  10.  * This program is distributed in the hope that it would be useful, but 
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of 
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
  13.  * 
  14.  * Further, this software is distributed without any warranty that it is 
  15.  * free of the rightful claim of any third person regarding infringement 
  16.  * or the like.  Any license provided herein, whether implied or 
  17.  * otherwise, applies only to this software file.  Patent licenses, if 
  18.  * any, provided herein do not apply to combinations of this program with 
  19.  * other software, or any other product whatsoever.
  20.  * 
  21.  * You should have received a copy of the GNU General Public 
  22.  * License along with this program; if not, write the Free Software 
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  24.  * 
  25.  * Contact information:  Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, 
  26.  * Mountain View, CA  94043, or:
  27.  * 
  28.  * http://www.sgi.com 
  29.  * 
  30.  * For further information regarding this notice, see: 
  31.  * 
  32.  * http://oss.sgi.com/projects/GenInfo/NoticeExplan
  33.  */
  34. #include <linux/kernel.h>
  35. #include <linux/sched.h>
  36. #include <linux/mm.h>
  37. #include <asm/ptrace.h>
  38. #include <linux/devfs_fs_kernel.h>
  39. #include <asm/smp.h>
  40. #include <asm/sn/sn_cpuid.h>
  41. #include <asm/sn/sn1/bedrock.h>
  42. #include <asm/sn/intr.h>
  43. #include <asm/sn/addrs.h>
  44. /**
  45.  * snia_error_intr_handler - handle SN specific error interrupts
  46.  * @irq: error interrupt received
  47.  * @devid: device causing the interrupt
  48.  * @pt_regs: saved register state
  49.  *
  50.  * This routine is called when certain interrupts occur on SN systems.
  51.  * It will either recover from the situations that caused the interrupt
  52.  * or panic.
  53.  */
  54. void
  55. snia_error_intr_handler(int irq, void *devid, struct pt_regs *pt_regs)
  56. {
  57. unsigned long long intpend_val;
  58. unsigned long long bit;
  59. switch (irq) {
  60. case SGI_UART_IRQ:
  61. /*
  62.  * This isn't really an error interrupt.  We're just
  63.  * here because we have to do something with them.
  64.  * This is probably wrong, and this code will be
  65.  * removed.
  66.  */
  67. intpend_val = LOCAL_HUB_L(PI_INT_PEND0);
  68. if ( (bit = ~(1L<<GFX_INTR_A)) ==
  69. (intpend_val & ~(1L<<GFX_INTR_A)) ) {
  70. LOCAL_HUB_CLR_INTR(bit);
  71. return;
  72. }
  73. if ( (bit = ~(1L<<GFX_INTR_B)) ==
  74. (intpend_val & ~(1L<<GFX_INTR_B)) ) {
  75. LOCAL_HUB_CLR_INTR(bit);
  76. return;
  77. }
  78. if ( (bit = ~(1L<<PG_MIG_INTR)) ==
  79. (intpend_val & ~(1L<<PG_MIG_INTR)) ) {
  80. LOCAL_HUB_CLR_INTR(bit);
  81. return;
  82. }
  83. if ( (bit = ~(1L<<UART_INTR)) ==
  84. (intpend_val & ~(1L<<UART_INTR)) ) {
  85. LOCAL_HUB_CLR_INTR(bit);
  86. return;
  87. }
  88. if ( (bit = ~(1L<<CC_PEND_A)) ==
  89. (intpend_val & ~(1L<<CC_PEND_A)) ) {
  90. LOCAL_HUB_CLR_INTR(bit);
  91. return;
  92. }
  93. if ( (bit = ~(1L<<CC_PEND_B)) ==
  94. (intpend_val & ~(1L<<CC_PEND_B)) ) {
  95. LOCAL_HUB_CLR_INTR(bit);
  96. return;
  97. }
  98. printk("Received SGI_UART_IRQ (65), but no intpend0 bits were set???n");
  99. return;
  100. case SGI_HUB_ERROR_IRQ:
  101. /*
  102.  * These are mostly error interrupts of various
  103.  * sorts.  We need to do more than panic here, but
  104.  * what the heck, this is bring up.
  105.  */
  106. intpend_val = LOCAL_HUB_L(PI_INT_PEND1);
  107. if ( (bit = ~(1L<<XB_ERROR)) ==
  108. (intpend_val & ~(1L<<XB_ERROR)) ) {
  109. LOCAL_HUB_CLR_INTR(bit);
  110. panic("RECEIVED XB_ERROR on cpu %d, cnode %dn",
  111. smp_processor_id(), 
  112. cpuid_to_cnodeid(smp_processor_id()));
  113. }
  114. if ( (bit = ~(1L<<LB_ERROR)) ==
  115. (intpend_val & ~(1L<<LB_ERROR)) ) {
  116. LOCAL_HUB_CLR_INTR(bit);
  117. panic("RECEIVED LB_ERROR on cpu %d, cnode %dn",
  118. smp_processor_id(), 
  119. cpuid_to_cnodeid(smp_processor_id()));
  120. }
  121. if ( (bit = ~(1L<<NACK_INT_A)) ==
  122. (intpend_val & ~(1L<<NACK_INT_A)) ) {
  123. LOCAL_HUB_CLR_INTR(bit);
  124. panic("RECEIVED NACK_INT_A on cpu %d, cnode %dn",
  125. smp_processor_id(), 
  126. cpuid_to_cnodeid(smp_processor_id()));
  127. }
  128. if ( (bit = ~(1L<<NACK_INT_B)) ==
  129. (intpend_val & ~(1L<<NACK_INT_B)) ) {
  130. LOCAL_HUB_CLR_INTR(bit);
  131. panic("RECEIVED NACK_INT_B on cpu %d, cnode %dn",
  132. smp_processor_id(), 
  133. cpuid_to_cnodeid(smp_processor_id()));
  134. }
  135. if ( (bit = ~(1L<<CLK_ERR_INTR)) ==
  136. (intpend_val & ~(1L<<CLK_ERR_INTR)) ) {
  137. LOCAL_HUB_CLR_INTR(bit);
  138. panic("RECEIVED CLK_ERR_INTR on cpu %d, cnode %dn",
  139. smp_processor_id(), 
  140. cpuid_to_cnodeid(smp_processor_id()));
  141. }
  142. if ( (bit = ~(1L<<COR_ERR_INTR_A)) ==
  143. (intpend_val & ~(1L<<COR_ERR_INTR_A)) ) {
  144. LOCAL_HUB_CLR_INTR(bit);
  145. panic("RECEIVED COR_ERR_INTR_A on cpu %d, cnode %dn",
  146. smp_processor_id(), 
  147. cpuid_to_cnodeid(smp_processor_id()));
  148. }
  149. if ( (bit = ~(1L<<COR_ERR_INTR_B)) ==
  150. (intpend_val & ~(1L<<COR_ERR_INTR_B)) ) {
  151. LOCAL_HUB_CLR_INTR(bit);
  152. panic("RECEIVED COR_ERR_INTR_B on cpu %d, cnode %dn",
  153. smp_processor_id(), 
  154. cpuid_to_cnodeid(smp_processor_id()));
  155. }
  156. if ( (bit = ~(1L<<MD_COR_ERR_INTR)) ==
  157. (intpend_val & ~(1L<<MD_COR_ERR_INTR)) ) {
  158. LOCAL_HUB_CLR_INTR(bit);
  159. panic("RECEIVED MD_COR_ERR_INTR on cpu %d, cnode %dn",
  160. smp_processor_id(), 
  161. cpuid_to_cnodeid(smp_processor_id()));
  162. }
  163. if ( (bit = ~(1L<<NI_ERROR_INTR)) ==
  164. (intpend_val & ~(1L<<NI_ERROR_INTR)) ) {
  165. LOCAL_HUB_CLR_INTR(bit);
  166. panic("RECEIVED NI_ERROR_INTR on cpu %d, cnode %dn",
  167. smp_processor_id(), 
  168. cpuid_to_cnodeid(smp_processor_id()));
  169. }
  170. if ( (bit = ~(1L<<MSC_PANIC_INTR)) ==
  171. (intpend_val & ~(1L<<MSC_PANIC_INTR)) ) {
  172. LOCAL_HUB_CLR_INTR(bit);
  173. panic("RECEIVED MSC_PANIC_INTR on cpu %d, cnode %dn",
  174. smp_processor_id(), 
  175. cpuid_to_cnodeid(smp_processor_id()));
  176. }
  177. printk("Received SGI_XB_ERROR_IRQ (182) but no intpend1 bits are set???n");
  178. return;
  179. default:
  180. printk("Received invalid irq in snia_error_intr_handler()n");
  181. }
  182. }