xref: /openbmc/linux/kernel/irq/manage.c (revision 44133f7eaebec227d1381868d642e3c64023520f)
152a65ff5SThomas Gleixner // SPDX-License-Identifier: GPL-2.0
21da177e4SLinus Torvalds /*
3a34db9b2SIngo Molnar  * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
4a34db9b2SIngo Molnar  * Copyright (C) 2005-2006 Thomas Gleixner
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  * This file contains driver APIs to the irq subsystem.
71da177e4SLinus Torvalds  */
81da177e4SLinus Torvalds 
997fd75b7SAndrew Morton #define pr_fmt(fmt) "genirq: " fmt
1097fd75b7SAndrew Morton 
111da177e4SLinus Torvalds #include <linux/irq.h>
123aa551c9SThomas Gleixner #include <linux/kthread.h>
131da177e4SLinus Torvalds #include <linux/module.h>
141da177e4SLinus Torvalds #include <linux/random.h>
151da177e4SLinus Torvalds #include <linux/interrupt.h>
161aeb272cSRobert P. J. Day #include <linux/slab.h>
173aa551c9SThomas Gleixner #include <linux/sched.h>
188bd75c77SClark Williams #include <linux/sched/rt.h>
190881e7bdSIngo Molnar #include <linux/sched/task.h>
20ae7e81c0SIngo Molnar #include <uapi/linux/sched/types.h>
214d1d61a6SOleg Nesterov #include <linux/task_work.h>
221da177e4SLinus Torvalds 
231da177e4SLinus Torvalds #include "internals.h"
241da177e4SLinus Torvalds 
258d32a307SThomas Gleixner #ifdef CONFIG_IRQ_FORCED_THREADING
268d32a307SThomas Gleixner __read_mostly bool force_irqthreads;
2747b82e88SSebastian Andrzej Siewior EXPORT_SYMBOL_GPL(force_irqthreads);
288d32a307SThomas Gleixner 
298d32a307SThomas Gleixner static int __init setup_forced_irqthreads(char *arg)
308d32a307SThomas Gleixner {
318d32a307SThomas Gleixner 	force_irqthreads = true;
328d32a307SThomas Gleixner 	return 0;
338d32a307SThomas Gleixner }
348d32a307SThomas Gleixner early_param("threadirqs", setup_forced_irqthreads);
358d32a307SThomas Gleixner #endif
368d32a307SThomas Gleixner 
3718258f72SThomas Gleixner static void __synchronize_hardirq(struct irq_desc *desc)
381da177e4SLinus Torvalds {
3932f4125eSThomas Gleixner 	bool inprogress;
401da177e4SLinus Torvalds 
41a98ce5c6SHerbert Xu 	do {
42a98ce5c6SHerbert Xu 		unsigned long flags;
43a98ce5c6SHerbert Xu 
44a98ce5c6SHerbert Xu 		/*
45a98ce5c6SHerbert Xu 		 * Wait until we're out of the critical section.  This might
46a98ce5c6SHerbert Xu 		 * give the wrong answer due to the lack of memory barriers.
47a98ce5c6SHerbert Xu 		 */
4832f4125eSThomas Gleixner 		while (irqd_irq_inprogress(&desc->irq_data))
491da177e4SLinus Torvalds 			cpu_relax();
50a98ce5c6SHerbert Xu 
51a98ce5c6SHerbert Xu 		/* Ok, that indicated we're done: double-check carefully. */
52239007b8SThomas Gleixner 		raw_spin_lock_irqsave(&desc->lock, flags);
5332f4125eSThomas Gleixner 		inprogress = irqd_irq_inprogress(&desc->irq_data);
54239007b8SThomas Gleixner 		raw_spin_unlock_irqrestore(&desc->lock, flags);
55a98ce5c6SHerbert Xu 
56a98ce5c6SHerbert Xu 		/* Oops, that failed? */
5732f4125eSThomas Gleixner 	} while (inprogress);
5818258f72SThomas Gleixner }
593aa551c9SThomas Gleixner 
6018258f72SThomas Gleixner /**
6118258f72SThomas Gleixner  *	synchronize_hardirq - wait for pending hard IRQ handlers (on other CPUs)
6218258f72SThomas Gleixner  *	@irq: interrupt number to wait for
6318258f72SThomas Gleixner  *
6418258f72SThomas Gleixner  *	This function waits for any pending hard IRQ handlers for this
6518258f72SThomas Gleixner  *	interrupt to complete before returning. If you use this
6618258f72SThomas Gleixner  *	function while holding a resource the IRQ handler may need you
6718258f72SThomas Gleixner  *	will deadlock. It does not take associated threaded handlers
6818258f72SThomas Gleixner  *	into account.
6918258f72SThomas Gleixner  *
7018258f72SThomas Gleixner  *	Do not use this for shutdown scenarios where you must be sure
7118258f72SThomas Gleixner  *	that all parts (hardirq and threaded handler) have completed.
7218258f72SThomas Gleixner  *
7302cea395SPeter Zijlstra  *	Returns: false if a threaded handler is active.
7402cea395SPeter Zijlstra  *
7518258f72SThomas Gleixner  *	This function may be called - with care - from IRQ context.
763aa551c9SThomas Gleixner  */
7702cea395SPeter Zijlstra bool synchronize_hardirq(unsigned int irq)
7818258f72SThomas Gleixner {
7918258f72SThomas Gleixner 	struct irq_desc *desc = irq_to_desc(irq);
8018258f72SThomas Gleixner 
8102cea395SPeter Zijlstra 	if (desc) {
8218258f72SThomas Gleixner 		__synchronize_hardirq(desc);
8302cea395SPeter Zijlstra 		return !atomic_read(&desc->threads_active);
8402cea395SPeter Zijlstra 	}
8502cea395SPeter Zijlstra 
8602cea395SPeter Zijlstra 	return true;
8718258f72SThomas Gleixner }
8818258f72SThomas Gleixner EXPORT_SYMBOL(synchronize_hardirq);
8918258f72SThomas Gleixner 
9018258f72SThomas Gleixner /**
9118258f72SThomas Gleixner  *	synchronize_irq - wait for pending IRQ handlers (on other CPUs)
9218258f72SThomas Gleixner  *	@irq: interrupt number to wait for
9318258f72SThomas Gleixner  *
9418258f72SThomas Gleixner  *	This function waits for any pending IRQ handlers for this interrupt
9518258f72SThomas Gleixner  *	to complete before returning. If you use this function while
9618258f72SThomas Gleixner  *	holding a resource the IRQ handler may need you will deadlock.
9718258f72SThomas Gleixner  *
9818258f72SThomas Gleixner  *	This function may be called - with care - from IRQ context.
9918258f72SThomas Gleixner  */
10018258f72SThomas Gleixner void synchronize_irq(unsigned int irq)
10118258f72SThomas Gleixner {
10218258f72SThomas Gleixner 	struct irq_desc *desc = irq_to_desc(irq);
10318258f72SThomas Gleixner 
10418258f72SThomas Gleixner 	if (desc) {
10518258f72SThomas Gleixner 		__synchronize_hardirq(desc);
10618258f72SThomas Gleixner 		/*
10718258f72SThomas Gleixner 		 * We made sure that no hardirq handler is
10818258f72SThomas Gleixner 		 * running. Now verify that no threaded handlers are
10918258f72SThomas Gleixner 		 * active.
11018258f72SThomas Gleixner 		 */
11118258f72SThomas Gleixner 		wait_event(desc->wait_for_threads,
11218258f72SThomas Gleixner 			   !atomic_read(&desc->threads_active));
11318258f72SThomas Gleixner 	}
1141da177e4SLinus Torvalds }
1151da177e4SLinus Torvalds EXPORT_SYMBOL(synchronize_irq);
1161da177e4SLinus Torvalds 
1173aa551c9SThomas Gleixner #ifdef CONFIG_SMP
1183aa551c9SThomas Gleixner cpumask_var_t irq_default_affinity;
1193aa551c9SThomas Gleixner 
1209c255583SThomas Gleixner static bool __irq_can_set_affinity(struct irq_desc *desc)
121e019c249SJiang Liu {
122e019c249SJiang Liu 	if (!desc || !irqd_can_balance(&desc->irq_data) ||
123e019c249SJiang Liu 	    !desc->irq_data.chip || !desc->irq_data.chip->irq_set_affinity)
1249c255583SThomas Gleixner 		return false;
1259c255583SThomas Gleixner 	return true;
126e019c249SJiang Liu }
127e019c249SJiang Liu 
128771ee3b0SThomas Gleixner /**
129771ee3b0SThomas Gleixner  *	irq_can_set_affinity - Check if the affinity of a given irq can be set
130771ee3b0SThomas Gleixner  *	@irq:		Interrupt to check
131771ee3b0SThomas Gleixner  *
132771ee3b0SThomas Gleixner  */
133771ee3b0SThomas Gleixner int irq_can_set_affinity(unsigned int irq)
134771ee3b0SThomas Gleixner {
135e019c249SJiang Liu 	return __irq_can_set_affinity(irq_to_desc(irq));
136771ee3b0SThomas Gleixner }
137771ee3b0SThomas Gleixner 
138591d2fb0SThomas Gleixner /**
1399c255583SThomas Gleixner  * irq_can_set_affinity_usr - Check if affinity of a irq can be set from user space
1409c255583SThomas Gleixner  * @irq:	Interrupt to check
1419c255583SThomas Gleixner  *
1429c255583SThomas Gleixner  * Like irq_can_set_affinity() above, but additionally checks for the
1439c255583SThomas Gleixner  * AFFINITY_MANAGED flag.
1449c255583SThomas Gleixner  */
1459c255583SThomas Gleixner bool irq_can_set_affinity_usr(unsigned int irq)
1469c255583SThomas Gleixner {
1479c255583SThomas Gleixner 	struct irq_desc *desc = irq_to_desc(irq);
1489c255583SThomas Gleixner 
1499c255583SThomas Gleixner 	return __irq_can_set_affinity(desc) &&
1509c255583SThomas Gleixner 		!irqd_affinity_is_managed(&desc->irq_data);
1519c255583SThomas Gleixner }
1529c255583SThomas Gleixner 
1539c255583SThomas Gleixner /**
154591d2fb0SThomas Gleixner  *	irq_set_thread_affinity - Notify irq threads to adjust affinity
155591d2fb0SThomas Gleixner  *	@desc:		irq descriptor which has affitnity changed
156591d2fb0SThomas Gleixner  *
157591d2fb0SThomas Gleixner  *	We just set IRQTF_AFFINITY and delegate the affinity setting
158591d2fb0SThomas Gleixner  *	to the interrupt thread itself. We can not call
159591d2fb0SThomas Gleixner  *	set_cpus_allowed_ptr() here as we hold desc->lock and this
160591d2fb0SThomas Gleixner  *	code can be called from hard interrupt context.
161591d2fb0SThomas Gleixner  */
162591d2fb0SThomas Gleixner void irq_set_thread_affinity(struct irq_desc *desc)
1633aa551c9SThomas Gleixner {
164f944b5a7SDaniel Lezcano 	struct irqaction *action;
1653aa551c9SThomas Gleixner 
166f944b5a7SDaniel Lezcano 	for_each_action_of_desc(desc, action)
1673aa551c9SThomas Gleixner 		if (action->thread)
168591d2fb0SThomas Gleixner 			set_bit(IRQTF_AFFINITY, &action->thread_flags);
1693aa551c9SThomas Gleixner }
1703aa551c9SThomas Gleixner 
17119e1d4e9SThomas Gleixner static void irq_validate_effective_affinity(struct irq_data *data)
17219e1d4e9SThomas Gleixner {
17319e1d4e9SThomas Gleixner #ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
17419e1d4e9SThomas Gleixner 	const struct cpumask *m = irq_data_get_effective_affinity_mask(data);
17519e1d4e9SThomas Gleixner 	struct irq_chip *chip = irq_data_get_irq_chip(data);
17619e1d4e9SThomas Gleixner 
17719e1d4e9SThomas Gleixner 	if (!cpumask_empty(m))
17819e1d4e9SThomas Gleixner 		return;
17919e1d4e9SThomas Gleixner 	pr_warn_once("irq_chip %s did not update eff. affinity mask of irq %u\n",
18019e1d4e9SThomas Gleixner 		     chip->name, data->irq);
18119e1d4e9SThomas Gleixner #endif
18219e1d4e9SThomas Gleixner }
18319e1d4e9SThomas Gleixner 
184818b0f3bSJiang Liu int irq_do_set_affinity(struct irq_data *data, const struct cpumask *mask,
185818b0f3bSJiang Liu 			bool force)
186818b0f3bSJiang Liu {
187818b0f3bSJiang Liu 	struct irq_desc *desc = irq_data_to_desc(data);
188818b0f3bSJiang Liu 	struct irq_chip *chip = irq_data_get_irq_chip(data);
189818b0f3bSJiang Liu 	int ret;
190818b0f3bSJiang Liu 
191e43b3b58SThomas Gleixner 	if (!chip || !chip->irq_set_affinity)
192e43b3b58SThomas Gleixner 		return -EINVAL;
193e43b3b58SThomas Gleixner 
19401f8fa4fSThomas Gleixner 	ret = chip->irq_set_affinity(data, mask, force);
195818b0f3bSJiang Liu 	switch (ret) {
196818b0f3bSJiang Liu 	case IRQ_SET_MASK_OK:
1972cb62547SJiang Liu 	case IRQ_SET_MASK_OK_DONE:
1989df872faSJiang Liu 		cpumask_copy(desc->irq_common_data.affinity, mask);
199818b0f3bSJiang Liu 	case IRQ_SET_MASK_OK_NOCOPY:
20019e1d4e9SThomas Gleixner 		irq_validate_effective_affinity(data);
201818b0f3bSJiang Liu 		irq_set_thread_affinity(desc);
202818b0f3bSJiang Liu 		ret = 0;
203818b0f3bSJiang Liu 	}
204818b0f3bSJiang Liu 
205818b0f3bSJiang Liu 	return ret;
206818b0f3bSJiang Liu }
207818b0f3bSJiang Liu 
20812f47073SThomas Gleixner #ifdef CONFIG_GENERIC_PENDING_IRQ
20912f47073SThomas Gleixner static inline int irq_set_affinity_pending(struct irq_data *data,
21012f47073SThomas Gleixner 					   const struct cpumask *dest)
21112f47073SThomas Gleixner {
21212f47073SThomas Gleixner 	struct irq_desc *desc = irq_data_to_desc(data);
21312f47073SThomas Gleixner 
21412f47073SThomas Gleixner 	irqd_set_move_pending(data);
21512f47073SThomas Gleixner 	irq_copy_pending(desc, dest);
21612f47073SThomas Gleixner 	return 0;
21712f47073SThomas Gleixner }
21812f47073SThomas Gleixner #else
21912f47073SThomas Gleixner static inline int irq_set_affinity_pending(struct irq_data *data,
22012f47073SThomas Gleixner 					   const struct cpumask *dest)
22112f47073SThomas Gleixner {
22212f47073SThomas Gleixner 	return -EBUSY;
22312f47073SThomas Gleixner }
22412f47073SThomas Gleixner #endif
22512f47073SThomas Gleixner 
22612f47073SThomas Gleixner static int irq_try_set_affinity(struct irq_data *data,
22712f47073SThomas Gleixner 				const struct cpumask *dest, bool force)
22812f47073SThomas Gleixner {
22912f47073SThomas Gleixner 	int ret = irq_do_set_affinity(data, dest, force);
23012f47073SThomas Gleixner 
23112f47073SThomas Gleixner 	/*
23212f47073SThomas Gleixner 	 * In case that the underlying vector management is busy and the
23312f47073SThomas Gleixner 	 * architecture supports the generic pending mechanism then utilize
23412f47073SThomas Gleixner 	 * this to avoid returning an error to user space.
23512f47073SThomas Gleixner 	 */
23612f47073SThomas Gleixner 	if (ret == -EBUSY && !force)
23712f47073SThomas Gleixner 		ret = irq_set_affinity_pending(data, dest);
23812f47073SThomas Gleixner 	return ret;
23912f47073SThomas Gleixner }
24012f47073SThomas Gleixner 
24101f8fa4fSThomas Gleixner int irq_set_affinity_locked(struct irq_data *data, const struct cpumask *mask,
24201f8fa4fSThomas Gleixner 			    bool force)
243c2d0c555SDavid Daney {
244c2d0c555SDavid Daney 	struct irq_chip *chip = irq_data_get_irq_chip(data);
245c2d0c555SDavid Daney 	struct irq_desc *desc = irq_data_to_desc(data);
246c2d0c555SDavid Daney 	int ret = 0;
247c2d0c555SDavid Daney 
248c2d0c555SDavid Daney 	if (!chip || !chip->irq_set_affinity)
249c2d0c555SDavid Daney 		return -EINVAL;
250c2d0c555SDavid Daney 
25112f47073SThomas Gleixner 	if (irq_can_move_pcntxt(data) && !irqd_is_setaffinity_pending(data)) {
25212f47073SThomas Gleixner 		ret = irq_try_set_affinity(data, mask, force);
253c2d0c555SDavid Daney 	} else {
254c2d0c555SDavid Daney 		irqd_set_move_pending(data);
255c2d0c555SDavid Daney 		irq_copy_pending(desc, mask);
256c2d0c555SDavid Daney 	}
257c2d0c555SDavid Daney 
258c2d0c555SDavid Daney 	if (desc->affinity_notify) {
259c2d0c555SDavid Daney 		kref_get(&desc->affinity_notify->kref);
260c2d0c555SDavid Daney 		schedule_work(&desc->affinity_notify->work);
261c2d0c555SDavid Daney 	}
262c2d0c555SDavid Daney 	irqd_set(data, IRQD_AFFINITY_SET);
263c2d0c555SDavid Daney 
264c2d0c555SDavid Daney 	return ret;
265c2d0c555SDavid Daney }
266c2d0c555SDavid Daney 
26701f8fa4fSThomas Gleixner int __irq_set_affinity(unsigned int irq, const struct cpumask *mask, bool force)
268771ee3b0SThomas Gleixner {
26908678b08SYinghai Lu 	struct irq_desc *desc = irq_to_desc(irq);
270f6d87f4bSThomas Gleixner 	unsigned long flags;
271c2d0c555SDavid Daney 	int ret;
272771ee3b0SThomas Gleixner 
273c2d0c555SDavid Daney 	if (!desc)
274771ee3b0SThomas Gleixner 		return -EINVAL;
275771ee3b0SThomas Gleixner 
276239007b8SThomas Gleixner 	raw_spin_lock_irqsave(&desc->lock, flags);
27701f8fa4fSThomas Gleixner 	ret = irq_set_affinity_locked(irq_desc_get_irq_data(desc), mask, force);
278239007b8SThomas Gleixner 	raw_spin_unlock_irqrestore(&desc->lock, flags);
2791fa46f1fSThomas Gleixner 	return ret;
280771ee3b0SThomas Gleixner }
281771ee3b0SThomas Gleixner 
282e7a297b0SPeter P Waskiewicz Jr int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m)
283e7a297b0SPeter P Waskiewicz Jr {
284e7a297b0SPeter P Waskiewicz Jr 	unsigned long flags;
28531d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
286e7a297b0SPeter P Waskiewicz Jr 
287e7a297b0SPeter P Waskiewicz Jr 	if (!desc)
288e7a297b0SPeter P Waskiewicz Jr 		return -EINVAL;
289e7a297b0SPeter P Waskiewicz Jr 	desc->affinity_hint = m;
29002725e74SThomas Gleixner 	irq_put_desc_unlock(desc, flags);
291e2e64a93SJesse Brandeburg 	/* set the initial affinity to prevent every interrupt being on CPU0 */
2924fe7ffb7SJesse Brandeburg 	if (m)
293e2e64a93SJesse Brandeburg 		__irq_set_affinity(irq, m, false);
294e7a297b0SPeter P Waskiewicz Jr 	return 0;
295e7a297b0SPeter P Waskiewicz Jr }
296e7a297b0SPeter P Waskiewicz Jr EXPORT_SYMBOL_GPL(irq_set_affinity_hint);
297e7a297b0SPeter P Waskiewicz Jr 
298cd7eab44SBen Hutchings static void irq_affinity_notify(struct work_struct *work)
299cd7eab44SBen Hutchings {
300cd7eab44SBen Hutchings 	struct irq_affinity_notify *notify =
301cd7eab44SBen Hutchings 		container_of(work, struct irq_affinity_notify, work);
302cd7eab44SBen Hutchings 	struct irq_desc *desc = irq_to_desc(notify->irq);
303cd7eab44SBen Hutchings 	cpumask_var_t cpumask;
304cd7eab44SBen Hutchings 	unsigned long flags;
305cd7eab44SBen Hutchings 
3061fa46f1fSThomas Gleixner 	if (!desc || !alloc_cpumask_var(&cpumask, GFP_KERNEL))
307cd7eab44SBen Hutchings 		goto out;
308cd7eab44SBen Hutchings 
309cd7eab44SBen Hutchings 	raw_spin_lock_irqsave(&desc->lock, flags);
3100ef5ca1eSThomas Gleixner 	if (irq_move_pending(&desc->irq_data))
3111fa46f1fSThomas Gleixner 		irq_get_pending(cpumask, desc);
312cd7eab44SBen Hutchings 	else
3139df872faSJiang Liu 		cpumask_copy(cpumask, desc->irq_common_data.affinity);
314cd7eab44SBen Hutchings 	raw_spin_unlock_irqrestore(&desc->lock, flags);
315cd7eab44SBen Hutchings 
316cd7eab44SBen Hutchings 	notify->notify(notify, cpumask);
317cd7eab44SBen Hutchings 
318cd7eab44SBen Hutchings 	free_cpumask_var(cpumask);
319cd7eab44SBen Hutchings out:
320cd7eab44SBen Hutchings 	kref_put(&notify->kref, notify->release);
321cd7eab44SBen Hutchings }
322cd7eab44SBen Hutchings 
323cd7eab44SBen Hutchings /**
324cd7eab44SBen Hutchings  *	irq_set_affinity_notifier - control notification of IRQ affinity changes
325cd7eab44SBen Hutchings  *	@irq:		Interrupt for which to enable/disable notification
326cd7eab44SBen Hutchings  *	@notify:	Context for notification, or %NULL to disable
327cd7eab44SBen Hutchings  *			notification.  Function pointers must be initialised;
328cd7eab44SBen Hutchings  *			the other fields will be initialised by this function.
329cd7eab44SBen Hutchings  *
330cd7eab44SBen Hutchings  *	Must be called in process context.  Notification may only be enabled
331cd7eab44SBen Hutchings  *	after the IRQ is allocated and must be disabled before the IRQ is
332cd7eab44SBen Hutchings  *	freed using free_irq().
333cd7eab44SBen Hutchings  */
334cd7eab44SBen Hutchings int
335cd7eab44SBen Hutchings irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify)
336cd7eab44SBen Hutchings {
337cd7eab44SBen Hutchings 	struct irq_desc *desc = irq_to_desc(irq);
338cd7eab44SBen Hutchings 	struct irq_affinity_notify *old_notify;
339cd7eab44SBen Hutchings 	unsigned long flags;
340cd7eab44SBen Hutchings 
341cd7eab44SBen Hutchings 	/* The release function is promised process context */
342cd7eab44SBen Hutchings 	might_sleep();
343cd7eab44SBen Hutchings 
344cd7eab44SBen Hutchings 	if (!desc)
345cd7eab44SBen Hutchings 		return -EINVAL;
346cd7eab44SBen Hutchings 
347cd7eab44SBen Hutchings 	/* Complete initialisation of *notify */
348cd7eab44SBen Hutchings 	if (notify) {
349cd7eab44SBen Hutchings 		notify->irq = irq;
350cd7eab44SBen Hutchings 		kref_init(&notify->kref);
351cd7eab44SBen Hutchings 		INIT_WORK(&notify->work, irq_affinity_notify);
352cd7eab44SBen Hutchings 	}
353cd7eab44SBen Hutchings 
354cd7eab44SBen Hutchings 	raw_spin_lock_irqsave(&desc->lock, flags);
355cd7eab44SBen Hutchings 	old_notify = desc->affinity_notify;
356cd7eab44SBen Hutchings 	desc->affinity_notify = notify;
357cd7eab44SBen Hutchings 	raw_spin_unlock_irqrestore(&desc->lock, flags);
358cd7eab44SBen Hutchings 
359cd7eab44SBen Hutchings 	if (old_notify)
360cd7eab44SBen Hutchings 		kref_put(&old_notify->kref, old_notify->release);
361cd7eab44SBen Hutchings 
362cd7eab44SBen Hutchings 	return 0;
363cd7eab44SBen Hutchings }
364cd7eab44SBen Hutchings EXPORT_SYMBOL_GPL(irq_set_affinity_notifier);
365cd7eab44SBen Hutchings 
36618404756SMax Krasnyansky #ifndef CONFIG_AUTO_IRQ_AFFINITY
36718404756SMax Krasnyansky /*
36818404756SMax Krasnyansky  * Generic version of the affinity autoselector.
36918404756SMax Krasnyansky  */
37043564bd9SThomas Gleixner int irq_setup_affinity(struct irq_desc *desc)
37118404756SMax Krasnyansky {
372569bda8dSThomas Gleixner 	struct cpumask *set = irq_default_affinity;
373cba4235eSThomas Gleixner 	int ret, node = irq_desc_get_node(desc);
374cba4235eSThomas Gleixner 	static DEFINE_RAW_SPINLOCK(mask_lock);
375cba4235eSThomas Gleixner 	static struct cpumask mask;
376569bda8dSThomas Gleixner 
377b008207cSThomas Gleixner 	/* Excludes PER_CPU and NO_BALANCE interrupts */
378e019c249SJiang Liu 	if (!__irq_can_set_affinity(desc))
37918404756SMax Krasnyansky 		return 0;
38018404756SMax Krasnyansky 
381cba4235eSThomas Gleixner 	raw_spin_lock(&mask_lock);
382f6d87f4bSThomas Gleixner 	/*
3839332ef9dSMasahiro Yamada 	 * Preserve the managed affinity setting and a userspace affinity
38406ee6d57SThomas Gleixner 	 * setup, but make sure that one of the targets is online.
385f6d87f4bSThomas Gleixner 	 */
38606ee6d57SThomas Gleixner 	if (irqd_affinity_is_managed(&desc->irq_data) ||
38706ee6d57SThomas Gleixner 	    irqd_has_set(&desc->irq_data, IRQD_AFFINITY_SET)) {
3889df872faSJiang Liu 		if (cpumask_intersects(desc->irq_common_data.affinity,
389569bda8dSThomas Gleixner 				       cpu_online_mask))
3909df872faSJiang Liu 			set = desc->irq_common_data.affinity;
3910c6f8a8bSThomas Gleixner 		else
3922bdd1055SThomas Gleixner 			irqd_clear(&desc->irq_data, IRQD_AFFINITY_SET);
3932bdd1055SThomas Gleixner 	}
39418404756SMax Krasnyansky 
395cba4235eSThomas Gleixner 	cpumask_and(&mask, cpu_online_mask, set);
396241fc640SPrarit Bhargava 	if (node != NUMA_NO_NODE) {
397241fc640SPrarit Bhargava 		const struct cpumask *nodemask = cpumask_of_node(node);
398241fc640SPrarit Bhargava 
399241fc640SPrarit Bhargava 		/* make sure at least one of the cpus in nodemask is online */
400cba4235eSThomas Gleixner 		if (cpumask_intersects(&mask, nodemask))
401cba4235eSThomas Gleixner 			cpumask_and(&mask, &mask, nodemask);
402241fc640SPrarit Bhargava 	}
403cba4235eSThomas Gleixner 	ret = irq_do_set_affinity(&desc->irq_data, &mask, false);
404cba4235eSThomas Gleixner 	raw_spin_unlock(&mask_lock);
405cba4235eSThomas Gleixner 	return ret;
40618404756SMax Krasnyansky }
407f6d87f4bSThomas Gleixner #else
408a8a98eacSJiang Liu /* Wrapper for ALPHA specific affinity selector magic */
409cba4235eSThomas Gleixner int irq_setup_affinity(struct irq_desc *desc)
410f6d87f4bSThomas Gleixner {
411cba4235eSThomas Gleixner 	return irq_select_affinity(irq_desc_get_irq(desc));
412f6d87f4bSThomas Gleixner }
41318404756SMax Krasnyansky #endif
41418404756SMax Krasnyansky 
415f6d87f4bSThomas Gleixner /*
416cba4235eSThomas Gleixner  * Called when a bogus affinity is set via /proc/irq
417f6d87f4bSThomas Gleixner  */
418cba4235eSThomas Gleixner int irq_select_affinity_usr(unsigned int irq)
419f6d87f4bSThomas Gleixner {
420f6d87f4bSThomas Gleixner 	struct irq_desc *desc = irq_to_desc(irq);
421f6d87f4bSThomas Gleixner 	unsigned long flags;
422f6d87f4bSThomas Gleixner 	int ret;
423f6d87f4bSThomas Gleixner 
424239007b8SThomas Gleixner 	raw_spin_lock_irqsave(&desc->lock, flags);
425cba4235eSThomas Gleixner 	ret = irq_setup_affinity(desc);
426239007b8SThomas Gleixner 	raw_spin_unlock_irqrestore(&desc->lock, flags);
427f6d87f4bSThomas Gleixner 	return ret;
428f6d87f4bSThomas Gleixner }
4291da177e4SLinus Torvalds #endif
4301da177e4SLinus Torvalds 
431fcf1ae2fSFeng Wu /**
432fcf1ae2fSFeng Wu  *	irq_set_vcpu_affinity - Set vcpu affinity for the interrupt
433fcf1ae2fSFeng Wu  *	@irq: interrupt number to set affinity
434250a53d6SChristoffer Dall  *	@vcpu_info: vCPU specific data or pointer to a percpu array of vCPU
435250a53d6SChristoffer Dall  *	            specific data for percpu_devid interrupts
436fcf1ae2fSFeng Wu  *
437fcf1ae2fSFeng Wu  *	This function uses the vCPU specific data to set the vCPU
438fcf1ae2fSFeng Wu  *	affinity for an irq. The vCPU specific data is passed from
439fcf1ae2fSFeng Wu  *	outside, such as KVM. One example code path is as below:
440fcf1ae2fSFeng Wu  *	KVM -> IOMMU -> irq_set_vcpu_affinity().
441fcf1ae2fSFeng Wu  */
442fcf1ae2fSFeng Wu int irq_set_vcpu_affinity(unsigned int irq, void *vcpu_info)
443fcf1ae2fSFeng Wu {
444fcf1ae2fSFeng Wu 	unsigned long flags;
445fcf1ae2fSFeng Wu 	struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
446fcf1ae2fSFeng Wu 	struct irq_data *data;
447fcf1ae2fSFeng Wu 	struct irq_chip *chip;
448fcf1ae2fSFeng Wu 	int ret = -ENOSYS;
449fcf1ae2fSFeng Wu 
450fcf1ae2fSFeng Wu 	if (!desc)
451fcf1ae2fSFeng Wu 		return -EINVAL;
452fcf1ae2fSFeng Wu 
453fcf1ae2fSFeng Wu 	data = irq_desc_get_irq_data(desc);
4540abce64aSMarc Zyngier 	do {
455fcf1ae2fSFeng Wu 		chip = irq_data_get_irq_chip(data);
456fcf1ae2fSFeng Wu 		if (chip && chip->irq_set_vcpu_affinity)
4570abce64aSMarc Zyngier 			break;
4580abce64aSMarc Zyngier #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
4590abce64aSMarc Zyngier 		data = data->parent_data;
4600abce64aSMarc Zyngier #else
4610abce64aSMarc Zyngier 		data = NULL;
4620abce64aSMarc Zyngier #endif
4630abce64aSMarc Zyngier 	} while (data);
4640abce64aSMarc Zyngier 
4650abce64aSMarc Zyngier 	if (data)
466fcf1ae2fSFeng Wu 		ret = chip->irq_set_vcpu_affinity(data, vcpu_info);
467fcf1ae2fSFeng Wu 	irq_put_desc_unlock(desc, flags);
468fcf1ae2fSFeng Wu 
469fcf1ae2fSFeng Wu 	return ret;
470fcf1ae2fSFeng Wu }
471fcf1ae2fSFeng Wu EXPORT_SYMBOL_GPL(irq_set_vcpu_affinity);
472fcf1ae2fSFeng Wu 
47379ff1cdaSJiang Liu void __disable_irq(struct irq_desc *desc)
4740a0c5168SRafael J. Wysocki {
4753aae994fSThomas Gleixner 	if (!desc->depth++)
47687923470SThomas Gleixner 		irq_disable(desc);
4770a0c5168SRafael J. Wysocki }
4780a0c5168SRafael J. Wysocki 
47902725e74SThomas Gleixner static int __disable_irq_nosync(unsigned int irq)
48002725e74SThomas Gleixner {
48102725e74SThomas Gleixner 	unsigned long flags;
48231d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
48302725e74SThomas Gleixner 
48402725e74SThomas Gleixner 	if (!desc)
48502725e74SThomas Gleixner 		return -EINVAL;
48679ff1cdaSJiang Liu 	__disable_irq(desc);
48702725e74SThomas Gleixner 	irq_put_desc_busunlock(desc, flags);
48802725e74SThomas Gleixner 	return 0;
48902725e74SThomas Gleixner }
49002725e74SThomas Gleixner 
4911da177e4SLinus Torvalds /**
4921da177e4SLinus Torvalds  *	disable_irq_nosync - disable an irq without waiting
4931da177e4SLinus Torvalds  *	@irq: Interrupt to disable
4941da177e4SLinus Torvalds  *
4951da177e4SLinus Torvalds  *	Disable the selected interrupt line.  Disables and Enables are
4961da177e4SLinus Torvalds  *	nested.
4971da177e4SLinus Torvalds  *	Unlike disable_irq(), this function does not ensure existing
4981da177e4SLinus Torvalds  *	instances of the IRQ handler have completed before returning.
4991da177e4SLinus Torvalds  *
5001da177e4SLinus Torvalds  *	This function may be called from IRQ context.
5011da177e4SLinus Torvalds  */
5021da177e4SLinus Torvalds void disable_irq_nosync(unsigned int irq)
5031da177e4SLinus Torvalds {
50402725e74SThomas Gleixner 	__disable_irq_nosync(irq);
5051da177e4SLinus Torvalds }
5061da177e4SLinus Torvalds EXPORT_SYMBOL(disable_irq_nosync);
5071da177e4SLinus Torvalds 
5081da177e4SLinus Torvalds /**
5091da177e4SLinus Torvalds  *	disable_irq - disable an irq and wait for completion
5101da177e4SLinus Torvalds  *	@irq: Interrupt to disable
5111da177e4SLinus Torvalds  *
5121da177e4SLinus Torvalds  *	Disable the selected interrupt line.  Enables and Disables are
5131da177e4SLinus Torvalds  *	nested.
5141da177e4SLinus Torvalds  *	This function waits for any pending IRQ handlers for this interrupt
5151da177e4SLinus Torvalds  *	to complete before returning. If you use this function while
5161da177e4SLinus Torvalds  *	holding a resource the IRQ handler may need you will deadlock.
5171da177e4SLinus Torvalds  *
5181da177e4SLinus Torvalds  *	This function may be called - with care - from IRQ context.
5191da177e4SLinus Torvalds  */
5201da177e4SLinus Torvalds void disable_irq(unsigned int irq)
5211da177e4SLinus Torvalds {
52202725e74SThomas Gleixner 	if (!__disable_irq_nosync(irq))
5231da177e4SLinus Torvalds 		synchronize_irq(irq);
5241da177e4SLinus Torvalds }
5251da177e4SLinus Torvalds EXPORT_SYMBOL(disable_irq);
5261da177e4SLinus Torvalds 
52702cea395SPeter Zijlstra /**
52802cea395SPeter Zijlstra  *	disable_hardirq - disables an irq and waits for hardirq completion
52902cea395SPeter Zijlstra  *	@irq: Interrupt to disable
53002cea395SPeter Zijlstra  *
53102cea395SPeter Zijlstra  *	Disable the selected interrupt line.  Enables and Disables are
53202cea395SPeter Zijlstra  *	nested.
53302cea395SPeter Zijlstra  *	This function waits for any pending hard IRQ handlers for this
53402cea395SPeter Zijlstra  *	interrupt to complete before returning. If you use this function while
53502cea395SPeter Zijlstra  *	holding a resource the hard IRQ handler may need you will deadlock.
53602cea395SPeter Zijlstra  *
53702cea395SPeter Zijlstra  *	When used to optimistically disable an interrupt from atomic context
53802cea395SPeter Zijlstra  *	the return value must be checked.
53902cea395SPeter Zijlstra  *
54002cea395SPeter Zijlstra  *	Returns: false if a threaded handler is active.
54102cea395SPeter Zijlstra  *
54202cea395SPeter Zijlstra  *	This function may be called - with care - from IRQ context.
54302cea395SPeter Zijlstra  */
54402cea395SPeter Zijlstra bool disable_hardirq(unsigned int irq)
54502cea395SPeter Zijlstra {
54602cea395SPeter Zijlstra 	if (!__disable_irq_nosync(irq))
54702cea395SPeter Zijlstra 		return synchronize_hardirq(irq);
54802cea395SPeter Zijlstra 
54902cea395SPeter Zijlstra 	return false;
55002cea395SPeter Zijlstra }
55102cea395SPeter Zijlstra EXPORT_SYMBOL_GPL(disable_hardirq);
55202cea395SPeter Zijlstra 
55379ff1cdaSJiang Liu void __enable_irq(struct irq_desc *desc)
5541adb0850SThomas Gleixner {
5551adb0850SThomas Gleixner 	switch (desc->depth) {
5561adb0850SThomas Gleixner 	case 0:
5570a0c5168SRafael J. Wysocki  err_out:
55879ff1cdaSJiang Liu 		WARN(1, KERN_WARNING "Unbalanced enable for IRQ %d\n",
55979ff1cdaSJiang Liu 		     irq_desc_get_irq(desc));
5601adb0850SThomas Gleixner 		break;
5611adb0850SThomas Gleixner 	case 1: {
562c531e836SThomas Gleixner 		if (desc->istate & IRQS_SUSPENDED)
5630a0c5168SRafael J. Wysocki 			goto err_out;
5641adb0850SThomas Gleixner 		/* Prevent probing on this irq: */
5651ccb4e61SThomas Gleixner 		irq_settings_set_noprobe(desc);
566201d7f47SThomas Gleixner 		/*
567201d7f47SThomas Gleixner 		 * Call irq_startup() not irq_enable() here because the
568201d7f47SThomas Gleixner 		 * interrupt might be marked NOAUTOEN. So irq_startup()
569201d7f47SThomas Gleixner 		 * needs to be invoked when it gets enabled the first
570201d7f47SThomas Gleixner 		 * time. If it was already started up, then irq_startup()
571201d7f47SThomas Gleixner 		 * will invoke irq_enable() under the hood.
572201d7f47SThomas Gleixner 		 */
573c942cee4SThomas Gleixner 		irq_startup(desc, IRQ_RESEND, IRQ_START_FORCE);
574201d7f47SThomas Gleixner 		break;
5751adb0850SThomas Gleixner 	}
5761adb0850SThomas Gleixner 	default:
5771adb0850SThomas Gleixner 		desc->depth--;
5781adb0850SThomas Gleixner 	}
5791adb0850SThomas Gleixner }
5801adb0850SThomas Gleixner 
5811da177e4SLinus Torvalds /**
5821da177e4SLinus Torvalds  *	enable_irq - enable handling of an irq
5831da177e4SLinus Torvalds  *	@irq: Interrupt to enable
5841da177e4SLinus Torvalds  *
5851da177e4SLinus Torvalds  *	Undoes the effect of one call to disable_irq().  If this
5861da177e4SLinus Torvalds  *	matches the last disable, processing of interrupts on this
5871da177e4SLinus Torvalds  *	IRQ line is re-enabled.
5881da177e4SLinus Torvalds  *
58970aedd24SThomas Gleixner  *	This function may be called from IRQ context only when
5906b8ff312SThomas Gleixner  *	desc->irq_data.chip->bus_lock and desc->chip->bus_sync_unlock are NULL !
5911da177e4SLinus Torvalds  */
5921da177e4SLinus Torvalds void enable_irq(unsigned int irq)
5931da177e4SLinus Torvalds {
5941da177e4SLinus Torvalds 	unsigned long flags;
59531d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
5961da177e4SLinus Torvalds 
5977d94f7caSYinghai Lu 	if (!desc)
598c2b5a251SMatthew Wilcox 		return;
59950f7c032SThomas Gleixner 	if (WARN(!desc->irq_data.chip,
6002656c366SThomas Gleixner 		 KERN_ERR "enable_irq before setup/request_irq: irq %u\n", irq))
60102725e74SThomas Gleixner 		goto out;
6022656c366SThomas Gleixner 
60379ff1cdaSJiang Liu 	__enable_irq(desc);
60402725e74SThomas Gleixner out:
60502725e74SThomas Gleixner 	irq_put_desc_busunlock(desc, flags);
6061da177e4SLinus Torvalds }
6071da177e4SLinus Torvalds EXPORT_SYMBOL(enable_irq);
6081da177e4SLinus Torvalds 
6090c5d1eb7SDavid Brownell static int set_irq_wake_real(unsigned int irq, unsigned int on)
6102db87321SUwe Kleine-König {
61108678b08SYinghai Lu 	struct irq_desc *desc = irq_to_desc(irq);
6122db87321SUwe Kleine-König 	int ret = -ENXIO;
6132db87321SUwe Kleine-König 
61460f96b41SSantosh Shilimkar 	if (irq_desc_get_chip(desc)->flags &  IRQCHIP_SKIP_SET_WAKE)
61560f96b41SSantosh Shilimkar 		return 0;
61660f96b41SSantosh Shilimkar 
6172f7e99bbSThomas Gleixner 	if (desc->irq_data.chip->irq_set_wake)
6182f7e99bbSThomas Gleixner 		ret = desc->irq_data.chip->irq_set_wake(&desc->irq_data, on);
6192db87321SUwe Kleine-König 
6202db87321SUwe Kleine-König 	return ret;
6212db87321SUwe Kleine-König }
6222db87321SUwe Kleine-König 
623ba9a2331SThomas Gleixner /**
624a0cd9ca2SThomas Gleixner  *	irq_set_irq_wake - control irq power management wakeup
625ba9a2331SThomas Gleixner  *	@irq:	interrupt to control
626ba9a2331SThomas Gleixner  *	@on:	enable/disable power management wakeup
627ba9a2331SThomas Gleixner  *
62815a647ebSDavid Brownell  *	Enable/disable power management wakeup mode, which is
62915a647ebSDavid Brownell  *	disabled by default.  Enables and disables must match,
63015a647ebSDavid Brownell  *	just as they match for non-wakeup mode support.
63115a647ebSDavid Brownell  *
63215a647ebSDavid Brownell  *	Wakeup mode lets this IRQ wake the system from sleep
63315a647ebSDavid Brownell  *	states like "suspend to RAM".
634ba9a2331SThomas Gleixner  */
635a0cd9ca2SThomas Gleixner int irq_set_irq_wake(unsigned int irq, unsigned int on)
636ba9a2331SThomas Gleixner {
637ba9a2331SThomas Gleixner 	unsigned long flags;
63831d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
6392db87321SUwe Kleine-König 	int ret = 0;
640ba9a2331SThomas Gleixner 
64113863a66SJesper Juhl 	if (!desc)
64213863a66SJesper Juhl 		return -EINVAL;
64313863a66SJesper Juhl 
64415a647ebSDavid Brownell 	/* wakeup-capable irqs can be shared between drivers that
64515a647ebSDavid Brownell 	 * don't need to have the same sleep mode behaviors.
64615a647ebSDavid Brownell 	 */
64715a647ebSDavid Brownell 	if (on) {
6482db87321SUwe Kleine-König 		if (desc->wake_depth++ == 0) {
6492db87321SUwe Kleine-König 			ret = set_irq_wake_real(irq, on);
6502db87321SUwe Kleine-König 			if (ret)
6512db87321SUwe Kleine-König 				desc->wake_depth = 0;
65215a647ebSDavid Brownell 			else
6537f94226fSThomas Gleixner 				irqd_set(&desc->irq_data, IRQD_WAKEUP_STATE);
6542db87321SUwe Kleine-König 		}
65515a647ebSDavid Brownell 	} else {
65615a647ebSDavid Brownell 		if (desc->wake_depth == 0) {
6577a2c4770SArjan van de Ven 			WARN(1, "Unbalanced IRQ %d wake disable\n", irq);
6582db87321SUwe Kleine-König 		} else if (--desc->wake_depth == 0) {
6592db87321SUwe Kleine-König 			ret = set_irq_wake_real(irq, on);
6602db87321SUwe Kleine-König 			if (ret)
6612db87321SUwe Kleine-König 				desc->wake_depth = 1;
66215a647ebSDavid Brownell 			else
6637f94226fSThomas Gleixner 				irqd_clear(&desc->irq_data, IRQD_WAKEUP_STATE);
66415a647ebSDavid Brownell 		}
6652db87321SUwe Kleine-König 	}
66602725e74SThomas Gleixner 	irq_put_desc_busunlock(desc, flags);
667ba9a2331SThomas Gleixner 	return ret;
668ba9a2331SThomas Gleixner }
669a0cd9ca2SThomas Gleixner EXPORT_SYMBOL(irq_set_irq_wake);
670ba9a2331SThomas Gleixner 
6711da177e4SLinus Torvalds /*
6721da177e4SLinus Torvalds  * Internal function that tells the architecture code whether a
6731da177e4SLinus Torvalds  * particular irq has been exclusively allocated or is available
6741da177e4SLinus Torvalds  * for driver use.
6751da177e4SLinus Torvalds  */
6761da177e4SLinus Torvalds int can_request_irq(unsigned int irq, unsigned long irqflags)
6771da177e4SLinus Torvalds {
678cc8c3b78SThomas Gleixner 	unsigned long flags;
67931d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
68002725e74SThomas Gleixner 	int canrequest = 0;
6811da177e4SLinus Torvalds 
6827d94f7caSYinghai Lu 	if (!desc)
6837d94f7caSYinghai Lu 		return 0;
6847d94f7caSYinghai Lu 
68502725e74SThomas Gleixner 	if (irq_settings_can_request(desc)) {
6862779db8dSBen Hutchings 		if (!desc->action ||
6872779db8dSBen Hutchings 		    irqflags & desc->action->flags & IRQF_SHARED)
68802725e74SThomas Gleixner 			canrequest = 1;
68902725e74SThomas Gleixner 	}
69002725e74SThomas Gleixner 	irq_put_desc_unlock(desc, flags);
69102725e74SThomas Gleixner 	return canrequest;
6921da177e4SLinus Torvalds }
6931da177e4SLinus Torvalds 
694a1ff541aSJiang Liu int __irq_set_trigger(struct irq_desc *desc, unsigned long flags)
69582736f4dSUwe Kleine-König {
6966b8ff312SThomas Gleixner 	struct irq_chip *chip = desc->irq_data.chip;
697d4d5e089SThomas Gleixner 	int ret, unmask = 0;
69882736f4dSUwe Kleine-König 
699b2ba2c30SThomas Gleixner 	if (!chip || !chip->irq_set_type) {
70082736f4dSUwe Kleine-König 		/*
70182736f4dSUwe Kleine-König 		 * IRQF_TRIGGER_* but the PIC does not support multiple
70282736f4dSUwe Kleine-König 		 * flow-types?
70382736f4dSUwe Kleine-König 		 */
704a1ff541aSJiang Liu 		pr_debug("No set_type function for IRQ %d (%s)\n",
705a1ff541aSJiang Liu 			 irq_desc_get_irq(desc),
70682736f4dSUwe Kleine-König 			 chip ? (chip->name ? : "unknown") : "unknown");
70782736f4dSUwe Kleine-König 		return 0;
70882736f4dSUwe Kleine-König 	}
70982736f4dSUwe Kleine-König 
710d4d5e089SThomas Gleixner 	if (chip->flags & IRQCHIP_SET_TYPE_MASKED) {
71132f4125eSThomas Gleixner 		if (!irqd_irq_masked(&desc->irq_data))
712d4d5e089SThomas Gleixner 			mask_irq(desc);
71332f4125eSThomas Gleixner 		if (!irqd_irq_disabled(&desc->irq_data))
714d4d5e089SThomas Gleixner 			unmask = 1;
715d4d5e089SThomas Gleixner 	}
716d4d5e089SThomas Gleixner 
71700b992deSAlexander Kuleshov 	/* Mask all flags except trigger mode */
71800b992deSAlexander Kuleshov 	flags &= IRQ_TYPE_SENSE_MASK;
719b2ba2c30SThomas Gleixner 	ret = chip->irq_set_type(&desc->irq_data, flags);
72082736f4dSUwe Kleine-König 
721876dbd4cSThomas Gleixner 	switch (ret) {
722876dbd4cSThomas Gleixner 	case IRQ_SET_MASK_OK:
7232cb62547SJiang Liu 	case IRQ_SET_MASK_OK_DONE:
724876dbd4cSThomas Gleixner 		irqd_clear(&desc->irq_data, IRQD_TRIGGER_MASK);
725876dbd4cSThomas Gleixner 		irqd_set(&desc->irq_data, flags);
726*44133f7eSMathieu Malaterre 		/* fall through */
727876dbd4cSThomas Gleixner 
728876dbd4cSThomas Gleixner 	case IRQ_SET_MASK_OK_NOCOPY:
729876dbd4cSThomas Gleixner 		flags = irqd_get_trigger_type(&desc->irq_data);
730876dbd4cSThomas Gleixner 		irq_settings_set_trigger_mask(desc, flags);
731876dbd4cSThomas Gleixner 		irqd_clear(&desc->irq_data, IRQD_LEVEL);
732876dbd4cSThomas Gleixner 		irq_settings_clr_level(desc);
733876dbd4cSThomas Gleixner 		if (flags & IRQ_TYPE_LEVEL_MASK) {
734876dbd4cSThomas Gleixner 			irq_settings_set_level(desc);
735876dbd4cSThomas Gleixner 			irqd_set(&desc->irq_data, IRQD_LEVEL);
736876dbd4cSThomas Gleixner 		}
73746732475SThomas Gleixner 
738d4d5e089SThomas Gleixner 		ret = 0;
7398fff39e0SThomas Gleixner 		break;
740876dbd4cSThomas Gleixner 	default:
74197fd75b7SAndrew Morton 		pr_err("Setting trigger mode %lu for irq %u failed (%pF)\n",
742a1ff541aSJiang Liu 		       flags, irq_desc_get_irq(desc), chip->irq_set_type);
7430c5d1eb7SDavid Brownell 	}
744d4d5e089SThomas Gleixner 	if (unmask)
745d4d5e089SThomas Gleixner 		unmask_irq(desc);
74682736f4dSUwe Kleine-König 	return ret;
74782736f4dSUwe Kleine-König }
74882736f4dSUwe Kleine-König 
749293a7a0aSThomas Gleixner #ifdef CONFIG_HARDIRQS_SW_RESEND
750293a7a0aSThomas Gleixner int irq_set_parent(int irq, int parent_irq)
751293a7a0aSThomas Gleixner {
752293a7a0aSThomas Gleixner 	unsigned long flags;
753293a7a0aSThomas Gleixner 	struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
754293a7a0aSThomas Gleixner 
755293a7a0aSThomas Gleixner 	if (!desc)
756293a7a0aSThomas Gleixner 		return -EINVAL;
757293a7a0aSThomas Gleixner 
758293a7a0aSThomas Gleixner 	desc->parent_irq = parent_irq;
759293a7a0aSThomas Gleixner 
760293a7a0aSThomas Gleixner 	irq_put_desc_unlock(desc, flags);
761293a7a0aSThomas Gleixner 	return 0;
762293a7a0aSThomas Gleixner }
7633118dac5SSudip Mukherjee EXPORT_SYMBOL_GPL(irq_set_parent);
764293a7a0aSThomas Gleixner #endif
765293a7a0aSThomas Gleixner 
766b25c340cSThomas Gleixner /*
767b25c340cSThomas Gleixner  * Default primary interrupt handler for threaded interrupts. Is
768b25c340cSThomas Gleixner  * assigned as primary handler when request_threaded_irq is called
769b25c340cSThomas Gleixner  * with handler == NULL. Useful for oneshot interrupts.
770b25c340cSThomas Gleixner  */
771b25c340cSThomas Gleixner static irqreturn_t irq_default_primary_handler(int irq, void *dev_id)
772b25c340cSThomas Gleixner {
773b25c340cSThomas Gleixner 	return IRQ_WAKE_THREAD;
774b25c340cSThomas Gleixner }
775b25c340cSThomas Gleixner 
776399b5da2SThomas Gleixner /*
777399b5da2SThomas Gleixner  * Primary handler for nested threaded interrupts. Should never be
778399b5da2SThomas Gleixner  * called.
779399b5da2SThomas Gleixner  */
780399b5da2SThomas Gleixner static irqreturn_t irq_nested_primary_handler(int irq, void *dev_id)
781399b5da2SThomas Gleixner {
782399b5da2SThomas Gleixner 	WARN(1, "Primary handler called for nested irq %d\n", irq);
783399b5da2SThomas Gleixner 	return IRQ_NONE;
784399b5da2SThomas Gleixner }
785399b5da2SThomas Gleixner 
7862a1d3ab8SThomas Gleixner static irqreturn_t irq_forced_secondary_handler(int irq, void *dev_id)
7872a1d3ab8SThomas Gleixner {
7882a1d3ab8SThomas Gleixner 	WARN(1, "Secondary action handler called for irq %d\n", irq);
7892a1d3ab8SThomas Gleixner 	return IRQ_NONE;
7902a1d3ab8SThomas Gleixner }
7912a1d3ab8SThomas Gleixner 
7923aa551c9SThomas Gleixner static int irq_wait_for_interrupt(struct irqaction *action)
7933aa551c9SThomas Gleixner {
794519cc865SLukas Wunner 	for (;;) {
7953aa551c9SThomas Gleixner 		set_current_state(TASK_INTERRUPTIBLE);
796f48fe81eSThomas Gleixner 
797519cc865SLukas Wunner 		if (kthread_should_stop()) {
798519cc865SLukas Wunner 			/* may need to run one last time */
799519cc865SLukas Wunner 			if (test_and_clear_bit(IRQTF_RUNTHREAD,
800519cc865SLukas Wunner 					       &action->thread_flags)) {
801519cc865SLukas Wunner 				__set_current_state(TASK_RUNNING);
802519cc865SLukas Wunner 				return 0;
803519cc865SLukas Wunner 			}
804519cc865SLukas Wunner 			__set_current_state(TASK_RUNNING);
805519cc865SLukas Wunner 			return -1;
806519cc865SLukas Wunner 		}
807550acb19SIdo Yariv 
808f48fe81eSThomas Gleixner 		if (test_and_clear_bit(IRQTF_RUNTHREAD,
809f48fe81eSThomas Gleixner 				       &action->thread_flags)) {
8103aa551c9SThomas Gleixner 			__set_current_state(TASK_RUNNING);
8113aa551c9SThomas Gleixner 			return 0;
812f48fe81eSThomas Gleixner 		}
8133aa551c9SThomas Gleixner 		schedule();
8143aa551c9SThomas Gleixner 	}
8153aa551c9SThomas Gleixner }
8163aa551c9SThomas Gleixner 
817b25c340cSThomas Gleixner /*
818b25c340cSThomas Gleixner  * Oneshot interrupts keep the irq line masked until the threaded
819b25c340cSThomas Gleixner  * handler finished. unmask if the interrupt has not been disabled and
820b25c340cSThomas Gleixner  * is marked MASKED.
821b25c340cSThomas Gleixner  */
822b5faba21SThomas Gleixner static void irq_finalize_oneshot(struct irq_desc *desc,
823f3f79e38SAlexander Gordeev 				 struct irqaction *action)
824b25c340cSThomas Gleixner {
8252a1d3ab8SThomas Gleixner 	if (!(desc->istate & IRQS_ONESHOT) ||
8262a1d3ab8SThomas Gleixner 	    action->handler == irq_forced_secondary_handler)
827b5faba21SThomas Gleixner 		return;
8280b1adaa0SThomas Gleixner again:
8293876ec9eSThomas Gleixner 	chip_bus_lock(desc);
830239007b8SThomas Gleixner 	raw_spin_lock_irq(&desc->lock);
8310b1adaa0SThomas Gleixner 
8320b1adaa0SThomas Gleixner 	/*
8330b1adaa0SThomas Gleixner 	 * Implausible though it may be we need to protect us against
8340b1adaa0SThomas Gleixner 	 * the following scenario:
8350b1adaa0SThomas Gleixner 	 *
8360b1adaa0SThomas Gleixner 	 * The thread is faster done than the hard interrupt handler
8370b1adaa0SThomas Gleixner 	 * on the other CPU. If we unmask the irq line then the
8380b1adaa0SThomas Gleixner 	 * interrupt can come in again and masks the line, leaves due
839009b4c3bSThomas Gleixner 	 * to IRQS_INPROGRESS and the irq line is masked forever.
840b5faba21SThomas Gleixner 	 *
841b5faba21SThomas Gleixner 	 * This also serializes the state of shared oneshot handlers
842b5faba21SThomas Gleixner 	 * versus "desc->threads_onehsot |= action->thread_mask;" in
843b5faba21SThomas Gleixner 	 * irq_wake_thread(). See the comment there which explains the
844b5faba21SThomas Gleixner 	 * serialization.
8450b1adaa0SThomas Gleixner 	 */
84632f4125eSThomas Gleixner 	if (unlikely(irqd_irq_inprogress(&desc->irq_data))) {
8470b1adaa0SThomas Gleixner 		raw_spin_unlock_irq(&desc->lock);
8483876ec9eSThomas Gleixner 		chip_bus_sync_unlock(desc);
8490b1adaa0SThomas Gleixner 		cpu_relax();
8500b1adaa0SThomas Gleixner 		goto again;
8510b1adaa0SThomas Gleixner 	}
8520b1adaa0SThomas Gleixner 
853b5faba21SThomas Gleixner 	/*
854b5faba21SThomas Gleixner 	 * Now check again, whether the thread should run. Otherwise
855b5faba21SThomas Gleixner 	 * we would clear the threads_oneshot bit of this thread which
856b5faba21SThomas Gleixner 	 * was just set.
857b5faba21SThomas Gleixner 	 */
858f3f79e38SAlexander Gordeev 	if (test_bit(IRQTF_RUNTHREAD, &action->thread_flags))
859b5faba21SThomas Gleixner 		goto out_unlock;
860b5faba21SThomas Gleixner 
861b5faba21SThomas Gleixner 	desc->threads_oneshot &= ~action->thread_mask;
862b5faba21SThomas Gleixner 
86332f4125eSThomas Gleixner 	if (!desc->threads_oneshot && !irqd_irq_disabled(&desc->irq_data) &&
86432f4125eSThomas Gleixner 	    irqd_irq_masked(&desc->irq_data))
865328a4978SThomas Gleixner 		unmask_threaded_irq(desc);
86632f4125eSThomas Gleixner 
867b5faba21SThomas Gleixner out_unlock:
868239007b8SThomas Gleixner 	raw_spin_unlock_irq(&desc->lock);
8693876ec9eSThomas Gleixner 	chip_bus_sync_unlock(desc);
870b25c340cSThomas Gleixner }
871b25c340cSThomas Gleixner 
87261f38261SBruno Premont #ifdef CONFIG_SMP
8733aa551c9SThomas Gleixner /*
874b04c644eSChuansheng Liu  * Check whether we need to change the affinity of the interrupt thread.
875591d2fb0SThomas Gleixner  */
876591d2fb0SThomas Gleixner static void
877591d2fb0SThomas Gleixner irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action)
878591d2fb0SThomas Gleixner {
879591d2fb0SThomas Gleixner 	cpumask_var_t mask;
88004aa530eSThomas Gleixner 	bool valid = true;
881591d2fb0SThomas Gleixner 
882591d2fb0SThomas Gleixner 	if (!test_and_clear_bit(IRQTF_AFFINITY, &action->thread_flags))
883591d2fb0SThomas Gleixner 		return;
884591d2fb0SThomas Gleixner 
885591d2fb0SThomas Gleixner 	/*
886591d2fb0SThomas Gleixner 	 * In case we are out of memory we set IRQTF_AFFINITY again and
887591d2fb0SThomas Gleixner 	 * try again next time
888591d2fb0SThomas Gleixner 	 */
889591d2fb0SThomas Gleixner 	if (!alloc_cpumask_var(&mask, GFP_KERNEL)) {
890591d2fb0SThomas Gleixner 		set_bit(IRQTF_AFFINITY, &action->thread_flags);
891591d2fb0SThomas Gleixner 		return;
892591d2fb0SThomas Gleixner 	}
893591d2fb0SThomas Gleixner 
894239007b8SThomas Gleixner 	raw_spin_lock_irq(&desc->lock);
89504aa530eSThomas Gleixner 	/*
89604aa530eSThomas Gleixner 	 * This code is triggered unconditionally. Check the affinity
89704aa530eSThomas Gleixner 	 * mask pointer. For CPU_MASK_OFFSTACK=n this is optimized out.
89804aa530eSThomas Gleixner 	 */
899cbf86999SThomas Gleixner 	if (cpumask_available(desc->irq_common_data.affinity)) {
900cbf86999SThomas Gleixner 		const struct cpumask *m;
901cbf86999SThomas Gleixner 
902cbf86999SThomas Gleixner 		m = irq_data_get_effective_affinity_mask(&desc->irq_data);
903cbf86999SThomas Gleixner 		cpumask_copy(mask, m);
904cbf86999SThomas Gleixner 	} else {
90504aa530eSThomas Gleixner 		valid = false;
906cbf86999SThomas Gleixner 	}
907239007b8SThomas Gleixner 	raw_spin_unlock_irq(&desc->lock);
908591d2fb0SThomas Gleixner 
90904aa530eSThomas Gleixner 	if (valid)
910591d2fb0SThomas Gleixner 		set_cpus_allowed_ptr(current, mask);
911591d2fb0SThomas Gleixner 	free_cpumask_var(mask);
912591d2fb0SThomas Gleixner }
91361f38261SBruno Premont #else
91461f38261SBruno Premont static inline void
91561f38261SBruno Premont irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action) { }
91661f38261SBruno Premont #endif
917591d2fb0SThomas Gleixner 
918591d2fb0SThomas Gleixner /*
919c5f48c0aSIngo Molnar  * Interrupts which are not explicitly requested as threaded
9208d32a307SThomas Gleixner  * interrupts rely on the implicit bh/preempt disable of the hard irq
9218d32a307SThomas Gleixner  * context. So we need to disable bh here to avoid deadlocks and other
9228d32a307SThomas Gleixner  * side effects.
9238d32a307SThomas Gleixner  */
9243a43e05fSSebastian Andrzej Siewior static irqreturn_t
9258d32a307SThomas Gleixner irq_forced_thread_fn(struct irq_desc *desc, struct irqaction *action)
9268d32a307SThomas Gleixner {
9273a43e05fSSebastian Andrzej Siewior 	irqreturn_t ret;
9283a43e05fSSebastian Andrzej Siewior 
9298d32a307SThomas Gleixner 	local_bh_disable();
9303a43e05fSSebastian Andrzej Siewior 	ret = action->thread_fn(action->irq, action->dev_id);
931746a923bSLukas Wunner 	if (ret == IRQ_HANDLED)
932746a923bSLukas Wunner 		atomic_inc(&desc->threads_handled);
933746a923bSLukas Wunner 
934f3f79e38SAlexander Gordeev 	irq_finalize_oneshot(desc, action);
9358d32a307SThomas Gleixner 	local_bh_enable();
9363a43e05fSSebastian Andrzej Siewior 	return ret;
9378d32a307SThomas Gleixner }
9388d32a307SThomas Gleixner 
9398d32a307SThomas Gleixner /*
940f788e7bfSXie XiuQi  * Interrupts explicitly requested as threaded interrupts want to be
9418d32a307SThomas Gleixner  * preemtible - many of them need to sleep and wait for slow busses to
9428d32a307SThomas Gleixner  * complete.
9438d32a307SThomas Gleixner  */
9443a43e05fSSebastian Andrzej Siewior static irqreturn_t irq_thread_fn(struct irq_desc *desc,
9453a43e05fSSebastian Andrzej Siewior 		struct irqaction *action)
9468d32a307SThomas Gleixner {
9473a43e05fSSebastian Andrzej Siewior 	irqreturn_t ret;
9483a43e05fSSebastian Andrzej Siewior 
9493a43e05fSSebastian Andrzej Siewior 	ret = action->thread_fn(action->irq, action->dev_id);
950746a923bSLukas Wunner 	if (ret == IRQ_HANDLED)
951746a923bSLukas Wunner 		atomic_inc(&desc->threads_handled);
952746a923bSLukas Wunner 
953f3f79e38SAlexander Gordeev 	irq_finalize_oneshot(desc, action);
9543a43e05fSSebastian Andrzej Siewior 	return ret;
9558d32a307SThomas Gleixner }
9568d32a307SThomas Gleixner 
9577140ea19SIdo Yariv static void wake_threads_waitq(struct irq_desc *desc)
9587140ea19SIdo Yariv {
959c685689fSChuansheng Liu 	if (atomic_dec_and_test(&desc->threads_active))
9607140ea19SIdo Yariv 		wake_up(&desc->wait_for_threads);
9617140ea19SIdo Yariv }
9627140ea19SIdo Yariv 
96367d12145SAl Viro static void irq_thread_dtor(struct callback_head *unused)
9644d1d61a6SOleg Nesterov {
9654d1d61a6SOleg Nesterov 	struct task_struct *tsk = current;
9664d1d61a6SOleg Nesterov 	struct irq_desc *desc;
9674d1d61a6SOleg Nesterov 	struct irqaction *action;
9684d1d61a6SOleg Nesterov 
9694d1d61a6SOleg Nesterov 	if (WARN_ON_ONCE(!(current->flags & PF_EXITING)))
9704d1d61a6SOleg Nesterov 		return;
9714d1d61a6SOleg Nesterov 
9724d1d61a6SOleg Nesterov 	action = kthread_data(tsk);
9734d1d61a6SOleg Nesterov 
974fb21affaSLinus Torvalds 	pr_err("exiting task \"%s\" (%d) is an active IRQ thread (irq %d)\n",
97519af395dSAlan Cox 	       tsk->comm, tsk->pid, action->irq);
9764d1d61a6SOleg Nesterov 
9774d1d61a6SOleg Nesterov 
9784d1d61a6SOleg Nesterov 	desc = irq_to_desc(action->irq);
9794d1d61a6SOleg Nesterov 	/*
9804d1d61a6SOleg Nesterov 	 * If IRQTF_RUNTHREAD is set, we need to decrement
9814d1d61a6SOleg Nesterov 	 * desc->threads_active and wake possible waiters.
9824d1d61a6SOleg Nesterov 	 */
9834d1d61a6SOleg Nesterov 	if (test_and_clear_bit(IRQTF_RUNTHREAD, &action->thread_flags))
9844d1d61a6SOleg Nesterov 		wake_threads_waitq(desc);
9854d1d61a6SOleg Nesterov 
9864d1d61a6SOleg Nesterov 	/* Prevent a stale desc->threads_oneshot */
9874d1d61a6SOleg Nesterov 	irq_finalize_oneshot(desc, action);
9884d1d61a6SOleg Nesterov }
9894d1d61a6SOleg Nesterov 
9902a1d3ab8SThomas Gleixner static void irq_wake_secondary(struct irq_desc *desc, struct irqaction *action)
9912a1d3ab8SThomas Gleixner {
9922a1d3ab8SThomas Gleixner 	struct irqaction *secondary = action->secondary;
9932a1d3ab8SThomas Gleixner 
9942a1d3ab8SThomas Gleixner 	if (WARN_ON_ONCE(!secondary))
9952a1d3ab8SThomas Gleixner 		return;
9962a1d3ab8SThomas Gleixner 
9972a1d3ab8SThomas Gleixner 	raw_spin_lock_irq(&desc->lock);
9982a1d3ab8SThomas Gleixner 	__irq_wake_thread(desc, secondary);
9992a1d3ab8SThomas Gleixner 	raw_spin_unlock_irq(&desc->lock);
10002a1d3ab8SThomas Gleixner }
10012a1d3ab8SThomas Gleixner 
10028d32a307SThomas Gleixner /*
10033aa551c9SThomas Gleixner  * Interrupt handler thread
10043aa551c9SThomas Gleixner  */
10053aa551c9SThomas Gleixner static int irq_thread(void *data)
10063aa551c9SThomas Gleixner {
100767d12145SAl Viro 	struct callback_head on_exit_work;
10083aa551c9SThomas Gleixner 	struct irqaction *action = data;
10093aa551c9SThomas Gleixner 	struct irq_desc *desc = irq_to_desc(action->irq);
10103a43e05fSSebastian Andrzej Siewior 	irqreturn_t (*handler_fn)(struct irq_desc *desc,
10113a43e05fSSebastian Andrzej Siewior 			struct irqaction *action);
10123aa551c9SThomas Gleixner 
1013540b60e2SAlexander Gordeev 	if (force_irqthreads && test_bit(IRQTF_FORCED_THREAD,
10148d32a307SThomas Gleixner 					&action->thread_flags))
10158d32a307SThomas Gleixner 		handler_fn = irq_forced_thread_fn;
10168d32a307SThomas Gleixner 	else
10178d32a307SThomas Gleixner 		handler_fn = irq_thread_fn;
10188d32a307SThomas Gleixner 
101941f9d29fSAl Viro 	init_task_work(&on_exit_work, irq_thread_dtor);
10204d1d61a6SOleg Nesterov 	task_work_add(current, &on_exit_work, false);
10213aa551c9SThomas Gleixner 
1022f3de44edSSankara Muthukrishnan 	irq_thread_check_affinity(desc, action);
1023f3de44edSSankara Muthukrishnan 
10243aa551c9SThomas Gleixner 	while (!irq_wait_for_interrupt(action)) {
10257140ea19SIdo Yariv 		irqreturn_t action_ret;
10263aa551c9SThomas Gleixner 
1027591d2fb0SThomas Gleixner 		irq_thread_check_affinity(desc, action);
1028591d2fb0SThomas Gleixner 
10293a43e05fSSebastian Andrzej Siewior 		action_ret = handler_fn(desc, action);
10302a1d3ab8SThomas Gleixner 		if (action_ret == IRQ_WAKE_THREAD)
10312a1d3ab8SThomas Gleixner 			irq_wake_secondary(desc, action);
10327140ea19SIdo Yariv 
10337140ea19SIdo Yariv 		wake_threads_waitq(desc);
10343aa551c9SThomas Gleixner 	}
10353aa551c9SThomas Gleixner 
10367140ea19SIdo Yariv 	/*
10377140ea19SIdo Yariv 	 * This is the regular exit path. __free_irq() is stopping the
10387140ea19SIdo Yariv 	 * thread via kthread_stop() after calling
1039519cc865SLukas Wunner 	 * synchronize_hardirq(). So neither IRQTF_RUNTHREAD nor the
1040836557bdSLukas Wunner 	 * oneshot mask bit can be set.
10413aa551c9SThomas Gleixner 	 */
10424d1d61a6SOleg Nesterov 	task_work_cancel(current, irq_thread_dtor);
10433aa551c9SThomas Gleixner 	return 0;
10443aa551c9SThomas Gleixner }
10453aa551c9SThomas Gleixner 
1046a92444c6SThomas Gleixner /**
1047a92444c6SThomas Gleixner  *	irq_wake_thread - wake the irq thread for the action identified by dev_id
1048a92444c6SThomas Gleixner  *	@irq:		Interrupt line
1049a92444c6SThomas Gleixner  *	@dev_id:	Device identity for which the thread should be woken
1050a92444c6SThomas Gleixner  *
1051a92444c6SThomas Gleixner  */
1052a92444c6SThomas Gleixner void irq_wake_thread(unsigned int irq, void *dev_id)
1053a92444c6SThomas Gleixner {
1054a92444c6SThomas Gleixner 	struct irq_desc *desc = irq_to_desc(irq);
1055a92444c6SThomas Gleixner 	struct irqaction *action;
1056a92444c6SThomas Gleixner 	unsigned long flags;
1057a92444c6SThomas Gleixner 
1058a92444c6SThomas Gleixner 	if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
1059a92444c6SThomas Gleixner 		return;
1060a92444c6SThomas Gleixner 
1061a92444c6SThomas Gleixner 	raw_spin_lock_irqsave(&desc->lock, flags);
1062f944b5a7SDaniel Lezcano 	for_each_action_of_desc(desc, action) {
1063a92444c6SThomas Gleixner 		if (action->dev_id == dev_id) {
1064a92444c6SThomas Gleixner 			if (action->thread)
1065a92444c6SThomas Gleixner 				__irq_wake_thread(desc, action);
1066a92444c6SThomas Gleixner 			break;
1067a92444c6SThomas Gleixner 		}
1068a92444c6SThomas Gleixner 	}
1069a92444c6SThomas Gleixner 	raw_spin_unlock_irqrestore(&desc->lock, flags);
1070a92444c6SThomas Gleixner }
1071a92444c6SThomas Gleixner EXPORT_SYMBOL_GPL(irq_wake_thread);
1072a92444c6SThomas Gleixner 
10732a1d3ab8SThomas Gleixner static int irq_setup_forced_threading(struct irqaction *new)
10748d32a307SThomas Gleixner {
10758d32a307SThomas Gleixner 	if (!force_irqthreads)
10762a1d3ab8SThomas Gleixner 		return 0;
10778d32a307SThomas Gleixner 	if (new->flags & (IRQF_NO_THREAD | IRQF_PERCPU | IRQF_ONESHOT))
10782a1d3ab8SThomas Gleixner 		return 0;
10798d32a307SThomas Gleixner 
1080d1f0301bSThomas Gleixner 	/*
1081d1f0301bSThomas Gleixner 	 * No further action required for interrupts which are requested as
1082d1f0301bSThomas Gleixner 	 * threaded interrupts already
1083d1f0301bSThomas Gleixner 	 */
1084d1f0301bSThomas Gleixner 	if (new->handler == irq_default_primary_handler)
1085d1f0301bSThomas Gleixner 		return 0;
1086d1f0301bSThomas Gleixner 
10878d32a307SThomas Gleixner 	new->flags |= IRQF_ONESHOT;
10888d32a307SThomas Gleixner 
10892a1d3ab8SThomas Gleixner 	/*
10902a1d3ab8SThomas Gleixner 	 * Handle the case where we have a real primary handler and a
10912a1d3ab8SThomas Gleixner 	 * thread handler. We force thread them as well by creating a
10922a1d3ab8SThomas Gleixner 	 * secondary action.
10932a1d3ab8SThomas Gleixner 	 */
1094d1f0301bSThomas Gleixner 	if (new->handler && new->thread_fn) {
10952a1d3ab8SThomas Gleixner 		/* Allocate the secondary action */
10962a1d3ab8SThomas Gleixner 		new->secondary = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
10972a1d3ab8SThomas Gleixner 		if (!new->secondary)
10982a1d3ab8SThomas Gleixner 			return -ENOMEM;
10992a1d3ab8SThomas Gleixner 		new->secondary->handler = irq_forced_secondary_handler;
11002a1d3ab8SThomas Gleixner 		new->secondary->thread_fn = new->thread_fn;
11012a1d3ab8SThomas Gleixner 		new->secondary->dev_id = new->dev_id;
11022a1d3ab8SThomas Gleixner 		new->secondary->irq = new->irq;
11032a1d3ab8SThomas Gleixner 		new->secondary->name = new->name;
11042a1d3ab8SThomas Gleixner 	}
11052a1d3ab8SThomas Gleixner 	/* Deal with the primary handler */
11068d32a307SThomas Gleixner 	set_bit(IRQTF_FORCED_THREAD, &new->thread_flags);
11078d32a307SThomas Gleixner 	new->thread_fn = new->handler;
11088d32a307SThomas Gleixner 	new->handler = irq_default_primary_handler;
11092a1d3ab8SThomas Gleixner 	return 0;
11108d32a307SThomas Gleixner }
11118d32a307SThomas Gleixner 
1112c1bacbaeSThomas Gleixner static int irq_request_resources(struct irq_desc *desc)
1113c1bacbaeSThomas Gleixner {
1114c1bacbaeSThomas Gleixner 	struct irq_data *d = &desc->irq_data;
1115c1bacbaeSThomas Gleixner 	struct irq_chip *c = d->chip;
1116c1bacbaeSThomas Gleixner 
1117c1bacbaeSThomas Gleixner 	return c->irq_request_resources ? c->irq_request_resources(d) : 0;
1118c1bacbaeSThomas Gleixner }
1119c1bacbaeSThomas Gleixner 
1120c1bacbaeSThomas Gleixner static void irq_release_resources(struct irq_desc *desc)
1121c1bacbaeSThomas Gleixner {
1122c1bacbaeSThomas Gleixner 	struct irq_data *d = &desc->irq_data;
1123c1bacbaeSThomas Gleixner 	struct irq_chip *c = d->chip;
1124c1bacbaeSThomas Gleixner 
1125c1bacbaeSThomas Gleixner 	if (c->irq_release_resources)
1126c1bacbaeSThomas Gleixner 		c->irq_release_resources(d);
1127c1bacbaeSThomas Gleixner }
1128c1bacbaeSThomas Gleixner 
11292a1d3ab8SThomas Gleixner static int
11302a1d3ab8SThomas Gleixner setup_irq_thread(struct irqaction *new, unsigned int irq, bool secondary)
11312a1d3ab8SThomas Gleixner {
11322a1d3ab8SThomas Gleixner 	struct task_struct *t;
11332a1d3ab8SThomas Gleixner 	struct sched_param param = {
11342a1d3ab8SThomas Gleixner 		.sched_priority = MAX_USER_RT_PRIO/2,
11352a1d3ab8SThomas Gleixner 	};
11362a1d3ab8SThomas Gleixner 
11372a1d3ab8SThomas Gleixner 	if (!secondary) {
11382a1d3ab8SThomas Gleixner 		t = kthread_create(irq_thread, new, "irq/%d-%s", irq,
11392a1d3ab8SThomas Gleixner 				   new->name);
11402a1d3ab8SThomas Gleixner 	} else {
11412a1d3ab8SThomas Gleixner 		t = kthread_create(irq_thread, new, "irq/%d-s-%s", irq,
11422a1d3ab8SThomas Gleixner 				   new->name);
11432a1d3ab8SThomas Gleixner 		param.sched_priority -= 1;
11442a1d3ab8SThomas Gleixner 	}
11452a1d3ab8SThomas Gleixner 
11462a1d3ab8SThomas Gleixner 	if (IS_ERR(t))
11472a1d3ab8SThomas Gleixner 		return PTR_ERR(t);
11482a1d3ab8SThomas Gleixner 
11492a1d3ab8SThomas Gleixner 	sched_setscheduler_nocheck(t, SCHED_FIFO, &param);
11502a1d3ab8SThomas Gleixner 
11512a1d3ab8SThomas Gleixner 	/*
11522a1d3ab8SThomas Gleixner 	 * We keep the reference to the task struct even if
11532a1d3ab8SThomas Gleixner 	 * the thread dies to avoid that the interrupt code
11542a1d3ab8SThomas Gleixner 	 * references an already freed task_struct.
11552a1d3ab8SThomas Gleixner 	 */
11562a1d3ab8SThomas Gleixner 	get_task_struct(t);
11572a1d3ab8SThomas Gleixner 	new->thread = t;
11582a1d3ab8SThomas Gleixner 	/*
11592a1d3ab8SThomas Gleixner 	 * Tell the thread to set its affinity. This is
11602a1d3ab8SThomas Gleixner 	 * important for shared interrupt handlers as we do
11612a1d3ab8SThomas Gleixner 	 * not invoke setup_affinity() for the secondary
11622a1d3ab8SThomas Gleixner 	 * handlers as everything is already set up. Even for
11632a1d3ab8SThomas Gleixner 	 * interrupts marked with IRQF_NO_BALANCE this is
11642a1d3ab8SThomas Gleixner 	 * correct as we want the thread to move to the cpu(s)
11652a1d3ab8SThomas Gleixner 	 * on which the requesting code placed the interrupt.
11662a1d3ab8SThomas Gleixner 	 */
11672a1d3ab8SThomas Gleixner 	set_bit(IRQTF_AFFINITY, &new->thread_flags);
11682a1d3ab8SThomas Gleixner 	return 0;
11692a1d3ab8SThomas Gleixner }
11702a1d3ab8SThomas Gleixner 
11711da177e4SLinus Torvalds /*
11721da177e4SLinus Torvalds  * Internal function to register an irqaction - typically used to
11731da177e4SLinus Torvalds  * allocate special interrupts that are part of the architecture.
117419d39a38SThomas Gleixner  *
117519d39a38SThomas Gleixner  * Locking rules:
117619d39a38SThomas Gleixner  *
117719d39a38SThomas Gleixner  * desc->request_mutex	Provides serialization against a concurrent free_irq()
117819d39a38SThomas Gleixner  *   chip_bus_lock	Provides serialization for slow bus operations
117919d39a38SThomas Gleixner  *     desc->lock	Provides serialization against hard interrupts
118019d39a38SThomas Gleixner  *
118119d39a38SThomas Gleixner  * chip_bus_lock and desc->lock are sufficient for all other management and
118219d39a38SThomas Gleixner  * interrupt related functions. desc->request_mutex solely serializes
118319d39a38SThomas Gleixner  * request/free_irq().
11841da177e4SLinus Torvalds  */
1185d3c60047SThomas Gleixner static int
1186d3c60047SThomas Gleixner __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
11871da177e4SLinus Torvalds {
1188f17c7545SIngo Molnar 	struct irqaction *old, **old_ptr;
1189b5faba21SThomas Gleixner 	unsigned long flags, thread_mask = 0;
11903b8249e7SThomas Gleixner 	int ret, nested, shared = 0;
11911da177e4SLinus Torvalds 
11927d94f7caSYinghai Lu 	if (!desc)
1193c2b5a251SMatthew Wilcox 		return -EINVAL;
1194c2b5a251SMatthew Wilcox 
11956b8ff312SThomas Gleixner 	if (desc->irq_data.chip == &no_irq_chip)
11961da177e4SLinus Torvalds 		return -ENOSYS;
1197b6873807SSebastian Andrzej Siewior 	if (!try_module_get(desc->owner))
1198b6873807SSebastian Andrzej Siewior 		return -ENODEV;
11991da177e4SLinus Torvalds 
12002a1d3ab8SThomas Gleixner 	new->irq = irq;
12012a1d3ab8SThomas Gleixner 
12021da177e4SLinus Torvalds 	/*
12034b357daeSJon Hunter 	 * If the trigger type is not specified by the caller,
12044b357daeSJon Hunter 	 * then use the default for this interrupt.
12054b357daeSJon Hunter 	 */
12064b357daeSJon Hunter 	if (!(new->flags & IRQF_TRIGGER_MASK))
12074b357daeSJon Hunter 		new->flags |= irqd_get_trigger_type(&desc->irq_data);
12084b357daeSJon Hunter 
12094b357daeSJon Hunter 	/*
1210399b5da2SThomas Gleixner 	 * Check whether the interrupt nests into another interrupt
1211399b5da2SThomas Gleixner 	 * thread.
12123aa551c9SThomas Gleixner 	 */
12131ccb4e61SThomas Gleixner 	nested = irq_settings_is_nested_thread(desc);
1214399b5da2SThomas Gleixner 	if (nested) {
1215b6873807SSebastian Andrzej Siewior 		if (!new->thread_fn) {
1216b6873807SSebastian Andrzej Siewior 			ret = -EINVAL;
1217b6873807SSebastian Andrzej Siewior 			goto out_mput;
1218b6873807SSebastian Andrzej Siewior 		}
1219399b5da2SThomas Gleixner 		/*
1220399b5da2SThomas Gleixner 		 * Replace the primary handler which was provided from
1221399b5da2SThomas Gleixner 		 * the driver for non nested interrupt handling by the
1222399b5da2SThomas Gleixner 		 * dummy function which warns when called.
1223399b5da2SThomas Gleixner 		 */
1224399b5da2SThomas Gleixner 		new->handler = irq_nested_primary_handler;
12258d32a307SThomas Gleixner 	} else {
12262a1d3ab8SThomas Gleixner 		if (irq_settings_can_thread(desc)) {
12272a1d3ab8SThomas Gleixner 			ret = irq_setup_forced_threading(new);
12282a1d3ab8SThomas Gleixner 			if (ret)
12292a1d3ab8SThomas Gleixner 				goto out_mput;
12302a1d3ab8SThomas Gleixner 		}
1231399b5da2SThomas Gleixner 	}
1232399b5da2SThomas Gleixner 
1233399b5da2SThomas Gleixner 	/*
1234399b5da2SThomas Gleixner 	 * Create a handler thread when a thread function is supplied
1235399b5da2SThomas Gleixner 	 * and the interrupt does not nest into another interrupt
1236399b5da2SThomas Gleixner 	 * thread.
1237399b5da2SThomas Gleixner 	 */
1238399b5da2SThomas Gleixner 	if (new->thread_fn && !nested) {
12392a1d3ab8SThomas Gleixner 		ret = setup_irq_thread(new, irq, false);
12402a1d3ab8SThomas Gleixner 		if (ret)
1241b6873807SSebastian Andrzej Siewior 			goto out_mput;
12422a1d3ab8SThomas Gleixner 		if (new->secondary) {
12432a1d3ab8SThomas Gleixner 			ret = setup_irq_thread(new->secondary, irq, true);
12442a1d3ab8SThomas Gleixner 			if (ret)
12452a1d3ab8SThomas Gleixner 				goto out_thread;
1246b6873807SSebastian Andrzej Siewior 		}
12473aa551c9SThomas Gleixner 	}
12483aa551c9SThomas Gleixner 
12493aa551c9SThomas Gleixner 	/*
1250dc9b229aSThomas Gleixner 	 * Drivers are often written to work w/o knowledge about the
1251dc9b229aSThomas Gleixner 	 * underlying irq chip implementation, so a request for a
1252dc9b229aSThomas Gleixner 	 * threaded irq without a primary hard irq context handler
1253dc9b229aSThomas Gleixner 	 * requires the ONESHOT flag to be set. Some irq chips like
1254dc9b229aSThomas Gleixner 	 * MSI based interrupts are per se one shot safe. Check the
1255dc9b229aSThomas Gleixner 	 * chip flags, so we can avoid the unmask dance at the end of
1256dc9b229aSThomas Gleixner 	 * the threaded handler for those.
1257dc9b229aSThomas Gleixner 	 */
1258dc9b229aSThomas Gleixner 	if (desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)
1259dc9b229aSThomas Gleixner 		new->flags &= ~IRQF_ONESHOT;
1260dc9b229aSThomas Gleixner 
126119d39a38SThomas Gleixner 	/*
126219d39a38SThomas Gleixner 	 * Protects against a concurrent __free_irq() call which might wait
1263519cc865SLukas Wunner 	 * for synchronize_hardirq() to complete without holding the optional
1264836557bdSLukas Wunner 	 * chip bus lock and desc->lock. Also protects against handing out
1265836557bdSLukas Wunner 	 * a recycled oneshot thread_mask bit while it's still in use by
1266836557bdSLukas Wunner 	 * its previous owner.
126719d39a38SThomas Gleixner 	 */
12689114014cSThomas Gleixner 	mutex_lock(&desc->request_mutex);
126919d39a38SThomas Gleixner 
127019d39a38SThomas Gleixner 	/*
127119d39a38SThomas Gleixner 	 * Acquire bus lock as the irq_request_resources() callback below
127219d39a38SThomas Gleixner 	 * might rely on the serialization or the magic power management
127319d39a38SThomas Gleixner 	 * functions which are abusing the irq_bus_lock() callback,
127419d39a38SThomas Gleixner 	 */
127519d39a38SThomas Gleixner 	chip_bus_lock(desc);
127619d39a38SThomas Gleixner 
127719d39a38SThomas Gleixner 	/* First installed action requests resources. */
127846e48e25SThomas Gleixner 	if (!desc->action) {
127946e48e25SThomas Gleixner 		ret = irq_request_resources(desc);
128046e48e25SThomas Gleixner 		if (ret) {
128146e48e25SThomas Gleixner 			pr_err("Failed to request resources for %s (irq %d) on irqchip %s\n",
128246e48e25SThomas Gleixner 			       new->name, irq, desc->irq_data.chip->name);
128319d39a38SThomas Gleixner 			goto out_bus_unlock;
128446e48e25SThomas Gleixner 		}
128546e48e25SThomas Gleixner 	}
12869114014cSThomas Gleixner 
1287dc9b229aSThomas Gleixner 	/*
12881da177e4SLinus Torvalds 	 * The following block of code has to be executed atomically
128919d39a38SThomas Gleixner 	 * protected against a concurrent interrupt and any of the other
129019d39a38SThomas Gleixner 	 * management calls which are not serialized via
129119d39a38SThomas Gleixner 	 * desc->request_mutex or the optional bus lock.
12921da177e4SLinus Torvalds 	 */
1293239007b8SThomas Gleixner 	raw_spin_lock_irqsave(&desc->lock, flags);
1294f17c7545SIngo Molnar 	old_ptr = &desc->action;
1295f17c7545SIngo Molnar 	old = *old_ptr;
129606fcb0c6SIngo Molnar 	if (old) {
1297e76de9f8SThomas Gleixner 		/*
1298e76de9f8SThomas Gleixner 		 * Can't share interrupts unless both agree to and are
1299e76de9f8SThomas Gleixner 		 * the same type (level, edge, polarity). So both flag
13003cca53b0SThomas Gleixner 		 * fields must have IRQF_SHARED set and the bits which
13019d591eddSThomas Gleixner 		 * set the trigger type must match. Also all must
13029d591eddSThomas Gleixner 		 * agree on ONESHOT.
1303e76de9f8SThomas Gleixner 		 */
13044f8413a3SMarc Zyngier 		unsigned int oldtype;
13054f8413a3SMarc Zyngier 
13064f8413a3SMarc Zyngier 		/*
13074f8413a3SMarc Zyngier 		 * If nobody did set the configuration before, inherit
13084f8413a3SMarc Zyngier 		 * the one provided by the requester.
13094f8413a3SMarc Zyngier 		 */
13104f8413a3SMarc Zyngier 		if (irqd_trigger_type_was_set(&desc->irq_data)) {
13114f8413a3SMarc Zyngier 			oldtype = irqd_get_trigger_type(&desc->irq_data);
13124f8413a3SMarc Zyngier 		} else {
13134f8413a3SMarc Zyngier 			oldtype = new->flags & IRQF_TRIGGER_MASK;
13144f8413a3SMarc Zyngier 			irqd_set_trigger_type(&desc->irq_data, oldtype);
13154f8413a3SMarc Zyngier 		}
1316382bd4deSHans de Goede 
13173cca53b0SThomas Gleixner 		if (!((old->flags & new->flags) & IRQF_SHARED) ||
1318382bd4deSHans de Goede 		    (oldtype != (new->flags & IRQF_TRIGGER_MASK)) ||
1319f5d89470SThomas Gleixner 		    ((old->flags ^ new->flags) & IRQF_ONESHOT))
1320f5163427SDimitri Sivanich 			goto mismatch;
1321f5163427SDimitri Sivanich 
1322f5163427SDimitri Sivanich 		/* All handlers must agree on per-cpuness */
13233cca53b0SThomas Gleixner 		if ((old->flags & IRQF_PERCPU) !=
13243cca53b0SThomas Gleixner 		    (new->flags & IRQF_PERCPU))
1325f5163427SDimitri Sivanich 			goto mismatch;
13261da177e4SLinus Torvalds 
13271da177e4SLinus Torvalds 		/* add new interrupt at end of irq queue */
13281da177e4SLinus Torvalds 		do {
132952abb700SThomas Gleixner 			/*
133052abb700SThomas Gleixner 			 * Or all existing action->thread_mask bits,
133152abb700SThomas Gleixner 			 * so we can find the next zero bit for this
133252abb700SThomas Gleixner 			 * new action.
133352abb700SThomas Gleixner 			 */
1334b5faba21SThomas Gleixner 			thread_mask |= old->thread_mask;
1335f17c7545SIngo Molnar 			old_ptr = &old->next;
1336f17c7545SIngo Molnar 			old = *old_ptr;
13371da177e4SLinus Torvalds 		} while (old);
13381da177e4SLinus Torvalds 		shared = 1;
13391da177e4SLinus Torvalds 	}
13401da177e4SLinus Torvalds 
1341b5faba21SThomas Gleixner 	/*
134252abb700SThomas Gleixner 	 * Setup the thread mask for this irqaction for ONESHOT. For
134352abb700SThomas Gleixner 	 * !ONESHOT irqs the thread mask is 0 so we can avoid a
134452abb700SThomas Gleixner 	 * conditional in irq_wake_thread().
1345b5faba21SThomas Gleixner 	 */
134652abb700SThomas Gleixner 	if (new->flags & IRQF_ONESHOT) {
134752abb700SThomas Gleixner 		/*
134852abb700SThomas Gleixner 		 * Unlikely to have 32 resp 64 irqs sharing one line,
134952abb700SThomas Gleixner 		 * but who knows.
135052abb700SThomas Gleixner 		 */
135152abb700SThomas Gleixner 		if (thread_mask == ~0UL) {
1352b5faba21SThomas Gleixner 			ret = -EBUSY;
1353cba4235eSThomas Gleixner 			goto out_unlock;
1354b5faba21SThomas Gleixner 		}
135552abb700SThomas Gleixner 		/*
135652abb700SThomas Gleixner 		 * The thread_mask for the action is or'ed to
135752abb700SThomas Gleixner 		 * desc->thread_active to indicate that the
135852abb700SThomas Gleixner 		 * IRQF_ONESHOT thread handler has been woken, but not
135952abb700SThomas Gleixner 		 * yet finished. The bit is cleared when a thread
136052abb700SThomas Gleixner 		 * completes. When all threads of a shared interrupt
136152abb700SThomas Gleixner 		 * line have completed desc->threads_active becomes
136252abb700SThomas Gleixner 		 * zero and the interrupt line is unmasked. See
136352abb700SThomas Gleixner 		 * handle.c:irq_wake_thread() for further information.
136452abb700SThomas Gleixner 		 *
136552abb700SThomas Gleixner 		 * If no thread is woken by primary (hard irq context)
136652abb700SThomas Gleixner 		 * interrupt handlers, then desc->threads_active is
136752abb700SThomas Gleixner 		 * also checked for zero to unmask the irq line in the
136852abb700SThomas Gleixner 		 * affected hard irq flow handlers
136952abb700SThomas Gleixner 		 * (handle_[fasteoi|level]_irq).
137052abb700SThomas Gleixner 		 *
137152abb700SThomas Gleixner 		 * The new action gets the first zero bit of
137252abb700SThomas Gleixner 		 * thread_mask assigned. See the loop above which or's
137352abb700SThomas Gleixner 		 * all existing action->thread_mask bits.
137452abb700SThomas Gleixner 		 */
1375ffc661c9SRasmus Villemoes 		new->thread_mask = 1UL << ffz(thread_mask);
13761c6c6952SThomas Gleixner 
1377dc9b229aSThomas Gleixner 	} else if (new->handler == irq_default_primary_handler &&
1378dc9b229aSThomas Gleixner 		   !(desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)) {
13791c6c6952SThomas Gleixner 		/*
13801c6c6952SThomas Gleixner 		 * The interrupt was requested with handler = NULL, so
13811c6c6952SThomas Gleixner 		 * we use the default primary handler for it. But it
13821c6c6952SThomas Gleixner 		 * does not have the oneshot flag set. In combination
13831c6c6952SThomas Gleixner 		 * with level interrupts this is deadly, because the
13841c6c6952SThomas Gleixner 		 * default primary handler just wakes the thread, then
13851c6c6952SThomas Gleixner 		 * the irq lines is reenabled, but the device still
13861c6c6952SThomas Gleixner 		 * has the level irq asserted. Rinse and repeat....
13871c6c6952SThomas Gleixner 		 *
13881c6c6952SThomas Gleixner 		 * While this works for edge type interrupts, we play
13891c6c6952SThomas Gleixner 		 * it safe and reject unconditionally because we can't
13901c6c6952SThomas Gleixner 		 * say for sure which type this interrupt really
13911c6c6952SThomas Gleixner 		 * has. The type flags are unreliable as the
13921c6c6952SThomas Gleixner 		 * underlying chip implementation can override them.
13931c6c6952SThomas Gleixner 		 */
139497fd75b7SAndrew Morton 		pr_err("Threaded irq requested with handler=NULL and !ONESHOT for irq %d\n",
13951c6c6952SThomas Gleixner 		       irq);
13961c6c6952SThomas Gleixner 		ret = -EINVAL;
1397cba4235eSThomas Gleixner 		goto out_unlock;
139852abb700SThomas Gleixner 	}
1399b5faba21SThomas Gleixner 
14001da177e4SLinus Torvalds 	if (!shared) {
14013aa551c9SThomas Gleixner 		init_waitqueue_head(&desc->wait_for_threads);
14023aa551c9SThomas Gleixner 
140382736f4dSUwe Kleine-König 		/* Setup the type (level, edge polarity) if configured: */
140482736f4dSUwe Kleine-König 		if (new->flags & IRQF_TRIGGER_MASK) {
1405a1ff541aSJiang Liu 			ret = __irq_set_trigger(desc,
1406f2b662daSDavid Brownell 						new->flags & IRQF_TRIGGER_MASK);
140782736f4dSUwe Kleine-König 
140819d39a38SThomas Gleixner 			if (ret)
1409cba4235eSThomas Gleixner 				goto out_unlock;
1410091738a2SThomas Gleixner 		}
1411f75d222bSAhmed S. Darwish 
1412c942cee4SThomas Gleixner 		/*
1413c942cee4SThomas Gleixner 		 * Activate the interrupt. That activation must happen
1414c942cee4SThomas Gleixner 		 * independently of IRQ_NOAUTOEN. request_irq() can fail
1415c942cee4SThomas Gleixner 		 * and the callers are supposed to handle
1416c942cee4SThomas Gleixner 		 * that. enable_irq() of an interrupt requested with
1417c942cee4SThomas Gleixner 		 * IRQ_NOAUTOEN is not supposed to fail. The activation
1418c942cee4SThomas Gleixner 		 * keeps it in shutdown mode, it merily associates
1419c942cee4SThomas Gleixner 		 * resources if necessary and if that's not possible it
1420c942cee4SThomas Gleixner 		 * fails. Interrupts which are in managed shutdown mode
1421c942cee4SThomas Gleixner 		 * will simply ignore that activation request.
1422c942cee4SThomas Gleixner 		 */
1423c942cee4SThomas Gleixner 		ret = irq_activate(desc);
1424c942cee4SThomas Gleixner 		if (ret)
1425c942cee4SThomas Gleixner 			goto out_unlock;
1426c942cee4SThomas Gleixner 
1427009b4c3bSThomas Gleixner 		desc->istate &= ~(IRQS_AUTODETECT | IRQS_SPURIOUS_DISABLED | \
142832f4125eSThomas Gleixner 				  IRQS_ONESHOT | IRQS_WAITING);
142932f4125eSThomas Gleixner 		irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS);
143094d39e1fSThomas Gleixner 
1431a005677bSThomas Gleixner 		if (new->flags & IRQF_PERCPU) {
1432a005677bSThomas Gleixner 			irqd_set(&desc->irq_data, IRQD_PER_CPU);
1433a005677bSThomas Gleixner 			irq_settings_set_per_cpu(desc);
1434a005677bSThomas Gleixner 		}
14356a58fb3bSThomas Gleixner 
1436b25c340cSThomas Gleixner 		if (new->flags & IRQF_ONESHOT)
14373d67baecSThomas Gleixner 			desc->istate |= IRQS_ONESHOT;
1438b25c340cSThomas Gleixner 
14392e051552SThomas Gleixner 		/* Exclude IRQ from balancing if requested */
14402e051552SThomas Gleixner 		if (new->flags & IRQF_NOBALANCING) {
14412e051552SThomas Gleixner 			irq_settings_set_no_balancing(desc);
14422e051552SThomas Gleixner 			irqd_set(&desc->irq_data, IRQD_NO_BALANCING);
14432e051552SThomas Gleixner 		}
14442e051552SThomas Gleixner 
144504c848d3SThomas Gleixner 		if (irq_settings_can_autoenable(desc)) {
14464cde9c6bSThomas Gleixner 			irq_startup(desc, IRQ_RESEND, IRQ_START_COND);
144704c848d3SThomas Gleixner 		} else {
144804c848d3SThomas Gleixner 			/*
144904c848d3SThomas Gleixner 			 * Shared interrupts do not go well with disabling
145004c848d3SThomas Gleixner 			 * auto enable. The sharing interrupt might request
145104c848d3SThomas Gleixner 			 * it while it's still disabled and then wait for
145204c848d3SThomas Gleixner 			 * interrupts forever.
145304c848d3SThomas Gleixner 			 */
145404c848d3SThomas Gleixner 			WARN_ON_ONCE(new->flags & IRQF_SHARED);
1455e76de9f8SThomas Gleixner 			/* Undo nested disables: */
1456e76de9f8SThomas Gleixner 			desc->depth = 1;
145704c848d3SThomas Gleixner 		}
145818404756SMax Krasnyansky 
1459876dbd4cSThomas Gleixner 	} else if (new->flags & IRQF_TRIGGER_MASK) {
1460876dbd4cSThomas Gleixner 		unsigned int nmsk = new->flags & IRQF_TRIGGER_MASK;
14617ee7e87dSThomas Gleixner 		unsigned int omsk = irqd_get_trigger_type(&desc->irq_data);
1462876dbd4cSThomas Gleixner 
1463876dbd4cSThomas Gleixner 		if (nmsk != omsk)
1464876dbd4cSThomas Gleixner 			/* hope the handler works with current  trigger mode */
1465a395d6a7SJoe Perches 			pr_warn("irq %d uses trigger mode %u; requested %u\n",
14667ee7e87dSThomas Gleixner 				irq, omsk, nmsk);
146794d39e1fSThomas Gleixner 	}
146882736f4dSUwe Kleine-König 
1469f17c7545SIngo Molnar 	*old_ptr = new;
147082736f4dSUwe Kleine-König 
1471cab303beSThomas Gleixner 	irq_pm_install_action(desc, new);
1472cab303beSThomas Gleixner 
14738528b0f1SLinus Torvalds 	/* Reset broken irq detection when installing new handler */
14748528b0f1SLinus Torvalds 	desc->irq_count = 0;
14758528b0f1SLinus Torvalds 	desc->irqs_unhandled = 0;
14761adb0850SThomas Gleixner 
14771adb0850SThomas Gleixner 	/*
14781adb0850SThomas Gleixner 	 * Check whether we disabled the irq via the spurious handler
14791adb0850SThomas Gleixner 	 * before. Reenable it and give it another chance.
14801adb0850SThomas Gleixner 	 */
14817acdd53eSThomas Gleixner 	if (shared && (desc->istate & IRQS_SPURIOUS_DISABLED)) {
14827acdd53eSThomas Gleixner 		desc->istate &= ~IRQS_SPURIOUS_DISABLED;
148379ff1cdaSJiang Liu 		__enable_irq(desc);
14841adb0850SThomas Gleixner 	}
14851adb0850SThomas Gleixner 
1486239007b8SThomas Gleixner 	raw_spin_unlock_irqrestore(&desc->lock, flags);
14873a90795eSThomas Gleixner 	chip_bus_sync_unlock(desc);
14889114014cSThomas Gleixner 	mutex_unlock(&desc->request_mutex);
14891da177e4SLinus Torvalds 
1490b2d3d61aSDaniel Lezcano 	irq_setup_timings(desc, new);
1491b2d3d61aSDaniel Lezcano 
149269ab8494SThomas Gleixner 	/*
149369ab8494SThomas Gleixner 	 * Strictly no need to wake it up, but hung_task complains
149469ab8494SThomas Gleixner 	 * when no hard interrupt wakes the thread up.
149569ab8494SThomas Gleixner 	 */
149669ab8494SThomas Gleixner 	if (new->thread)
149769ab8494SThomas Gleixner 		wake_up_process(new->thread);
14982a1d3ab8SThomas Gleixner 	if (new->secondary)
14992a1d3ab8SThomas Gleixner 		wake_up_process(new->secondary->thread);
150069ab8494SThomas Gleixner 
15012c6927a3SYinghai Lu 	register_irq_proc(irq, desc);
15021da177e4SLinus Torvalds 	new->dir = NULL;
15031da177e4SLinus Torvalds 	register_handler_proc(irq, new);
15041da177e4SLinus Torvalds 	return 0;
1505f5163427SDimitri Sivanich 
1506f5163427SDimitri Sivanich mismatch:
15073cca53b0SThomas Gleixner 	if (!(new->flags & IRQF_PROBE_SHARED)) {
150897fd75b7SAndrew Morton 		pr_err("Flags mismatch irq %d. %08x (%s) vs. %08x (%s)\n",
1509f5d89470SThomas Gleixner 		       irq, new->flags, new->name, old->flags, old->name);
1510f5d89470SThomas Gleixner #ifdef CONFIG_DEBUG_SHIRQ
1511f5163427SDimitri Sivanich 		dump_stack();
15123f050447SAlan Cox #endif
1513f5d89470SThomas Gleixner 	}
15143aa551c9SThomas Gleixner 	ret = -EBUSY;
15153aa551c9SThomas Gleixner 
1516cba4235eSThomas Gleixner out_unlock:
15171c389795SDan Carpenter 	raw_spin_unlock_irqrestore(&desc->lock, flags);
15183b8249e7SThomas Gleixner 
151946e48e25SThomas Gleixner 	if (!desc->action)
152046e48e25SThomas Gleixner 		irq_release_resources(desc);
152119d39a38SThomas Gleixner out_bus_unlock:
152219d39a38SThomas Gleixner 	chip_bus_sync_unlock(desc);
15239114014cSThomas Gleixner 	mutex_unlock(&desc->request_mutex);
15249114014cSThomas Gleixner 
15253aa551c9SThomas Gleixner out_thread:
15263aa551c9SThomas Gleixner 	if (new->thread) {
15273aa551c9SThomas Gleixner 		struct task_struct *t = new->thread;
15283aa551c9SThomas Gleixner 
15293aa551c9SThomas Gleixner 		new->thread = NULL;
15303aa551c9SThomas Gleixner 		kthread_stop(t);
15313aa551c9SThomas Gleixner 		put_task_struct(t);
15323aa551c9SThomas Gleixner 	}
15332a1d3ab8SThomas Gleixner 	if (new->secondary && new->secondary->thread) {
15342a1d3ab8SThomas Gleixner 		struct task_struct *t = new->secondary->thread;
15352a1d3ab8SThomas Gleixner 
15362a1d3ab8SThomas Gleixner 		new->secondary->thread = NULL;
15372a1d3ab8SThomas Gleixner 		kthread_stop(t);
15382a1d3ab8SThomas Gleixner 		put_task_struct(t);
15392a1d3ab8SThomas Gleixner 	}
1540b6873807SSebastian Andrzej Siewior out_mput:
1541b6873807SSebastian Andrzej Siewior 	module_put(desc->owner);
15423aa551c9SThomas Gleixner 	return ret;
15431da177e4SLinus Torvalds }
15441da177e4SLinus Torvalds 
15451da177e4SLinus Torvalds /**
1546d3c60047SThomas Gleixner  *	setup_irq - setup an interrupt
1547d3c60047SThomas Gleixner  *	@irq: Interrupt line to setup
1548d3c60047SThomas Gleixner  *	@act: irqaction for the interrupt
1549d3c60047SThomas Gleixner  *
1550d3c60047SThomas Gleixner  * Used to statically setup interrupts in the early boot process.
1551d3c60047SThomas Gleixner  */
1552d3c60047SThomas Gleixner int setup_irq(unsigned int irq, struct irqaction *act)
1553d3c60047SThomas Gleixner {
1554986c011dSDavid Daney 	int retval;
1555d3c60047SThomas Gleixner 	struct irq_desc *desc = irq_to_desc(irq);
1556d3c60047SThomas Gleixner 
15579b5d585dSJon Hunter 	if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
155831d9d9b6SMarc Zyngier 		return -EINVAL;
1559be45beb2SJon Hunter 
1560be45beb2SJon Hunter 	retval = irq_chip_pm_get(&desc->irq_data);
1561be45beb2SJon Hunter 	if (retval < 0)
1562be45beb2SJon Hunter 		return retval;
1563be45beb2SJon Hunter 
1564986c011dSDavid Daney 	retval = __setup_irq(irq, desc, act);
1565986c011dSDavid Daney 
1566be45beb2SJon Hunter 	if (retval)
1567be45beb2SJon Hunter 		irq_chip_pm_put(&desc->irq_data);
1568be45beb2SJon Hunter 
1569986c011dSDavid Daney 	return retval;
1570d3c60047SThomas Gleixner }
1571eb53b4e8SMagnus Damm EXPORT_SYMBOL_GPL(setup_irq);
1572d3c60047SThomas Gleixner 
1573cbf94f06SMagnus Damm /*
1574cbf94f06SMagnus Damm  * Internal function to unregister an irqaction - used to free
1575cbf94f06SMagnus Damm  * regular and special interrupts that are part of the architecture.
15761da177e4SLinus Torvalds  */
157783ac4ca9SUwe Kleine König static struct irqaction *__free_irq(struct irq_desc *desc, void *dev_id)
15781da177e4SLinus Torvalds {
157983ac4ca9SUwe Kleine König 	unsigned irq = desc->irq_data.irq;
1580f17c7545SIngo Molnar 	struct irqaction *action, **action_ptr;
15811da177e4SLinus Torvalds 	unsigned long flags;
15821da177e4SLinus Torvalds 
1583ae88a23bSIngo Molnar 	WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
15847d94f7caSYinghai Lu 
15859114014cSThomas Gleixner 	mutex_lock(&desc->request_mutex);
1586abc7e40cSThomas Gleixner 	chip_bus_lock(desc);
1587239007b8SThomas Gleixner 	raw_spin_lock_irqsave(&desc->lock, flags);
1588ae88a23bSIngo Molnar 
1589ae88a23bSIngo Molnar 	/*
1590ae88a23bSIngo Molnar 	 * There can be multiple actions per IRQ descriptor, find the right
1591ae88a23bSIngo Molnar 	 * one based on the dev_id:
1592ae88a23bSIngo Molnar 	 */
1593f17c7545SIngo Molnar 	action_ptr = &desc->action;
15941da177e4SLinus Torvalds 	for (;;) {
1595f17c7545SIngo Molnar 		action = *action_ptr;
15961da177e4SLinus Torvalds 
1597ae88a23bSIngo Molnar 		if (!action) {
1598ae88a23bSIngo Molnar 			WARN(1, "Trying to free already-free IRQ %d\n", irq);
1599239007b8SThomas Gleixner 			raw_spin_unlock_irqrestore(&desc->lock, flags);
1600abc7e40cSThomas Gleixner 			chip_bus_sync_unlock(desc);
160119d39a38SThomas Gleixner 			mutex_unlock(&desc->request_mutex);
1602f21cfb25SMagnus Damm 			return NULL;
1603ae88a23bSIngo Molnar 		}
16041da177e4SLinus Torvalds 
16058316e381SIngo Molnar 		if (action->dev_id == dev_id)
1606ae88a23bSIngo Molnar 			break;
1607f17c7545SIngo Molnar 		action_ptr = &action->next;
1608ae88a23bSIngo Molnar 	}
1609ae88a23bSIngo Molnar 
1610ae88a23bSIngo Molnar 	/* Found it - now remove it from the list of entries: */
1611f17c7545SIngo Molnar 	*action_ptr = action->next;
1612dbce706eSPaolo 'Blaisorblade' Giarrusso 
1613cab303beSThomas Gleixner 	irq_pm_remove_action(desc, action);
1614cab303beSThomas Gleixner 
1615ae88a23bSIngo Molnar 	/* If this was the last handler, shut down the IRQ line: */
1616c1bacbaeSThomas Gleixner 	if (!desc->action) {
1617e9849777SThomas Gleixner 		irq_settings_clr_disable_unlazy(desc);
161846999238SThomas Gleixner 		irq_shutdown(desc);
1619c1bacbaeSThomas Gleixner 	}
16203aa551c9SThomas Gleixner 
1621e7a297b0SPeter P Waskiewicz Jr #ifdef CONFIG_SMP
1622e7a297b0SPeter P Waskiewicz Jr 	/* make sure affinity_hint is cleaned up */
1623e7a297b0SPeter P Waskiewicz Jr 	if (WARN_ON_ONCE(desc->affinity_hint))
1624e7a297b0SPeter P Waskiewicz Jr 		desc->affinity_hint = NULL;
1625e7a297b0SPeter P Waskiewicz Jr #endif
1626e7a297b0SPeter P Waskiewicz Jr 
1627239007b8SThomas Gleixner 	raw_spin_unlock_irqrestore(&desc->lock, flags);
162819d39a38SThomas Gleixner 	/*
162919d39a38SThomas Gleixner 	 * Drop bus_lock here so the changes which were done in the chip
163019d39a38SThomas Gleixner 	 * callbacks above are synced out to the irq chips which hang
1631519cc865SLukas Wunner 	 * behind a slow bus (I2C, SPI) before calling synchronize_hardirq().
163219d39a38SThomas Gleixner 	 *
163319d39a38SThomas Gleixner 	 * Aside of that the bus_lock can also be taken from the threaded
163419d39a38SThomas Gleixner 	 * handler in irq_finalize_oneshot() which results in a deadlock
1635519cc865SLukas Wunner 	 * because kthread_stop() would wait forever for the thread to
163619d39a38SThomas Gleixner 	 * complete, which is blocked on the bus lock.
163719d39a38SThomas Gleixner 	 *
163819d39a38SThomas Gleixner 	 * The still held desc->request_mutex() protects against a
163919d39a38SThomas Gleixner 	 * concurrent request_irq() of this irq so the release of resources
164019d39a38SThomas Gleixner 	 * and timing data is properly serialized.
164119d39a38SThomas Gleixner 	 */
1642abc7e40cSThomas Gleixner 	chip_bus_sync_unlock(desc);
1643ae88a23bSIngo Molnar 
16441da177e4SLinus Torvalds 	unregister_handler_proc(irq, action);
16451da177e4SLinus Torvalds 
1646ae88a23bSIngo Molnar 	/* Make sure it's not being used on another CPU: */
1647519cc865SLukas Wunner 	synchronize_hardirq(irq);
1648ae88a23bSIngo Molnar 
16491d99493bSDavid Woodhouse #ifdef CONFIG_DEBUG_SHIRQ
16501d99493bSDavid Woodhouse 	/*
1651ae88a23bSIngo Molnar 	 * It's a shared IRQ -- the driver ought to be prepared for an IRQ
1652ae88a23bSIngo Molnar 	 * event to happen even now it's being freed, so let's make sure that
1653ae88a23bSIngo Molnar 	 * is so by doing an extra call to the handler ....
1654ae88a23bSIngo Molnar 	 *
1655ae88a23bSIngo Molnar 	 * ( We do this after actually deregistering it, to make sure that a
16560a13ec0bSJonathan Neuschäfer 	 *   'real' IRQ doesn't run in parallel with our fake. )
16571d99493bSDavid Woodhouse 	 */
16581d99493bSDavid Woodhouse 	if (action->flags & IRQF_SHARED) {
16591d99493bSDavid Woodhouse 		local_irq_save(flags);
16601d99493bSDavid Woodhouse 		action->handler(irq, dev_id);
16611d99493bSDavid Woodhouse 		local_irq_restore(flags);
16621d99493bSDavid Woodhouse 	}
16631d99493bSDavid Woodhouse #endif
16642d860ad7SLinus Torvalds 
1665519cc865SLukas Wunner 	/*
1666519cc865SLukas Wunner 	 * The action has already been removed above, but the thread writes
1667519cc865SLukas Wunner 	 * its oneshot mask bit when it completes. Though request_mutex is
1668519cc865SLukas Wunner 	 * held across this which prevents __setup_irq() from handing out
1669519cc865SLukas Wunner 	 * the same bit to a newly requested action.
1670519cc865SLukas Wunner 	 */
16712d860ad7SLinus Torvalds 	if (action->thread) {
16722d860ad7SLinus Torvalds 		kthread_stop(action->thread);
16732d860ad7SLinus Torvalds 		put_task_struct(action->thread);
16742a1d3ab8SThomas Gleixner 		if (action->secondary && action->secondary->thread) {
16752a1d3ab8SThomas Gleixner 			kthread_stop(action->secondary->thread);
16762a1d3ab8SThomas Gleixner 			put_task_struct(action->secondary->thread);
16772a1d3ab8SThomas Gleixner 		}
16782d860ad7SLinus Torvalds 	}
16792d860ad7SLinus Torvalds 
168019d39a38SThomas Gleixner 	/* Last action releases resources */
16812343877fSThomas Gleixner 	if (!desc->action) {
168219d39a38SThomas Gleixner 		/*
168319d39a38SThomas Gleixner 		 * Reaquire bus lock as irq_release_resources() might
168419d39a38SThomas Gleixner 		 * require it to deallocate resources over the slow bus.
168519d39a38SThomas Gleixner 		 */
168619d39a38SThomas Gleixner 		chip_bus_lock(desc);
168746e48e25SThomas Gleixner 		irq_release_resources(desc);
168819d39a38SThomas Gleixner 		chip_bus_sync_unlock(desc);
16892343877fSThomas Gleixner 		irq_remove_timings(desc);
16902343877fSThomas Gleixner 	}
169146e48e25SThomas Gleixner 
16929114014cSThomas Gleixner 	mutex_unlock(&desc->request_mutex);
16939114014cSThomas Gleixner 
1694be45beb2SJon Hunter 	irq_chip_pm_put(&desc->irq_data);
1695b6873807SSebastian Andrzej Siewior 	module_put(desc->owner);
16962a1d3ab8SThomas Gleixner 	kfree(action->secondary);
1697f21cfb25SMagnus Damm 	return action;
1698f21cfb25SMagnus Damm }
16991da177e4SLinus Torvalds 
17001da177e4SLinus Torvalds /**
1701cbf94f06SMagnus Damm  *	remove_irq - free an interrupt
1702cbf94f06SMagnus Damm  *	@irq: Interrupt line to free
1703cbf94f06SMagnus Damm  *	@act: irqaction for the interrupt
1704cbf94f06SMagnus Damm  *
1705cbf94f06SMagnus Damm  * Used to remove interrupts statically setup by the early boot process.
1706cbf94f06SMagnus Damm  */
1707cbf94f06SMagnus Damm void remove_irq(unsigned int irq, struct irqaction *act)
1708cbf94f06SMagnus Damm {
170931d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_to_desc(irq);
171031d9d9b6SMarc Zyngier 
171131d9d9b6SMarc Zyngier 	if (desc && !WARN_ON(irq_settings_is_per_cpu_devid(desc)))
171283ac4ca9SUwe Kleine König 		__free_irq(desc, act->dev_id);
1713cbf94f06SMagnus Damm }
1714eb53b4e8SMagnus Damm EXPORT_SYMBOL_GPL(remove_irq);
1715cbf94f06SMagnus Damm 
1716cbf94f06SMagnus Damm /**
1717f21cfb25SMagnus Damm  *	free_irq - free an interrupt allocated with request_irq
17181da177e4SLinus Torvalds  *	@irq: Interrupt line to free
17191da177e4SLinus Torvalds  *	@dev_id: Device identity to free
17201da177e4SLinus Torvalds  *
17211da177e4SLinus Torvalds  *	Remove an interrupt handler. The handler is removed and if the
17221da177e4SLinus Torvalds  *	interrupt line is no longer in use by any driver it is disabled.
17231da177e4SLinus Torvalds  *	On a shared IRQ the caller must ensure the interrupt is disabled
17241da177e4SLinus Torvalds  *	on the card it drives before calling this function. The function
17251da177e4SLinus Torvalds  *	does not return until any executing interrupts for this IRQ
17261da177e4SLinus Torvalds  *	have completed.
17271da177e4SLinus Torvalds  *
17281da177e4SLinus Torvalds  *	This function must not be called from interrupt context.
172925ce4be7SChristoph Hellwig  *
173025ce4be7SChristoph Hellwig  *	Returns the devname argument passed to request_irq.
17311da177e4SLinus Torvalds  */
173225ce4be7SChristoph Hellwig const void *free_irq(unsigned int irq, void *dev_id)
17331da177e4SLinus Torvalds {
173470aedd24SThomas Gleixner 	struct irq_desc *desc = irq_to_desc(irq);
173525ce4be7SChristoph Hellwig 	struct irqaction *action;
173625ce4be7SChristoph Hellwig 	const char *devname;
173770aedd24SThomas Gleixner 
173831d9d9b6SMarc Zyngier 	if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
173925ce4be7SChristoph Hellwig 		return NULL;
174070aedd24SThomas Gleixner 
1741cd7eab44SBen Hutchings #ifdef CONFIG_SMP
1742cd7eab44SBen Hutchings 	if (WARN_ON(desc->affinity_notify))
1743cd7eab44SBen Hutchings 		desc->affinity_notify = NULL;
1744cd7eab44SBen Hutchings #endif
1745cd7eab44SBen Hutchings 
174683ac4ca9SUwe Kleine König 	action = __free_irq(desc, dev_id);
17472827a418SAlexandru Moise 
17482827a418SAlexandru Moise 	if (!action)
17492827a418SAlexandru Moise 		return NULL;
17502827a418SAlexandru Moise 
175125ce4be7SChristoph Hellwig 	devname = action->name;
175225ce4be7SChristoph Hellwig 	kfree(action);
175325ce4be7SChristoph Hellwig 	return devname;
17541da177e4SLinus Torvalds }
17551da177e4SLinus Torvalds EXPORT_SYMBOL(free_irq);
17561da177e4SLinus Torvalds 
17571da177e4SLinus Torvalds /**
17583aa551c9SThomas Gleixner  *	request_threaded_irq - allocate an interrupt line
17591da177e4SLinus Torvalds  *	@irq: Interrupt line to allocate
17603aa551c9SThomas Gleixner  *	@handler: Function to be called when the IRQ occurs.
17613aa551c9SThomas Gleixner  *		  Primary handler for threaded interrupts
1762b25c340cSThomas Gleixner  *		  If NULL and thread_fn != NULL the default
1763b25c340cSThomas Gleixner  *		  primary handler is installed
17643aa551c9SThomas Gleixner  *	@thread_fn: Function called from the irq handler thread
17653aa551c9SThomas Gleixner  *		    If NULL, no irq thread is created
17661da177e4SLinus Torvalds  *	@irqflags: Interrupt type flags
17671da177e4SLinus Torvalds  *	@devname: An ascii name for the claiming device
17681da177e4SLinus Torvalds  *	@dev_id: A cookie passed back to the handler function
17691da177e4SLinus Torvalds  *
17701da177e4SLinus Torvalds  *	This call allocates interrupt resources and enables the
17711da177e4SLinus Torvalds  *	interrupt line and IRQ handling. From the point this
17721da177e4SLinus Torvalds  *	call is made your handler function may be invoked. Since
17731da177e4SLinus Torvalds  *	your handler function must clear any interrupt the board
17741da177e4SLinus Torvalds  *	raises, you must take care both to initialise your hardware
17751da177e4SLinus Torvalds  *	and to set up the interrupt handler in the right order.
17761da177e4SLinus Torvalds  *
17773aa551c9SThomas Gleixner  *	If you want to set up a threaded irq handler for your device
17786d21af4fSJavi Merino  *	then you need to supply @handler and @thread_fn. @handler is
17793aa551c9SThomas Gleixner  *	still called in hard interrupt context and has to check
17803aa551c9SThomas Gleixner  *	whether the interrupt originates from the device. If yes it
17813aa551c9SThomas Gleixner  *	needs to disable the interrupt on the device and return
178239a2eddbSSteven Rostedt  *	IRQ_WAKE_THREAD which will wake up the handler thread and run
17833aa551c9SThomas Gleixner  *	@thread_fn. This split handler design is necessary to support
17843aa551c9SThomas Gleixner  *	shared interrupts.
17853aa551c9SThomas Gleixner  *
17861da177e4SLinus Torvalds  *	Dev_id must be globally unique. Normally the address of the
17871da177e4SLinus Torvalds  *	device data structure is used as the cookie. Since the handler
17881da177e4SLinus Torvalds  *	receives this value it makes sense to use it.
17891da177e4SLinus Torvalds  *
17901da177e4SLinus Torvalds  *	If your interrupt is shared you must pass a non NULL dev_id
17911da177e4SLinus Torvalds  *	as this is required when freeing the interrupt.
17921da177e4SLinus Torvalds  *
17931da177e4SLinus Torvalds  *	Flags:
17941da177e4SLinus Torvalds  *
17953cca53b0SThomas Gleixner  *	IRQF_SHARED		Interrupt is shared
17960c5d1eb7SDavid Brownell  *	IRQF_TRIGGER_*		Specify active edge(s) or level
17971da177e4SLinus Torvalds  *
17981da177e4SLinus Torvalds  */
17993aa551c9SThomas Gleixner int request_threaded_irq(unsigned int irq, irq_handler_t handler,
18003aa551c9SThomas Gleixner 			 irq_handler_t thread_fn, unsigned long irqflags,
18013aa551c9SThomas Gleixner 			 const char *devname, void *dev_id)
18021da177e4SLinus Torvalds {
18031da177e4SLinus Torvalds 	struct irqaction *action;
180408678b08SYinghai Lu 	struct irq_desc *desc;
1805d3c60047SThomas Gleixner 	int retval;
18061da177e4SLinus Torvalds 
1807e237a551SChen Fan 	if (irq == IRQ_NOTCONNECTED)
1808e237a551SChen Fan 		return -ENOTCONN;
1809e237a551SChen Fan 
1810470c6623SDavid Brownell 	/*
18111da177e4SLinus Torvalds 	 * Sanity-check: shared interrupts must pass in a real dev-ID,
18121da177e4SLinus Torvalds 	 * otherwise we'll have trouble later trying to figure out
18131da177e4SLinus Torvalds 	 * which interrupt is which (messes up the interrupt freeing
18141da177e4SLinus Torvalds 	 * logic etc).
181517f48034SRafael J. Wysocki 	 *
181617f48034SRafael J. Wysocki 	 * Also IRQF_COND_SUSPEND only makes sense for shared interrupts and
181717f48034SRafael J. Wysocki 	 * it cannot be set along with IRQF_NO_SUSPEND.
18181da177e4SLinus Torvalds 	 */
181917f48034SRafael J. Wysocki 	if (((irqflags & IRQF_SHARED) && !dev_id) ||
182017f48034SRafael J. Wysocki 	    (!(irqflags & IRQF_SHARED) && (irqflags & IRQF_COND_SUSPEND)) ||
182117f48034SRafael J. Wysocki 	    ((irqflags & IRQF_NO_SUSPEND) && (irqflags & IRQF_COND_SUSPEND)))
18221da177e4SLinus Torvalds 		return -EINVAL;
18237d94f7caSYinghai Lu 
1824cb5bc832SYinghai Lu 	desc = irq_to_desc(irq);
18257d94f7caSYinghai Lu 	if (!desc)
18261da177e4SLinus Torvalds 		return -EINVAL;
18277d94f7caSYinghai Lu 
182831d9d9b6SMarc Zyngier 	if (!irq_settings_can_request(desc) ||
182931d9d9b6SMarc Zyngier 	    WARN_ON(irq_settings_is_per_cpu_devid(desc)))
18306550c775SThomas Gleixner 		return -EINVAL;
1831b25c340cSThomas Gleixner 
1832b25c340cSThomas Gleixner 	if (!handler) {
1833b25c340cSThomas Gleixner 		if (!thread_fn)
18341da177e4SLinus Torvalds 			return -EINVAL;
1835b25c340cSThomas Gleixner 		handler = irq_default_primary_handler;
1836b25c340cSThomas Gleixner 	}
18371da177e4SLinus Torvalds 
183845535732SThomas Gleixner 	action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
18391da177e4SLinus Torvalds 	if (!action)
18401da177e4SLinus Torvalds 		return -ENOMEM;
18411da177e4SLinus Torvalds 
18421da177e4SLinus Torvalds 	action->handler = handler;
18433aa551c9SThomas Gleixner 	action->thread_fn = thread_fn;
18441da177e4SLinus Torvalds 	action->flags = irqflags;
18451da177e4SLinus Torvalds 	action->name = devname;
18461da177e4SLinus Torvalds 	action->dev_id = dev_id;
18471da177e4SLinus Torvalds 
1848be45beb2SJon Hunter 	retval = irq_chip_pm_get(&desc->irq_data);
18494396f46cSShawn Lin 	if (retval < 0) {
18504396f46cSShawn Lin 		kfree(action);
1851be45beb2SJon Hunter 		return retval;
18524396f46cSShawn Lin 	}
1853be45beb2SJon Hunter 
1854d3c60047SThomas Gleixner 	retval = __setup_irq(irq, desc, action);
185570aedd24SThomas Gleixner 
18562a1d3ab8SThomas Gleixner 	if (retval) {
1857be45beb2SJon Hunter 		irq_chip_pm_put(&desc->irq_data);
18582a1d3ab8SThomas Gleixner 		kfree(action->secondary);
1859377bf1e4SAnton Vorontsov 		kfree(action);
18602a1d3ab8SThomas Gleixner 	}
1861377bf1e4SAnton Vorontsov 
18626d83f94dSThomas Gleixner #ifdef CONFIG_DEBUG_SHIRQ_FIXME
18636ce51c43SLuis Henriques 	if (!retval && (irqflags & IRQF_SHARED)) {
1864a304e1b8SDavid Woodhouse 		/*
1865a304e1b8SDavid Woodhouse 		 * It's a shared IRQ -- the driver ought to be prepared for it
1866a304e1b8SDavid Woodhouse 		 * to happen immediately, so let's make sure....
1867377bf1e4SAnton Vorontsov 		 * We disable the irq to make sure that a 'real' IRQ doesn't
1868377bf1e4SAnton Vorontsov 		 * run in parallel with our fake.
1869a304e1b8SDavid Woodhouse 		 */
1870a304e1b8SDavid Woodhouse 		unsigned long flags;
1871a304e1b8SDavid Woodhouse 
1872377bf1e4SAnton Vorontsov 		disable_irq(irq);
1873a304e1b8SDavid Woodhouse 		local_irq_save(flags);
1874377bf1e4SAnton Vorontsov 
1875a304e1b8SDavid Woodhouse 		handler(irq, dev_id);
1876377bf1e4SAnton Vorontsov 
1877a304e1b8SDavid Woodhouse 		local_irq_restore(flags);
1878377bf1e4SAnton Vorontsov 		enable_irq(irq);
1879a304e1b8SDavid Woodhouse 	}
1880a304e1b8SDavid Woodhouse #endif
18811da177e4SLinus Torvalds 	return retval;
18821da177e4SLinus Torvalds }
18833aa551c9SThomas Gleixner EXPORT_SYMBOL(request_threaded_irq);
1884ae731f8dSMarc Zyngier 
1885ae731f8dSMarc Zyngier /**
1886ae731f8dSMarc Zyngier  *	request_any_context_irq - allocate an interrupt line
1887ae731f8dSMarc Zyngier  *	@irq: Interrupt line to allocate
1888ae731f8dSMarc Zyngier  *	@handler: Function to be called when the IRQ occurs.
1889ae731f8dSMarc Zyngier  *		  Threaded handler for threaded interrupts.
1890ae731f8dSMarc Zyngier  *	@flags: Interrupt type flags
1891ae731f8dSMarc Zyngier  *	@name: An ascii name for the claiming device
1892ae731f8dSMarc Zyngier  *	@dev_id: A cookie passed back to the handler function
1893ae731f8dSMarc Zyngier  *
1894ae731f8dSMarc Zyngier  *	This call allocates interrupt resources and enables the
1895ae731f8dSMarc Zyngier  *	interrupt line and IRQ handling. It selects either a
1896ae731f8dSMarc Zyngier  *	hardirq or threaded handling method depending on the
1897ae731f8dSMarc Zyngier  *	context.
1898ae731f8dSMarc Zyngier  *
1899ae731f8dSMarc Zyngier  *	On failure, it returns a negative value. On success,
1900ae731f8dSMarc Zyngier  *	it returns either IRQC_IS_HARDIRQ or IRQC_IS_NESTED.
1901ae731f8dSMarc Zyngier  */
1902ae731f8dSMarc Zyngier int request_any_context_irq(unsigned int irq, irq_handler_t handler,
1903ae731f8dSMarc Zyngier 			    unsigned long flags, const char *name, void *dev_id)
1904ae731f8dSMarc Zyngier {
1905e237a551SChen Fan 	struct irq_desc *desc;
1906ae731f8dSMarc Zyngier 	int ret;
1907ae731f8dSMarc Zyngier 
1908e237a551SChen Fan 	if (irq == IRQ_NOTCONNECTED)
1909e237a551SChen Fan 		return -ENOTCONN;
1910e237a551SChen Fan 
1911e237a551SChen Fan 	desc = irq_to_desc(irq);
1912ae731f8dSMarc Zyngier 	if (!desc)
1913ae731f8dSMarc Zyngier 		return -EINVAL;
1914ae731f8dSMarc Zyngier 
19151ccb4e61SThomas Gleixner 	if (irq_settings_is_nested_thread(desc)) {
1916ae731f8dSMarc Zyngier 		ret = request_threaded_irq(irq, NULL, handler,
1917ae731f8dSMarc Zyngier 					   flags, name, dev_id);
1918ae731f8dSMarc Zyngier 		return !ret ? IRQC_IS_NESTED : ret;
1919ae731f8dSMarc Zyngier 	}
1920ae731f8dSMarc Zyngier 
1921ae731f8dSMarc Zyngier 	ret = request_irq(irq, handler, flags, name, dev_id);
1922ae731f8dSMarc Zyngier 	return !ret ? IRQC_IS_HARDIRQ : ret;
1923ae731f8dSMarc Zyngier }
1924ae731f8dSMarc Zyngier EXPORT_SYMBOL_GPL(request_any_context_irq);
192531d9d9b6SMarc Zyngier 
19261e7c5fd2SMarc Zyngier void enable_percpu_irq(unsigned int irq, unsigned int type)
192731d9d9b6SMarc Zyngier {
192831d9d9b6SMarc Zyngier 	unsigned int cpu = smp_processor_id();
192931d9d9b6SMarc Zyngier 	unsigned long flags;
193031d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
193131d9d9b6SMarc Zyngier 
193231d9d9b6SMarc Zyngier 	if (!desc)
193331d9d9b6SMarc Zyngier 		return;
193431d9d9b6SMarc Zyngier 
1935f35ad083SMarc Zyngier 	/*
1936f35ad083SMarc Zyngier 	 * If the trigger type is not specified by the caller, then
1937f35ad083SMarc Zyngier 	 * use the default for this interrupt.
1938f35ad083SMarc Zyngier 	 */
19391e7c5fd2SMarc Zyngier 	type &= IRQ_TYPE_SENSE_MASK;
1940f35ad083SMarc Zyngier 	if (type == IRQ_TYPE_NONE)
1941f35ad083SMarc Zyngier 		type = irqd_get_trigger_type(&desc->irq_data);
1942f35ad083SMarc Zyngier 
19431e7c5fd2SMarc Zyngier 	if (type != IRQ_TYPE_NONE) {
19441e7c5fd2SMarc Zyngier 		int ret;
19451e7c5fd2SMarc Zyngier 
1946a1ff541aSJiang Liu 		ret = __irq_set_trigger(desc, type);
19471e7c5fd2SMarc Zyngier 
19481e7c5fd2SMarc Zyngier 		if (ret) {
194932cffddeSThomas Gleixner 			WARN(1, "failed to set type for IRQ%d\n", irq);
19501e7c5fd2SMarc Zyngier 			goto out;
19511e7c5fd2SMarc Zyngier 		}
19521e7c5fd2SMarc Zyngier 	}
19531e7c5fd2SMarc Zyngier 
195431d9d9b6SMarc Zyngier 	irq_percpu_enable(desc, cpu);
19551e7c5fd2SMarc Zyngier out:
195631d9d9b6SMarc Zyngier 	irq_put_desc_unlock(desc, flags);
195731d9d9b6SMarc Zyngier }
195836a5df85SChris Metcalf EXPORT_SYMBOL_GPL(enable_percpu_irq);
195931d9d9b6SMarc Zyngier 
1960f0cb3220SThomas Petazzoni /**
1961f0cb3220SThomas Petazzoni  * irq_percpu_is_enabled - Check whether the per cpu irq is enabled
1962f0cb3220SThomas Petazzoni  * @irq:	Linux irq number to check for
1963f0cb3220SThomas Petazzoni  *
1964f0cb3220SThomas Petazzoni  * Must be called from a non migratable context. Returns the enable
1965f0cb3220SThomas Petazzoni  * state of a per cpu interrupt on the current cpu.
1966f0cb3220SThomas Petazzoni  */
1967f0cb3220SThomas Petazzoni bool irq_percpu_is_enabled(unsigned int irq)
1968f0cb3220SThomas Petazzoni {
1969f0cb3220SThomas Petazzoni 	unsigned int cpu = smp_processor_id();
1970f0cb3220SThomas Petazzoni 	struct irq_desc *desc;
1971f0cb3220SThomas Petazzoni 	unsigned long flags;
1972f0cb3220SThomas Petazzoni 	bool is_enabled;
1973f0cb3220SThomas Petazzoni 
1974f0cb3220SThomas Petazzoni 	desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
1975f0cb3220SThomas Petazzoni 	if (!desc)
1976f0cb3220SThomas Petazzoni 		return false;
1977f0cb3220SThomas Petazzoni 
1978f0cb3220SThomas Petazzoni 	is_enabled = cpumask_test_cpu(cpu, desc->percpu_enabled);
1979f0cb3220SThomas Petazzoni 	irq_put_desc_unlock(desc, flags);
1980f0cb3220SThomas Petazzoni 
1981f0cb3220SThomas Petazzoni 	return is_enabled;
1982f0cb3220SThomas Petazzoni }
1983f0cb3220SThomas Petazzoni EXPORT_SYMBOL_GPL(irq_percpu_is_enabled);
1984f0cb3220SThomas Petazzoni 
198531d9d9b6SMarc Zyngier void disable_percpu_irq(unsigned int irq)
198631d9d9b6SMarc Zyngier {
198731d9d9b6SMarc Zyngier 	unsigned int cpu = smp_processor_id();
198831d9d9b6SMarc Zyngier 	unsigned long flags;
198931d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
199031d9d9b6SMarc Zyngier 
199131d9d9b6SMarc Zyngier 	if (!desc)
199231d9d9b6SMarc Zyngier 		return;
199331d9d9b6SMarc Zyngier 
199431d9d9b6SMarc Zyngier 	irq_percpu_disable(desc, cpu);
199531d9d9b6SMarc Zyngier 	irq_put_desc_unlock(desc, flags);
199631d9d9b6SMarc Zyngier }
199736a5df85SChris Metcalf EXPORT_SYMBOL_GPL(disable_percpu_irq);
199831d9d9b6SMarc Zyngier 
199931d9d9b6SMarc Zyngier /*
200031d9d9b6SMarc Zyngier  * Internal function to unregister a percpu irqaction.
200131d9d9b6SMarc Zyngier  */
200231d9d9b6SMarc Zyngier static struct irqaction *__free_percpu_irq(unsigned int irq, void __percpu *dev_id)
200331d9d9b6SMarc Zyngier {
200431d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_to_desc(irq);
200531d9d9b6SMarc Zyngier 	struct irqaction *action;
200631d9d9b6SMarc Zyngier 	unsigned long flags;
200731d9d9b6SMarc Zyngier 
200831d9d9b6SMarc Zyngier 	WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
200931d9d9b6SMarc Zyngier 
201031d9d9b6SMarc Zyngier 	if (!desc)
201131d9d9b6SMarc Zyngier 		return NULL;
201231d9d9b6SMarc Zyngier 
201331d9d9b6SMarc Zyngier 	raw_spin_lock_irqsave(&desc->lock, flags);
201431d9d9b6SMarc Zyngier 
201531d9d9b6SMarc Zyngier 	action = desc->action;
201631d9d9b6SMarc Zyngier 	if (!action || action->percpu_dev_id != dev_id) {
201731d9d9b6SMarc Zyngier 		WARN(1, "Trying to free already-free IRQ %d\n", irq);
201831d9d9b6SMarc Zyngier 		goto bad;
201931d9d9b6SMarc Zyngier 	}
202031d9d9b6SMarc Zyngier 
202131d9d9b6SMarc Zyngier 	if (!cpumask_empty(desc->percpu_enabled)) {
202231d9d9b6SMarc Zyngier 		WARN(1, "percpu IRQ %d still enabled on CPU%d!\n",
202331d9d9b6SMarc Zyngier 		     irq, cpumask_first(desc->percpu_enabled));
202431d9d9b6SMarc Zyngier 		goto bad;
202531d9d9b6SMarc Zyngier 	}
202631d9d9b6SMarc Zyngier 
202731d9d9b6SMarc Zyngier 	/* Found it - now remove it from the list of entries: */
202831d9d9b6SMarc Zyngier 	desc->action = NULL;
202931d9d9b6SMarc Zyngier 
203031d9d9b6SMarc Zyngier 	raw_spin_unlock_irqrestore(&desc->lock, flags);
203131d9d9b6SMarc Zyngier 
203231d9d9b6SMarc Zyngier 	unregister_handler_proc(irq, action);
203331d9d9b6SMarc Zyngier 
2034be45beb2SJon Hunter 	irq_chip_pm_put(&desc->irq_data);
203531d9d9b6SMarc Zyngier 	module_put(desc->owner);
203631d9d9b6SMarc Zyngier 	return action;
203731d9d9b6SMarc Zyngier 
203831d9d9b6SMarc Zyngier bad:
203931d9d9b6SMarc Zyngier 	raw_spin_unlock_irqrestore(&desc->lock, flags);
204031d9d9b6SMarc Zyngier 	return NULL;
204131d9d9b6SMarc Zyngier }
204231d9d9b6SMarc Zyngier 
204331d9d9b6SMarc Zyngier /**
204431d9d9b6SMarc Zyngier  *	remove_percpu_irq - free a per-cpu interrupt
204531d9d9b6SMarc Zyngier  *	@irq: Interrupt line to free
204631d9d9b6SMarc Zyngier  *	@act: irqaction for the interrupt
204731d9d9b6SMarc Zyngier  *
204831d9d9b6SMarc Zyngier  * Used to remove interrupts statically setup by the early boot process.
204931d9d9b6SMarc Zyngier  */
205031d9d9b6SMarc Zyngier void remove_percpu_irq(unsigned int irq, struct irqaction *act)
205131d9d9b6SMarc Zyngier {
205231d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_to_desc(irq);
205331d9d9b6SMarc Zyngier 
205431d9d9b6SMarc Zyngier 	if (desc && irq_settings_is_per_cpu_devid(desc))
205531d9d9b6SMarc Zyngier 	    __free_percpu_irq(irq, act->percpu_dev_id);
205631d9d9b6SMarc Zyngier }
205731d9d9b6SMarc Zyngier 
205831d9d9b6SMarc Zyngier /**
205931d9d9b6SMarc Zyngier  *	free_percpu_irq - free an interrupt allocated with request_percpu_irq
206031d9d9b6SMarc Zyngier  *	@irq: Interrupt line to free
206131d9d9b6SMarc Zyngier  *	@dev_id: Device identity to free
206231d9d9b6SMarc Zyngier  *
206331d9d9b6SMarc Zyngier  *	Remove a percpu interrupt handler. The handler is removed, but
206431d9d9b6SMarc Zyngier  *	the interrupt line is not disabled. This must be done on each
206531d9d9b6SMarc Zyngier  *	CPU before calling this function. The function does not return
206631d9d9b6SMarc Zyngier  *	until any executing interrupts for this IRQ have completed.
206731d9d9b6SMarc Zyngier  *
206831d9d9b6SMarc Zyngier  *	This function must not be called from interrupt context.
206931d9d9b6SMarc Zyngier  */
207031d9d9b6SMarc Zyngier void free_percpu_irq(unsigned int irq, void __percpu *dev_id)
207131d9d9b6SMarc Zyngier {
207231d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_to_desc(irq);
207331d9d9b6SMarc Zyngier 
207431d9d9b6SMarc Zyngier 	if (!desc || !irq_settings_is_per_cpu_devid(desc))
207531d9d9b6SMarc Zyngier 		return;
207631d9d9b6SMarc Zyngier 
207731d9d9b6SMarc Zyngier 	chip_bus_lock(desc);
207831d9d9b6SMarc Zyngier 	kfree(__free_percpu_irq(irq, dev_id));
207931d9d9b6SMarc Zyngier 	chip_bus_sync_unlock(desc);
208031d9d9b6SMarc Zyngier }
2081aec2e2adSMaxime Ripard EXPORT_SYMBOL_GPL(free_percpu_irq);
208231d9d9b6SMarc Zyngier 
208331d9d9b6SMarc Zyngier /**
208431d9d9b6SMarc Zyngier  *	setup_percpu_irq - setup a per-cpu interrupt
208531d9d9b6SMarc Zyngier  *	@irq: Interrupt line to setup
208631d9d9b6SMarc Zyngier  *	@act: irqaction for the interrupt
208731d9d9b6SMarc Zyngier  *
208831d9d9b6SMarc Zyngier  * Used to statically setup per-cpu interrupts in the early boot process.
208931d9d9b6SMarc Zyngier  */
209031d9d9b6SMarc Zyngier int setup_percpu_irq(unsigned int irq, struct irqaction *act)
209131d9d9b6SMarc Zyngier {
209231d9d9b6SMarc Zyngier 	struct irq_desc *desc = irq_to_desc(irq);
209331d9d9b6SMarc Zyngier 	int retval;
209431d9d9b6SMarc Zyngier 
209531d9d9b6SMarc Zyngier 	if (!desc || !irq_settings_is_per_cpu_devid(desc))
209631d9d9b6SMarc Zyngier 		return -EINVAL;
2097be45beb2SJon Hunter 
2098be45beb2SJon Hunter 	retval = irq_chip_pm_get(&desc->irq_data);
2099be45beb2SJon Hunter 	if (retval < 0)
2100be45beb2SJon Hunter 		return retval;
2101be45beb2SJon Hunter 
210231d9d9b6SMarc Zyngier 	retval = __setup_irq(irq, desc, act);
210331d9d9b6SMarc Zyngier 
2104be45beb2SJon Hunter 	if (retval)
2105be45beb2SJon Hunter 		irq_chip_pm_put(&desc->irq_data);
2106be45beb2SJon Hunter 
210731d9d9b6SMarc Zyngier 	return retval;
210831d9d9b6SMarc Zyngier }
210931d9d9b6SMarc Zyngier 
211031d9d9b6SMarc Zyngier /**
2111c80081b9SDaniel Lezcano  *	__request_percpu_irq - allocate a percpu interrupt line
211231d9d9b6SMarc Zyngier  *	@irq: Interrupt line to allocate
211331d9d9b6SMarc Zyngier  *	@handler: Function to be called when the IRQ occurs.
2114c80081b9SDaniel Lezcano  *	@flags: Interrupt type flags (IRQF_TIMER only)
211531d9d9b6SMarc Zyngier  *	@devname: An ascii name for the claiming device
211631d9d9b6SMarc Zyngier  *	@dev_id: A percpu cookie passed back to the handler function
211731d9d9b6SMarc Zyngier  *
2118a1b7febdSMaxime Ripard  *	This call allocates interrupt resources and enables the
2119a1b7febdSMaxime Ripard  *	interrupt on the local CPU. If the interrupt is supposed to be
2120a1b7febdSMaxime Ripard  *	enabled on other CPUs, it has to be done on each CPU using
2121a1b7febdSMaxime Ripard  *	enable_percpu_irq().
212231d9d9b6SMarc Zyngier  *
212331d9d9b6SMarc Zyngier  *	Dev_id must be globally unique. It is a per-cpu variable, and
212431d9d9b6SMarc Zyngier  *	the handler gets called with the interrupted CPU's instance of
212531d9d9b6SMarc Zyngier  *	that variable.
212631d9d9b6SMarc Zyngier  */
2127c80081b9SDaniel Lezcano int __request_percpu_irq(unsigned int irq, irq_handler_t handler,
2128c80081b9SDaniel Lezcano 			 unsigned long flags, const char *devname,
2129c80081b9SDaniel Lezcano 			 void __percpu *dev_id)
213031d9d9b6SMarc Zyngier {
213131d9d9b6SMarc Zyngier 	struct irqaction *action;
213231d9d9b6SMarc Zyngier 	struct irq_desc *desc;
213331d9d9b6SMarc Zyngier 	int retval;
213431d9d9b6SMarc Zyngier 
213531d9d9b6SMarc Zyngier 	if (!dev_id)
213631d9d9b6SMarc Zyngier 		return -EINVAL;
213731d9d9b6SMarc Zyngier 
213831d9d9b6SMarc Zyngier 	desc = irq_to_desc(irq);
213931d9d9b6SMarc Zyngier 	if (!desc || !irq_settings_can_request(desc) ||
214031d9d9b6SMarc Zyngier 	    !irq_settings_is_per_cpu_devid(desc))
214131d9d9b6SMarc Zyngier 		return -EINVAL;
214231d9d9b6SMarc Zyngier 
2143c80081b9SDaniel Lezcano 	if (flags && flags != IRQF_TIMER)
2144c80081b9SDaniel Lezcano 		return -EINVAL;
2145c80081b9SDaniel Lezcano 
214631d9d9b6SMarc Zyngier 	action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
214731d9d9b6SMarc Zyngier 	if (!action)
214831d9d9b6SMarc Zyngier 		return -ENOMEM;
214931d9d9b6SMarc Zyngier 
215031d9d9b6SMarc Zyngier 	action->handler = handler;
2151c80081b9SDaniel Lezcano 	action->flags = flags | IRQF_PERCPU | IRQF_NO_SUSPEND;
215231d9d9b6SMarc Zyngier 	action->name = devname;
215331d9d9b6SMarc Zyngier 	action->percpu_dev_id = dev_id;
215431d9d9b6SMarc Zyngier 
2155be45beb2SJon Hunter 	retval = irq_chip_pm_get(&desc->irq_data);
21564396f46cSShawn Lin 	if (retval < 0) {
21574396f46cSShawn Lin 		kfree(action);
2158be45beb2SJon Hunter 		return retval;
21594396f46cSShawn Lin 	}
2160be45beb2SJon Hunter 
216131d9d9b6SMarc Zyngier 	retval = __setup_irq(irq, desc, action);
216231d9d9b6SMarc Zyngier 
2163be45beb2SJon Hunter 	if (retval) {
2164be45beb2SJon Hunter 		irq_chip_pm_put(&desc->irq_data);
216531d9d9b6SMarc Zyngier 		kfree(action);
2166be45beb2SJon Hunter 	}
216731d9d9b6SMarc Zyngier 
216831d9d9b6SMarc Zyngier 	return retval;
216931d9d9b6SMarc Zyngier }
2170c80081b9SDaniel Lezcano EXPORT_SYMBOL_GPL(__request_percpu_irq);
21711b7047edSMarc Zyngier 
21721b7047edSMarc Zyngier /**
21731b7047edSMarc Zyngier  *	irq_get_irqchip_state - returns the irqchip state of a interrupt.
21741b7047edSMarc Zyngier  *	@irq: Interrupt line that is forwarded to a VM
21751b7047edSMarc Zyngier  *	@which: One of IRQCHIP_STATE_* the caller wants to know about
21761b7047edSMarc Zyngier  *	@state: a pointer to a boolean where the state is to be storeed
21771b7047edSMarc Zyngier  *
21781b7047edSMarc Zyngier  *	This call snapshots the internal irqchip state of an
21791b7047edSMarc Zyngier  *	interrupt, returning into @state the bit corresponding to
21801b7047edSMarc Zyngier  *	stage @which
21811b7047edSMarc Zyngier  *
21821b7047edSMarc Zyngier  *	This function should be called with preemption disabled if the
21831b7047edSMarc Zyngier  *	interrupt controller has per-cpu registers.
21841b7047edSMarc Zyngier  */
21851b7047edSMarc Zyngier int irq_get_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
21861b7047edSMarc Zyngier 			  bool *state)
21871b7047edSMarc Zyngier {
21881b7047edSMarc Zyngier 	struct irq_desc *desc;
21891b7047edSMarc Zyngier 	struct irq_data *data;
21901b7047edSMarc Zyngier 	struct irq_chip *chip;
21911b7047edSMarc Zyngier 	unsigned long flags;
21921b7047edSMarc Zyngier 	int err = -EINVAL;
21931b7047edSMarc Zyngier 
21941b7047edSMarc Zyngier 	desc = irq_get_desc_buslock(irq, &flags, 0);
21951b7047edSMarc Zyngier 	if (!desc)
21961b7047edSMarc Zyngier 		return err;
21971b7047edSMarc Zyngier 
21981b7047edSMarc Zyngier 	data = irq_desc_get_irq_data(desc);
21991b7047edSMarc Zyngier 
22001b7047edSMarc Zyngier 	do {
22011b7047edSMarc Zyngier 		chip = irq_data_get_irq_chip(data);
22021b7047edSMarc Zyngier 		if (chip->irq_get_irqchip_state)
22031b7047edSMarc Zyngier 			break;
22041b7047edSMarc Zyngier #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
22051b7047edSMarc Zyngier 		data = data->parent_data;
22061b7047edSMarc Zyngier #else
22071b7047edSMarc Zyngier 		data = NULL;
22081b7047edSMarc Zyngier #endif
22091b7047edSMarc Zyngier 	} while (data);
22101b7047edSMarc Zyngier 
22111b7047edSMarc Zyngier 	if (data)
22121b7047edSMarc Zyngier 		err = chip->irq_get_irqchip_state(data, which, state);
22131b7047edSMarc Zyngier 
22141b7047edSMarc Zyngier 	irq_put_desc_busunlock(desc, flags);
22151b7047edSMarc Zyngier 	return err;
22161b7047edSMarc Zyngier }
22171ee4fb3eSBjorn Andersson EXPORT_SYMBOL_GPL(irq_get_irqchip_state);
22181b7047edSMarc Zyngier 
22191b7047edSMarc Zyngier /**
22201b7047edSMarc Zyngier  *	irq_set_irqchip_state - set the state of a forwarded interrupt.
22211b7047edSMarc Zyngier  *	@irq: Interrupt line that is forwarded to a VM
22221b7047edSMarc Zyngier  *	@which: State to be restored (one of IRQCHIP_STATE_*)
22231b7047edSMarc Zyngier  *	@val: Value corresponding to @which
22241b7047edSMarc Zyngier  *
22251b7047edSMarc Zyngier  *	This call sets the internal irqchip state of an interrupt,
22261b7047edSMarc Zyngier  *	depending on the value of @which.
22271b7047edSMarc Zyngier  *
22281b7047edSMarc Zyngier  *	This function should be called with preemption disabled if the
22291b7047edSMarc Zyngier  *	interrupt controller has per-cpu registers.
22301b7047edSMarc Zyngier  */
22311b7047edSMarc Zyngier int irq_set_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
22321b7047edSMarc Zyngier 			  bool val)
22331b7047edSMarc Zyngier {
22341b7047edSMarc Zyngier 	struct irq_desc *desc;
22351b7047edSMarc Zyngier 	struct irq_data *data;
22361b7047edSMarc Zyngier 	struct irq_chip *chip;
22371b7047edSMarc Zyngier 	unsigned long flags;
22381b7047edSMarc Zyngier 	int err = -EINVAL;
22391b7047edSMarc Zyngier 
22401b7047edSMarc Zyngier 	desc = irq_get_desc_buslock(irq, &flags, 0);
22411b7047edSMarc Zyngier 	if (!desc)
22421b7047edSMarc Zyngier 		return err;
22431b7047edSMarc Zyngier 
22441b7047edSMarc Zyngier 	data = irq_desc_get_irq_data(desc);
22451b7047edSMarc Zyngier 
22461b7047edSMarc Zyngier 	do {
22471b7047edSMarc Zyngier 		chip = irq_data_get_irq_chip(data);
22481b7047edSMarc Zyngier 		if (chip->irq_set_irqchip_state)
22491b7047edSMarc Zyngier 			break;
22501b7047edSMarc Zyngier #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
22511b7047edSMarc Zyngier 		data = data->parent_data;
22521b7047edSMarc Zyngier #else
22531b7047edSMarc Zyngier 		data = NULL;
22541b7047edSMarc Zyngier #endif
22551b7047edSMarc Zyngier 	} while (data);
22561b7047edSMarc Zyngier 
22571b7047edSMarc Zyngier 	if (data)
22581b7047edSMarc Zyngier 		err = chip->irq_set_irqchip_state(data, which, val);
22591b7047edSMarc Zyngier 
22601b7047edSMarc Zyngier 	irq_put_desc_busunlock(desc, flags);
22611b7047edSMarc Zyngier 	return err;
22621b7047edSMarc Zyngier }
22631ee4fb3eSBjorn Andersson EXPORT_SYMBOL_GPL(irq_set_irqchip_state);
2264