2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
|
|
|
|
*
|
|
|
|
* This file contains the lowest level x86-specific interrupt
|
|
|
|
* entry, irq-stacks and irq statistics code. All the remaining
|
|
|
|
* irq logic is done by the generic kernel/irq/ code and
|
|
|
|
* by the x86-specific irq controller code. (e.g. i8259.c and
|
|
|
|
* io_apic.c.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/kernel_stat.h>
|
2005-06-25 21:54:50 +00:00
|
|
|
#include <linux/notifier.h>
|
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/delay.h>
|
2009-01-04 11:02:36 +00:00
|
|
|
#include <linux/uaccess.h>
|
2009-02-17 03:46:42 +00:00
|
|
|
#include <linux/percpu.h>
|
2010-10-28 14:40:54 +00:00
|
|
|
#include <linux/mm.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-02-16 09:27:58 +00:00
|
|
|
#include <asm/apic.h>
|
|
|
|
|
2007-07-19 08:48:13 +00:00
|
|
|
DEFINE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat);
|
2005-04-16 22:20:36 +00:00
|
|
|
EXPORT_PER_CPU_SYMBOL(irq_stat);
|
|
|
|
|
2007-05-02 17:27:16 +00:00
|
|
|
DEFINE_PER_CPU(struct pt_regs *, irq_regs);
|
|
|
|
EXPORT_PER_CPU_SYMBOL(irq_regs);
|
|
|
|
|
2008-05-05 13:58:15 +00:00
|
|
|
#ifdef CONFIG_DEBUG_STACKOVERFLOW
|
2011-12-05 11:25:44 +00:00
|
|
|
|
|
|
|
int sysctl_panic_on_stackoverflow __read_mostly;
|
|
|
|
|
2008-05-05 13:58:15 +00:00
|
|
|
/* Debugging check for stack overflow: is there less than 1KB free? */
|
|
|
|
static int check_stack_overflow(void)
|
|
|
|
{
|
|
|
|
long sp;
|
|
|
|
|
|
|
|
__asm__ __volatile__("andl %%esp,%0" :
|
|
|
|
"=r" (sp) : "0" (THREAD_SIZE - 1));
|
|
|
|
|
|
|
|
return sp < (sizeof(struct thread_info) + STACK_WARN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_stack_overflow(void)
|
|
|
|
{
|
|
|
|
printk(KERN_WARNING "low stack detected by irq handler\n");
|
|
|
|
dump_stack();
|
2011-11-29 06:08:36 +00:00
|
|
|
if (sysctl_panic_on_stackoverflow)
|
|
|
|
panic("low stack detected by irq handler - check messages\n");
|
2008-05-05 13:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
static inline int check_stack_overflow(void) { return 0; }
|
|
|
|
static inline void print_stack_overflow(void) { }
|
|
|
|
#endif
|
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
DEFINE_PER_CPU(struct irq_stack *, hardirq_stack);
|
|
|
|
DEFINE_PER_CPU(struct irq_stack *, softirq_stack);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-05-05 16:13:50 +00:00
|
|
|
static void call_on_stack(void *func, void *stack)
|
2008-05-05 10:36:38 +00:00
|
|
|
{
|
2008-05-05 16:13:50 +00:00
|
|
|
asm volatile("xchgl %%ebx,%%esp \n"
|
|
|
|
"call *%%edi \n"
|
|
|
|
"movl %%ebx,%%esp \n"
|
|
|
|
: "=b" (stack)
|
|
|
|
: "0" (stack),
|
|
|
|
"D"(func)
|
|
|
|
: "memory", "cc", "edx", "ecx", "eax");
|
2008-05-05 10:36:38 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
/* how to get the current stack pointer from C */
|
2014-03-07 07:52:32 +00:00
|
|
|
#define current_stack_pointer ({ \
|
|
|
|
unsigned long sp; \
|
|
|
|
asm("mov %%esp,%0" : "=g" (sp)); \
|
|
|
|
sp; \
|
|
|
|
})
|
2014-02-06 14:41:31 +00:00
|
|
|
|
|
|
|
static inline void *current_stack(void)
|
|
|
|
{
|
|
|
|
return (void *)(current_stack_pointer & ~(THREAD_SIZE - 1));
|
|
|
|
}
|
|
|
|
|
2008-05-05 13:58:15 +00:00
|
|
|
static inline int
|
|
|
|
execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq)
|
|
|
|
{
|
2014-02-06 14:41:31 +00:00
|
|
|
struct irq_stack *curstk, *irqstk;
|
2014-02-06 14:41:30 +00:00
|
|
|
u32 *isp, *prev_esp, arg1, arg2;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
curstk = (struct irq_stack *) current_stack();
|
|
|
|
irqstk = __this_cpu_read(hardirq_stack);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* this is where we switch to the IRQ stack. However, if we are
|
|
|
|
* already using the IRQ stack (because we interrupted a hardirq
|
|
|
|
* handler) we can't do that and just have to keep using the
|
|
|
|
* current stack (which is the irq stack already after all)
|
|
|
|
*/
|
2014-02-06 14:41:31 +00:00
|
|
|
if (unlikely(curstk == irqstk))
|
2008-05-05 13:58:15 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
isp = (u32 *) ((char *)irqstk + sizeof(*irqstk));
|
|
|
|
|
|
|
|
/* Save the next esp at the bottom of the stack */
|
|
|
|
prev_esp = (u32 *)irqstk;
|
2014-02-06 14:41:30 +00:00
|
|
|
*prev_esp = current_stack_pointer;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-05-05 13:58:15 +00:00
|
|
|
if (unlikely(overflow))
|
2008-05-05 16:13:50 +00:00
|
|
|
call_on_stack(print_stack_overflow, isp);
|
|
|
|
|
|
|
|
asm volatile("xchgl %%ebx,%%esp \n"
|
|
|
|
"call *%%edi \n"
|
|
|
|
"movl %%ebx,%%esp \n"
|
|
|
|
: "=a" (arg1), "=d" (arg2), "=b" (isp)
|
|
|
|
: "0" (irq), "1" (desc), "2" (isp),
|
|
|
|
"D" (desc->handle_irq)
|
|
|
|
: "memory", "cc", "ecx");
|
2005-04-16 22:20:36 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allocate per-cpu stacks for hardirq and for softirq processing
|
|
|
|
*/
|
x86: delete __cpuinit usage from all x86 files
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0 ("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
Note that some harmless section mismatch warnings may result, since
notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
are flagged as __cpuinit -- so if we remove the __cpuinit from
arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
content into no-ops as early as possible, since that will get rid
of these warnings. In any case, they are temporary and harmless.
This removes all the arch/x86 uses of the __cpuinit macros from
all C files. x86 only had the one __CPUINIT used in assembly files,
and it wasn't paired off with a .previous or a __FINIT, so we can
delete it directly w/o any corresponding additional change there.
[1] https://lkml.org/lkml/2013/5/20/589
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Acked-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2013-06-18 22:23:59 +00:00
|
|
|
void irq_ctx_init(int cpu)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-02-06 14:41:31 +00:00
|
|
|
struct irq_stack *irqstk;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
if (per_cpu(hardirq_stack, cpu))
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
irqstk = page_address(alloc_pages_node(cpu_to_node(cpu),
|
2012-05-05 15:05:42 +00:00
|
|
|
THREADINFO_GFP,
|
|
|
|
THREAD_SIZE_ORDER));
|
2014-02-06 14:41:31 +00:00
|
|
|
per_cpu(hardirq_stack, cpu) = irqstk;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
irqstk = page_address(alloc_pages_node(cpu_to_node(cpu),
|
2012-05-05 15:05:42 +00:00
|
|
|
THREADINFO_GFP,
|
|
|
|
THREAD_SIZE_ORDER));
|
2014-02-06 14:41:31 +00:00
|
|
|
per_cpu(softirq_stack, cpu) = irqstk;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-05-05 16:13:50 +00:00
|
|
|
printk(KERN_DEBUG "CPU %u irqstacks, hard=%p soft=%p\n",
|
2014-02-06 14:41:31 +00:00
|
|
|
cpu, per_cpu(hardirq_stack, cpu), per_cpu(softirq_stack, cpu));
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-09-05 13:49:45 +00:00
|
|
|
void do_softirq_own_stack(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-02-06 14:41:31 +00:00
|
|
|
struct thread_info *curstk;
|
|
|
|
struct irq_stack *irqstk;
|
2014-02-06 14:41:30 +00:00
|
|
|
u32 *isp, *prev_esp;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-02-06 14:41:31 +00:00
|
|
|
curstk = current_stack();
|
|
|
|
irqstk = __this_cpu_read(softirq_stack);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-09-05 13:49:45 +00:00
|
|
|
/* build the stack frame on the softirq stack */
|
2014-02-06 14:41:31 +00:00
|
|
|
isp = (u32 *) ((char *)irqstk + sizeof(*irqstk));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-02-06 14:41:30 +00:00
|
|
|
/* Push the previous esp onto the stack */
|
2014-02-06 14:41:31 +00:00
|
|
|
prev_esp = (u32 *)irqstk;
|
2014-02-06 14:41:30 +00:00
|
|
|
*prev_esp = current_stack_pointer;
|
|
|
|
|
2013-09-05 13:49:45 +00:00
|
|
|
call_on_stack(__do_softirq, isp);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-05-05 16:13:50 +00:00
|
|
|
|
2009-02-06 22:09:40 +00:00
|
|
|
bool handle_irq(unsigned irq, struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
struct irq_desc *desc;
|
|
|
|
int overflow;
|
|
|
|
|
|
|
|
overflow = check_stack_overflow();
|
|
|
|
|
|
|
|
desc = irq_to_desc(irq);
|
|
|
|
if (unlikely(!desc))
|
|
|
|
return false;
|
|
|
|
|
2012-02-19 19:46:36 +00:00
|
|
|
if (user_mode_vm(regs) || !execute_on_irq_stack(overflow, desc, irq)) {
|
2009-02-06 22:09:40 +00:00
|
|
|
if (unlikely(overflow))
|
|
|
|
print_stack_overflow();
|
|
|
|
desc->handle_irq(irq, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|