irqs.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. #include <asm-generic/gpio.h>
  12. /*
  13. * SoCs with TZIC interrupt controller have 128 IRQs, those with AVIC have 64
  14. */
  15. #ifdef CONFIG_MXC_TZIC
  16. #define MXC_INTERNAL_IRQS 128
  17. #else
  18. #define MXC_INTERNAL_IRQS 64
  19. #endif
  20. #define MXC_GPIO_IRQ_START MXC_INTERNAL_IRQS
  21. /*
  22. * The next 16 interrupts are for board specific purposes. Since
  23. * the kernel can only run on one machine at a time, we can re-use
  24. * these. If you need more, increase MXC_BOARD_IRQS, but keep it
  25. * within sensible limits.
  26. */
  27. #define MXC_BOARD_IRQ_START (MXC_INTERNAL_IRQS + ARCH_NR_GPIOS)
  28. #ifdef CONFIG_MACH_MX31ADS_WM1133_EV1
  29. #define MXC_BOARD_IRQS 80
  30. #else
  31. #define MXC_BOARD_IRQS 16
  32. #endif
  33. #define MXC_IPU_IRQ_START (MXC_BOARD_IRQ_START + MXC_BOARD_IRQS)
  34. #ifdef CONFIG_MX3_IPU_IRQS
  35. #define MX3_IPU_IRQS CONFIG_MX3_IPU_IRQS
  36. #else
  37. #define MX3_IPU_IRQS 0
  38. #endif
  39. /* REVISIT: Add IPU irqs on IMX51 */
  40. #define NR_IRQS (MXC_IPU_IRQ_START + MX3_IPU_IRQS)
  41. extern int imx_irq_set_priority(unsigned char irq, unsigned char prio);
  42. /* all normal IRQs can be FIQs */
  43. #define FIQ_START 0
  44. /* switch between IRQ and FIQ */
  45. extern int mxc_set_irq_fiq(unsigned int irq, unsigned int type);
  46. #endif /* __ASM_ARCH_MXC_IRQS_H__ */