2 * linux/kernel/irq/pm.c
6 * This file contains power management functions related to interrupts.
10 #include <linux/module.h>
11 #include <linux/interrupt.h>
12 #include <linux/suspend.h>
13 #include <linux/syscore_ops.h>
15 #include "internals.h"
17 bool irq_pm_check_wakeup(struct irq_desc *desc)
19 if (irqd_is_wakeup_armed(&desc->irq_data)) {
20 irqd_clear(&desc->irq_data, IRQD_WAKEUP_ARMED);
21 desc->istate |= IRQS_SUSPENDED | IRQS_PENDING;
31 * Called from __setup_irq() with desc->lock held after @action has
32 * been installed in the action chain.
34 void irq_pm_install_action(struct irq_desc *desc, struct irqaction *action)
38 if (action->flags & IRQF_FORCE_RESUME)
39 desc->force_resume_depth++;
41 WARN_ON_ONCE(desc->force_resume_depth &&
42 desc->force_resume_depth != desc->nr_actions);
44 if (action->flags & IRQF_NO_SUSPEND)
45 desc->no_suspend_depth++;
47 WARN_ON_ONCE(desc->no_suspend_depth &&
48 desc->no_suspend_depth != desc->nr_actions);
52 * Called from __free_irq() with desc->lock held after @action has
53 * been removed from the action chain.
55 void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action)
59 if (action->flags & IRQF_FORCE_RESUME)
60 desc->force_resume_depth--;
62 if (action->flags & IRQF_NO_SUSPEND)
63 desc->no_suspend_depth--;
66 static bool suspend_device_irq(struct irq_desc *desc, int irq)
68 if (!desc->action || desc->no_suspend_depth)
71 if (irqd_is_wakeup_set(&desc->irq_data)) {
72 irqd_set(&desc->irq_data, IRQD_WAKEUP_ARMED);
74 * We return true here to force the caller to issue
75 * synchronize_irq(). We need to make sure that the
76 * IRQD_WAKEUP_ARMED is visible before we return from
77 * suspend_device_irqs().
82 desc->istate |= IRQS_SUSPENDED;
83 __disable_irq(desc, irq);
86 * Hardware which has no wakeup source configuration facility
87 * requires that the non wakeup interrupts are masked at the
88 * chip level. The chip implementation indicates that with
89 * IRQCHIP_MASK_ON_SUSPEND.
91 if (irq_desc_get_chip(desc)->flags & IRQCHIP_MASK_ON_SUSPEND)
97 * suspend_device_irqs - disable all currently enabled interrupt lines
99 * During system-wide suspend or hibernation device drivers need to be
100 * prevented from receiving interrupts and this function is provided
103 * So we disable all interrupts and mark them IRQS_SUSPENDED except
104 * for those which are unused, those which are marked as not
105 * suspendable via an interrupt request with the flag IRQF_NO_SUSPEND
106 * set and those which are marked as active wakeup sources.
108 * The active wakeup sources are handled by the flow handler entry
109 * code which checks for the IRQD_WAKEUP_ARMED flag, suspends the
110 * interrupt and notifies the pm core about the wakeup.
112 void suspend_device_irqs(void)
114 struct irq_desc *desc;
117 for_each_irq_desc(irq, desc) {
121 raw_spin_lock_irqsave(&desc->lock, flags);
122 sync = suspend_device_irq(desc, irq);
123 raw_spin_unlock_irqrestore(&desc->lock, flags);
126 synchronize_irq(irq);
129 EXPORT_SYMBOL_GPL(suspend_device_irqs);
131 static void resume_irq(struct irq_desc *desc, int irq)
133 irqd_clear(&desc->irq_data, IRQD_WAKEUP_ARMED);
135 if (desc->istate & IRQS_SUSPENDED)
138 /* Force resume the interrupt? */
139 if (!desc->force_resume_depth)
142 /* Pretend that it got disabled ! */
145 desc->istate &= ~IRQS_SUSPENDED;
146 __enable_irq(desc, irq);
149 static void resume_irqs(bool want_early)
151 struct irq_desc *desc;
154 for_each_irq_desc(irq, desc) {
156 bool is_early = desc->action &&
157 desc->action->flags & IRQF_EARLY_RESUME;
159 if (!is_early && want_early)
162 raw_spin_lock_irqsave(&desc->lock, flags);
163 resume_irq(desc, irq);
164 raw_spin_unlock_irqrestore(&desc->lock, flags);
169 * irq_pm_syscore_ops - enable interrupt lines early
171 * Enable all interrupt lines with %IRQF_EARLY_RESUME set.
173 static void irq_pm_syscore_resume(void)
178 static struct syscore_ops irq_pm_syscore_ops = {
179 .resume = irq_pm_syscore_resume,
182 static int __init irq_pm_init_ops(void)
184 register_syscore_ops(&irq_pm_syscore_ops);
188 device_initcall(irq_pm_init_ops);
191 * resume_device_irqs - enable interrupt lines disabled by suspend_device_irqs()
193 * Enable all non-%IRQF_EARLY_RESUME interrupt lines previously
194 * disabled by suspend_device_irqs() that have the IRQS_SUSPENDED flag
195 * set as well as those with %IRQF_FORCE_RESUME.
197 void resume_device_irqs(void)
201 EXPORT_SYMBOL_GPL(resume_device_irqs);