irq_64.c 3.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 *	Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
 *
 * This file contains the lowest level x86_64-specific interrupt
 * entry and irq statistics code. All the remaining irq logic is
 * done by the generic kernel/irq/ code and in the
 * x86_64-specific irq controller code. (e.g. i8259.c and
 * io_apic.c.)
 */

#include <linux/kernel_stat.h>
#include <linux/interrupt.h>
#include <linux/seq_file.h>
#include <linux/module.h>
A
Ashok Raj 已提交
15
#include <linux/delay.h>
L
Linus Torvalds 已提交
16 17
#include <asm/uaccess.h>
#include <asm/io_apic.h>
A
Andi Kleen 已提交
18
#include <asm/idle.h>
19
#include <asm/smp.h>
L
Linus Torvalds 已提交
20

21 22 23 24 25 26 27 28 29 30
#ifdef CONFIG_DEBUG_STACKOVERFLOW
/*
 * Probabilistic stack overflow check:
 *
 * Only check the stack in process context, because everything else
 * runs on the big interrupt stacks. Checking reliably is too expensive,
 * so we just check from interrupts.
 */
static inline void stack_overflow_check(struct pt_regs *regs)
{
R
Roman Zippel 已提交
31
	u64 curbase = (u64)task_stack_page(current);
32
	static unsigned long warned = INITIAL_JIFFIES - 60*HZ;
33

34
	if (regs->sp >= curbase && regs->sp <= curbase + THREAD_SIZE &&
35 36 37
			regs->sp < curbase + sizeof(struct thread_info) +
			sizeof(struct pt_regs) + 128 &&
			time_after(jiffies, warned + 60*HZ)) {
38 39
		printk("do_IRQ: %s near stack overflow (cur:%Lx,sp:%lx)\n",
		       current->comm, curbase, regs->sp);
40 41 42 43 44 45
		show_stack(NULL,NULL);
		warned = jiffies;
	}
}
#endif

L
Linus Torvalds 已提交
46 47 48 49 50 51
/*
 * do_IRQ handles all normal device IRQ's (the special
 * SMP cross-CPU interrupts have their own specific
 * handlers).
 */
asmlinkage unsigned int do_IRQ(struct pt_regs *regs)
52 53
{
	struct pt_regs *old_regs = set_irq_regs(regs);
54
	struct irq_desc *desc;
55

56
	/* high bit used in ret_from_ code  */
57
	unsigned vector = ~regs->orig_ax;
58 59 60 61
	unsigned irq;

	exit_idle();
	irq_enter();
62
	irq = __get_cpu_var(vector_irq)[vector];
L
Linus Torvalds 已提交
63

64 65 66
#ifdef CONFIG_DEBUG_STACKOVERFLOW
	stack_overflow_check(regs);
#endif
67

68
	desc = irq_to_desc(irq);
69 70
	if (likely(desc))
		generic_handle_irq_desc(irq, desc);
71 72 73 74 75 76 77 78
	else {
		if (!disable_apic)
			ack_APIC_irq();

		if (printk_ratelimit())
			printk(KERN_EMERG "%s: %d.%d No irq handler for vector\n",
				__func__, smp_processor_id(), vector);
	}
79

L
Linus Torvalds 已提交
80 81
	irq_exit();

82
	set_irq_regs(old_regs);
L
Linus Torvalds 已提交
83 84 85
	return 1;
}

A
Ashok Raj 已提交
86 87 88 89 90
#ifdef CONFIG_HOTPLUG_CPU
void fixup_irqs(cpumask_t map)
{
	unsigned int irq;
	static int warned;
91
	struct irq_desc *desc;
A
Ashok Raj 已提交
92

93
	for_each_irq_desc(irq, desc) {
A
Ashok Raj 已提交
94
		cpumask_t mask;
95 96 97
		int break_affinity = 0;
		int set_affinity = 1;

A
Ashok Raj 已提交
98 99 100
		if (irq == 2)
			continue;

101
		/* interrupt's are disabled at this point */
102
		spin_lock(&desc->lock);
103 104

		if (!irq_has_action(irq) ||
105 106
		    cpus_equal(desc->affinity, map)) {
			spin_unlock(&desc->lock);
107 108 109
			continue;
		}

110
		cpus_and(mask, desc->affinity, map);
111 112
		if (cpus_empty(mask)) {
			break_affinity = 1;
A
Ashok Raj 已提交
113 114
			mask = map;
		}
115

116 117
		if (desc->chip->mask)
			desc->chip->mask(irq);
118

119 120
		if (desc->chip->set_affinity)
			desc->chip->set_affinity(irq, mask);
121 122 123
		else if (!(warned++))
			set_affinity = 0;

124 125
		if (desc->chip->unmask)
			desc->chip->unmask(irq);
126

127
		spin_unlock(&desc->lock);
128 129 130 131

		if (break_affinity && set_affinity)
			printk("Broke affinity for irq %i\n", irq);
		else if (!set_affinity)
A
Ashok Raj 已提交
132 133 134 135 136 137 138 139 140
			printk("Cannot set affinity for irq %i\n", irq);
	}

	/* That doesn't seem sufficient.  Give it 1ms. */
	local_irq_enable();
	mdelay(1);
	local_irq_disable();
}
#endif
141 142 143 144 145 146 147 148 149 150 151 152 153 154

extern void call_softirq(void);

asmlinkage void do_softirq(void)
{
 	__u32 pending;
 	unsigned long flags;

 	if (in_interrupt())
 		return;

 	local_irq_save(flags);
 	pending = local_softirq_pending();
 	/* Switch to interrupt stack */
155
 	if (pending) {
156
		call_softirq();
157 158
		WARN_ON_ONCE(softirq_count());
	}
159 160
 	local_irq_restore(flags);
}