resend.c 2.4 KB

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