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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  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. /*
  111.  * this is the # irq's for all ppc arch's (pmac/chrp/prep)
  112.  * so it is the max of them all
  113.  */
  114. #define NR_IRQS 256
  115. #ifndef CONFIG_8260
  116. #define NUM_8259_INTERRUPTS 16
  117. #else /* CONFIG_8260 */
  118. /* The 8260 has an internal interrupt controller with a maximum of
  119.  * 64 IRQs.  We will use NR_IRQs from above since it is large enough.
  120.  * Don't be confused by the 8260 documentation where they list an
  121.  * "interrupt number" and "interrupt vector".  We are only interested
  122.  * in the interrupt vector.  There are "reserved" holes where the
  123.  * vector number increases, but the interrupt number in the table does not.
  124.  * (Document errata updates have fixed this...make sure you have up to
  125.  * date processor documentation -- Dan).
  126.  */
  127. #define NR_SIU_INTS 64
  128. /* There are many more than these, we will add them as we need them.
  129. */
  130. #define SIU_INT_SMC1 ((uint)0x04)
  131. #define SIU_INT_SMC2 ((uint)0x05)
  132. #define SIU_INT_FCC1 ((uint)0x20)
  133. #define SIU_INT_FCC2 ((uint)0x21)
  134. #define SIU_INT_FCC3 ((uint)0x22)
  135. #define SIU_INT_SCC1 ((uint)0x28)
  136. #define SIU_INT_SCC2 ((uint)0x29)
  137. #define SIU_INT_SCC3 ((uint)0x2a)
  138. #define SIU_INT_SCC4 ((uint)0x2b)
  139. #endif /* CONFIG_8260 */
  140. /*
  141.  * This gets called from serial.c, which is now used on
  142.  * powermacs as well as prep/chrp boxes.
  143.  * Prep and chrp both have cascaded 8259 PICs.
  144.  */
  145. static __inline__ int irq_cannonicalize(int irq)
  146. {
  147. if (ppc_md.irq_cannonicalize)
  148. return ppc_md.irq_cannonicalize(irq);
  149. return irq;
  150. }
  151. #endif
  152. #define NR_MASK_WORDS ((NR_IRQS + 31) / 32)
  153. /* pedantic: these are long because they are used with set_bit --RR */
  154. extern unsigned long ppc_cached_irq_mask[NR_MASK_WORDS];
  155. extern unsigned long ppc_lost_interrupts[NR_MASK_WORDS];
  156. extern atomic_t ppc_n_lost_interrupts;
  157. #endif /* _ASM_IRQ_H */
  158. #endif /* __KERNEL__ */