Fedora kernel-2.6.17-1.2142_FC4 patched with stable patch-2.6.17.4-vs2.0.2-rc26.diff
[linux-2.6.git] / arch / arm / mach-pxa / irq.c
index c771e43..539b596 100644 (file)
 #include <asm/hardware.h>
 #include <asm/irq.h>
 #include <asm/mach/irq.h>
+#include <asm/arch/pxa-regs.h>
 
 #include "generic.h"
 
 
 /*
- * This is for IRQs known as PXA_IRQ([8...31]).
+ * This is for peripheral IRQs internal to the PXA chip.
  */
 
-static void pxa_mask_irq(unsigned int irq)
+static void pxa_mask_low_irq(unsigned int irq)
 {
        ICMR &= ~(1 << (irq + PXA_IRQ_SKIP));
 }
 
-static void pxa_unmask_irq(unsigned int irq)
+static void pxa_unmask_low_irq(unsigned int irq)
 {
        ICMR |= (1 << (irq + PXA_IRQ_SKIP));
 }
 
-static struct irqchip pxa_internal_chip = {
-       .ack            = pxa_mask_irq,
-       .mask           = pxa_mask_irq,
-       .unmask         = pxa_unmask_irq,
+static struct irqchip pxa_internal_chip_low = {
+       .ack            = pxa_mask_low_irq,
+       .mask           = pxa_mask_low_irq,
+       .unmask         = pxa_unmask_low_irq,
 };
 
+#if PXA_INTERNAL_IRQS > 32
+
+/*
+ * This is for the second set of internal IRQs as found on the PXA27x.
+ */
+
+static void pxa_mask_high_irq(unsigned int irq)
+{
+       ICMR2 &= ~(1 << (irq - 32 + PXA_IRQ_SKIP));
+}
+
+static void pxa_unmask_high_irq(unsigned int irq)
+{
+       ICMR2 |= (1 << (irq - 32 + PXA_IRQ_SKIP));
+}
+
+static struct irqchip pxa_internal_chip_high = {
+       .ack            = pxa_mask_high_irq,
+       .mask           = pxa_mask_high_irq,
+       .unmask         = pxa_unmask_high_irq,
+};
+
+#endif
+
 /*
  * PXA GPIO edge detection for IRQs:
  * IRQs are generated on Falling-Edge, Rising-Edge, or both.
  * Use this instead of directly setting GRER/GFER.
  */
 
-static long GPIO_IRQ_rising_edge[3];
-static long GPIO_IRQ_falling_edge[3];
-static long GPIO_IRQ_mask[3];
+static long GPIO_IRQ_rising_edge[4];
+static long GPIO_IRQ_falling_edge[4];
+static long GPIO_IRQ_mask[4];
 
 static int pxa_gpio_irq_type(unsigned int irq, unsigned int type)
 {
@@ -72,23 +97,23 @@ static int pxa_gpio_irq_type(unsigned int irq, unsigned int type)
                type = __IRQT_RISEDGE | __IRQT_FALEDGE;
        }
 
-       printk(KERN_DEBUG "IRQ%d (GPIO%d): ", irq, gpio);
+       /* printk(KERN_DEBUG "IRQ%d (GPIO%d): ", irq, gpio); */
 
        pxa_gpio_mode(gpio | GPIO_IN);
 
        if (type & __IRQT_RISEDGE) {
-               printk("rising ");
+               /* printk("rising "); */
                __set_bit (gpio, GPIO_IRQ_rising_edge);
        } else
                __clear_bit (gpio, GPIO_IRQ_rising_edge);
 
        if (type & __IRQT_FALEDGE) {
-               printk("falling ");
+               /* printk("falling "); */
                __set_bit (gpio, GPIO_IRQ_falling_edge);
        } else
                __clear_bit (gpio, GPIO_IRQ_falling_edge);
 
-       printk("edges\n");
+       /* printk("edges\n"); */
 
        GRER(gpio) = GPIO_IRQ_rising_edge[idx] & GPIO_IRQ_mask[idx];
        GFER(gpio) = GPIO_IRQ_falling_edge[idx] & GPIO_IRQ_mask[idx];
@@ -106,13 +131,13 @@ static void pxa_ack_low_gpio(unsigned int irq)
 
 static struct irqchip pxa_low_gpio_chip = {
        .ack            = pxa_ack_low_gpio,
-       .mask           = pxa_mask_irq,
-       .unmask         = pxa_unmask_irq,
-       .type           = pxa_gpio_irq_type,
+       .mask           = pxa_mask_low_irq,
+       .unmask         = pxa_unmask_low_irq,
+       .set_type       = pxa_gpio_irq_type,
 };
 
 /*
- * Demux handler for GPIO 2-80 edge detect interrupts
+ * Demux handler for GPIO>=2 edge detect interrupts
  */
 
 static void pxa_gpio_demux_handler(unsigned int irq, struct irqdesc *desc,
@@ -132,7 +157,7 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irqdesc *desc,
                        mask >>= 2;
                        do {
                                if (mask & 1)
-                                       desc->handle(irq, desc, regs);
+                                       desc_handle_irq(irq, desc, regs);
                                irq++;
                                desc++;
                                mask >>= 1;
@@ -147,7 +172,7 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irqdesc *desc,
                        desc = irq_desc + irq;
                        do {
                                if (mask & 1)
-                                       desc->handle(irq, desc, regs);
+                                       desc_handle_irq(irq, desc, regs);
                                irq++;
                                desc++;
                                mask >>= 1;
@@ -162,13 +187,30 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irqdesc *desc,
                        desc = irq_desc + irq;
                        do {
                                if (mask & 1)
-                                       desc->handle(irq, desc, regs);
+                                       desc_handle_irq(irq, desc, regs);
                                irq++;
                                desc++;
                                mask >>= 1;
                        } while (mask);
                        loop = 1;
                }
+
+#if PXA_LAST_GPIO >= 96
+               mask = GEDR3;
+               if (mask) {
+                       GEDR3 = mask;
+                       irq = IRQ_GPIO(96);
+                       desc = irq_desc + irq;
+                       do {
+                               if (mask & 1)
+                                       desc_handle_irq(irq, desc, regs);
+                               irq++;
+                               desc++;
+                               mask >>= 1;
+                       } while (mask);
+                       loop = 1;
+               }
+#endif
        } while (loop);
 }
 
@@ -199,7 +241,7 @@ static struct irqchip pxa_muxed_gpio_chip = {
        .ack            = pxa_ack_muxed_gpio,
        .mask           = pxa_mask_muxed_gpio,
        .unmask         = pxa_unmask_muxed_gpio,
-       .type           = pxa_gpio_irq_type,
+       .set_type       = pxa_gpio_irq_type,
 };
 
 
@@ -214,12 +256,25 @@ void __init pxa_init_irq(void)
        ICLR = 0;
 
        /* clear all GPIO edge detects */
-       GFER0 = GFER1 = GFER2 = 0;
-       GRER0 = GRER1 = GRER2 = 0;
+       GFER0 = 0;
+       GFER1 = 0;
+       GFER2 = 0;
+       GRER0 = 0;
+       GRER1 = 0;
+       GRER2 = 0;
        GEDR0 = GEDR0;
        GEDR1 = GEDR1;
        GEDR2 = GEDR2;
 
+#ifdef CONFIG_PXA27x
+       /* And similarly for the extra regs on the PXA27x */
+       ICMR2 = 0;
+       ICLR2 = 0;
+       GFER3 = 0;
+       GRER3 = 0;
+       GEDR3 = GEDR3;
+#endif
+
        /* only unmasked interrupts kick us out of idle */
        ICCR = 1;
 
@@ -227,10 +282,18 @@ void __init pxa_init_irq(void)
        GPIO_IRQ_mask[0] = 3;
 
        for (irq = PXA_IRQ(PXA_IRQ_SKIP); irq <= PXA_IRQ(31); irq++) {
-               set_irq_chip(irq, &pxa_internal_chip);
+               set_irq_chip(irq, &pxa_internal_chip_low);
+               set_irq_handler(irq, do_level_IRQ);
+               set_irq_flags(irq, IRQF_VALID);
+       }
+
+#if PXA_INTERNAL_IRQS > 32
+       for (irq = PXA_IRQ(32); irq < PXA_IRQ(PXA_INTERNAL_IRQS); irq++) {
+               set_irq_chip(irq, &pxa_internal_chip_high);
                set_irq_handler(irq, do_level_IRQ);
                set_irq_flags(irq, IRQF_VALID);
        }
+#endif
 
        for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) {
                set_irq_chip(irq, &pxa_low_gpio_chip);
@@ -238,13 +301,13 @@ void __init pxa_init_irq(void)
                set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
        }
 
-       for (irq = IRQ_GPIO(2); irq <= IRQ_GPIO(80); irq++) {
+       for (irq = IRQ_GPIO(2); irq <= IRQ_GPIO(PXA_LAST_GPIO); irq++) {
                set_irq_chip(irq, &pxa_muxed_gpio_chip);
                set_irq_handler(irq, do_edge_IRQ);
                set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
        }
 
-       /* Install handler for GPIO 2-80 edge detect interrupts */
-       set_irq_chip(IRQ_GPIO_2_80, &pxa_internal_chip);
-       set_irq_chained_handler(IRQ_GPIO_2_80, pxa_gpio_demux_handler);
+       /* Install handler for GPIO>=2 edge detect interrupts */
+       set_irq_chip(IRQ_GPIO_2_x, &pxa_internal_chip_low);
+       set_irq_chained_handler(IRQ_GPIO_2_x, pxa_gpio_demux_handler);
 }