irq.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #ifndef _ASM_IA64_IRQ_H
  2. #define _ASM_IA64_IRQ_H
  3. /*
  4. * Copyright (C) 1999-2000, 2002 Hewlett-Packard Co
  5. * David Mosberger-Tang <davidm@hpl.hp.com>
  6. * Stephane Eranian <eranian@hpl.hp.com>
  7. *
  8. * 11/24/98 S.Eranian updated TIMER_IRQ and irq_canonicalize
  9. * 01/20/99 S.Eranian added keyboard interrupt
  10. * 02/29/00 D.Mosberger moved most things into hw_irq.h
  11. */
  12. #include <linux/types.h>
  13. #include <linux/cpumask.h>
  14. #define NR_VECTORS 256
  15. #if (NR_VECTORS + 32 * NR_CPUS) < 1024
  16. #define NR_IRQS (NR_VECTORS + 32 * NR_CPUS)
  17. #else
  18. #define NR_IRQS 1024
  19. #endif
  20. static __inline__ int
  21. irq_canonicalize (int irq)
  22. {
  23. /*
  24. * We do the legacy thing here of pretending that irqs < 16
  25. * are 8259 irqs. This really shouldn't be necessary at all,
  26. * but we keep it here as serial.c still uses it...
  27. */
  28. return ((irq == 2) ? 9 : irq);
  29. }
  30. extern void set_irq_affinity_info (unsigned int irq, int dest, int redir);
  31. bool is_affinity_mask_valid(cpumask_t cpumask);
  32. #define is_affinity_mask_valid is_affinity_mask_valid
  33. #endif /* _ASM_IA64_IRQ_H */