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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * include/asm-arm/arch-nexuspci/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 const unsigned char irq_cmd[] =
  16. {
  17. INTCONT_IRQ_DUART,
  18. INTCONT_IRQ_PLX,
  19. INTCONT_IRQ_D,
  20. INTCONT_IRQ_C,
  21. INTCONT_IRQ_B,
  22. INTCONT_IRQ_A,
  23. INTCONT_IRQ_SYSERR
  24. };
  25. static void ftvpci_mask_irq(unsigned int irq)
  26. {
  27. __raw_writel(irq_cmd[irq], INTCONT_BASE);
  28. soft_irq_mask &= ~(1<<irq);
  29. }
  30. static void ftvpci_unmask_irq(unsigned int irq)
  31. {
  32. soft_irq_mask |= (1<<irq);
  33. __raw_writel(irq_cmd[irq] | 1, INTCONT_BASE);
  34. }
  35.  
  36. static __inline__ void irq_init_irq(void)
  37. {
  38. unsigned int i;
  39. /* Mask all FIQs */
  40. __raw_writel(INTCONT_FIQ_PLX, INTCONT_BASE);
  41. __raw_writel(INTCONT_FIQ_D, INTCONT_BASE);
  42. __raw_writel(INTCONT_FIQ_C, INTCONT_BASE);
  43. __raw_writel(INTCONT_FIQ_B, INTCONT_BASE);
  44. __raw_writel(INTCONT_FIQ_A, INTCONT_BASE);
  45. __raw_writel(INTCONT_FIQ_SYSERR, INTCONT_BASE);
  46. /* Disable all interrupts initially. */
  47. for (i = 0; i < NR_IRQS; i++) {
  48. if (i >= FIRST_IRQ && i <= LAST_IRQ) {
  49. irq_desc[i].valid = 1;
  50. irq_desc[i].probe_ok = 1;
  51. irq_desc[i].mask_ack = ftvpci_mask_irq;
  52. irq_desc[i].mask = ftvpci_mask_irq;
  53. irq_desc[i].unmask = ftvpci_unmask_irq;
  54. ftvpci_mask_irq(i);
  55. } else {
  56. irq_desc[i].valid = 0;
  57. irq_desc[i].probe_ok = 0;
  58. }
  59. }
  60. }