irq.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #ifndef __ASM_SH_IRQ_H
  2. #define __ASM_SH_IRQ_H
  3. #include <linux/cpumask.h>
  4. #include <asm/machvec.h>
  5. /*
  6. * A sane default based on a reasonable vector table size, platforms are
  7. * advised to cap this at the hard limit that they're interested in
  8. * through the machvec.
  9. */
  10. #define NR_IRQS 512
  11. #define NR_IRQS_LEGACY 8 /* Legacy external IRQ0-7 */
  12. /*
  13. * This is a special IRQ number for indicating that no IRQ has been
  14. * triggered and to simply ignore the IRQ dispatch. This is a special
  15. * case that can happen with IRQ auto-distribution when multiple CPUs
  16. * are woken up and signalled in parallel.
  17. */
  18. #define NO_IRQ_IGNORE ((unsigned int)-1)
  19. /*
  20. * Convert back and forth between INTEVT and IRQ values.
  21. */
  22. #ifdef CONFIG_CPU_HAS_INTEVT
  23. #define evt2irq(evt) (((evt) >> 5) - 16)
  24. #define irq2evt(irq) (((irq) + 16) << 5)
  25. #else
  26. #define evt2irq(evt) (evt)
  27. #define irq2evt(irq) (irq)
  28. #endif
  29. /*
  30. * Simple Mask Register Support
  31. */
  32. extern void make_maskreg_irq(unsigned int irq);
  33. extern unsigned short *irq_mask_register;
  34. /*
  35. * PINT IRQs
  36. */
  37. void init_IRQ_pint(void);
  38. void make_imask_irq(unsigned int irq);
  39. static inline int generic_irq_demux(int irq)
  40. {
  41. return irq;
  42. }
  43. #define irq_demux(irq) sh_mv.mv_irq_demux(irq)
  44. void init_IRQ(void);
  45. void migrate_irqs(void);
  46. asmlinkage int do_IRQ(unsigned int irq, struct pt_regs *regs);
  47. #ifdef CONFIG_IRQSTACKS
  48. extern void irq_ctx_init(int cpu);
  49. extern void irq_ctx_exit(int cpu);
  50. # define __ARCH_HAS_DO_SOFTIRQ
  51. #else
  52. # define irq_ctx_init(cpu) do { } while (0)
  53. # define irq_ctx_exit(cpu) do { } while (0)
  54. #endif
  55. #ifdef CONFIG_INTC_BALANCING
  56. extern unsigned int irq_lookup(unsigned int irq);
  57. extern void irq_finish(unsigned int irq);
  58. #else
  59. #define irq_lookup(irq) (irq)
  60. #define irq_finish(irq) do { } while (0)
  61. #endif
  62. #include <asm-generic/irq.h>
  63. #ifdef CONFIG_CPU_SH5
  64. #include <cpu/irq.h>
  65. #endif
  66. #endif /* __ASM_SH_IRQ_H */