irqs.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Copyright (C) 2001-2006 Storlink, Corp.
  3. * Copyright (C) 2008-2009 Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
  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 as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. */
  10. #ifndef __MACH_IRQS_H__
  11. #define __MACH_IRQS_H__
  12. #define IRQ_SERIRQ1 31
  13. #define IRQ_SERIRQ0 30
  14. #define IRQ_PCID 29
  15. #define IRQ_PCIC 28
  16. #define IRQ_PCIB 27
  17. #define IRQ_PWR 26
  18. #define IRQ_CIR 25
  19. #define IRQ_GPIO(x) (22 + (x))
  20. #define IRQ_SSP 21
  21. #define IRQ_LPC 20
  22. #define IRQ_LCD 19
  23. #define IRQ_UART 18
  24. #define IRQ_RTC 17
  25. #define IRQ_TIMER3 16
  26. #define IRQ_TIMER2 15
  27. #define IRQ_TIMER1 14
  28. #define IRQ_FLASH 12
  29. #define IRQ_USB1 11
  30. #define IRQ_USB0 10
  31. #define IRQ_DMA 9
  32. #define IRQ_PCI 8
  33. #define IRQ_IPSEC 7
  34. #define IRQ_RAID 6
  35. #define IRQ_IDE1 5
  36. #define IRQ_IDE0 4
  37. #define IRQ_WATCHDOG 3
  38. #define IRQ_GMAC1 2
  39. #define IRQ_GMAC0 1
  40. #define IRQ_IPI 0
  41. #define NORMAL_IRQ_NUM 32
  42. #define GPIO_IRQ_BASE NORMAL_IRQ_NUM
  43. #define GPIO_IRQ_NUM (3 * 32)
  44. #define ARCH_TIMER_IRQ IRQ_TIMER2
  45. #define NR_IRQS (NORMAL_IRQ_NUM + GPIO_IRQ_NUM)
  46. #endif /* __MACH_IRQS_H__ */