• S
    regmap: set MASK_ON_SUSPEND/SKIP_SET_WAKE if no wake_base · 685879f4
    Stephen Warren 提交于
    If a regmap-irq chip has no wake base:
    
    * There's no point calling .irq_set_wake, hence IRQCHIP_SKIP_SET_WAKE.
    
    * If some IRQs in the chip are enabled for wake and some aren't, we
      should mask those interrupts that are not wake enabled, so that if
      they occur during suspend, the system is not awoken. Hence,
      IRQCHIP_MASK_ON_SUSPEND.
    
    Note that IRQCHIP_MASK_ON_SUSPEND is handled by check_wakeup_irqs(),
    which always iterates over every single interrupt in the system,
    irrespective of whether an interrupt is a child of a controller whose
    output interrupt has no wake-enabled inputs and hence is presumably
    masked itself. Hence this change might cause interrupt unnecessary
    masking operations and associated register I/O.
    Signed-off-by: NStephen Warren <swarren@nvidia.com>
    Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
    685879f4
regmap-irq.c 10.2 KB