eeh_event.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * eeh_event.c
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. * Copyright (c) 2005 Linas Vepstas <linas@linas.org>
  19. */
  20. #include <linux/delay.h>
  21. #include <linux/list.h>
  22. #include <linux/mutex.h>
  23. #include <linux/pci.h>
  24. #include <linux/slab.h>
  25. #include <linux/workqueue.h>
  26. #include <asm/eeh_event.h>
  27. #include <asm/ppc-pci.h>
  28. /** Overview:
  29. * EEH error states may be detected within exception handlers;
  30. * however, the recovery processing needs to occur asynchronously
  31. * in a normal kernel context and not an interrupt context.
  32. * This pair of routines creates an event and queues it onto a
  33. * work-queue, where a worker thread can drive recovery.
  34. */
  35. /* EEH event workqueue setup. */
  36. static DEFINE_SPINLOCK(eeh_eventlist_lock);
  37. LIST_HEAD(eeh_eventlist);
  38. static void eeh_thread_launcher(struct work_struct *);
  39. DECLARE_WORK(eeh_event_wq, eeh_thread_launcher);
  40. /* Serialize reset sequences for a given pci device */
  41. DEFINE_MUTEX(eeh_event_mutex);
  42. /**
  43. * eeh_event_handler - dispatch EEH events.
  44. * @dummy - unused
  45. *
  46. * The detection of a frozen slot can occur inside an interrupt,
  47. * where it can be hard to do anything about it. The goal of this
  48. * routine is to pull these detection events out of the context
  49. * of the interrupt handler, and re-dispatch them for processing
  50. * at a later time in a normal context.
  51. */
  52. static int eeh_event_handler(void * dummy)
  53. {
  54. unsigned long flags;
  55. struct eeh_event *event;
  56. struct pci_dn *pdn;
  57. daemonize ("eehd");
  58. set_current_state(TASK_INTERRUPTIBLE);
  59. spin_lock_irqsave(&eeh_eventlist_lock, flags);
  60. event = NULL;
  61. /* Unqueue the event, get ready to process. */
  62. if (!list_empty(&eeh_eventlist)) {
  63. event = list_entry(eeh_eventlist.next, struct eeh_event, list);
  64. list_del(&event->list);
  65. }
  66. spin_unlock_irqrestore(&eeh_eventlist_lock, flags);
  67. if (event == NULL)
  68. return 0;
  69. /* Serialize processing of EEH events */
  70. mutex_lock(&eeh_event_mutex);
  71. eeh_mark_slot(event->dn, EEH_MODE_RECOVERING);
  72. printk(KERN_INFO "EEH: Detected PCI bus error on device %s\n",
  73. eeh_pci_name(event->dev));
  74. pdn = handle_eeh_events(event);
  75. eeh_clear_slot(event->dn, EEH_MODE_RECOVERING);
  76. pci_dev_put(event->dev);
  77. kfree(event);
  78. mutex_unlock(&eeh_event_mutex);
  79. /* If there are no new errors after an hour, clear the counter. */
  80. if (pdn && pdn->eeh_freeze_count>0) {
  81. msleep_interruptible (3600*1000);
  82. if (pdn->eeh_freeze_count>0)
  83. pdn->eeh_freeze_count--;
  84. }
  85. return 0;
  86. }
  87. /**
  88. * eeh_thread_launcher
  89. * @dummy - unused
  90. */
  91. static void eeh_thread_launcher(struct work_struct *dummy)
  92. {
  93. if (kernel_thread(eeh_event_handler, NULL, CLONE_KERNEL) < 0)
  94. printk(KERN_ERR "Failed to start EEH daemon\n");
  95. }
  96. /**
  97. * eeh_send_failure_event - generate a PCI error event
  98. * @dev pci device
  99. *
  100. * This routine can be called within an interrupt context;
  101. * the actual event will be delivered in a normal context
  102. * (from a workqueue).
  103. */
  104. int eeh_send_failure_event (struct device_node *dn,
  105. struct pci_dev *dev)
  106. {
  107. unsigned long flags;
  108. struct eeh_event *event;
  109. const char *location;
  110. if (!mem_init_done) {
  111. printk(KERN_ERR "EEH: event during early boot not handled\n");
  112. location = of_get_property(dn, "ibm,loc-code", NULL);
  113. printk(KERN_ERR "EEH: device node = %s\n", dn->full_name);
  114. printk(KERN_ERR "EEH: PCI location = %s\n", location);
  115. return 1;
  116. }
  117. event = kmalloc(sizeof(*event), GFP_ATOMIC);
  118. if (event == NULL) {
  119. printk (KERN_ERR "EEH: out of memory, event not handled\n");
  120. return 1;
  121. }
  122. if (dev)
  123. pci_dev_get(dev);
  124. event->dn = dn;
  125. event->dev = dev;
  126. /* We may or may not be called in an interrupt context */
  127. spin_lock_irqsave(&eeh_eventlist_lock, flags);
  128. list_add(&event->list, &eeh_eventlist);
  129. spin_unlock_irqrestore(&eeh_eventlist_lock, flags);
  130. schedule_work(&eeh_event_wq);
  131. return 0;
  132. }
  133. /********************** END OF FILE ******************************/