irqs.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. * SoCs with TZIC interrupt controller have 128 IRQs, those with AVIC have 64
  13. */
  14. #ifdef CONFIG_MXC_TZIC
  15. #define MXC_INTERNAL_IRQS 128
  16. #else
  17. #define MXC_INTERNAL_IRQS 64
  18. #endif
  19. #define MXC_GPIO_IRQ_START MXC_INTERNAL_IRQS
  20. #if defined CONFIG_ARCH_MX1
  21. #define MXC_GPIO_IRQS (32 * 4)
  22. #elif defined CONFIG_ARCH_MX2
  23. #define MXC_GPIO_IRQS (32 * 6)
  24. #elif defined CONFIG_ARCH_MX3
  25. #define MXC_GPIO_IRQS (32 * 3)
  26. #elif defined CONFIG_ARCH_MX25
  27. #define MXC_GPIO_IRQS (32 * 4)
  28. #elif defined CONFIG_ARCH_MX5
  29. #define MXC_GPIO_IRQS (32 * 4)
  30. #elif defined CONFIG_ARCH_MXC91231
  31. #define MXC_GPIO_IRQS (32 * 4)
  32. #endif
  33. /*
  34. * The next 16 interrupts are for board specific purposes. Since
  35. * the kernel can only run on one machine at a time, we can re-use
  36. * these. If you need more, increase MXC_BOARD_IRQS, but keep it
  37. * within sensible limits.
  38. */
  39. #define MXC_BOARD_IRQ_START (MXC_INTERNAL_IRQS + MXC_GPIO_IRQS)
  40. #ifdef CONFIG_MACH_MX31ADS_WM1133_EV1
  41. #define MXC_BOARD_IRQS 80
  42. #else
  43. #define MXC_BOARD_IRQS 16
  44. #endif
  45. #define MXC_IPU_IRQ_START (MXC_BOARD_IRQ_START + MXC_BOARD_IRQS)
  46. #ifdef CONFIG_MX3_IPU_IRQS
  47. #define MX3_IPU_IRQS CONFIG_MX3_IPU_IRQS
  48. #else
  49. #define MX3_IPU_IRQS 0
  50. #endif
  51. /* REVISIT: Add IPU irqs on IMX51 */
  52. #define NR_IRQS (MXC_IPU_IRQ_START + MX3_IPU_IRQS)
  53. extern int imx_irq_set_priority(unsigned char irq, unsigned char prio);
  54. /* all normal IRQs can be FIQs */
  55. #define FIQ_START 0
  56. /* switch betwean IRQ and FIQ */
  57. extern int mxc_set_irq_fiq(unsigned int irq, unsigned int type);
  58. #endif /* __ASM_ARCH_MXC_IRQS_H__ */