irq.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file COPYING in the main directory of this archive
  4. * for more details.
  5. *
  6. * Changed by HuTao Apr18, 2003
  7. *
  8. * Copyright was missing when I got the code so took from MIPS arch ...MaTed---
  9. * Copyright (C) 1994 by Waldorf GMBH, written by Ralf Baechle
  10. * Copyright (C) 1995, 96, 97, 98, 99, 2000, 2001 by Ralf Baechle
  11. *
  12. * Adapted for BlackFin (ADI) by Ted Ma <mated@sympatico.ca>
  13. * Copyright (c) 2002 Arcturus Networks Inc. (www.arcturusnetworks.com)
  14. * Copyright (c) 2002 Lineo, Inc. <mattw@lineo.com>
  15. */
  16. #ifndef _BFIN_IRQ_H_
  17. #define _BFIN_IRQ_H_
  18. #include <mach/irq.h>
  19. #include <asm/ptrace.h>
  20. /*******************************************************************************
  21. ***** INTRODUCTION ***********
  22. * On the Blackfin, the interrupt structure allows remmapping of the hardware
  23. * levels.
  24. * - I'm going to assume that the H/W level is going to stay at the default
  25. * settings. If someone wants to go through and abstart this out, feel free
  26. * to mod the interrupt numbering scheme.
  27. * - I'm abstracting the interrupts so that uClinux does not know anything
  28. * about the H/W levels. If you want to change the H/W AND keep the abstracted
  29. * levels that uClinux sees, you should be able to do most of it here.
  30. * - I've left the "abstract" numbering sparce in case someone wants to pull the
  31. * interrupts apart (just the TX/RX for the various devices)
  32. *******************************************************************************/
  33. /* SYS_IRQS and NR_IRQS are defined in <mach-bf5xx/irq.h>*/
  34. /*
  35. * Machine specific interrupt sources.
  36. *
  37. * Adding an interrupt service routine for a source with this bit
  38. * set indicates a special machine specific interrupt source.
  39. * The machine specific files define these sources.
  40. *
  41. * The IRQ_MACHSPEC bit is now gone - the only thing it did was to
  42. * introduce unnecessary overhead.
  43. *
  44. * All interrupt handling is actually machine specific so it is better
  45. * to use function pointers, as used by the Sparc port, and select the
  46. * interrupt handling functions when initializing the kernel. This way
  47. * we save some unnecessary overhead at run-time.
  48. * 01/11/97 - Jes
  49. */
  50. extern void ack_bad_irq(unsigned int irq);
  51. static __inline__ int irq_canonicalize(int irq)
  52. {
  53. return irq;
  54. }
  55. /* count of spurious interrupts */
  56. /* extern volatile unsigned int num_spurious; */
  57. #ifndef NO_IRQ
  58. #define NO_IRQ ((unsigned int)(-1))
  59. #endif
  60. #define SIC_SYSIRQ(irq) (irq - (IRQ_CORETMR + 1))
  61. #endif /* _BFIN_IRQ_H_ */