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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_IRQ_H
  2. #define _ASM_IRQ_H
  3. #include <linux/string.h>
  4. #include <asm/ptrace.h>
  5. #include <linux/interrupt.h>
  6. #include <asm/types.h>
  7. /*
  8.  * linux/include/asm/irq.h
  9.  *
  10.  * (C) 1992, 1993 Linus Torvalds, (C) 1997 Ingo Molnar,
  11.  * Copyright 1999 SuSE GmbH
  12.  *
  13.  * IRQ/IPI changes taken from work by Thomas Radke
  14.  * <tomsoft@informatik.tu-chemnitz.de>
  15.  */
  16. #define CPU_IRQ_REGION  1
  17. #define TIMER_IRQ  (IRQ_FROM_REGION(CPU_IRQ_REGION) | 0)
  18. #define IPI_IRQ  (IRQ_FROM_REGION(CPU_IRQ_REGION) | 1)
  19. /* This should be 31 for PA1.1 binaries and 63 for PA-2.0 wide mode) */
  20. #define MAX_CPU_IRQ (BITS_PER_LONG - 1)
  21. #if 1    /* set to 1 to get the new irq offsets, or ...   */
  22. # if BITS_PER_LONG == 32
  23. #  define IRQ_REGION_SHIFT 5
  24. # else
  25. #  define IRQ_REGION_SHIFT 6
  26. # endif
  27. #else   /* 256 irq-entries per region (wastes memory, maybe gains speed? :-))*/
  28. # define IRQ_REGION_SHIFT 8
  29. #endif 
  30. #define IRQ_PER_REGION  (1 << IRQ_REGION_SHIFT)
  31. #define NR_IRQ_REGS 8
  32. #define NR_IRQS (NR_IRQ_REGS * IRQ_PER_REGION)
  33. #define IRQ_REGION(irq)  ((irq) >> IRQ_REGION_SHIFT)
  34. #define IRQ_OFFSET(irq) ((irq) & ((1<<IRQ_REGION_SHIFT)-1))
  35. #define IRQ_FROM_REGION(reg) ((reg) << IRQ_REGION_SHIFT)
  36. #define IRQ_REG_DIS    1 /* support disable_irq / enable_irq */
  37. #define IRQ_REG_MASK    2 /* require IRQs to be masked */
  38. struct irq_region_ops {
  39. void (*disable_irq)(void *dev, int irq);
  40. void (* enable_irq)(void *dev, int irq);
  41. void (*   mask_irq)(void *dev, int irq);
  42. void (* unmask_irq)(void *dev, int irq);
  43. };
  44. struct irq_region_data {
  45. void *dev;
  46. const char *name;
  47. unsigned flags;
  48. int irqbase;
  49. };
  50. struct irq_region {
  51. struct irq_region_ops ops;
  52. struct irq_region_data data;
  53. struct irqaction *action;
  54. };
  55. extern struct irq_region *irq_region[NR_IRQ_REGS];
  56. static __inline__ int irq_cannonicalize(int irq)
  57. {
  58. return irq;
  59. }
  60. extern void disable_irq(int);
  61. extern void enable_irq(int);
  62. extern void do_irq_mask(unsigned long mask, struct irq_region *region,
  63. struct pt_regs *regs);
  64. extern struct irq_region *alloc_irq_region(int count, struct irq_region_ops *ops,
  65. unsigned long flags, const char *name, void *dev);
  66. extern int txn_alloc_irq(void);
  67. extern int txn_claim_irq(int);
  68. extern unsigned int txn_alloc_data(int, unsigned int);
  69. extern unsigned long txn_alloc_addr(int);
  70. #endif /* _ASM_IRQ_H */