irq.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #ifndef ASM_X86__IRQ_H
  2. #define ASM_X86__IRQ_H
  3. /*
  4. * (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
  5. *
  6. * IRQ/IPI changes taken from work by Thomas Radke
  7. * <tomsoft@informatik.tu-chemnitz.de>
  8. */
  9. #include <asm/apicdef.h>
  10. #include <asm/irq_vectors.h>
  11. static inline int irq_canonicalize(int irq)
  12. {
  13. return ((irq == 2) ? 9 : irq);
  14. }
  15. #ifdef CONFIG_X86_LOCAL_APIC
  16. # define ARCH_HAS_NMI_WATCHDOG
  17. #endif
  18. #ifdef CONFIG_4KSTACKS
  19. extern void irq_ctx_init(int cpu);
  20. extern void irq_ctx_exit(int cpu);
  21. # define __ARCH_HAS_DO_SOFTIRQ
  22. #else
  23. # define irq_ctx_init(cpu) do { } while (0)
  24. # define irq_ctx_exit(cpu) do { } while (0)
  25. # ifdef CONFIG_X86_64
  26. # define __ARCH_HAS_DO_SOFTIRQ
  27. # endif
  28. #endif
  29. #ifdef CONFIG_IRQBALANCE
  30. extern int irqbalance_disable(char *str);
  31. #endif
  32. #ifdef CONFIG_HOTPLUG_CPU
  33. #include <linux/cpumask.h>
  34. extern void fixup_irqs(cpumask_t map);
  35. #endif
  36. extern unsigned int do_IRQ(struct pt_regs *regs);
  37. extern void init_IRQ(void);
  38. extern void native_init_IRQ(void);
  39. /* Interrupt vector management */
  40. extern DECLARE_BITMAP(used_vectors, NR_VECTORS);
  41. #endif /* ASM_X86__IRQ_H */