]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/irq/pm.c
genirq / PM: better describe IRQF_NO_SUSPEND semantics
[mirror_ubuntu-artful-kernel.git] / kernel / irq / pm.c
CommitLineData
0a0c5168
RW
1/*
2 * linux/kernel/irq/pm.c
3 *
4 * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
5 *
6 * This file contains power management functions related to interrupts.
7 */
8
9#include <linux/irq.h>
10#include <linux/module.h>
11#include <linux/interrupt.h>
9ce7a258 12#include <linux/suspend.h>
9bab0b7f 13#include <linux/syscore_ops.h>
0a0c5168
RW
14
15#include "internals.h"
16
9ce7a258
TG
17bool irq_pm_check_wakeup(struct irq_desc *desc)
18{
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;
22 desc->depth++;
23 irq_disable(desc);
24 pm_system_wakeup();
25 return true;
26 }
27 return false;
28}
29
cab303be
TG
30/*
31 * Called from __setup_irq() with desc->lock held after @action has
32 * been installed in the action chain.
33 */
34void irq_pm_install_action(struct irq_desc *desc, struct irqaction *action)
35{
36 desc->nr_actions++;
37
38 if (action->flags & IRQF_FORCE_RESUME)
39 desc->force_resume_depth++;
40
41 WARN_ON_ONCE(desc->force_resume_depth &&
42 desc->force_resume_depth != desc->nr_actions);
43
44 if (action->flags & IRQF_NO_SUSPEND)
45 desc->no_suspend_depth++;
46
47 WARN_ON_ONCE(desc->no_suspend_depth &&
48 desc->no_suspend_depth != desc->nr_actions);
49}
50
51/*
52 * Called from __free_irq() with desc->lock held after @action has
53 * been removed from the action chain.
54 */
55void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action)
56{
57 desc->nr_actions--;
58
59 if (action->flags & IRQF_FORCE_RESUME)
60 desc->force_resume_depth--;
61
62 if (action->flags & IRQF_NO_SUSPEND)
63 desc->no_suspend_depth--;
64}
65
c4df606c 66static bool suspend_device_irq(struct irq_desc *desc, int irq)
8df2e02c 67{
5417de22 68 if (!desc->action || desc->no_suspend_depth)
c4df606c 69 return false;
8df2e02c 70
9ce7a258 71 if (irqd_is_wakeup_set(&desc->irq_data)) {
b76f1674 72 irqd_set(&desc->irq_data, IRQD_WAKEUP_ARMED);
9ce7a258
TG
73 /*
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().
78 */
79 return true;
80 }
b76f1674 81
8df2e02c
TG
82 desc->istate |= IRQS_SUSPENDED;
83 __disable_irq(desc, irq);
092fadd5
TG
84
85 /*
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.
90 */
91 if (irq_desc_get_chip(desc)->flags & IRQCHIP_MASK_ON_SUSPEND)
92 mask_irq(desc);
c4df606c 93 return true;
8df2e02c
TG
94}
95
0a0c5168
RW
96/**
97 * suspend_device_irqs - disable all currently enabled interrupt lines
98 *
8df2e02c
TG
99 * During system-wide suspend or hibernation device drivers need to be
100 * prevented from receiving interrupts and this function is provided
101 * for this purpose.
102 *
103 * So we disable all interrupts and mark them IRQS_SUSPENDED except
9ce7a258 104 * for those which are unused, those which are marked as not
8df2e02c 105 * suspendable via an interrupt request with the flag IRQF_NO_SUSPEND
9ce7a258
TG
106 * set and those which are marked as active wakeup sources.
107 *
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.
0a0c5168
RW
111 */
112void suspend_device_irqs(void)
113{
114 struct irq_desc *desc;
115 int irq;
116
117 for_each_irq_desc(irq, desc) {
118 unsigned long flags;
c4df606c 119 bool sync;
0a0c5168 120
239007b8 121 raw_spin_lock_irqsave(&desc->lock, flags);
c4df606c 122 sync = suspend_device_irq(desc, irq);
239007b8 123 raw_spin_unlock_irqrestore(&desc->lock, flags);
0a0c5168 124
c4df606c 125 if (sync)
0a0c5168 126 synchronize_irq(irq);
c4df606c 127 }
0a0c5168
RW
128}
129EXPORT_SYMBOL_GPL(suspend_device_irqs);
130
8df2e02c
TG
131static void resume_irq(struct irq_desc *desc, int irq)
132{
b76f1674
TG
133 irqd_clear(&desc->irq_data, IRQD_WAKEUP_ARMED);
134
8df2e02c
TG
135 if (desc->istate & IRQS_SUSPENDED)
136 goto resume;
137
5417de22
TG
138 /* Force resume the interrupt? */
139 if (!desc->force_resume_depth)
8df2e02c
TG
140 return;
141
142 /* Pretend that it got disabled ! */
143 desc->depth++;
144resume:
145 desc->istate &= ~IRQS_SUSPENDED;
146 __enable_irq(desc, irq);
147}
148
9bab0b7f 149static void resume_irqs(bool want_early)
0a0c5168
RW
150{
151 struct irq_desc *desc;
152 int irq;
153
154 for_each_irq_desc(irq, desc) {
155 unsigned long flags;
9bab0b7f
IC
156 bool is_early = desc->action &&
157 desc->action->flags & IRQF_EARLY_RESUME;
158
ac01810c 159 if (!is_early && want_early)
9bab0b7f 160 continue;
0a0c5168 161
239007b8 162 raw_spin_lock_irqsave(&desc->lock, flags);
8df2e02c 163 resume_irq(desc, irq);
239007b8 164 raw_spin_unlock_irqrestore(&desc->lock, flags);
0a0c5168
RW
165 }
166}
9bab0b7f
IC
167
168/**
169 * irq_pm_syscore_ops - enable interrupt lines early
170 *
171 * Enable all interrupt lines with %IRQF_EARLY_RESUME set.
172 */
173static void irq_pm_syscore_resume(void)
174{
175 resume_irqs(true);
176}
177
178static struct syscore_ops irq_pm_syscore_ops = {
179 .resume = irq_pm_syscore_resume,
180};
181
182static int __init irq_pm_init_ops(void)
183{
184 register_syscore_ops(&irq_pm_syscore_ops);
185 return 0;
186}
187
188device_initcall(irq_pm_init_ops);
189
190/**
191 * resume_device_irqs - enable interrupt lines disabled by suspend_device_irqs()
192 *
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.
196 */
197void resume_device_irqs(void)
198{
199 resume_irqs(false);
200}
0a0c5168 201EXPORT_SYMBOL_GPL(resume_device_irqs);