irq.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /*
  2. * linux/arch/arm/mach-pxa/irq.c
  3. *
  4. * Generic PXA IRQ handling
  5. *
  6. * Author: Nicolas Pitre
  7. * Created: Jun 15, 2001
  8. * Copyright: MontaVista Software Inc.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/init.h>
  15. #include <linux/module.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/syscore_ops.h>
  18. #include <linux/io.h>
  19. #include <linux/irq.h>
  20. #include <asm/exception.h>
  21. #include <mach/hardware.h>
  22. #include <mach/irqs.h>
  23. #include "generic.h"
  24. #define IRQ_BASE io_p2v(0x40d00000)
  25. #define ICIP (0x000)
  26. #define ICMR (0x004)
  27. #define ICLR (0x008)
  28. #define ICFR (0x00c)
  29. #define ICPR (0x010)
  30. #define ICCR (0x014)
  31. #define ICHP (0x018)
  32. #define IPR(i) (((i) < 32) ? (0x01c + ((i) << 2)) : \
  33. ((i) < 64) ? (0x0b0 + (((i) - 32) << 2)) : \
  34. (0x144 + (((i) - 64) << 2)))
  35. #define ICHP_VAL_IRQ (1 << 31)
  36. #define ICHP_IRQ(i) (((i) >> 16) & 0x7fff)
  37. #define IPR_VALID (1 << 31)
  38. #define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f)
  39. #define MAX_INTERNAL_IRQS 128
  40. /*
  41. * This is for peripheral IRQs internal to the PXA chip.
  42. */
  43. static int pxa_internal_irq_nr;
  44. static inline int cpu_has_ipr(void)
  45. {
  46. return !cpu_is_pxa25x();
  47. }
  48. static inline void __iomem *irq_base(int i)
  49. {
  50. static unsigned long phys_base[] = {
  51. 0x40d00000,
  52. 0x40d0009c,
  53. 0x40d00130,
  54. };
  55. return io_p2v(phys_base[i]);
  56. }
  57. void pxa_mask_irq(struct irq_data *d)
  58. {
  59. void __iomem *base = irq_data_get_irq_chip_data(d);
  60. uint32_t icmr = __raw_readl(base + ICMR);
  61. icmr &= ~(1 << IRQ_BIT(d->irq));
  62. __raw_writel(icmr, base + ICMR);
  63. }
  64. void pxa_unmask_irq(struct irq_data *d)
  65. {
  66. void __iomem *base = irq_data_get_irq_chip_data(d);
  67. uint32_t icmr = __raw_readl(base + ICMR);
  68. icmr |= 1 << IRQ_BIT(d->irq);
  69. __raw_writel(icmr, base + ICMR);
  70. }
  71. static struct irq_chip pxa_internal_irq_chip = {
  72. .name = "SC",
  73. .irq_ack = pxa_mask_irq,
  74. .irq_mask = pxa_mask_irq,
  75. .irq_unmask = pxa_unmask_irq,
  76. };
  77. asmlinkage void __exception_irq_entry icip_handle_irq(struct pt_regs *regs)
  78. {
  79. uint32_t icip, icmr, mask;
  80. do {
  81. icip = __raw_readl(IRQ_BASE + ICIP);
  82. icmr = __raw_readl(IRQ_BASE + ICMR);
  83. mask = icip & icmr;
  84. if (mask == 0)
  85. break;
  86. handle_IRQ(PXA_IRQ(fls(mask) - 1), regs);
  87. } while (1);
  88. }
  89. asmlinkage void __exception_irq_entry ichp_handle_irq(struct pt_regs *regs)
  90. {
  91. uint32_t ichp;
  92. do {
  93. __asm__ __volatile__("mrc p6, 0, %0, c5, c0, 0\n": "=r"(ichp));
  94. if ((ichp & ICHP_VAL_IRQ) == 0)
  95. break;
  96. handle_IRQ(PXA_IRQ(ICHP_IRQ(ichp)), regs);
  97. } while (1);
  98. }
  99. void __init pxa_init_irq(int irq_nr, int (*fn)(struct irq_data *, unsigned int))
  100. {
  101. int irq, i, n;
  102. BUG_ON(irq_nr > MAX_INTERNAL_IRQS);
  103. pxa_internal_irq_nr = irq_nr;
  104. for (n = 0; n < irq_nr; n += 32) {
  105. void __iomem *base = irq_base(n >> 5);
  106. __raw_writel(0, base + ICMR); /* disable all IRQs */
  107. __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */
  108. for (i = n; (i < (n + 32)) && (i < irq_nr); i++) {
  109. /* initialize interrupt priority */
  110. if (cpu_has_ipr())
  111. __raw_writel(i | IPR_VALID, IRQ_BASE + IPR(i));
  112. irq = PXA_IRQ(i);
  113. irq_set_chip_and_handler(irq, &pxa_internal_irq_chip,
  114. handle_level_irq);
  115. irq_set_chip_data(irq, base);
  116. set_irq_flags(irq, IRQF_VALID);
  117. }
  118. }
  119. /* only unmasked interrupts kick us out of idle */
  120. __raw_writel(1, irq_base(0) + ICCR);
  121. pxa_internal_irq_chip.irq_set_wake = fn;
  122. }
  123. #ifdef CONFIG_PM
  124. static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32];
  125. static unsigned long saved_ipr[MAX_INTERNAL_IRQS];
  126. static int pxa_irq_suspend(void)
  127. {
  128. int i;
  129. for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
  130. void __iomem *base = irq_base(i);
  131. saved_icmr[i] = __raw_readl(base + ICMR);
  132. __raw_writel(0, base + ICMR);
  133. }
  134. if (cpu_has_ipr()) {
  135. for (i = 0; i < pxa_internal_irq_nr; i++)
  136. saved_ipr[i] = __raw_readl(IRQ_BASE + IPR(i));
  137. }
  138. return 0;
  139. }
  140. static void pxa_irq_resume(void)
  141. {
  142. int i;
  143. for (i = 0; i < pxa_internal_irq_nr / 32; i++) {
  144. void __iomem *base = irq_base(i);
  145. __raw_writel(saved_icmr[i], base + ICMR);
  146. __raw_writel(0, base + ICLR);
  147. }
  148. if (cpu_has_ipr())
  149. for (i = 0; i < pxa_internal_irq_nr; i++)
  150. __raw_writel(saved_ipr[i], IRQ_BASE + IPR(i));
  151. __raw_writel(1, IRQ_BASE + ICCR);
  152. }
  153. #else
  154. #define pxa_irq_suspend NULL
  155. #define pxa_irq_resume NULL
  156. #endif
  157. struct syscore_ops pxa_irq_syscore_ops = {
  158. .suspend = pxa_irq_suspend,
  159. .resume = pxa_irq_resume,
  160. };