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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * include/asm-arm/arch-tbox/irq.h
  3.  *
  4.  * Copyright (C) 1998, 1999, 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. #include <asm/io.h>
  13. #define fixup_irq(x) (x)
  14. extern unsigned long soft_irq_mask;
  15. static void tbox_mask_irq(unsigned int irq)
  16. {
  17. __raw_writel(0, INTCONT + (irq << 2));
  18. soft_irq_mask &= ~(1<<irq);
  19. }
  20. static void tbox_unmask_irq(unsigned int irq)
  21. {
  22. soft_irq_mask |= (1<<irq);
  23. __raw_writel(1, INTCONT + (irq << 2));
  24. }
  25.  
  26. static __inline__ void irq_init_irq(void)
  27. {
  28. unsigned int i;
  29. /* Disable all interrupts initially. */
  30. for (i = 0; i < NR_IRQS; i++) {
  31. if (i <= 10 || (i >= 12 && i <= 13)) {
  32. irq_desc[i].valid = 1;
  33. irq_desc[i].probe_ok = 0;
  34. irq_desc[i].mask_ack = tbox_mask_irq;
  35. irq_desc[i].mask = tbox_mask_irq;
  36. irq_desc[i].unmask = tbox_unmask_irq;
  37. tbox_mask_irq(i);
  38. } else {
  39. irq_desc[i].valid = 0;
  40. irq_desc[i].probe_ok = 0;
  41. }
  42. }
  43. }