irqs.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
  3. */
  4. /*
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef __ASM_ARCH_MXC_IRQS_H__
  10. #define __ASM_ARCH_MXC_IRQS_H__
  11. /*
  12. * So far all i.MX SoCs have 64 internal interrupts
  13. */
  14. #define MXC_INTERNAL_IRQS 64
  15. #define MXC_GPIO_IRQ_START MXC_INTERNAL_IRQS
  16. #if defined CONFIG_ARCH_MX1
  17. #define MXC_GPIO_IRQS (32 * 4)
  18. #elif defined CONFIG_ARCH_MX2
  19. #define MXC_GPIO_IRQS (32 * 6)
  20. #elif defined CONFIG_ARCH_MX3
  21. #define MXC_GPIO_IRQS (32 * 3)
  22. #elif defined CONFIG_ARCH_MX25
  23. #define MXC_GPIO_IRQS (32 * 4)
  24. #elif defined CONFIG_ARCH_MXC91231
  25. #define MXC_GPIO_IRQS (32 * 4)
  26. #endif
  27. /*
  28. * The next 16 interrupts are for board specific purposes. Since
  29. * the kernel can only run on one machine at a time, we can re-use
  30. * these. If you need more, increase MXC_BOARD_IRQS, but keep it
  31. * within sensible limits.
  32. */
  33. #define MXC_BOARD_IRQ_START (MXC_INTERNAL_IRQS + MXC_GPIO_IRQS)
  34. #ifdef CONFIG_MACH_MX31ADS_WM1133_EV1
  35. #define MXC_BOARD_IRQS 80
  36. #else
  37. #define MXC_BOARD_IRQS 16
  38. #endif
  39. #define MXC_IPU_IRQ_START (MXC_BOARD_IRQ_START + MXC_BOARD_IRQS)
  40. #ifdef CONFIG_MX3_IPU_IRQS
  41. #define MX3_IPU_IRQS CONFIG_MX3_IPU_IRQS
  42. #else
  43. #define MX3_IPU_IRQS 0
  44. #endif
  45. #define NR_IRQS (MXC_IPU_IRQ_START + MX3_IPU_IRQS)
  46. extern int imx_irq_set_priority(unsigned char irq, unsigned char prio);
  47. /* all normal IRQs can be FIQs */
  48. #define FIQ_START 0
  49. /* switch betwean IRQ and FIQ */
  50. extern int mxc_set_irq_fiq(unsigned int irq, unsigned int type);
  51. #endif /* __ASM_ARCH_MXC_IRQS_H__ */