irq.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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/sysdev.h>
  18. #include <linux/io.h>
  19. #include <linux/irq.h>
  20. #include <mach/hardware.h>
  21. #include <mach/irqs.h>
  22. #include <mach/gpio.h>
  23. #include "generic.h"
  24. #define IRQ_BASE (void __iomem *)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 IPR_VALID (1 << 31)
  36. #define IRQ_BIT(n) (((n) - PXA_IRQ(0)) & 0x1f)
  37. #define MAX_INTERNAL_IRQS 128
  38. /*
  39. * This is for peripheral IRQs internal to the PXA chip.
  40. */
  41. static int pxa_internal_irq_nr;
  42. static inline int cpu_has_ipr(void)
  43. {
  44. return !cpu_is_pxa25x();
  45. }
  46. static void pxa_mask_irq(struct irq_data *d)
  47. {
  48. void __iomem *base = irq_data_get_irq_chip_data(d);
  49. uint32_t icmr = __raw_readl(base + ICMR);
  50. icmr &= ~(1 << IRQ_BIT(d->irq));
  51. __raw_writel(icmr, base + ICMR);
  52. }
  53. static void pxa_unmask_irq(struct irq_data *d)
  54. {
  55. void __iomem *base = irq_data_get_irq_chip_data(d);
  56. uint32_t icmr = __raw_readl(base + ICMR);
  57. icmr |= 1 << IRQ_BIT(d->irq);
  58. __raw_writel(icmr, base + ICMR);
  59. }
  60. static struct irq_chip pxa_internal_irq_chip = {
  61. .name = "SC",
  62. .irq_ack = pxa_mask_irq,
  63. .irq_mask = pxa_mask_irq,
  64. .irq_unmask = pxa_unmask_irq,
  65. };
  66. /*
  67. * GPIO IRQs for GPIO 0 and 1
  68. */
  69. static int pxa_set_low_gpio_type(struct irq_data *d, unsigned int type)
  70. {
  71. int gpio = d->irq - IRQ_GPIO0;
  72. if (__gpio_is_occupied(gpio)) {
  73. pr_err("%s failed: GPIO is configured\n", __func__);
  74. return -EINVAL;
  75. }
  76. if (type & IRQ_TYPE_EDGE_RISING)
  77. GRER0 |= GPIO_bit(gpio);
  78. else
  79. GRER0 &= ~GPIO_bit(gpio);
  80. if (type & IRQ_TYPE_EDGE_FALLING)
  81. GFER0 |= GPIO_bit(gpio);
  82. else
  83. GFER0 &= ~GPIO_bit(gpio);
  84. return 0;
  85. }
  86. static void pxa_ack_low_gpio(struct irq_data *d)
  87. {
  88. GEDR0 = (1 << (d->irq - IRQ_GPIO0));
  89. }
  90. static void pxa_mask_low_gpio(struct irq_data *d)
  91. {
  92. struct irq_desc *desc = irq_to_desc(d->irq);
  93. desc->irq_data.chip->irq_mask(d);
  94. }
  95. static void pxa_unmask_low_gpio(struct irq_data *d)
  96. {
  97. struct irq_desc *desc = irq_to_desc(d->irq);
  98. desc->irq_data.chip->irq_unmask(d);
  99. }
  100. static struct irq_chip pxa_low_gpio_chip = {
  101. .name = "GPIO-l",
  102. .irq_ack = pxa_ack_low_gpio,
  103. .irq_mask = pxa_mask_low_gpio,
  104. .irq_unmask = pxa_unmask_low_gpio,
  105. .irq_set_type = pxa_set_low_gpio_type,
  106. };
  107. static void __init pxa_init_low_gpio_irq(set_wake_t fn)
  108. {
  109. int irq;
  110. /* clear edge detection on GPIO 0 and 1 */
  111. GFER0 &= ~0x3;
  112. GRER0 &= ~0x3;
  113. GEDR0 = 0x3;
  114. for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) {
  115. set_irq_chip(irq, &pxa_low_gpio_chip);
  116. set_irq_handler(irq, handle_edge_irq);
  117. set_irq_flags(irq, IRQF_VALID);
  118. }
  119. pxa_low_gpio_chip.irq_set_wake = fn;
  120. }
  121. static inline void __iomem *irq_base(int i)
  122. {
  123. static unsigned long phys_base[] = {
  124. 0x40d00000,
  125. 0x40d0009c,
  126. 0x40d00130,
  127. };
  128. return (void __iomem *)io_p2v(phys_base[i >> 5]);
  129. }
  130. void __init pxa_init_irq(int irq_nr, set_wake_t fn)
  131. {
  132. int irq, i, n;
  133. BUG_ON(irq_nr > MAX_INTERNAL_IRQS);
  134. pxa_internal_irq_nr = irq_nr;
  135. for (n = 0; n < irq_nr; n += 32) {
  136. void __iomem *base = irq_base(n);
  137. __raw_writel(0, base + ICMR); /* disable all IRQs */
  138. __raw_writel(0, base + ICLR); /* all IRQs are IRQ, not FIQ */
  139. for (i = n; (i < (n + 32)) && (i < irq_nr); i++) {
  140. /* initialize interrupt priority */
  141. if (cpu_has_ipr())
  142. __raw_writel(i | IPR_VALID, IRQ_BASE + IPR(i));
  143. irq = PXA_IRQ(i);
  144. set_irq_chip(irq, &pxa_internal_irq_chip);
  145. set_irq_chip_data(irq, base);
  146. set_irq_handler(irq, handle_level_irq);
  147. set_irq_flags(irq, IRQF_VALID);
  148. }
  149. }
  150. /* only unmasked interrupts kick us out of idle */
  151. __raw_writel(1, irq_base(0) + ICCR);
  152. pxa_internal_irq_chip.irq_set_wake = fn;
  153. pxa_init_low_gpio_irq(fn);
  154. }
  155. #ifdef CONFIG_PM
  156. static unsigned long saved_icmr[MAX_INTERNAL_IRQS/32];
  157. static unsigned long saved_ipr[MAX_INTERNAL_IRQS];
  158. static int pxa_irq_suspend(struct sys_device *dev, pm_message_t state)
  159. {
  160. int i;
  161. for (i = 0; i < pxa_internal_irq_nr; i += 32) {
  162. void __iomem *base = irq_base(i);
  163. saved_icmr[i] = __raw_readl(base + ICMR);
  164. __raw_writel(0, base + ICMR);
  165. }
  166. if (cpu_has_ipr()) {
  167. for (i = 0; i < pxa_internal_irq_nr; i++)
  168. saved_ipr[i] = __raw_readl(IRQ_BASE + IPR(i));
  169. }
  170. return 0;
  171. }
  172. static int pxa_irq_resume(struct sys_device *dev)
  173. {
  174. int i;
  175. for (i = 0; i < pxa_internal_irq_nr; i += 32) {
  176. void __iomem *base = irq_base(i);
  177. __raw_writel(saved_icmr[i], base + ICMR);
  178. __raw_writel(0, base + ICLR);
  179. }
  180. if (!cpu_is_pxa25x())
  181. for (i = 0; i < pxa_internal_irq_nr; i++)
  182. __raw_writel(saved_ipr[i], IRQ_BASE + IPR(i));
  183. __raw_writel(1, IRQ_BASE + ICCR);
  184. return 0;
  185. }
  186. #else
  187. #define pxa_irq_suspend NULL
  188. #define pxa_irq_resume NULL
  189. #endif
  190. struct sysdev_class pxa_irq_sysclass = {
  191. .name = "irq",
  192. .suspend = pxa_irq_suspend,
  193. .resume = pxa_irq_resume,
  194. };
  195. static int __init pxa_irq_init(void)
  196. {
  197. return sysdev_class_register(&pxa_irq_sysclass);
  198. }
  199. core_initcall(pxa_irq_init);