]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
genirq: percpu: allow interrupt type to be set at enable time
authorMarc Zyngier <marc.zyngier@arm.com>
Fri, 30 Sep 2011 09:48:47 +0000 (10:48 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 3 Oct 2011 13:35:27 +0000 (15:35 +0200)
As request_percpu_irq() doesn't allow for a percpu interrupt to have
its type configured (it is generally impossible to configure it on all
CPUs at once), add a 'type' argument to enable_percpu_irq().

This allows some low-level, board specific init code to be switched to
a generic API.

[ tglx: Added WARN_ON argument ]

Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Cc: Abhijeet Dharmapurikar <adharmap@codeaurora.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/linux/interrupt.h
kernel/irq/manage.c

index 1cdfd09c8abccb401f82e005a4a2359966869f1d..664544ff77d5aa1d8134b09f232232e75ae41d3e 100644 (file)
@@ -223,7 +223,7 @@ extern void disable_irq_nosync(unsigned int irq);
 extern void disable_irq(unsigned int irq);
 extern void disable_percpu_irq(unsigned int irq);
 extern void enable_irq(unsigned int irq);
-extern void enable_percpu_irq(unsigned int irq);
+extern void enable_percpu_irq(unsigned int irq, unsigned int type);
 
 /* The following three functions are for the core kernel use only. */
 #ifdef CONFIG_GENERIC_HARDIRQS
index 7b4b156d065ce49cda749d646a52606752e41133..2bc86869859e12450fe496a289b0d3c2bb547d4b 100644 (file)
@@ -1419,7 +1419,7 @@ int request_any_context_irq(unsigned int irq, irq_handler_t handler,
 }
 EXPORT_SYMBOL_GPL(request_any_context_irq);
 
-void enable_percpu_irq(unsigned int irq)
+void enable_percpu_irq(unsigned int irq, unsigned int type)
 {
        unsigned int cpu = smp_processor_id();
        unsigned long flags;
@@ -1428,7 +1428,20 @@ void enable_percpu_irq(unsigned int irq)
        if (!desc)
                return;
 
+       type &= IRQ_TYPE_SENSE_MASK;
+       if (type != IRQ_TYPE_NONE) {
+               int ret;
+
+               ret = __irq_set_trigger(desc, irq, type);
+
+               if (ret) {
+                       WARN(1, "failed to set type for IRQ%d\n, irq");
+                       goto out;
+               }
+       }
+
        irq_percpu_enable(desc, cpu);
+out:
        irq_put_desc_unlock(desc, flags);
 }