cregit-Linux how code gets into the kernel

Release 4.10 arch/x86/kernel/irqinit.c

Directory: arch/x86/kernel
#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/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,
};


int vector_used_by_percpu_irq(unsigned int vector) { int cpu; for_each_online_cpu(cpu) { if (!IS_ERR_OR_NULL(per_cpu(vector_irq, cpu)[vector])) return 1; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
yinghai luyinghai lu3690.00%150.00%
thomas gleixnerthomas gleixner410.00%150.00%
Total40100.00%2100.00%


void __init init_ISA_irqs(void) { struct irq_chip *chip = legacy_pic->chip; int i; #if defined(CONFIG_X86_64) || defined(CONFIG_X86_LOCAL_APIC) init_bsp_APIC(); #endif legacy_pic->init(0); for (i = 0; i < nr_legacy_irqs(); i++) irq_set_chip_and_handler(i, chip, handle_level_irq); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git2740.91%111.11%
pekka j enbergpekka j enberg2233.33%222.22%
thomas gleixnerthomas gleixner1015.15%111.11%
jacob panjacob pan34.55%111.11%
yinghai luyinghai lu23.03%222.22%
jiang liujiang liu11.52%111.11%
maciej w. rozyckimaciej w. rozycki11.52%111.11%
Total66100.00%9100.00%


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(); }

Contributors

PersonTokensPropCommitsCommitProp
suresh siddhasuresh siddha2854.90%114.29%
thomas gleixnerthomas gleixner1325.49%342.86%
rusty russellrusty russell59.80%114.29%
brian gerstbrian gerst47.84%114.29%
jiang liujiang liu11.96%114.29%
Total51100.00%7100.00%


static void __init smp_intr_init(void) { #ifdef CONFIG_SMP /* * The reschedule interrupt is a CPU-to-CPU reschedule-helper * IPI, driven by wakeup. */ alloc_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt); /* IPI for generic function call */ alloc_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt); /* IPI for generic single function call */ alloc_intr_gate(CALL_FUNCTION_SINGLE_VECTOR, call_function_single_interrupt); /* Low priority IPI to cleanup after moving an irq */ set_intr_gate(IRQ_MOVE_CLEANUP_VECTOR, irq_move_cleanup_interrupt); set_bit(IRQ_MOVE_CLEANUP_VECTOR, used_vectors); /* IPI used for rebooting/stopping */ alloc_intr_gate(REBOOT_VECTOR, reboot_interrupt); #endif /* CONFIG_SMP */ }

Contributors

PersonTokensPropCommitsCommitProp
cyrill gorcunovcyrill gorcunov2438.71%112.50%
yinghai luyinghai lu1625.81%225.00%
pekka j enbergpekka j enberg1016.13%337.50%
andi kleenandi kleen812.90%112.50%
pre-gitpre-git46.45%112.50%
Total62100.00%8100.00%


static void __init apic_intr_init(void) { smp_intr_init(); #ifdef CONFIG_X86_THERMAL_VECTOR alloc_intr_gate(THERMAL_APIC_VECTOR, thermal_interrupt); #endif #ifdef CONFIG_X86_MCE_THRESHOLD alloc_intr_gate(THRESHOLD_APIC_VECTOR, threshold_interrupt); #endif #ifdef CONFIG_X86_MCE_AMD alloc_intr_gate(DEFERRED_ERROR_VECTOR, deferred_error_interrupt); #endif #ifdef CONFIG_X86_LOCAL_APIC /* self generated IPI for local APIC timer */ alloc_intr_gate(LOCAL_TIMER_VECTOR, apic_timer_interrupt); /* IPI for X86 platform specific use */ alloc_intr_gate(X86_PLATFORM_IPI_VECTOR, x86_platform_ipi); #ifdef CONFIG_HAVE_KVM /* IPI for KVM to deliver posted interrupt */ alloc_intr_gate(POSTED_INTR_VECTOR, kvm_posted_intr_ipi); /* IPI for KVM to deliver interrupt to wake up tasks */ alloc_intr_gate(POSTED_INTR_WAKEUP_VECTOR, kvm_posted_intr_wakeup_ipi); #endif /* IPI vectors for APIC spurious and error interrupts */ alloc_intr_gate(SPURIOUS_APIC_VECTOR, spurious_interrupt); alloc_intr_gate(ERROR_APIC_VECTOR, error_interrupt); /* IRQ work interrupts: */ # ifdef CONFIG_IRQ_WORK alloc_intr_gate(IRQ_WORK_VECTOR, irq_work_interrupt); # endif #endif }

Contributors

PersonTokensPropCommitsCommitProp
cyrill gorcunovcyrill gorcunov3630.51%16.25%
pekka j enbergpekka j enberg2622.03%318.75%
yang zhangyang zhang1311.02%16.25%
aravind gopalakrishnanaravind gopalakrishnan1210.17%16.25%
dimitri sivanichdimitri sivanich86.78%212.50%
feng wufeng wu86.78%16.25%
peter zijlstrapeter zijlstra43.39%16.25%
andi kleenandi kleen43.39%212.50%
h. peter anvinh. peter anvin32.54%16.25%
jan beulichjan beulich21.69%16.25%
hidehiro kawaihidehiro kawai10.85%16.25%
ingo molnaringo molnar10.85%16.25%
Total118100.00%16100.00%


void __init native_init_IRQ(void) { int i; /* Execute any quirks before the call gates are initialised: */ x86_init.irqs.pre_vector_init(); apic_intr_init(); /* * Cover the whole vector space, no vector can escape * us. (some of these will be overridden and become * 'special' SMP interrupts) */ i = FIRST_EXTERNAL_VECTOR; #ifndef CONFIG_X86_LOCAL_APIC #define first_system_vector NR_VECTORS #endif for_each_clear_bit_from(i, used_vectors, first_system_vector) { /* IA32_SYSCALL_VECTOR could be used in trap_init already. */ set_intr_gate(i, irq_entries_start + 8 * (i - FIRST_EXTERNAL_VECTOR)); } #ifdef CONFIG_X86_LOCAL_APIC for_each_clear_bit_from(i, used_vectors, NR_VECTORS) set_intr_gate(i, spurious_interrupt); #endif if (!acpi_ioapic && !of_ioapic && nr_legacy_irqs()) setup_irq(2, &irq2); #ifdef CONFIG_X86_32 irq_ctx_init(smp_processor_id()); #endif }

Contributors

PersonTokensPropCommitsCommitProp
jan beulichjan beulich3026.79%16.67%
pekka j enbergpekka j enberg3026.79%213.33%
cyrill gorcunovcyrill gorcunov1311.61%16.67%
akinobu mitaakinobu mita76.25%16.67%
denys vlasenkodenys vlasenko65.36%16.67%
thomas gleixnerthomas gleixner54.46%16.67%
andi kleenandi kleen43.57%16.67%
yinghai luyinghai lu43.57%16.67%
andy shevchenkoandy shevchenko32.68%16.67%
andrew mortonandrew morton32.68%16.67%
sebastian andrzej siewiorsebastian andrzej siewior32.68%16.67%
james bottomleyjames bottomley21.79%16.67%
pre-gitpre-git10.89%16.67%
mikael petterssonmikael pettersson10.89%16.67%
Total112100.00%15100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
pekka j enbergpekka j enberg10217.86%915.00%
cyrill gorcunovcyrill gorcunov9115.94%11.67%
yinghai luyinghai lu7513.13%46.67%
pre-gitpre-git6912.08%23.33%
thomas gleixnerthomas gleixner386.65%711.67%
jan beulichjan beulich325.60%11.67%
suresh siddhasuresh siddha295.08%11.67%
andi kleenandi kleen162.80%46.67%
yang zhangyang zhang132.28%11.67%
aravind gopalakrishnanaravind gopalakrishnan122.10%11.67%
dimitri sivanichdimitri sivanich81.40%23.33%
feng wufeng wu81.40%11.67%
jaswinder singh rajputjaswinder singh rajput71.23%11.67%
akinobu mitaakinobu mita71.23%11.67%
denys vlasenkodenys vlasenko61.05%11.67%
sebastian andrzej siewiorsebastian andrzej siewior61.05%11.67%
rusty russellrusty russell50.88%11.67%
ingo molnaringo molnar50.88%23.33%
linus torvaldslinus torvalds50.88%23.33%
peter zijlstrapeter zijlstra40.70%11.67%
andrew mortonandrew morton40.70%23.33%
james bottomleyjames bottomley40.70%23.33%
brian gerstbrian gerst40.70%11.67%
jacob panjacob pan30.53%11.67%
h. peter anvinh. peter anvin30.53%11.67%
andy shevchenkoandy shevchenko30.53%11.67%
adrian bunkadrian bunk30.53%11.67%
pavel machekpavel machek20.35%11.67%
jiang liujiang liu20.35%11.67%
kay sieverskay sievers10.18%11.67%
mikael petterssonmikael pettersson10.18%11.67%
hidehiro kawaihidehiro kawai10.18%11.67%
arun sharmaarun sharma10.18%11.67%
maciej w. rozyckimaciej w. rozycki10.18%11.67%
Total571100.00%60100.00%
Directory: arch/x86/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.