blob: 5927da596d426196633378400a7faffbf9b9de64 [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
1029 new->flags |= IRQF_ONESHOT;
1030
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001031 /*
1032 * Handle the case where we have a real primary handler and a
1033 * thread handler. We force thread them as well by creating a
1034 * secondary action.
1035 */
1036 if (new->handler != irq_default_primary_handler && new->thread_fn) {
1037 /* Allocate the secondary action */
1038 new->secondary = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
1039 if (!new->secondary)
1040 return -ENOMEM;
1041 new->secondary->handler = irq_forced_secondary_handler;
1042 new->secondary->thread_fn = new->thread_fn;
1043 new->secondary->dev_id = new->dev_id;
1044 new->secondary->irq = new->irq;
1045 new->secondary->name = new->name;
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001046 }
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001047 /* Deal with the primary handler */
1048 set_bit(IRQTF_FORCED_THREAD, &new->thread_flags);
1049 new->thread_fn = new->handler;
1050 new->handler = irq_default_primary_handler;
1051 return 0;
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001052}
1053
Thomas Gleixnerc1bacba2014-03-08 08:59:58 +01001054static int irq_request_resources(struct irq_desc *desc)
1055{
1056 struct irq_data *d = &desc->irq_data;
1057 struct irq_chip *c = d->chip;
1058
1059 return c->irq_request_resources ? c->irq_request_resources(d) : 0;
1060}
1061
1062static void irq_release_resources(struct irq_desc *desc)
1063{
1064 struct irq_data *d = &desc->irq_data;
1065 struct irq_chip *c = d->chip;
1066
1067 if (c->irq_release_resources)
1068 c->irq_release_resources(d);
1069}
1070
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001071static int
1072setup_irq_thread(struct irqaction *new, unsigned int irq, bool secondary)
1073{
1074 struct task_struct *t;
1075 struct sched_param param = {
1076 .sched_priority = MAX_USER_RT_PRIO/2,
1077 };
1078
1079 if (!secondary) {
1080 t = kthread_create(irq_thread, new, "irq/%d-%s", irq,
1081 new->name);
1082 } else {
1083 t = kthread_create(irq_thread, new, "irq/%d-s-%s", irq,
1084 new->name);
1085 param.sched_priority -= 1;
1086 }
1087
1088 if (IS_ERR(t))
1089 return PTR_ERR(t);
1090
1091 sched_setscheduler_nocheck(t, SCHED_FIFO, &param);
1092
1093 /*
1094 * We keep the reference to the task struct even if
1095 * the thread dies to avoid that the interrupt code
1096 * references an already freed task_struct.
1097 */
1098 get_task_struct(t);
1099 new->thread = t;
1100 /*
1101 * Tell the thread to set its affinity. This is
1102 * important for shared interrupt handlers as we do
1103 * not invoke setup_affinity() for the secondary
1104 * handlers as everything is already set up. Even for
1105 * interrupts marked with IRQF_NO_BALANCE this is
1106 * correct as we want the thread to move to the cpu(s)
1107 * on which the requesting code placed the interrupt.
1108 */
1109 set_bit(IRQTF_AFFINITY, &new->thread_flags);
1110 return 0;
1111}
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113/*
1114 * Internal function to register an irqaction - typically used to
1115 * allocate special interrupts that are part of the architecture.
1116 */
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001117static int
Ingo Molnar327ec562009-02-15 11:21:37 +01001118__setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Ingo Molnarf17c7542009-02-17 20:43:37 +01001120 struct irqaction *old, **old_ptr;
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001121 unsigned long flags, thread_mask = 0;
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001122 int ret, nested, shared = 0;
1123 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001125 if (!desc)
Matthew Wilcoxc2b5a252005-11-03 07:51:18 -07001126 return -EINVAL;
1127
Thomas Gleixner6b8ff312010-10-01 12:58:38 +02001128 if (desc->irq_data.chip == &no_irq_chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return -ENOSYS;
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001130 if (!try_module_get(desc->owner))
1131 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001133 new->irq = irq;
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /*
Jon Hunter4b357da2016-06-07 16:12:27 +01001136 * If the trigger type is not specified by the caller,
1137 * then use the default for this interrupt.
1138 */
1139 if (!(new->flags & IRQF_TRIGGER_MASK))
1140 new->flags |= irqd_get_trigger_type(&desc->irq_data);
1141
1142 /*
Thomas Gleixner399b5da2009-08-13 13:21:38 +02001143 * Check whether the interrupt nests into another interrupt
1144 * thread.
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001145 */
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +01001146 nested = irq_settings_is_nested_thread(desc);
Thomas Gleixner399b5da2009-08-13 13:21:38 +02001147 if (nested) {
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001148 if (!new->thread_fn) {
1149 ret = -EINVAL;
1150 goto out_mput;
1151 }
Thomas Gleixner399b5da2009-08-13 13:21:38 +02001152 /*
1153 * Replace the primary handler which was provided from
1154 * the driver for non nested interrupt handling by the
1155 * dummy function which warns when called.
1156 */
1157 new->handler = irq_nested_primary_handler;
Thomas Gleixner8d32a302011-02-23 23:52:23 +00001158 } else {
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001159 if (irq_settings_can_thread(desc)) {
1160 ret = irq_setup_forced_threading(new);
1161 if (ret)
1162 goto out_mput;
1163 }
Thomas Gleixner399b5da2009-08-13 13:21:38 +02001164 }
1165
1166 /*
1167 * Create a handler thread when a thread function is supplied
1168 * and the interrupt does not nest into another interrupt
1169 * thread.
1170 */
1171 if (new->thread_fn && !nested) {
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001172 ret = setup_irq_thread(new, irq, false);
1173 if (ret)
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001174 goto out_mput;
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001175 if (new->secondary) {
1176 ret = setup_irq_thread(new->secondary, irq, true);
1177 if (ret)
1178 goto out_thread;
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001179 }
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001180 }
1181
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001182 if (!alloc_cpumask_var(&mask, GFP_KERNEL)) {
1183 ret = -ENOMEM;
1184 goto out_thread;
1185 }
1186
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001187 /*
Thomas Gleixnerdc9b2292012-07-13 19:29:45 +02001188 * Drivers are often written to work w/o knowledge about the
1189 * underlying irq chip implementation, so a request for a
1190 * threaded irq without a primary hard irq context handler
1191 * requires the ONESHOT flag to be set. Some irq chips like
1192 * MSI based interrupts are per se one shot safe. Check the
1193 * chip flags, so we can avoid the unmask dance at the end of
1194 * the threaded handler for those.
1195 */
1196 if (desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)
1197 new->flags &= ~IRQF_ONESHOT;
1198
1199 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 * The following block of code has to be executed atomically
1201 */
Thomas Gleixner239007b2009-11-17 16:46:45 +01001202 raw_spin_lock_irqsave(&desc->lock, flags);
Ingo Molnarf17c7542009-02-17 20:43:37 +01001203 old_ptr = &desc->action;
1204 old = *old_ptr;
Ingo Molnar06fcb0c2006-06-29 02:24:40 -07001205 if (old) {
Thomas Gleixnere76de9f2006-06-29 02:24:56 -07001206 /*
1207 * Can't share interrupts unless both agree to and are
1208 * the same type (level, edge, polarity). So both flag
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001209 * fields must have IRQF_SHARED set and the bits which
Thomas Gleixner9d591ed2011-02-23 23:52:16 +00001210 * set the trigger type must match. Also all must
1211 * agree on ONESHOT.
Thomas Gleixnere76de9f2006-06-29 02:24:56 -07001212 */
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001213 if (!((old->flags & new->flags) & IRQF_SHARED) ||
Greg Kroah-Hartman6c9ca572018-03-30 10:53:44 +02001214 ((old->flags ^ new->flags) & IRQF_TRIGGER_MASK) ||
Thomas Gleixnerf5d89472012-04-19 12:06:13 +02001215 ((old->flags ^ new->flags) & IRQF_ONESHOT))
Dimitri Sivanichf5163422006-03-25 03:08:23 -08001216 goto mismatch;
1217
Dimitri Sivanichf5163422006-03-25 03:08:23 -08001218 /* All handlers must agree on per-cpuness */
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001219 if ((old->flags & IRQF_PERCPU) !=
1220 (new->flags & IRQF_PERCPU))
Dimitri Sivanichf5163422006-03-25 03:08:23 -08001221 goto mismatch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 /* add new interrupt at end of irq queue */
1224 do {
Thomas Gleixner52abb702012-03-06 23:18:54 +01001225 /*
1226 * Or all existing action->thread_mask bits,
1227 * so we can find the next zero bit for this
1228 * new action.
1229 */
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001230 thread_mask |= old->thread_mask;
Ingo Molnarf17c7542009-02-17 20:43:37 +01001231 old_ptr = &old->next;
1232 old = *old_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 } while (old);
1234 shared = 1;
1235 }
1236
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001237 /*
Thomas Gleixner52abb702012-03-06 23:18:54 +01001238 * Setup the thread mask for this irqaction for ONESHOT. For
1239 * !ONESHOT irqs the thread mask is 0 so we can avoid a
1240 * conditional in irq_wake_thread().
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001241 */
Thomas Gleixner52abb702012-03-06 23:18:54 +01001242 if (new->flags & IRQF_ONESHOT) {
1243 /*
1244 * Unlikely to have 32 resp 64 irqs sharing one line,
1245 * but who knows.
1246 */
1247 if (thread_mask == ~0UL) {
1248 ret = -EBUSY;
1249 goto out_mask;
1250 }
1251 /*
1252 * The thread_mask for the action is or'ed to
1253 * desc->thread_active to indicate that the
1254 * IRQF_ONESHOT thread handler has been woken, but not
1255 * yet finished. The bit is cleared when a thread
1256 * completes. When all threads of a shared interrupt
1257 * line have completed desc->threads_active becomes
1258 * zero and the interrupt line is unmasked. See
1259 * handle.c:irq_wake_thread() for further information.
1260 *
1261 * If no thread is woken by primary (hard irq context)
1262 * interrupt handlers, then desc->threads_active is
1263 * also checked for zero to unmask the irq line in the
1264 * affected hard irq flow handlers
1265 * (handle_[fasteoi|level]_irq).
1266 *
1267 * The new action gets the first zero bit of
1268 * thread_mask assigned. See the loop above which or's
1269 * all existing action->thread_mask bits.
1270 */
1271 new->thread_mask = 1 << ffz(thread_mask);
Thomas Gleixner1c6c6952012-04-19 10:35:17 +02001272
Thomas Gleixnerdc9b2292012-07-13 19:29:45 +02001273 } else if (new->handler == irq_default_primary_handler &&
1274 !(desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)) {
Thomas Gleixner1c6c6952012-04-19 10:35:17 +02001275 /*
1276 * The interrupt was requested with handler = NULL, so
1277 * we use the default primary handler for it. But it
1278 * does not have the oneshot flag set. In combination
1279 * with level interrupts this is deadly, because the
1280 * default primary handler just wakes the thread, then
1281 * the irq lines is reenabled, but the device still
1282 * has the level irq asserted. Rinse and repeat....
1283 *
1284 * While this works for edge type interrupts, we play
1285 * it safe and reject unconditionally because we can't
1286 * say for sure which type this interrupt really
1287 * has. The type flags are unreliable as the
1288 * underlying chip implementation can override them.
1289 */
Andrew Morton97fd75b2012-05-31 16:26:07 -07001290 pr_err("Threaded irq requested with handler=NULL and !ONESHOT for irq %d\n",
Thomas Gleixner1c6c6952012-04-19 10:35:17 +02001291 irq);
1292 ret = -EINVAL;
1293 goto out_mask;
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001294 }
Thomas Gleixnerb5faba22011-02-23 23:52:13 +00001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (!shared) {
Thomas Gleixnerc1bacba2014-03-08 08:59:58 +01001297 ret = irq_request_resources(desc);
1298 if (ret) {
1299 pr_err("Failed to request resources for %s (irq %d) on irqchip %s\n",
1300 new->name, irq, desc->irq_data.chip->name);
1301 goto out_mask;
1302 }
1303
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001304 init_waitqueue_head(&desc->wait_for_threads);
1305
Uwe Kleine-König82736f42008-07-23 21:28:54 -07001306 /* Setup the type (level, edge polarity) if configured: */
1307 if (new->flags & IRQF_TRIGGER_MASK) {
Jiang Liua1ff5412015-06-23 19:47:29 +02001308 ret = __irq_set_trigger(desc,
1309 new->flags & IRQF_TRIGGER_MASK);
Uwe Kleine-König82736f42008-07-23 21:28:54 -07001310
Heiner Kallweit76628322017-06-11 00:38:36 +02001311 if (ret) {
1312 irq_release_resources(desc);
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001313 goto out_mask;
Heiner Kallweit76628322017-06-11 00:38:36 +02001314 }
Thomas Gleixner091738a2011-02-14 20:16:43 +01001315 }
Ahmed S. Darwishf75d2222007-05-08 00:27:55 -07001316
Thomas Gleixner009b4c32011-02-07 21:48:49 +01001317 desc->istate &= ~(IRQS_AUTODETECT | IRQS_SPURIOUS_DISABLED | \
Thomas Gleixner32f41252011-03-28 14:10:52 +02001318 IRQS_ONESHOT | IRQS_WAITING);
1319 irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS);
Thomas Gleixner94d39e12006-06-29 02:24:50 -07001320
Thomas Gleixnera0056772011-02-08 17:11:03 +01001321 if (new->flags & IRQF_PERCPU) {
1322 irqd_set(&desc->irq_data, IRQD_PER_CPU);
1323 irq_settings_set_per_cpu(desc);
1324 }
Thomas Gleixner6a58fb32011-02-08 15:40:05 +01001325
Thomas Gleixnerb25c3402009-08-13 12:17:22 +02001326 if (new->flags & IRQF_ONESHOT)
Thomas Gleixner3d67bae2011-02-07 21:02:10 +01001327 desc->istate |= IRQS_ONESHOT;
Thomas Gleixnerb25c3402009-08-13 12:17:22 +02001328
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +01001329 if (irq_settings_can_autoenable(desc))
Thomas Gleixnerb4bc7242012-02-08 11:57:52 +01001330 irq_startup(desc, true);
Thomas Gleixner46999232011-02-02 21:41:14 +00001331 else
Thomas Gleixnere76de9f2006-06-29 02:24:56 -07001332 /* Undo nested disables: */
1333 desc->depth = 1;
Max Krasnyansky18404752008-05-29 11:02:52 -07001334
Thomas Gleixner612e3682008-11-07 13:58:46 +01001335 /* Exclude IRQ from balancing if requested */
Thomas Gleixnera0056772011-02-08 17:11:03 +01001336 if (new->flags & IRQF_NOBALANCING) {
1337 irq_settings_set_no_balancing(desc);
1338 irqd_set(&desc->irq_data, IRQD_NO_BALANCING);
1339 }
Thomas Gleixner612e3682008-11-07 13:58:46 +01001340
Max Krasnyansky18404752008-05-29 11:02:52 -07001341 /* Set default affinity mask once everything is setup */
Jiang Liua8a98ea2015-06-04 12:13:30 +08001342 setup_affinity(desc, mask);
David Brownell0c5d1eb2008-10-01 14:46:18 -07001343
Thomas Gleixner876dbd42011-02-08 17:28:12 +01001344 } else if (new->flags & IRQF_TRIGGER_MASK) {
1345 unsigned int nmsk = new->flags & IRQF_TRIGGER_MASK;
Thomas Gleixner7ee7e872016-11-07 19:57:00 +01001346 unsigned int omsk = irqd_get_trigger_type(&desc->irq_data);
Thomas Gleixner876dbd42011-02-08 17:28:12 +01001347
1348 if (nmsk != omsk)
1349 /* hope the handler works with current trigger mode */
Joe Perchesa395d6a2016-03-22 14:28:09 -07001350 pr_warn("irq %d uses trigger mode %u; requested %u\n",
Thomas Gleixner7ee7e872016-11-07 19:57:00 +01001351 irq, omsk, nmsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Uwe Kleine-König82736f42008-07-23 21:28:54 -07001353
Ingo Molnarf17c7542009-02-17 20:43:37 +01001354 *old_ptr = new;
Uwe Kleine-König82736f42008-07-23 21:28:54 -07001355
Thomas Gleixnercab303b2014-08-28 11:44:31 +02001356 irq_pm_install_action(desc, new);
1357
Linus Torvalds8528b0f2007-01-23 14:16:31 -08001358 /* Reset broken irq detection when installing new handler */
1359 desc->irq_count = 0;
1360 desc->irqs_unhandled = 0;
Thomas Gleixner1adb0852008-04-28 17:01:56 +02001361
1362 /*
1363 * Check whether we disabled the irq via the spurious handler
1364 * before. Reenable it and give it another chance.
1365 */
Thomas Gleixner7acdd532011-02-07 20:40:54 +01001366 if (shared && (desc->istate & IRQS_SPURIOUS_DISABLED)) {
1367 desc->istate &= ~IRQS_SPURIOUS_DISABLED;
Jiang Liu79ff1cd2015-06-23 19:52:36 +02001368 __enable_irq(desc);
Thomas Gleixner1adb0852008-04-28 17:01:56 +02001369 }
1370
Thomas Gleixner239007b2009-11-17 16:46:45 +01001371 raw_spin_unlock_irqrestore(&desc->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Thomas Gleixner69ab8492009-08-17 14:07:16 +02001373 /*
1374 * Strictly no need to wake it up, but hung_task complains
1375 * when no hard interrupt wakes the thread up.
1376 */
1377 if (new->thread)
1378 wake_up_process(new->thread);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001379 if (new->secondary)
1380 wake_up_process(new->secondary->thread);
Thomas Gleixner69ab8492009-08-17 14:07:16 +02001381
Yinghai Lu2c6927a2008-08-19 20:50:11 -07001382 register_irq_proc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 new->dir = NULL;
1384 register_handler_proc(irq, new);
Xiaotian Feng4f5058c2011-04-02 19:39:35 +08001385 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 return 0;
Dimitri Sivanichf5163422006-03-25 03:08:23 -08001388
1389mismatch:
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001390 if (!(new->flags & IRQF_PROBE_SHARED)) {
Andrew Morton97fd75b2012-05-31 16:26:07 -07001391 pr_err("Flags mismatch irq %d. %08x (%s) vs. %08x (%s)\n",
Thomas Gleixnerf5d89472012-04-19 12:06:13 +02001392 irq, new->flags, new->name, old->flags, old->name);
1393#ifdef CONFIG_DEBUG_SHIRQ
Andrew Morton13e87ec2006-04-27 18:39:18 -07001394 dump_stack();
Alan Cox3f050442007-02-12 00:52:04 -08001395#endif
Thomas Gleixnerf5d89472012-04-19 12:06:13 +02001396 }
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001397 ret = -EBUSY;
1398
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001399out_mask:
Dan Carpenter1c389792011-03-17 14:43:07 +03001400 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixner3b8249e2011-02-07 16:02:20 +01001401 free_cpumask_var(mask);
1402
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001403out_thread:
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001404 if (new->thread) {
1405 struct task_struct *t = new->thread;
1406
1407 new->thread = NULL;
Alexander Gordeev05d74ef2012-03-09 14:59:40 +01001408 kthread_stop(t);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001409 put_task_struct(t);
1410 }
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001411 if (new->secondary && new->secondary->thread) {
1412 struct task_struct *t = new->secondary->thread;
1413
1414 new->secondary->thread = NULL;
1415 kthread_stop(t);
1416 put_task_struct(t);
1417 }
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001418out_mput:
1419 module_put(desc->owner);
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001420 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423/**
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001424 * setup_irq - setup an interrupt
1425 * @irq: Interrupt line to setup
1426 * @act: irqaction for the interrupt
1427 *
1428 * Used to statically setup interrupts in the early boot process.
1429 */
1430int setup_irq(unsigned int irq, struct irqaction *act)
1431{
David Daney986c0112011-02-09 16:04:25 -08001432 int retval;
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001433 struct irq_desc *desc = irq_to_desc(irq);
1434
Jon Hunter9b5d5852016-05-10 16:14:35 +01001435 if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001436 return -EINVAL;
Jon Hunterbe45beb2016-06-07 16:12:29 +01001437
1438 retval = irq_chip_pm_get(&desc->irq_data);
1439 if (retval < 0)
1440 return retval;
1441
David Daney986c0112011-02-09 16:04:25 -08001442 chip_bus_lock(desc);
1443 retval = __setup_irq(irq, desc, act);
1444 chip_bus_sync_unlock(desc);
1445
Jon Hunterbe45beb2016-06-07 16:12:29 +01001446 if (retval)
1447 irq_chip_pm_put(&desc->irq_data);
1448
David Daney986c0112011-02-09 16:04:25 -08001449 return retval;
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001450}
Magnus Dammeb53b4e2009-03-12 21:05:59 +09001451EXPORT_SYMBOL_GPL(setup_irq);
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001452
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001453/*
Magnus Dammcbf94f02009-03-12 21:05:51 +09001454 * Internal function to unregister an irqaction - used to free
1455 * regular and special interrupts that are part of the architecture.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 */
Magnus Dammcbf94f02009-03-12 21:05:51 +09001457static struct irqaction *__free_irq(unsigned int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001459 struct irq_desc *desc = irq_to_desc(irq);
Ingo Molnarf17c7542009-02-17 20:43:37 +01001460 struct irqaction *action, **action_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 unsigned long flags;
1462
Ingo Molnarae88a232009-02-15 11:29:50 +01001463 WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001464
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001465 if (!desc)
Magnus Dammf21cfb22009-03-12 21:05:42 +09001466 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Thomas Gleixnerabc7e402015-12-13 18:12:30 +01001468 chip_bus_lock(desc);
Thomas Gleixner239007b2009-11-17 16:46:45 +01001469 raw_spin_lock_irqsave(&desc->lock, flags);
Ingo Molnarae88a232009-02-15 11:29:50 +01001470
1471 /*
1472 * There can be multiple actions per IRQ descriptor, find the right
1473 * one based on the dev_id:
1474 */
Ingo Molnarf17c7542009-02-17 20:43:37 +01001475 action_ptr = &desc->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 for (;;) {
Ingo Molnarf17c7542009-02-17 20:43:37 +01001477 action = *action_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Ingo Molnarae88a232009-02-15 11:29:50 +01001479 if (!action) {
1480 WARN(1, "Trying to free already-free IRQ %d\n", irq);
Thomas Gleixner239007b2009-11-17 16:46:45 +01001481 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerabc7e402015-12-13 18:12:30 +01001482 chip_bus_sync_unlock(desc);
Magnus Dammf21cfb22009-03-12 21:05:42 +09001483 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
Ingo Molnarae88a232009-02-15 11:29:50 +01001485
Ingo Molnar8316e382009-02-17 20:28:29 +01001486 if (action->dev_id == dev_id)
1487 break;
Ingo Molnarf17c7542009-02-17 20:43:37 +01001488 action_ptr = &action->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
Ingo Molnarae88a232009-02-15 11:29:50 +01001490
1491 /* Found it - now remove it from the list of entries: */
Ingo Molnarf17c7542009-02-17 20:43:37 +01001492 *action_ptr = action->next;
Ingo Molnarae88a232009-02-15 11:29:50 +01001493
Thomas Gleixnercab303b2014-08-28 11:44:31 +02001494 irq_pm_remove_action(desc, action);
1495
Ingo Molnarae88a232009-02-15 11:29:50 +01001496 /* If this was the last handler, shut down the IRQ line: */
Thomas Gleixnerc1bacba2014-03-08 08:59:58 +01001497 if (!desc->action) {
Thomas Gleixnere9849772015-10-09 23:28:58 +02001498 irq_settings_clr_disable_unlazy(desc);
Thomas Gleixner46999232011-02-02 21:41:14 +00001499 irq_shutdown(desc);
Thomas Gleixnerc1bacba2014-03-08 08:59:58 +01001500 irq_release_resources(desc);
1501 }
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001502
Peter P Waskiewicz Jre7a297b2010-04-30 14:44:50 -07001503#ifdef CONFIG_SMP
1504 /* make sure affinity_hint is cleaned up */
1505 if (WARN_ON_ONCE(desc->affinity_hint))
1506 desc->affinity_hint = NULL;
1507#endif
1508
Thomas Gleixner239007b2009-11-17 16:46:45 +01001509 raw_spin_unlock_irqrestore(&desc->lock, flags);
Thomas Gleixnerabc7e402015-12-13 18:12:30 +01001510 chip_bus_sync_unlock(desc);
Ingo Molnarae88a232009-02-15 11:29:50 +01001511
1512 unregister_handler_proc(irq, action);
1513
1514 /* Make sure it's not being used on another CPU: */
1515 synchronize_irq(irq);
1516
1517#ifdef CONFIG_DEBUG_SHIRQ
1518 /*
1519 * It's a shared IRQ -- the driver ought to be prepared for an IRQ
1520 * event to happen even now it's being freed, so let's make sure that
1521 * is so by doing an extra call to the handler ....
1522 *
1523 * ( We do this after actually deregistering it, to make sure that a
1524 * 'real' IRQ doesn't run in * parallel with our fake. )
1525 */
1526 if (action->flags & IRQF_SHARED) {
1527 local_irq_save(flags);
1528 action->handler(irq, dev_id);
1529 local_irq_restore(flags);
1530 }
1531#endif
Linus Torvalds2d860ad2009-08-13 13:05:10 -07001532
1533 if (action->thread) {
Alexander Gordeev05d74ef2012-03-09 14:59:40 +01001534 kthread_stop(action->thread);
Linus Torvalds2d860ad2009-08-13 13:05:10 -07001535 put_task_struct(action->thread);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001536 if (action->secondary && action->secondary->thread) {
1537 kthread_stop(action->secondary->thread);
1538 put_task_struct(action->secondary->thread);
1539 }
Linus Torvalds2d860ad2009-08-13 13:05:10 -07001540 }
1541
Jon Hunterbe45beb2016-06-07 16:12:29 +01001542 irq_chip_pm_put(&desc->irq_data);
Sebastian Andrzej Siewiorb6873802011-07-11 12:17:31 +02001543 module_put(desc->owner);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001544 kfree(action->secondary);
Magnus Dammf21cfb22009-03-12 21:05:42 +09001545 return action;
1546}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548/**
Magnus Dammcbf94f02009-03-12 21:05:51 +09001549 * remove_irq - free an interrupt
1550 * @irq: Interrupt line to free
1551 * @act: irqaction for the interrupt
1552 *
1553 * Used to remove interrupts statically setup by the early boot process.
1554 */
1555void remove_irq(unsigned int irq, struct irqaction *act)
1556{
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001557 struct irq_desc *desc = irq_to_desc(irq);
1558
1559 if (desc && !WARN_ON(irq_settings_is_per_cpu_devid(desc)))
1560 __free_irq(irq, act->dev_id);
Magnus Dammcbf94f02009-03-12 21:05:51 +09001561}
Magnus Dammeb53b4e2009-03-12 21:05:59 +09001562EXPORT_SYMBOL_GPL(remove_irq);
Magnus Dammcbf94f02009-03-12 21:05:51 +09001563
1564/**
Magnus Dammf21cfb22009-03-12 21:05:42 +09001565 * free_irq - free an interrupt allocated with request_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 * @irq: Interrupt line to free
1567 * @dev_id: Device identity to free
1568 *
1569 * Remove an interrupt handler. The handler is removed and if the
1570 * interrupt line is no longer in use by any driver it is disabled.
1571 * On a shared IRQ the caller must ensure the interrupt is disabled
1572 * on the card it drives before calling this function. The function
1573 * does not return until any executing interrupts for this IRQ
1574 * have completed.
1575 *
1576 * This function must not be called from interrupt context.
1577 */
1578void free_irq(unsigned int irq, void *dev_id)
1579{
Thomas Gleixner70aedd22009-08-13 12:17:48 +02001580 struct irq_desc *desc = irq_to_desc(irq);
1581
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001582 if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
Thomas Gleixner70aedd22009-08-13 12:17:48 +02001583 return;
1584
Ben Hutchingscd7eab42011-01-19 21:01:44 +00001585#ifdef CONFIG_SMP
1586 if (WARN_ON(desc->affinity_notify))
1587 desc->affinity_notify = NULL;
1588#endif
1589
Magnus Dammcbf94f02009-03-12 21:05:51 +09001590 kfree(__free_irq(irq, dev_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592EXPORT_SYMBOL(free_irq);
1593
1594/**
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001595 * request_threaded_irq - allocate an interrupt line
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 * @irq: Interrupt line to allocate
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001597 * @handler: Function to be called when the IRQ occurs.
1598 * Primary handler for threaded interrupts
Thomas Gleixnerb25c3402009-08-13 12:17:22 +02001599 * If NULL and thread_fn != NULL the default
1600 * primary handler is installed
Thomas Gleixnerf48fe812009-03-24 11:46:22 +01001601 * @thread_fn: Function called from the irq handler thread
1602 * If NULL, no irq thread is created
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 * @irqflags: Interrupt type flags
1604 * @devname: An ascii name for the claiming device
1605 * @dev_id: A cookie passed back to the handler function
1606 *
1607 * This call allocates interrupt resources and enables the
1608 * interrupt line and IRQ handling. From the point this
1609 * call is made your handler function may be invoked. Since
1610 * your handler function must clear any interrupt the board
1611 * raises, you must take care both to initialise your hardware
1612 * and to set up the interrupt handler in the right order.
1613 *
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001614 * If you want to set up a threaded irq handler for your device
Javi Merino6d21af42011-10-26 10:16:11 +01001615 * then you need to supply @handler and @thread_fn. @handler is
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001616 * still called in hard interrupt context and has to check
1617 * whether the interrupt originates from the device. If yes it
1618 * needs to disable the interrupt on the device and return
Steven Rostedt39a2edd2009-05-12 14:35:54 -04001619 * IRQ_WAKE_THREAD which will wake up the handler thread and run
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001620 * @thread_fn. This split handler design is necessary to support
1621 * shared interrupts.
1622 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 * Dev_id must be globally unique. Normally the address of the
1624 * device data structure is used as the cookie. Since the handler
1625 * receives this value it makes sense to use it.
1626 *
1627 * If your interrupt is shared you must pass a non NULL dev_id
1628 * as this is required when freeing the interrupt.
1629 *
1630 * Flags:
1631 *
Thomas Gleixner3cca53b2006-07-01 19:29:31 -07001632 * IRQF_SHARED Interrupt is shared
David Brownell0c5d1eb2008-10-01 14:46:18 -07001633 * IRQF_TRIGGER_* Specify active edge(s) or level
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 *
1635 */
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001636int request_threaded_irq(unsigned int irq, irq_handler_t handler,
1637 irq_handler_t thread_fn, unsigned long irqflags,
1638 const char *devname, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Ingo Molnar06fcb0c2006-06-29 02:24:40 -07001640 struct irqaction *action;
Yinghai Lu08678b02008-08-19 20:50:05 -07001641 struct irq_desc *desc;
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001642 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Chen Fane237a552016-02-15 12:52:01 +08001644 if (irq == IRQ_NOTCONNECTED)
1645 return -ENOTCONN;
1646
David Brownell470c6622008-12-01 14:31:37 -08001647 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 * Sanity-check: shared interrupts must pass in a real dev-ID,
1649 * otherwise we'll have trouble later trying to figure out
1650 * which interrupt is which (messes up the interrupt freeing
1651 * logic etc).
Rafael J. Wysocki17f48032015-02-27 00:07:55 +01001652 *
1653 * Also IRQF_COND_SUSPEND only makes sense for shared interrupts and
1654 * it cannot be set along with IRQF_NO_SUSPEND.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 */
Rafael J. Wysocki17f48032015-02-27 00:07:55 +01001656 if (((irqflags & IRQF_SHARED) && !dev_id) ||
1657 (!(irqflags & IRQF_SHARED) && (irqflags & IRQF_COND_SUSPEND)) ||
1658 ((irqflags & IRQF_NO_SUSPEND) && (irqflags & IRQF_COND_SUSPEND)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 return -EINVAL;
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001660
Yinghai Lucb5bc832008-08-19 20:50:17 -07001661 desc = irq_to_desc(irq);
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001662 if (!desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return -EINVAL;
Yinghai Lu7d94f7c2008-08-19 20:50:14 -07001664
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001665 if (!irq_settings_can_request(desc) ||
1666 WARN_ON(irq_settings_is_per_cpu_devid(desc)))
Thomas Gleixner6550c772006-06-29 02:24:49 -07001667 return -EINVAL;
Thomas Gleixnerb25c3402009-08-13 12:17:22 +02001668
1669 if (!handler) {
1670 if (!thread_fn)
1671 return -EINVAL;
1672 handler = irq_default_primary_handler;
1673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Thomas Gleixner45535732009-02-22 23:00:32 +01001675 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (!action)
1677 return -ENOMEM;
1678
1679 action->handler = handler;
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001680 action->thread_fn = thread_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 action->flags = irqflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 action->name = devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 action->dev_id = dev_id;
1684
Jon Hunterbe45beb2016-06-07 16:12:29 +01001685 retval = irq_chip_pm_get(&desc->irq_data);
Shawn Lin4396f462016-08-22 16:21:52 +08001686 if (retval < 0) {
1687 kfree(action);
Jon Hunterbe45beb2016-06-07 16:12:29 +01001688 return retval;
Shawn Lin4396f462016-08-22 16:21:52 +08001689 }
Jon Hunterbe45beb2016-06-07 16:12:29 +01001690
Thomas Gleixner3876ec92010-09-27 12:44:35 +00001691 chip_bus_lock(desc);
Thomas Gleixnerd3c60042008-10-16 09:55:00 +02001692 retval = __setup_irq(irq, desc, action);
Thomas Gleixner3876ec92010-09-27 12:44:35 +00001693 chip_bus_sync_unlock(desc);
Thomas Gleixner70aedd22009-08-13 12:17:48 +02001694
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001695 if (retval) {
Jon Hunterbe45beb2016-06-07 16:12:29 +01001696 irq_chip_pm_put(&desc->irq_data);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001697 kfree(action->secondary);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001698 kfree(action);
Thomas Gleixner2a1d3ab2015-09-21 11:01:10 +02001699 }
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001700
Thomas Gleixner6d83f942011-02-18 23:27:23 +01001701#ifdef CONFIG_DEBUG_SHIRQ_FIXME
Luis Henriques6ce51c42009-04-01 18:06:35 +01001702 if (!retval && (irqflags & IRQF_SHARED)) {
David Woodhousea304e1b2007-02-12 00:52:00 -08001703 /*
1704 * It's a shared IRQ -- the driver ought to be prepared for it
1705 * to happen immediately, so let's make sure....
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001706 * We disable the irq to make sure that a 'real' IRQ doesn't
1707 * run in parallel with our fake.
David Woodhousea304e1b2007-02-12 00:52:00 -08001708 */
Jarek Poplawski59845b12007-08-30 23:56:34 -07001709 unsigned long flags;
David Woodhousea304e1b2007-02-12 00:52:00 -08001710
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001711 disable_irq(irq);
Jarek Poplawski59845b12007-08-30 23:56:34 -07001712 local_irq_save(flags);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001713
Jarek Poplawski59845b12007-08-30 23:56:34 -07001714 handler(irq, dev_id);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001715
Jarek Poplawski59845b12007-08-30 23:56:34 -07001716 local_irq_restore(flags);
Anton Vorontsov377bf1e2008-08-21 22:58:28 +04001717 enable_irq(irq);
David Woodhousea304e1b2007-02-12 00:52:00 -08001718 }
1719#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 return retval;
1721}
Thomas Gleixner3aa551c2009-03-23 18:28:15 +01001722EXPORT_SYMBOL(request_threaded_irq);
Marc Zyngierae731f82010-03-15 22:56:33 +00001723
1724/**
1725 * request_any_context_irq - allocate an interrupt line
1726 * @irq: Interrupt line to allocate
1727 * @handler: Function to be called when the IRQ occurs.
1728 * Threaded handler for threaded interrupts.
1729 * @flags: Interrupt type flags
1730 * @name: An ascii name for the claiming device
1731 * @dev_id: A cookie passed back to the handler function
1732 *
1733 * This call allocates interrupt resources and enables the
1734 * interrupt line and IRQ handling. It selects either a
1735 * hardirq or threaded handling method depending on the
1736 * context.
1737 *
1738 * On failure, it returns a negative value. On success,
1739 * it returns either IRQC_IS_HARDIRQ or IRQC_IS_NESTED.
1740 */
1741int request_any_context_irq(unsigned int irq, irq_handler_t handler,
1742 unsigned long flags, const char *name, void *dev_id)
1743{
Chen Fane237a552016-02-15 12:52:01 +08001744 struct irq_desc *desc;
Marc Zyngierae731f82010-03-15 22:56:33 +00001745 int ret;
1746
Chen Fane237a552016-02-15 12:52:01 +08001747 if (irq == IRQ_NOTCONNECTED)
1748 return -ENOTCONN;
1749
1750 desc = irq_to_desc(irq);
Marc Zyngierae731f82010-03-15 22:56:33 +00001751 if (!desc)
1752 return -EINVAL;
1753
Thomas Gleixner1ccb4e62011-02-09 14:44:17 +01001754 if (irq_settings_is_nested_thread(desc)) {
Marc Zyngierae731f82010-03-15 22:56:33 +00001755 ret = request_threaded_irq(irq, NULL, handler,
1756 flags, name, dev_id);
1757 return !ret ? IRQC_IS_NESTED : ret;
1758 }
1759
1760 ret = request_irq(irq, handler, flags, name, dev_id);
1761 return !ret ? IRQC_IS_HARDIRQ : ret;
1762}
1763EXPORT_SYMBOL_GPL(request_any_context_irq);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001764
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001765void enable_percpu_irq(unsigned int irq, unsigned int type)
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001766{
1767 unsigned int cpu = smp_processor_id();
1768 unsigned long flags;
1769 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
1770
1771 if (!desc)
1772 return;
1773
Marc Zyngierf35ad082016-06-13 10:39:44 +01001774 /*
1775 * If the trigger type is not specified by the caller, then
1776 * use the default for this interrupt.
1777 */
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001778 type &= IRQ_TYPE_SENSE_MASK;
Marc Zyngierf35ad082016-06-13 10:39:44 +01001779 if (type == IRQ_TYPE_NONE)
1780 type = irqd_get_trigger_type(&desc->irq_data);
1781
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001782 if (type != IRQ_TYPE_NONE) {
1783 int ret;
1784
Jiang Liua1ff5412015-06-23 19:47:29 +02001785 ret = __irq_set_trigger(desc, type);
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001786
1787 if (ret) {
Thomas Gleixner32cffdd2011-10-04 18:43:57 +02001788 WARN(1, "failed to set type for IRQ%d\n", irq);
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001789 goto out;
1790 }
1791 }
1792
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001793 irq_percpu_enable(desc, cpu);
Marc Zyngier1e7c5fd2011-09-30 10:48:47 +01001794out:
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001795 irq_put_desc_unlock(desc, flags);
1796}
Chris Metcalf36a5df82013-02-01 15:04:26 -05001797EXPORT_SYMBOL_GPL(enable_percpu_irq);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001798
Thomas Petazzonif0cb3222015-10-20 15:23:51 +02001799/**
1800 * irq_percpu_is_enabled - Check whether the per cpu irq is enabled
1801 * @irq: Linux irq number to check for
1802 *
1803 * Must be called from a non migratable context. Returns the enable
1804 * state of a per cpu interrupt on the current cpu.
1805 */
1806bool irq_percpu_is_enabled(unsigned int irq)
1807{
1808 unsigned int cpu = smp_processor_id();
1809 struct irq_desc *desc;
1810 unsigned long flags;
1811 bool is_enabled;
1812
1813 desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
1814 if (!desc)
1815 return false;
1816
1817 is_enabled = cpumask_test_cpu(cpu, desc->percpu_enabled);
1818 irq_put_desc_unlock(desc, flags);
1819
1820 return is_enabled;
1821}
1822EXPORT_SYMBOL_GPL(irq_percpu_is_enabled);
1823
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001824void disable_percpu_irq(unsigned int irq)
1825{
1826 unsigned int cpu = smp_processor_id();
1827 unsigned long flags;
1828 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
1829
1830 if (!desc)
1831 return;
1832
1833 irq_percpu_disable(desc, cpu);
1834 irq_put_desc_unlock(desc, flags);
1835}
Chris Metcalf36a5df82013-02-01 15:04:26 -05001836EXPORT_SYMBOL_GPL(disable_percpu_irq);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001837
1838/*
1839 * Internal function to unregister a percpu irqaction.
1840 */
1841static struct irqaction *__free_percpu_irq(unsigned int irq, void __percpu *dev_id)
1842{
1843 struct irq_desc *desc = irq_to_desc(irq);
1844 struct irqaction *action;
1845 unsigned long flags;
1846
1847 WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
1848
1849 if (!desc)
1850 return NULL;
1851
1852 raw_spin_lock_irqsave(&desc->lock, flags);
1853
1854 action = desc->action;
1855 if (!action || action->percpu_dev_id != dev_id) {
1856 WARN(1, "Trying to free already-free IRQ %d\n", irq);
1857 goto bad;
1858 }
1859
1860 if (!cpumask_empty(desc->percpu_enabled)) {
1861 WARN(1, "percpu IRQ %d still enabled on CPU%d!\n",
1862 irq, cpumask_first(desc->percpu_enabled));
1863 goto bad;
1864 }
1865
1866 /* Found it - now remove it from the list of entries: */
1867 desc->action = NULL;
1868
1869 raw_spin_unlock_irqrestore(&desc->lock, flags);
1870
1871 unregister_handler_proc(irq, action);
1872
Jon Hunterbe45beb2016-06-07 16:12:29 +01001873 irq_chip_pm_put(&desc->irq_data);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001874 module_put(desc->owner);
1875 return action;
1876
1877bad:
1878 raw_spin_unlock_irqrestore(&desc->lock, flags);
1879 return NULL;
1880}
1881
1882/**
1883 * remove_percpu_irq - free a per-cpu interrupt
1884 * @irq: Interrupt line to free
1885 * @act: irqaction for the interrupt
1886 *
1887 * Used to remove interrupts statically setup by the early boot process.
1888 */
1889void remove_percpu_irq(unsigned int irq, struct irqaction *act)
1890{
1891 struct irq_desc *desc = irq_to_desc(irq);
1892
1893 if (desc && irq_settings_is_per_cpu_devid(desc))
1894 __free_percpu_irq(irq, act->percpu_dev_id);
1895}
1896
1897/**
1898 * free_percpu_irq - free an interrupt allocated with request_percpu_irq
1899 * @irq: Interrupt line to free
1900 * @dev_id: Device identity to free
1901 *
1902 * Remove a percpu interrupt handler. The handler is removed, but
1903 * the interrupt line is not disabled. This must be done on each
1904 * CPU before calling this function. The function does not return
1905 * until any executing interrupts for this IRQ have completed.
1906 *
1907 * This function must not be called from interrupt context.
1908 */
1909void free_percpu_irq(unsigned int irq, void __percpu *dev_id)
1910{
1911 struct irq_desc *desc = irq_to_desc(irq);
1912
1913 if (!desc || !irq_settings_is_per_cpu_devid(desc))
1914 return;
1915
1916 chip_bus_lock(desc);
1917 kfree(__free_percpu_irq(irq, dev_id));
1918 chip_bus_sync_unlock(desc);
1919}
Maxime Ripardaec2e2a2015-09-25 18:09:33 +02001920EXPORT_SYMBOL_GPL(free_percpu_irq);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001921
1922/**
1923 * setup_percpu_irq - setup a per-cpu interrupt
1924 * @irq: Interrupt line to setup
1925 * @act: irqaction for the interrupt
1926 *
1927 * Used to statically setup per-cpu interrupts in the early boot process.
1928 */
1929int setup_percpu_irq(unsigned int irq, struct irqaction *act)
1930{
1931 struct irq_desc *desc = irq_to_desc(irq);
1932 int retval;
1933
1934 if (!desc || !irq_settings_is_per_cpu_devid(desc))
1935 return -EINVAL;
Jon Hunterbe45beb2016-06-07 16:12:29 +01001936
1937 retval = irq_chip_pm_get(&desc->irq_data);
1938 if (retval < 0)
1939 return retval;
1940
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001941 chip_bus_lock(desc);
1942 retval = __setup_irq(irq, desc, act);
1943 chip_bus_sync_unlock(desc);
1944
Jon Hunterbe45beb2016-06-07 16:12:29 +01001945 if (retval)
1946 irq_chip_pm_put(&desc->irq_data);
1947
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001948 return retval;
1949}
1950
1951/**
1952 * request_percpu_irq - allocate a percpu interrupt line
1953 * @irq: Interrupt line to allocate
1954 * @handler: Function to be called when the IRQ occurs.
1955 * @devname: An ascii name for the claiming device
1956 * @dev_id: A percpu cookie passed back to the handler function
1957 *
Maxime Riparda1b7feb2015-09-25 18:09:32 +02001958 * This call allocates interrupt resources and enables the
1959 * interrupt on the local CPU. If the interrupt is supposed to be
1960 * enabled on other CPUs, it has to be done on each CPU using
1961 * enable_percpu_irq().
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001962 *
1963 * Dev_id must be globally unique. It is a per-cpu variable, and
1964 * the handler gets called with the interrupted CPU's instance of
1965 * that variable.
1966 */
1967int request_percpu_irq(unsigned int irq, irq_handler_t handler,
1968 const char *devname, void __percpu *dev_id)
1969{
1970 struct irqaction *action;
1971 struct irq_desc *desc;
1972 int retval;
1973
1974 if (!dev_id)
1975 return -EINVAL;
1976
1977 desc = irq_to_desc(irq);
1978 if (!desc || !irq_settings_can_request(desc) ||
1979 !irq_settings_is_per_cpu_devid(desc))
1980 return -EINVAL;
1981
1982 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
1983 if (!action)
1984 return -ENOMEM;
1985
1986 action->handler = handler;
Marc Zyngier2ed0e642011-11-16 12:27:39 +00001987 action->flags = IRQF_PERCPU | IRQF_NO_SUSPEND;
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001988 action->name = devname;
1989 action->percpu_dev_id = dev_id;
1990
Jon Hunterbe45beb2016-06-07 16:12:29 +01001991 retval = irq_chip_pm_get(&desc->irq_data);
Shawn Lin4396f462016-08-22 16:21:52 +08001992 if (retval < 0) {
1993 kfree(action);
Jon Hunterbe45beb2016-06-07 16:12:29 +01001994 return retval;
Shawn Lin4396f462016-08-22 16:21:52 +08001995 }
Jon Hunterbe45beb2016-06-07 16:12:29 +01001996
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01001997 chip_bus_lock(desc);
1998 retval = __setup_irq(irq, desc, action);
1999 chip_bus_sync_unlock(desc);
2000
Jon Hunterbe45beb2016-06-07 16:12:29 +01002001 if (retval) {
2002 irq_chip_pm_put(&desc->irq_data);
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01002003 kfree(action);
Jon Hunterbe45beb2016-06-07 16:12:29 +01002004 }
Marc Zyngier31d9d9b2011-09-23 17:03:06 +01002005
2006 return retval;
2007}
Maxime Ripardaec2e2a2015-09-25 18:09:33 +02002008EXPORT_SYMBOL_GPL(request_percpu_irq);
Marc Zyngier1b7047e2015-03-18 11:01:22 +00002009
2010/**
2011 * irq_get_irqchip_state - returns the irqchip state of a interrupt.
2012 * @irq: Interrupt line that is forwarded to a VM
2013 * @which: One of IRQCHIP_STATE_* the caller wants to know about
2014 * @state: a pointer to a boolean where the state is to be storeed
2015 *
2016 * This call snapshots the internal irqchip state of an
2017 * interrupt, returning into @state the bit corresponding to
2018 * stage @which
2019 *
2020 * This function should be called with preemption disabled if the
2021 * interrupt controller has per-cpu registers.
2022 */
2023int irq_get_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
2024 bool *state)
2025{
2026 struct irq_desc *desc;
2027 struct irq_data *data;
2028 struct irq_chip *chip;
2029 unsigned long flags;
2030 int err = -EINVAL;
2031
2032 desc = irq_get_desc_buslock(irq, &flags, 0);
2033 if (!desc)
2034 return err;
2035
2036 data = irq_desc_get_irq_data(desc);
2037
2038 do {
2039 chip = irq_data_get_irq_chip(data);
2040 if (chip->irq_get_irqchip_state)
2041 break;
2042#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
2043 data = data->parent_data;
2044#else
2045 data = NULL;
2046#endif
2047 } while (data);
2048
2049 if (data)
2050 err = chip->irq_get_irqchip_state(data, which, state);
2051
2052 irq_put_desc_busunlock(desc, flags);
2053 return err;
2054}
Bjorn Andersson1ee4fb32015-07-22 12:43:04 -07002055EXPORT_SYMBOL_GPL(irq_get_irqchip_state);
Marc Zyngier1b7047e2015-03-18 11:01:22 +00002056
2057/**
2058 * irq_set_irqchip_state - set the state of a forwarded interrupt.
2059 * @irq: Interrupt line that is forwarded to a VM
2060 * @which: State to be restored (one of IRQCHIP_STATE_*)
2061 * @val: Value corresponding to @which
2062 *
2063 * This call sets the internal irqchip state of an interrupt,
2064 * depending on the value of @which.
2065 *
2066 * This function should be called with preemption disabled if the
2067 * interrupt controller has per-cpu registers.
2068 */
2069int irq_set_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
2070 bool val)
2071{
2072 struct irq_desc *desc;
2073 struct irq_data *data;
2074 struct irq_chip *chip;
2075 unsigned long flags;
2076 int err = -EINVAL;
2077
2078 desc = irq_get_desc_buslock(irq, &flags, 0);
2079 if (!desc)
2080 return err;
2081
2082 data = irq_desc_get_irq_data(desc);
2083
2084 do {
2085 chip = irq_data_get_irq_chip(data);
2086 if (chip->irq_set_irqchip_state)
2087 break;
2088#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
2089 data = data->parent_data;
2090#else
2091 data = NULL;
2092#endif
2093 } while (data);
2094
2095 if (data)
2096 err = chip->irq_set_irqchip_state(data, which, val);
2097
2098 irq_put_desc_busunlock(desc, flags);
2099 return err;
2100}
Bjorn Andersson1ee4fb32015-07-22 12:43:04 -07002101EXPORT_SYMBOL_GPL(irq_set_irqchip_state);