* Brian Norris <briannorris@xxxxxxxxxxxx> [161111 11:40]: > > BTW, for context, I'm working on using dev_pm_set_dedicated_wake_irq() > for a Wifi driver which supports out-of-band (e.g., GPIO-based) wakeup. > I see it's used in the I2C core, but the I2C code never actually calls > dev_pm_enable_wake_irq(). So while I think I can use this API OK for > my Wifi driver (calling dev_pm_{en,dis}able_wake_irq() at system > suspend/resume), I'm not sure this will help the I2C case. OK it's used for that purpose with the SDIO dat1 interrupt for omaps. This allows the WLAN to stay on and connected while the SoC can hit deeper idle states. The calling of dev_pm_enable_wake_irq() happens automagically from rpm_suspend() and then it's disabled after rpm_resume(). > The more I look at this API, the more I'm confused, especially about its > seeming dependence on runtime PM. Are you talking about suspend/resume only? If so, see if the following snippet from Grygorii helps. Grygorii, care to send it with proper description and Signed-off-by if you did not yet do that? Regards, Tony 8< ---------------------- --- a/drivers/base/power/wakeirq.c +++ b/drivers/base/power/wakeirq.c @@ -256,8 +256,12 @@ void dev_pm_arm_wake_irq(struct wake_irq *wirq) if (!wirq) return; - if (device_may_wakeup(wirq->dev)) + if (device_may_wakeup(wirq->dev)) { + if (wirq->dedicated_irq) + enable_irq(wirq->irq); + enable_irq_wake(wirq->irq); + } } /** @@ -272,6 +276,10 @@ void dev_pm_disarm_wake_irq(struct wake_irq *wirq) if (!wirq) return; - if (device_may_wakeup(wirq->dev)) + if (device_may_wakeup(wirq->dev)) { disable_irq_wake(wirq->irq); + + if (wirq->dedicated_irq) + disable_irq_nosync(wirq->irq); + } } -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html