On 2/22/22 16:52, Srinivas Kandagatla wrote:
On 22/02/2022 19:26, Pierre-Louis Bossart wrote:
+static irqreturn_t qcom_swrm_wake_irq_handler(int irq, void *dev_id) +{ + struct qcom_swrm_ctrl *swrm = dev_id; + int ret = IRQ_HANDLED; + struct sdw_slave *slave;
+ clk_prepare_enable(swrm->hclk);
+ if (swrm->wake_irq > 0) { + if (!irqd_irq_disabled(irq_get_irq_data(swrm->wake_irq))) + disable_irq_nosync(swrm->wake_irq); + }
+ /* + * resume all the slaves which must have potentially generated this + * interrupt, this should also wake the controller at the same time. + * this is much safer than waking controller directly that will deadlock! + */
There should be no difference if you first resume the controller and then attached peripherals, or do a loop where you rely on the pm_runtime framework.
The notion that there might be a dead-lock is surprising, you would need to elaborate here.Issue is, if wakeup interrupt resumes the controller first which can
trigger an slave pending interrupt (ex: Button press event) in the middle of resume that will try to wake the slave device which in turn will try to wake parent in the middle of resume resulting in a dead lock.
This was the best way to avoid dead lock.
Not following, sorry. if you use pm_runtime functions and it so happens that the resume already started, then those routines would wait for the resume to complete.
In other words, there can be multiple requests to resume, but only the *first* request will trigger a transition and others will just increase a refcount.
In addition, the pm_runtime framework guarantees that the peripheral device can only start resuming when the parent controller device is fully resumed.
While I am at it, one thing that kept us busy as well is the relationship between system suspend and pm_runtime suspend. In the generic case a system suspend will cause a pm_runtime resume before you can actually start the system suspend, but you might be able to skip this step. In the Intel case when the controller and its parent device were suspended we had to pm_runtime resume everything because some registers were no longer accessible.