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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994 by Waldorf GMBH, written by Ralf Baechle
  7.  * Copyright (C) 1995, 96, 97, 98, 99, 2000, 01, 02 by Ralf Baechle
  8.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  9.  * Copyright (C) 2001 Kanoj Sarcar
  10.  */
  11. #ifndef _ASM_IRQ_H
  12. #define _ASM_IRQ_H
  13. #include <linux/config.h>
  14. #include <asm/sn/arch.h>
  15. #define NR_IRQS 256
  16. /*
  17.  * Number of levels in INT_PEND0. Can be set to 128 if we also
  18.  * consider INT_PEND1.
  19.  */
  20. #define PERNODE_LEVELS 64
  21. extern int node_level_to_irq[MAX_COMPACT_NODES][PERNODE_LEVELS];
  22. /*
  23.  * we need to map irq's up to at least bit 7 of the INT_MASK0_A register
  24.  * since bits 0-6 are pre-allocated for other purposes.
  25.  */
  26. #define LEAST_LEVEL 7
  27. #define FAST_IRQ_TO_LEVEL(i) ((i) + LEAST_LEVEL)
  28. #define LEVEL_TO_IRQ(c, l) 
  29. (node_level_to_irq[CPUID_TO_COMPACT_NODEID(c)][(l)])
  30. #ifdef CONFIG_I8259
  31. static inline int irq_cannonicalize(int irq)
  32. {
  33. return ((irq == 2) ? 9 : irq);
  34. }
  35. #else
  36. #define irq_cannonicalize(irq) (irq) /* Sane hardware, sane code ... */
  37. #endif
  38. struct irqaction;
  39. extern int i8259_setup_irq(int irq, struct irqaction * new);
  40. extern void disable_irq(unsigned int);
  41. #ifdef CONFIG_NEW_IRQ
  42. extern void disable_irq_nosync(unsigned int);
  43. #else
  44. #define disable_irq_nosync disable_irq
  45. #endif
  46. extern void enable_irq(unsigned int);
  47. /* Machine specific interrupt initialization  */
  48. extern void (*irq_setup)(void);
  49. extern void init_generic_irq(void);
  50. #endif /* _ASM_IRQ_H */