Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 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> |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 12 | #include <linux/suspend.h> |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 13 | #include <linux/syscore_ops.h> |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 14 | |
| 15 | #include "internals.h" |
| 16 | |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 17 | bool 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 | |
Thomas Gleixner | cab303b | 2014-08-28 11:44:31 +0200 | [diff] [blame] | 30 | /* |
| 31 | * Called from __setup_irq() with desc->lock held after @action has |
| 32 | * been installed in the action chain. |
| 33 | */ |
| 34 | void 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++; |
Rafael J. Wysocki | 17f4803 | 2015-02-27 00:07:55 +0100 | [diff] [blame] | 46 | else if (action->flags & IRQF_COND_SUSPEND) |
| 47 | desc->cond_suspend_depth++; |
Thomas Gleixner | cab303b | 2014-08-28 11:44:31 +0200 | [diff] [blame] | 48 | |
| 49 | WARN_ON_ONCE(desc->no_suspend_depth && |
Rafael J. Wysocki | 17f4803 | 2015-02-27 00:07:55 +0100 | [diff] [blame] | 50 | (desc->no_suspend_depth + |
| 51 | desc->cond_suspend_depth) != desc->nr_actions); |
Thomas Gleixner | cab303b | 2014-08-28 11:44:31 +0200 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | /* |
| 55 | * Called from __free_irq() with desc->lock held after @action has |
| 56 | * been removed from the action chain. |
| 57 | */ |
| 58 | void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action) |
| 59 | { |
| 60 | desc->nr_actions--; |
| 61 | |
| 62 | if (action->flags & IRQF_FORCE_RESUME) |
| 63 | desc->force_resume_depth--; |
| 64 | |
| 65 | if (action->flags & IRQF_NO_SUSPEND) |
| 66 | desc->no_suspend_depth--; |
Rafael J. Wysocki | 17f4803 | 2015-02-27 00:07:55 +0100 | [diff] [blame] | 67 | else if (action->flags & IRQF_COND_SUSPEND) |
| 68 | desc->cond_suspend_depth--; |
Thomas Gleixner | cab303b | 2014-08-28 11:44:31 +0200 | [diff] [blame] | 69 | } |
| 70 | |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 71 | static bool suspend_device_irq(struct irq_desc *desc, int irq) |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 72 | { |
Thomas Gleixner | 5417de2 | 2014-08-28 15:48:59 +0200 | [diff] [blame] | 73 | if (!desc->action || desc->no_suspend_depth) |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 74 | return false; |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 75 | |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 76 | if (irqd_is_wakeup_set(&desc->irq_data)) { |
Thomas Gleixner | b76f167 | 2014-08-29 13:54:09 +0200 | [diff] [blame] | 77 | irqd_set(&desc->irq_data, IRQD_WAKEUP_ARMED); |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 78 | /* |
| 79 | * We return true here to force the caller to issue |
| 80 | * synchronize_irq(). We need to make sure that the |
| 81 | * IRQD_WAKEUP_ARMED is visible before we return from |
| 82 | * suspend_device_irqs(). |
| 83 | */ |
| 84 | return true; |
| 85 | } |
Thomas Gleixner | b76f167 | 2014-08-29 13:54:09 +0200 | [diff] [blame] | 86 | |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 87 | desc->istate |= IRQS_SUSPENDED; |
| 88 | __disable_irq(desc, irq); |
Thomas Gleixner | 092fadd | 2014-08-28 16:49:43 +0200 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * Hardware which has no wakeup source configuration facility |
| 92 | * requires that the non wakeup interrupts are masked at the |
| 93 | * chip level. The chip implementation indicates that with |
| 94 | * IRQCHIP_MASK_ON_SUSPEND. |
| 95 | */ |
| 96 | if (irq_desc_get_chip(desc)->flags & IRQCHIP_MASK_ON_SUSPEND) |
| 97 | mask_irq(desc); |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 98 | return true; |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 99 | } |
| 100 | |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 101 | /** |
| 102 | * suspend_device_irqs - disable all currently enabled interrupt lines |
| 103 | * |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 104 | * During system-wide suspend or hibernation device drivers need to be |
| 105 | * prevented from receiving interrupts and this function is provided |
| 106 | * for this purpose. |
| 107 | * |
| 108 | * So we disable all interrupts and mark them IRQS_SUSPENDED except |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 109 | * for those which are unused, those which are marked as not |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 110 | * suspendable via an interrupt request with the flag IRQF_NO_SUSPEND |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 111 | * set and those which are marked as active wakeup sources. |
| 112 | * |
| 113 | * The active wakeup sources are handled by the flow handler entry |
| 114 | * code which checks for the IRQD_WAKEUP_ARMED flag, suspends the |
| 115 | * interrupt and notifies the pm core about the wakeup. |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 116 | */ |
| 117 | void suspend_device_irqs(void) |
| 118 | { |
| 119 | struct irq_desc *desc; |
| 120 | int irq; |
| 121 | |
| 122 | for_each_irq_desc(irq, desc) { |
| 123 | unsigned long flags; |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 124 | bool sync; |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 125 | |
NeilBrown | 3c646f2 | 2015-05-17 15:19:34 +1000 | [diff] [blame^] | 126 | if (irq_settings_is_nested_thread(desc)) |
| 127 | continue; |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 128 | raw_spin_lock_irqsave(&desc->lock, flags); |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 129 | sync = suspend_device_irq(desc, irq); |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 130 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 131 | |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 132 | if (sync) |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 133 | synchronize_irq(irq); |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 134 | } |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 135 | } |
| 136 | EXPORT_SYMBOL_GPL(suspend_device_irqs); |
| 137 | |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 138 | static void resume_irq(struct irq_desc *desc, int irq) |
| 139 | { |
Thomas Gleixner | b76f167 | 2014-08-29 13:54:09 +0200 | [diff] [blame] | 140 | irqd_clear(&desc->irq_data, IRQD_WAKEUP_ARMED); |
| 141 | |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 142 | if (desc->istate & IRQS_SUSPENDED) |
| 143 | goto resume; |
| 144 | |
Thomas Gleixner | 5417de2 | 2014-08-28 15:48:59 +0200 | [diff] [blame] | 145 | /* Force resume the interrupt? */ |
| 146 | if (!desc->force_resume_depth) |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 147 | return; |
| 148 | |
| 149 | /* Pretend that it got disabled ! */ |
| 150 | desc->depth++; |
| 151 | resume: |
| 152 | desc->istate &= ~IRQS_SUSPENDED; |
| 153 | __enable_irq(desc, irq); |
| 154 | } |
| 155 | |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 156 | static void resume_irqs(bool want_early) |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 157 | { |
| 158 | struct irq_desc *desc; |
| 159 | int irq; |
| 160 | |
| 161 | for_each_irq_desc(irq, desc) { |
| 162 | unsigned long flags; |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 163 | bool is_early = desc->action && |
| 164 | desc->action->flags & IRQF_EARLY_RESUME; |
| 165 | |
Laxman Dewangan | ac01810 | 2013-11-25 19:39:47 +0530 | [diff] [blame] | 166 | if (!is_early && want_early) |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 167 | continue; |
NeilBrown | 3c646f2 | 2015-05-17 15:19:34 +1000 | [diff] [blame^] | 168 | if (irq_settings_is_nested_thread(desc)) |
| 169 | continue; |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 170 | |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 171 | raw_spin_lock_irqsave(&desc->lock, flags); |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 172 | resume_irq(desc, irq); |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 173 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 174 | } |
| 175 | } |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 176 | |
| 177 | /** |
| 178 | * irq_pm_syscore_ops - enable interrupt lines early |
| 179 | * |
| 180 | * Enable all interrupt lines with %IRQF_EARLY_RESUME set. |
| 181 | */ |
| 182 | static void irq_pm_syscore_resume(void) |
| 183 | { |
| 184 | resume_irqs(true); |
| 185 | } |
| 186 | |
| 187 | static struct syscore_ops irq_pm_syscore_ops = { |
| 188 | .resume = irq_pm_syscore_resume, |
| 189 | }; |
| 190 | |
| 191 | static int __init irq_pm_init_ops(void) |
| 192 | { |
| 193 | register_syscore_ops(&irq_pm_syscore_ops); |
| 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | device_initcall(irq_pm_init_ops); |
| 198 | |
| 199 | /** |
| 200 | * resume_device_irqs - enable interrupt lines disabled by suspend_device_irqs() |
| 201 | * |
| 202 | * Enable all non-%IRQF_EARLY_RESUME interrupt lines previously |
| 203 | * disabled by suspend_device_irqs() that have the IRQS_SUSPENDED flag |
| 204 | * set as well as those with %IRQF_FORCE_RESUME. |
| 205 | */ |
| 206 | void resume_device_irqs(void) |
| 207 | { |
| 208 | resume_irqs(false); |
| 209 | } |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 210 | EXPORT_SYMBOL_GPL(resume_device_irqs); |