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>
16
#include <linux/ftrace.h>
17 18
#include <linux/uaccess.h>
#include <linux/smp.h>
L
Linus Torvalds 已提交
19
#include <asm/io_apic.h>
A
Andi Kleen 已提交
20
#include <asm/idle.h>
L
Linus Torvalds 已提交
21

22 23 24 25 26 27 28 29 30
/*
 * 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)
{
31
#ifdef CONFIG_DEBUG_STACKOVERFLOW
R
Roman Zippel 已提交
32
	u64 curbase = (u64)task_stack_page(current);
33 34 35 36 37 38 39 40

	WARN_ONCE(regs->sp >= curbase &&
		  regs->sp <= curbase + THREAD_SIZE &&
		  regs->sp <  curbase + sizeof(struct thread_info) +
					sizeof(struct pt_regs) + 128,

		  "do_IRQ: %s near stack overflow (cur:%Lx,sp:%lx)\n",
			current->comm, curbase, regs->sp);
41
#endif
42
}
43

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

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

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

62
	stack_overflow_check(regs);
63

64
	desc = irq_to_desc(irq);
65 66
	if (likely(desc))
		generic_handle_irq_desc(irq, desc);
67 68 69 70 71 72 73 74
	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);
	}
75

L
Linus Torvalds 已提交
76 77
	irq_exit();

78
	set_irq_regs(old_regs);
L
Linus Torvalds 已提交
79 80 81
	return 1;
}

A
Ashok Raj 已提交
82
#ifdef CONFIG_HOTPLUG_CPU
83 84
/* A cpu has been removed from cpu_online_mask.  Reset irq affinities. */
void fixup_irqs(void)
A
Ashok Raj 已提交
85 86 87
{
	unsigned int irq;
	static int warned;
88
	struct irq_desc *desc;
A
Ashok Raj 已提交
89

90
	for_each_irq_desc(irq, desc) {
91 92
		int break_affinity = 0;
		int set_affinity = 1;
93
		const struct cpumask *affinity;
94

95 96
		if (!desc)
			continue;
A
Ashok Raj 已提交
97 98 99
		if (irq == 2)
			continue;

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

103
		affinity = &desc->affinity;
104
		if (!irq_has_action(irq) ||
105
		    cpumask_equal(affinity, cpu_online_mask)) {
106
			spin_unlock(&desc->lock);
107 108 109
			continue;
		}

110
		if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
111
			break_affinity = 1;
112
			affinity = cpu_all_mask;
A
Ashok Raj 已提交
113
		}
114

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

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

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

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

		if (break_affinity && set_affinity)
			printk("Broke affinity for irq %i\n", irq);
		else if (!set_affinity)
A
Ashok Raj 已提交
131 132 133 134 135 136 137 138 139
			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
140 141 142 143 144

extern void call_softirq(void);

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

148 149
	if (in_interrupt())
		return;
150

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