resend.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * linux/kernel/irq/resend.c
  3. *
  4. * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
  5. * Copyright (C) 2005-2006, Thomas Gleixner
  6. *
  7. * This file contains the IRQ-resend code
  8. *
  9. * If the interrupt is waiting to be processed, we try to re-run it.
  10. * We can't directly run it from here since the caller might be in an
  11. * interrupt-protected region. Not all irq controller chips can
  12. * retrigger interrupts at the hardware level, so in those cases
  13. * we allow the resending of IRQs via a tasklet.
  14. */
  15. #include <linux/irq.h>
  16. #include <linux/module.h>
  17. #include <linux/random.h>
  18. #include <linux/interrupt.h>
  19. #include "internals.h"
  20. #ifdef CONFIG_HARDIRQS_SW_RESEND
  21. /* Bitmap to handle software resend of interrupts: */
  22. static DECLARE_BITMAP(irqs_resend, IRQ_BITMAP_BITS);
  23. /*
  24. * Run software resends of IRQ's
  25. */
  26. static void resend_irqs(unsigned long arg)
  27. {
  28. struct irq_desc *desc;
  29. int irq;
  30. while (!bitmap_empty(irqs_resend, nr_irqs)) {
  31. irq = find_first_bit(irqs_resend, nr_irqs);
  32. clear_bit(irq, irqs_resend);
  33. desc = irq_to_desc(irq);
  34. local_irq_disable();
  35. desc->handle_irq(irq, desc);
  36. local_irq_enable();
  37. }
  38. }
  39. /* Tasklet to handle resend: */
  40. static DECLARE_TASKLET(resend_tasklet, resend_irqs, 0);
  41. #endif
  42. /*
  43. * IRQ resend
  44. *
  45. * Is called with interrupts disabled and desc->lock held.
  46. */
  47. void check_irq_resend(struct irq_desc *desc, unsigned int irq)
  48. {
  49. /*
  50. * We do not resend level type interrupts. Level type
  51. * interrupts are resent by hardware when they are still
  52. * active. Clear the pending bit so suspend/resume does not
  53. * get confused.
  54. */
  55. if (irq_settings_is_level(desc)) {
  56. desc->istate &= ~IRQS_PENDING;
  57. return;
  58. }
  59. if (desc->istate & IRQS_REPLAY)
  60. return;
  61. if (desc->istate & IRQS_PENDING) {
  62. desc->istate &= ~IRQS_PENDING;
  63. desc->istate |= IRQS_REPLAY;
  64. if (!desc->irq_data.chip->irq_retrigger ||
  65. !desc->irq_data.chip->irq_retrigger(&desc->irq_data)) {
  66. #ifdef CONFIG_HARDIRQS_SW_RESEND
  67. /*
  68. * If the interrupt has a parent irq and runs
  69. * in the thread context of the parent irq,
  70. * retrigger the parent.
  71. */
  72. if (desc->parent_irq &&
  73. irq_settings_is_nested_thread(desc))
  74. irq = desc->parent_irq;
  75. /* Set it pending and activate the softirq: */
  76. set_bit(irq, irqs_resend);
  77. tasklet_schedule(&resend_tasklet);
  78. #endif
  79. }
  80. }
  81. }