Thomas Gleixner | 52a65ff | 2018-03-14 22:15:19 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 2 | /* |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 3 | * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc. |
| 4 | * |
| 5 | * This file contains power management functions related to interrupts. |
| 6 | */ |
| 7 | |
| 8 | #include <linux/irq.h> |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/interrupt.h> |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 11 | #include <linux/suspend.h> |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 12 | #include <linux/syscore_ops.h> |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 13 | |
| 14 | #include "internals.h" |
| 15 | |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 16 | bool irq_pm_check_wakeup(struct irq_desc *desc) |
| 17 | { |
| 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; |
| 21 | desc->depth++; |
| 22 | irq_disable(desc); |
Alexandra Yates | a6f5f0d | 2015-09-15 10:32:46 -0700 | [diff] [blame] | 23 | pm_system_irq_wakeup(irq_desc_get_irq(desc)); |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 24 | return true; |
| 25 | } |
| 26 | return false; |
| 27 | } |
| 28 | |
Thomas Gleixner | cab303b | 2014-08-28 11:44:31 +0200 | [diff] [blame] | 29 | /* |
| 30 | * Called from __setup_irq() with desc->lock held after @action has |
| 31 | * been installed in the action chain. |
| 32 | */ |
| 33 | void irq_pm_install_action(struct irq_desc *desc, struct irqaction *action) |
| 34 | { |
| 35 | desc->nr_actions++; |
| 36 | |
| 37 | if (action->flags & IRQF_FORCE_RESUME) |
| 38 | desc->force_resume_depth++; |
| 39 | |
| 40 | WARN_ON_ONCE(desc->force_resume_depth && |
| 41 | desc->force_resume_depth != desc->nr_actions); |
| 42 | |
| 43 | if (action->flags & IRQF_NO_SUSPEND) |
| 44 | desc->no_suspend_depth++; |
Rafael J. Wysocki | 17f4803 | 2015-02-27 00:07:55 +0100 | [diff] [blame] | 45 | else if (action->flags & IRQF_COND_SUSPEND) |
| 46 | desc->cond_suspend_depth++; |
Thomas Gleixner | cab303b | 2014-08-28 11:44:31 +0200 | [diff] [blame] | 47 | |
| 48 | WARN_ON_ONCE(desc->no_suspend_depth && |
Rafael J. Wysocki | 17f4803 | 2015-02-27 00:07:55 +0100 | [diff] [blame] | 49 | (desc->no_suspend_depth + |
| 50 | desc->cond_suspend_depth) != desc->nr_actions); |
Thomas Gleixner | cab303b | 2014-08-28 11:44:31 +0200 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | /* |
| 54 | * Called from __free_irq() with desc->lock held after @action has |
| 55 | * been removed from the action chain. |
| 56 | */ |
| 57 | void irq_pm_remove_action(struct irq_desc *desc, struct irqaction *action) |
| 58 | { |
| 59 | desc->nr_actions--; |
| 60 | |
| 61 | if (action->flags & IRQF_FORCE_RESUME) |
| 62 | desc->force_resume_depth--; |
| 63 | |
| 64 | if (action->flags & IRQF_NO_SUSPEND) |
| 65 | desc->no_suspend_depth--; |
Rafael J. Wysocki | 17f4803 | 2015-02-27 00:07:55 +0100 | [diff] [blame] | 66 | else if (action->flags & IRQF_COND_SUSPEND) |
| 67 | desc->cond_suspend_depth--; |
Thomas Gleixner | cab303b | 2014-08-28 11:44:31 +0200 | [diff] [blame] | 68 | } |
| 69 | |
Jiang Liu | b80f5f3 | 2015-06-23 19:58:45 +0200 | [diff] [blame] | 70 | static bool suspend_device_irq(struct irq_desc *desc) |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 71 | { |
Maulik Shah | 90428a8 | 2020-09-28 10:02:01 +0530 | [diff] [blame] | 72 | unsigned long chipflags = irq_desc_get_chip(desc)->flags; |
| 73 | struct irq_data *irqd = &desc->irq_data; |
| 74 | |
Grygorii Strashko | 4717f13 | 2015-11-10 11:58:12 +0200 | [diff] [blame] | 75 | if (!desc->action || irq_desc_is_chained(desc) || |
| 76 | desc->no_suspend_depth) |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 77 | return false; |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 78 | |
Maulik Shah | 90428a8 | 2020-09-28 10:02:01 +0530 | [diff] [blame] | 79 | if (irqd_is_wakeup_set(irqd)) { |
| 80 | irqd_set(irqd, IRQD_WAKEUP_ARMED); |
| 81 | |
| 82 | if ((chipflags & IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND) && |
| 83 | irqd_irq_disabled(irqd)) { |
| 84 | /* |
| 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. |
| 88 | */ |
| 89 | __enable_irq(desc); |
| 90 | irqd_set(irqd, IRQD_IRQ_ENABLED_ON_SUSPEND); |
| 91 | } |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 92 | /* |
| 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(). |
| 97 | */ |
| 98 | return true; |
| 99 | } |
Thomas Gleixner | b76f167 | 2014-08-29 13:54:09 +0200 | [diff] [blame] | 100 | |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 101 | desc->istate |= IRQS_SUSPENDED; |
Jiang Liu | 79ff1cd | 2015-06-23 19:52:36 +0200 | [diff] [blame] | 102 | __disable_irq(desc); |
Thomas Gleixner | 092fadd | 2014-08-28 16:49:43 +0200 | [diff] [blame] | 103 | |
| 104 | /* |
| 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. |
| 109 | */ |
Maulik Shah | 90428a8 | 2020-09-28 10:02:01 +0530 | [diff] [blame] | 110 | if (chipflags & IRQCHIP_MASK_ON_SUSPEND) |
Thomas Gleixner | 092fadd | 2014-08-28 16:49:43 +0200 | [diff] [blame] | 111 | mask_irq(desc); |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 112 | return true; |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 113 | } |
| 114 | |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 115 | /** |
| 116 | * suspend_device_irqs - disable all currently enabled interrupt lines |
| 117 | * |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 118 | * During system-wide suspend or hibernation device drivers need to be |
| 119 | * prevented from receiving interrupts and this function is provided |
| 120 | * for this purpose. |
| 121 | * |
| 122 | * So we disable all interrupts and mark them IRQS_SUSPENDED except |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 123 | * for those which are unused, those which are marked as not |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 124 | * suspendable via an interrupt request with the flag IRQF_NO_SUSPEND |
Thomas Gleixner | 9ce7a25 | 2014-08-29 14:00:16 +0200 | [diff] [blame] | 125 | * set and those which are marked as active wakeup sources. |
| 126 | * |
| 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. |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 130 | */ |
| 131 | void suspend_device_irqs(void) |
| 132 | { |
| 133 | struct irq_desc *desc; |
| 134 | int irq; |
| 135 | |
| 136 | for_each_irq_desc(irq, desc) { |
| 137 | unsigned long flags; |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 138 | bool sync; |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 139 | |
NeilBrown | 3c646f2 | 2015-05-17 15:19:34 +1000 | [diff] [blame] | 140 | if (irq_settings_is_nested_thread(desc)) |
| 141 | continue; |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 142 | raw_spin_lock_irqsave(&desc->lock, flags); |
Jiang Liu | b80f5f3 | 2015-06-23 19:58:45 +0200 | [diff] [blame] | 143 | sync = suspend_device_irq(desc); |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 144 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 145 | |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 146 | if (sync) |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 147 | synchronize_irq(irq); |
Thomas Gleixner | c4df606 | 2014-08-28 22:50:43 +0200 | [diff] [blame] | 148 | } |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 149 | } |
| 150 | EXPORT_SYMBOL_GPL(suspend_device_irqs); |
| 151 | |
Jiang Liu | b80f5f3 | 2015-06-23 19:58:45 +0200 | [diff] [blame] | 152 | static void resume_irq(struct irq_desc *desc) |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 153 | { |
Maulik Shah | 90428a8 | 2020-09-28 10:02:01 +0530 | [diff] [blame] | 154 | struct irq_data *irqd = &desc->irq_data; |
| 155 | |
| 156 | irqd_clear(irqd, IRQD_WAKEUP_ARMED); |
| 157 | |
| 158 | if (irqd_is_enabled_on_suspend(irqd)) { |
| 159 | /* |
| 160 | * Interrupt marked for wakeup was enabled during suspend |
| 161 | * entry. Disable such interrupts to restore them back to |
| 162 | * original state. |
| 163 | */ |
| 164 | __disable_irq(desc); |
| 165 | irqd_clear(irqd, IRQD_IRQ_ENABLED_ON_SUSPEND); |
| 166 | } |
Thomas Gleixner | b76f167 | 2014-08-29 13:54:09 +0200 | [diff] [blame] | 167 | |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 168 | if (desc->istate & IRQS_SUSPENDED) |
| 169 | goto resume; |
| 170 | |
Thomas Gleixner | 5417de2 | 2014-08-28 15:48:59 +0200 | [diff] [blame] | 171 | /* Force resume the interrupt? */ |
| 172 | if (!desc->force_resume_depth) |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 173 | return; |
| 174 | |
| 175 | /* Pretend that it got disabled ! */ |
| 176 | desc->depth++; |
Juergen Gross | a696712 | 2017-07-17 19:47:02 +0200 | [diff] [blame] | 177 | irq_state_set_disabled(desc); |
| 178 | irq_state_set_masked(desc); |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 179 | resume: |
| 180 | desc->istate &= ~IRQS_SUSPENDED; |
Jiang Liu | 79ff1cd | 2015-06-23 19:52:36 +0200 | [diff] [blame] | 181 | __enable_irq(desc); |
Thomas Gleixner | 8df2e02 | 2014-08-28 11:49:28 +0200 | [diff] [blame] | 182 | } |
| 183 | |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 184 | static void resume_irqs(bool want_early) |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 185 | { |
| 186 | struct irq_desc *desc; |
| 187 | int irq; |
| 188 | |
| 189 | for_each_irq_desc(irq, desc) { |
| 190 | unsigned long flags; |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 191 | bool is_early = desc->action && |
| 192 | desc->action->flags & IRQF_EARLY_RESUME; |
| 193 | |
Laxman Dewangan | ac01810 | 2013-11-25 19:39:47 +0530 | [diff] [blame] | 194 | if (!is_early && want_early) |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 195 | continue; |
NeilBrown | 3c646f2 | 2015-05-17 15:19:34 +1000 | [diff] [blame] | 196 | if (irq_settings_is_nested_thread(desc)) |
| 197 | continue; |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 198 | |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 199 | raw_spin_lock_irqsave(&desc->lock, flags); |
Jiang Liu | b80f5f3 | 2015-06-23 19:58:45 +0200 | [diff] [blame] | 200 | resume_irq(desc); |
Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 201 | raw_spin_unlock_irqrestore(&desc->lock, flags); |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 202 | } |
| 203 | } |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 204 | |
| 205 | /** |
Rafael J. Wysocki | 3a79bc6 | 2019-07-15 13:03:20 +0200 | [diff] [blame] | 206 | * rearm_wake_irq - rearm a wakeup interrupt line after signaling wakeup |
| 207 | * @irq: Interrupt to rearm |
| 208 | */ |
| 209 | void rearm_wake_irq(unsigned int irq) |
| 210 | { |
| 211 | unsigned long flags; |
| 212 | struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL); |
| 213 | |
Guenter Roeck | e27b163 | 2020-08-11 11:00:01 -0700 | [diff] [blame] | 214 | if (!desc) |
Rafael J. Wysocki | 3a79bc6 | 2019-07-15 13:03:20 +0200 | [diff] [blame] | 215 | return; |
| 216 | |
Guenter Roeck | e27b163 | 2020-08-11 11:00:01 -0700 | [diff] [blame] | 217 | if (!(desc->istate & IRQS_SUSPENDED) || |
| 218 | !irqd_is_wakeup_set(&desc->irq_data)) |
| 219 | goto unlock; |
| 220 | |
Rafael J. Wysocki | 3a79bc6 | 2019-07-15 13:03:20 +0200 | [diff] [blame] | 221 | desc->istate &= ~IRQS_SUSPENDED; |
| 222 | irqd_set(&desc->irq_data, IRQD_WAKEUP_ARMED); |
| 223 | __enable_irq(desc); |
| 224 | |
Guenter Roeck | e27b163 | 2020-08-11 11:00:01 -0700 | [diff] [blame] | 225 | unlock: |
Rafael J. Wysocki | 3a79bc6 | 2019-07-15 13:03:20 +0200 | [diff] [blame] | 226 | irq_put_desc_busunlock(desc, flags); |
| 227 | } |
| 228 | |
| 229 | /** |
Randy Dunlap | 3b35e7e | 2021-08-10 16:48:35 -0700 | [diff] [blame] | 230 | * irq_pm_syscore_resume - enable interrupt lines early |
Ian Campbell | 9bab0b7 | 2011-10-03 15:37:00 +0100 | [diff] [blame] | 231 | * |
| 232 | * Enable all interrupt lines with %IRQF_EARLY_RESUME set. |
| 233 | */ |
| 234 | static void irq_pm_syscore_resume(void) |
| 235 | { |
| 236 | resume_irqs(true); |
| 237 | } |
| 238 | |
| 239 | static struct syscore_ops irq_pm_syscore_ops = { |
| 240 | .resume = irq_pm_syscore_resume, |
| 241 | }; |
| 242 | |
| 243 | static int __init irq_pm_init_ops(void) |
| 244 | { |
| 245 | register_syscore_ops(&irq_pm_syscore_ops); |
| 246 | return 0; |
| 247 | } |
| 248 | |
| 249 | device_initcall(irq_pm_init_ops); |
| 250 | |
| 251 | /** |
| 252 | * resume_device_irqs - enable interrupt lines disabled by suspend_device_irqs() |
| 253 | * |
| 254 | * Enable all non-%IRQF_EARLY_RESUME interrupt lines previously |
| 255 | * disabled by suspend_device_irqs() that have the IRQS_SUSPENDED flag |
| 256 | * set as well as those with %IRQF_FORCE_RESUME. |
| 257 | */ |
| 258 | void resume_device_irqs(void) |
| 259 | { |
| 260 | resume_irqs(false); |
| 261 | } |
Rafael J. Wysocki | 0a0c516 | 2009-03-16 22:33:49 +0100 | [diff] [blame] | 262 | EXPORT_SYMBOL_GPL(resume_device_irqs); |