]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
genirq: Move wakeup state to irq_data
authorThomas Gleixner <tglx@linutronix.de>
Thu, 10 Feb 2011 18:46:26 +0000 (19:46 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Sat, 19 Feb 2011 11:58:22 +0000 (12:58 +0100)
Some irq_chips need to know the state of wakeup mode for
setting the trigger type etc. Reflect it in irq_data state.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/linux/irq.h
kernel/irq/internals.h
kernel/irq/manage.c
kernel/irq/pm.c

index ef6b66dc9d031e20fdfd8e560b7f7b0d96b95e03..94c8f5bb548f6f7b6fa3a044a8e5db02ccfca56d 100644 (file)
@@ -168,6 +168,8 @@ struct irq_data {
  * IRQD_PER_CPU                        - Interrupt is per cpu
  * IRQD_AFFINITY_SET           - Interrupt affinity was set
  * IRQD_LEVEL                  - Interrupt is level triggered
+ * IRQD_WAKEUP_STATE           - Interrupt is configured for wakeup
+ *                               from suspend
  */
 enum {
        IRQD_TRIGGER_MASK               = 0xf,
@@ -176,6 +178,7 @@ enum {
        IRQD_PER_CPU                    = (1 << 11),
        IRQD_AFFINITY_SET               = (1 << 12),
        IRQD_LEVEL                      = (1 << 13),
+       IRQD_WAKEUP_STATE               = (1 << 14),
 };
 
 static inline bool irqd_is_setaffinity_pending(struct irq_data *d)
@@ -217,6 +220,11 @@ static inline bool irqd_is_level_type(struct irq_data *d)
        return d->state_use_accessors & IRQD_LEVEL;
 }
 
+static inline bool irqd_is_wakeup_set(struct irq_data *d)
+{
+       return d->state_use_accessors & IRQD_WAKEUP_STATE;
+}
+
 /**
  * struct irq_chip - hardware interrupt chip descriptor
  *
index 1d500fbde0d404945b916385939ad289f880afa1..5e2366da9f3826c593ec9c695592e17387f54734 100644 (file)
@@ -46,7 +46,6 @@ enum {
  * IRQS_PENDING                        - irq is pending and replayed later
  * IRQS_MASKED                 - irq is masked
  * IRQS_SUSPENDED              - irq is suspended
- * IRQS_WAKEUP                 - irq triggers system wakeup from suspend
  */
 enum {
        IRQS_AUTODETECT         = 0x00000001,
@@ -60,7 +59,6 @@ enum {
        IRQS_PENDING            = 0x00000200,
        IRQS_MASKED             = 0x00000400,
        IRQS_SUSPENDED          = 0x00000800,
-       IRQS_WAKEUP             = 0x00001000,
 };
 
 #include "compat.h"
index 50809c79c7ad62d46c52086fb303e3f5b691ff0b..ea6add6036b19d385f9a8cdc957097ddfcca15ef 100644 (file)
@@ -492,7 +492,7 @@ int irq_set_irq_wake(unsigned int irq, unsigned int on)
                        if (ret)
                                desc->wake_depth = 0;
                        else
-                               desc->istate |= IRQS_WAKEUP;
+                               irqd_set(&desc->irq_data, IRQD_WAKEUP_STATE);
                }
        } else {
                if (desc->wake_depth == 0) {
@@ -502,7 +502,7 @@ int irq_set_irq_wake(unsigned int irq, unsigned int on)
                        if (ret)
                                desc->wake_depth = 1;
                        else
-                               desc->istate &= ~IRQS_WAKEUP;
+                               irqd_clear(&desc->irq_data, IRQD_WAKEUP_STATE);
                }
        }
 
index f39383d8672da086709acc8e377af2ca9d1746bc..1329f0eff49e5f5b99c5793d04e084ddef169205 100644 (file)
@@ -69,7 +69,7 @@ int check_wakeup_irqs(void)
        int irq;
 
        for_each_irq_desc(irq, desc)
-               if ((desc->istate & IRQS_WAKEUP) &&
+               if (irqd_is_wakeup_set(&desc->irq_data) &&
                    (desc->istate & IRQS_PENDING))
                        return -EBUSY;