blob: 3cb29835632f2d98ed4692caa7616234d9fb5fa5 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
4 * Copyright (C) 2005-2006 Thomas Gleixner
5 *
6 * This file contains driver APIs to the irq subsystem.
7 */
8
9#define pr_fmt(fmt) "genirq: " fmt
10
11#include <linux/irq.h>
12#include <linux/kthread.h>
13#include <linux/module.h>
14#include <linux/random.h>
15#include <linux/interrupt.h>
David Brazdil0f672f62019-12-10 10:32:29 +000016#include <linux/irqdomain.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017#include <linux/slab.h>
18#include <linux/sched.h>
19#include <linux/sched/rt.h>
20#include <linux/sched/task.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020021#include <linux/sched/isolation.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000022#include <uapi/linux/sched/types.h>
23#include <linux/task_work.h>
24
25#include "internals.h"
26
David Brazdil0f672f62019-12-10 10:32:29 +000027#if defined(CONFIG_IRQ_FORCED_THREADING) && !defined(CONFIG_PREEMPT_RT)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000028__read_mostly bool force_irqthreads;
29EXPORT_SYMBOL_GPL(force_irqthreads);
30
31static int __init setup_forced_irqthreads(char *arg)
32{
33 force_irqthreads = true;
34 return 0;
35}
36early_param("threadirqs", setup_forced_irqthreads);
37#endif
38
David Brazdil0f672f62019-12-10 10:32:29 +000039static void __synchronize_hardirq(struct irq_desc *desc, bool sync_chip)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000040{
David Brazdil0f672f62019-12-10 10:32:29 +000041 struct irq_data *irqd = irq_desc_get_irq_data(desc);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000042 bool inprogress;
43
44 do {
45 unsigned long flags;
46
47 /*
48 * Wait until we're out of the critical section. This might
49 * give the wrong answer due to the lack of memory barriers.
50 */
51 while (irqd_irq_inprogress(&desc->irq_data))
52 cpu_relax();
53
54 /* Ok, that indicated we're done: double-check carefully. */
55 raw_spin_lock_irqsave(&desc->lock, flags);
56 inprogress = irqd_irq_inprogress(&desc->irq_data);
David Brazdil0f672f62019-12-10 10:32:29 +000057
58 /*
59 * If requested and supported, check at the chip whether it
60 * is in flight at the hardware level, i.e. already pending
61 * in a CPU and waiting for service and acknowledge.
62 */
63 if (!inprogress && sync_chip) {
64 /*
65 * Ignore the return code. inprogress is only updated
66 * when the chip supports it.
67 */
68 __irq_get_irqchip_state(irqd, IRQCHIP_STATE_ACTIVE,
69 &inprogress);
70 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000071 raw_spin_unlock_irqrestore(&desc->lock, flags);
72
73 /* Oops, that failed? */
74 } while (inprogress);
75}
76
77/**
78 * synchronize_hardirq - wait for pending hard IRQ handlers (on other CPUs)
79 * @irq: interrupt number to wait for
80 *
81 * This function waits for any pending hard IRQ handlers for this
82 * interrupt to complete before returning. If you use this
83 * function while holding a resource the IRQ handler may need you
84 * will deadlock. It does not take associated threaded handlers
85 * into account.
86 *
87 * Do not use this for shutdown scenarios where you must be sure
88 * that all parts (hardirq and threaded handler) have completed.
89 *
90 * Returns: false if a threaded handler is active.
91 *
92 * This function may be called - with care - from IRQ context.
David Brazdil0f672f62019-12-10 10:32:29 +000093 *
94 * It does not check whether there is an interrupt in flight at the
95 * hardware level, but not serviced yet, as this might deadlock when
96 * called with interrupts disabled and the target CPU of the interrupt
97 * is the current CPU.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000098 */
99bool synchronize_hardirq(unsigned int irq)
100{
101 struct irq_desc *desc = irq_to_desc(irq);
102
103 if (desc) {
David Brazdil0f672f62019-12-10 10:32:29 +0000104 __synchronize_hardirq(desc, false);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000105 return !atomic_read(&desc->threads_active);
106 }
107
108 return true;
109}
110EXPORT_SYMBOL(synchronize_hardirq);
111
112/**
113 * synchronize_irq - wait for pending IRQ handlers (on other CPUs)
114 * @irq: interrupt number to wait for
115 *
116 * This function waits for any pending IRQ handlers for this interrupt
117 * to complete before returning. If you use this function while
118 * holding a resource the IRQ handler may need you will deadlock.
119 *
David Brazdil0f672f62019-12-10 10:32:29 +0000120 * Can only be called from preemptible code as it might sleep when
121 * an interrupt thread is associated to @irq.
122 *
123 * It optionally makes sure (when the irq chip supports that method)
124 * that the interrupt is not pending in any CPU and waiting for
125 * service.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000126 */
127void synchronize_irq(unsigned int irq)
128{
129 struct irq_desc *desc = irq_to_desc(irq);
130
131 if (desc) {
David Brazdil0f672f62019-12-10 10:32:29 +0000132 __synchronize_hardirq(desc, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000133 /*
134 * We made sure that no hardirq handler is
135 * running. Now verify that no threaded handlers are
136 * active.
137 */
138 wait_event(desc->wait_for_threads,
139 !atomic_read(&desc->threads_active));
140 }
141}
142EXPORT_SYMBOL(synchronize_irq);
143
144#ifdef CONFIG_SMP
145cpumask_var_t irq_default_affinity;
146
147static bool __irq_can_set_affinity(struct irq_desc *desc)
148{
149 if (!desc || !irqd_can_balance(&desc->irq_data) ||
150 !desc->irq_data.chip || !desc->irq_data.chip->irq_set_affinity)
151 return false;
152 return true;
153}
154
155/**
156 * irq_can_set_affinity - Check if the affinity of a given irq can be set
157 * @irq: Interrupt to check
158 *
159 */
160int irq_can_set_affinity(unsigned int irq)
161{
162 return __irq_can_set_affinity(irq_to_desc(irq));
163}
164
165/**
166 * irq_can_set_affinity_usr - Check if affinity of a irq can be set from user space
167 * @irq: Interrupt to check
168 *
169 * Like irq_can_set_affinity() above, but additionally checks for the
170 * AFFINITY_MANAGED flag.
171 */
172bool irq_can_set_affinity_usr(unsigned int irq)
173{
174 struct irq_desc *desc = irq_to_desc(irq);
175
176 return __irq_can_set_affinity(desc) &&
177 !irqd_affinity_is_managed(&desc->irq_data);
178}
179
180/**
181 * irq_set_thread_affinity - Notify irq threads to adjust affinity
182 * @desc: irq descriptor which has affitnity changed
183 *
184 * We just set IRQTF_AFFINITY and delegate the affinity setting
185 * to the interrupt thread itself. We can not call
186 * set_cpus_allowed_ptr() here as we hold desc->lock and this
187 * code can be called from hard interrupt context.
188 */
189void irq_set_thread_affinity(struct irq_desc *desc)
190{
191 struct irqaction *action;
192
193 for_each_action_of_desc(desc, action)
194 if (action->thread)
195 set_bit(IRQTF_AFFINITY, &action->thread_flags);
196}
197
Olivier Deprez0e641232021-09-23 10:07:05 +0200198#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000199static void irq_validate_effective_affinity(struct irq_data *data)
200{
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000201 const struct cpumask *m = irq_data_get_effective_affinity_mask(data);
202 struct irq_chip *chip = irq_data_get_irq_chip(data);
203
204 if (!cpumask_empty(m))
205 return;
206 pr_warn_once("irq_chip %s did not update eff. affinity mask of irq %u\n",
207 chip->name, data->irq);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000208}
209
Olivier Deprez0e641232021-09-23 10:07:05 +0200210static inline void irq_init_effective_affinity(struct irq_data *data,
211 const struct cpumask *mask)
212{
213 cpumask_copy(irq_data_get_effective_affinity_mask(data), mask);
214}
215#else
216static inline void irq_validate_effective_affinity(struct irq_data *data) { }
217static inline void irq_init_effective_affinity(struct irq_data *data,
218 const struct cpumask *mask) { }
219#endif
220
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000221int irq_do_set_affinity(struct irq_data *data, const struct cpumask *mask,
222 bool force)
223{
224 struct irq_desc *desc = irq_data_to_desc(data);
225 struct irq_chip *chip = irq_data_get_irq_chip(data);
Olivier Deprez92d4c212022-12-06 15:05:30 +0100226 const struct cpumask *prog_mask;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000227 int ret;
228
Olivier Deprez92d4c212022-12-06 15:05:30 +0100229 static DEFINE_RAW_SPINLOCK(tmp_mask_lock);
230 static struct cpumask tmp_mask;
231
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000232 if (!chip || !chip->irq_set_affinity)
233 return -EINVAL;
234
Olivier Deprez92d4c212022-12-06 15:05:30 +0100235 raw_spin_lock(&tmp_mask_lock);
Olivier Deprez157378f2022-04-04 15:47:50 +0200236 /*
237 * If this is a managed interrupt and housekeeping is enabled on
238 * it check whether the requested affinity mask intersects with
239 * a housekeeping CPU. If so, then remove the isolated CPUs from
240 * the mask and just keep the housekeeping CPU(s). This prevents
241 * the affinity setter from routing the interrupt to an isolated
242 * CPU to avoid that I/O submitted from a housekeeping CPU causes
243 * interrupts on an isolated one.
244 *
245 * If the masks do not intersect or include online CPU(s) then
246 * keep the requested mask. The isolated target CPUs are only
247 * receiving interrupts when the I/O operation was submitted
248 * directly from them.
249 *
250 * If all housekeeping CPUs in the affinity mask are offline, the
251 * interrupt will be migrated by the CPU hotplug code once a
252 * housekeeping CPU which belongs to the affinity mask comes
253 * online.
254 */
255 if (irqd_affinity_is_managed(data) &&
256 housekeeping_enabled(HK_FLAG_MANAGED_IRQ)) {
Olivier Deprez92d4c212022-12-06 15:05:30 +0100257 const struct cpumask *hk_mask;
Olivier Deprez157378f2022-04-04 15:47:50 +0200258
259 hk_mask = housekeeping_cpumask(HK_FLAG_MANAGED_IRQ);
260
Olivier Deprez157378f2022-04-04 15:47:50 +0200261 cpumask_and(&tmp_mask, mask, hk_mask);
262 if (!cpumask_intersects(&tmp_mask, cpu_online_mask))
263 prog_mask = mask;
264 else
265 prog_mask = &tmp_mask;
Olivier Deprez157378f2022-04-04 15:47:50 +0200266 } else {
Olivier Deprez92d4c212022-12-06 15:05:30 +0100267 prog_mask = mask;
Olivier Deprez157378f2022-04-04 15:47:50 +0200268 }
Olivier Deprez92d4c212022-12-06 15:05:30 +0100269
270 /*
271 * Make sure we only provide online CPUs to the irqchip,
272 * unless we are being asked to force the affinity (in which
273 * case we do as we are told).
274 */
275 cpumask_and(&tmp_mask, prog_mask, cpu_online_mask);
276 if (!force && !cpumask_empty(&tmp_mask))
277 ret = chip->irq_set_affinity(data, &tmp_mask, force);
278 else if (force)
279 ret = chip->irq_set_affinity(data, mask, force);
280 else
281 ret = -EINVAL;
282
283 raw_spin_unlock(&tmp_mask_lock);
284
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000285 switch (ret) {
286 case IRQ_SET_MASK_OK:
287 case IRQ_SET_MASK_OK_DONE:
288 cpumask_copy(desc->irq_common_data.affinity, mask);
Olivier Deprez157378f2022-04-04 15:47:50 +0200289 fallthrough;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000290 case IRQ_SET_MASK_OK_NOCOPY:
291 irq_validate_effective_affinity(data);
292 irq_set_thread_affinity(desc);
293 ret = 0;
294 }
295
296 return ret;
297}
298
299#ifdef CONFIG_GENERIC_PENDING_IRQ
300static inline int irq_set_affinity_pending(struct irq_data *data,
301 const struct cpumask *dest)
302{
303 struct irq_desc *desc = irq_data_to_desc(data);
304
305 irqd_set_move_pending(data);
306 irq_copy_pending(desc, dest);
307 return 0;
308}
309#else
310static inline int irq_set_affinity_pending(struct irq_data *data,
311 const struct cpumask *dest)
312{
313 return -EBUSY;
314}
315#endif
316
317static int irq_try_set_affinity(struct irq_data *data,
318 const struct cpumask *dest, bool force)
319{
320 int ret = irq_do_set_affinity(data, dest, force);
321
322 /*
323 * In case that the underlying vector management is busy and the
324 * architecture supports the generic pending mechanism then utilize
325 * this to avoid returning an error to user space.
326 */
327 if (ret == -EBUSY && !force)
328 ret = irq_set_affinity_pending(data, dest);
329 return ret;
330}
331
Olivier Deprez0e641232021-09-23 10:07:05 +0200332static bool irq_set_affinity_deactivated(struct irq_data *data,
333 const struct cpumask *mask, bool force)
334{
335 struct irq_desc *desc = irq_data_to_desc(data);
336
337 /*
338 * Handle irq chips which can handle affinity only in activated
339 * state correctly
340 *
341 * If the interrupt is not yet activated, just store the affinity
342 * mask and do not call the chip driver at all. On activation the
343 * driver has to make sure anyway that the interrupt is in a
344 * useable state so startup works.
345 */
346 if (!IS_ENABLED(CONFIG_IRQ_DOMAIN_HIERARCHY) ||
347 irqd_is_activated(data) || !irqd_affinity_on_activate(data))
348 return false;
349
350 cpumask_copy(desc->irq_common_data.affinity, mask);
351 irq_init_effective_affinity(data, mask);
352 irqd_set(data, IRQD_AFFINITY_SET);
353 return true;
354}
355
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000356int irq_set_affinity_locked(struct irq_data *data, const struct cpumask *mask,
357 bool force)
358{
359 struct irq_chip *chip = irq_data_get_irq_chip(data);
360 struct irq_desc *desc = irq_data_to_desc(data);
361 int ret = 0;
362
363 if (!chip || !chip->irq_set_affinity)
364 return -EINVAL;
365
Olivier Deprez0e641232021-09-23 10:07:05 +0200366 if (irq_set_affinity_deactivated(data, mask, force))
367 return 0;
368
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000369 if (irq_can_move_pcntxt(data) && !irqd_is_setaffinity_pending(data)) {
370 ret = irq_try_set_affinity(data, mask, force);
371 } else {
372 irqd_set_move_pending(data);
373 irq_copy_pending(desc, mask);
374 }
375
376 if (desc->affinity_notify) {
377 kref_get(&desc->affinity_notify->kref);
Olivier Deprez0e641232021-09-23 10:07:05 +0200378 if (!schedule_work(&desc->affinity_notify->work)) {
379 /* Work was already scheduled, drop our extra ref */
380 kref_put(&desc->affinity_notify->kref,
381 desc->affinity_notify->release);
382 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000383 }
384 irqd_set(data, IRQD_AFFINITY_SET);
385
386 return ret;
387}
388
389int __irq_set_affinity(unsigned int irq, const struct cpumask *mask, bool force)
390{
391 struct irq_desc *desc = irq_to_desc(irq);
392 unsigned long flags;
393 int ret;
394
395 if (!desc)
396 return -EINVAL;
397
398 raw_spin_lock_irqsave(&desc->lock, flags);
399 ret = irq_set_affinity_locked(irq_desc_get_irq_data(desc), mask, force);
400 raw_spin_unlock_irqrestore(&desc->lock, flags);
401 return ret;
402}
403
404int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m)
405{
406 unsigned long flags;
407 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
408
409 if (!desc)
410 return -EINVAL;
411 desc->affinity_hint = m;
412 irq_put_desc_unlock(desc, flags);
413 /* set the initial affinity to prevent every interrupt being on CPU0 */
414 if (m)
415 __irq_set_affinity(irq, m, false);
416 return 0;
417}
418EXPORT_SYMBOL_GPL(irq_set_affinity_hint);
419
420static void irq_affinity_notify(struct work_struct *work)
421{
422 struct irq_affinity_notify *notify =
423 container_of(work, struct irq_affinity_notify, work);
424 struct irq_desc *desc = irq_to_desc(notify->irq);
425 cpumask_var_t cpumask;
426 unsigned long flags;
427
428 if (!desc || !alloc_cpumask_var(&cpumask, GFP_KERNEL))
429 goto out;
430
431 raw_spin_lock_irqsave(&desc->lock, flags);
432 if (irq_move_pending(&desc->irq_data))
433 irq_get_pending(cpumask, desc);
434 else
435 cpumask_copy(cpumask, desc->irq_common_data.affinity);
436 raw_spin_unlock_irqrestore(&desc->lock, flags);
437
438 notify->notify(notify, cpumask);
439
440 free_cpumask_var(cpumask);
441out:
442 kref_put(&notify->kref, notify->release);
443}
444
445/**
446 * irq_set_affinity_notifier - control notification of IRQ affinity changes
447 * @irq: Interrupt for which to enable/disable notification
448 * @notify: Context for notification, or %NULL to disable
449 * notification. Function pointers must be initialised;
450 * the other fields will be initialised by this function.
451 *
452 * Must be called in process context. Notification may only be enabled
453 * after the IRQ is allocated and must be disabled before the IRQ is
454 * freed using free_irq().
455 */
456int
457irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify)
458{
459 struct irq_desc *desc = irq_to_desc(irq);
460 struct irq_affinity_notify *old_notify;
461 unsigned long flags;
462
463 /* The release function is promised process context */
464 might_sleep();
465
David Brazdil0f672f62019-12-10 10:32:29 +0000466 if (!desc || desc->istate & IRQS_NMI)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000467 return -EINVAL;
468
469 /* Complete initialisation of *notify */
470 if (notify) {
471 notify->irq = irq;
472 kref_init(&notify->kref);
473 INIT_WORK(&notify->work, irq_affinity_notify);
474 }
475
476 raw_spin_lock_irqsave(&desc->lock, flags);
477 old_notify = desc->affinity_notify;
478 desc->affinity_notify = notify;
479 raw_spin_unlock_irqrestore(&desc->lock, flags);
480
David Brazdil0f672f62019-12-10 10:32:29 +0000481 if (old_notify) {
Olivier Deprez0e641232021-09-23 10:07:05 +0200482 if (cancel_work_sync(&old_notify->work)) {
483 /* Pending work had a ref, put that one too */
484 kref_put(&old_notify->kref, old_notify->release);
485 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000486 kref_put(&old_notify->kref, old_notify->release);
David Brazdil0f672f62019-12-10 10:32:29 +0000487 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000488
489 return 0;
490}
491EXPORT_SYMBOL_GPL(irq_set_affinity_notifier);
492
493#ifndef CONFIG_AUTO_IRQ_AFFINITY
494/*
495 * Generic version of the affinity autoselector.
496 */
497int irq_setup_affinity(struct irq_desc *desc)
498{
499 struct cpumask *set = irq_default_affinity;
500 int ret, node = irq_desc_get_node(desc);
501 static DEFINE_RAW_SPINLOCK(mask_lock);
502 static struct cpumask mask;
503
504 /* Excludes PER_CPU and NO_BALANCE interrupts */
505 if (!__irq_can_set_affinity(desc))
506 return 0;
507
508 raw_spin_lock(&mask_lock);
509 /*
510 * Preserve the managed affinity setting and a userspace affinity
511 * setup, but make sure that one of the targets is online.
512 */
513 if (irqd_affinity_is_managed(&desc->irq_data) ||
514 irqd_has_set(&desc->irq_data, IRQD_AFFINITY_SET)) {
515 if (cpumask_intersects(desc->irq_common_data.affinity,
516 cpu_online_mask))
517 set = desc->irq_common_data.affinity;
518 else
519 irqd_clear(&desc->irq_data, IRQD_AFFINITY_SET);
520 }
521
522 cpumask_and(&mask, cpu_online_mask, set);
David Brazdil0f672f62019-12-10 10:32:29 +0000523 if (cpumask_empty(&mask))
524 cpumask_copy(&mask, cpu_online_mask);
525
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000526 if (node != NUMA_NO_NODE) {
527 const struct cpumask *nodemask = cpumask_of_node(node);
528
529 /* make sure at least one of the cpus in nodemask is online */
530 if (cpumask_intersects(&mask, nodemask))
531 cpumask_and(&mask, &mask, nodemask);
532 }
533 ret = irq_do_set_affinity(&desc->irq_data, &mask, false);
534 raw_spin_unlock(&mask_lock);
535 return ret;
536}
537#else
538/* Wrapper for ALPHA specific affinity selector magic */
539int irq_setup_affinity(struct irq_desc *desc)
540{
541 return irq_select_affinity(irq_desc_get_irq(desc));
542}
Olivier Deprez0e641232021-09-23 10:07:05 +0200543#endif /* CONFIG_AUTO_IRQ_AFFINITY */
544#endif /* CONFIG_SMP */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000545
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000546
547/**
548 * irq_set_vcpu_affinity - Set vcpu affinity for the interrupt
549 * @irq: interrupt number to set affinity
550 * @vcpu_info: vCPU specific data or pointer to a percpu array of vCPU
551 * specific data for percpu_devid interrupts
552 *
553 * This function uses the vCPU specific data to set the vCPU
554 * affinity for an irq. The vCPU specific data is passed from
555 * outside, such as KVM. One example code path is as below:
556 * KVM -> IOMMU -> irq_set_vcpu_affinity().
557 */
558int irq_set_vcpu_affinity(unsigned int irq, void *vcpu_info)
559{
560 unsigned long flags;
561 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
562 struct irq_data *data;
563 struct irq_chip *chip;
564 int ret = -ENOSYS;
565
566 if (!desc)
567 return -EINVAL;
568
569 data = irq_desc_get_irq_data(desc);
570 do {
571 chip = irq_data_get_irq_chip(data);
572 if (chip && chip->irq_set_vcpu_affinity)
573 break;
574#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
575 data = data->parent_data;
576#else
577 data = NULL;
578#endif
579 } while (data);
580
581 if (data)
582 ret = chip->irq_set_vcpu_affinity(data, vcpu_info);
583 irq_put_desc_unlock(desc, flags);
584
585 return ret;
586}
587EXPORT_SYMBOL_GPL(irq_set_vcpu_affinity);
588
589void __disable_irq(struct irq_desc *desc)
590{
591 if (!desc->depth++)
592 irq_disable(desc);
593}
594
595static int __disable_irq_nosync(unsigned int irq)
596{
597 unsigned long flags;
598 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
599
600 if (!desc)
601 return -EINVAL;
602 __disable_irq(desc);
603 irq_put_desc_busunlock(desc, flags);
604 return 0;
605}
606
607/**
608 * disable_irq_nosync - disable an irq without waiting
609 * @irq: Interrupt to disable
610 *
611 * Disable the selected interrupt line. Disables and Enables are
612 * nested.
613 * Unlike disable_irq(), this function does not ensure existing
614 * instances of the IRQ handler have completed before returning.
615 *
616 * This function may be called from IRQ context.
617 */
618void disable_irq_nosync(unsigned int irq)
619{
620 __disable_irq_nosync(irq);
621}
622EXPORT_SYMBOL(disable_irq_nosync);
623
624/**
625 * disable_irq - disable an irq and wait for completion
626 * @irq: Interrupt to disable
627 *
628 * Disable the selected interrupt line. Enables and Disables are
629 * nested.
630 * This function waits for any pending IRQ handlers for this interrupt
631 * to complete before returning. If you use this function while
632 * holding a resource the IRQ handler may need you will deadlock.
633 *
634 * This function may be called - with care - from IRQ context.
635 */
636void disable_irq(unsigned int irq)
637{
638 if (!__disable_irq_nosync(irq))
639 synchronize_irq(irq);
640}
641EXPORT_SYMBOL(disable_irq);
642
643/**
644 * disable_hardirq - disables an irq and waits for hardirq completion
645 * @irq: Interrupt to disable
646 *
647 * Disable the selected interrupt line. Enables and Disables are
648 * nested.
649 * This function waits for any pending hard IRQ handlers for this
650 * interrupt to complete before returning. If you use this function while
651 * holding a resource the hard IRQ handler may need you will deadlock.
652 *
653 * When used to optimistically disable an interrupt from atomic context
654 * the return value must be checked.
655 *
656 * Returns: false if a threaded handler is active.
657 *
658 * This function may be called - with care - from IRQ context.
659 */
660bool disable_hardirq(unsigned int irq)
661{
662 if (!__disable_irq_nosync(irq))
663 return synchronize_hardirq(irq);
664
665 return false;
666}
667EXPORT_SYMBOL_GPL(disable_hardirq);
668
David Brazdil0f672f62019-12-10 10:32:29 +0000669/**
670 * disable_nmi_nosync - disable an nmi without waiting
671 * @irq: Interrupt to disable
672 *
673 * Disable the selected interrupt line. Disables and enables are
674 * nested.
675 * The interrupt to disable must have been requested through request_nmi.
676 * Unlike disable_nmi(), this function does not ensure existing
677 * instances of the IRQ handler have completed before returning.
678 */
679void disable_nmi_nosync(unsigned int irq)
680{
681 disable_irq_nosync(irq);
682}
683
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000684void __enable_irq(struct irq_desc *desc)
685{
686 switch (desc->depth) {
687 case 0:
688 err_out:
689 WARN(1, KERN_WARNING "Unbalanced enable for IRQ %d\n",
690 irq_desc_get_irq(desc));
691 break;
692 case 1: {
693 if (desc->istate & IRQS_SUSPENDED)
694 goto err_out;
695 /* Prevent probing on this irq: */
696 irq_settings_set_noprobe(desc);
697 /*
698 * Call irq_startup() not irq_enable() here because the
699 * interrupt might be marked NOAUTOEN. So irq_startup()
700 * needs to be invoked when it gets enabled the first
701 * time. If it was already started up, then irq_startup()
702 * will invoke irq_enable() under the hood.
703 */
704 irq_startup(desc, IRQ_RESEND, IRQ_START_FORCE);
705 break;
706 }
707 default:
708 desc->depth--;
709 }
710}
711
712/**
713 * enable_irq - enable handling of an irq
714 * @irq: Interrupt to enable
715 *
716 * Undoes the effect of one call to disable_irq(). If this
717 * matches the last disable, processing of interrupts on this
718 * IRQ line is re-enabled.
719 *
720 * This function may be called from IRQ context only when
721 * desc->irq_data.chip->bus_lock and desc->chip->bus_sync_unlock are NULL !
722 */
723void enable_irq(unsigned int irq)
724{
725 unsigned long flags;
726 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
727
728 if (!desc)
729 return;
730 if (WARN(!desc->irq_data.chip,
731 KERN_ERR "enable_irq before setup/request_irq: irq %u\n", irq))
732 goto out;
733
734 __enable_irq(desc);
735out:
736 irq_put_desc_busunlock(desc, flags);
737}
738EXPORT_SYMBOL(enable_irq);
739
David Brazdil0f672f62019-12-10 10:32:29 +0000740/**
741 * enable_nmi - enable handling of an nmi
742 * @irq: Interrupt to enable
743 *
744 * The interrupt to enable must have been requested through request_nmi.
745 * Undoes the effect of one call to disable_nmi(). If this
746 * matches the last disable, processing of interrupts on this
747 * IRQ line is re-enabled.
748 */
749void enable_nmi(unsigned int irq)
750{
751 enable_irq(irq);
752}
753
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000754static int set_irq_wake_real(unsigned int irq, unsigned int on)
755{
756 struct irq_desc *desc = irq_to_desc(irq);
757 int ret = -ENXIO;
758
759 if (irq_desc_get_chip(desc)->flags & IRQCHIP_SKIP_SET_WAKE)
760 return 0;
761
762 if (desc->irq_data.chip->irq_set_wake)
763 ret = desc->irq_data.chip->irq_set_wake(&desc->irq_data, on);
764
765 return ret;
766}
767
768/**
769 * irq_set_irq_wake - control irq power management wakeup
770 * @irq: interrupt to control
771 * @on: enable/disable power management wakeup
772 *
773 * Enable/disable power management wakeup mode, which is
774 * disabled by default. Enables and disables must match,
775 * just as they match for non-wakeup mode support.
776 *
777 * Wakeup mode lets this IRQ wake the system from sleep
778 * states like "suspend to RAM".
Olivier Deprez157378f2022-04-04 15:47:50 +0200779 *
780 * Note: irq enable/disable state is completely orthogonal
781 * to the enable/disable state of irq wake. An irq can be
782 * disabled with disable_irq() and still wake the system as
783 * long as the irq has wake enabled. If this does not hold,
784 * then the underlying irq chip and the related driver need
785 * to be investigated.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000786 */
787int irq_set_irq_wake(unsigned int irq, unsigned int on)
788{
789 unsigned long flags;
790 struct irq_desc *desc = irq_get_desc_buslock(irq, &flags, IRQ_GET_DESC_CHECK_GLOBAL);
791 int ret = 0;
792
793 if (!desc)
794 return -EINVAL;
795
David Brazdil0f672f62019-12-10 10:32:29 +0000796 /* Don't use NMIs as wake up interrupts please */
797 if (desc->istate & IRQS_NMI) {
798 ret = -EINVAL;
799 goto out_unlock;
800 }
801
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000802 /* wakeup-capable irqs can be shared between drivers that
803 * don't need to have the same sleep mode behaviors.
804 */
805 if (on) {
806 if (desc->wake_depth++ == 0) {
807 ret = set_irq_wake_real(irq, on);
808 if (ret)
809 desc->wake_depth = 0;
810 else
811 irqd_set(&desc->irq_data, IRQD_WAKEUP_STATE);
812 }
813 } else {
814 if (desc->wake_depth == 0) {
815 WARN(1, "Unbalanced IRQ %d wake disable\n", irq);
816 } else if (--desc->wake_depth == 0) {
817 ret = set_irq_wake_real(irq, on);
818 if (ret)
819 desc->wake_depth = 1;
820 else
821 irqd_clear(&desc->irq_data, IRQD_WAKEUP_STATE);
822 }
823 }
David Brazdil0f672f62019-12-10 10:32:29 +0000824
825out_unlock:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000826 irq_put_desc_busunlock(desc, flags);
827 return ret;
828}
829EXPORT_SYMBOL(irq_set_irq_wake);
830
831/*
832 * Internal function that tells the architecture code whether a
833 * particular irq has been exclusively allocated or is available
834 * for driver use.
835 */
836int can_request_irq(unsigned int irq, unsigned long irqflags)
837{
838 unsigned long flags;
839 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
840 int canrequest = 0;
841
842 if (!desc)
843 return 0;
844
845 if (irq_settings_can_request(desc)) {
846 if (!desc->action ||
847 irqflags & desc->action->flags & IRQF_SHARED)
848 canrequest = 1;
849 }
850 irq_put_desc_unlock(desc, flags);
851 return canrequest;
852}
853
854int __irq_set_trigger(struct irq_desc *desc, unsigned long flags)
855{
856 struct irq_chip *chip = desc->irq_data.chip;
857 int ret, unmask = 0;
858
859 if (!chip || !chip->irq_set_type) {
860 /*
861 * IRQF_TRIGGER_* but the PIC does not support multiple
862 * flow-types?
863 */
864 pr_debug("No set_type function for IRQ %d (%s)\n",
865 irq_desc_get_irq(desc),
866 chip ? (chip->name ? : "unknown") : "unknown");
867 return 0;
868 }
869
870 if (chip->flags & IRQCHIP_SET_TYPE_MASKED) {
871 if (!irqd_irq_masked(&desc->irq_data))
872 mask_irq(desc);
873 if (!irqd_irq_disabled(&desc->irq_data))
874 unmask = 1;
875 }
876
877 /* Mask all flags except trigger mode */
878 flags &= IRQ_TYPE_SENSE_MASK;
879 ret = chip->irq_set_type(&desc->irq_data, flags);
880
881 switch (ret) {
882 case IRQ_SET_MASK_OK:
883 case IRQ_SET_MASK_OK_DONE:
884 irqd_clear(&desc->irq_data, IRQD_TRIGGER_MASK);
885 irqd_set(&desc->irq_data, flags);
Olivier Deprez157378f2022-04-04 15:47:50 +0200886 fallthrough;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000887
888 case IRQ_SET_MASK_OK_NOCOPY:
889 flags = irqd_get_trigger_type(&desc->irq_data);
890 irq_settings_set_trigger_mask(desc, flags);
891 irqd_clear(&desc->irq_data, IRQD_LEVEL);
892 irq_settings_clr_level(desc);
893 if (flags & IRQ_TYPE_LEVEL_MASK) {
894 irq_settings_set_level(desc);
895 irqd_set(&desc->irq_data, IRQD_LEVEL);
896 }
897
898 ret = 0;
899 break;
900 default:
David Brazdil0f672f62019-12-10 10:32:29 +0000901 pr_err("Setting trigger mode %lu for irq %u failed (%pS)\n",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000902 flags, irq_desc_get_irq(desc), chip->irq_set_type);
903 }
904 if (unmask)
905 unmask_irq(desc);
906 return ret;
907}
908
909#ifdef CONFIG_HARDIRQS_SW_RESEND
910int irq_set_parent(int irq, int parent_irq)
911{
912 unsigned long flags;
913 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, 0);
914
915 if (!desc)
916 return -EINVAL;
917
918 desc->parent_irq = parent_irq;
919
920 irq_put_desc_unlock(desc, flags);
921 return 0;
922}
923EXPORT_SYMBOL_GPL(irq_set_parent);
924#endif
925
926/*
927 * Default primary interrupt handler for threaded interrupts. Is
928 * assigned as primary handler when request_threaded_irq is called
929 * with handler == NULL. Useful for oneshot interrupts.
930 */
931static irqreturn_t irq_default_primary_handler(int irq, void *dev_id)
932{
933 return IRQ_WAKE_THREAD;
934}
935
936/*
937 * Primary handler for nested threaded interrupts. Should never be
938 * called.
939 */
940static irqreturn_t irq_nested_primary_handler(int irq, void *dev_id)
941{
942 WARN(1, "Primary handler called for nested irq %d\n", irq);
943 return IRQ_NONE;
944}
945
946static irqreturn_t irq_forced_secondary_handler(int irq, void *dev_id)
947{
948 WARN(1, "Secondary action handler called for irq %d\n", irq);
949 return IRQ_NONE;
950}
951
952static int irq_wait_for_interrupt(struct irqaction *action)
953{
954 for (;;) {
955 set_current_state(TASK_INTERRUPTIBLE);
956
957 if (kthread_should_stop()) {
958 /* may need to run one last time */
959 if (test_and_clear_bit(IRQTF_RUNTHREAD,
960 &action->thread_flags)) {
961 __set_current_state(TASK_RUNNING);
962 return 0;
963 }
964 __set_current_state(TASK_RUNNING);
965 return -1;
966 }
967
968 if (test_and_clear_bit(IRQTF_RUNTHREAD,
969 &action->thread_flags)) {
970 __set_current_state(TASK_RUNNING);
971 return 0;
972 }
973 schedule();
974 }
975}
976
977/*
978 * Oneshot interrupts keep the irq line masked until the threaded
979 * handler finished. unmask if the interrupt has not been disabled and
980 * is marked MASKED.
981 */
982static void irq_finalize_oneshot(struct irq_desc *desc,
983 struct irqaction *action)
984{
985 if (!(desc->istate & IRQS_ONESHOT) ||
986 action->handler == irq_forced_secondary_handler)
987 return;
988again:
989 chip_bus_lock(desc);
990 raw_spin_lock_irq(&desc->lock);
991
992 /*
993 * Implausible though it may be we need to protect us against
994 * the following scenario:
995 *
996 * The thread is faster done than the hard interrupt handler
997 * on the other CPU. If we unmask the irq line then the
998 * interrupt can come in again and masks the line, leaves due
999 * to IRQS_INPROGRESS and the irq line is masked forever.
1000 *
1001 * This also serializes the state of shared oneshot handlers
1002 * versus "desc->threads_onehsot |= action->thread_mask;" in
1003 * irq_wake_thread(). See the comment there which explains the
1004 * serialization.
1005 */
1006 if (unlikely(irqd_irq_inprogress(&desc->irq_data))) {
1007 raw_spin_unlock_irq(&desc->lock);
1008 chip_bus_sync_unlock(desc);
1009 cpu_relax();
1010 goto again;
1011 }
1012
1013 /*
1014 * Now check again, whether the thread should run. Otherwise
1015 * we would clear the threads_oneshot bit of this thread which
1016 * was just set.
1017 */
1018 if (test_bit(IRQTF_RUNTHREAD, &action->thread_flags))
1019 goto out_unlock;
1020
1021 desc->threads_oneshot &= ~action->thread_mask;
1022
1023 if (!desc->threads_oneshot && !irqd_irq_disabled(&desc->irq_data) &&
1024 irqd_irq_masked(&desc->irq_data))
1025 unmask_threaded_irq(desc);
1026
1027out_unlock:
1028 raw_spin_unlock_irq(&desc->lock);
1029 chip_bus_sync_unlock(desc);
1030}
1031
1032#ifdef CONFIG_SMP
1033/*
1034 * Check whether we need to change the affinity of the interrupt thread.
1035 */
1036static void
1037irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action)
1038{
1039 cpumask_var_t mask;
1040 bool valid = true;
1041
1042 if (!test_and_clear_bit(IRQTF_AFFINITY, &action->thread_flags))
1043 return;
1044
1045 /*
1046 * In case we are out of memory we set IRQTF_AFFINITY again and
1047 * try again next time
1048 */
1049 if (!alloc_cpumask_var(&mask, GFP_KERNEL)) {
1050 set_bit(IRQTF_AFFINITY, &action->thread_flags);
1051 return;
1052 }
1053
1054 raw_spin_lock_irq(&desc->lock);
1055 /*
1056 * This code is triggered unconditionally. Check the affinity
1057 * mask pointer. For CPU_MASK_OFFSTACK=n this is optimized out.
1058 */
1059 if (cpumask_available(desc->irq_common_data.affinity)) {
1060 const struct cpumask *m;
1061
1062 m = irq_data_get_effective_affinity_mask(&desc->irq_data);
1063 cpumask_copy(mask, m);
1064 } else {
1065 valid = false;
1066 }
1067 raw_spin_unlock_irq(&desc->lock);
1068
1069 if (valid)
1070 set_cpus_allowed_ptr(current, mask);
1071 free_cpumask_var(mask);
1072}
1073#else
1074static inline void
1075irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action) { }
1076#endif
1077
1078/*
David Brazdil0f672f62019-12-10 10:32:29 +00001079 * Interrupts which are not explicitly requested as threaded
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001080 * interrupts rely on the implicit bh/preempt disable of the hard irq
1081 * context. So we need to disable bh here to avoid deadlocks and other
1082 * side effects.
1083 */
1084static irqreturn_t
1085irq_forced_thread_fn(struct irq_desc *desc, struct irqaction *action)
1086{
1087 irqreturn_t ret;
1088
1089 local_bh_disable();
Olivier Deprez0e641232021-09-23 10:07:05 +02001090 if (!IS_ENABLED(CONFIG_PREEMPT_RT))
1091 local_irq_disable();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001092 ret = action->thread_fn(action->irq, action->dev_id);
1093 if (ret == IRQ_HANDLED)
1094 atomic_inc(&desc->threads_handled);
1095
1096 irq_finalize_oneshot(desc, action);
Olivier Deprez0e641232021-09-23 10:07:05 +02001097 if (!IS_ENABLED(CONFIG_PREEMPT_RT))
1098 local_irq_enable();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001099 local_bh_enable();
1100 return ret;
1101}
1102
1103/*
1104 * Interrupts explicitly requested as threaded interrupts want to be
1105 * preemtible - many of them need to sleep and wait for slow busses to
1106 * complete.
1107 */
1108static irqreturn_t irq_thread_fn(struct irq_desc *desc,
1109 struct irqaction *action)
1110{
1111 irqreturn_t ret;
1112
1113 ret = action->thread_fn(action->irq, action->dev_id);
1114 if (ret == IRQ_HANDLED)
1115 atomic_inc(&desc->threads_handled);
1116
1117 irq_finalize_oneshot(desc, action);
1118 return ret;
1119}
1120
1121static void wake_threads_waitq(struct irq_desc *desc)
1122{
1123 if (atomic_dec_and_test(&desc->threads_active))
1124 wake_up(&desc->wait_for_threads);
1125}
1126
1127static void irq_thread_dtor(struct callback_head *unused)
1128{
1129 struct task_struct *tsk = current;
1130 struct irq_desc *desc;
1131 struct irqaction *action;
1132
1133 if (WARN_ON_ONCE(!(current->flags & PF_EXITING)))
1134 return;
1135
1136 action = kthread_data(tsk);
1137
1138 pr_err("exiting task \"%s\" (%d) is an active IRQ thread (irq %d)\n",
1139 tsk->comm, tsk->pid, action->irq);
1140
1141
1142 desc = irq_to_desc(action->irq);
1143 /*
1144 * If IRQTF_RUNTHREAD is set, we need to decrement
1145 * desc->threads_active and wake possible waiters.
1146 */
1147 if (test_and_clear_bit(IRQTF_RUNTHREAD, &action->thread_flags))
1148 wake_threads_waitq(desc);
1149
1150 /* Prevent a stale desc->threads_oneshot */
1151 irq_finalize_oneshot(desc, action);
1152}
1153
1154static void irq_wake_secondary(struct irq_desc *desc, struct irqaction *action)
1155{
1156 struct irqaction *secondary = action->secondary;
1157
1158 if (WARN_ON_ONCE(!secondary))
1159 return;
1160
1161 raw_spin_lock_irq(&desc->lock);
1162 __irq_wake_thread(desc, secondary);
1163 raw_spin_unlock_irq(&desc->lock);
1164}
1165
1166/*
Olivier Deprez92d4c212022-12-06 15:05:30 +01001167 * Internal function to notify that a interrupt thread is ready.
1168 */
1169static void irq_thread_set_ready(struct irq_desc *desc,
1170 struct irqaction *action)
1171{
1172 set_bit(IRQTF_READY, &action->thread_flags);
1173 wake_up(&desc->wait_for_threads);
1174}
1175
1176/*
1177 * Internal function to wake up a interrupt thread and wait until it is
1178 * ready.
1179 */
1180static void wake_up_and_wait_for_irq_thread_ready(struct irq_desc *desc,
1181 struct irqaction *action)
1182{
1183 if (!action || !action->thread)
1184 return;
1185
1186 wake_up_process(action->thread);
1187 wait_event(desc->wait_for_threads,
1188 test_bit(IRQTF_READY, &action->thread_flags));
1189}
1190
1191/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001192 * Interrupt handler thread
1193 */
1194static int irq_thread(void *data)
1195{
1196 struct callback_head on_exit_work;
1197 struct irqaction *action = data;
1198 struct irq_desc *desc = irq_to_desc(action->irq);
1199 irqreturn_t (*handler_fn)(struct irq_desc *desc,
1200 struct irqaction *action);
1201
Olivier Deprez92d4c212022-12-06 15:05:30 +01001202 irq_thread_set_ready(desc, action);
1203
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001204 if (force_irqthreads && test_bit(IRQTF_FORCED_THREAD,
1205 &action->thread_flags))
1206 handler_fn = irq_forced_thread_fn;
1207 else
1208 handler_fn = irq_thread_fn;
1209
1210 init_task_work(&on_exit_work, irq_thread_dtor);
Olivier Deprez157378f2022-04-04 15:47:50 +02001211 task_work_add(current, &on_exit_work, TWA_NONE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001212
1213 irq_thread_check_affinity(desc, action);
1214
1215 while (!irq_wait_for_interrupt(action)) {
1216 irqreturn_t action_ret;
1217
1218 irq_thread_check_affinity(desc, action);
1219
1220 action_ret = handler_fn(desc, action);
1221 if (action_ret == IRQ_WAKE_THREAD)
1222 irq_wake_secondary(desc, action);
1223
1224 wake_threads_waitq(desc);
1225 }
1226
1227 /*
1228 * This is the regular exit path. __free_irq() is stopping the
1229 * thread via kthread_stop() after calling
1230 * synchronize_hardirq(). So neither IRQTF_RUNTHREAD nor the
1231 * oneshot mask bit can be set.
1232 */
1233 task_work_cancel(current, irq_thread_dtor);
1234 return 0;
1235}
1236
1237/**
1238 * irq_wake_thread - wake the irq thread for the action identified by dev_id
1239 * @irq: Interrupt line
1240 * @dev_id: Device identity for which the thread should be woken
1241 *
1242 */
1243void irq_wake_thread(unsigned int irq, void *dev_id)
1244{
1245 struct irq_desc *desc = irq_to_desc(irq);
1246 struct irqaction *action;
1247 unsigned long flags;
1248
1249 if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
1250 return;
1251
1252 raw_spin_lock_irqsave(&desc->lock, flags);
1253 for_each_action_of_desc(desc, action) {
1254 if (action->dev_id == dev_id) {
1255 if (action->thread)
1256 __irq_wake_thread(desc, action);
1257 break;
1258 }
1259 }
1260 raw_spin_unlock_irqrestore(&desc->lock, flags);
1261}
1262EXPORT_SYMBOL_GPL(irq_wake_thread);
1263
1264static int irq_setup_forced_threading(struct irqaction *new)
1265{
1266 if (!force_irqthreads)
1267 return 0;
1268 if (new->flags & (IRQF_NO_THREAD | IRQF_PERCPU | IRQF_ONESHOT))
1269 return 0;
1270
1271 /*
1272 * No further action required for interrupts which are requested as
1273 * threaded interrupts already
1274 */
1275 if (new->handler == irq_default_primary_handler)
1276 return 0;
1277
1278 new->flags |= IRQF_ONESHOT;
1279
1280 /*
1281 * Handle the case where we have a real primary handler and a
1282 * thread handler. We force thread them as well by creating a
1283 * secondary action.
1284 */
1285 if (new->handler && new->thread_fn) {
1286 /* Allocate the secondary action */
1287 new->secondary = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
1288 if (!new->secondary)
1289 return -ENOMEM;
1290 new->secondary->handler = irq_forced_secondary_handler;
1291 new->secondary->thread_fn = new->thread_fn;
1292 new->secondary->dev_id = new->dev_id;
1293 new->secondary->irq = new->irq;
1294 new->secondary->name = new->name;
1295 }
1296 /* Deal with the primary handler */
1297 set_bit(IRQTF_FORCED_THREAD, &new->thread_flags);
1298 new->thread_fn = new->handler;
1299 new->handler = irq_default_primary_handler;
1300 return 0;
1301}
1302
1303static int irq_request_resources(struct irq_desc *desc)
1304{
1305 struct irq_data *d = &desc->irq_data;
1306 struct irq_chip *c = d->chip;
1307
1308 return c->irq_request_resources ? c->irq_request_resources(d) : 0;
1309}
1310
1311static void irq_release_resources(struct irq_desc *desc)
1312{
1313 struct irq_data *d = &desc->irq_data;
1314 struct irq_chip *c = d->chip;
1315
1316 if (c->irq_release_resources)
1317 c->irq_release_resources(d);
1318}
1319
David Brazdil0f672f62019-12-10 10:32:29 +00001320static bool irq_supports_nmi(struct irq_desc *desc)
1321{
1322 struct irq_data *d = irq_desc_get_irq_data(desc);
1323
1324#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
1325 /* Only IRQs directly managed by the root irqchip can be set as NMI */
1326 if (d->parent_data)
1327 return false;
1328#endif
1329 /* Don't support NMIs for chips behind a slow bus */
1330 if (d->chip->irq_bus_lock || d->chip->irq_bus_sync_unlock)
1331 return false;
1332
1333 return d->chip->flags & IRQCHIP_SUPPORTS_NMI;
1334}
1335
1336static int irq_nmi_setup(struct irq_desc *desc)
1337{
1338 struct irq_data *d = irq_desc_get_irq_data(desc);
1339 struct irq_chip *c = d->chip;
1340
1341 return c->irq_nmi_setup ? c->irq_nmi_setup(d) : -EINVAL;
1342}
1343
1344static void irq_nmi_teardown(struct irq_desc *desc)
1345{
1346 struct irq_data *d = irq_desc_get_irq_data(desc);
1347 struct irq_chip *c = d->chip;
1348
1349 if (c->irq_nmi_teardown)
1350 c->irq_nmi_teardown(d);
1351}
1352
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001353static int
1354setup_irq_thread(struct irqaction *new, unsigned int irq, bool secondary)
1355{
1356 struct task_struct *t;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001357
1358 if (!secondary) {
1359 t = kthread_create(irq_thread, new, "irq/%d-%s", irq,
1360 new->name);
1361 } else {
1362 t = kthread_create(irq_thread, new, "irq/%d-s-%s", irq,
1363 new->name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001364 }
1365
1366 if (IS_ERR(t))
1367 return PTR_ERR(t);
1368
Olivier Deprez157378f2022-04-04 15:47:50 +02001369 sched_set_fifo(t);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001370
1371 /*
1372 * We keep the reference to the task struct even if
1373 * the thread dies to avoid that the interrupt code
1374 * references an already freed task_struct.
1375 */
David Brazdil0f672f62019-12-10 10:32:29 +00001376 new->thread = get_task_struct(t);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001377 /*
1378 * Tell the thread to set its affinity. This is
1379 * important for shared interrupt handlers as we do
1380 * not invoke setup_affinity() for the secondary
1381 * handlers as everything is already set up. Even for
1382 * interrupts marked with IRQF_NO_BALANCE this is
1383 * correct as we want the thread to move to the cpu(s)
1384 * on which the requesting code placed the interrupt.
1385 */
1386 set_bit(IRQTF_AFFINITY, &new->thread_flags);
1387 return 0;
1388}
1389
1390/*
1391 * Internal function to register an irqaction - typically used to
1392 * allocate special interrupts that are part of the architecture.
1393 *
1394 * Locking rules:
1395 *
1396 * desc->request_mutex Provides serialization against a concurrent free_irq()
1397 * chip_bus_lock Provides serialization for slow bus operations
1398 * desc->lock Provides serialization against hard interrupts
1399 *
1400 * chip_bus_lock and desc->lock are sufficient for all other management and
1401 * interrupt related functions. desc->request_mutex solely serializes
1402 * request/free_irq().
1403 */
1404static int
1405__setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
1406{
1407 struct irqaction *old, **old_ptr;
1408 unsigned long flags, thread_mask = 0;
1409 int ret, nested, shared = 0;
1410
1411 if (!desc)
1412 return -EINVAL;
1413
1414 if (desc->irq_data.chip == &no_irq_chip)
1415 return -ENOSYS;
1416 if (!try_module_get(desc->owner))
1417 return -ENODEV;
1418
1419 new->irq = irq;
1420
1421 /*
1422 * If the trigger type is not specified by the caller,
1423 * then use the default for this interrupt.
1424 */
1425 if (!(new->flags & IRQF_TRIGGER_MASK))
1426 new->flags |= irqd_get_trigger_type(&desc->irq_data);
1427
1428 /*
1429 * Check whether the interrupt nests into another interrupt
1430 * thread.
1431 */
1432 nested = irq_settings_is_nested_thread(desc);
1433 if (nested) {
1434 if (!new->thread_fn) {
1435 ret = -EINVAL;
1436 goto out_mput;
1437 }
1438 /*
1439 * Replace the primary handler which was provided from
1440 * the driver for non nested interrupt handling by the
1441 * dummy function which warns when called.
1442 */
1443 new->handler = irq_nested_primary_handler;
1444 } else {
1445 if (irq_settings_can_thread(desc)) {
1446 ret = irq_setup_forced_threading(new);
1447 if (ret)
1448 goto out_mput;
1449 }
1450 }
1451
1452 /*
1453 * Create a handler thread when a thread function is supplied
1454 * and the interrupt does not nest into another interrupt
1455 * thread.
1456 */
1457 if (new->thread_fn && !nested) {
1458 ret = setup_irq_thread(new, irq, false);
1459 if (ret)
1460 goto out_mput;
1461 if (new->secondary) {
1462 ret = setup_irq_thread(new->secondary, irq, true);
1463 if (ret)
1464 goto out_thread;
1465 }
1466 }
1467
1468 /*
1469 * Drivers are often written to work w/o knowledge about the
1470 * underlying irq chip implementation, so a request for a
1471 * threaded irq without a primary hard irq context handler
1472 * requires the ONESHOT flag to be set. Some irq chips like
1473 * MSI based interrupts are per se one shot safe. Check the
1474 * chip flags, so we can avoid the unmask dance at the end of
1475 * the threaded handler for those.
1476 */
1477 if (desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)
1478 new->flags &= ~IRQF_ONESHOT;
1479
1480 /*
1481 * Protects against a concurrent __free_irq() call which might wait
1482 * for synchronize_hardirq() to complete without holding the optional
1483 * chip bus lock and desc->lock. Also protects against handing out
1484 * a recycled oneshot thread_mask bit while it's still in use by
1485 * its previous owner.
1486 */
1487 mutex_lock(&desc->request_mutex);
1488
1489 /*
1490 * Acquire bus lock as the irq_request_resources() callback below
1491 * might rely on the serialization or the magic power management
1492 * functions which are abusing the irq_bus_lock() callback,
1493 */
1494 chip_bus_lock(desc);
1495
1496 /* First installed action requests resources. */
1497 if (!desc->action) {
1498 ret = irq_request_resources(desc);
1499 if (ret) {
1500 pr_err("Failed to request resources for %s (irq %d) on irqchip %s\n",
1501 new->name, irq, desc->irq_data.chip->name);
1502 goto out_bus_unlock;
1503 }
1504 }
1505
1506 /*
1507 * The following block of code has to be executed atomically
1508 * protected against a concurrent interrupt and any of the other
1509 * management calls which are not serialized via
1510 * desc->request_mutex or the optional bus lock.
1511 */
1512 raw_spin_lock_irqsave(&desc->lock, flags);
1513 old_ptr = &desc->action;
1514 old = *old_ptr;
1515 if (old) {
1516 /*
1517 * Can't share interrupts unless both agree to and are
1518 * the same type (level, edge, polarity). So both flag
1519 * fields must have IRQF_SHARED set and the bits which
1520 * set the trigger type must match. Also all must
1521 * agree on ONESHOT.
David Brazdil0f672f62019-12-10 10:32:29 +00001522 * Interrupt lines used for NMIs cannot be shared.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001523 */
1524 unsigned int oldtype;
1525
David Brazdil0f672f62019-12-10 10:32:29 +00001526 if (desc->istate & IRQS_NMI) {
1527 pr_err("Invalid attempt to share NMI for %s (irq %d) on irqchip %s.\n",
1528 new->name, irq, desc->irq_data.chip->name);
1529 ret = -EINVAL;
1530 goto out_unlock;
1531 }
1532
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001533 /*
1534 * If nobody did set the configuration before, inherit
1535 * the one provided by the requester.
1536 */
1537 if (irqd_trigger_type_was_set(&desc->irq_data)) {
1538 oldtype = irqd_get_trigger_type(&desc->irq_data);
1539 } else {
1540 oldtype = new->flags & IRQF_TRIGGER_MASK;
1541 irqd_set_trigger_type(&desc->irq_data, oldtype);
1542 }
1543
1544 if (!((old->flags & new->flags) & IRQF_SHARED) ||
1545 (oldtype != (new->flags & IRQF_TRIGGER_MASK)) ||
1546 ((old->flags ^ new->flags) & IRQF_ONESHOT))
1547 goto mismatch;
1548
1549 /* All handlers must agree on per-cpuness */
1550 if ((old->flags & IRQF_PERCPU) !=
1551 (new->flags & IRQF_PERCPU))
1552 goto mismatch;
1553
1554 /* add new interrupt at end of irq queue */
1555 do {
1556 /*
1557 * Or all existing action->thread_mask bits,
1558 * so we can find the next zero bit for this
1559 * new action.
1560 */
1561 thread_mask |= old->thread_mask;
1562 old_ptr = &old->next;
1563 old = *old_ptr;
1564 } while (old);
1565 shared = 1;
1566 }
1567
1568 /*
1569 * Setup the thread mask for this irqaction for ONESHOT. For
1570 * !ONESHOT irqs the thread mask is 0 so we can avoid a
1571 * conditional in irq_wake_thread().
1572 */
1573 if (new->flags & IRQF_ONESHOT) {
1574 /*
1575 * Unlikely to have 32 resp 64 irqs sharing one line,
1576 * but who knows.
1577 */
1578 if (thread_mask == ~0UL) {
1579 ret = -EBUSY;
1580 goto out_unlock;
1581 }
1582 /*
1583 * The thread_mask for the action is or'ed to
1584 * desc->thread_active to indicate that the
1585 * IRQF_ONESHOT thread handler has been woken, but not
1586 * yet finished. The bit is cleared when a thread
1587 * completes. When all threads of a shared interrupt
1588 * line have completed desc->threads_active becomes
1589 * zero and the interrupt line is unmasked. See
1590 * handle.c:irq_wake_thread() for further information.
1591 *
1592 * If no thread is woken by primary (hard irq context)
1593 * interrupt handlers, then desc->threads_active is
1594 * also checked for zero to unmask the irq line in the
1595 * affected hard irq flow handlers
1596 * (handle_[fasteoi|level]_irq).
1597 *
1598 * The new action gets the first zero bit of
1599 * thread_mask assigned. See the loop above which or's
1600 * all existing action->thread_mask bits.
1601 */
1602 new->thread_mask = 1UL << ffz(thread_mask);
1603
1604 } else if (new->handler == irq_default_primary_handler &&
1605 !(desc->irq_data.chip->flags & IRQCHIP_ONESHOT_SAFE)) {
1606 /*
1607 * The interrupt was requested with handler = NULL, so
1608 * we use the default primary handler for it. But it
1609 * does not have the oneshot flag set. In combination
1610 * with level interrupts this is deadly, because the
1611 * default primary handler just wakes the thread, then
1612 * the irq lines is reenabled, but the device still
1613 * has the level irq asserted. Rinse and repeat....
1614 *
1615 * While this works for edge type interrupts, we play
1616 * it safe and reject unconditionally because we can't
1617 * say for sure which type this interrupt really
1618 * has. The type flags are unreliable as the
1619 * underlying chip implementation can override them.
1620 */
Olivier Deprez157378f2022-04-04 15:47:50 +02001621 pr_err("Threaded irq requested with handler=NULL and !ONESHOT for %s (irq %d)\n",
1622 new->name, irq);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001623 ret = -EINVAL;
1624 goto out_unlock;
1625 }
1626
1627 if (!shared) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001628 /* Setup the type (level, edge polarity) if configured: */
1629 if (new->flags & IRQF_TRIGGER_MASK) {
1630 ret = __irq_set_trigger(desc,
1631 new->flags & IRQF_TRIGGER_MASK);
1632
1633 if (ret)
1634 goto out_unlock;
1635 }
1636
1637 /*
1638 * Activate the interrupt. That activation must happen
1639 * independently of IRQ_NOAUTOEN. request_irq() can fail
1640 * and the callers are supposed to handle
1641 * that. enable_irq() of an interrupt requested with
1642 * IRQ_NOAUTOEN is not supposed to fail. The activation
1643 * keeps it in shutdown mode, it merily associates
1644 * resources if necessary and if that's not possible it
1645 * fails. Interrupts which are in managed shutdown mode
1646 * will simply ignore that activation request.
1647 */
1648 ret = irq_activate(desc);
1649 if (ret)
1650 goto out_unlock;
1651
1652 desc->istate &= ~(IRQS_AUTODETECT | IRQS_SPURIOUS_DISABLED | \
1653 IRQS_ONESHOT | IRQS_WAITING);
1654 irqd_clear(&desc->irq_data, IRQD_IRQ_INPROGRESS);
1655
1656 if (new->flags & IRQF_PERCPU) {
1657 irqd_set(&desc->irq_data, IRQD_PER_CPU);
1658 irq_settings_set_per_cpu(desc);
1659 }
1660
1661 if (new->flags & IRQF_ONESHOT)
1662 desc->istate |= IRQS_ONESHOT;
1663
1664 /* Exclude IRQ from balancing if requested */
1665 if (new->flags & IRQF_NOBALANCING) {
1666 irq_settings_set_no_balancing(desc);
1667 irqd_set(&desc->irq_data, IRQD_NO_BALANCING);
1668 }
1669
1670 if (irq_settings_can_autoenable(desc)) {
1671 irq_startup(desc, IRQ_RESEND, IRQ_START_COND);
1672 } else {
1673 /*
1674 * Shared interrupts do not go well with disabling
1675 * auto enable. The sharing interrupt might request
1676 * it while it's still disabled and then wait for
1677 * interrupts forever.
1678 */
1679 WARN_ON_ONCE(new->flags & IRQF_SHARED);
1680 /* Undo nested disables: */
1681 desc->depth = 1;
1682 }
1683
1684 } else if (new->flags & IRQF_TRIGGER_MASK) {
1685 unsigned int nmsk = new->flags & IRQF_TRIGGER_MASK;
1686 unsigned int omsk = irqd_get_trigger_type(&desc->irq_data);
1687
1688 if (nmsk != omsk)
1689 /* hope the handler works with current trigger mode */
1690 pr_warn("irq %d uses trigger mode %u; requested %u\n",
1691 irq, omsk, nmsk);
1692 }
1693
1694 *old_ptr = new;
1695
1696 irq_pm_install_action(desc, new);
1697
1698 /* Reset broken irq detection when installing new handler */
1699 desc->irq_count = 0;
1700 desc->irqs_unhandled = 0;
1701
1702 /*
1703 * Check whether we disabled the irq via the spurious handler
1704 * before. Reenable it and give it another chance.
1705 */
1706 if (shared && (desc->istate & IRQS_SPURIOUS_DISABLED)) {
1707 desc->istate &= ~IRQS_SPURIOUS_DISABLED;
1708 __enable_irq(desc);
1709 }
1710
1711 raw_spin_unlock_irqrestore(&desc->lock, flags);
1712 chip_bus_sync_unlock(desc);
1713 mutex_unlock(&desc->request_mutex);
1714
1715 irq_setup_timings(desc, new);
1716
Olivier Deprez92d4c212022-12-06 15:05:30 +01001717 wake_up_and_wait_for_irq_thread_ready(desc, new);
1718 wake_up_and_wait_for_irq_thread_ready(desc, new->secondary);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001719
1720 register_irq_proc(irq, desc);
1721 new->dir = NULL;
1722 register_handler_proc(irq, new);
1723 return 0;
1724
1725mismatch:
1726 if (!(new->flags & IRQF_PROBE_SHARED)) {
1727 pr_err("Flags mismatch irq %d. %08x (%s) vs. %08x (%s)\n",
1728 irq, new->flags, new->name, old->flags, old->name);
1729#ifdef CONFIG_DEBUG_SHIRQ
1730 dump_stack();
1731#endif
1732 }
1733 ret = -EBUSY;
1734
1735out_unlock:
1736 raw_spin_unlock_irqrestore(&desc->lock, flags);
1737
1738 if (!desc->action)
1739 irq_release_resources(desc);
1740out_bus_unlock:
1741 chip_bus_sync_unlock(desc);
1742 mutex_unlock(&desc->request_mutex);
1743
1744out_thread:
1745 if (new->thread) {
1746 struct task_struct *t = new->thread;
1747
1748 new->thread = NULL;
1749 kthread_stop(t);
1750 put_task_struct(t);
1751 }
1752 if (new->secondary && new->secondary->thread) {
1753 struct task_struct *t = new->secondary->thread;
1754
1755 new->secondary->thread = NULL;
1756 kthread_stop(t);
1757 put_task_struct(t);
1758 }
1759out_mput:
1760 module_put(desc->owner);
1761 return ret;
1762}
1763
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001764/*
1765 * Internal function to unregister an irqaction - used to free
1766 * regular and special interrupts that are part of the architecture.
1767 */
1768static struct irqaction *__free_irq(struct irq_desc *desc, void *dev_id)
1769{
1770 unsigned irq = desc->irq_data.irq;
1771 struct irqaction *action, **action_ptr;
1772 unsigned long flags;
1773
1774 WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
1775
1776 mutex_lock(&desc->request_mutex);
1777 chip_bus_lock(desc);
1778 raw_spin_lock_irqsave(&desc->lock, flags);
1779
1780 /*
1781 * There can be multiple actions per IRQ descriptor, find the right
1782 * one based on the dev_id:
1783 */
1784 action_ptr = &desc->action;
1785 for (;;) {
1786 action = *action_ptr;
1787
1788 if (!action) {
1789 WARN(1, "Trying to free already-free IRQ %d\n", irq);
1790 raw_spin_unlock_irqrestore(&desc->lock, flags);
1791 chip_bus_sync_unlock(desc);
1792 mutex_unlock(&desc->request_mutex);
1793 return NULL;
1794 }
1795
1796 if (action->dev_id == dev_id)
1797 break;
1798 action_ptr = &action->next;
1799 }
1800
1801 /* Found it - now remove it from the list of entries: */
1802 *action_ptr = action->next;
1803
1804 irq_pm_remove_action(desc, action);
1805
1806 /* If this was the last handler, shut down the IRQ line: */
1807 if (!desc->action) {
1808 irq_settings_clr_disable_unlazy(desc);
David Brazdil0f672f62019-12-10 10:32:29 +00001809 /* Only shutdown. Deactivate after synchronize_hardirq() */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001810 irq_shutdown(desc);
1811 }
1812
1813#ifdef CONFIG_SMP
1814 /* make sure affinity_hint is cleaned up */
1815 if (WARN_ON_ONCE(desc->affinity_hint))
1816 desc->affinity_hint = NULL;
1817#endif
1818
1819 raw_spin_unlock_irqrestore(&desc->lock, flags);
1820 /*
1821 * Drop bus_lock here so the changes which were done in the chip
1822 * callbacks above are synced out to the irq chips which hang
1823 * behind a slow bus (I2C, SPI) before calling synchronize_hardirq().
1824 *
1825 * Aside of that the bus_lock can also be taken from the threaded
1826 * handler in irq_finalize_oneshot() which results in a deadlock
1827 * because kthread_stop() would wait forever for the thread to
1828 * complete, which is blocked on the bus lock.
1829 *
1830 * The still held desc->request_mutex() protects against a
1831 * concurrent request_irq() of this irq so the release of resources
1832 * and timing data is properly serialized.
1833 */
1834 chip_bus_sync_unlock(desc);
1835
1836 unregister_handler_proc(irq, action);
1837
David Brazdil0f672f62019-12-10 10:32:29 +00001838 /*
1839 * Make sure it's not being used on another CPU and if the chip
1840 * supports it also make sure that there is no (not yet serviced)
1841 * interrupt in flight at the hardware level.
1842 */
1843 __synchronize_hardirq(desc, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001844
1845#ifdef CONFIG_DEBUG_SHIRQ
1846 /*
1847 * It's a shared IRQ -- the driver ought to be prepared for an IRQ
1848 * event to happen even now it's being freed, so let's make sure that
1849 * is so by doing an extra call to the handler ....
1850 *
1851 * ( We do this after actually deregistering it, to make sure that a
1852 * 'real' IRQ doesn't run in parallel with our fake. )
1853 */
1854 if (action->flags & IRQF_SHARED) {
1855 local_irq_save(flags);
1856 action->handler(irq, dev_id);
1857 local_irq_restore(flags);
1858 }
1859#endif
1860
1861 /*
1862 * The action has already been removed above, but the thread writes
1863 * its oneshot mask bit when it completes. Though request_mutex is
1864 * held across this which prevents __setup_irq() from handing out
1865 * the same bit to a newly requested action.
1866 */
1867 if (action->thread) {
1868 kthread_stop(action->thread);
1869 put_task_struct(action->thread);
1870 if (action->secondary && action->secondary->thread) {
1871 kthread_stop(action->secondary->thread);
1872 put_task_struct(action->secondary->thread);
1873 }
1874 }
1875
1876 /* Last action releases resources */
1877 if (!desc->action) {
1878 /*
1879 * Reaquire bus lock as irq_release_resources() might
1880 * require it to deallocate resources over the slow bus.
1881 */
1882 chip_bus_lock(desc);
David Brazdil0f672f62019-12-10 10:32:29 +00001883 /*
1884 * There is no interrupt on the fly anymore. Deactivate it
1885 * completely.
1886 */
1887 raw_spin_lock_irqsave(&desc->lock, flags);
1888 irq_domain_deactivate_irq(&desc->irq_data);
1889 raw_spin_unlock_irqrestore(&desc->lock, flags);
1890
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001891 irq_release_resources(desc);
1892 chip_bus_sync_unlock(desc);
1893 irq_remove_timings(desc);
1894 }
1895
1896 mutex_unlock(&desc->request_mutex);
1897
1898 irq_chip_pm_put(&desc->irq_data);
1899 module_put(desc->owner);
1900 kfree(action->secondary);
1901 return action;
1902}
1903
1904/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001905 * free_irq - free an interrupt allocated with request_irq
1906 * @irq: Interrupt line to free
1907 * @dev_id: Device identity to free
1908 *
1909 * Remove an interrupt handler. The handler is removed and if the
1910 * interrupt line is no longer in use by any driver it is disabled.
1911 * On a shared IRQ the caller must ensure the interrupt is disabled
1912 * on the card it drives before calling this function. The function
1913 * does not return until any executing interrupts for this IRQ
1914 * have completed.
1915 *
1916 * This function must not be called from interrupt context.
1917 *
1918 * Returns the devname argument passed to request_irq.
1919 */
1920const void *free_irq(unsigned int irq, void *dev_id)
1921{
1922 struct irq_desc *desc = irq_to_desc(irq);
1923 struct irqaction *action;
1924 const char *devname;
1925
1926 if (!desc || WARN_ON(irq_settings_is_per_cpu_devid(desc)))
1927 return NULL;
1928
1929#ifdef CONFIG_SMP
1930 if (WARN_ON(desc->affinity_notify))
1931 desc->affinity_notify = NULL;
1932#endif
1933
1934 action = __free_irq(desc, dev_id);
1935
1936 if (!action)
1937 return NULL;
1938
1939 devname = action->name;
1940 kfree(action);
1941 return devname;
1942}
1943EXPORT_SYMBOL(free_irq);
1944
David Brazdil0f672f62019-12-10 10:32:29 +00001945/* This function must be called with desc->lock held */
1946static const void *__cleanup_nmi(unsigned int irq, struct irq_desc *desc)
1947{
1948 const char *devname = NULL;
1949
1950 desc->istate &= ~IRQS_NMI;
1951
1952 if (!WARN_ON(desc->action == NULL)) {
1953 irq_pm_remove_action(desc, desc->action);
1954 devname = desc->action->name;
1955 unregister_handler_proc(irq, desc->action);
1956
1957 kfree(desc->action);
1958 desc->action = NULL;
1959 }
1960
1961 irq_settings_clr_disable_unlazy(desc);
1962 irq_shutdown_and_deactivate(desc);
1963
1964 irq_release_resources(desc);
1965
1966 irq_chip_pm_put(&desc->irq_data);
1967 module_put(desc->owner);
1968
1969 return devname;
1970}
1971
1972const void *free_nmi(unsigned int irq, void *dev_id)
1973{
1974 struct irq_desc *desc = irq_to_desc(irq);
1975 unsigned long flags;
1976 const void *devname;
1977
1978 if (!desc || WARN_ON(!(desc->istate & IRQS_NMI)))
1979 return NULL;
1980
1981 if (WARN_ON(irq_settings_is_per_cpu_devid(desc)))
1982 return NULL;
1983
1984 /* NMI still enabled */
1985 if (WARN_ON(desc->depth == 0))
1986 disable_nmi_nosync(irq);
1987
1988 raw_spin_lock_irqsave(&desc->lock, flags);
1989
1990 irq_nmi_teardown(desc);
1991 devname = __cleanup_nmi(irq, desc);
1992
1993 raw_spin_unlock_irqrestore(&desc->lock, flags);
1994
1995 return devname;
1996}
1997
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001998/**
1999 * request_threaded_irq - allocate an interrupt line
2000 * @irq: Interrupt line to allocate
2001 * @handler: Function to be called when the IRQ occurs.
2002 * Primary handler for threaded interrupts
2003 * If NULL and thread_fn != NULL the default
2004 * primary handler is installed
2005 * @thread_fn: Function called from the irq handler thread
2006 * If NULL, no irq thread is created
2007 * @irqflags: Interrupt type flags
2008 * @devname: An ascii name for the claiming device
2009 * @dev_id: A cookie passed back to the handler function
2010 *
2011 * This call allocates interrupt resources and enables the
2012 * interrupt line and IRQ handling. From the point this
2013 * call is made your handler function may be invoked. Since
2014 * your handler function must clear any interrupt the board
2015 * raises, you must take care both to initialise your hardware
2016 * and to set up the interrupt handler in the right order.
2017 *
2018 * If you want to set up a threaded irq handler for your device
2019 * then you need to supply @handler and @thread_fn. @handler is
2020 * still called in hard interrupt context and has to check
2021 * whether the interrupt originates from the device. If yes it
2022 * needs to disable the interrupt on the device and return
2023 * IRQ_WAKE_THREAD which will wake up the handler thread and run
2024 * @thread_fn. This split handler design is necessary to support
2025 * shared interrupts.
2026 *
2027 * Dev_id must be globally unique. Normally the address of the
2028 * device data structure is used as the cookie. Since the handler
2029 * receives this value it makes sense to use it.
2030 *
2031 * If your interrupt is shared you must pass a non NULL dev_id
2032 * as this is required when freeing the interrupt.
2033 *
2034 * Flags:
2035 *
2036 * IRQF_SHARED Interrupt is shared
2037 * IRQF_TRIGGER_* Specify active edge(s) or level
2038 *
2039 */
2040int request_threaded_irq(unsigned int irq, irq_handler_t handler,
2041 irq_handler_t thread_fn, unsigned long irqflags,
2042 const char *devname, void *dev_id)
2043{
2044 struct irqaction *action;
2045 struct irq_desc *desc;
2046 int retval;
2047
2048 if (irq == IRQ_NOTCONNECTED)
2049 return -ENOTCONN;
2050
2051 /*
2052 * Sanity-check: shared interrupts must pass in a real dev-ID,
2053 * otherwise we'll have trouble later trying to figure out
2054 * which interrupt is which (messes up the interrupt freeing
2055 * logic etc).
2056 *
2057 * Also IRQF_COND_SUSPEND only makes sense for shared interrupts and
2058 * it cannot be set along with IRQF_NO_SUSPEND.
2059 */
2060 if (((irqflags & IRQF_SHARED) && !dev_id) ||
2061 (!(irqflags & IRQF_SHARED) && (irqflags & IRQF_COND_SUSPEND)) ||
2062 ((irqflags & IRQF_NO_SUSPEND) && (irqflags & IRQF_COND_SUSPEND)))
2063 return -EINVAL;
2064
2065 desc = irq_to_desc(irq);
2066 if (!desc)
2067 return -EINVAL;
2068
2069 if (!irq_settings_can_request(desc) ||
2070 WARN_ON(irq_settings_is_per_cpu_devid(desc)))
2071 return -EINVAL;
2072
2073 if (!handler) {
2074 if (!thread_fn)
2075 return -EINVAL;
2076 handler = irq_default_primary_handler;
2077 }
2078
2079 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
2080 if (!action)
2081 return -ENOMEM;
2082
2083 action->handler = handler;
2084 action->thread_fn = thread_fn;
2085 action->flags = irqflags;
2086 action->name = devname;
2087 action->dev_id = dev_id;
2088
2089 retval = irq_chip_pm_get(&desc->irq_data);
2090 if (retval < 0) {
2091 kfree(action);
2092 return retval;
2093 }
2094
2095 retval = __setup_irq(irq, desc, action);
2096
2097 if (retval) {
2098 irq_chip_pm_put(&desc->irq_data);
2099 kfree(action->secondary);
2100 kfree(action);
2101 }
2102
2103#ifdef CONFIG_DEBUG_SHIRQ_FIXME
2104 if (!retval && (irqflags & IRQF_SHARED)) {
2105 /*
2106 * It's a shared IRQ -- the driver ought to be prepared for it
2107 * to happen immediately, so let's make sure....
2108 * We disable the irq to make sure that a 'real' IRQ doesn't
2109 * run in parallel with our fake.
2110 */
2111 unsigned long flags;
2112
2113 disable_irq(irq);
2114 local_irq_save(flags);
2115
2116 handler(irq, dev_id);
2117
2118 local_irq_restore(flags);
2119 enable_irq(irq);
2120 }
2121#endif
2122 return retval;
2123}
2124EXPORT_SYMBOL(request_threaded_irq);
2125
2126/**
2127 * request_any_context_irq - allocate an interrupt line
2128 * @irq: Interrupt line to allocate
2129 * @handler: Function to be called when the IRQ occurs.
2130 * Threaded handler for threaded interrupts.
2131 * @flags: Interrupt type flags
2132 * @name: An ascii name for the claiming device
2133 * @dev_id: A cookie passed back to the handler function
2134 *
2135 * This call allocates interrupt resources and enables the
2136 * interrupt line and IRQ handling. It selects either a
2137 * hardirq or threaded handling method depending on the
2138 * context.
2139 *
2140 * On failure, it returns a negative value. On success,
2141 * it returns either IRQC_IS_HARDIRQ or IRQC_IS_NESTED.
2142 */
2143int request_any_context_irq(unsigned int irq, irq_handler_t handler,
2144 unsigned long flags, const char *name, void *dev_id)
2145{
2146 struct irq_desc *desc;
2147 int ret;
2148
2149 if (irq == IRQ_NOTCONNECTED)
2150 return -ENOTCONN;
2151
2152 desc = irq_to_desc(irq);
2153 if (!desc)
2154 return -EINVAL;
2155
2156 if (irq_settings_is_nested_thread(desc)) {
2157 ret = request_threaded_irq(irq, NULL, handler,
2158 flags, name, dev_id);
2159 return !ret ? IRQC_IS_NESTED : ret;
2160 }
2161
2162 ret = request_irq(irq, handler, flags, name, dev_id);
2163 return !ret ? IRQC_IS_HARDIRQ : ret;
2164}
2165EXPORT_SYMBOL_GPL(request_any_context_irq);
2166
David Brazdil0f672f62019-12-10 10:32:29 +00002167/**
2168 * request_nmi - allocate an interrupt line for NMI delivery
2169 * @irq: Interrupt line to allocate
2170 * @handler: Function to be called when the IRQ occurs.
2171 * Threaded handler for threaded interrupts.
2172 * @irqflags: Interrupt type flags
2173 * @name: An ascii name for the claiming device
2174 * @dev_id: A cookie passed back to the handler function
2175 *
2176 * This call allocates interrupt resources and enables the
2177 * interrupt line and IRQ handling. It sets up the IRQ line
2178 * to be handled as an NMI.
2179 *
2180 * An interrupt line delivering NMIs cannot be shared and IRQ handling
2181 * cannot be threaded.
2182 *
2183 * Interrupt lines requested for NMI delivering must produce per cpu
2184 * interrupts and have auto enabling setting disabled.
2185 *
2186 * Dev_id must be globally unique. Normally the address of the
2187 * device data structure is used as the cookie. Since the handler
2188 * receives this value it makes sense to use it.
2189 *
2190 * If the interrupt line cannot be used to deliver NMIs, function
2191 * will fail and return a negative value.
2192 */
2193int request_nmi(unsigned int irq, irq_handler_t handler,
2194 unsigned long irqflags, const char *name, void *dev_id)
2195{
2196 struct irqaction *action;
2197 struct irq_desc *desc;
2198 unsigned long flags;
2199 int retval;
2200
2201 if (irq == IRQ_NOTCONNECTED)
2202 return -ENOTCONN;
2203
2204 /* NMI cannot be shared, used for Polling */
2205 if (irqflags & (IRQF_SHARED | IRQF_COND_SUSPEND | IRQF_IRQPOLL))
2206 return -EINVAL;
2207
2208 if (!(irqflags & IRQF_PERCPU))
2209 return -EINVAL;
2210
2211 if (!handler)
2212 return -EINVAL;
2213
2214 desc = irq_to_desc(irq);
2215
2216 if (!desc || irq_settings_can_autoenable(desc) ||
2217 !irq_settings_can_request(desc) ||
2218 WARN_ON(irq_settings_is_per_cpu_devid(desc)) ||
2219 !irq_supports_nmi(desc))
2220 return -EINVAL;
2221
2222 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
2223 if (!action)
2224 return -ENOMEM;
2225
2226 action->handler = handler;
2227 action->flags = irqflags | IRQF_NO_THREAD | IRQF_NOBALANCING;
2228 action->name = name;
2229 action->dev_id = dev_id;
2230
2231 retval = irq_chip_pm_get(&desc->irq_data);
2232 if (retval < 0)
2233 goto err_out;
2234
2235 retval = __setup_irq(irq, desc, action);
2236 if (retval)
2237 goto err_irq_setup;
2238
2239 raw_spin_lock_irqsave(&desc->lock, flags);
2240
2241 /* Setup NMI state */
2242 desc->istate |= IRQS_NMI;
2243 retval = irq_nmi_setup(desc);
2244 if (retval) {
2245 __cleanup_nmi(irq, desc);
2246 raw_spin_unlock_irqrestore(&desc->lock, flags);
2247 return -EINVAL;
2248 }
2249
2250 raw_spin_unlock_irqrestore(&desc->lock, flags);
2251
2252 return 0;
2253
2254err_irq_setup:
2255 irq_chip_pm_put(&desc->irq_data);
2256err_out:
2257 kfree(action);
2258
2259 return retval;
2260}
2261
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002262void enable_percpu_irq(unsigned int irq, unsigned int type)
2263{
2264 unsigned int cpu = smp_processor_id();
2265 unsigned long flags;
2266 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
2267
2268 if (!desc)
2269 return;
2270
2271 /*
2272 * If the trigger type is not specified by the caller, then
2273 * use the default for this interrupt.
2274 */
2275 type &= IRQ_TYPE_SENSE_MASK;
2276 if (type == IRQ_TYPE_NONE)
2277 type = irqd_get_trigger_type(&desc->irq_data);
2278
2279 if (type != IRQ_TYPE_NONE) {
2280 int ret;
2281
2282 ret = __irq_set_trigger(desc, type);
2283
2284 if (ret) {
2285 WARN(1, "failed to set type for IRQ%d\n", irq);
2286 goto out;
2287 }
2288 }
2289
2290 irq_percpu_enable(desc, cpu);
2291out:
2292 irq_put_desc_unlock(desc, flags);
2293}
2294EXPORT_SYMBOL_GPL(enable_percpu_irq);
2295
David Brazdil0f672f62019-12-10 10:32:29 +00002296void enable_percpu_nmi(unsigned int irq, unsigned int type)
2297{
2298 enable_percpu_irq(irq, type);
2299}
2300
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002301/**
2302 * irq_percpu_is_enabled - Check whether the per cpu irq is enabled
2303 * @irq: Linux irq number to check for
2304 *
2305 * Must be called from a non migratable context. Returns the enable
2306 * state of a per cpu interrupt on the current cpu.
2307 */
2308bool irq_percpu_is_enabled(unsigned int irq)
2309{
2310 unsigned int cpu = smp_processor_id();
2311 struct irq_desc *desc;
2312 unsigned long flags;
2313 bool is_enabled;
2314
2315 desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
2316 if (!desc)
2317 return false;
2318
2319 is_enabled = cpumask_test_cpu(cpu, desc->percpu_enabled);
2320 irq_put_desc_unlock(desc, flags);
2321
2322 return is_enabled;
2323}
2324EXPORT_SYMBOL_GPL(irq_percpu_is_enabled);
2325
2326void disable_percpu_irq(unsigned int irq)
2327{
2328 unsigned int cpu = smp_processor_id();
2329 unsigned long flags;
2330 struct irq_desc *desc = irq_get_desc_lock(irq, &flags, IRQ_GET_DESC_CHECK_PERCPU);
2331
2332 if (!desc)
2333 return;
2334
2335 irq_percpu_disable(desc, cpu);
2336 irq_put_desc_unlock(desc, flags);
2337}
2338EXPORT_SYMBOL_GPL(disable_percpu_irq);
2339
David Brazdil0f672f62019-12-10 10:32:29 +00002340void disable_percpu_nmi(unsigned int irq)
2341{
2342 disable_percpu_irq(irq);
2343}
2344
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002345/*
2346 * Internal function to unregister a percpu irqaction.
2347 */
2348static struct irqaction *__free_percpu_irq(unsigned int irq, void __percpu *dev_id)
2349{
2350 struct irq_desc *desc = irq_to_desc(irq);
2351 struct irqaction *action;
2352 unsigned long flags;
2353
2354 WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
2355
2356 if (!desc)
2357 return NULL;
2358
2359 raw_spin_lock_irqsave(&desc->lock, flags);
2360
2361 action = desc->action;
2362 if (!action || action->percpu_dev_id != dev_id) {
2363 WARN(1, "Trying to free already-free IRQ %d\n", irq);
2364 goto bad;
2365 }
2366
2367 if (!cpumask_empty(desc->percpu_enabled)) {
2368 WARN(1, "percpu IRQ %d still enabled on CPU%d!\n",
2369 irq, cpumask_first(desc->percpu_enabled));
2370 goto bad;
2371 }
2372
2373 /* Found it - now remove it from the list of entries: */
2374 desc->action = NULL;
2375
David Brazdil0f672f62019-12-10 10:32:29 +00002376 desc->istate &= ~IRQS_NMI;
2377
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002378 raw_spin_unlock_irqrestore(&desc->lock, flags);
2379
2380 unregister_handler_proc(irq, action);
2381
2382 irq_chip_pm_put(&desc->irq_data);
2383 module_put(desc->owner);
2384 return action;
2385
2386bad:
2387 raw_spin_unlock_irqrestore(&desc->lock, flags);
2388 return NULL;
2389}
2390
2391/**
2392 * remove_percpu_irq - free a per-cpu interrupt
2393 * @irq: Interrupt line to free
2394 * @act: irqaction for the interrupt
2395 *
2396 * Used to remove interrupts statically setup by the early boot process.
2397 */
2398void remove_percpu_irq(unsigned int irq, struct irqaction *act)
2399{
2400 struct irq_desc *desc = irq_to_desc(irq);
2401
2402 if (desc && irq_settings_is_per_cpu_devid(desc))
2403 __free_percpu_irq(irq, act->percpu_dev_id);
2404}
2405
2406/**
2407 * free_percpu_irq - free an interrupt allocated with request_percpu_irq
2408 * @irq: Interrupt line to free
2409 * @dev_id: Device identity to free
2410 *
2411 * Remove a percpu interrupt handler. The handler is removed, but
2412 * the interrupt line is not disabled. This must be done on each
2413 * CPU before calling this function. The function does not return
2414 * until any executing interrupts for this IRQ have completed.
2415 *
2416 * This function must not be called from interrupt context.
2417 */
2418void free_percpu_irq(unsigned int irq, void __percpu *dev_id)
2419{
2420 struct irq_desc *desc = irq_to_desc(irq);
2421
2422 if (!desc || !irq_settings_is_per_cpu_devid(desc))
2423 return;
2424
2425 chip_bus_lock(desc);
2426 kfree(__free_percpu_irq(irq, dev_id));
2427 chip_bus_sync_unlock(desc);
2428}
2429EXPORT_SYMBOL_GPL(free_percpu_irq);
2430
David Brazdil0f672f62019-12-10 10:32:29 +00002431void free_percpu_nmi(unsigned int irq, void __percpu *dev_id)
2432{
2433 struct irq_desc *desc = irq_to_desc(irq);
2434
2435 if (!desc || !irq_settings_is_per_cpu_devid(desc))
2436 return;
2437
2438 if (WARN_ON(!(desc->istate & IRQS_NMI)))
2439 return;
2440
2441 kfree(__free_percpu_irq(irq, dev_id));
2442}
2443
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002444/**
2445 * setup_percpu_irq - setup a per-cpu interrupt
2446 * @irq: Interrupt line to setup
2447 * @act: irqaction for the interrupt
2448 *
2449 * Used to statically setup per-cpu interrupts in the early boot process.
2450 */
2451int setup_percpu_irq(unsigned int irq, struct irqaction *act)
2452{
2453 struct irq_desc *desc = irq_to_desc(irq);
2454 int retval;
2455
2456 if (!desc || !irq_settings_is_per_cpu_devid(desc))
2457 return -EINVAL;
2458
2459 retval = irq_chip_pm_get(&desc->irq_data);
2460 if (retval < 0)
2461 return retval;
2462
2463 retval = __setup_irq(irq, desc, act);
2464
2465 if (retval)
2466 irq_chip_pm_put(&desc->irq_data);
2467
2468 return retval;
2469}
2470
2471/**
2472 * __request_percpu_irq - allocate a percpu interrupt line
2473 * @irq: Interrupt line to allocate
2474 * @handler: Function to be called when the IRQ occurs.
2475 * @flags: Interrupt type flags (IRQF_TIMER only)
2476 * @devname: An ascii name for the claiming device
2477 * @dev_id: A percpu cookie passed back to the handler function
2478 *
2479 * This call allocates interrupt resources and enables the
2480 * interrupt on the local CPU. If the interrupt is supposed to be
2481 * enabled on other CPUs, it has to be done on each CPU using
2482 * enable_percpu_irq().
2483 *
2484 * Dev_id must be globally unique. It is a per-cpu variable, and
2485 * the handler gets called with the interrupted CPU's instance of
2486 * that variable.
2487 */
2488int __request_percpu_irq(unsigned int irq, irq_handler_t handler,
2489 unsigned long flags, const char *devname,
2490 void __percpu *dev_id)
2491{
2492 struct irqaction *action;
2493 struct irq_desc *desc;
2494 int retval;
2495
2496 if (!dev_id)
2497 return -EINVAL;
2498
2499 desc = irq_to_desc(irq);
2500 if (!desc || !irq_settings_can_request(desc) ||
2501 !irq_settings_is_per_cpu_devid(desc))
2502 return -EINVAL;
2503
2504 if (flags && flags != IRQF_TIMER)
2505 return -EINVAL;
2506
2507 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
2508 if (!action)
2509 return -ENOMEM;
2510
2511 action->handler = handler;
2512 action->flags = flags | IRQF_PERCPU | IRQF_NO_SUSPEND;
2513 action->name = devname;
2514 action->percpu_dev_id = dev_id;
2515
2516 retval = irq_chip_pm_get(&desc->irq_data);
2517 if (retval < 0) {
2518 kfree(action);
2519 return retval;
2520 }
2521
2522 retval = __setup_irq(irq, desc, action);
2523
2524 if (retval) {
2525 irq_chip_pm_put(&desc->irq_data);
2526 kfree(action);
2527 }
2528
2529 return retval;
2530}
2531EXPORT_SYMBOL_GPL(__request_percpu_irq);
2532
2533/**
David Brazdil0f672f62019-12-10 10:32:29 +00002534 * request_percpu_nmi - allocate a percpu interrupt line for NMI delivery
2535 * @irq: Interrupt line to allocate
2536 * @handler: Function to be called when the IRQ occurs.
2537 * @name: An ascii name for the claiming device
2538 * @dev_id: A percpu cookie passed back to the handler function
2539 *
2540 * This call allocates interrupt resources for a per CPU NMI. Per CPU NMIs
2541 * have to be setup on each CPU by calling prepare_percpu_nmi() before
2542 * being enabled on the same CPU by using enable_percpu_nmi().
2543 *
2544 * Dev_id must be globally unique. It is a per-cpu variable, and
2545 * the handler gets called with the interrupted CPU's instance of
2546 * that variable.
2547 *
2548 * Interrupt lines requested for NMI delivering should have auto enabling
2549 * setting disabled.
2550 *
2551 * If the interrupt line cannot be used to deliver NMIs, function
2552 * will fail returning a negative value.
2553 */
2554int request_percpu_nmi(unsigned int irq, irq_handler_t handler,
2555 const char *name, void __percpu *dev_id)
2556{
2557 struct irqaction *action;
2558 struct irq_desc *desc;
2559 unsigned long flags;
2560 int retval;
2561
2562 if (!handler)
2563 return -EINVAL;
2564
2565 desc = irq_to_desc(irq);
2566
2567 if (!desc || !irq_settings_can_request(desc) ||
2568 !irq_settings_is_per_cpu_devid(desc) ||
2569 irq_settings_can_autoenable(desc) ||
2570 !irq_supports_nmi(desc))
2571 return -EINVAL;
2572
2573 /* The line cannot already be NMI */
2574 if (desc->istate & IRQS_NMI)
2575 return -EINVAL;
2576
2577 action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
2578 if (!action)
2579 return -ENOMEM;
2580
2581 action->handler = handler;
2582 action->flags = IRQF_PERCPU | IRQF_NO_SUSPEND | IRQF_NO_THREAD
2583 | IRQF_NOBALANCING;
2584 action->name = name;
2585 action->percpu_dev_id = dev_id;
2586
2587 retval = irq_chip_pm_get(&desc->irq_data);
2588 if (retval < 0)
2589 goto err_out;
2590
2591 retval = __setup_irq(irq, desc, action);
2592 if (retval)
2593 goto err_irq_setup;
2594
2595 raw_spin_lock_irqsave(&desc->lock, flags);
2596 desc->istate |= IRQS_NMI;
2597 raw_spin_unlock_irqrestore(&desc->lock, flags);
2598
2599 return 0;
2600
2601err_irq_setup:
2602 irq_chip_pm_put(&desc->irq_data);
2603err_out:
2604 kfree(action);
2605
2606 return retval;
2607}
2608
2609/**
2610 * prepare_percpu_nmi - performs CPU local setup for NMI delivery
2611 * @irq: Interrupt line to prepare for NMI delivery
2612 *
2613 * This call prepares an interrupt line to deliver NMI on the current CPU,
2614 * before that interrupt line gets enabled with enable_percpu_nmi().
2615 *
2616 * As a CPU local operation, this should be called from non-preemptible
2617 * context.
2618 *
2619 * If the interrupt line cannot be used to deliver NMIs, function
2620 * will fail returning a negative value.
2621 */
2622int prepare_percpu_nmi(unsigned int irq)
2623{
2624 unsigned long flags;
2625 struct irq_desc *desc;
2626 int ret = 0;
2627
2628 WARN_ON(preemptible());
2629
2630 desc = irq_get_desc_lock(irq, &flags,
2631 IRQ_GET_DESC_CHECK_PERCPU);
2632 if (!desc)
2633 return -EINVAL;
2634
2635 if (WARN(!(desc->istate & IRQS_NMI),
2636 KERN_ERR "prepare_percpu_nmi called for a non-NMI interrupt: irq %u\n",
2637 irq)) {
2638 ret = -EINVAL;
2639 goto out;
2640 }
2641
2642 ret = irq_nmi_setup(desc);
2643 if (ret) {
2644 pr_err("Failed to setup NMI delivery: irq %u\n", irq);
2645 goto out;
2646 }
2647
2648out:
2649 irq_put_desc_unlock(desc, flags);
2650 return ret;
2651}
2652
2653/**
2654 * teardown_percpu_nmi - undoes NMI setup of IRQ line
2655 * @irq: Interrupt line from which CPU local NMI configuration should be
2656 * removed
2657 *
2658 * This call undoes the setup done by prepare_percpu_nmi().
2659 *
2660 * IRQ line should not be enabled for the current CPU.
2661 *
2662 * As a CPU local operation, this should be called from non-preemptible
2663 * context.
2664 */
2665void teardown_percpu_nmi(unsigned int irq)
2666{
2667 unsigned long flags;
2668 struct irq_desc *desc;
2669
2670 WARN_ON(preemptible());
2671
2672 desc = irq_get_desc_lock(irq, &flags,
2673 IRQ_GET_DESC_CHECK_PERCPU);
2674 if (!desc)
2675 return;
2676
2677 if (WARN_ON(!(desc->istate & IRQS_NMI)))
2678 goto out;
2679
2680 irq_nmi_teardown(desc);
2681out:
2682 irq_put_desc_unlock(desc, flags);
2683}
2684
2685int __irq_get_irqchip_state(struct irq_data *data, enum irqchip_irq_state which,
2686 bool *state)
2687{
2688 struct irq_chip *chip;
2689 int err = -EINVAL;
2690
2691 do {
2692 chip = irq_data_get_irq_chip(data);
Olivier Deprez157378f2022-04-04 15:47:50 +02002693 if (WARN_ON_ONCE(!chip))
2694 return -ENODEV;
David Brazdil0f672f62019-12-10 10:32:29 +00002695 if (chip->irq_get_irqchip_state)
2696 break;
2697#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
2698 data = data->parent_data;
2699#else
2700 data = NULL;
2701#endif
2702 } while (data);
2703
2704 if (data)
2705 err = chip->irq_get_irqchip_state(data, which, state);
2706 return err;
2707}
2708
2709/**
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002710 * irq_get_irqchip_state - returns the irqchip state of a interrupt.
2711 * @irq: Interrupt line that is forwarded to a VM
2712 * @which: One of IRQCHIP_STATE_* the caller wants to know about
2713 * @state: a pointer to a boolean where the state is to be storeed
2714 *
2715 * This call snapshots the internal irqchip state of an
2716 * interrupt, returning into @state the bit corresponding to
2717 * stage @which
2718 *
2719 * This function should be called with preemption disabled if the
2720 * interrupt controller has per-cpu registers.
2721 */
2722int irq_get_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
2723 bool *state)
2724{
2725 struct irq_desc *desc;
2726 struct irq_data *data;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002727 unsigned long flags;
2728 int err = -EINVAL;
2729
2730 desc = irq_get_desc_buslock(irq, &flags, 0);
2731 if (!desc)
2732 return err;
2733
2734 data = irq_desc_get_irq_data(desc);
2735
David Brazdil0f672f62019-12-10 10:32:29 +00002736 err = __irq_get_irqchip_state(data, which, state);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002737
2738 irq_put_desc_busunlock(desc, flags);
2739 return err;
2740}
2741EXPORT_SYMBOL_GPL(irq_get_irqchip_state);
2742
2743/**
2744 * irq_set_irqchip_state - set the state of a forwarded interrupt.
2745 * @irq: Interrupt line that is forwarded to a VM
2746 * @which: State to be restored (one of IRQCHIP_STATE_*)
2747 * @val: Value corresponding to @which
2748 *
2749 * This call sets the internal irqchip state of an interrupt,
2750 * depending on the value of @which.
2751 *
2752 * This function should be called with preemption disabled if the
2753 * interrupt controller has per-cpu registers.
2754 */
2755int irq_set_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
2756 bool val)
2757{
2758 struct irq_desc *desc;
2759 struct irq_data *data;
2760 struct irq_chip *chip;
2761 unsigned long flags;
2762 int err = -EINVAL;
2763
2764 desc = irq_get_desc_buslock(irq, &flags, 0);
2765 if (!desc)
2766 return err;
2767
2768 data = irq_desc_get_irq_data(desc);
2769
2770 do {
2771 chip = irq_data_get_irq_chip(data);
Olivier Deprez157378f2022-04-04 15:47:50 +02002772 if (WARN_ON_ONCE(!chip)) {
2773 err = -ENODEV;
2774 goto out_unlock;
2775 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002776 if (chip->irq_set_irqchip_state)
2777 break;
2778#ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
2779 data = data->parent_data;
2780#else
2781 data = NULL;
2782#endif
2783 } while (data);
2784
2785 if (data)
2786 err = chip->irq_set_irqchip_state(data, which, val);
2787
Olivier Deprez157378f2022-04-04 15:47:50 +02002788out_unlock:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002789 irq_put_desc_busunlock(desc, flags);
2790 return err;
2791}
2792EXPORT_SYMBOL_GPL(irq_set_irqchip_state);