Contributors: 30
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Linus Torvalds (pre-git) |
63 |
22.66% |
2 |
4.08% |
| Thomas Gleixner |
38 |
13.67% |
9 |
18.37% |
| Cyrill V. Gorcunov |
31 |
11.15% |
1 |
2.04% |
| Suresh B. Siddha |
29 |
10.43% |
1 |
2.04% |
| Yinghai Lu |
22 |
7.91% |
4 |
8.16% |
| Andi Kleen |
14 |
5.04% |
1 |
2.04% |
| Glauber de Oliveira Costa |
12 |
4.32% |
2 |
4.08% |
| Jaswinder Singh Rajput |
9 |
3.24% |
2 |
4.08% |
| Ingo Molnar |
6 |
2.16% |
3 |
6.12% |
| Sebastian Andrzej Siewior |
6 |
2.16% |
1 |
2.04% |
| Linus Torvalds |
5 |
1.80% |
2 |
4.08% |
| Brian Gerst |
4 |
1.44% |
1 |
2.04% |
| James Bottomley |
4 |
1.44% |
2 |
4.08% |
| Andrew Morton |
4 |
1.44% |
2 |
4.08% |
| Ville Syrjälä |
3 |
1.08% |
1 |
2.04% |
| Nicolai Stange |
3 |
1.08% |
1 |
2.04% |
| Jacob jun Pan |
3 |
1.08% |
1 |
2.04% |
| Pekka J Enberg |
3 |
1.08% |
1 |
2.04% |
| Adrian Bunk |
3 |
1.08% |
1 |
2.04% |
| Andy Shevchenko |
3 |
1.08% |
1 |
2.04% |
| Len Brown |
2 |
0.72% |
1 |
2.04% |
| Jiang Liu |
2 |
0.72% |
1 |
2.04% |
| Pavel Machek |
2 |
0.72% |
1 |
2.04% |
| Greg Kroah-Hartman |
1 |
0.36% |
1 |
2.04% |
| Maciej W. Rozycki |
1 |
0.36% |
1 |
2.04% |
| Mikael Pettersson |
1 |
0.36% |
1 |
2.04% |
| Dou Liyang |
1 |
0.36% |
1 |
2.04% |
| Arun Sharma |
1 |
0.36% |
1 |
2.04% |
| Paul Jimenez |
1 |
0.36% |
1 |
2.04% |
| Kay Sievers |
1 |
0.36% |
1 |
2.04% |
| Total |
278 |
|
49 |
|
// SPDX-License-Identifier: GPL-2.0
#include <linux/linkage.h>
#include <linux/errno.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/ioport.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/timex.h>
#include <linux/random.h>
#include <linux/kprobes.h>
#include <linux/init.h>
#include <linux/kernel_stat.h>
#include <linux/device.h>
#include <linux/bitops.h>
#include <linux/acpi.h>
#include <linux/io.h>
#include <linux/delay.h>
#include <linux/atomic.h>
#include <asm/timer.h>
#include <asm/hw_irq.h>
#include <asm/pgtable.h>
#include <asm/desc.h>
#include <asm/apic.h>
#include <asm/setup.h>
#include <asm/i8259.h>
#include <asm/traps.h>
#include <asm/prom.h>
/*
* ISA PIC or low IO-APIC triggered (INTA-cycle or APIC) interrupts:
* (these are usually mapped to vectors 0x30-0x3f)
*/
/*
* The IO-APIC gives us many more interrupt sources. Most of these
* are unused but an SMP system is supposed to have enough memory ...
* sometimes (mostly wrt. hw bugs) we get corrupted vectors all
* across the spectrum, so we really want to be prepared to get all
* of these. Plus, more powerful systems might have more than 64
* IO-APIC registers.
*
* (these are usually mapped into the 0x30-0xff vector range)
*/
/*
* IRQ2 is cascade interrupt to second interrupt controller
*/
static struct irqaction irq2 = {
.handler = no_action,
.name = "cascade",
.flags = IRQF_NO_THREAD,
};
DEFINE_PER_CPU(vector_irq_t, vector_irq) = {
[0 ... NR_VECTORS - 1] = VECTOR_UNUSED,
};
void __init init_ISA_irqs(void)
{
struct irq_chip *chip = legacy_pic->chip;
int i;
/*
* Try to set up the through-local-APIC virtual wire mode earlier.
*
* On some 32-bit UP machines, whose APIC has been disabled by BIOS
* and then got re-enabled by "lapic", it hangs at boot time without this.
*/
init_bsp_APIC();
legacy_pic->init(0);
for (i = 0; i < nr_legacy_irqs(); i++)
irq_set_chip_and_handler(i, chip, handle_level_irq);
}
void __init init_IRQ(void)
{
int i;
/*
* On cpu 0, Assign ISA_IRQ_VECTOR(irq) to IRQ 0..15.
* If these IRQ's are handled by legacy interrupt-controllers like PIC,
* then this configuration will likely be static after the boot. If
* these IRQ's are handled by more mordern controllers like IO-APIC,
* then this vector space can be freed and re-used dynamically as the
* irq's migrate etc.
*/
for (i = 0; i < nr_legacy_irqs(); i++)
per_cpu(vector_irq, 0)[ISA_IRQ_VECTOR(i)] = irq_to_desc(i);
x86_init.irqs.intr_init();
}
void __init native_init_IRQ(void)
{
/* Execute any quirks before the call gates are initialised: */
x86_init.irqs.pre_vector_init();
idt_setup_apic_and_irq_gates();
lapic_assign_system_vectors();
if (!acpi_ioapic && !of_ioapic && nr_legacy_irqs())
setup_irq(2, &irq2);
irq_ctx_init(smp_processor_id());
}