ip27-nmi.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/kernel.h>
  2. #include <linux/mmzone.h>
  3. #include <linux/spinlock.h>
  4. #include <linux/smp.h>
  5. #include <asm/atomic.h>
  6. #include <asm/sn/types.h>
  7. #include <asm/sn/addrs.h>
  8. #include <asm/sn/nmi.h>
  9. #include <asm/sn/arch.h>
  10. #include <asm/sn/sn0/hub.h>
  11. #if 0
  12. #define NODE_NUM_CPUS(n) CNODE_NUM_CPUS(n)
  13. #else
  14. #define NODE_NUM_CPUS(n) CPUS_PER_NODE
  15. #endif
  16. #define CNODEID_NONE (cnodeid_t)-1
  17. #define enter_panic_mode() spin_lock(&nmi_lock)
  18. typedef unsigned long machreg_t;
  19. spinlock_t nmi_lock = SPIN_LOCK_UNLOCKED;
  20. /*
  21.  * Lets see what else we need to do here. Set up sp, gp?
  22.  */
  23. void nmi_dump(void)
  24. {
  25. void cont_nmi_dump(void);
  26. cont_nmi_dump();
  27. }
  28. void install_cpu_nmi_handler(int slice)
  29. {
  30. nmi_t *nmi_addr;
  31. nmi_addr = (nmi_t *)NMI_ADDR(get_nasid(), slice);
  32. if (nmi_addr->call_addr)
  33. return;
  34. nmi_addr->magic = NMI_MAGIC;
  35. nmi_addr->call_addr = (void *)nmi_dump;
  36. nmi_addr->call_addr_c =
  37. (void *)(~((unsigned long)(nmi_addr->call_addr)));
  38. nmi_addr->call_parm = 0;
  39. }
  40. /*
  41.  * Copy the cpu registers which have been saved in the IP27prom format
  42.  * into the eframe format for the node under consideration.
  43.  */
  44. void
  45. nmi_cpu_eframe_save(nasid_t nasid,
  46.     int     slice)
  47. {
  48. int  i, numberof_nmi_cpu_regs;
  49. machreg_t *prom_format;
  50. /* Get the total number of registers being saved by the prom */
  51. numberof_nmi_cpu_regs = sizeof(struct reg_struct) / sizeof(machreg_t);
  52. /* Get the pointer to the current cpu's register set. */
  53. prom_format = 
  54.     (machreg_t *)(TO_UNCAC(TO_NODE(nasid, IP27_NMI_KREGS_OFFSET)) +
  55.   slice * IP27_NMI_KREGS_CPU_SIZE);
  56. printk("NMI nasid %d: slice %dn", nasid, slice);
  57. for (i = 0; i < numberof_nmi_cpu_regs; i++)
  58. printk("0x%lx  ", prom_format[i]);
  59. printk("nn");
  60. }
  61. /*
  62.  * Copy the cpu registers which have been saved in the IP27prom format
  63.  * into the eframe format for the node under consideration.
  64.  */
  65. void
  66. nmi_node_eframe_save(cnodeid_t  cnode)
  67. {
  68. int cpu;
  69. nasid_t nasid;
  70. /* Make sure that we have a valid node */
  71. if (cnode == CNODEID_NONE)
  72. return;
  73. nasid = COMPACT_TO_NASID_NODEID(cnode);
  74. if (nasid == INVALID_NASID)
  75. return;
  76. /* Save the registers into eframe for each cpu */
  77. for(cpu = 0; cpu < NODE_NUM_CPUS(cnode); cpu++) 
  78. nmi_cpu_eframe_save(nasid, cpu);
  79. }
  80. /*
  81.  * Save the nmi cpu registers for all cpus in the system.
  82.  */
  83. void
  84. nmi_eframes_save(void)
  85. {
  86. cnodeid_t cnode;
  87. for(cnode = 0 ; cnode < numnodes; cnode++) 
  88. nmi_node_eframe_save(cnode);
  89. }
  90. void
  91. cont_nmi_dump(void)
  92. {
  93. #ifndef REAL_NMI_SIGNAL
  94. static atomic_t nmied_cpus = ATOMIC_INIT(0);
  95. atomic_inc(&nmied_cpus);
  96. #endif
  97. /* 
  98.  * Use enter_panic_mode to allow only 1 cpu to proceed
  99.  */
  100. enter_panic_mode();
  101. #ifdef REAL_NMI_SIGNAL
  102. /*
  103.  * Wait up to 15 seconds for the other cpus to respond to the NMI.
  104.  * If a cpu has not responded after 10 sec, send it 1 additional NMI.
  105.  * This is for 2 reasons:
  106.  * - sometimes a MMSC fail to NMI all cpus.
  107.  * - on 512p SN0 system, the MMSC will only send NMIs to
  108.  *   half the cpus. Unfortunately, we dont know which cpus may be
  109.  *   NMIed - it depends on how the site chooses to configure.
  110.  * 
  111.  * Note: it has been measure that it takes the MMSC up to 2.3 secs to
  112.  * send NMIs to all cpus on a 256p system.
  113.  */
  114. for (i=0; i < 1500; i++) {
  115. for (node=0; node < numnodes; node++)
  116. if (NODEPDA(node)->dump_count == 0)
  117. break;
  118. if (node == numnodes)
  119. break;
  120. if (i == 1000) {
  121. for (node=0; node < numnodes; node++)
  122. if (NODEPDA(node)->dump_count == 0) {
  123. cpu = CNODE_TO_CPU_BASE(node);
  124. for (n=0; n < CNODE_NUM_CPUS(node); cpu++, n++) {
  125. CPUMASK_SETB(nmied_cpus, cpu);
  126. /* 
  127.  * cputonasid, cputoslice
  128.  * needs kernel cpuid
  129.  */
  130. SEND_NMI((cputonasid(cpu)), (cputoslice(cpu)));
  131. }
  132. }
  133. }
  134. udelay(10000);
  135. }
  136. #else
  137. while (atomic_read(&nmied_cpus) != smp_num_cpus);
  138. #endif
  139. /*
  140.  * Save the nmi cpu registers for all cpu in the eframe format.
  141.  */
  142. nmi_eframes_save();
  143. LOCAL_HUB_S(NI_PORT_RESET, NPR_PORTRESET | NPR_LOCALRESET);
  144. }