irq.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifdef __KERNEL__
  2. #ifndef _ASM_IRQ_H
  3. #define _ASM_IRQ_H
  4. /*
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version
  8.  * 2 of the License, or (at your option) any later version.
  9.  */
  10. #include <asm/atomic.h>
  11. extern void disable_irq(unsigned int);
  12. extern void disable_irq_nosync(unsigned int);
  13. extern void enable_irq(unsigned int);
  14. /*
  15.  * this is the maximum number of virtual irqs we will use.
  16.  */
  17. #define NR_IRQS 512
  18. #define NUM_8259_INTERRUPTS 16
  19. /* Interrupt numbers are virtual in case they are sparsely
  20.  * distributed by the hardware.
  21.  */
  22. #define NR_HW_IRQS 8192
  23. extern unsigned short real_irq_to_virt_map[NR_HW_IRQS];
  24. extern unsigned short virt_irq_to_real_map[NR_IRQS];
  25. /* Create a mapping for a real_irq if it doesn't already exist.
  26.  * Return the virtual irq as a convenience.
  27.  */
  28. unsigned long virt_irq_create_mapping(unsigned long real_irq);
  29. /* These funcs map irqs between real and virtual */
  30. static inline unsigned long real_irq_to_virt(unsigned long real_irq) {
  31. return real_irq_to_virt_map[real_irq];
  32. }
  33. static inline unsigned long virt_irq_to_real(unsigned long virt_irq) {
  34. return virt_irq_to_real_map[virt_irq];
  35. }
  36. /*
  37.  * This gets called from serial.c, which is now used on
  38.  * powermacs as well as prep/chrp boxes.
  39.  * Prep and chrp both have cascaded 8259 PICs.
  40.  */
  41. static __inline__ int irq_cannonicalize(int irq)
  42. {
  43. return irq;
  44. }
  45. #endif /* _ASM_IRQ_H */
  46. #endif /* __KERNEL__ */