Linux-mediatek Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Chunfeng Yun <chunfeng.yun@mediatek.com>
To: "Rafael J. Wysocki" <rafael@kernel.org>
Cc: Len Brown <len.brown@intel.com>, Pavel Machek <pavel@ucw.cz>,
	"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	Mathias Nyman <mathias.nyman@intel.com>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	"Linux PM" <linux-pm@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	"open list:ULTRA-WIDEBAND (UWB) SUBSYSTEM:"
	<linux-usb@vger.kernel.org>,
	Linux ARM <linux-arm-kernel@lists.infradead.org>,
	"moderated list:ARM/Mediatek SoC..."
	<linux-mediatek@lists.infradead.org>,
	"Rafael J . Wysocki" <rafael.j.wysocki@intel.com>
Subject: Re: [PATCH v4 1/3] PM / wakeirq: support enabling wake-up irq after runtime_suspend called
Date: Wed, 27 Oct 2021 17:33:39 +0800	[thread overview]
Message-ID: <fba3246fbc600f06eb40e90283c1cd51bc259804.camel@mediatek.com> (raw)
In-Reply-To: <CAJZ5v0gb6vN9kHeQbgjRQXvOCNaFK8ur7bLDeAVjDqdT2=a+-g@mail.gmail.com>

On Tue, 2021-10-26 at 17:39 +0200, Rafael J. Wysocki wrote:
> On Mon, Oct 25, 2021 at 9:02 AM Chunfeng Yun <
> chunfeng.yun@mediatek.com> wrote:
> > 
> > When the dedicated wake IRQ is level trigger, and it uses the
> > device's low-power status as the wakeup source, that means if the
> > device is not in low-power state, the wake IRQ will be triggered
> > if enabled; For this case, need enable the wake IRQ after running
> > the device's ->runtime_suspend() which make it enter low-power
> > state.
> > 
> > e.g.
> > Assume the wake IRQ is a low level trigger type, and the wakeup
> > signal comes from the low-power status of the device.
> > The wakeup signal is low level at running time (0), and becomes
> > high level when the device enters low-power state (runtime_suspend
> > (1) is called), a wakeup event at (2) make the device exit low-
> > power
> > state, then the wakeup signal also becomes low level.
> > 
> >                 ------------------
> >                |           ^     ^|
> > ----------------           |     | --------------
> >  |<---(0)--->|<--(1)--|   (3)   (2)    (4)
> > 
> > if enable the wake IRQ before running runtime_suspend during (0),
> > a wake IRQ will arise, it causes resume immediately;
> > it works if enable wake IRQ ( e.g. at (3) or (4)) after running
> > ->runtime_suspend().
> > 
> > This patch introduces a new status WAKE_IRQ_DEDICATED_REVERSE to
> > optionally support enabling wake IRQ after running
> > ->runtime_suspend().
> > 
> > Suggested-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> > Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
> 
> I don't really have anything to add regarding the code.
> 
> The kerneldoc comments could be improved, but I can take care of this
> when applying the patch.
Ok, thanks
> 
> Please collect ACKs for the remaining 2 patches in the series and I
> will pick up all three.
The files (mtu3_plat.c, xhci-mtk.c) modified by other 2 patches are
maintained by myself, please pick up them, thanks a lot.

> 
> Thanks!
> 
> > ---
> > v4: changes according to Rafael's suggestions
> >     1. rename new flag as WAKE_IRQ_DEDICATED_REVERSE;
> >     2. add __dev_pm_set_dedicated_wake_irq() with flag parameter,
> > then
> >        rebuild dev_pm_set_dedicated_wake_irq() and add new api
> >        dev_pm_set_dedicated_wake_irq_reverse();
> >     3. rename the new added parameter as cond_disable in
> >        dev_pm_disable_wake_irq_check(), and also simplify its flow;
> >     4. modify some comments
> > 
> > v3: add new status suggested by Rafael
> > 
> > v2: add more commit message
> > 
> >   Use the falling edge trigger interrupt suggested by Ikjoon [1],
> > it
> > works well at firstly when only use this related wakeup source, but
> > encounter issues if use other wakeup sources to wakeup platform as
> > below steps:
> > 1. use another wakeup source to wake up the suspended system;
> > 2. the consumer's resume() will be called, and exits sleep state;
> > 3. the consumer's wakeup signal will fall into low level, due to
> >    currently the wakeup irq is disabled, the wake-irq is pending;
> > 4. the consumer tries to enter runtime suspend, but there is a
> >    pending wakeup irq, so will resume again, this will repeat
> >    endlessly.
> > 
> >   Send out the patch again for further discussion.
> > 
> > [1]: https://patchwork.kernel.org/patch/12190407
> > 
> > ---
> >  drivers/base/power/power.h   |   7 ++-
> >  drivers/base/power/runtime.c |   6 ++-
> >  drivers/base/power/wakeirq.c | 101 +++++++++++++++++++++++++++--
> > ------
> >  include/linux/pm_wakeirq.h   |   9 +++-
> >  4 files changed, 96 insertions(+), 27 deletions(-)
[...]
> > 
_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

  parent reply	other threads:[~2021-10-27  9:34 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-25  7:01 [PATCH v4 1/3] PM / wakeirq: support enabling wake-up irq after runtime_suspend called Chunfeng Yun
2021-10-25  7:01 ` [PATCH v4 2/3] usb: xhci-mtk: enable wake-up interrupt " Chunfeng Yun
2021-10-25  7:01 ` [PATCH v4 3/3] usb: mtu3: " Chunfeng Yun
2021-10-26 15:39 ` [PATCH v4 1/3] PM / wakeirq: support enabling wake-up irq " Rafael J. Wysocki
2021-10-27  9:29   ` Chunfeng Yun
2021-10-27  9:33   ` Chunfeng Yun [this message]
2021-10-27 19:00     ` Rafael J. Wysocki

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fba3246fbc600f06eb40e90283c1cd51bc259804.camel@mediatek.com \
    --to=chunfeng.yun@mediatek.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=len.brown@intel.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mathias.nyman@intel.com \
    --cc=matthias.bgg@gmail.com \
    --cc=pavel@ucw.cz \
    --cc=rafael.j.wysocki@intel.com \
    --cc=rafael@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox