irq.h 1.3 KB
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_IRQ_H
#define _ASM_X86_IRQ_H
T
Thomas Gleixner 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 *	(C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
 *
 *	IRQ/IPI changes taken from work by Thomas Radke
 *	<tomsoft@informatik.tu-chemnitz.de>
 */

#include <asm/apicdef.h>
#include <asm/irq_vectors.h>

static inline int irq_canonicalize(int irq)
{
	return ((irq == 2) ? 9 : irq);
}

C
Christoph Hellwig 已提交
18 19
#ifdef CONFIG_X86_32
extern void irq_ctx_init(int cpu);
20
#else
T
Thomas Gleixner 已提交
21 22 23
# define irq_ctx_init(cpu) do { } while (0)
#endif

C
Christoph Hellwig 已提交
24 25
#define __ARCH_HAS_DO_SOFTIRQ

26 27
struct irq_desc;

T
Thomas Gleixner 已提交
28 29
#ifdef CONFIG_HOTPLUG_CPU
#include <linux/cpumask.h>
30
extern int check_irq_vectors_for_cpu_disable(void);
31
extern void fixup_irqs(void);
32
#endif
T
Thomas Gleixner 已提交
33

34 35 36 37
#ifdef CONFIG_HAVE_KVM
extern void kvm_set_posted_intr_wakeup_handler(void (*handler)(void));
#endif

38
extern void (*x86_platform_ipi_callback)(void);
T
Thomas Gleixner 已提交
39
extern void native_init_IRQ(void);
40 41

extern bool handle_irq(struct irq_desc *desc, struct pt_regs *regs);
T
Thomas Gleixner 已提交
42

43
extern __visible unsigned int do_IRQ(struct pt_regs *regs);
J
Jeremy Fitzhardinge 已提交
44

T
Thomas Gleixner 已提交
45 46 47
/* Interrupt vector management */
extern DECLARE_BITMAP(used_vectors, NR_VECTORS);

48 49
extern void init_ISA_irqs(void);

50
#ifdef CONFIG_X86_LOCAL_APIC
51 52 53
void arch_trigger_cpumask_backtrace(const struct cpumask *mask,
				    bool exclude_self);
#define arch_trigger_cpumask_backtrace arch_trigger_cpumask_backtrace
54 55
#endif

H
H. Peter Anvin 已提交
56
#endif /* _ASM_X86_IRQ_H */