irq.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_ARM_IRQ_H
  2. #define __ASM_ARM_IRQ_H
  3. #include <asm/arch/irqs.h>
  4. #ifndef irq_canonicalize
  5. #define irq_canonicalize(i) (i)
  6. #endif
  7. #ifndef NR_IRQS
  8. #define NR_IRQS 128
  9. #endif
  10. /*
  11.  * Use this value to indicate lack of interrupt
  12.  * capability
  13.  */
  14. #ifndef NO_IRQ
  15. #define NO_IRQ ((unsigned int)(-1))
  16. #endif
  17. struct irqaction;
  18. extern void disable_irq_nosync(unsigned int);
  19. extern void disable_irq(unsigned int);
  20. extern void enable_irq(unsigned int);
  21. #define __IRQT_FALEDGE (1 << 0)
  22. #define __IRQT_RISEDGE (1 << 1)
  23. #define __IRQT_LOWLVL (1 << 2)
  24. #define __IRQT_HIGHLVL (1 << 3)
  25. #define IRQT_NOEDGE (0)
  26. #define IRQT_RISING (__IRQT_RISEDGE)
  27. #define IRQT_FALLING (__IRQT_FALEDGE)
  28. #define IRQT_BOTHEDGE (__IRQT_RISEDGE|__IRQT_FALEDGE)
  29. #define IRQT_LOW (__IRQT_LOWLVL)
  30. #define IRQT_HIGH (__IRQT_HIGHLVL)
  31. #define IRQT_PROBE (1 << 4)
  32. int set_irq_type(unsigned int irq, unsigned int type);
  33. void disable_irq_wake(unsigned int irq);
  34. void enable_irq_wake(unsigned int irq);
  35. int setup_irq(unsigned int, struct irqaction *);
  36. struct irqaction;
  37. struct pt_regs;
  38. int handle_IRQ_event(unsigned int, struct pt_regs *, struct irqaction *);
  39. #endif