2 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
4 * This file contains the lowest level x86_64-specific interrupt
5 * entry and irq statistics code. All the remaining irq logic is
6 * done by the generic kernel/irq/ code and in the
7 * x86_64-specific irq controller code. (e.g. i8259.c and
11 #include <linux/kernel_stat.h>
12 #include <linux/interrupt.h>
13 #include <linux/seq_file.h>
14 #include <linux/module.h>
15 #include <linux/delay.h>
16 #include <linux/ftrace.h>
17 #include <linux/uaccess.h>
18 #include <linux/smp.h>
19 #include <asm/io_apic.h>
22 DEFINE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat);
23 EXPORT_PER_CPU_SYMBOL(irq_stat);
26 * Probabilistic stack overflow check:
28 * Only check the stack in process context, because everything else
29 * runs on the big interrupt stacks. Checking reliably is too expensive,
30 * so we just check from interrupts.
32 static inline void stack_overflow_check(struct pt_regs *regs)
34 #ifdef CONFIG_DEBUG_STACKOVERFLOW
35 u64 curbase = (u64)task_stack_page(current);
37 WARN_ONCE(regs->sp >= curbase &&
38 regs->sp <= curbase + THREAD_SIZE &&
39 regs->sp < curbase + sizeof(struct thread_info) +
40 sizeof(struct pt_regs) + 128,
42 "do_IRQ: %s near stack overflow (cur:%Lx,sp:%lx)\n",
43 current->comm, curbase, regs->sp);
48 * do_IRQ handles all normal device IRQ's (the special
49 * SMP cross-CPU interrupts have their own specific
52 asmlinkage unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
54 struct pt_regs *old_regs = set_irq_regs(regs);
55 struct irq_desc *desc;
57 /* high bit used in ret_from_ code */
58 unsigned vector = ~regs->orig_ax;
63 irq = __get_cpu_var(vector_irq)[vector];
65 stack_overflow_check(regs);
67 desc = irq_to_desc(irq);
69 generic_handle_irq_desc(irq, desc);
74 if (printk_ratelimit())
75 printk(KERN_EMERG "%s: %d.%d No irq handler for vector\n",
76 __func__, smp_processor_id(), vector);
81 set_irq_regs(old_regs);
85 #ifdef CONFIG_HOTPLUG_CPU
86 /* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
91 struct irq_desc *desc;
93 for_each_irq_desc(irq, desc) {
94 int break_affinity = 0;
96 const struct cpumask *affinity;
103 /* interrupt's are disabled at this point */
104 spin_lock(&desc->lock);
106 affinity = desc->affinity;
107 if (!irq_has_action(irq) ||
108 cpumask_equal(affinity, cpu_online_mask)) {
109 spin_unlock(&desc->lock);
113 if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
115 affinity = cpu_all_mask;
118 if (desc->chip->mask)
119 desc->chip->mask(irq);
121 if (desc->chip->set_affinity)
122 desc->chip->set_affinity(irq, affinity);
123 else if (!(warned++))
126 if (desc->chip->unmask)
127 desc->chip->unmask(irq);
129 spin_unlock(&desc->lock);
131 if (break_affinity && set_affinity)
132 printk("Broke affinity for irq %i\n", irq);
133 else if (!set_affinity)
134 printk("Cannot set affinity for irq %i\n", irq);
137 /* That doesn't seem sufficient. Give it 1ms. */
144 extern void call_softirq(void);
146 asmlinkage void do_softirq(void)
154 local_irq_save(flags);
155 pending = local_softirq_pending();
156 /* Switch to interrupt stack */
159 WARN_ON_ONCE(softirq_count());
161 local_irq_restore(flags);