blob: e121645bb8a1017481cd8b72e46bb9c3e9a8772b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/irq/manage.c
3 *
Ingo Molnara34db9b2006-06-29 02:24:50 -07004 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
5 * Copyright (C) 2005-2006 Thomas Gleixner
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This file contains driver APIs to the irq subsystem.
8 */
9
Andrew Morton97fd75b2012-05-31 16:26:07 -070010#define pr_fmt(fmt) "genirq: " fmt
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/irq.h>
Thomas Gleixner3aa551c2009-03-23 18:28:15 +010013#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/random.h>
16#include <linux/interrupt.h>
Robert P. J. Day1aeb2722008-04-29 00:59:25 -070017#include <linux/slab.h>
Thomas Gleixner3aa551c2009-03-23 18:28:15 +010018#include <linux/sched.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060019#include <linux/sched/rt.h>
Oleg Nesterov4d1d61a2012-05-11 10:59:08 +100020#include <linux/task_work.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "internals.h"
23
Thomas Gleixner8d32a302011-02-23 23:52:23 +000024#ifdef CONFIG_IRQ_FORCED_THREADING
25__read_mostly bool force_irqthreads;
26
27static int __init setup_forced_irqthreads(char *arg)
28{
29 force_irqthreads = true;
30 return 0;
31}
32early_param("threadirqs", setup_forced_irqthreads);
33#endif
34
Thomas Gleixner18258f72014-02-15 00:55:18 +000035static void __synchronize_hardirq(struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Thomas Gleixner32f41252011-03-28 14:10:52 +020037 bool inprogress;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Herbert Xua98ce5c2007-10-23 11:26:25 +080039 do {
40 unsigned long flags;
41
42 /*
43 * Wait until we're out of the critical section. This might
44 * give the wrong answer due to the lack of memory barriers.
45 */
Thomas Gleixner32f41252011-03-28 14:10:52 +020046 while (irqd_irq_inprogress(&desc->irq_data))
Herbert Xua98ce5c2007-10-23 11:26:25 +080047 cpu_relax();
48
49 /* Ok, that indicated we're done: double-check carefully. */
Thomas Gleixner239007b2009-11-17 16:46:45 +010050 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixner32f41252011-03-28 14:10:52 +020051 inprogress = irqd_irq_inprogress(&desc->irq_data);
Thomas Gleixner239007b2009-11-17 16:46:45 +010052 raw_spin_unlock_irqrestore(&desc->lock, flags);
Herbert Xua98ce5c2007-10-23 11:26:25 +080053
54 /* Oops, that failed? */
Thomas Gleixner32f41252011-03-28 14:10:52 +020055 } while (inprogress);
Thomas Gleixner18258f72014-02-15 00:55:18 +000056}
Thomas Gleixner3aa551c2009-03-23 18:28:15 +010057
Thomas Gleixner18258f72014-02-15 00:55:18 +000058/**
59 * synchronize_hardirq - wait for pending hard IRQ handlers (on other CPUs)
60 * @irq: interrupt number to wait for
61 *
62 * This function waits for any pending hard IRQ handlers for this
63 * interrupt to complete before returning. If you use this
64 * function while holding a resource the IRQ handler may need you
65 * will deadlock. It does not take associated threaded handlers
66 * into account.
67 *
68 * Do not use this for shutdown scenarios where you must be sure
69 * that all parts (hardirq and threaded handler) have completed.
70 *
Peter Zijlstra02cea392015-02-05 14:06:23 +010071 * Returns: false if a threaded handler is active.
72 *
Thomas Gleixner18258f72014-02-15 00:55:18 +000073 * This function may be called - with care - from IRQ context.
74 */
Peter Zijlstra02cea392015-02-05 14:06:23 +010075bool synchronize_hardirq(unsigned int irq)
Thomas Gleixner18258f72014-02-15 00:55:18 +000076{
77 struct irq_desc *desc = irq_to_desc(irq);
78
Peter Zijlstra02cea392015-02-05 14:06:23 +010079 if (desc) {
Thomas Gleixner18258f72014-02-15 00:55:18 +000080 __synchronize_hardirq(desc);
Peter Zijlstra02cea392015-02-05 14:06:23 +010081 return !atomic_read(&desc->threads_active);
82 }
83
84 return true;
Thomas Gleixner18258f72014-02-15 00:55:18 +000085}
86EXPORT_SYMBOL(synchronize_hardirq);
87
88/**
89 * synchronize_irq - wait for pending IRQ handlers (on other CPUs)
90 * @irq: interrupt number to wait for
91 *
92 * This function waits for any pending IRQ handlers for this interrupt
93 * to complete before returning. If you use this function while
94 * holding a resource the IRQ handler may need you will deadlock.
95 *
96 * This function may be called - with care - from IRQ context.
97 */
98void synchronize_irq(unsigned int irq)
99{
100 struct irq_desc *desc = irq_to_desc(irq);
101
102 if (desc) {
103 __synchronize_hardirq(desc);
104 /*
105 * We made sure that no hardirq handler is
106 * running. Now verify that no threaded handlers are
107 * active.
108 */
109 wait_event(desc->wait_for_threads,
110 !atomic_read(&desc->threads_active));
111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113EXPORT_SYMBOL(synchronize_irq);
114
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100115#ifdef CONFIG_SMP
116cpumask_var_t irq_default_affinity;
117
Thomas Gleixner9c255582016-07-04 17:39:23 +0900118static bool __irq_can_set_affinity(struct irq_desc *desc)
Jiang Liue019c242015-06-23 20:29:34 +0200119{
120 if (!desc || !irqd_can_balance(&desc->irq_data) ||
121 !desc->irq_data.chip || !desc->irq_data.chip->irq_set_affinity)
Thomas Gleixner9c255582016-07-04 17:39:23 +0900122 return false;
123 return true;
Jiang Liue019c242015-06-23 20:29:34 +0200124}
125
Thomas Gleixner771ee3b2007-02-16 01:27:25 -0800126/**
127 * irq_can_set_affinity - Check if the affinity of a given irq can be set
128 * @irq: Interrupt to check
129 *
130 */
131int irq_can_set_affinity(unsigned int irq)
132{
Jiang Liue019c242015-06-23 20:29:34 +0200133 return __irq_can_set_affinity(irq_to_desc(irq));
Thomas Gleixner771ee3b2007-02-16 01:27:25 -0800134}
135
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200136/**
Thomas Gleixner9c255582016-07-04 17:39:23 +0900137 * irq_can_set_affinity_usr - Check if affinity of a irq can be set from user space
138 * @irq: Interrupt to check
139 *
140 * Like irq_can_set_affinity() above, but additionally checks for the
141 * AFFINITY_MANAGED flag.
142 */
143bool irq_can_set_affinity_usr(unsigned int irq)
144{
145 struct irq_desc *desc = irq_to_desc(irq);
146
147 return __irq_can_set_affinity(desc) &&
148 !irqd_affinity_is_managed(&desc->irq_data);
149}
150
151/**
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200152 * irq_set_thread_affinity - Notify irq threads to adjust affinity
153 * @desc: irq descriptor which has affitnity changed
154 *
155 * We just set IRQTF_AFFINITY and delegate the affinity setting
156 * to the interrupt thread itself. We can not call
157 * set_cpus_allowed_ptr() here as we hold desc->lock and this
158 * code can be called from hard interrupt context.
159 */
160void irq_set_thread_affinity(struct irq_desc *desc)
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100161{
Daniel Lezcanof944b5a2016-01-14 10:54:13 +0100162 struct irqaction *action;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100163
Daniel Lezcanof944b5a2016-01-14 10:54:13 +0100164 for_each_action_of_desc(desc, action)
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100165 if (action->thread)
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200166 set_bit(IRQTF_AFFINITY, &action->thread_flags);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100167}
168
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100169#ifdef CONFIG_GENERIC_PENDING_IRQ
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200170static inline bool irq_can_move_pcntxt(struct irq_data *data)
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100171{
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200172 return irqd_can_move_in_process_context(data);
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100173}
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200174static inline bool irq_move_pending(struct irq_data *data)
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100175{
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200176 return irqd_is_setaffinity_pending(data);
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100177}
178static inline void
179irq_copy_pending(struct irq_desc *desc, const struct cpumask *mask)
180{
181 cpumask_copy(desc->pending_mask, mask);
182}
183static inline void
184irq_get_pending(struct cpumask *mask, struct irq_desc *desc)
185{
186 cpumask_copy(mask, desc->pending_mask);
187}
188#else
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200189static inline bool irq_can_move_pcntxt(struct irq_data *data) { return true; }
Thomas Gleixnercd22c0e2011-03-29 11:36:05 +0200190static inline bool irq_move_pending(struct irq_data *data) { return false; }
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100191static inline void
192irq_copy_pending(struct irq_desc *desc, const struct cpumask *mask) { }
193static inline void
194irq_get_pending(struct cpumask *mask, struct irq_desc *desc) { }
195#endif
196
Jiang Liu818b0f32012-03-30 23:11:34 +0800197int irq_do_set_affinity(struct irq_data *data, const struct cpumask *mask,
198 bool force)
199{
200 struct irq_desc *desc = irq_data_to_desc(data);
201 struct irq_chip *chip = irq_data_get_irq_chip(data);
202 int ret;
203
Thomas Gleixner01f8fa42014-04-16 14:36:44 +0000204 ret = chip->irq_set_affinity(data, mask, force);
Jiang Liu818b0f32012-03-30 23:11:34 +0800205 switch (ret) {
206 case IRQ_SET_MASK_OK:
Jiang Liu2cb62542014-11-06 22:20:18 +0800207 case IRQ_SET_MASK_OK_DONE:
Jiang Liu9df872f2015-06-03 11:47:50 +0800208 cpumask_copy(desc->irq_common_data.affinity, mask);
Jiang Liu818b0f32012-03-30 23:11:34 +0800209 case IRQ_SET_MASK_OK_NOCOPY:
210 irq_set_thread_affinity(desc);
211 ret = 0;
212 }
213
214 return ret;
215}
216
Thomas Gleixner01f8fa42014-04-16 14:36:44 +0000217int irq_set_affinity_locked(struct irq_data *data, const struct cpumask *mask,
218 bool force)
David Daneyc2d0c552011-03-25 12:38:50 -0700219{
220 struct irq_chip *chip = irq_data_get_irq_chip(data);
221 struct irq_desc *desc = irq_data_to_desc(data);
222 int ret = 0;
223
224 if (!chip || !chip->irq_set_affinity)
225 return -EINVAL;
226
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200227 if (irq_can_move_pcntxt(data)) {
Thomas Gleixner01f8fa42014-04-16 14:36:44 +0000228 ret = irq_do_set_affinity(data, mask, force);
David Daneyc2d0c552011-03-25 12:38:50 -0700229 } else {
230 irqd_set_move_pending(data);
231 irq_copy_pending(desc, mask);
232 }
233
234 if (desc->affinity_notify) {
235 kref_get(&desc->affinity_notify->kref);
236 schedule_work(&desc->affinity_notify->work);
237 }
David Daneyc2d0c552011-03-25 12:38:50 -0700238 irqd_set(data, IRQD_AFFINITY_SET);
239
240 return ret;
241}
242
Thomas Gleixner01f8fa42014-04-16 14:36:44 +0000243int __irq_set_affinity(unsigned int irq, const struct cpumask *mask, bool force)
Thomas Gleixner771ee3b2007-02-16 01:27:25 -0800244{
Yinghai Lu08678b02008-08-19 20:50:05 -0700245 struct irq_desc *desc = irq_to_desc(irq);
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100246 unsigned long flags;
David Daneyc2d0c552011-03-25 12:38:50 -0700247 int ret;
Thomas Gleixner771ee3b2007-02-16 01:27:25 -0800248
David Daneyc2d0c552011-03-25 12:38:50 -0700249 if (!desc)
Thomas Gleixner771ee3b2007-02-16 01:27:25 -0800250 return -EINVAL;
251
Thomas Gleixner239007b2009-11-17 16:46:45 +0100252 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixner01f8fa42014-04-16 14:36:44 +0000253 ret = irq_set_affinity_locked(irq_desc_get_irq_data(desc), mask, force);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100254 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100255 return ret;
Thomas Gleixner771ee3b2007-02-16 01:27:25 -0800256}
257
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -0700258int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m)
259{
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -0700260 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100261 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -0700262
263 if (!desc)
264 return -EINVAL;
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -0700265 desc->affinity_hint = m;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100266 irq_put_desc_unlock(desc, flags);
Jesse Brandeburge2e64a92014-12-18 17:22:06 -0800267 /* set the initial affinity to prevent every interrupt being on CPU0 */
Jesse Brandeburg4fe7ffb2015-01-28 10:57:39 -0800268 if (m)
269 __irq_set_affinity(irq, m, false);
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -0700270 return 0;
271}
272EXPORT_SYMBOL_GPL(irq_set_affinity_hint);
273
Ben Hutchingscd7eab42011-01-19 21:01:44 +0000274static void irq_affinity_notify(struct work_struct *work)
275{
276 struct irq_affinity_notify *notify =
277 container_of(work, struct irq_affinity_notify, work);
278 struct irq_desc *desc = irq_to_desc(notify->irq);
279 cpumask_var_t cpumask;
280 unsigned long flags;
281
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100282 if (!desc || !alloc_cpumask_var(&cpumask, GFP_KERNEL))
Ben Hutchingscd7eab42011-01-19 21:01:44 +0000283 goto out;
284
285 raw_spin_lock_irqsave(&desc->lock, flags);
Thomas Gleixner0ef5ca12011-03-28 21:59:37 +0200286 if (irq_move_pending(&desc->irq_data))
Thomas Gleixner1fa46f12011-02-07 16:46:58 +0100287 irq_get_pending(cpumask, desc);
Ben Hutchingscd7eab42011-01-19 21:01:44 +0000288 else
Jiang Liu9df872f2015-06-03 11:47:50 +0800289 cpumask_copy(cpumask, desc->irq_common_data.affinity);
Ben Hutchingscd7eab42011-01-19 21:01:44 +0000290 raw_spin_unlock_irqrestore(&desc->lock, flags);
291
292 notify->notify(notify, cpumask);
293
294 free_cpumask_var(cpumask);
295out:
296 kref_put(&notify->kref, notify->release);
297}
298
299/**
300 * irq_set_affinity_notifier - control notification of IRQ affinity changes
301 * @irq: Interrupt for which to enable/disable notification
302 * @notify: Context for notification, or %NULL to disable
303 * notification. Function pointers must be initialised;
304 * the other fields will be initialised by this function.
305 *
306 * Must be called in process context. Notification may only be enabled
307 * after the IRQ is allocated and must be disabled before the IRQ is
308 * freed using free_irq().
309 */
310int
311irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify)
312{
313 struct irq_desc *desc = irq_to_desc(irq);
314 struct irq_affinity_notify *old_notify;
315 unsigned long flags;
316
317 /* The release function is promised process context */
318 might_sleep();
319
320 if (!desc)
321 return -EINVAL;
322
323 /* Complete initialisation of *notify */
324 if (notify) {
325 notify->irq = irq;
326 kref_init(&notify->kref);
327 INIT_WORK(&notify->work, irq_affinity_notify);
328 }
329
330 raw_spin_lock_irqsave(&desc->lock, flags);
331 old_notify = desc->affinity_notify;
332 desc->affinity_notify = notify;
333 raw_spin_unlock_irqrestore(&desc->lock, flags);
334
335 if (old_notify)
336 kref_put(&old_notify->kref, old_notify->release);
337
338 return 0;
339}
340EXPORT_SYMBOL_GPL(irq_set_affinity_notifier);
341
Max Krasnyansky18404752008-05-29 11:02:52 -0700342#ifndef CONFIG_AUTO_IRQ_AFFINITY
343/*
344 * Generic version of the affinity autoselector.
345 */
Jiang Liua8a98ea2015-06-04 12:13:30 +0800346static int setup_affinity(struct irq_desc *desc, struct cpumask *mask)
Max Krasnyansky18404752008-05-29 11:02:52 -0700347{
Thomas Gleixner569bda82011-02-07 17:05:08 +0100348 struct cpumask *set = irq_default_affinity;
Jiang Liu67830112015-06-01 16:05:13 +0800349 int node = irq_desc_get_node(desc);
Thomas Gleixner569bda82011-02-07 17:05:08 +0100350
Thomas Gleixnerb0082072011-02-07 17:30:50 +0100351 /* Excludes PER_CPU and NO_BALANCE interrupts */
Jiang Liue019c242015-06-23 20:29:34 +0200352 if (!__irq_can_set_affinity(desc))
Max Krasnyansky18404752008-05-29 11:02:52 -0700353 return 0;
354
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100355 /*
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900356 * Preserve the managed affinity setting and an userspace affinity
357 * setup, but make sure that one of the targets is online.
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100358 */
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900359 if (irqd_affinity_is_managed(&desc->irq_data) ||
360 irqd_has_set(&desc->irq_data, IRQD_AFFINITY_SET)) {
Jiang Liu9df872f2015-06-03 11:47:50 +0800361 if (cpumask_intersects(desc->irq_common_data.affinity,
Thomas Gleixner569bda82011-02-07 17:05:08 +0100362 cpu_online_mask))
Jiang Liu9df872f2015-06-03 11:47:50 +0800363 set = desc->irq_common_data.affinity;
Thomas Gleixner0c6f8a82011-03-28 13:32:20 +0200364 else
Thomas Gleixner2bdd1052011-02-08 17:22:00 +0100365 irqd_clear(&desc->irq_data, IRQD_AFFINITY_SET);
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100366 }
Max Krasnyansky18404752008-05-29 11:02:52 -0700367
Thomas Gleixner3b8249e2011-02-07 16:02:20 +0100368 cpumask_and(mask, cpu_online_mask, set);
Prarit Bhargava241fc642012-03-26 15:02:18 -0400369 if (node != NUMA_NO_NODE) {
370 const struct cpumask *nodemask = cpumask_of_node(node);
371
372 /* make sure at least one of the cpus in nodemask is online */
373 if (cpumask_intersects(mask, nodemask))
374 cpumask_and(mask, mask, nodemask);
375 }
Jiang Liu818b0f32012-03-30 23:11:34 +0800376 irq_do_set_affinity(&desc->irq_data, mask, false);
Max Krasnyansky18404752008-05-29 11:02:52 -0700377 return 0;
378}
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100379#else
Jiang Liua8a98ea2015-06-04 12:13:30 +0800380/* Wrapper for ALPHA specific affinity selector magic */
381static inline int setup_affinity(struct irq_desc *d, struct cpumask *mask)
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100382{
Jiang Liua8a98ea2015-06-04 12:13:30 +0800383 return irq_select_affinity(irq_desc_get_irq(d));
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100384}
Max Krasnyansky18404752008-05-29 11:02:52 -0700385#endif
386
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100387/*
388 * Called when affinity is set via /proc/irq
389 */
Thomas Gleixner3b8249e2011-02-07 16:02:20 +0100390int irq_select_affinity_usr(unsigned int irq, struct cpumask *mask)
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100391{
392 struct irq_desc *desc = irq_to_desc(irq);
393 unsigned long flags;
394 int ret;
395
Thomas Gleixner239007b2009-11-17 16:46:45 +0100396 raw_spin_lock_irqsave(&desc->lock, flags);
Jiang Liua8a98ea2015-06-04 12:13:30 +0800397 ret = setup_affinity(desc, mask);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100398 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100399 return ret;
400}
401
402#else
Thomas Gleixner3b8249e2011-02-07 16:02:20 +0100403static inline int
Jiang Liua8a98ea2015-06-04 12:13:30 +0800404setup_affinity(struct irq_desc *desc, struct cpumask *mask)
Thomas Gleixnerf6d87f42008-11-07 13:18:30 +0100405{
406 return 0;
407}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408#endif
409
Feng Wufcf1ae22015-10-03 16:20:38 +0800410/**
411 * irq_set_vcpu_affinity - Set vcpu affinity for the interrupt
412 * @irq: interrupt number to set affinity
413 * @vcpu_info: vCPU specific data
414 *
415 * This function uses the vCPU specific data to set the vCPU
416 * affinity for an irq. The vCPU specific data is passed from
417 * outside, such as KVM. One example code path is as below:
418 * KVM -> IOMMU -> irq_set_vcpu_affinity().
419 */
420int irq_set_vcpu_affinity(unsigned int irq, void *vcpu_info)
421{
422 unsigned long flags;
423 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
424 struct irq_data *data;
425 struct irq_chip *chip;
426 int ret = -ENOSYS;
427
428 if (!desc)
429 return -EINVAL;
430
431 data = irq_desc_get_irq_data(desc);
432 chip = irq_data_get_irq_chip(data);
433 if (chip && chip->irq_set_vcpu_affinity)
434 ret = chip->irq_set_vcpu_affinity(data, vcpu_info);
435 irq_put_desc_unlock(desc, flags);
436
437 return ret;
438}
439EXPORT_SYMBOL_GPL(irq_set_vcpu_affinity);
440
Jiang Liu79ff1cd2015-06-23 19:52:36 +0200441void __disable_irq(struct irq_desc *desc)
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100442{
Thomas Gleixner3aae9942011-02-04 10:17:52 +0100443 if (!desc->depth++)
Thomas Gleixner87923472011-02-03 12:27:44 +0100444 irq_disable(desc);
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100445}
446
Thomas Gleixner02725e72011-02-12 10:37:36 +0100447static int __disable_irq_nosync(unsigned int irq)
448{
449 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100450 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
Thomas Gleixner02725e72011-02-12 10:37:36 +0100451
452 if (!desc)
453 return -EINVAL;
Jiang Liu79ff1cd2015-06-23 19:52:36 +0200454 __disable_irq(desc);
Thomas Gleixner02725e72011-02-12 10:37:36 +0100455 irq_put_desc_busunlock(desc, flags);
456 return 0;
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/**
460 * disable_irq_nosync - disable an irq without waiting
461 * @irq: Interrupt to disable
462 *
463 * Disable the selected interrupt line. Disables and Enables are
464 * nested.
465 * Unlike disable_irq(), this function does not ensure existing
466 * instances of the IRQ handler have completed before returning.
467 *
468 * This function may be called from IRQ context.
469 */
470void disable_irq_nosync(unsigned int irq)
471{
Thomas Gleixner02725e72011-02-12 10:37:36 +0100472 __disable_irq_nosync(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474EXPORT_SYMBOL(disable_irq_nosync);
475
476/**
477 * disable_irq - disable an irq and wait for completion
478 * @irq: Interrupt to disable
479 *
480 * Disable the selected interrupt line. Enables and Disables are
481 * nested.
482 * This function waits for any pending IRQ handlers for this interrupt
483 * to complete before returning. If you use this function while
484 * holding a resource the IRQ handler may need you will deadlock.
485 *
486 * This function may be called - with care - from IRQ context.
487 */
488void disable_irq(unsigned int irq)
489{
Thomas Gleixner02725e72011-02-12 10:37:36 +0100490 if (!__disable_irq_nosync(irq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 synchronize_irq(irq);
492}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493EXPORT_SYMBOL(disable_irq);
494
Peter Zijlstra02cea392015-02-05 14:06:23 +0100495/**
496 * disable_hardirq - disables an irq and waits for hardirq completion
497 * @irq: Interrupt to disable
498 *
499 * Disable the selected interrupt line. Enables and Disables are
500 * nested.
501 * This function waits for any pending hard IRQ handlers for this
502 * interrupt to complete before returning. If you use this function while
503 * holding a resource the hard IRQ handler may need you will deadlock.
504 *
505 * When used to optimistically disable an interrupt from atomic context
506 * the return value must be checked.
507 *
508 * Returns: false if a threaded handler is active.
509 *
510 * This function may be called - with care - from IRQ context.
511 */
512bool disable_hardirq(unsigned int irq)
513{
514 if (!__disable_irq_nosync(irq))
515 return synchronize_hardirq(irq);
516
517 return false;
518}
519EXPORT_SYMBOL_GPL(disable_hardirq);
520
Jiang Liu79ff1cd2015-06-23 19:52:36 +0200521void __enable_irq(struct irq_desc *desc)
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200522{
523 switch (desc->depth) {
524 case 0:
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100525 err_out:
Jiang Liu79ff1cd2015-06-23 19:52:36 +0200526 WARN(1, KERN_WARNING "Unbalanced enable for IRQ %d\n",
527 irq_desc_get_irq(desc));
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200528 break;
529 case 1: {
Thomas Gleixnerc531e832011-02-08 12:44:58 +0100530 if (desc->istate & IRQS_SUSPENDED)
Rafael J. Wysocki0a0c5162009-03-16 22:33:49 +0100531 goto err_out;
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200532 /* Prevent probing on this irq: */
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +0100533 irq_settings_set_noprobe(desc);
Thomas Gleixner3aae9942011-02-04 10:17:52 +0100534 irq_enable(desc);
Jiang Liu0798abe2015-06-04 12:13:27 +0800535 check_irq_resend(desc);
Thomas Gleixner1adb0852008-04-28 17:01:56 +0200536 /* fall-through */
537 }
538 default:
539 desc->depth--;
540 }
541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/**
544 * enable_irq - enable handling of an irq
545 * @irq: Interrupt to enable
546 *
547 * Undoes the effect of one call to disable_irq(). If this
548 * matches the last disable, processing of interrupts on this
549 * IRQ line is re-enabled.
550 *
Thomas Gleixner70aedd22009-08-13 12:17:48 +0200551 * This function may be called from IRQ context only when
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200552 * desc->irq_data.chip->bus_lock and desc->chip->bus_sync_unlock are NULL !
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
554void enable_irq(unsigned int irq)
555{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100557 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700559 if (!desc)
Matthew Wilcoxc2b5a252005-11-03 07:51:18 -0700560 return;
Thomas Gleixner50f7c032011-02-03 13:23:54 +0100561 if (WARN(!desc->irq_data.chip,
562 KERN_ERR "enable_irq before setup/request_irq: irq %u\n", irq))
Thomas Gleixner02725e72011-02-12 10:37:36 +0100563 goto out;
Thomas Gleixner2656c362010-10-22 14:47:57 +0200564
Jiang Liu79ff1cd2015-06-23 19:52:36 +0200565 __enable_irq(desc);
Thomas Gleixner02725e72011-02-12 10:37:36 +0100566out:
567 irq_put_desc_busunlock(desc, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569EXPORT_SYMBOL(enable_irq);
570
David Brownell0c5d1eb2008-10-01 14:46:18 -0700571static int set_irq_wake_real(unsigned int irq, unsigned int on)
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200572{
Yinghai Lu08678b02008-08-19 20:50:05 -0700573 struct irq_desc *desc = irq_to_desc(irq);
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200574 int ret = -ENXIO;
575
Santosh Shilimkar60f96b42011-09-09 13:59:35 +0530576 if (irq_desc_get_chip(desc)->flags & IRQCHIP_SKIP_SET_WAKE)
577 return 0;
578
Thomas Gleixner2f7e99b2010-09-27 12:45:50 +0000579 if (desc->irq_data.chip->irq_set_wake)
580 ret = desc->irq_data.chip->irq_set_wake(&desc->irq_data, on);
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200581
582 return ret;
583}
584
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700585/**
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100586 * irq_set_irq_wake - control irq power management wakeup
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700587 * @irq: interrupt to control
588 * @on: enable/disable power management wakeup
589 *
David Brownell15a647e2006-07-30 03:03:08 -0700590 * Enable/disable power management wakeup mode, which is
591 * disabled by default. Enables and disables must match,
592 * just as they match for non-wakeup mode support.
593 *
594 * Wakeup mode lets this IRQ wake the system from sleep
595 * states like "suspend to RAM".
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700596 */
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100597int irq_set_irq_wake(unsigned int irq, unsigned int on)
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700598{
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700599 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100600 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200601 int ret = 0;
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700602
Jesper Juhl13863a62011-06-09 23:14:58 +0200603 if (!desc)
604 return -EINVAL;
605
David Brownell15a647e2006-07-30 03:03:08 -0700606 /* wakeup-capable irqs can be shared between drivers that
607 * don't need to have the same sleep mode behaviors.
608 */
David Brownell15a647e2006-07-30 03:03:08 -0700609 if (on) {
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200610 if (desc->wake_depth++ == 0) {
611 ret = set_irq_wake_real(irq, on);
612 if (ret)
613 desc->wake_depth = 0;
614 else
Thomas Gleixner7f942262011-02-10 19:46:26 +0100615 irqd_set(&desc->irq_data, IRQD_WAKEUP_STATE);
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200616 }
David Brownell15a647e2006-07-30 03:03:08 -0700617 } else {
618 if (desc->wake_depth == 0) {
Arjan van de Ven7a2c4772008-07-25 01:45:54 -0700619 WARN(1, "Unbalanced IRQ %d wake disable\n", irq);
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200620 } else if (--desc->wake_depth == 0) {
621 ret = set_irq_wake_real(irq, on);
622 if (ret)
623 desc->wake_depth = 1;
624 else
Thomas Gleixner7f942262011-02-10 19:46:26 +0100625 irqd_clear(&desc->irq_data, IRQD_WAKEUP_STATE);
Uwe Kleine-König2db87322008-07-23 14:42:25 +0200626 }
David Brownell15a647e2006-07-30 03:03:08 -0700627 }
Thomas Gleixner02725e72011-02-12 10:37:36 +0100628 irq_put_desc_busunlock(desc, flags);
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700629 return ret;
630}
Thomas Gleixnera0cd9ca2011-02-10 11:36:33 +0100631EXPORT_SYMBOL(irq_set_irq_wake);
Thomas Gleixnerba9a2332006-06-29 02:24:55 -0700632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633/*
634 * Internal function that tells the architecture code whether a
635 * particular irq has been exclusively allocated or is available
636 * for driver use.
637 */
638int can_request_irq(unsigned int irq, unsigned long irqflags)
639{
Thomas Gleixnercc8c3b72010-03-23 22:40:53 +0100640 unsigned long flags;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +0100641 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
Thomas Gleixner02725e72011-02-12 10:37:36 +0100642 int canrequest = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Yinghai Lu7d94f7c2008-08-19 20:50:14 -0700644 if (!desc)
645 return 0;
646
Thomas Gleixner02725e72011-02-12 10:37:36 +0100647 if (irq_settings_can_request(desc)) {
Ben Hutchings2779db82013-06-28 02:40:30 +0100648 if (!desc->action ||
649 irqflags & desc->action->flags & IRQF_SHARED)
650 canrequest = 1;
Thomas Gleixner02725e72011-02-12 10:37:36 +0100651 }
652 irq_put_desc_unlock(desc, flags);
653 return canrequest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Jiang Liua1ff5412015-06-23 19:47:29 +0200656int __irq_set_trigger(struct irq_desc *desc, unsigned long flags)
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700657{
Thomas Gleixner6b8ff312010-10-01 12:58:38 +0200658 struct irq_chip *chip = desc->irq_data.chip;
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100659 int ret, unmask = 0;
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700660
Thomas Gleixnerb2ba2c32010-09-27 12:45:47 +0000661 if (!chip || !chip->irq_set_type) {
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700662 /*
663 * IRQF_TRIGGER_* but the PIC does not support multiple
664 * flow-types?
665 */
Jiang Liua1ff5412015-06-23 19:47:29 +0200666 pr_debug("No set_type function for IRQ %d (%s)\n",
667 irq_desc_get_irq(desc),
Thomas Gleixnerf5d89472012-04-19 12:06:13 +0200668 chip ? (chip->name ? : "unknown") : "unknown");
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700669 return 0;
670 }
671
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100672 if (chip->flags & IRQCHIP_SET_TYPE_MASKED) {
Thomas Gleixner32f41252011-03-28 14:10:52 +0200673 if (!irqd_irq_masked(&desc->irq_data))
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100674 mask_irq(desc);
Thomas Gleixner32f41252011-03-28 14:10:52 +0200675 if (!irqd_irq_disabled(&desc->irq_data))
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100676 unmask = 1;
677 }
678
Alexander Kuleshov00b992d2016-07-19 15:54:08 +0600679 /* Mask all flags except trigger mode */
680 flags &= IRQ_TYPE_SENSE_MASK;
Thomas Gleixnerb2ba2c32010-09-27 12:45:47 +0000681 ret = chip->irq_set_type(&desc->irq_data, flags);
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700682
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100683 switch (ret) {
684 case IRQ_SET_MASK_OK:
Jiang Liu2cb62542014-11-06 22:20:18 +0800685 case IRQ_SET_MASK_OK_DONE:
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100686 irqd_clear(&desc->irq_data, IRQD_TRIGGER_MASK);
687 irqd_set(&desc->irq_data, flags);
688
689 case IRQ_SET_MASK_OK_NOCOPY:
690 flags = irqd_get_trigger_type(&desc->irq_data);
691 irq_settings_set_trigger_mask(desc, flags);
692 irqd_clear(&desc->irq_data, IRQD_LEVEL);
693 irq_settings_clr_level(desc);
694 if (flags & IRQ_TYPE_LEVEL_MASK) {
695 irq_settings_set_level(desc);
696 irqd_set(&desc->irq_data, IRQD_LEVEL);
697 }
Thomas Gleixner46732472010-06-07 17:53:51 +0200698
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100699 ret = 0;
Thomas Gleixner8fff39e2011-02-21 14:19:42 +0100700 break;
Thomas Gleixner876dbd42011-02-08 17:28:12 +0100701 default:
Andrew Morton97fd75b2012-05-31 16:26:07 -0700702 pr_err("Setting trigger mode %lu for irq %u failed (%pF)\n",
Jiang Liua1ff5412015-06-23 19:47:29 +0200703 flags, irq_desc_get_irq(desc), chip->irq_set_type);
David Brownell0c5d1eb2008-10-01 14:46:18 -0700704 }
Thomas Gleixnerd4d5e082011-02-10 13:16:14 +0100705 if (unmask)
706 unmask_irq(desc);
Uwe Kleine-König82736f42008-07-23 21:28:54 -0700707 return ret;
708}
709
Thomas Gleixner293a7a02012-10-16 15:07:49 -0700710#ifdef CONFIG_HARDIRQS_SW_RESEND
711int irq_set_parent(int irq, int parent_irq)
712{
713 unsigned long flags;
714 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
715
716 if (!desc)
717 return -EINVAL;
718
719 desc->parent_irq = parent_irq;
720
721 irq_put_desc_unlock(desc, flags);
722 return 0;
723}
Sudip Mukherjee3118dac2016-10-06 23:06:43 +0530724EXPORT_SYMBOL_GPL(irq_set_parent);
Thomas Gleixner293a7a02012-10-16 15:07:49 -0700725#endif
726
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200727/*
728 * Default primary interrupt handler for threaded interrupts. Is
729 * assigned as primary handler when request_threaded_irq is called
730 * with handler == NULL. Useful for oneshot interrupts.
731 */
732static irqreturn_t irq_default_primary_handler(int irq, void *dev_id)
733{
734 return IRQ_WAKE_THREAD;
735}
736
Thomas Gleixner399b5da2009-08-13 13:21:38 +0200737/*
738 * Primary handler for nested threaded interrupts. Should never be
739 * called.
740 */
741static irqreturn_t irq_nested_primary_handler(int irq, void *dev_id)
742{
743 WARN(1, "Primary handler called for nested irq %d\n", irq);
744 return IRQ_NONE;
745}
746
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +0200747static irqreturn_t irq_forced_secondary_handler(int irq, void *dev_id)
748{
749 WARN(1, "Secondary action handler called for irq %d\n", irq);
750 return IRQ_NONE;
751}
752
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100753static int irq_wait_for_interrupt(struct irqaction *action)
754{
Ido Yariv550acb12011-12-01 13:55:08 +0200755 set_current_state(TASK_INTERRUPTIBLE);
756
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100757 while (!kthread_should_stop()) {
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100758
759 if (test_and_clear_bit(IRQTF_RUNTHREAD,
760 &action->thread_flags)) {
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100761 __set_current_state(TASK_RUNNING);
762 return 0;
Thomas Gleixnerf48fe812009-03-24 11:46:22 +0100763 }
764 schedule();
Ido Yariv550acb12011-12-01 13:55:08 +0200765 set_current_state(TASK_INTERRUPTIBLE);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100766 }
Ido Yariv550acb12011-12-01 13:55:08 +0200767 __set_current_state(TASK_RUNNING);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100768 return -1;
769}
770
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200771/*
772 * Oneshot interrupts keep the irq line masked until the threaded
773 * handler finished. unmask if the interrupt has not been disabled and
774 * is marked MASKED.
775 */
Thomas Gleixnerb5faba22011-02-23 23:52:13 +0000776static void irq_finalize_oneshot(struct irq_desc *desc,
Alexander Gordeevf3f79e32012-03-21 17:22:35 +0100777 struct irqaction *action)
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200778{
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +0200779 if (!(desc->istate & IRQS_ONESHOT) ||
780 action->handler == irq_forced_secondary_handler)
Thomas Gleixnerb5faba22011-02-23 23:52:13 +0000781 return;
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100782again:
Thomas Gleixner3876ec92010-09-27 12:44:35 +0000783 chip_bus_lock(desc);
Thomas Gleixner239007b2009-11-17 16:46:45 +0100784 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100785
786 /*
787 * Implausible though it may be we need to protect us against
788 * the following scenario:
789 *
790 * The thread is faster done than the hard interrupt handler
791 * on the other CPU. If we unmask the irq line then the
792 * interrupt can come in again and masks the line, leaves due
Thomas Gleixner009b4c32011-02-07 21:48:49 +0100793 * to IRQS_INPROGRESS and the irq line is masked forever.
Thomas Gleixnerb5faba22011-02-23 23:52:13 +0000794 *
795 * This also serializes the state of shared oneshot handlers
796 * versus "desc->threads_onehsot |= action->thread_mask;" in
797 * irq_wake_thread(). See the comment there which explains the
798 * serialization.
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100799 */
Thomas Gleixner32f41252011-03-28 14:10:52 +0200800 if (unlikely(irqd_irq_inprogress(&desc->irq_data))) {
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100801 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner3876ec92010-09-27 12:44:35 +0000802 chip_bus_sync_unlock(desc);
Thomas Gleixner0b1adaa2010-03-09 19:45:54 +0100803 cpu_relax();
804 goto again;
805 }
806
Thomas Gleixnerb5faba22011-02-23 23:52:13 +0000807 /*
808 * Now check again, whether the thread should run. Otherwise
809 * we would clear the threads_oneshot bit of this thread which
810 * was just set.
811 */
Alexander Gordeevf3f79e32012-03-21 17:22:35 +0100812 if (test_bit(IRQTF_RUNTHREAD, &action->thread_flags))
Thomas Gleixnerb5faba22011-02-23 23:52:13 +0000813 goto out_unlock;
814
815 desc->threads_oneshot &= ~action->thread_mask;
816
Thomas Gleixner32f41252011-03-28 14:10:52 +0200817 if (!desc->threads_oneshot && !irqd_irq_disabled(&desc->irq_data) &&
818 irqd_irq_masked(&desc->irq_data))
Thomas Gleixner328a4972014-03-13 19:03:51 +0100819 unmask_threaded_irq(desc);
Thomas Gleixner32f41252011-03-28 14:10:52 +0200820
Thomas Gleixnerb5faba22011-02-23 23:52:13 +0000821out_unlock:
Thomas Gleixner239007b2009-11-17 16:46:45 +0100822 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner3876ec92010-09-27 12:44:35 +0000823 chip_bus_sync_unlock(desc);
Thomas Gleixnerb25c3402009-08-13 12:17:22 +0200824}
825
Bruno Premont61f38262009-07-22 22:22:32 +0200826#ifdef CONFIG_SMP
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100827/*
Chuansheng Liub04c6442014-02-10 16:13:57 +0800828 * Check whether we need to change the affinity of the interrupt thread.
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200829 */
830static void
831irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action)
832{
833 cpumask_var_t mask;
Thomas Gleixner04aa5302012-11-03 11:52:09 +0100834 bool valid = true;
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200835
836 if (!test_and_clear_bit(IRQTF_AFFINITY, &action->thread_flags))
837 return;
838
839 /*
840 * In case we are out of memory we set IRQTF_AFFINITY again and
841 * try again next time
842 */
843 if (!alloc_cpumask_var(&mask, GFP_KERNEL)) {
844 set_bit(IRQTF_AFFINITY, &action->thread_flags);
845 return;
846 }
847
Thomas Gleixner239007b2009-11-17 16:46:45 +0100848 raw_spin_lock_irq(&desc->lock);
Thomas Gleixner04aa5302012-11-03 11:52:09 +0100849 /*
850 * This code is triggered unconditionally. Check the affinity
851 * mask pointer. For CPU_MASK_OFFSTACK=n this is optimized out.
852 */
Matthias Kaehlcke02e3a7d2017-04-12 11:20:30 -0700853 if (cpumask_available(desc->irq_common_data.affinity))
Jiang Liu9df872f2015-06-03 11:47:50 +0800854 cpumask_copy(mask, desc->irq_common_data.affinity);
Thomas Gleixner04aa5302012-11-03 11:52:09 +0100855 else
856 valid = false;
Thomas Gleixner239007b2009-11-17 16:46:45 +0100857 raw_spin_unlock_irq(&desc->lock);
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200858
Thomas Gleixner04aa5302012-11-03 11:52:09 +0100859 if (valid)
860 set_cpus_allowed_ptr(current, mask);
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200861 free_cpumask_var(mask);
862}
Bruno Premont61f38262009-07-22 22:22:32 +0200863#else
864static inline void
865irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action) { }
866#endif
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200867
868/*
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000869 * Interrupts which are not explicitely requested as threaded
870 * interrupts rely on the implicit bh/preempt disable of the hard irq
871 * context. So we need to disable bh here to avoid deadlocks and other
872 * side effects.
873 */
Sebastian Andrzej Siewior3a43e052011-05-31 08:56:11 +0200874static irqreturn_t
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000875irq_forced_thread_fn(struct irq_desc *desc, struct irqaction *action)
876{
Sebastian Andrzej Siewior3a43e052011-05-31 08:56:11 +0200877 irqreturn_t ret;
878
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000879 local_bh_disable();
Sebastian Andrzej Siewior3a43e052011-05-31 08:56:11 +0200880 ret = action->thread_fn(action->irq, action->dev_id);
Alexander Gordeevf3f79e32012-03-21 17:22:35 +0100881 irq_finalize_oneshot(desc, action);
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000882 local_bh_enable();
Sebastian Andrzej Siewior3a43e052011-05-31 08:56:11 +0200883 return ret;
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000884}
885
886/*
Xie XiuQif788e7b2013-10-18 09:12:04 +0800887 * Interrupts explicitly requested as threaded interrupts want to be
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000888 * preemtible - many of them need to sleep and wait for slow busses to
889 * complete.
890 */
Sebastian Andrzej Siewior3a43e052011-05-31 08:56:11 +0200891static irqreturn_t irq_thread_fn(struct irq_desc *desc,
892 struct irqaction *action)
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000893{
Sebastian Andrzej Siewior3a43e052011-05-31 08:56:11 +0200894 irqreturn_t ret;
895
896 ret = action->thread_fn(action->irq, action->dev_id);
Alexander Gordeevf3f79e32012-03-21 17:22:35 +0100897 irq_finalize_oneshot(desc, action);
Sebastian Andrzej Siewior3a43e052011-05-31 08:56:11 +0200898 return ret;
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000899}
900
Ido Yariv7140ea12011-12-02 18:24:12 +0200901static void wake_threads_waitq(struct irq_desc *desc)
902{
Chuansheng Liuc6856892014-02-24 11:29:50 +0800903 if (atomic_dec_and_test(&desc->threads_active))
Ido Yariv7140ea12011-12-02 18:24:12 +0200904 wake_up(&desc->wait_for_threads);
905}
906
Al Viro67d12142012-06-27 11:07:19 +0400907static void irq_thread_dtor(struct callback_head *unused)
Oleg Nesterov4d1d61a2012-05-11 10:59:08 +1000908{
909 struct task_struct *tsk = current;
910 struct irq_desc *desc;
911 struct irqaction *action;
912
913 if (WARN_ON_ONCE(!(current->flags & PF_EXITING)))
914 return;
915
916 action = kthread_data(tsk);
917
Linus Torvaldsfb21aff2012-05-31 18:47:30 -0700918 pr_err("exiting task \"%s\" (%d) is an active IRQ thread (irq %d)\n",
Alan Cox19af3952012-12-18 14:21:25 -0800919 tsk->comm, tsk->pid, action->irq);
Oleg Nesterov4d1d61a2012-05-11 10:59:08 +1000920
921
922 desc = irq_to_desc(action->irq);
923 /*
924 * If IRQTF_RUNTHREAD is set, we need to decrement
925 * desc->threads_active and wake possible waiters.
926 */
927 if (test_and_clear_bit(IRQTF_RUNTHREAD, &action->thread_flags))
928 wake_threads_waitq(desc);
929
930 /* Prevent a stale desc->threads_oneshot */
931 irq_finalize_oneshot(desc, action);
932}
933
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +0200934static void irq_wake_secondary(struct irq_desc *desc, struct irqaction *action)
935{
936 struct irqaction *secondary = action->secondary;
937
938 if (WARN_ON_ONCE(!secondary))
939 return;
940
941 raw_spin_lock_irq(&desc->lock);
942 __irq_wake_thread(desc, secondary);
943 raw_spin_unlock_irq(&desc->lock);
944}
945
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000946/*
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100947 * Interrupt handler thread
948 */
949static int irq_thread(void *data)
950{
Al Viro67d12142012-06-27 11:07:19 +0400951 struct callback_head on_exit_work;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100952 struct irqaction *action = data;
953 struct irq_desc *desc = irq_to_desc(action->irq);
Sebastian Andrzej Siewior3a43e052011-05-31 08:56:11 +0200954 irqreturn_t (*handler_fn)(struct irq_desc *desc,
955 struct irqaction *action);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100956
Alexander Gordeev540b60e2012-03-09 14:59:13 +0100957 if (force_irqthreads && test_bit(IRQTF_FORCED_THREAD,
Thomas Gleixner8d32a302011-02-23 23:52:23 +0000958 &action->thread_flags))
959 handler_fn = irq_forced_thread_fn;
960 else
961 handler_fn = irq_thread_fn;
962
Al Viro41f9d292012-06-26 22:10:04 +0400963 init_task_work(&on_exit_work, irq_thread_dtor);
Oleg Nesterov4d1d61a2012-05-11 10:59:08 +1000964 task_work_add(current, &on_exit_work, false);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100965
Sankara Muthukrishnanf3de44e2012-10-31 15:41:23 -0500966 irq_thread_check_affinity(desc, action);
967
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100968 while (!irq_wait_for_interrupt(action)) {
Ido Yariv7140ea12011-12-02 18:24:12 +0200969 irqreturn_t action_ret;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100970
Thomas Gleixner591d2fb2009-07-21 11:09:39 +0200971 irq_thread_check_affinity(desc, action);
972
Ido Yariv7140ea12011-12-02 18:24:12 +0200973 action_ret = handler_fn(desc, action);
Thomas Gleixner1e77d0a2013-03-07 14:53:45 +0100974 if (action_ret == IRQ_HANDLED)
975 atomic_inc(&desc->threads_handled);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +0200976 if (action_ret == IRQ_WAKE_THREAD)
977 irq_wake_secondary(desc, action);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100978
Ido Yariv7140ea12011-12-02 18:24:12 +0200979 wake_threads_waitq(desc);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100980 }
981
Ido Yariv7140ea12011-12-02 18:24:12 +0200982 /*
983 * This is the regular exit path. __free_irq() is stopping the
984 * thread via kthread_stop() after calling
985 * synchronize_irq(). So neither IRQTF_RUNTHREAD nor the
Thomas Gleixnere04268b2012-03-15 22:55:21 +0100986 * oneshot mask bit can be set. We cannot verify that as we
987 * cannot touch the oneshot mask at this point anymore as
988 * __setup_irq() might have given out currents thread_mask
989 * again.
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100990 */
Oleg Nesterov4d1d61a2012-05-11 10:59:08 +1000991 task_work_cancel(current, irq_thread_dtor);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +0100992 return 0;
993}
994
Thomas Gleixnera92444c2014-02-15 00:55:19 +0000995/**
996 * irq_wake_thread - wake the irq thread for the action identified by dev_id
997 * @irq: Interrupt line
998 * @dev_id: Device identity for which the thread should be woken
999 *
1000 */
1001void irq_wake_thread(unsigned int irq, void *dev_id)
1002{
1003 struct irq_desc *desc = irq_to_desc(irq);
1004 struct irqaction *action;
1005 unsigned long flags;
1006
1007 if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
1008 return;
1009
1010 raw_spin_lock_irqsave(&desc->lock, flags);
Daniel Lezcanof944b5a2016-01-14 10:54:13 +01001011 for_each_action_of_desc(desc, action) {
Thomas Gleixnera92444c2014-02-15 00:55:19 +00001012 if (action->dev_id == dev_id) {
1013 if (action->thread)
1014 __irq_wake_thread(desc, action);
1015 break;
1016 }
1017 }
1018 raw_spin_unlock_irqrestore(&desc->lock, flags);
1019}
1020EXPORT_SYMBOL_GPL(irq_wake_thread);
1021
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001022static int irq_setup_forced_threading(struct irqaction *new)
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001023{
1024 if (!force_irqthreads)
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001025 return 0;
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001026 if (new->flags & (IRQF_NO_THREAD | IRQF_PERCPU | IRQF_ONESHOT))
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001027 return 0;
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001028
Thomas Gleixnereecd08a2018-08-03 14:44:59 +02001029 /*
1030 * No further action required for interrupts which are requested as
1031 * threaded interrupts already
1032 */
1033 if (new->handler == irq_default_primary_handler)
1034 return 0;
1035
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001036 new->flags |= IRQF_ONESHOT;
1037
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001038 /*
1039 * Handle the case where we have a real primary handler and a
1040 * thread handler. We force thread them as well by creating a
1041 * secondary action.
1042 */
Thomas Gleixnereecd08a2018-08-03 14:44:59 +02001043 if (new->handler && new->thread_fn) {
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001044 /* Allocate the secondary action */
1045 new->secondary = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
1046 if (!new->secondary)
1047 return -ENOMEM;
1048 new->secondary->handler = irq_forced_secondary_handler;
1049 new->secondary->thread_fn = new->thread_fn;
1050 new->secondary->dev_id = new->dev_id;
1051 new->secondary->irq = new->irq;
1052 new->secondary->name = new->name;
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001053 }
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001054 /* Deal with the primary handler */
1055 set_bit(IRQTF_FORCED_THREAD, &new->thread_flags);
1056 new->thread_fn = new->handler;
1057 new->handler = irq_default_primary_handler;
1058 return 0;
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001059}
1060
Thomas Gleixnerc1bacba2014-03-08 08:59:58 +01001061static int irq_request_resources(struct irq_desc *desc)
1062{
1063 struct irq_data *d = &desc->irq_data;
1064 struct irq_chip *c = d->chip;
1065
1066 return c->irq_request_resources ? c->irq_request_resources(d) : 0;
1067}
1068
1069static void irq_release_resources(struct irq_desc *desc)
1070{
1071 struct irq_data *d = &desc->irq_data;
1072 struct irq_chip *c = d->chip;
1073
1074 if (c->irq_release_resources)
1075 c->irq_release_resources(d);
1076}
1077
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001078static int
1079setup_irq_thread(struct irqaction *new, unsigned int irq, bool secondary)
1080{
1081 struct task_struct *t;
1082 struct sched_param param = {
1083 .sched_priority = MAX_USER_RT_PRIO/2,
1084 };
1085
1086 if (!secondary) {
1087 t = kthread_create(irq_thread, new, "irq/%d-%s", irq,
1088 new->name);
1089 } else {
1090 t = kthread_create(irq_thread, new, "irq/%d-s-%s", irq,
1091 new->name);
1092 param.sched_priority -= 1;
1093 }
1094
1095 if (IS_ERR(t))
1096 return PTR_ERR(t);
1097
1098 sched_setscheduler_nocheck(t, SCHED_FIFO, &param);
1099
1100 /*
1101 * We keep the reference to the task struct even if
1102 * the thread dies to avoid that the interrupt code
1103 * references an already freed task_struct.
1104 */
1105 get_task_struct(t);
1106 new->thread = t;
1107 /*
1108 * Tell the thread to set its affinity. This is
1109 * important for shared interrupt handlers as we do
1110 * not invoke setup_affinity() for the secondary
1111 * handlers as everything is already set up. Even for
1112 * interrupts marked with IRQF_NO_BALANCE this is
1113 * correct as we want the thread to move to the cpu(s)
1114 * on which the requesting code placed the interrupt.
1115 */
1116 set_bit(IRQTF_AFFINITY, &new->thread_flags);
1117 return 0;
1118}
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120/*
1121 * Internal function to register an irqaction - typically used to
1122 * allocate special interrupts that are part of the architecture.
1123 */
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001124static int
Ingo Molnar327ec562009-02-15 11:21:37 +01001125__setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
Ingo Molnarf17c7542009-02-17 20:43:37 +01001127 struct irqaction *old, **old_ptr;
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001128 unsigned long flags, thread_mask = 0;
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001129 int ret, nested, shared = 0;
1130 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001132 if (!desc)
Matthew Wilcoxc2b5a252005-11-03 07:51:18 -07001133 return -EINVAL;
1134
Thomas Gleixner6b8ff312010-10-01 12:58:38 +02001135 if (desc->irq_data.chip == &no_irq_chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 return -ENOSYS;
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001137 if (!try_module_get(desc->owner))
1138 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001140 new->irq = irq;
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 /*
Jon Hunter4b357da2016-06-07 16:12:27 +01001143 * If the trigger type is not specified by the caller,
1144 * then use the default for this interrupt.
1145 */
1146 if (!(new->flags & IRQF_TRIGGER_MASK))
1147 new->flags |= irqd_get_trigger_type(&desc->irq_data);
1148
1149 /*
Thomas Gleixner399b5da2009-08-13 13:21:38 +02001150 * Check whether the interrupt nests into another interrupt
1151 * thread.
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001152 */
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +01001153 nested = irq_settings_is_nested_thread(desc);
Thomas Gleixner399b5da2009-08-13 13:21:38 +02001154 if (nested) {
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001155 if (!new->thread_fn) {
1156 ret = -EINVAL;
1157 goto out_mput;
1158 }
Thomas Gleixner399b5da2009-08-13 13:21:38 +02001159 /*
1160 * Replace the primary handler which was provided from
1161 * the driver for non nested interrupt handling by the
1162 * dummy function which warns when called.
1163 */
1164 new->handler = irq_nested_primary_handler;
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001165 } else {
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001166 if (irq_settings_can_thread(desc)) {
1167 ret = irq_setup_forced_threading(new);
1168 if (ret)
1169 goto out_mput;
1170 }
Thomas Gleixner399b5da2009-08-13 13:21:38 +02001171 }
1172
1173 /*
1174 * Create a handler thread when a thread function is supplied
1175 * and the interrupt does not nest into another interrupt
1176 * thread.
1177 */
1178 if (new->thread_fn && !nested) {
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001179 ret = setup_irq_thread(new, irq, false);
1180 if (ret)
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001181 goto out_mput;
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001182 if (new->secondary) {
1183 ret = setup_irq_thread(new->secondary, irq, true);
1184 if (ret)
1185 goto out_thread;
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001186 }
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001187 }
1188
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001189 if (!alloc_cpumask_var(&mask, GFP_KERNEL)) {
1190 ret = -ENOMEM;
1191 goto out_thread;
1192 }
1193
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001194 /*
Thomas Gleixnerdc9b2292012-07-13 19:29:45 +02001195 * Drivers are often written to work w/o knowledge about the
1196 * underlying irq chip implementation, so a request for a
1197 * threaded irq without a primary hard irq context handler
1198 * requires the ONESHOT flag to be set. Some irq chips like
1199 * MSI based interrupts are per se one shot safe. Check the
1200 * chip flags, so we can avoid the unmask dance at the end of
1201 * the threaded handler for those.
1202 */
1203 if (desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)
1204 new->flags &= ~IRQF_ONESHOT;
1205
1206 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * The following block of code has to be executed atomically
1208 */
Thomas Gleixner239007b2009-11-17 16:46:45 +01001209 raw_spin_lock_irqsave(&desc->lock, flags);
Ingo Molnarf17c7542009-02-17 20:43:37 +01001210 old_ptr = &desc->action;
1211 old = *old_ptr;
Ingo Molnar06fcb0c2006-06-29 02:24:40 -07001212 if (old) {
Thomas Gleixnere76de9f2006-06-29 02:24:56 -07001213 /*
1214 * Can't share interrupts unless both agree to and are
1215 * the same type (level, edge, polarity). So both flag
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001216 * fields must have IRQF_SHARED set and the bits which
Thomas Gleixner9d591ed2011-02-23 23:52:16 +00001217 * set the trigger type must match. Also all must
1218 * agree on ONESHOT.
Thomas Gleixnere76de9f2006-06-29 02:24:56 -07001219 */
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001220 if (!((old->flags & new->flags) & IRQF_SHARED) ||
Greg Kroah-Hartman6c9ca572018-03-30 10:53:44 +02001221 ((old->flags ^ new->flags) & IRQF_TRIGGER_MASK) ||
Thomas Gleixnerf5d89472012-04-19 12:06:13 +02001222 ((old->flags ^ new->flags) & IRQF_ONESHOT))
Dimitri Sivanichf5163422006-03-25 03:08:23 -08001223 goto mismatch;
1224
Dimitri Sivanichf5163422006-03-25 03:08:23 -08001225 /* All handlers must agree on per-cpuness */
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001226 if ((old->flags & IRQF_PERCPU) !=
1227 (new->flags & IRQF_PERCPU))
Dimitri Sivanichf5163422006-03-25 03:08:23 -08001228 goto mismatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 /* add new interrupt at end of irq queue */
1231 do {
Thomas Gleixner52abb702012-03-06 23:18:54 +01001232 /*
1233 * Or all existing action->thread_mask bits,
1234 * so we can find the next zero bit for this
1235 * new action.
1236 */
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001237 thread_mask |= old->thread_mask;
Ingo Molnarf17c7542009-02-17 20:43:37 +01001238 old_ptr = &old->next;
1239 old = *old_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 } while (old);
1241 shared = 1;
1242 }
1243
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001244 /*
Thomas Gleixner52abb702012-03-06 23:18:54 +01001245 * Setup the thread mask for this irqaction for ONESHOT. For
1246 * !ONESHOT irqs the thread mask is 0 so we can avoid a
1247 * conditional in irq_wake_thread().
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001248 */
Thomas Gleixner52abb702012-03-06 23:18:54 +01001249 if (new->flags & IRQF_ONESHOT) {
1250 /*
1251 * Unlikely to have 32 resp 64 irqs sharing one line,
1252 * but who knows.
1253 */
1254 if (thread_mask == ~0UL) {
1255 ret = -EBUSY;
1256 goto out_mask;
1257 }
1258 /*
1259 * The thread_mask for the action is or'ed to
1260 * desc->thread_active to indicate that the
1261 * IRQF_ONESHOT thread handler has been woken, but not
1262 * yet finished. The bit is cleared when a thread
1263 * completes. When all threads of a shared interrupt
1264 * line have completed desc->threads_active becomes
1265 * zero and the interrupt line is unmasked. See
1266 * handle.c:irq_wake_thread() for further information.
1267 *
1268 * If no thread is woken by primary (hard irq context)
1269 * interrupt handlers, then desc->threads_active is
1270 * also checked for zero to unmask the irq line in the
1271 * affected hard irq flow handlers
1272 * (handle_[fasteoi|level]_irq).
1273 *
1274 * The new action gets the first zero bit of
1275 * thread_mask assigned. See the loop above which or's
1276 * all existing action->thread_mask bits.
1277 */
1278 new->thread_mask = 1 << ffz(thread_mask);
Thomas Gleixner1c6c6952012-04-19 10:35:17 +02001279
Thomas Gleixnerdc9b2292012-07-13 19:29:45 +02001280 } else if (new->handler == irq_default_primary_handler &&
1281 !(desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)) {
Thomas Gleixner1c6c6952012-04-19 10:35:17 +02001282 /*
1283 * The interrupt was requested with handler = NULL, so
1284 * we use the default primary handler for it. But it
1285 * does not have the oneshot flag set. In combination
1286 * with level interrupts this is deadly, because the
1287 * default primary handler just wakes the thread, then
1288 * the irq lines is reenabled, but the device still
1289 * has the level irq asserted. Rinse and repeat....
1290 *
1291 * While this works for edge type interrupts, we play
1292 * it safe and reject unconditionally because we can't
1293 * say for sure which type this interrupt really
1294 * has. The type flags are unreliable as the
1295 * underlying chip implementation can override them.
1296 */
Andrew Morton97fd75b2012-05-31 16:26:07 -07001297 pr_err("Threaded irq requested with handler=NULL and !ONESHOT for irq %d\n",
Thomas Gleixner1c6c6952012-04-19 10:35:17 +02001298 irq);
1299 ret = -EINVAL;
1300 goto out_mask;
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001301 }
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if (!shared) {
Thomas Gleixnerc1bacba2014-03-08 08:59:58 +01001304 ret = irq_request_resources(desc);
1305 if (ret) {
1306 pr_err("Failed to request resources for %s (irq %d) on irqchip %s\n",
1307 new->name, irq, desc->irq_data.chip->name);
1308 goto out_mask;
1309 }
1310
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001311 init_waitqueue_head(&desc->wait_for_threads);
1312
Uwe Kleine-König82736f42008-07-23 21:28:54 -07001313 /* Setup the type (level, edge polarity) if configured: */
1314 if (new->flags & IRQF_TRIGGER_MASK) {
Jiang Liua1ff5412015-06-23 19:47:29 +02001315 ret = __irq_set_trigger(desc,
1316 new->flags & IRQF_TRIGGER_MASK);
Uwe Kleine-König82736f42008-07-23 21:28:54 -07001317
Heiner Kallweit76628322017-06-11 00:38:36 +02001318 if (ret) {
1319 irq_release_resources(desc);
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001320 goto out_mask;
Heiner Kallweit76628322017-06-11 00:38:36 +02001321 }
Thomas Gleixner091738a2011-02-14 20:16:43 +01001322 }
Ahmed S. Darwishf75d2222007-05-08 00:27:55 -07001323
Thomas Gleixner009b4c32011-02-07 21:48:49 +01001324 desc->istate &= ~(IRQS_AUTODETECT | IRQS_SPURIOUS_DISABLED | \
Thomas Gleixner32f41252011-03-28 14:10:52 +02001325 IRQS_ONESHOT | IRQS_WAITING);
1326 irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS);
Thomas Gleixner94d39e12006-06-29 02:24:50 -07001327
Thomas Gleixnera0056772011-02-08 17:11:03 +01001328 if (new->flags & IRQF_PERCPU) {
1329 irqd_set(&desc->irq_data, IRQD_PER_CPU);
1330 irq_settings_set_per_cpu(desc);
1331 }
Thomas Gleixner6a58fb32011-02-08 15:40:05 +01001332
Thomas Gleixnerb25c3402009-08-13 12:17:22 +02001333 if (new->flags & IRQF_ONESHOT)
Thomas Gleixner3d67bae2011-02-07 21:02:10 +01001334 desc->istate |= IRQS_ONESHOT;
Thomas Gleixnerb25c3402009-08-13 12:17:22 +02001335
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +01001336 if (irq_settings_can_autoenable(desc))
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +01001337 irq_startup(desc, true);
Thomas Gleixner46999232011-02-02 21:41:14 +00001338 else
Thomas Gleixnere76de9f2006-06-29 02:24:56 -07001339 /* Undo nested disables: */
1340 desc->depth = 1;
Max Krasnyansky18404752008-05-29 11:02:52 -07001341
Thomas Gleixner612e3682008-11-07 13:58:46 +01001342 /* Exclude IRQ from balancing if requested */
Thomas Gleixnera0056772011-02-08 17:11:03 +01001343 if (new->flags & IRQF_NOBALANCING) {
1344 irq_settings_set_no_balancing(desc);
1345 irqd_set(&desc->irq_data, IRQD_NO_BALANCING);
1346 }
Thomas Gleixner612e3682008-11-07 13:58:46 +01001347
Max Krasnyansky18404752008-05-29 11:02:52 -07001348 /* Set default affinity mask once everything is setup */
Jiang Liua8a98ea2015-06-04 12:13:30 +08001349 setup_affinity(desc, mask);
David Brownell0c5d1eb2008-10-01 14:46:18 -07001350
Thomas Gleixner876dbd42011-02-08 17:28:12 +01001351 } else if (new->flags & IRQF_TRIGGER_MASK) {
1352 unsigned int nmsk = new->flags & IRQF_TRIGGER_MASK;
Thomas Gleixner7ee7e872016-11-07 19:57:00 +01001353 unsigned int omsk = irqd_get_trigger_type(&desc->irq_data);
Thomas Gleixner876dbd42011-02-08 17:28:12 +01001354
1355 if (nmsk != omsk)
1356 /* hope the handler works with current trigger mode */
Joe Perchesa395d6a2016-03-22 14:28:09 -07001357 pr_warn("irq %d uses trigger mode %u; requested %u\n",
Thomas Gleixner7ee7e872016-11-07 19:57:00 +01001358 irq, omsk, nmsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
Uwe Kleine-König82736f42008-07-23 21:28:54 -07001360
Ingo Molnarf17c7542009-02-17 20:43:37 +01001361 *old_ptr = new;
Uwe Kleine-König82736f42008-07-23 21:28:54 -07001362
Thomas Gleixnercab303b2014-08-28 11:44:31 +02001363 irq_pm_install_action(desc, new);
1364
Linus Torvalds8528b0f2007-01-23 14:16:31 -08001365 /* Reset broken irq detection when installing new handler */
1366 desc->irq_count = 0;
1367 desc->irqs_unhandled = 0;
Thomas Gleixner1adb0852008-04-28 17:01:56 +02001368
1369 /*
1370 * Check whether we disabled the irq via the spurious handler
1371 * before. Reenable it and give it another chance.
1372 */
Thomas Gleixner7acdd532011-02-07 20:40:54 +01001373 if (shared && (desc->istate & IRQS_SPURIOUS_DISABLED)) {
1374 desc->istate &= ~IRQS_SPURIOUS_DISABLED;
Jiang Liu79ff1cd2015-06-23 19:52:36 +02001375 __enable_irq(desc);
Thomas Gleixner1adb0852008-04-28 17:01:56 +02001376 }
1377
Thomas Gleixner239007b2009-11-17 16:46:45 +01001378 raw_spin_unlock_irqrestore(&desc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Thomas Gleixner69ab8492009-08-17 14:07:16 +02001380 /*
1381 * Strictly no need to wake it up, but hung_task complains
1382 * when no hard interrupt wakes the thread up.
1383 */
1384 if (new->thread)
1385 wake_up_process(new->thread);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001386 if (new->secondary)
1387 wake_up_process(new->secondary->thread);
Thomas Gleixner69ab8492009-08-17 14:07:16 +02001388
Yinghai Lu2c6927a2008-08-19 20:50:11 -07001389 register_irq_proc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 new->dir = NULL;
1391 register_handler_proc(irq, new);
Xiaotian Feng4f5058c2011-04-02 19:39:35 +08001392 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 return 0;
Dimitri Sivanichf5163422006-03-25 03:08:23 -08001395
1396mismatch:
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001397 if (!(new->flags & IRQF_PROBE_SHARED)) {
Andrew Morton97fd75b2012-05-31 16:26:07 -07001398 pr_err("Flags mismatch irq %d. %08x (%s) vs. %08x (%s)\n",
Thomas Gleixnerf5d89472012-04-19 12:06:13 +02001399 irq, new->flags, new->name, old->flags, old->name);
1400#ifdef CONFIG_DEBUG_SHIRQ
Andrew Morton13e87ec2006-04-27 18:39:18 -07001401 dump_stack();
Alan Cox3f050442007-02-12 00:52:04 -08001402#endif
Thomas Gleixnerf5d89472012-04-19 12:06:13 +02001403 }
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001404 ret = -EBUSY;
1405
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001406out_mask:
Dan Carpenter1c389792011-03-17 14:43:07 +03001407 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001408 free_cpumask_var(mask);
1409
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001410out_thread:
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001411 if (new->thread) {
1412 struct task_struct *t = new->thread;
1413
1414 new->thread = NULL;
Alexander Gordeev05d74ef2012-03-09 14:59:40 +01001415 kthread_stop(t);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001416 put_task_struct(t);
1417 }
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001418 if (new->secondary && new->secondary->thread) {
1419 struct task_struct *t = new->secondary->thread;
1420
1421 new->secondary->thread = NULL;
1422 kthread_stop(t);
1423 put_task_struct(t);
1424 }
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001425out_mput:
1426 module_put(desc->owner);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001427 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
1430/**
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001431 * setup_irq - setup an interrupt
1432 * @irq: Interrupt line to setup
1433 * @act: irqaction for the interrupt
1434 *
1435 * Used to statically setup interrupts in the early boot process.
1436 */
1437int setup_irq(unsigned int irq, struct irqaction *act)
1438{
David Daney986c0112011-02-09 16:04:25 -08001439 int retval;
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001440 struct irq_desc *desc = irq_to_desc(irq);
1441
Jon Hunter9b5d5852016-05-10 16:14:35 +01001442 if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001443 return -EINVAL;
Jon Hunterbe45beb2016-06-07 16:12:29 +01001444
1445 retval = irq_chip_pm_get(&desc->irq_data);
1446 if (retval < 0)
1447 return retval;
1448
David Daney986c0112011-02-09 16:04:25 -08001449 chip_bus_lock(desc);
1450 retval = __setup_irq(irq, desc, act);
1451 chip_bus_sync_unlock(desc);
1452
Jon Hunterbe45beb2016-06-07 16:12:29 +01001453 if (retval)
1454 irq_chip_pm_put(&desc->irq_data);
1455
David Daney986c0112011-02-09 16:04:25 -08001456 return retval;
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001457}
Magnus Dammeb53b4e2009-03-12 21:05:59 +09001458EXPORT_SYMBOL_GPL(setup_irq);
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001459
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001460/*
Magnus Dammcbf94f02009-03-12 21:05:51 +09001461 * Internal function to unregister an irqaction - used to free
1462 * regular and special interrupts that are part of the architecture.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 */
Magnus Dammcbf94f02009-03-12 21:05:51 +09001464static struct irqaction *__free_irq(unsigned int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001466 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnarf17c7542009-02-17 20:43:37 +01001467 struct irqaction *action, **action_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 unsigned long flags;
1469
Ingo Molnarae88a232009-02-15 11:29:50 +01001470 WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001471
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001472 if (!desc)
Magnus Dammf21cfb22009-03-12 21:05:42 +09001473 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Thomas Gleixnerabc7e402015-12-13 18:12:30 +01001475 chip_bus_lock(desc);
Thomas Gleixner239007b2009-11-17 16:46:45 +01001476 raw_spin_lock_irqsave(&desc->lock, flags);
Ingo Molnarae88a232009-02-15 11:29:50 +01001477
1478 /*
1479 * There can be multiple actions per IRQ descriptor, find the right
1480 * one based on the dev_id:
1481 */
Ingo Molnarf17c7542009-02-17 20:43:37 +01001482 action_ptr = &desc->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 for (;;) {
Ingo Molnarf17c7542009-02-17 20:43:37 +01001484 action = *action_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Ingo Molnarae88a232009-02-15 11:29:50 +01001486 if (!action) {
1487 WARN(1, "Trying to free already-free IRQ %d\n", irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +01001488 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerabc7e402015-12-13 18:12:30 +01001489 chip_bus_sync_unlock(desc);
Magnus Dammf21cfb22009-03-12 21:05:42 +09001490 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
Ingo Molnarae88a232009-02-15 11:29:50 +01001492
Ingo Molnar8316e382009-02-17 20:28:29 +01001493 if (action->dev_id == dev_id)
1494 break;
Ingo Molnarf17c7542009-02-17 20:43:37 +01001495 action_ptr = &action->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
Ingo Molnarae88a232009-02-15 11:29:50 +01001497
1498 /* Found it - now remove it from the list of entries: */
Ingo Molnarf17c7542009-02-17 20:43:37 +01001499 *action_ptr = action->next;
Ingo Molnarae88a232009-02-15 11:29:50 +01001500
Thomas Gleixnercab303b2014-08-28 11:44:31 +02001501 irq_pm_remove_action(desc, action);
1502
Ingo Molnarae88a232009-02-15 11:29:50 +01001503 /* If this was the last handler, shut down the IRQ line: */
Thomas Gleixnerc1bacba2014-03-08 08:59:58 +01001504 if (!desc->action) {
Thomas Gleixnere9849772015-10-09 23:28:58 +02001505 irq_settings_clr_disable_unlazy(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +00001506 irq_shutdown(desc);
Thomas Gleixnerc1bacba2014-03-08 08:59:58 +01001507 irq_release_resources(desc);
1508 }
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001509
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -07001510#ifdef CONFIG_SMP
1511 /* make sure affinity_hint is cleaned up */
1512 if (WARN_ON_ONCE(desc->affinity_hint))
1513 desc->affinity_hint = NULL;
1514#endif
1515
Thomas Gleixner239007b2009-11-17 16:46:45 +01001516 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerabc7e402015-12-13 18:12:30 +01001517 chip_bus_sync_unlock(desc);
Ingo Molnarae88a232009-02-15 11:29:50 +01001518
1519 unregister_handler_proc(irq, action);
1520
1521 /* Make sure it's not being used on another CPU: */
1522 synchronize_irq(irq);
1523
1524#ifdef CONFIG_DEBUG_SHIRQ
1525 /*
1526 * It's a shared IRQ -- the driver ought to be prepared for an IRQ
1527 * event to happen even now it's being freed, so let's make sure that
1528 * is so by doing an extra call to the handler ....
1529 *
1530 * ( We do this after actually deregistering it, to make sure that a
1531 * 'real' IRQ doesn't run in * parallel with our fake. )
1532 */
1533 if (action->flags & IRQF_SHARED) {
1534 local_irq_save(flags);
1535 action->handler(irq, dev_id);
1536 local_irq_restore(flags);
1537 }
1538#endif
Linus Torvalds2d860ad2009-08-13 13:05:10 -07001539
1540 if (action->thread) {
Alexander Gordeev05d74ef2012-03-09 14:59:40 +01001541 kthread_stop(action->thread);
Linus Torvalds2d860ad2009-08-13 13:05:10 -07001542 put_task_struct(action->thread);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001543 if (action->secondary && action->secondary->thread) {
1544 kthread_stop(action->secondary->thread);
1545 put_task_struct(action->secondary->thread);
1546 }
Linus Torvalds2d860ad2009-08-13 13:05:10 -07001547 }
1548
Jon Hunterbe45beb2016-06-07 16:12:29 +01001549 irq_chip_pm_put(&desc->irq_data);
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001550 module_put(desc->owner);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001551 kfree(action->secondary);
Magnus Dammf21cfb22009-03-12 21:05:42 +09001552 return action;
1553}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555/**
Magnus Dammcbf94f02009-03-12 21:05:51 +09001556 * remove_irq - free an interrupt
1557 * @irq: Interrupt line to free
1558 * @act: irqaction for the interrupt
1559 *
1560 * Used to remove interrupts statically setup by the early boot process.
1561 */
1562void remove_irq(unsigned int irq, struct irqaction *act)
1563{
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001564 struct irq_desc *desc = irq_to_desc(irq);
1565
1566 if (desc && !WARN_ON(irq_settings_is_per_cpu_devid(desc)))
1567 __free_irq(irq, act->dev_id);
Magnus Dammcbf94f02009-03-12 21:05:51 +09001568}
Magnus Dammeb53b4e2009-03-12 21:05:59 +09001569EXPORT_SYMBOL_GPL(remove_irq);
Magnus Dammcbf94f02009-03-12 21:05:51 +09001570
1571/**
Magnus Dammf21cfb22009-03-12 21:05:42 +09001572 * free_irq - free an interrupt allocated with request_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 * @irq: Interrupt line to free
1574 * @dev_id: Device identity to free
1575 *
1576 * Remove an interrupt handler. The handler is removed and if the
1577 * interrupt line is no longer in use by any driver it is disabled.
1578 * On a shared IRQ the caller must ensure the interrupt is disabled
1579 * on the card it drives before calling this function. The function
1580 * does not return until any executing interrupts for this IRQ
1581 * have completed.
1582 *
1583 * This function must not be called from interrupt context.
1584 */
1585void free_irq(unsigned int irq, void *dev_id)
1586{
Thomas Gleixner70aedd22009-08-13 12:17:48 +02001587 struct irq_desc *desc = irq_to_desc(irq);
1588
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001589 if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
Thomas Gleixner70aedd22009-08-13 12:17:48 +02001590 return;
1591
Ben Hutchingscd7eab42011-01-19 21:01:44 +00001592#ifdef CONFIG_SMP
1593 if (WARN_ON(desc->affinity_notify))
1594 desc->affinity_notify = NULL;
1595#endif
1596
Magnus Dammcbf94f02009-03-12 21:05:51 +09001597 kfree(__free_irq(irq, dev_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599EXPORT_SYMBOL(free_irq);
1600
1601/**
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001602 * request_threaded_irq - allocate an interrupt line
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 * @irq: Interrupt line to allocate
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001604 * @handler: Function to be called when the IRQ occurs.
1605 * Primary handler for threaded interrupts
Thomas Gleixnerb25c3402009-08-13 12:17:22 +02001606 * If NULL and thread_fn != NULL the default
1607 * primary handler is installed
Thomas Gleixnerf48fe812009-03-24 11:46:22 +01001608 * @thread_fn: Function called from the irq handler thread
1609 * If NULL, no irq thread is created
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 * @irqflags: Interrupt type flags
1611 * @devname: An ascii name for the claiming device
1612 * @dev_id: A cookie passed back to the handler function
1613 *
1614 * This call allocates interrupt resources and enables the
1615 * interrupt line and IRQ handling. From the point this
1616 * call is made your handler function may be invoked. Since
1617 * your handler function must clear any interrupt the board
1618 * raises, you must take care both to initialise your hardware
1619 * and to set up the interrupt handler in the right order.
1620 *
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001621 * If you want to set up a threaded irq handler for your device
Javi Merino6d21af42011-10-26 10:16:11 +01001622 * then you need to supply @handler and @thread_fn. @handler is
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001623 * still called in hard interrupt context and has to check
1624 * whether the interrupt originates from the device. If yes it
1625 * needs to disable the interrupt on the device and return
Steven Rostedt39a2edd2009-05-12 14:35:54 -04001626 * IRQ_WAKE_THREAD which will wake up the handler thread and run
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001627 * @thread_fn. This split handler design is necessary to support
1628 * shared interrupts.
1629 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 * Dev_id must be globally unique. Normally the address of the
1631 * device data structure is used as the cookie. Since the handler
1632 * receives this value it makes sense to use it.
1633 *
1634 * If your interrupt is shared you must pass a non NULL dev_id
1635 * as this is required when freeing the interrupt.
1636 *
1637 * Flags:
1638 *
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001639 * IRQF_SHARED Interrupt is shared
David Brownell0c5d1eb2008-10-01 14:46:18 -07001640 * IRQF_TRIGGER_* Specify active edge(s) or level
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 *
1642 */
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001643int request_threaded_irq(unsigned int irq, irq_handler_t handler,
1644 irq_handler_t thread_fn, unsigned long irqflags,
1645 const char *devname, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
Ingo Molnar06fcb0c2006-06-29 02:24:40 -07001647 struct irqaction *action;
Yinghai Lu08678b02008-08-19 20:50:05 -07001648 struct irq_desc *desc;
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001649 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Chen Fane237a552016-02-15 12:52:01 +08001651 if (irq == IRQ_NOTCONNECTED)
1652 return -ENOTCONN;
1653
David Brownell470c6622008-12-01 14:31:37 -08001654 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 * Sanity-check: shared interrupts must pass in a real dev-ID,
1656 * otherwise we'll have trouble later trying to figure out
1657 * which interrupt is which (messes up the interrupt freeing
1658 * logic etc).
Rafael J. Wysocki17f48032015-02-27 00:07:55 +01001659 *
1660 * Also IRQF_COND_SUSPEND only makes sense for shared interrupts and
1661 * it cannot be set along with IRQF_NO_SUSPEND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 */
Rafael J. Wysocki17f48032015-02-27 00:07:55 +01001663 if (((irqflags & IRQF_SHARED) && !dev_id) ||
1664 (!(irqflags & IRQF_SHARED) && (irqflags & IRQF_COND_SUSPEND)) ||
1665 ((irqflags & IRQF_NO_SUSPEND) && (irqflags & IRQF_COND_SUSPEND)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return -EINVAL;
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001667
Yinghai Lucb5bc832008-08-19 20:50:17 -07001668 desc = irq_to_desc(irq);
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001669 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 return -EINVAL;
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001671
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001672 if (!irq_settings_can_request(desc) ||
1673 WARN_ON(irq_settings_is_per_cpu_devid(desc)))
Thomas Gleixner6550c772006-06-29 02:24:49 -07001674 return -EINVAL;
Thomas Gleixnerb25c3402009-08-13 12:17:22 +02001675
1676 if (!handler) {
1677 if (!thread_fn)
1678 return -EINVAL;
1679 handler = irq_default_primary_handler;
1680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Thomas Gleixner45535732009-02-22 23:00:32 +01001682 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (!action)
1684 return -ENOMEM;
1685
1686 action->handler = handler;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001687 action->thread_fn = thread_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 action->flags = irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 action->name = devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 action->dev_id = dev_id;
1691
Jon Hunterbe45beb2016-06-07 16:12:29 +01001692 retval = irq_chip_pm_get(&desc->irq_data);
Shawn Lin4396f462016-08-22 16:21:52 +08001693 if (retval < 0) {
1694 kfree(action);
Jon Hunterbe45beb2016-06-07 16:12:29 +01001695 return retval;
Shawn Lin4396f462016-08-22 16:21:52 +08001696 }
Jon Hunterbe45beb2016-06-07 16:12:29 +01001697
Thomas Gleixner3876ec92010-09-27 12:44:35 +00001698 chip_bus_lock(desc);
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001699 retval = __setup_irq(irq, desc, action);
Thomas Gleixner3876ec92010-09-27 12:44:35 +00001700 chip_bus_sync_unlock(desc);
Thomas Gleixner70aedd22009-08-13 12:17:48 +02001701
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001702 if (retval) {
Jon Hunterbe45beb2016-06-07 16:12:29 +01001703 irq_chip_pm_put(&desc->irq_data);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001704 kfree(action->secondary);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001705 kfree(action);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001706 }
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001707
Thomas Gleixner6d83f942011-02-18 23:27:23 +01001708#ifdef CONFIG_DEBUG_SHIRQ_FIXME
Luis Henriques6ce51c42009-04-01 18:06:35 +01001709 if (!retval && (irqflags & IRQF_SHARED)) {
David Woodhousea304e1b2007-02-12 00:52:00 -08001710 /*
1711 * It's a shared IRQ -- the driver ought to be prepared for it
1712 * to happen immediately, so let's make sure....
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001713 * We disable the irq to make sure that a 'real' IRQ doesn't
1714 * run in parallel with our fake.
David Woodhousea304e1b2007-02-12 00:52:00 -08001715 */
Jarek Poplawski59845b12007-08-30 23:56:34 -07001716 unsigned long flags;
David Woodhousea304e1b2007-02-12 00:52:00 -08001717
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001718 disable_irq(irq);
Jarek Poplawski59845b12007-08-30 23:56:34 -07001719 local_irq_save(flags);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001720
Jarek Poplawski59845b12007-08-30 23:56:34 -07001721 handler(irq, dev_id);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001722
Jarek Poplawski59845b12007-08-30 23:56:34 -07001723 local_irq_restore(flags);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001724 enable_irq(irq);
David Woodhousea304e1b2007-02-12 00:52:00 -08001725 }
1726#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 return retval;
1728}
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001729EXPORT_SYMBOL(request_threaded_irq);
Marc Zyngierae731f82010-03-15 22:56:33 +00001730
1731/**
1732 * request_any_context_irq - allocate an interrupt line
1733 * @irq: Interrupt line to allocate
1734 * @handler: Function to be called when the IRQ occurs.
1735 * Threaded handler for threaded interrupts.
1736 * @flags: Interrupt type flags
1737 * @name: An ascii name for the claiming device
1738 * @dev_id: A cookie passed back to the handler function
1739 *
1740 * This call allocates interrupt resources and enables the
1741 * interrupt line and IRQ handling. It selects either a
1742 * hardirq or threaded handling method depending on the
1743 * context.
1744 *
1745 * On failure, it returns a negative value. On success,
1746 * it returns either IRQC_IS_HARDIRQ or IRQC_IS_NESTED.
1747 */
1748int request_any_context_irq(unsigned int irq, irq_handler_t handler,
1749 unsigned long flags, const char *name, void *dev_id)
1750{
Chen Fane237a552016-02-15 12:52:01 +08001751 struct irq_desc *desc;
Marc Zyngierae731f82010-03-15 22:56:33 +00001752 int ret;
1753
Chen Fane237a552016-02-15 12:52:01 +08001754 if (irq == IRQ_NOTCONNECTED)
1755 return -ENOTCONN;
1756
1757 desc = irq_to_desc(irq);
Marc Zyngierae731f82010-03-15 22:56:33 +00001758 if (!desc)
1759 return -EINVAL;
1760
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +01001761 if (irq_settings_is_nested_thread(desc)) {
Marc Zyngierae731f82010-03-15 22:56:33 +00001762 ret = request_threaded_irq(irq, NULL, handler,
1763 flags, name, dev_id);
1764 return !ret ? IRQC_IS_NESTED : ret;
1765 }
1766
1767 ret = request_irq(irq, handler, flags, name, dev_id);
1768 return !ret ? IRQC_IS_HARDIRQ : ret;
1769}
1770EXPORT_SYMBOL_GPL(request_any_context_irq);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001771
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001772void enable_percpu_irq(unsigned int irq, unsigned int type)
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001773{
1774 unsigned int cpu = smp_processor_id();
1775 unsigned long flags;
1776 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
1777
1778 if (!desc)
1779 return;
1780
Marc Zyngierf35ad082016-06-13 10:39:44 +01001781 /*
1782 * If the trigger type is not specified by the caller, then
1783 * use the default for this interrupt.
1784 */
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001785 type &= IRQ_TYPE_SENSE_MASK;
Marc Zyngierf35ad082016-06-13 10:39:44 +01001786 if (type == IRQ_TYPE_NONE)
1787 type = irqd_get_trigger_type(&desc->irq_data);
1788
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001789 if (type != IRQ_TYPE_NONE) {
1790 int ret;
1791
Jiang Liua1ff5412015-06-23 19:47:29 +02001792 ret = __irq_set_trigger(desc, type);
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001793
1794 if (ret) {
Thomas Gleixner32cffdd2011-10-04 18:43:57 +02001795 WARN(1, "failed to set type for IRQ%d\n", irq);
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001796 goto out;
1797 }
1798 }
1799
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001800 irq_percpu_enable(desc, cpu);
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001801out:
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001802 irq_put_desc_unlock(desc, flags);
1803}
Chris Metcalf36a5df82013-02-01 15:04:26 -05001804EXPORT_SYMBOL_GPL(enable_percpu_irq);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001805
Thomas Petazzonif0cb3222015-10-20 15:23:51 +02001806/**
1807 * irq_percpu_is_enabled - Check whether the per cpu irq is enabled
1808 * @irq: Linux irq number to check for
1809 *
1810 * Must be called from a non migratable context. Returns the enable
1811 * state of a per cpu interrupt on the current cpu.
1812 */
1813bool irq_percpu_is_enabled(unsigned int irq)
1814{
1815 unsigned int cpu = smp_processor_id();
1816 struct irq_desc *desc;
1817 unsigned long flags;
1818 bool is_enabled;
1819
1820 desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
1821 if (!desc)
1822 return false;
1823
1824 is_enabled = cpumask_test_cpu(cpu, desc->percpu_enabled);
1825 irq_put_desc_unlock(desc, flags);
1826
1827 return is_enabled;
1828}
1829EXPORT_SYMBOL_GPL(irq_percpu_is_enabled);
1830
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001831void disable_percpu_irq(unsigned int irq)
1832{
1833 unsigned int cpu = smp_processor_id();
1834 unsigned long flags;
1835 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
1836
1837 if (!desc)
1838 return;
1839
1840 irq_percpu_disable(desc, cpu);
1841 irq_put_desc_unlock(desc, flags);
1842}
Chris Metcalf36a5df82013-02-01 15:04:26 -05001843EXPORT_SYMBOL_GPL(disable_percpu_irq);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001844
1845/*
1846 * Internal function to unregister a percpu irqaction.
1847 */
1848static struct irqaction *__free_percpu_irq(unsigned int irq, void __percpu *dev_id)
1849{
1850 struct irq_desc *desc = irq_to_desc(irq);
1851 struct irqaction *action;
1852 unsigned long flags;
1853
1854 WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
1855
1856 if (!desc)
1857 return NULL;
1858
1859 raw_spin_lock_irqsave(&desc->lock, flags);
1860
1861 action = desc->action;
1862 if (!action || action->percpu_dev_id != dev_id) {
1863 WARN(1, "Trying to free already-free IRQ %d\n", irq);
1864 goto bad;
1865 }
1866
1867 if (!cpumask_empty(desc->percpu_enabled)) {
1868 WARN(1, "percpu IRQ %d still enabled on CPU%d!\n",
1869 irq, cpumask_first(desc->percpu_enabled));
1870 goto bad;
1871 }
1872
1873 /* Found it - now remove it from the list of entries: */
1874 desc->action = NULL;
1875
1876 raw_spin_unlock_irqrestore(&desc->lock, flags);
1877
1878 unregister_handler_proc(irq, action);
1879
Jon Hunterbe45beb2016-06-07 16:12:29 +01001880 irq_chip_pm_put(&desc->irq_data);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001881 module_put(desc->owner);
1882 return action;
1883
1884bad:
1885 raw_spin_unlock_irqrestore(&desc->lock, flags);
1886 return NULL;
1887}
1888
1889/**
1890 * remove_percpu_irq - free a per-cpu interrupt
1891 * @irq: Interrupt line to free
1892 * @act: irqaction for the interrupt
1893 *
1894 * Used to remove interrupts statically setup by the early boot process.
1895 */
1896void remove_percpu_irq(unsigned int irq, struct irqaction *act)
1897{
1898 struct irq_desc *desc = irq_to_desc(irq);
1899
1900 if (desc && irq_settings_is_per_cpu_devid(desc))
1901 __free_percpu_irq(irq, act->percpu_dev_id);
1902}
1903
1904/**
1905 * free_percpu_irq - free an interrupt allocated with request_percpu_irq
1906 * @irq: Interrupt line to free
1907 * @dev_id: Device identity to free
1908 *
1909 * Remove a percpu interrupt handler. The handler is removed, but
1910 * the interrupt line is not disabled. This must be done on each
1911 * CPU before calling this function. The function does not return
1912 * until any executing interrupts for this IRQ have completed.
1913 *
1914 * This function must not be called from interrupt context.
1915 */
1916void free_percpu_irq(unsigned int irq, void __percpu *dev_id)
1917{
1918 struct irq_desc *desc = irq_to_desc(irq);
1919
1920 if (!desc || !irq_settings_is_per_cpu_devid(desc))
1921 return;
1922
1923 chip_bus_lock(desc);
1924 kfree(__free_percpu_irq(irq, dev_id));
1925 chip_bus_sync_unlock(desc);
1926}
Maxime Ripardaec2e2a2015-09-25 18:09:33 +02001927EXPORT_SYMBOL_GPL(free_percpu_irq);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001928
1929/**
1930 * setup_percpu_irq - setup a per-cpu interrupt
1931 * @irq: Interrupt line to setup
1932 * @act: irqaction for the interrupt
1933 *
1934 * Used to statically setup per-cpu interrupts in the early boot process.
1935 */
1936int setup_percpu_irq(unsigned int irq, struct irqaction *act)
1937{
1938 struct irq_desc *desc = irq_to_desc(irq);
1939 int retval;
1940
1941 if (!desc || !irq_settings_is_per_cpu_devid(desc))
1942 return -EINVAL;
Jon Hunterbe45beb2016-06-07 16:12:29 +01001943
1944 retval = irq_chip_pm_get(&desc->irq_data);
1945 if (retval < 0)
1946 return retval;
1947
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001948 chip_bus_lock(desc);
1949 retval = __setup_irq(irq, desc, act);
1950 chip_bus_sync_unlock(desc);
1951
Jon Hunterbe45beb2016-06-07 16:12:29 +01001952 if (retval)
1953 irq_chip_pm_put(&desc->irq_data);
1954
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001955 return retval;
1956}
1957
1958/**
1959 * request_percpu_irq - allocate a percpu interrupt line
1960 * @irq: Interrupt line to allocate
1961 * @handler: Function to be called when the IRQ occurs.
1962 * @devname: An ascii name for the claiming device
1963 * @dev_id: A percpu cookie passed back to the handler function
1964 *
Maxime Riparda1b7feb2015-09-25 18:09:32 +02001965 * This call allocates interrupt resources and enables the
1966 * interrupt on the local CPU. If the interrupt is supposed to be
1967 * enabled on other CPUs, it has to be done on each CPU using
1968 * enable_percpu_irq().
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001969 *
1970 * Dev_id must be globally unique. It is a per-cpu variable, and
1971 * the handler gets called with the interrupted CPU's instance of
1972 * that variable.
1973 */
1974int request_percpu_irq(unsigned int irq, irq_handler_t handler,
1975 const char *devname, void __percpu *dev_id)
1976{
1977 struct irqaction *action;
1978 struct irq_desc *desc;
1979 int retval;
1980
1981 if (!dev_id)
1982 return -EINVAL;
1983
1984 desc = irq_to_desc(irq);
1985 if (!desc || !irq_settings_can_request(desc) ||
1986 !irq_settings_is_per_cpu_devid(desc))
1987 return -EINVAL;
1988
1989 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
1990 if (!action)
1991 return -ENOMEM;
1992
1993 action->handler = handler;
Marc Zyngier2ed0e642011-11-16 12:27:39 +00001994 action->flags = IRQF_PERCPU | IRQF_NO_SUSPEND;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001995 action->name = devname;
1996 action->percpu_dev_id = dev_id;
1997
Jon Hunterbe45beb2016-06-07 16:12:29 +01001998 retval = irq_chip_pm_get(&desc->irq_data);
Shawn Lin4396f462016-08-22 16:21:52 +08001999 if (retval < 0) {
2000 kfree(action);
Jon Hunterbe45beb2016-06-07 16:12:29 +01002001 return retval;
Shawn Lin4396f462016-08-22 16:21:52 +08002002 }
Jon Hunterbe45beb2016-06-07 16:12:29 +01002003
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01002004 chip_bus_lock(desc);
2005 retval = __setup_irq(irq, desc, action);
2006 chip_bus_sync_unlock(desc);
2007
Jon Hunterbe45beb2016-06-07 16:12:29 +01002008 if (retval) {
2009 irq_chip_pm_put(&desc->irq_data);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01002010 kfree(action);
Jon Hunterbe45beb2016-06-07 16:12:29 +01002011 }
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01002012
2013 return retval;
2014}
Maxime Ripardaec2e2a2015-09-25 18:09:33 +02002015EXPORT_SYMBOL_GPL(request_percpu_irq);
Marc Zyngier1b7047e2015-03-18 11:01:22 +00002016
2017/**
2018 * irq_get_irqchip_state - returns the irqchip state of a interrupt.
2019 * @irq: Interrupt line that is forwarded to a VM
2020 * @which: One of IRQCHIP_STATE_* the caller wants to know about
2021 * @state: a pointer to a boolean where the state is to be storeed
2022 *
2023 * This call snapshots the internal irqchip state of an
2024 * interrupt, returning into @state the bit corresponding to
2025 * stage @which
2026 *
2027 * This function should be called with preemption disabled if the
2028 * interrupt controller has per-cpu registers.
2029 */
2030int irq_get_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
2031 bool *state)
2032{
2033 struct irq_desc *desc;
2034 struct irq_data *data;
2035 struct irq_chip *chip;
2036 unsigned long flags;
2037 int err = -EINVAL;
2038
2039 desc = irq_get_desc_buslock(irq, &flags, 0);
2040 if (!desc)
2041 return err;
2042
2043 data = irq_desc_get_irq_data(desc);
2044
2045 do {
2046 chip = irq_data_get_irq_chip(data);
2047 if (chip->irq_get_irqchip_state)
2048 break;
2049#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
2050 data = data->parent_data;
2051#else
2052 data = NULL;
2053#endif
2054 } while (data);
2055
2056 if (data)
2057 err = chip->irq_get_irqchip_state(data, which, state);
2058
2059 irq_put_desc_busunlock(desc, flags);
2060 return err;
2061}
Bjorn Andersson1ee4fb32015-07-22 12:43:04 -07002062EXPORT_SYMBOL_GPL(irq_get_irqchip_state);
Marc Zyngier1b7047e2015-03-18 11:01:22 +00002063
2064/**
2065 * irq_set_irqchip_state - set the state of a forwarded interrupt.
2066 * @irq: Interrupt line that is forwarded to a VM
2067 * @which: State to be restored (one of IRQCHIP_STATE_*)
2068 * @val: Value corresponding to @which
2069 *
2070 * This call sets the internal irqchip state of an interrupt,
2071 * depending on the value of @which.
2072 *
2073 * This function should be called with preemption disabled if the
2074 * interrupt controller has per-cpu registers.
2075 */
2076int irq_set_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
2077 bool val)
2078{
2079 struct irq_desc *desc;
2080 struct irq_data *data;
2081 struct irq_chip *chip;
2082 unsigned long flags;
2083 int err = -EINVAL;
2084
2085 desc = irq_get_desc_buslock(irq, &flags, 0);
2086 if (!desc)
2087 return err;
2088
2089 data = irq_desc_get_irq_data(desc);
2090
2091 do {
2092 chip = irq_data_get_irq_chip(data);
2093 if (chip->irq_set_irqchip_state)
2094 break;
2095#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
2096 data = data->parent_data;
2097#else
2098 data = NULL;
2099#endif
2100 } while (data);
2101
2102 if (data)
2103 err = chip->irq_set_irqchip_state(data, which, val);
2104
2105 irq_put_desc_busunlock(desc, flags);
2106 return err;
2107}
Bjorn Andersson1ee4fb32015-07-22 12:43:04 -07002108EXPORT_SYMBOL_GPL(irq_set_irqchip_state);