License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 14:07:57 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2010-10-01 14:03:45 +00:00
|
|
|
#ifndef _LINUX_IRQDESC_H
|
|
|
|
#define _LINUX_IRQDESC_H
|
|
|
|
|
2015-12-13 17:02:22 +00:00
|
|
|
#include <linux/rcupdate.h>
|
2016-09-13 16:14:51 +00:00
|
|
|
#include <linux/kobject.h>
|
2017-06-29 21:33:37 +00:00
|
|
|
#include <linux/mutex.h>
|
2015-12-13 17:02:22 +00:00
|
|
|
|
2010-10-01 14:03:45 +00:00
|
|
|
/*
|
|
|
|
* Core internal functions to deal with irq descriptors
|
|
|
|
*/
|
|
|
|
|
2011-01-19 21:01:44 +00:00
|
|
|
struct irq_affinity_notify;
|
2010-10-01 14:03:45 +00:00
|
|
|
struct proc_dir_entry;
|
2011-09-20 00:33:19 +00:00
|
|
|
struct module;
|
2012-10-16 22:07:49 +00:00
|
|
|
struct irq_desc;
|
genirq: Add irq_domain-aware core IRQ handler
Calling irq_find_mapping from outside a irq_{enter,exit} section is
unsafe and produces ugly messages if CONFIG_PROVE_RCU is enabled:
If coming from the idle state, the rcu_read_lock call in irq_find_mapping
will generate an unpleasant warning:
<quote>
===============================
[ INFO: suspicious RCU usage. ]
3.16.0-rc1+ #135 Not tainted
-------------------------------
include/linux/rcupdate.h:871 rcu_read_lock() used illegally while idle!
other info that might help us debug this:
RCU used illegally from idle CPU!
rcu_scheduler_active = 1, debug_locks = 0
RCU used illegally from extended quiescent state!
1 lock held by swapper/0/0:
#0: (rcu_read_lock){......}, at: [<ffffffc00010206c>]
irq_find_mapping+0x4c/0x198
</quote>
As this issue is fairly widespread and involves at least three
different architectures, a possible solution is to add a new
handle_domain_irq entry point into the generic IRQ code that
the interrupt controller code can call.
This new function takes an irq_domain, and calls into irq_find_domain
inside the irq_{enter,exit} block. An additional "lookup" parameter is
used to allow non-domain architecture code to be replaced by this as well.
Interrupt controllers can then be updated to use the new mechanism.
This code is sitting behind a new CONFIG_HANDLE_DOMAIN_IRQ, as not all
architectures implement set_irq_regs (yes, mn10300, I'm looking at you...).
Reported-by: Vladimir Murzin <vladimir.murzin@arm.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Link: https://lkml.kernel.org/r/1409047421-27649-2-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
2014-08-26 10:03:16 +00:00
|
|
|
struct irq_domain;
|
|
|
|
struct pt_regs;
|
2012-10-16 22:07:49 +00:00
|
|
|
|
2010-10-01 14:03:45 +00:00
|
|
|
/**
|
|
|
|
* struct irq_desc - interrupt descriptor
|
2015-06-01 08:05:12 +00:00
|
|
|
* @irq_common_data: per irq and chip data passed down to chip functions
|
2010-10-01 14:03:45 +00:00
|
|
|
* @kstat_irqs: irq stats per cpu
|
2011-04-10 09:01:52 +00:00
|
|
|
* @handle_irq: highlevel irq-events handler
|
2010-10-01 14:03:45 +00:00
|
|
|
* @action: the irq action chain
|
2019-09-18 07:28:33 +00:00
|
|
|
* @status_use_accessors: status information
|
2011-02-07 19:19:55 +00:00
|
|
|
* @core_internal_state__do_not_mess_with_it: core internal status information
|
2010-10-01 14:03:45 +00:00
|
|
|
* @depth: disable-depth, for nested irq_disable() calls
|
2011-04-10 09:01:51 +00:00
|
|
|
* @wake_depth: enable depth, for multiple irq_set_irq_wake() callers
|
2019-02-12 14:54:13 +00:00
|
|
|
* @tot_count: stats field for non-percpu irqs
|
2010-10-01 14:03:45 +00:00
|
|
|
* @irq_count: stats field to detect stalled irqs
|
|
|
|
* @last_unhandled: aging timer for unhandled count
|
|
|
|
* @irqs_unhandled: stats field for spurious unhandled interrupts
|
2013-03-07 13:53:45 +00:00
|
|
|
* @threads_handled: stats field for deferred spurious detection of threaded handlers
|
2021-03-22 03:21:30 +00:00
|
|
|
* @threads_handled_last: comparator field for deferred spurious detection of threaded handlers
|
2010-10-01 14:03:45 +00:00
|
|
|
* @lock: locking for SMP
|
2011-04-10 09:01:52 +00:00
|
|
|
* @affinity_hint: hint to user space for preferred irq affinity
|
2011-01-19 21:01:44 +00:00
|
|
|
* @affinity_notify: context for notification of affinity changes
|
2010-10-01 14:03:45 +00:00
|
|
|
* @pending_mask: pending rebalanced interrupts
|
2011-02-23 23:52:13 +00:00
|
|
|
* @threads_oneshot: bitfield to handle shared oneshot threads
|
2010-10-01 14:03:45 +00:00
|
|
|
* @threads_active: number of irqaction threads currently running
|
|
|
|
* @wait_for_threads: wait queue for sync_irq to wait for threaded handlers
|
2014-08-28 09:44:31 +00:00
|
|
|
* @nr_actions: number of installed actions on this descriptor
|
|
|
|
* @no_suspend_depth: number of irqactions on a irq descriptor with
|
|
|
|
* IRQF_NO_SUSPEND set
|
|
|
|
* @force_resume_depth: number of irqactions on a irq descriptor with
|
|
|
|
* IRQF_FORCE_RESUME set
|
2015-12-13 17:02:22 +00:00
|
|
|
* @rcu: rcu head for delayed free
|
2016-09-13 16:14:51 +00:00
|
|
|
* @kobj: kobject used to represent this struct in sysfs
|
2017-06-29 21:33:37 +00:00
|
|
|
* @request_mutex: mutex to protect request/free before locking desc->lock
|
2010-10-01 14:03:45 +00:00
|
|
|
* @dir: /proc/irq/ procfs entry
|
2017-06-19 23:37:17 +00:00
|
|
|
* @debugfs_file: dentry for the debugfs file
|
2010-10-01 14:03:45 +00:00
|
|
|
* @name: flow handler name for /proc/interrupts output
|
|
|
|
*/
|
|
|
|
struct irq_desc {
|
2015-06-01 08:05:12 +00:00
|
|
|
struct irq_common_data irq_common_data;
|
2010-10-01 14:03:45 +00:00
|
|
|
struct irq_data irq_data;
|
2011-01-13 23:45:38 +00:00
|
|
|
unsigned int __percpu *kstat_irqs;
|
2010-10-01 14:03:45 +00:00
|
|
|
irq_flow_handler_t handle_irq;
|
|
|
|
struct irqaction *action; /* IRQ action list */
|
2011-02-10 21:01:25 +00:00
|
|
|
unsigned int status_use_accessors;
|
2011-02-07 19:19:55 +00:00
|
|
|
unsigned int core_internal_state__do_not_mess_with_it;
|
2010-10-01 14:03:45 +00:00
|
|
|
unsigned int depth; /* nested irq disables */
|
|
|
|
unsigned int wake_depth; /* nested wake enables */
|
2019-02-08 13:48:03 +00:00
|
|
|
unsigned int tot_count;
|
2010-10-01 14:03:45 +00:00
|
|
|
unsigned int irq_count; /* For detecting broken IRQs */
|
|
|
|
unsigned long last_unhandled; /* Aging timer for unhandled count */
|
|
|
|
unsigned int irqs_unhandled;
|
2013-03-07 13:53:45 +00:00
|
|
|
atomic_t threads_handled;
|
|
|
|
int threads_handled_last;
|
2010-10-01 14:03:45 +00:00
|
|
|
raw_spinlock_t lock;
|
genirq: Add support for per-cpu dev_id interrupts
The ARM GIC interrupt controller offers per CPU interrupts (PPIs),
which are usually used to connect local timers to each core. Each CPU
has its own private interface to the GIC, and only sees the PPIs that
are directly connect to it.
While these timers are separate devices and have a separate interrupt
line to a core, they all use the same IRQ number.
For these devices, request_irq() is not the right API as it assumes
that an IRQ number is visible by a number of CPUs (through the
affinity setting), but makes it very awkward to express that an IRQ
number can be handled by all CPUs, and yet be a different interrupt
line on each CPU, requiring a different dev_id cookie to be passed
back to the handler.
The *_percpu_irq() functions is designed to overcome these
limitations, by providing a per-cpu dev_id vector:
int request_percpu_irq(unsigned int irq, irq_handler_t handler,
const char *devname, void __percpu *percpu_dev_id);
void free_percpu_irq(unsigned int, void __percpu *);
int setup_percpu_irq(unsigned int irq, struct irqaction *new);
void remove_percpu_irq(unsigned int irq, struct irqaction *act);
void enable_percpu_irq(unsigned int irq);
void disable_percpu_irq(unsigned int irq);
The API has a number of limitations:
- no interrupt sharing
- no threading
- common handler across all the CPUs
Once the interrupt is requested using setup_percpu_irq() or
request_percpu_irq(), it must be enabled by each core that wishes its
local interrupt to be delivered.
Based on an initial patch by Thomas Gleixner.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Cc: linux-arm-kernel@lists.infradead.org
Link: http://lkml.kernel.org/r/1316793788-14500-2-git-send-email-marc.zyngier@arm.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
2011-09-23 16:03:06 +00:00
|
|
|
struct cpumask *percpu_enabled;
|
2016-04-11 08:57:52 +00:00
|
|
|
const struct cpumask *percpu_affinity;
|
2010-10-01 14:03:45 +00:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
const struct cpumask *affinity_hint;
|
2011-01-19 21:01:44 +00:00
|
|
|
struct irq_affinity_notify *affinity_notify;
|
2010-10-01 14:03:45 +00:00
|
|
|
#ifdef CONFIG_GENERIC_PENDING_IRQ
|
|
|
|
cpumask_var_t pending_mask;
|
|
|
|
#endif
|
|
|
|
#endif
|
2011-02-23 23:52:13 +00:00
|
|
|
unsigned long threads_oneshot;
|
2010-10-01 14:03:45 +00:00
|
|
|
atomic_t threads_active;
|
|
|
|
wait_queue_head_t wait_for_threads;
|
2014-08-28 09:44:31 +00:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
|
|
unsigned int nr_actions;
|
|
|
|
unsigned int no_suspend_depth;
|
genirq / PM: Add flag for shared NO_SUSPEND interrupt lines
It currently is required that all users of NO_SUSPEND interrupt
lines pass the IRQF_NO_SUSPEND flag when requesting the IRQ or the
WARN_ON_ONCE() in irq_pm_install_action() will trigger. That is
done to warn about situations in which unprepared interrupt handlers
may be run unnecessarily for suspended devices and may attempt to
access those devices by mistake. However, it may cause drivers
that have no technical reasons for using IRQF_NO_SUSPEND to set
that flag just because they happen to share the interrupt line
with something like a timer.
Moreover, the generic handling of wakeup interrupts introduced by
commit 9ce7a25849e8 (genirq: Simplify wakeup mechanism) only works
for IRQs without any NO_SUSPEND users, so the drivers of wakeup
devices needing to use shared NO_SUSPEND interrupt lines for
signaling system wakeup generally have to detect wakeup in their
interrupt handlers. Thus if they happen to share an interrupt line
with a NO_SUSPEND user, they also need to request that their
interrupt handlers be run after suspend_device_irqs().
In both cases the reason for using IRQF_NO_SUSPEND is not because
the driver in question has a genuine need to run its interrupt
handler after suspend_device_irqs(), but because it happens to
share the line with some other NO_SUSPEND user. Otherwise, the
driver would do without IRQF_NO_SUSPEND just fine.
To make it possible to specify that condition explicitly, introduce
a new IRQ action handler flag for shared IRQs, IRQF_COND_SUSPEND,
that, when set, will indicate to the IRQ core that the interrupt
user is generally fine with suspending the IRQ, but it also can
tolerate handler invocations after suspend_device_irqs() and, in
particular, it is capable of detecting system wakeup and triggering
it as appropriate from its interrupt handler.
That will allow us to work around a problem with a shared timer
interrupt line on at91 platforms.
Link: http://marc.info/?l=linux-kernel&m=142252777602084&w=2
Link: http://marc.info/?t=142252775300011&r=1&w=2
Link: https://lkml.org/lkml/2014/12/15/552
Reported-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
2015-02-26 23:07:55 +00:00
|
|
|
unsigned int cond_suspend_depth;
|
2014-08-28 09:44:31 +00:00
|
|
|
unsigned int force_resume_depth;
|
|
|
|
#endif
|
2010-10-01 14:03:45 +00:00
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
struct proc_dir_entry *dir;
|
2015-12-13 17:02:22 +00:00
|
|
|
#endif
|
2017-06-19 23:37:17 +00:00
|
|
|
#ifdef CONFIG_GENERIC_IRQ_DEBUGFS
|
|
|
|
struct dentry *debugfs_file;
|
2017-09-13 21:29:05 +00:00
|
|
|
const char *dev_name;
|
2017-06-19 23:37:17 +00:00
|
|
|
#endif
|
2015-12-13 17:02:22 +00:00
|
|
|
#ifdef CONFIG_SPARSE_IRQ
|
|
|
|
struct rcu_head rcu;
|
2016-09-13 16:14:51 +00:00
|
|
|
struct kobject kobj;
|
2010-10-01 14:03:45 +00:00
|
|
|
#endif
|
2017-06-29 21:33:37 +00:00
|
|
|
struct mutex request_mutex;
|
2012-10-16 22:07:49 +00:00
|
|
|
int parent_irq;
|
2011-07-11 10:17:31 +00:00
|
|
|
struct module *owner;
|
2010-10-01 14:03:45 +00:00
|
|
|
const char *name;
|
|
|
|
} ____cacheline_internodealigned_in_smp;
|
|
|
|
|
2015-07-05 17:12:30 +00:00
|
|
|
#ifdef CONFIG_SPARSE_IRQ
|
|
|
|
extern void irq_lock_sparse(void);
|
|
|
|
extern void irq_unlock_sparse(void);
|
|
|
|
#else
|
|
|
|
static inline void irq_lock_sparse(void) { }
|
|
|
|
static inline void irq_unlock_sparse(void) { }
|
2010-10-01 14:03:45 +00:00
|
|
|
extern struct irq_desc irq_desc[NR_IRQS];
|
|
|
|
#endif
|
|
|
|
|
2020-12-10 19:25:44 +00:00
|
|
|
static inline unsigned int irq_desc_kstat_cpu(struct irq_desc *desc,
|
|
|
|
unsigned int cpu)
|
|
|
|
{
|
|
|
|
return desc->kstat_irqs ? *per_cpu_ptr(desc->kstat_irqs, cpu) : 0;
|
|
|
|
}
|
|
|
|
|
2015-06-01 08:05:10 +00:00
|
|
|
static inline struct irq_desc *irq_data_to_desc(struct irq_data *data)
|
|
|
|
{
|
2015-09-16 12:37:12 +00:00
|
|
|
return container_of(data->common, struct irq_desc, irq_common_data);
|
2015-06-01 08:05:10 +00:00
|
|
|
}
|
|
|
|
|
2015-06-04 04:13:26 +00:00
|
|
|
static inline unsigned int irq_desc_get_irq(struct irq_desc *desc)
|
|
|
|
{
|
|
|
|
return desc->irq_data.irq;
|
|
|
|
}
|
|
|
|
|
2011-03-11 13:15:35 +00:00
|
|
|
static inline struct irq_data *irq_desc_get_irq_data(struct irq_desc *desc)
|
|
|
|
{
|
|
|
|
return &desc->irq_data;
|
|
|
|
}
|
|
|
|
|
2011-02-10 10:36:33 +00:00
|
|
|
static inline struct irq_chip *irq_desc_get_chip(struct irq_desc *desc)
|
|
|
|
{
|
|
|
|
return desc->irq_data.chip;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *irq_desc_get_chip_data(struct irq_desc *desc)
|
|
|
|
{
|
|
|
|
return desc->irq_data.chip_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *irq_desc_get_handler_data(struct irq_desc *desc)
|
|
|
|
{
|
2015-06-01 08:05:21 +00:00
|
|
|
return desc->irq_common_data.handler_data;
|
2011-02-10 10:36:33 +00:00
|
|
|
}
|
|
|
|
|
2010-10-01 14:03:45 +00:00
|
|
|
/*
|
|
|
|
* Architectures call this to let the generic IRQ layer
|
2015-09-01 02:35:50 +00:00
|
|
|
* handle an interrupt.
|
2010-10-01 14:03:45 +00:00
|
|
|
*/
|
2015-09-14 08:42:37 +00:00
|
|
|
static inline void generic_handle_irq_desc(struct irq_desc *desc)
|
2010-10-01 14:03:45 +00:00
|
|
|
{
|
2015-09-14 08:42:37 +00:00
|
|
|
desc->handle_irq(desc);
|
2010-10-01 14:03:45 +00:00
|
|
|
}
|
|
|
|
|
2021-05-04 13:24:37 +00:00
|
|
|
int handle_irq_desc(struct irq_desc *desc);
|
2011-05-18 10:48:00 +00:00
|
|
|
int generic_handle_irq(unsigned int irq);
|
2022-02-11 18:14:54 +00:00
|
|
|
int generic_handle_irq_safe(unsigned int irq);
|
2010-10-01 14:03:45 +00:00
|
|
|
|
2021-05-12 15:18:15 +00:00
|
|
|
#ifdef CONFIG_IRQ_DOMAIN
|
genirq: Add irq_domain-aware core IRQ handler
Calling irq_find_mapping from outside a irq_{enter,exit} section is
unsafe and produces ugly messages if CONFIG_PROVE_RCU is enabled:
If coming from the idle state, the rcu_read_lock call in irq_find_mapping
will generate an unpleasant warning:
<quote>
===============================
[ INFO: suspicious RCU usage. ]
3.16.0-rc1+ #135 Not tainted
-------------------------------
include/linux/rcupdate.h:871 rcu_read_lock() used illegally while idle!
other info that might help us debug this:
RCU used illegally from idle CPU!
rcu_scheduler_active = 1, debug_locks = 0
RCU used illegally from extended quiescent state!
1 lock held by swapper/0/0:
#0: (rcu_read_lock){......}, at: [<ffffffc00010206c>]
irq_find_mapping+0x4c/0x198
</quote>
As this issue is fairly widespread and involves at least three
different architectures, a possible solution is to add a new
handle_domain_irq entry point into the generic IRQ code that
the interrupt controller code can call.
This new function takes an irq_domain, and calls into irq_find_domain
inside the irq_{enter,exit} block. An additional "lookup" parameter is
used to allow non-domain architecture code to be replaced by this as well.
Interrupt controllers can then be updated to use the new mechanism.
This code is sitting behind a new CONFIG_HANDLE_DOMAIN_IRQ, as not all
architectures implement set_irq_regs (yes, mn10300, I'm looking at you...).
Reported-by: Vladimir Murzin <vladimir.murzin@arm.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Link: https://lkml.kernel.org/r/1409047421-27649-2-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
2014-08-26 10:03:16 +00:00
|
|
|
/*
|
|
|
|
* Convert a HW interrupt number to a logical one using a IRQ domain,
|
|
|
|
* and handle the result interrupt number. Return -EINVAL if
|
2021-05-04 13:33:24 +00:00
|
|
|
* conversion failed.
|
genirq: Add irq_domain-aware core IRQ handler
Calling irq_find_mapping from outside a irq_{enter,exit} section is
unsafe and produces ugly messages if CONFIG_PROVE_RCU is enabled:
If coming from the idle state, the rcu_read_lock call in irq_find_mapping
will generate an unpleasant warning:
<quote>
===============================
[ INFO: suspicious RCU usage. ]
3.16.0-rc1+ #135 Not tainted
-------------------------------
include/linux/rcupdate.h:871 rcu_read_lock() used illegally while idle!
other info that might help us debug this:
RCU used illegally from idle CPU!
rcu_scheduler_active = 1, debug_locks = 0
RCU used illegally from extended quiescent state!
1 lock held by swapper/0/0:
#0: (rcu_read_lock){......}, at: [<ffffffc00010206c>]
irq_find_mapping+0x4c/0x198
</quote>
As this issue is fairly widespread and involves at least three
different architectures, a possible solution is to add a new
handle_domain_irq entry point into the generic IRQ code that
the interrupt controller code can call.
This new function takes an irq_domain, and calls into irq_find_domain
inside the irq_{enter,exit} block. An additional "lookup" parameter is
used to allow non-domain architecture code to be replaced by this as well.
Interrupt controllers can then be updated to use the new mechanism.
This code is sitting behind a new CONFIG_HANDLE_DOMAIN_IRQ, as not all
architectures implement set_irq_regs (yes, mn10300, I'm looking at you...).
Reported-by: Vladimir Murzin <vladimir.murzin@arm.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Link: https://lkml.kernel.org/r/1409047421-27649-2-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
2014-08-26 10:03:16 +00:00
|
|
|
*/
|
2021-05-12 12:45:52 +00:00
|
|
|
int generic_handle_domain_irq(struct irq_domain *domain, unsigned int hwirq);
|
2021-10-20 19:23:09 +00:00
|
|
|
int generic_handle_domain_nmi(struct irq_domain *domain, unsigned int hwirq);
|
genirq: Add irq_domain-aware core IRQ handler
Calling irq_find_mapping from outside a irq_{enter,exit} section is
unsafe and produces ugly messages if CONFIG_PROVE_RCU is enabled:
If coming from the idle state, the rcu_read_lock call in irq_find_mapping
will generate an unpleasant warning:
<quote>
===============================
[ INFO: suspicious RCU usage. ]
3.16.0-rc1+ #135 Not tainted
-------------------------------
include/linux/rcupdate.h:871 rcu_read_lock() used illegally while idle!
other info that might help us debug this:
RCU used illegally from idle CPU!
rcu_scheduler_active = 1, debug_locks = 0
RCU used illegally from extended quiescent state!
1 lock held by swapper/0/0:
#0: (rcu_read_lock){......}, at: [<ffffffc00010206c>]
irq_find_mapping+0x4c/0x198
</quote>
As this issue is fairly widespread and involves at least three
different architectures, a possible solution is to add a new
handle_domain_irq entry point into the generic IRQ code that
the interrupt controller code can call.
This new function takes an irq_domain, and calls into irq_find_domain
inside the irq_{enter,exit} block. An additional "lookup" parameter is
used to allow non-domain architecture code to be replaced by this as well.
Interrupt controllers can then be updated to use the new mechanism.
This code is sitting behind a new CONFIG_HANDLE_DOMAIN_IRQ, as not all
architectures implement set_irq_regs (yes, mn10300, I'm looking at you...).
Reported-by: Vladimir Murzin <vladimir.murzin@arm.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Link: https://lkml.kernel.org/r/1409047421-27649-2-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
2014-08-26 10:03:16 +00:00
|
|
|
#endif
|
|
|
|
|
2010-10-01 14:03:45 +00:00
|
|
|
/* Test to see if a driver has successfully requested an irq */
|
2015-08-02 20:38:26 +00:00
|
|
|
static inline int irq_desc_has_action(struct irq_desc *desc)
|
2010-10-01 14:03:45 +00:00
|
|
|
{
|
2020-12-10 19:25:37 +00:00
|
|
|
return desc && desc->action != NULL;
|
2015-08-02 20:38:26 +00:00
|
|
|
}
|
|
|
|
|
2015-06-23 13:01:30 +00:00
|
|
|
/**
|
|
|
|
* irq_set_handler_locked - Set irq handler from a locked region
|
|
|
|
* @data: Pointer to the irq_data structure which identifies the irq
|
|
|
|
* @handler: Flow control handler function for this interrupt
|
|
|
|
*
|
|
|
|
* Sets the handler in the irq descriptor associated to @data.
|
|
|
|
*
|
|
|
|
* Must be called with irq_desc locked and valid parameters. Typical
|
|
|
|
* call site is the irq_set_type() callback.
|
|
|
|
*/
|
|
|
|
static inline void irq_set_handler_locked(struct irq_data *data,
|
|
|
|
irq_flow_handler_t handler)
|
|
|
|
{
|
|
|
|
struct irq_desc *desc = irq_data_to_desc(data);
|
|
|
|
|
|
|
|
desc->handle_irq = handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* irq_set_chip_handler_name_locked - Set chip, handler and name from a locked region
|
|
|
|
* @data: Pointer to the irq_data structure for which the chip is set
|
|
|
|
* @chip: Pointer to the new irq chip
|
|
|
|
* @handler: Flow control handler function for this interrupt
|
|
|
|
* @name: Name of the interrupt
|
|
|
|
*
|
|
|
|
* Replace the irq chip at the proper hierarchy level in @data and
|
|
|
|
* sets the handler and name in the associated irq descriptor.
|
|
|
|
*
|
|
|
|
* Must be called with irq_desc locked and valid parameters.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
irq_set_chip_handler_name_locked(struct irq_data *data, struct irq_chip *chip,
|
|
|
|
irq_flow_handler_t handler, const char *name)
|
|
|
|
{
|
|
|
|
struct irq_desc *desc = irq_data_to_desc(data);
|
|
|
|
|
|
|
|
desc->handle_irq = handler;
|
|
|
|
desc->name = name;
|
|
|
|
data->chip = chip;
|
|
|
|
}
|
|
|
|
|
2020-12-10 19:25:38 +00:00
|
|
|
bool irq_check_status_bit(unsigned int irq, unsigned int bitmask);
|
|
|
|
|
irqdesc: Use bool return type instead of int
The irq_balancing_disabled and irq_is_percpu{,_devid} functions are
clearly intended to return bool like the functions in
kernel/irq/settings.h, but actually return an int containing a masked
value of desc->status_use_accessors. This can lead to subtle breakage
if, for example, the return value is subsequently truncated when
assigned to a narrower type.
As Linus points out:
| In particular, what can (and _has_ happened) is that people end up
| using these functions that return true or false, and they assign the
| result to something like a bitfield (or a char) or whatever.
|
| And the code looks *obviously* correct, when you have things like
|
| dev->percpu = irq_is_percpu_devid(dev->irq);
|
| and that "percpu" thing is just one status bit among many. It may even
| *work*, because maybe that "percpu" flag ends up not being all that
| important, or it just happens to never be set on the particular
| hardware that people end up testing.
|
| But while it looks obviously correct, and might even work, it's really
| fundamentally broken. Because that "true or false" function didn't
| actually return 0/1, it returned 0 or 0x20000.
|
| And 0x20000 may not fit in a bitmask or a "char" or whatever.
Fix the problem by consistently using bool as the return type for these
functions.
Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: marc.zyngier@arm.com
Link: https://lkml.kernel.org/r/1512142179-24616-1-git-send-email-will.deacon@arm.com
2017-12-01 15:29:39 +00:00
|
|
|
static inline bool irq_balancing_disabled(unsigned int irq)
|
2010-10-01 14:03:45 +00:00
|
|
|
{
|
2020-12-10 19:25:38 +00:00
|
|
|
return irq_check_status_bit(irq, IRQ_NO_BALANCING_MASK);
|
2010-10-01 14:03:45 +00:00
|
|
|
}
|
2011-02-10 14:14:20 +00:00
|
|
|
|
irqdesc: Use bool return type instead of int
The irq_balancing_disabled and irq_is_percpu{,_devid} functions are
clearly intended to return bool like the functions in
kernel/irq/settings.h, but actually return an int containing a masked
value of desc->status_use_accessors. This can lead to subtle breakage
if, for example, the return value is subsequently truncated when
assigned to a narrower type.
As Linus points out:
| In particular, what can (and _has_ happened) is that people end up
| using these functions that return true or false, and they assign the
| result to something like a bitfield (or a char) or whatever.
|
| And the code looks *obviously* correct, when you have things like
|
| dev->percpu = irq_is_percpu_devid(dev->irq);
|
| and that "percpu" thing is just one status bit among many. It may even
| *work*, because maybe that "percpu" flag ends up not being all that
| important, or it just happens to never be set on the particular
| hardware that people end up testing.
|
| But while it looks obviously correct, and might even work, it's really
| fundamentally broken. Because that "true or false" function didn't
| actually return 0/1, it returned 0 or 0x20000.
|
| And 0x20000 may not fit in a bitmask or a "char" or whatever.
Fix the problem by consistently using bool as the return type for these
functions.
Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: marc.zyngier@arm.com
Link: https://lkml.kernel.org/r/1512142179-24616-1-git-send-email-will.deacon@arm.com
2017-12-01 15:29:39 +00:00
|
|
|
static inline bool irq_is_percpu(unsigned int irq)
|
2013-12-04 10:09:50 +00:00
|
|
|
{
|
2020-12-10 19:25:38 +00:00
|
|
|
return irq_check_status_bit(irq, IRQ_PER_CPU);
|
2013-12-04 10:09:50 +00:00
|
|
|
}
|
|
|
|
|
irqdesc: Use bool return type instead of int
The irq_balancing_disabled and irq_is_percpu{,_devid} functions are
clearly intended to return bool like the functions in
kernel/irq/settings.h, but actually return an int containing a masked
value of desc->status_use_accessors. This can lead to subtle breakage
if, for example, the return value is subsequently truncated when
assigned to a narrower type.
As Linus points out:
| In particular, what can (and _has_ happened) is that people end up
| using these functions that return true or false, and they assign the
| result to something like a bitfield (or a char) or whatever.
|
| And the code looks *obviously* correct, when you have things like
|
| dev->percpu = irq_is_percpu_devid(dev->irq);
|
| and that "percpu" thing is just one status bit among many. It may even
| *work*, because maybe that "percpu" flag ends up not being all that
| important, or it just happens to never be set on the particular
| hardware that people end up testing.
|
| But while it looks obviously correct, and might even work, it's really
| fundamentally broken. Because that "true or false" function didn't
| actually return 0/1, it returned 0 or 0x20000.
|
| And 0x20000 may not fit in a bitmask or a "char" or whatever.
Fix the problem by consistently using bool as the return type for these
functions.
Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: marc.zyngier@arm.com
Link: https://lkml.kernel.org/r/1512142179-24616-1-git-send-email-will.deacon@arm.com
2017-12-01 15:29:39 +00:00
|
|
|
static inline bool irq_is_percpu_devid(unsigned int irq)
|
2017-10-13 11:26:44 +00:00
|
|
|
{
|
2020-12-10 19:25:38 +00:00
|
|
|
return irq_check_status_bit(irq, IRQ_PER_CPU_DEVID);
|
2017-10-13 11:26:44 +00:00
|
|
|
}
|
|
|
|
|
2020-12-10 19:25:39 +00:00
|
|
|
void __irq_set_lockdep_class(unsigned int irq, struct lock_class_key *lock_class,
|
|
|
|
struct lock_class_key *request_class);
|
2011-03-22 16:08:15 +00:00
|
|
|
static inline void
|
2017-12-02 17:11:04 +00:00
|
|
|
irq_set_lockdep_class(unsigned int irq, struct lock_class_key *lock_class,
|
|
|
|
struct lock_class_key *request_class)
|
2011-03-22 16:08:15 +00:00
|
|
|
{
|
2020-12-10 19:25:39 +00:00
|
|
|
if (IS_ENABLED(CONFIG_LOCKDEP))
|
|
|
|
__irq_set_lockdep_class(irq, lock_class, request_class);
|
2011-03-22 16:08:15 +00:00
|
|
|
}
|
|
|
|
|
2010-10-01 14:03:45 +00:00
|
|
|
#endif
|