x86: add handle_irq() to allow interrupt injection
Xen uses a different interrupt path, so introduce handle_irq() to allow interrupts to be inserted into the normal interrupt path. This is handled slightly differently on 32 and 64-bit. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
committed by
Ingo Molnar
parent
cc6c50066e
commit
9b2b76a334
@@ -39,6 +39,7 @@ extern void fixup_irqs(void);
|
|||||||
extern unsigned int do_IRQ(struct pt_regs *regs);
|
extern unsigned int do_IRQ(struct pt_regs *regs);
|
||||||
extern void init_IRQ(void);
|
extern void init_IRQ(void);
|
||||||
extern void native_init_IRQ(void);
|
extern void native_init_IRQ(void);
|
||||||
|
extern bool handle_irq(unsigned irq, struct pt_regs *regs);
|
||||||
|
|
||||||
/* Interrupt vector management */
|
/* Interrupt vector management */
|
||||||
extern DECLARE_BITMAP(used_vectors, NR_VECTORS);
|
extern DECLARE_BITMAP(used_vectors, NR_VECTORS);
|
||||||
|
@@ -191,6 +191,26 @@ static inline int
|
|||||||
execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq) { return 0; }
|
execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq) { return 0; }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
if (!execute_on_irq_stack(overflow, desc, irq)) {
|
||||||
|
if (unlikely(overflow))
|
||||||
|
print_stack_overflow();
|
||||||
|
desc->handle_irq(irq, desc);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* do_IRQ handles all normal device IRQ's (the special
|
* do_IRQ handles all normal device IRQ's (the special
|
||||||
* SMP cross-CPU interrupts have their own specific
|
* SMP cross-CPU interrupts have their own specific
|
||||||
@@ -200,31 +220,19 @@ unsigned int do_IRQ(struct pt_regs *regs)
|
|||||||
{
|
{
|
||||||
struct pt_regs *old_regs;
|
struct pt_regs *old_regs;
|
||||||
/* high bit used in ret_from_ code */
|
/* high bit used in ret_from_ code */
|
||||||
int overflow;
|
|
||||||
unsigned vector = ~regs->orig_ax;
|
unsigned vector = ~regs->orig_ax;
|
||||||
struct irq_desc *desc;
|
|
||||||
unsigned irq;
|
unsigned irq;
|
||||||
|
|
||||||
|
|
||||||
old_regs = set_irq_regs(regs);
|
old_regs = set_irq_regs(regs);
|
||||||
irq_enter();
|
irq_enter();
|
||||||
irq = __get_cpu_var(vector_irq)[vector];
|
irq = __get_cpu_var(vector_irq)[vector];
|
||||||
|
|
||||||
overflow = check_stack_overflow();
|
if (!handle_irq(irq, regs)) {
|
||||||
|
|
||||||
desc = irq_to_desc(irq);
|
|
||||||
if (unlikely(!desc)) {
|
|
||||||
printk(KERN_EMERG "%s: cannot handle IRQ %d vector %#x cpu %d\n",
|
printk(KERN_EMERG "%s: cannot handle IRQ %d vector %#x cpu %d\n",
|
||||||
__func__, irq, vector, smp_processor_id());
|
__func__, irq, vector, smp_processor_id());
|
||||||
BUG();
|
BUG();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!execute_on_irq_stack(overflow, desc, irq)) {
|
|
||||||
if (unlikely(overflow))
|
|
||||||
print_stack_overflow();
|
|
||||||
desc->handle_irq(irq, desc);
|
|
||||||
}
|
|
||||||
|
|
||||||
irq_exit();
|
irq_exit();
|
||||||
set_irq_regs(old_regs);
|
set_irq_regs(old_regs);
|
||||||
return 1;
|
return 1;
|
||||||
|
@@ -48,6 +48,20 @@ static inline void stack_overflow_check(struct pt_regs *regs)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool handle_irq(unsigned irq, struct pt_regs *regs)
|
||||||
|
{
|
||||||
|
struct irq_desc *desc;
|
||||||
|
|
||||||
|
stack_overflow_check(regs);
|
||||||
|
|
||||||
|
desc = irq_to_desc(irq);
|
||||||
|
if (unlikely(!desc))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
generic_handle_irq_desc(irq, desc);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* do_IRQ handles all normal device IRQ's (the special
|
* do_IRQ handles all normal device IRQ's (the special
|
||||||
* SMP cross-CPU interrupts have their own specific
|
* SMP cross-CPU interrupts have their own specific
|
||||||
@@ -56,7 +70,6 @@ static inline void stack_overflow_check(struct pt_regs *regs)
|
|||||||
asmlinkage unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
|
asmlinkage unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
struct pt_regs *old_regs = set_irq_regs(regs);
|
struct pt_regs *old_regs = set_irq_regs(regs);
|
||||||
struct irq_desc *desc;
|
|
||||||
|
|
||||||
/* high bit used in ret_from_ code */
|
/* high bit used in ret_from_ code */
|
||||||
unsigned vector = ~regs->orig_ax;
|
unsigned vector = ~regs->orig_ax;
|
||||||
@@ -64,14 +77,10 @@ asmlinkage unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
|
|||||||
|
|
||||||
exit_idle();
|
exit_idle();
|
||||||
irq_enter();
|
irq_enter();
|
||||||
|
|
||||||
irq = __get_cpu_var(vector_irq)[vector];
|
irq = __get_cpu_var(vector_irq)[vector];
|
||||||
|
|
||||||
stack_overflow_check(regs);
|
if (!handle_irq(irq, regs)) {
|
||||||
|
|
||||||
desc = irq_to_desc(irq);
|
|
||||||
if (likely(desc))
|
|
||||||
generic_handle_irq_desc(irq, desc);
|
|
||||||
else {
|
|
||||||
if (!disable_apic)
|
if (!disable_apic)
|
||||||
ack_APIC_irq();
|
ack_APIC_irq();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user