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 33
	static unsigned long warned = -60*HZ;

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

L
Linus Torvalds 已提交
45 46 47 48 49 50
/*
 * 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)
51 52
{
	struct pt_regs *old_regs = set_irq_regs(regs);
53
	struct irq_desc *desc;
54

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		if (break_affinity && set_affinity)
			printk("Broke affinity for irq %i\n", irq);
		else if (!set_affinity)
A
Ashok Raj 已提交
133 134 135 136 137 138 139 140 141
			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
142 143 144 145 146 147 148 149 150 151 152 153 154 155

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 */
156
 	if (pending) {
157
		call_softirq();
158 159
		WARN_ON_ONCE(softirq_count());
	}
160 161
 	local_irq_restore(flags);
}