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
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2012-07-20 09:15:04 +00:00
|
|
|
* Copyright IBM Corp. 2004, 2011
|
2011-05-26 07:48:24 +00:00
|
|
|
* Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
|
|
|
|
* Holger Smolinski <Holger.Smolinski@de.ibm.com>,
|
|
|
|
* Thomas Spatzier <tspat@de.ibm.com>,
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* This file contains interrupt related functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel_stat.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/seq_file.h>
|
2007-02-05 20:16:44 +00:00
|
|
|
#include <linux/proc_fs.h>
|
|
|
|
#include <linux/profile.h>
|
2017-02-09 20:20:23 +00:00
|
|
|
#include <linux/export.h>
|
2011-05-26 07:48:24 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/ftrace.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/slab.h>
|
2017-02-09 20:20:23 +00:00
|
|
|
#include <linux/init.h>
|
2011-05-26 07:48:24 +00:00
|
|
|
#include <linux/cpu.h>
|
2014-03-04 22:57:29 +00:00
|
|
|
#include <linux/irq.h>
|
2011-05-26 07:48:24 +00:00
|
|
|
#include <asm/irq_regs.h>
|
|
|
|
#include <asm/cputime.h>
|
|
|
|
#include <asm/lowcore.h>
|
|
|
|
#include <asm/irq.h>
|
2013-06-27 07:01:09 +00:00
|
|
|
#include <asm/hw_irq.h>
|
2011-05-26 07:48:24 +00:00
|
|
|
#include "entry.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-01-02 14:18:18 +00:00
|
|
|
DEFINE_PER_CPU_SHARED_ALIGNED(struct irq_stat, irq_stat);
|
|
|
|
EXPORT_PER_CPU_SYMBOL_GPL(irq_stat);
|
|
|
|
|
2011-01-05 11:47:28 +00:00
|
|
|
struct irq_class {
|
2014-07-22 14:58:52 +00:00
|
|
|
int irq;
|
2011-01-05 11:47:28 +00:00
|
|
|
char *name;
|
|
|
|
char *desc;
|
|
|
|
};
|
|
|
|
|
2013-01-02 14:18:18 +00:00
|
|
|
/*
|
2013-03-16 11:53:05 +00:00
|
|
|
* The list of "main" irq classes on s390. This is the list of interrupts
|
2013-01-02 14:18:18 +00:00
|
|
|
* that appear both in /proc/stat ("intr" line) and /proc/interrupts.
|
|
|
|
* Historically only external and I/O interrupts have been part of /proc/stat.
|
|
|
|
* We can't add the split external and I/O sub classes since the first field
|
|
|
|
* in the "intr" line in /proc/stat is supposed to be the sum of all other
|
|
|
|
* fields.
|
|
|
|
* Since the external and I/O interrupt fields are already sums we would end
|
|
|
|
* up with having a sum which accounts each interrupt twice.
|
|
|
|
*/
|
2013-06-27 07:01:09 +00:00
|
|
|
static const struct irq_class irqclass_main_desc[NR_IRQS_BASE] = {
|
2014-07-22 14:58:52 +00:00
|
|
|
{.irq = EXT_INTERRUPT, .name = "EXT"},
|
|
|
|
{.irq = IO_INTERRUPT, .name = "I/O"},
|
|
|
|
{.irq = THIN_INTERRUPT, .name = "AIO"},
|
2013-01-02 14:18:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The list of split external and I/O interrupts that appear only in
|
|
|
|
* /proc/interrupts.
|
|
|
|
* In addition this list contains non external / I/O events like NMIs.
|
|
|
|
*/
|
2015-03-25 07:05:49 +00:00
|
|
|
static const struct irq_class irqclass_sub_desc[] = {
|
2014-07-22 14:58:52 +00:00
|
|
|
{.irq = IRQEXT_CLK, .name = "CLK", .desc = "[EXT] Clock Comparator"},
|
|
|
|
{.irq = IRQEXT_EXC, .name = "EXC", .desc = "[EXT] External Call"},
|
|
|
|
{.irq = IRQEXT_EMS, .name = "EMS", .desc = "[EXT] Emergency Signal"},
|
|
|
|
{.irq = IRQEXT_TMR, .name = "TMR", .desc = "[EXT] CPU Timer"},
|
|
|
|
{.irq = IRQEXT_TLA, .name = "TAL", .desc = "[EXT] Timing Alert"},
|
|
|
|
{.irq = IRQEXT_PFL, .name = "PFL", .desc = "[EXT] Pseudo Page Fault"},
|
|
|
|
{.irq = IRQEXT_DSD, .name = "DSD", .desc = "[EXT] DASD Diag"},
|
|
|
|
{.irq = IRQEXT_VRT, .name = "VRT", .desc = "[EXT] Virtio"},
|
|
|
|
{.irq = IRQEXT_SCP, .name = "SCP", .desc = "[EXT] Service Call"},
|
|
|
|
{.irq = IRQEXT_IUC, .name = "IUC", .desc = "[EXT] IUCV"},
|
|
|
|
{.irq = IRQEXT_CMS, .name = "CMS", .desc = "[EXT] CPU-Measurement: Sampling"},
|
|
|
|
{.irq = IRQEXT_CMC, .name = "CMC", .desc = "[EXT] CPU-Measurement: Counter"},
|
2013-04-08 07:52:57 +00:00
|
|
|
{.irq = IRQEXT_FTP, .name = "FTP", .desc = "[EXT] HMC FTP Service"},
|
2014-07-22 14:58:52 +00:00
|
|
|
{.irq = IRQIO_CIO, .name = "CIO", .desc = "[I/O] Common I/O Layer Interrupt"},
|
|
|
|
{.irq = IRQIO_DAS, .name = "DAS", .desc = "[I/O] DASD"},
|
|
|
|
{.irq = IRQIO_C15, .name = "C15", .desc = "[I/O] 3215"},
|
|
|
|
{.irq = IRQIO_C70, .name = "C70", .desc = "[I/O] 3270"},
|
|
|
|
{.irq = IRQIO_TAP, .name = "TAP", .desc = "[I/O] Tape"},
|
|
|
|
{.irq = IRQIO_VMR, .name = "VMR", .desc = "[I/O] Unit Record Devices"},
|
|
|
|
{.irq = IRQIO_LCS, .name = "LCS", .desc = "[I/O] LCS"},
|
|
|
|
{.irq = IRQIO_CTC, .name = "CTC", .desc = "[I/O] CTC"},
|
|
|
|
{.irq = IRQIO_ADM, .name = "ADM", .desc = "[I/O] EADM Subchannel"},
|
|
|
|
{.irq = IRQIO_CSC, .name = "CSC", .desc = "[I/O] CHSC Subchannel"},
|
|
|
|
{.irq = IRQIO_VIR, .name = "VIR", .desc = "[I/O] Virtual I/O Devices"},
|
2017-02-14 17:13:09 +00:00
|
|
|
{.irq = IRQIO_QAI, .name = "QAI", .desc = "[AIO] QDIO Adapter Interrupt"},
|
|
|
|
{.irq = IRQIO_APB, .name = "APB", .desc = "[AIO] AP Bus"},
|
|
|
|
{.irq = IRQIO_PCI, .name = "PCI", .desc = "[AIO] PCI Interrupt"},
|
|
|
|
{.irq = IRQIO_MSI, .name = "MSI", .desc = "[AIO] MSI Interrupt"},
|
|
|
|
{.irq = IRQIO_VAI, .name = "VAI", .desc = "[AIO] Virtual I/O Devices AI"},
|
|
|
|
{.irq = IRQIO_GAL, .name = "GAL", .desc = "[AIO] GIB Alert"},
|
2014-07-22 14:58:52 +00:00
|
|
|
{.irq = NMI_NMI, .name = "NMI", .desc = "[NMI] Machine Check"},
|
|
|
|
{.irq = CPU_RST, .name = "RST", .desc = "[CPU] CPU Restart"},
|
2011-01-05 11:47:28 +00:00
|
|
|
};
|
|
|
|
|
2013-06-27 07:01:09 +00:00
|
|
|
void __init init_IRQ(void)
|
|
|
|
{
|
2015-03-25 07:05:49 +00:00
|
|
|
BUILD_BUG_ON(ARRAY_SIZE(irqclass_sub_desc) != NR_ARCH_IRQS);
|
2013-06-27 07:01:09 +00:00
|
|
|
init_cio_interrupts();
|
|
|
|
init_airq_interrupts();
|
|
|
|
init_ext_interrupts();
|
|
|
|
}
|
|
|
|
|
|
|
|
void do_IRQ(struct pt_regs *regs, int irq)
|
|
|
|
{
|
|
|
|
struct pt_regs *old_regs;
|
|
|
|
|
|
|
|
old_regs = set_irq_regs(regs);
|
|
|
|
irq_enter();
|
2016-10-27 10:41:39 +00:00
|
|
|
if (tod_after_eq(S390_lowcore.int_clock,
|
|
|
|
S390_lowcore.clock_comparator))
|
2013-06-27 07:01:09 +00:00
|
|
|
/* Serve timer interrupts first. */
|
|
|
|
clock_comparator_work();
|
|
|
|
generic_handle_irq(irq);
|
|
|
|
irq_exit();
|
|
|
|
set_irq_regs(old_regs);
|
|
|
|
}
|
|
|
|
|
2017-02-14 17:13:09 +00:00
|
|
|
static void show_msi_interrupt(struct seq_file *p, int irq)
|
|
|
|
{
|
|
|
|
struct irq_desc *desc;
|
|
|
|
unsigned long flags;
|
|
|
|
int cpu;
|
|
|
|
|
|
|
|
irq_lock_sparse();
|
|
|
|
desc = irq_to_desc(irq);
|
|
|
|
if (!desc)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
raw_spin_lock_irqsave(&desc->lock, flags);
|
|
|
|
seq_printf(p, "%3d: ", irq);
|
|
|
|
for_each_online_cpu(cpu)
|
|
|
|
seq_printf(p, "%10u ", kstat_irqs_cpu(irq, cpu));
|
|
|
|
|
|
|
|
if (desc->irq_data.chip)
|
|
|
|
seq_printf(p, " %8s", desc->irq_data.chip->name);
|
|
|
|
|
|
|
|
if (desc->action)
|
|
|
|
seq_printf(p, " %s", desc->action->name);
|
|
|
|
|
|
|
|
seq_putc(p, '\n');
|
|
|
|
raw_spin_unlock_irqrestore(&desc->lock, flags);
|
|
|
|
out:
|
|
|
|
irq_unlock_sparse();
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* show_interrupts is needed by /proc/interrupts.
|
|
|
|
*/
|
|
|
|
int show_interrupts(struct seq_file *p, void *v)
|
|
|
|
{
|
2014-07-22 14:58:52 +00:00
|
|
|
int index = *(loff_t *) v;
|
|
|
|
int cpu, irq;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-05-15 14:52:39 +00:00
|
|
|
get_online_cpus();
|
2014-07-22 14:58:52 +00:00
|
|
|
if (index == 0) {
|
2005-04-16 22:20:36 +00:00
|
|
|
seq_puts(p, " ");
|
2013-01-02 14:18:18 +00:00
|
|
|
for_each_online_cpu(cpu)
|
2017-02-14 17:13:09 +00:00
|
|
|
seq_printf(p, "CPU%-8d", cpu);
|
2005-04-16 22:20:36 +00:00
|
|
|
seq_putc(p, '\n');
|
|
|
|
}
|
2016-06-02 12:57:17 +00:00
|
|
|
if (index < NR_IRQS_BASE) {
|
2014-07-22 14:58:52 +00:00
|
|
|
seq_printf(p, "%s: ", irqclass_main_desc[index].name);
|
|
|
|
irq = irqclass_main_desc[index].irq;
|
2013-01-02 14:18:18 +00:00
|
|
|
for_each_online_cpu(cpu)
|
2013-06-27 07:01:09 +00:00
|
|
|
seq_printf(p, "%10u ", kstat_irqs_cpu(irq, cpu));
|
2013-01-02 14:18:18 +00:00
|
|
|
seq_putc(p, '\n');
|
2013-06-27 07:01:09 +00:00
|
|
|
goto out;
|
2013-01-02 14:18:18 +00:00
|
|
|
}
|
2017-02-14 17:13:09 +00:00
|
|
|
if (index < nr_irqs) {
|
|
|
|
show_msi_interrupt(p, index);
|
2016-06-02 12:57:17 +00:00
|
|
|
goto out;
|
2017-02-14 17:13:09 +00:00
|
|
|
}
|
2014-07-22 14:58:52 +00:00
|
|
|
for (index = 0; index < NR_ARCH_IRQS; index++) {
|
|
|
|
seq_printf(p, "%s: ", irqclass_sub_desc[index].name);
|
|
|
|
irq = irqclass_sub_desc[index].irq;
|
2013-01-02 14:18:18 +00:00
|
|
|
for_each_online_cpu(cpu)
|
2013-06-27 07:01:09 +00:00
|
|
|
seq_printf(p, "%10u ",
|
|
|
|
per_cpu(irq_stat, cpu).irqs[irq]);
|
2014-07-22 14:58:52 +00:00
|
|
|
if (irqclass_sub_desc[index].desc)
|
|
|
|
seq_printf(p, " %s", irqclass_sub_desc[index].desc);
|
2013-01-02 14:18:18 +00:00
|
|
|
seq_putc(p, '\n');
|
|
|
|
}
|
2013-06-27 07:01:09 +00:00
|
|
|
out:
|
2008-05-15 14:52:39 +00:00
|
|
|
put_online_cpus();
|
2013-01-02 14:18:18 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-05-07 15:44:20 +00:00
|
|
|
unsigned int arch_dynirq_lower_bound(unsigned int from)
|
|
|
|
{
|
2014-11-14 10:01:37 +00:00
|
|
|
return from < NR_IRQS_BASE ? NR_IRQS_BASE : from;
|
2014-05-07 15:44:20 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Switch to the asynchronous interrupt stack for softirq execution.
|
|
|
|
*/
|
2013-09-05 13:49:45 +00:00
|
|
|
void do_softirq_own_stack(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-09-05 13:49:45 +00:00
|
|
|
unsigned long old, new;
|
|
|
|
|
2016-01-31 16:06:16 +00:00
|
|
|
old = current_stack_pointer();
|
2013-09-05 13:49:45 +00:00
|
|
|
/* Check against async. stack address range. */
|
|
|
|
new = S390_lowcore.async_stack;
|
2018-09-18 16:23:40 +00:00
|
|
|
if (((new - old) >> (PAGE_SHIFT + THREAD_SIZE_ORDER)) != 0) {
|
2017-09-07 15:03:19 +00:00
|
|
|
CALL_ON_STACK(__do_softirq, new, 0);
|
2013-09-05 13:49:45 +00:00
|
|
|
} else {
|
|
|
|
/* We are already on the async stack. */
|
|
|
|
__do_softirq();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2007-02-05 20:16:44 +00:00
|
|
|
|
2011-05-26 07:48:24 +00:00
|
|
|
/*
|
2011-07-24 08:48:27 +00:00
|
|
|
* ext_int_hash[index] is the list head for all external interrupts that hash
|
|
|
|
* to this index.
|
2011-05-26 07:48:24 +00:00
|
|
|
*/
|
2013-09-09 05:44:43 +00:00
|
|
|
static struct hlist_head ext_int_hash[32] ____cacheline_aligned;
|
2011-05-26 07:48:24 +00:00
|
|
|
|
|
|
|
struct ext_int_info {
|
|
|
|
ext_int_handler_t handler;
|
2013-09-03 12:12:07 +00:00
|
|
|
struct hlist_node entry;
|
2011-07-24 08:48:27 +00:00
|
|
|
struct rcu_head rcu;
|
2013-09-03 12:12:07 +00:00
|
|
|
u16 code;
|
2011-05-26 07:48:24 +00:00
|
|
|
};
|
|
|
|
|
2011-07-24 08:48:27 +00:00
|
|
|
/* ext_int_hash_lock protects the handler lists for external interrupts */
|
2013-09-06 17:10:48 +00:00
|
|
|
static DEFINE_SPINLOCK(ext_int_hash_lock);
|
2011-07-24 08:48:27 +00:00
|
|
|
|
2011-05-26 07:48:24 +00:00
|
|
|
static inline int ext_hash(u16 code)
|
|
|
|
{
|
2013-09-09 05:44:43 +00:00
|
|
|
BUILD_BUG_ON(!is_power_of_2(ARRAY_SIZE(ext_int_hash)));
|
|
|
|
|
|
|
|
return (code + (code >> 9)) & (ARRAY_SIZE(ext_int_hash) - 1);
|
2011-05-26 07:48:24 +00:00
|
|
|
}
|
|
|
|
|
2014-03-31 13:24:08 +00:00
|
|
|
int register_external_irq(u16 code, ext_int_handler_t handler)
|
2011-05-26 07:48:24 +00:00
|
|
|
{
|
|
|
|
struct ext_int_info *p;
|
2011-07-24 08:48:27 +00:00
|
|
|
unsigned long flags;
|
2011-05-26 07:48:24 +00:00
|
|
|
int index;
|
|
|
|
|
|
|
|
p = kmalloc(sizeof(*p), GFP_ATOMIC);
|
|
|
|
if (!p)
|
|
|
|
return -ENOMEM;
|
|
|
|
p->code = code;
|
|
|
|
p->handler = handler;
|
|
|
|
index = ext_hash(code);
|
2011-07-24 08:48:27 +00:00
|
|
|
|
|
|
|
spin_lock_irqsave(&ext_int_hash_lock, flags);
|
2013-09-03 12:12:07 +00:00
|
|
|
hlist_add_head_rcu(&p->entry, &ext_int_hash[index]);
|
2011-07-24 08:48:27 +00:00
|
|
|
spin_unlock_irqrestore(&ext_int_hash_lock, flags);
|
2011-05-26 07:48:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-03-31 13:24:08 +00:00
|
|
|
EXPORT_SYMBOL(register_external_irq);
|
2011-05-26 07:48:24 +00:00
|
|
|
|
2014-03-31 13:24:08 +00:00
|
|
|
int unregister_external_irq(u16 code, ext_int_handler_t handler)
|
2011-05-26 07:48:24 +00:00
|
|
|
{
|
2011-07-24 08:48:27 +00:00
|
|
|
struct ext_int_info *p;
|
|
|
|
unsigned long flags;
|
|
|
|
int index = ext_hash(code);
|
2011-05-26 07:48:24 +00:00
|
|
|
|
2011-07-24 08:48:27 +00:00
|
|
|
spin_lock_irqsave(&ext_int_hash_lock, flags);
|
2013-09-03 12:12:07 +00:00
|
|
|
hlist_for_each_entry_rcu(p, &ext_int_hash[index], entry) {
|
2011-07-24 08:48:27 +00:00
|
|
|
if (p->code == code && p->handler == handler) {
|
2013-09-03 12:12:07 +00:00
|
|
|
hlist_del_rcu(&p->entry);
|
2012-01-07 00:59:51 +00:00
|
|
|
kfree_rcu(p, rcu);
|
2011-07-24 08:48:27 +00:00
|
|
|
}
|
2012-04-11 12:28:09 +00:00
|
|
|
}
|
2011-07-24 08:48:27 +00:00
|
|
|
spin_unlock_irqrestore(&ext_int_hash_lock, flags);
|
2011-05-26 07:48:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-03-31 13:24:08 +00:00
|
|
|
EXPORT_SYMBOL(unregister_external_irq);
|
2011-05-26 07:48:24 +00:00
|
|
|
|
2013-06-27 07:01:09 +00:00
|
|
|
static irqreturn_t do_ext_interrupt(int irq, void *dummy)
|
2011-05-26 07:48:24 +00:00
|
|
|
{
|
2013-06-27 07:01:09 +00:00
|
|
|
struct pt_regs *regs = get_irq_regs();
|
2013-06-17 12:54:02 +00:00
|
|
|
struct ext_code ext_code;
|
2011-05-26 07:48:24 +00:00
|
|
|
struct ext_int_info *p;
|
|
|
|
int index;
|
|
|
|
|
2013-06-17 12:54:02 +00:00
|
|
|
ext_code = *(struct ext_code *) ®s->int_code;
|
2014-03-31 13:24:08 +00:00
|
|
|
if (ext_code.code != EXT_IRQ_CLK_COMP)
|
2014-09-30 15:37:52 +00:00
|
|
|
set_cpu_flag(CIF_NOHZ_DELAY);
|
2011-07-24 08:48:27 +00:00
|
|
|
|
2012-03-11 15:59:31 +00:00
|
|
|
index = ext_hash(ext_code.code);
|
2011-07-24 08:48:27 +00:00
|
|
|
rcu_read_lock();
|
2013-09-03 12:12:07 +00:00
|
|
|
hlist_for_each_entry_rcu(p, &ext_int_hash[index], entry) {
|
|
|
|
if (unlikely(p->code != ext_code.code))
|
|
|
|
continue;
|
|
|
|
p->handler(ext_code, regs->int_parm, regs->int_parm_long);
|
|
|
|
}
|
2011-07-24 08:48:27 +00:00
|
|
|
rcu_read_unlock();
|
2013-06-27 07:01:09 +00:00
|
|
|
return IRQ_HANDLED;
|
2011-05-26 07:48:24 +00:00
|
|
|
}
|
|
|
|
|
2013-06-27 07:01:09 +00:00
|
|
|
static struct irqaction external_interrupt = {
|
|
|
|
.name = "EXT",
|
|
|
|
.handler = do_ext_interrupt,
|
|
|
|
};
|
|
|
|
|
|
|
|
void __init init_ext_interrupts(void)
|
2011-07-24 08:48:27 +00:00
|
|
|
{
|
2013-06-27 07:01:09 +00:00
|
|
|
int idx;
|
|
|
|
|
|
|
|
for (idx = 0; idx < ARRAY_SIZE(ext_int_hash); idx++)
|
2013-09-03 12:12:07 +00:00
|
|
|
INIT_HLIST_HEAD(&ext_int_hash[idx]);
|
2013-06-27 07:01:09 +00:00
|
|
|
|
|
|
|
irq_set_chip_and_handler(EXT_INTERRUPT,
|
|
|
|
&dummy_irq_chip, handle_percpu_irq);
|
|
|
|
setup_irq(EXT_INTERRUPT, &external_interrupt);
|
2011-07-24 08:48:27 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 11:35:45 +00:00
|
|
|
static DEFINE_SPINLOCK(irq_subclass_lock);
|
|
|
|
static unsigned char irq_subclass_refcount[64];
|
2011-05-26 07:48:24 +00:00
|
|
|
|
2013-09-04 11:35:45 +00:00
|
|
|
void irq_subclass_register(enum irq_subclass subclass)
|
2011-05-26 07:48:24 +00:00
|
|
|
{
|
2013-09-04 11:35:45 +00:00
|
|
|
spin_lock(&irq_subclass_lock);
|
|
|
|
if (!irq_subclass_refcount[subclass])
|
|
|
|
ctl_set_bit(0, subclass);
|
|
|
|
irq_subclass_refcount[subclass]++;
|
|
|
|
spin_unlock(&irq_subclass_lock);
|
2011-05-26 07:48:24 +00:00
|
|
|
}
|
2013-09-04 11:35:45 +00:00
|
|
|
EXPORT_SYMBOL(irq_subclass_register);
|
2011-05-26 07:48:24 +00:00
|
|
|
|
2013-09-04 11:35:45 +00:00
|
|
|
void irq_subclass_unregister(enum irq_subclass subclass)
|
2011-05-26 07:48:24 +00:00
|
|
|
{
|
2013-09-04 11:35:45 +00:00
|
|
|
spin_lock(&irq_subclass_lock);
|
|
|
|
irq_subclass_refcount[subclass]--;
|
|
|
|
if (!irq_subclass_refcount[subclass])
|
|
|
|
ctl_clear_bit(0, subclass);
|
|
|
|
spin_unlock(&irq_subclass_lock);
|
2011-05-26 07:48:24 +00:00
|
|
|
}
|
2013-09-04 11:35:45 +00:00
|
|
|
EXPORT_SYMBOL(irq_subclass_unregister);
|