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

Linux/Unix编程

开发平台:

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_NMI_H
  9. #define __ASM_SN_NMI_H
  10. #ident "$Revision: 1.2.4.2 $"
  11. #include <asm/sn/addrs.h>
  12. /*
  13.  * The launch data structure resides at a fixed place in each node's memory
  14.  * and is used to communicate between the master processor and the slave
  15.  * processors.
  16.  *
  17.  * The master stores launch parameters in the launch structure
  18.  * corresponding to a target processor that is in a slave loop, then sends
  19.  * an interrupt to the slave processor.  The slave calls the desired
  20.  * function, followed by an optional rendezvous function, then returns to
  21.  * the slave loop.  The master does not wait for the slaves before
  22.  * returning.
  23.  *
  24.  * There is an array of launch structures, one per CPU on the node.  One
  25.  * interrupt level is used per CPU.
  26.  */
  27. #define NMI_MAGIC 0x48414d4d455201
  28. #define NMI_SIZEOF 0x40
  29. #define NMI_OFF_MAGIC 0x00 /* Struct offsets for assembly      */
  30. #define NMI_OFF_FLAGS 0x08
  31. #define NMI_OFF_CALL 0x10
  32. #define NMI_OFF_CALLC 0x18
  33. #define NMI_OFF_CALLPARM 0x20
  34. #define NMI_OFF_GMASTER 0x28
  35. /*
  36.  * The NMI routine is called only if the complement address is
  37.  * correct.
  38.  *
  39.  * Before control is transferred to a routine, the compliment address
  40.  * is zeroed (invalidated) to prevent an accidental call from a spurious
  41.  * interrupt.
  42.  *
  43.  */
  44. #ifndef __ASSEMBLY__
  45. typedef struct nmi_s {
  46. volatile unsigned long  magic; /* Magic number */
  47. volatile unsigned long  flags; /* Combination of flags above */
  48. volatile void *call_addr; /* Routine for slave to call        */
  49. volatile void *call_addr_c; /* 1's complement of address        */
  50. volatile void *call_parm; /* Single parm passed to call     */
  51. volatile unsigned long  gmaster; /* Flag true only on global master*/
  52. } nmi_t;
  53. #endif /* !__ASSEMBLY__ */
  54. /* Following definitions are needed both in the prom & the kernel
  55.  * to identify the format of the nmi cpu register save area in the
  56.  * low memory on each node.
  57.  */
  58. #ifndef __ASSEMBLY__
  59. struct reg_struct {
  60. unsigned long gpr[32];
  61. unsigned long sr;
  62. unsigned long cause;
  63. unsigned long epc;
  64. unsigned long badva;
  65. unsigned long error_epc;
  66. unsigned long cache_err;
  67. unsigned long nmi_sr;
  68. };
  69. #endif /* !__ASSEMBLY__ */
  70. /* These are the assembly language offsets into the reg_struct structure */
  71. #define R0_OFF 0x0
  72. #define R1_OFF 0x8
  73. #define R2_OFF 0x10
  74. #define R3_OFF 0x18
  75. #define R4_OFF 0x20
  76. #define R5_OFF 0x28
  77. #define R6_OFF 0x30
  78. #define R7_OFF 0x38
  79. #define R8_OFF 0x40
  80. #define R9_OFF 0x48
  81. #define R10_OFF 0x50
  82. #define R11_OFF 0x58
  83. #define R12_OFF 0x60
  84. #define R13_OFF 0x68
  85. #define R14_OFF 0x70
  86. #define R15_OFF 0x78
  87. #define R16_OFF 0x80
  88. #define R17_OFF 0x88
  89. #define R18_OFF 0x90
  90. #define R19_OFF 0x98
  91. #define R20_OFF 0xa0
  92. #define R21_OFF 0xa8
  93. #define R22_OFF 0xb0
  94. #define R23_OFF 0xb8
  95. #define R24_OFF 0xc0
  96. #define R25_OFF 0xc8
  97. #define R26_OFF 0xd0
  98. #define R27_OFF 0xd8
  99. #define R28_OFF 0xe0
  100. #define R29_OFF 0xe8
  101. #define R30_OFF 0xf0
  102. #define R31_OFF 0xf8
  103. #define SR_OFF 0x100
  104. #define CAUSE_OFF 0x108
  105. #define EPC_OFF 0x110
  106. #define BADVA_OFF 0x118
  107. #define ERROR_EPC_OFF 0x120
  108. #define CACHE_ERR_OFF 0x128
  109. #define NMISR_OFF 0x130
  110. #endif /* __ASM_SN_NMI_H */