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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _M68K_IRQ_H_
  2. #define _M68K_IRQ_H_
  3. #include <linux/config.h>
  4. /*
  5.  * # of m68k interrupts
  6.  */
  7. #define SYS_IRQS 8
  8. /*
  9.  * This should be the same as the max(NUM_X_SOURCES) for all the
  10.  * different m68k hosts compiled into the kernel.
  11.  * Currently the Atari has 72 and the Amiga 24, but if both are
  12.  * supported in the kernel it is better to make room for 72.
  13.  */
  14. #if defined(CONFIG_ATARI) || defined(CONFIG_MAC)
  15. #define NR_IRQS (72+SYS_IRQS)
  16. #else
  17. #define NR_IRQS (24+SYS_IRQS)
  18. #endif
  19. /*
  20.  * Interrupt source definitions
  21.  * General interrupt sources are the level 1-7.
  22.  * Adding an interrupt service routine for one of these sources
  23.  * results in the addition of that routine to a chain of routines.
  24.  * Each one is called in succession.  Each individual interrupt
  25.  * service routine should determine if the device associated with
  26.  * that routine requires service.
  27.  */
  28. #define IRQ1 (1) /* level 1 interrupt */
  29. #define IRQ2 (2) /* level 2 interrupt */
  30. #define IRQ3 (3) /* level 3 interrupt */
  31. #define IRQ4 (4) /* level 4 interrupt */
  32. #define IRQ5 (5) /* level 5 interrupt */
  33. #define IRQ6 (6) /* level 6 interrupt */
  34. #define IRQ7 (7) /* level 7 interrupt (non-maskable) */
  35. /*
  36.  * "Generic" interrupt sources
  37.  */
  38. #define IRQ_SCHED_TIMER (8)    /* interrupt source for scheduling timer */
  39. static __inline__ int irq_cannonicalize(int irq)
  40. {
  41. return irq;
  42. }
  43. /*
  44.  * Machine specific interrupt sources.
  45.  *
  46.  * Adding an interrupt service routine for a source with this bit
  47.  * set indicates a special machine specific interrupt source.
  48.  * The machine specific files define these sources.
  49.  *
  50.  * The IRQ_MACHSPEC bit is now gone - the only thing it did was to
  51.  * introduce unnecessary overhead.
  52.  *
  53.  * All interrupt handling is actually machine specific so it is better
  54.  * to use function pointers, as used by the Sparc port, and select the
  55.  * interrupt handling functions when initializing the kernel. This way
  56.  * we save some unnecessary overhead at run-time. 
  57.  *                                                      01/11/97 - Jes
  58.  */
  59. extern void (*enable_irq)(unsigned int);
  60. extern void (*disable_irq)(unsigned int);
  61. #define disable_irq_nosync disable_irq
  62. #define enable_irq_nosync enable_irq
  63. extern int sys_request_irq(unsigned int, 
  64. void (*)(int, void *, struct pt_regs *), 
  65. unsigned long, const char *, void *);
  66. extern void sys_free_irq(unsigned int, void *);
  67. /*
  68.  * various flags for request_irq() - the Amiga now uses the standard
  69.  * mechanism like all other architectures - SA_INTERRUPT and SA_SHIRQ
  70.  * are your friends.
  71.  */
  72. #ifndef MACH_AMIGA_ONLY
  73. #define IRQ_FLG_LOCK (0x0001) /* handler is not replaceable */
  74. #define IRQ_FLG_REPLACE (0x0002) /* replace existing handler */
  75. #define IRQ_FLG_FAST (0x0004)
  76. #define IRQ_FLG_SLOW (0x0008)
  77. #define IRQ_FLG_STD (0x8000) /* internally used */
  78. #endif
  79. /*
  80.  * This structure is used to chain together the ISRs for a particular
  81.  * interrupt source (if it supports chaining).
  82.  */
  83. typedef struct irq_node {
  84. void (*handler)(int, void *, struct pt_regs *);
  85. unsigned long flags;
  86. void *dev_id;
  87. const char *devname;
  88. struct irq_node *next;
  89. } irq_node_t;
  90. /*
  91.  * This structure has only 4 elements for speed reasons
  92.  */
  93. typedef struct irq_handler {
  94. void (*handler)(int, void *, struct pt_regs *);
  95. unsigned long flags;
  96. void *dev_id;
  97. const char *devname;
  98. } irq_handler_t;
  99. /* count of spurious interrupts */
  100. extern volatile unsigned int num_spurious;
  101. /*
  102.  * This function returns a new irq_node_t
  103.  */
  104. extern irq_node_t *new_irq_node(void);
  105. #endif /* _M68K_IRQ_H_ */