blob: 95414ad3506a919e21561d057e54ba27b8eb53c2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Thomas Gleixnera4633adc2006-06-29 02:24:48 -07002/*
Thomas Gleixnera4633adc2006-06-29 02:24:48 -07003 * 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
15#include <linux/irq.h>
16#include <linux/module.h>
17#include <linux/random.h>
18#include <linux/interrupt.h>
19
20#include "internals.h"
21
22#ifdef CONFIG_HARDIRQS_SW_RESEND
23
24/* Bitmap to handle software resend of interrupts: */
Thomas Gleixnerc1ee6262011-02-17 17:45:15 +010025static DECLARE_BITMAP(irqs_resend, IRQ_BITMAP_BITS);
Thomas Gleixnera4633adc2006-06-29 02:24:48 -070026
27/*
28 * Run software resends of IRQ's
29 */
30static void resend_irqs(unsigned long arg)
31{
32 struct irq_desc *desc;
33 int irq;
34
Yinghai Lu85c0f902008-08-19 20:49:47 -070035 while (!bitmap_empty(irqs_resend, nr_irqs)) {
36 irq = find_first_bit(irqs_resend, nr_irqs);
Thomas Gleixnera4633adc2006-06-29 02:24:48 -070037 clear_bit(irq, irqs_resend);
Yinghai Lu08678b02008-08-19 20:50:05 -070038 desc = irq_to_desc(irq);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070039 local_irq_disable();
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +020040 desc->handle_irq(desc);
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -070041 local_irq_enable();
Thomas Gleixnera4633adc2006-06-29 02:24:48 -070042 }
43}
44
45/* Tasklet to handle resend: */
46static DECLARE_TASKLET(resend_tasklet, resend_irqs, 0);
47
48#endif
49
50/*
51 * IRQ resend
52 *
53 * Is called with interrupts disabled and desc->lock held.
54 */
Jiang Liu0798abe2015-06-04 12:13:27 +080055void check_irq_resend(struct irq_desc *desc)
Thomas Gleixnera4633adc2006-06-29 02:24:48 -070056{
Thomas Gleixnera4633adc2006-06-29 02:24:48 -070057 /*
Thomas Gleixner24642862007-08-12 15:46:35 +000058 * We do not resend level type interrupts. Level type
59 * interrupts are resent by hardware when they are still
Thomas Gleixnerd4dc0f92012-04-25 12:54:54 +020060 * active. Clear the pending bit so suspend/resume does not
61 * get confused.
Thomas Gleixner24642862007-08-12 15:46:35 +000062 */
Thomas Gleixnerd4dc0f92012-04-25 12:54:54 +020063 if (irq_settings_is_level(desc)) {
64 desc->istate &= ~IRQS_PENDING;
Thomas Gleixner87923472011-02-03 12:27:44 +010065 return;
Thomas Gleixnerd4dc0f92012-04-25 12:54:54 +020066 }
Thomas Gleixner163ef302011-02-08 11:39:15 +010067 if (desc->istate & IRQS_REPLAY)
68 return;
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +010069 if (desc->istate & IRQS_PENDING) {
Thomas Gleixner2a0d6fb2011-02-08 12:17:57 +010070 desc->istate &= ~IRQS_PENDING;
Thomas Gleixner163ef302011-02-08 11:39:15 +010071 desc->istate |= IRQS_REPLAY;
Thomas Gleixnera4633adc2006-06-29 02:24:48 -070072
Thomas Gleixner21e2b8c2010-09-27 12:45:53 +000073 if (!desc->irq_data.chip->irq_retrigger ||
74 !desc->irq_data.chip->irq_retrigger(&desc->irq_data)) {
Thomas Gleixnera4633adc2006-06-29 02:24:48 -070075#ifdef CONFIG_HARDIRQS_SW_RESEND
Jiang Liu0798abe2015-06-04 12:13:27 +080076 unsigned int irq = irq_desc_get_irq(desc);
77
Thomas Gleixner293a7a02012-10-16 15:07:49 -070078 /*
Thomas Gleixner75a06182015-07-16 14:10:17 +020079 * If the interrupt is running in the thread
80 * context of the parent irq we need to be
81 * careful, because we cannot trigger it
82 * directly.
Thomas Gleixner293a7a02012-10-16 15:07:49 -070083 */
Thomas Gleixner75a06182015-07-16 14:10:17 +020084 if (irq_settings_is_nested_thread(desc)) {
85 /*
86 * If the parent_irq is valid, we
87 * retrigger the parent, otherwise we
88 * do nothing.
89 */
90 if (!desc->parent_irq)
91 return;
Thomas Gleixner293a7a02012-10-16 15:07:49 -070092 irq = desc->parent_irq;
Thomas Gleixner75a06182015-07-16 14:10:17 +020093 }
Thomas Gleixnera4633adc2006-06-29 02:24:48 -070094 /* Set it pending and activate the softirq: */
95 set_bit(irq, irqs_resend);
96 tasklet_schedule(&resend_tasklet);
97#endif
98 }
99 }
100}