1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
5 * This file contains power management functions related to interrupts.
9 #include <linux/module.h>
10 #include <linux/interrupt.h>
11 #include <linux/suspend.h>
12 #include <linux/syscore_ops.h>
14 #include "internals.h"
16 bool irq_pm_check_wakeup(struct irq_desc *desc)
18 if (irqd_is_wakeup_armed(&desc->irq_data)) {
19 irqd_clear(&desc->irq_data, IRQD_WAKEUP_ARMED);
20 desc->istate |= IRQS_SUSPENDED | IRQS_PENDING;
23 pm_system_irq_wakeup(irq_desc_get_irq(desc));
30 * Called from __setup_irq() with desc->lock held after @action has
31 * been installed in the action chain.
33 void irq_pm_install_action(struct irq_desc *desc, struct irqaction *action)
37 if (action->flags & IRQF_FORCE_RESUME)
38 desc->force_resume_depth++;
40 WARN_ON_ONCE(desc->force_resume_depth &&
41 desc->force_resume_depth != desc->nr_actions);
43 if (action->flags & IRQF_NO_SUSPEND)
44 desc->no_suspend_depth++;
45 else if (action->flags & IRQF_COND_SUSPEND)
46 desc->cond_suspend_depth++;
48 WARN_ON_ONCE(desc->no_suspend_depth &&
49 (desc->no_suspend_depth +
50 desc->cond_suspend_depth) != desc->nr_actions);
54 * Called from __free_irq() with desc->lock held after @action has
55 * been removed from the action chain.
57 void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action)
61 if (action->flags & IRQF_FORCE_RESUME)
62 desc->force_resume_depth--;
64 if (action->flags & IRQF_NO_SUSPEND)
65 desc->no_suspend_depth--;
66 else if (action->flags & IRQF_COND_SUSPEND)
67 desc->cond_suspend_depth--;
70 static bool suspend_device_irq(struct irq_desc *desc)
72 unsigned long chipflags = irq_desc_get_chip(desc)->flags;
73 struct irq_data *irqd = &desc->irq_data;
75 if (!desc->action || irq_desc_is_chained(desc) ||
76 desc->no_suspend_depth)
79 if (irqd_is_wakeup_set(irqd)) {
80 irqd_set(irqd, IRQD_WAKEUP_ARMED);
82 if ((chipflags & IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND) &&
83 irqd_irq_disabled(irqd)) {
85 * Interrupt marked for wakeup is in disabled state.
86 * Enable interrupt here to unmask/enable in irqchip
87 * to be able to resume with such interrupts.
90 irqd_set(irqd, IRQD_IRQ_ENABLED_ON_SUSPEND);
93 * We return true here to force the caller to issue
94 * synchronize_irq(). We need to make sure that the
95 * IRQD_WAKEUP_ARMED is visible before we return from
96 * suspend_device_irqs().
101 desc->istate |= IRQS_SUSPENDED;
105 * Hardware which has no wakeup source configuration facility
106 * requires that the non wakeup interrupts are masked at the
107 * chip level. The chip implementation indicates that with
108 * IRQCHIP_MASK_ON_SUSPEND.
110 if (chipflags & IRQCHIP_MASK_ON_SUSPEND)
116 * suspend_device_irqs - disable all currently enabled interrupt lines
118 * During system-wide suspend or hibernation device drivers need to be
119 * prevented from receiving interrupts and this function is provided
122 * So we disable all interrupts and mark them IRQS_SUSPENDED except
123 * for those which are unused, those which are marked as not
124 * suspendable via an interrupt request with the flag IRQF_NO_SUSPEND
125 * set and those which are marked as active wakeup sources.
127 * The active wakeup sources are handled by the flow handler entry
128 * code which checks for the IRQD_WAKEUP_ARMED flag, suspends the
129 * interrupt and notifies the pm core about the wakeup.
131 void suspend_device_irqs(void)
133 struct irq_desc *desc;
136 for_each_irq_desc(irq, desc) {
140 if (irq_settings_is_nested_thread(desc))
142 raw_spin_lock_irqsave(&desc->lock, flags);
143 sync = suspend_device_irq(desc);
144 raw_spin_unlock_irqrestore(&desc->lock, flags);
147 synchronize_irq(irq);
151 static void resume_irq(struct irq_desc *desc)
153 struct irq_data *irqd = &desc->irq_data;
155 irqd_clear(irqd, IRQD_WAKEUP_ARMED);
157 if (irqd_is_enabled_on_suspend(irqd)) {
159 * Interrupt marked for wakeup was enabled during suspend
160 * entry. Disable such interrupts to restore them back to
164 irqd_clear(irqd, IRQD_IRQ_ENABLED_ON_SUSPEND);
167 if (desc->istate & IRQS_SUSPENDED)
170 /* Force resume the interrupt? */
171 if (!desc->force_resume_depth)
174 /* Pretend that it got disabled ! */
176 irq_state_set_disabled(desc);
177 irq_state_set_masked(desc);
179 desc->istate &= ~IRQS_SUSPENDED;
183 static void resume_irqs(bool want_early)
185 struct irq_desc *desc;
188 for_each_irq_desc(irq, desc) {
190 bool is_early = desc->action &&
191 desc->action->flags & IRQF_EARLY_RESUME;
193 if (!is_early && want_early)
195 if (irq_settings_is_nested_thread(desc))
198 raw_spin_lock_irqsave(&desc->lock, flags);
200 raw_spin_unlock_irqrestore(&desc->lock, flags);
205 * rearm_wake_irq - rearm a wakeup interrupt line after signaling wakeup
206 * @irq: Interrupt to rearm
208 void rearm_wake_irq(unsigned int irq)
211 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
216 if (!(desc->istate & IRQS_SUSPENDED) ||
217 !irqd_is_wakeup_set(&desc->irq_data))
220 desc->istate &= ~IRQS_SUSPENDED;
221 irqd_set(&desc->irq_data, IRQD_WAKEUP_ARMED);
225 irq_put_desc_busunlock(desc, flags);
229 * irq_pm_syscore_resume - enable interrupt lines early
231 * Enable all interrupt lines with %IRQF_EARLY_RESUME set.
233 static void irq_pm_syscore_resume(void)
238 static struct syscore_ops irq_pm_syscore_ops = {
239 .resume = irq_pm_syscore_resume,
242 static int __init irq_pm_init_ops(void)
244 register_syscore_ops(&irq_pm_syscore_ops);
248 device_initcall(irq_pm_init_ops);
251 * resume_device_irqs - enable interrupt lines disabled by suspend_device_irqs()
253 * Enable all non-%IRQF_EARLY_RESUME interrupt lines previously
254 * disabled by suspend_device_irqs() that have the IRQS_SUSPENDED flag
255 * set as well as those with %IRQF_FORCE_RESUME.
257 void resume_device_irqs(void)