irqs.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-nexuspci/irqs.h
  3.  *
  4.  * Copyright (C) 1997, 1998, 2000 Philip Blundell
  5.  */
  6. /*
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  11.  */
  12. /*
  13.  * The hardware is capable of routing any interrupt source (except the
  14.  * DUART) to either IRQ or FIQ.  We ignore FIQ and use IRQ exclusively
  15.  * for simplicity.  
  16.  */
  17. #define IRQ_DUART 0
  18. #define IRQ_PLX  1
  19. #define IRQ_PCI_D 2
  20. #define IRQ_PCI_C 3
  21. #define IRQ_PCI_B 4
  22. #define IRQ_PCI_A         5
  23. #define IRQ_SYSERR 6 /* only from IOSLAVE rev B */
  24. #define FIRST_IRQ IRQ_DUART
  25. #define LAST_IRQ IRQ_SYSERR
  26. /* timer is part of the DUART */
  27. #define IRQ_TIMER IRQ_DUART
  28. #define irq_cannonicalize(i) (i)