2 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
4 * This file contains the lowest level x86-specific interrupt
5 * entry, irq-stacks and irq statistics code. All the remaining
6 * irq logic is done by the generic kernel/irq/ code and
7 * by the x86-specific irq controller code. (e.g. i8259.c and
11 #include <linux/module.h>
12 #include <linux/seq_file.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel_stat.h>
15 #include <linux/notifier.h>
16 #include <linux/cpu.h>
17 #include <linux/delay.h>
18 #include <linux/uaccess.h>
19 #include <linux/percpu.h>
23 DEFINE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t
, irq_stat
);
24 EXPORT_PER_CPU_SYMBOL(irq_stat
);
26 DEFINE_PER_CPU(struct pt_regs
*, irq_regs
);
27 EXPORT_PER_CPU_SYMBOL(irq_regs
);
29 #ifdef CONFIG_DEBUG_STACKOVERFLOW
30 /* Debugging check for stack overflow: is there less than 1KB free? */
31 static int check_stack_overflow(void)
35 __asm__
__volatile__("andl %%esp,%0" :
36 "=r" (sp
) : "0" (THREAD_SIZE
- 1));
38 return sp
< (sizeof(struct thread_info
) + STACK_WARN
);
41 static void print_stack_overflow(void)
43 printk(KERN_WARNING
"low stack detected by irq handler\n");
48 static inline int check_stack_overflow(void) { return 0; }
49 static inline void print_stack_overflow(void) { }
52 #ifdef CONFIG_4KSTACKS
54 * per-CPU IRQ handling contexts (thread information and stack)
57 struct thread_info tinfo
;
58 u32 stack
[THREAD_SIZE
/sizeof(u32
)];
59 } __attribute__((aligned(PAGE_SIZE
)));
61 static DEFINE_PER_CPU(union irq_ctx
*, hardirq_ctx
);
62 static DEFINE_PER_CPU(union irq_ctx
*, softirq_ctx
);
64 static DEFINE_PER_CPU_PAGE_ALIGNED(union irq_ctx
, hardirq_stack
);
65 static DEFINE_PER_CPU_PAGE_ALIGNED(union irq_ctx
, softirq_stack
);
67 static void call_on_stack(void *func
, void *stack
)
69 asm volatile("xchgl %%ebx,%%esp \n"
75 : "memory", "cc", "edx", "ecx", "eax");
79 execute_on_irq_stack(int overflow
, struct irq_desc
*desc
, int irq
)
81 union irq_ctx
*curctx
, *irqctx
;
84 curctx
= (union irq_ctx
*) current_thread_info();
85 irqctx
= __get_cpu_var(hardirq_ctx
);
88 * this is where we switch to the IRQ stack. However, if we are
89 * already using the IRQ stack (because we interrupted a hardirq
90 * handler) we can't do that and just have to keep using the
91 * current stack (which is the irq stack already after all)
93 if (unlikely(curctx
== irqctx
))
96 /* build the stack frame on the IRQ stack */
97 isp
= (u32
*) ((char *)irqctx
+ sizeof(*irqctx
));
98 irqctx
->tinfo
.task
= curctx
->tinfo
.task
;
99 irqctx
->tinfo
.previous_esp
= current_stack_pointer
;
102 * Copy the softirq bits in preempt_count so that the
103 * softirq checks work in the hardirq context.
105 irqctx
->tinfo
.preempt_count
=
106 (irqctx
->tinfo
.preempt_count
& ~SOFTIRQ_MASK
) |
107 (curctx
->tinfo
.preempt_count
& SOFTIRQ_MASK
);
109 if (unlikely(overflow
))
110 call_on_stack(print_stack_overflow
, isp
);
112 asm volatile("xchgl %%ebx,%%esp \n"
114 "movl %%ebx,%%esp \n"
115 : "=a" (arg1
), "=d" (arg2
), "=b" (isp
)
116 : "0" (irq
), "1" (desc
), "2" (isp
),
117 "D" (desc
->handle_irq
)
118 : "memory", "cc", "ecx");
123 * allocate per-cpu stacks for hardirq and for softirq processing
125 void __cpuinit
irq_ctx_init(int cpu
)
127 union irq_ctx
*irqctx
;
129 if (per_cpu(hardirq_ctx
, cpu
))
132 irqctx
= &per_cpu(hardirq_stack
, cpu
);
133 irqctx
->tinfo
.task
= NULL
;
134 irqctx
->tinfo
.exec_domain
= NULL
;
135 irqctx
->tinfo
.cpu
= cpu
;
136 irqctx
->tinfo
.preempt_count
= HARDIRQ_OFFSET
;
137 irqctx
->tinfo
.addr_limit
= MAKE_MM_SEG(0);
139 per_cpu(hardirq_ctx
, cpu
) = irqctx
;
141 irqctx
= &per_cpu(softirq_stack
, cpu
);
142 irqctx
->tinfo
.task
= NULL
;
143 irqctx
->tinfo
.exec_domain
= NULL
;
144 irqctx
->tinfo
.cpu
= cpu
;
145 irqctx
->tinfo
.preempt_count
= 0;
146 irqctx
->tinfo
.addr_limit
= MAKE_MM_SEG(0);
148 per_cpu(softirq_ctx
, cpu
) = irqctx
;
150 printk(KERN_DEBUG
"CPU %u irqstacks, hard=%p soft=%p\n",
151 cpu
, per_cpu(hardirq_ctx
, cpu
), per_cpu(softirq_ctx
, cpu
));
154 void irq_ctx_exit(int cpu
)
156 per_cpu(hardirq_ctx
, cpu
) = NULL
;
159 asmlinkage
void do_softirq(void)
162 struct thread_info
*curctx
;
163 union irq_ctx
*irqctx
;
169 local_irq_save(flags
);
171 if (local_softirq_pending()) {
172 curctx
= current_thread_info();
173 irqctx
= __get_cpu_var(softirq_ctx
);
174 irqctx
->tinfo
.task
= curctx
->task
;
175 irqctx
->tinfo
.previous_esp
= current_stack_pointer
;
177 /* build the stack frame on the softirq stack */
178 isp
= (u32
*) ((char *)irqctx
+ sizeof(*irqctx
));
180 call_on_stack(__do_softirq
, isp
);
182 * Shouldnt happen, we returned above if in_interrupt():
184 WARN_ON_ONCE(softirq_count());
187 local_irq_restore(flags
);
192 execute_on_irq_stack(int overflow
, struct irq_desc
*desc
, int irq
) { return 0; }
195 bool handle_irq(unsigned irq
, struct pt_regs
*regs
)
197 struct irq_desc
*desc
;
200 overflow
= check_stack_overflow();
202 desc
= irq_to_desc(irq
);
206 if (!execute_on_irq_stack(overflow
, desc
, irq
)) {
207 if (unlikely(overflow
))
208 print_stack_overflow();
209 desc
->handle_irq(irq
, desc
);
215 #ifdef CONFIG_HOTPLUG_CPU
217 /* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
218 void fixup_irqs(void)
222 struct irq_desc
*desc
;
224 for_each_irq_desc(irq
, desc
) {
225 const struct cpumask
*affinity
;
232 affinity
= desc
->affinity
;
233 if (cpumask_any_and(affinity
, cpu_online_mask
) >= nr_cpu_ids
) {
234 printk("Breaking affinity for irq %i\n", irq
);
235 affinity
= cpu_all_mask
;
237 if (desc
->chip
->set_affinity
)
238 desc
->chip
->set_affinity(irq
, affinity
);
239 else if (desc
->action
&& !(warned
++))
240 printk("Cannot set affinity for irq %i\n", irq
);
245 /* Ingo Molnar says: "after the IO-APIC masks have been redirected
246 [note the nop - the interrupt-enable boundary on x86 is two
247 instructions from sti] - to flush out pending hardirqs and
248 IPIs. After this point nothing is supposed to reach this CPU." */
249 __asm__
__volatile__("sti; nop; cli");
252 /* That doesn't seem sufficient. Give it 1ms. */