irq.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.irq.h 1.9 05/17/01 18:14:24 cort
  3.  */
  4. #ifdef __KERNEL__
  5. #ifndef _ASM_IRQ_H
  6. #define _ASM_IRQ_H
  7. #include <linux/config.h>
  8. #include <asm/machdep.h> /* ppc_md */
  9. #include <asm/atomic.h>
  10. extern void disable_irq(unsigned int);
  11. extern void disable_irq_nosync(unsigned int);
  12. extern void enable_irq(unsigned int);
  13. #if defined(CONFIG_4xx)
  14. /*
  15.  * The PowerPC 403 cores' Asynchronous Interrupt Controller (AIC) has
  16.  * 32 possible interrupts, a majority of which are not implemented on
  17.  * all cores. There are six configurable, external interrupt pins and
  18.  * there are eight internal interrupts for the on-chip serial port
  19.  * (SPU), DMA controller, and JTAG controller.
  20.  *
  21.  * The PowerPC 405 cores' Universal Interrupt Controller (UIC) has 32
  22.  * possible interrupts as well. There are seven, configurable external
  23.  * interrupt pins and there are 17 internal interrupts for the on-chip
  24.  * serial port, DMA controller, on-chip Ethernet controller, PCI, etc.
  25.  *
  26.  */
  27. #define NR_IRQS 32
  28. #define AIC_INT0 (0)
  29. #define AIC_INT4 (4)
  30. #define AIC_INT5 (5)
  31. #define AIC_INT6 (6)
  32. #define AIC_INT7 (7)
  33. #define AIC_INT8 (8)
  34. #define AIC_INT9 (9)
  35. #define AIC_INT10 (10)
  36. #define AIC_INT11 (11)
  37. #define AIC_INT27 (27)
  38. #define AIC_INT28 (28)
  39. #define AIC_INT29 (29)
  40. #define AIC_INT30 (30)
  41. #define AIC_INT31 (31)
  42. static __inline__ int
  43. irq_cannonicalize(int irq)
  44. {
  45. return (irq);
  46. }
  47. #elif defined(CONFIG_8xx)
  48. /* The MPC8xx cores have 16 possible interrupts.  There are eight
  49.  * possible level sensitive interrupts assigned and generated internally
  50.  * from such devices as CPM, PCMCIA, RTC, PIT, TimeBase and Decrementer.
  51.  * There are eight external interrupts (IRQs) that can be configured
  52.  * as either level or edge sensitive. 
  53.  *
  54.  * On some implementations, there is also the possibility of an 8259
  55.  * through the PCI and PCI-ISA bridges.
  56.  */
  57. #define NR_SIU_INTS 16
  58. #define NR_IRQS (NR_SIU_INTS + NR_8259_INTS)
  59. /* These values must be zero-based and map 1:1 with the SIU configuration.
  60.  * They are used throughout the 8xx I/O subsystem to generate
  61.  * interrupt masks, flags, and other control patterns.  This is why the
  62.  * current kernel assumption of the 8259 as the base controller is such
  63.  * a pain in the butt.
  64.  */
  65. #define SIU_IRQ0 (0) /* Highest priority */
  66. #define SIU_LEVEL0 (1)
  67. #define SIU_IRQ1 (2)
  68. #define SIU_LEVEL1 (3)
  69. #define SIU_IRQ2 (4)
  70. #define SIU_LEVEL2 (5)
  71. #define SIU_IRQ3 (6)
  72. #define SIU_LEVEL3 (7)
  73. #define SIU_IRQ4 (8)
  74. #define SIU_LEVEL4 (9)
  75. #define SIU_IRQ5 (10)
  76. #define SIU_LEVEL5 (11)
  77. #define SIU_IRQ6 (12)
  78. #define SIU_LEVEL6 (13)
  79. #define SIU_IRQ7 (14)
  80. #define SIU_LEVEL7 (15)
  81. /* Now include the board configuration specific associations.
  82. */
  83. #include <asm/mpc8xx.h>
  84. /* The internal interrupts we can configure as we see fit.
  85.  * My personal preference is CPM at level 2, which puts it above the
  86.  * MBX PCI/ISA/IDE interrupts.
  87.  */
  88. #ifndef PIT_INTERRUPT
  89. #define PIT_INTERRUPT SIU_LEVEL0
  90. #endif
  91. #ifndef CPM_INTERRUPT
  92. #define CPM_INTERRUPT SIU_LEVEL2
  93. #endif
  94. #ifndef PCMCIA_INTERRUPT
  95. #define PCMCIA_INTERRUPT SIU_LEVEL6
  96. #endif
  97. #ifndef DEC_INTERRUPT
  98. #define DEC_INTERRUPT SIU_LEVEL7
  99. #endif
  100. /* Some internal interrupt registers use an 8-bit mask for the interrupt
  101.  * level instead of a number.
  102.  */
  103. #define mk_int_int_mask(IL) (1 << (7 - (IL/2)))
  104. /* always the same on 8xx -- Cort */
  105. static __inline__ int irq_cannonicalize(int irq)
  106. {
  107. return irq;
  108. }
  109. #else /* CONFIG_4xx + CONFIG_8xx */
  110. #if defined(CONFIG_APUS)
  111. /*
  112.  * This structure is used to chain together the ISRs for a particular
  113.  * interrupt source (if it supports chaining).
  114.  */
  115. typedef struct irq_node {
  116. void (*handler)(int, void *, struct pt_regs *);
  117. unsigned long flags;
  118. void *dev_id;
  119. const char *devname;
  120. struct irq_node *next;
  121. } irq_node_t;
  122. /*
  123.  * This structure has only 4 elements for speed reasons
  124.  */
  125. typedef struct irq_handler {
  126. void (*handler)(int, void *, struct pt_regs *);
  127. unsigned long flags;
  128. void *dev_id;
  129. const char *devname;
  130. } irq_handler_t;
  131. /* count of spurious interrupts */
  132. extern volatile unsigned int num_spurious;
  133. extern int sys_request_irq(unsigned int, 
  134. void (*)(int, void *, struct pt_regs *), 
  135. unsigned long, const char *, void *);
  136. extern void sys_free_irq(unsigned int, void *);
  137. /*
  138.  * This function returns a new irq_node_t
  139.  */
  140. extern irq_node_t *new_irq_node(void);
  141. /* Number of m68k interrupts */
  142. #define SYS_IRQS 8
  143. #endif /* CONFIG_APUS */
  144. /*
  145.  * this is the # irq's for all ppc arch's (pmac/chrp/prep)
  146.  * so it is the max of them all
  147.  */
  148. #define NR_IRQS 256
  149. #ifndef CONFIG_8260
  150. #define NUM_8259_INTERRUPTS 16
  151. #else /* CONFIG_8260 */
  152. /* The 8260 has an internal interrupt controller with a maximum of
  153.  * 64 IRQs.  We will use NR_IRQs from above since it is large enough.
  154.  * Don't be confused by the 8260 documentation where they list an
  155.  * "interrupt number" and "interrupt vector".  We are only interested
  156.  * in the interrupt vector.  There are "reserved" holes where the
  157.  * vector number increases, but the interrupt number in the table does not.
  158.  * (Document errata updates have fixed this...make sure you have up to
  159.  * date processor documentation -- Dan).
  160.  */
  161. #define NR_SIU_INTS 64
  162. /* There are many more than these, we will add them as we need them.
  163. */
  164. #define SIU_INT_SMC1 ((uint)0x04)
  165. #define SIU_INT_SMC2 ((uint)0x05)
  166. #define SIU_INT_FCC1 ((uint)0x20)
  167. #define SIU_INT_FCC2 ((uint)0x21)
  168. #define SIU_INT_FCC3 ((uint)0x22)
  169. #define SIU_INT_SCC1 ((uint)0x28)
  170. #define SIU_INT_SCC2 ((uint)0x29)
  171. #define SIU_INT_SCC3 ((uint)0x2a)
  172. #define SIU_INT_SCC4 ((uint)0x2b)
  173. #endif /* CONFIG_8260 */
  174. /*
  175.  * This gets called from serial.c, which is now used on
  176.  * powermacs as well as prep/chrp boxes.
  177.  * Prep and chrp both have cascaded 8259 PICs.
  178.  */
  179. static __inline__ int irq_cannonicalize(int irq)
  180. {
  181. if (ppc_md.irq_cannonicalize)
  182. {
  183. return ppc_md.irq_cannonicalize(irq);
  184. }
  185. else
  186. {
  187. return irq;
  188. }
  189. }
  190. #endif
  191. #define NR_MASK_WORDS ((NR_IRQS + 31) / 32)
  192. /* pendatic: these are long because they are used with set_bit --RR */
  193. extern unsigned long ppc_cached_irq_mask[NR_MASK_WORDS];
  194. extern unsigned long ppc_lost_interrupts[NR_MASK_WORDS];
  195. extern atomic_t ppc_n_lost_interrupts;
  196. #endif /* _ASM_IRQ_H */
  197. #endif /* __KERNEL__ */