2 * linux/kernel/irq/pm.c
4 * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
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
;
24 pm_system_irq_wakeup(irq_desc_get_irq(desc
));
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
++;
46 else if (action
->flags
& IRQF_COND_SUSPEND
)
47 desc
->cond_suspend_depth
++;
49 WARN_ON_ONCE(desc
->no_suspend_depth
&&
50 (desc
->no_suspend_depth
+
51 desc
->cond_suspend_depth
) != desc
->nr_actions
);
55 * Called from __free_irq() with desc->lock held after @action has
56 * been removed from the action chain.
58 void irq_pm_remove_action(struct irq_desc
*desc
, struct irqaction
*action
)
62 if (action
->flags
& IRQF_FORCE_RESUME
)
63 desc
->force_resume_depth
--;
65 if (action
->flags
& IRQF_NO_SUSPEND
)
66 desc
->no_suspend_depth
--;
67 else if (action
->flags
& IRQF_COND_SUSPEND
)
68 desc
->cond_suspend_depth
--;
71 static bool suspend_device_irq(struct irq_desc
*desc
)
73 if (!desc
->action
|| irq_desc_is_chained(desc
) ||
74 desc
->no_suspend_depth
)
77 if (irqd_is_wakeup_set(&desc
->irq_data
)) {
78 irqd_set(&desc
->irq_data
, IRQD_WAKEUP_ARMED
);
80 * We return true here to force the caller to issue
81 * synchronize_irq(). We need to make sure that the
82 * IRQD_WAKEUP_ARMED is visible before we return from
83 * suspend_device_irqs().
88 desc
->istate
|= IRQS_SUSPENDED
;
92 * Hardware which has no wakeup source configuration facility
93 * requires that the non wakeup interrupts are masked at the
94 * chip level. The chip implementation indicates that with
95 * IRQCHIP_MASK_ON_SUSPEND.
97 if (irq_desc_get_chip(desc
)->flags
& IRQCHIP_MASK_ON_SUSPEND
)
103 * suspend_device_irqs - disable all currently enabled interrupt lines
105 * During system-wide suspend or hibernation device drivers need to be
106 * prevented from receiving interrupts and this function is provided
109 * So we disable all interrupts and mark them IRQS_SUSPENDED except
110 * for those which are unused, those which are marked as not
111 * suspendable via an interrupt request with the flag IRQF_NO_SUSPEND
112 * set and those which are marked as active wakeup sources.
114 * The active wakeup sources are handled by the flow handler entry
115 * code which checks for the IRQD_WAKEUP_ARMED flag, suspends the
116 * interrupt and notifies the pm core about the wakeup.
118 void suspend_device_irqs(void)
120 struct irq_desc
*desc
;
123 for_each_irq_desc(irq
, desc
) {
127 if (irq_settings_is_nested_thread(desc
))
129 raw_spin_lock_irqsave(&desc
->lock
, flags
);
130 sync
= suspend_device_irq(desc
);
131 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
134 synchronize_irq(irq
);
137 EXPORT_SYMBOL_GPL(suspend_device_irqs
);
139 static void resume_irq(struct irq_desc
*desc
)
141 irqd_clear(&desc
->irq_data
, IRQD_WAKEUP_ARMED
);
143 if (desc
->istate
& IRQS_SUSPENDED
)
146 /* Force resume the interrupt? */
147 if (!desc
->force_resume_depth
)
150 /* Pretend that it got disabled ! */
153 desc
->istate
&= ~IRQS_SUSPENDED
;
157 static void resume_irqs(bool want_early
)
159 struct irq_desc
*desc
;
162 for_each_irq_desc(irq
, desc
) {
164 bool is_early
= desc
->action
&&
165 desc
->action
->flags
& IRQF_EARLY_RESUME
;
167 if (!is_early
&& want_early
)
169 if (irq_settings_is_nested_thread(desc
))
172 raw_spin_lock_irqsave(&desc
->lock
, flags
);
174 raw_spin_unlock_irqrestore(&desc
->lock
, flags
);
179 * irq_pm_syscore_ops - enable interrupt lines early
181 * Enable all interrupt lines with %IRQF_EARLY_RESUME set.
183 static void irq_pm_syscore_resume(void)
188 static struct syscore_ops irq_pm_syscore_ops
= {
189 .resume
= irq_pm_syscore_resume
,
192 static int __init
irq_pm_init_ops(void)
194 register_syscore_ops(&irq_pm_syscore_ops
);
198 device_initcall(irq_pm_init_ops
);
201 * resume_device_irqs - enable interrupt lines disabled by suspend_device_irqs()
203 * Enable all non-%IRQF_EARLY_RESUME interrupt lines previously
204 * disabled by suspend_device_irqs() that have the IRQS_SUSPENDED flag
205 * set as well as those with %IRQF_FORCE_RESUME.
207 void resume_device_irqs(void)
211 EXPORT_SYMBOL_GPL(resume_device_irqs
);