home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / Include / asm / irq.h < prev    next >
C/C++ Source or Header  |  2002-04-26  |  1KB  |  44 lines

  1. /* $Id: irq.h,v 1.2 2002/04/26 23:09:20 smilcke Exp $ */
  2.  
  3. #ifndef _ASM_IRQ_H
  4. #define _ASM_IRQ_H
  5.  
  6. /*
  7.  *    linux/include/asm/irq.h
  8.  *
  9.  *    (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar
  10.  *
  11.  *    IRQ/IPI changes taken from work by Thomas Radke
  12.  *    <tomsoft@informatik.tu-chemnitz.de>
  13.  */
  14.  
  15. #include <linux/config.h>
  16.  
  17. #define TIMER_IRQ 0
  18.  
  19. /*
  20.  * 16 8259A IRQ's, 208 potential APIC interrupt sources.
  21.  * Right now the APIC is mostly only used for SMP.
  22.  * 256 vectors is an architectural limit. (we can have
  23.  * more than 256 devices theoretically, but they will
  24.  * have to use shared interrupts)
  25.  * Since vectors 0x00-0x1f are used/reserved for the CPU,
  26.  * the usable vector space is 0x20-0xff (224 vectors)
  27.  */
  28. #define NR_IRQS 224
  29.  
  30. static __inline__ int irq_cannonicalize(int irq)
  31. {
  32.     return ((irq == 2) ? 9 : irq);
  33. }
  34.  
  35. extern void disable_irq(unsigned int);
  36. extern void disable_irq_nosync(unsigned int);
  37. extern void enable_irq(unsigned int);
  38.  
  39. #ifdef CONFIG_X86_LOCAL_APIC
  40. #define ARCH_HAS_NMI_WATCHDOG        /* See include/linux/nmi.h */
  41. #endif
  42.  
  43. #endif /* _ASM_IRQ_H */
  44.