* IRQD_IRQ_DISABLED - Disabled state of the interrupt
* IRQD_IRQ_MASKED - Masked state of the interrupt
* IRQD_IRQ_INPROGRESS - In progress state of the interrupt
+ * IRQD_WAKEUP_ARMED - Wakeup mode armed
*/
enum {
IRQD_TRIGGER_MASK = 0xf,
IRQD_IRQ_DISABLED = (1 << 16),
IRQD_IRQ_MASKED = (1 << 17),
IRQD_IRQ_INPROGRESS = (1 << 18),
+ IRQD_WAKEUP_ARMED = (1 << 19),
};
static inline bool irqd_is_setaffinity_pending(struct irq_data *d)
return d->state_use_accessors & IRQD_IRQ_INPROGRESS;
}
+static inline bool irqd_is_wakeup_armed(struct irq_data *d)
+{
+ return d->state_use_accessors & IRQD_WAKEUP_ARMED;
+}
+
+
/*
* Functions for chained handlers which can be enabled/disabled by the
* standard disable_irq/enable_irq calls. Must be called with
if (!desc->action || desc->no_suspend_depth)
return false;
+ if (irqd_is_wakeup_set(&desc->irq_data))
+ irqd_set(&desc->irq_data, IRQD_WAKEUP_ARMED);
+
desc->istate |= IRQS_SUSPENDED;
__disable_irq(desc, irq);
static void resume_irq(struct irq_desc *desc, int irq)
{
+ irqd_clear(&desc->irq_data, IRQD_WAKEUP_ARMED);
+
if (desc->istate & IRQS_SUSPENDED)
goto resume;