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

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

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

37
extern void (*x86_platform_ipi_callback)(void);
T
Thomas Gleixner 已提交
38
extern void native_init_IRQ(void);
39
extern bool handle_irq(unsigned irq, struct pt_regs *regs);
T
Thomas Gleixner 已提交
40

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

T
Thomas Gleixner 已提交
43 44
/* Interrupt vector management */
extern DECLARE_BITMAP(used_vectors, NR_VECTORS);
45
extern int vector_used_by_percpu_irq(unsigned int vector);
T
Thomas Gleixner 已提交
46

47 48
extern void init_ISA_irqs(void);

49
#ifdef CONFIG_X86_LOCAL_APIC
50
void arch_trigger_all_cpu_backtrace(bool);
51 52 53
#define arch_trigger_all_cpu_backtrace arch_trigger_all_cpu_backtrace
#endif

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