From: Wolfram Sang <wsa@the-dreams.de>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: linux-i2c@vger.kernel.org, linux-sh@vger.kernel.org,
Magnus Damm <magnus.damm@gmail.com>,
Simon Horman <horms@verge.net.au>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Geert Uytterhoeven <geert@linux-m68k.org>,
linux-pm@vger.kernel.org
Subject: Re: [PATCH] i2c: rcar: disable runtime PM correctly in slave mode
Date: Wed, 16 Dec 2015 16:43:58 +0100 [thread overview]
Message-ID: <20151216154358.GA14817@katana> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1512161011070.1751-100000@iolanthe.rowland.org>
[-- Attachment #1: Type: text/plain, Size: 2132 bytes --]
Alan,
> > When we also are I2C slave, we need to disable runtime PM because the
> > address detection mechanism needs to be active all the time. However, we
> > can reenable runtime PM once the slave instance was unregistered. So,
> > use pm_runtime_disable/enable to achieve this, since it has proper
> > refcounting. pm_runtime_allow/forbid is like a global switch which is
> > unsuitable here.
> >
> > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
> > ---
> >
> > I'd be grateful to get an ACK from a runtime PM expert to verify that my
> > assumptions match reality :)
>
> Yes, disabling runtime PM will do what you want. However you might
> consider using pm_runtime_get_sync() and pm_runtime_put() instead,
> because pm_runtime_enable() does not check to see if the device is idle
> and can be suspended right away. Alternatively, you can call
> pm_runtime_idle() after pm_runtime_enable().
Thank you for your answer! I think I'll go for the get/put solution
here.
I have another case, may I ask your advice about this, too? When an I2C
bus is marked in DT as multi-master, then RuntimePM also needs to be
disabled, because arbitration detection needs to stay awake. I am
currently implementing this for the i2c-rcar driver:
- pm_runtime_enable(dev);
+ /* No RuntimePM in multi-master to keep arbitration working */
+ if (!of_get_property(dev->of_node, "multi-master", NULL)) {
+ pm_runtime_enable(dev);
+ priv->flags |= ID_P_PM;
+ }
+
pm_runtime_get_sync(dev);
...
@@ -664,7 +673,8 @@ static int rcar_i2c_remove(struct platform_device *pdev)
struct device *dev = &pdev->dev;
i2c_del_adapter(&priv->adap);
- pm_runtime_disable(dev);
+ if (priv->flags & ID_P_PM)
+ pm_runtime_disable(dev);
return 0;
}
Here, I'd tend to keep using enable/disable, although get/put would
probably also work. What is the rule of thumb using this pattern or the
other?
> pm_runtime_allow/forbid is even more unsuitable than you said, because
> it can be overridden by the user.
Yeah, I realized his today, too.
Thanks!
Wolfram
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2015-12-16 15:44 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-16 11:02 [PATCH] i2c: rcar: disable runtime PM correctly in slave mode Wolfram Sang
2015-12-16 15:16 ` Alan Stern
2015-12-16 15:43 ` Wolfram Sang [this message]
2015-12-16 15:55 ` Geert Uytterhoeven
2015-12-16 16:06 ` Wolfram Sang
2015-12-16 16:10 ` Geert Uytterhoeven
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=20151216154358.GA14817@katana \
--to=wsa@the-dreams.de \
--cc=geert@linux-m68k.org \
--cc=horms@verge.net.au \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=stern@rowland.harvard.edu \
/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