LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Johan Hovold <johan@kernel.org>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Rob Herring <robh@kernel.org>, Sebastian Reichel <sre@kernel.org>,
Tony Lindgren <tony@atomide.com>,
"H. Nikolaus Schaller" <hns@goldelico.com>,
Andreas Kemnade <andreas@kemnade.info>,
Mark Rutland <mark.rutland@arm.com>,
Arnd Bergmann <arnd@arndb.de>, Pavel Machek <pavel@ucw.cz>,
linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
linux-pm@vger.kernel.org, Johan Hovold <johan@kernel.org>
Subject: [PATCH EXAMPLE 2/2] dbg: gnss: sirf: allow aggressive controller runtime PM
Date: Wed, 9 May 2018 11:44:19 +0200 [thread overview]
Message-ID: <20180509094419.13470-2-johan@kernel.org> (raw)
In-Reply-To: <20180509094419.13470-1-johan@kernel.org>
This is just an example of how a serdev driver could go about to allow
aggressive controller runtime PM by dropping the RPM reference taken by
serdev core in serdev_device_open().
Note that for most GNSS devices this does not make any sense, as
allowing the controller to suspend this way would cause the
first message of every report burst to be corrupted (and discarded).
This one applies on top of the GNSS series available here:
https://lkml.kernel.org/r/20180424163458.11947-1-johan@kernel.org
Not-Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/gnss/sirf.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gnss/sirf.c b/drivers/gnss/sirf.c
index 497f8eb8467f..31b2cbccd194 100644
--- a/drivers/gnss/sirf.c
+++ b/drivers/gnss/sirf.c
@@ -57,6 +57,9 @@ static int sirf_open(struct gnss_device *gdev)
goto err_close;
}
+ /* Allow aggresive controller runtime PM. */
+ pm_runtime_put(&serdev->ctrl->dev);
+
return 0;
err_close:
@@ -70,6 +73,9 @@ static void sirf_close(struct gnss_device *gdev)
struct sirf_data *data = gnss_get_drvdata(gdev);
struct serdev_device *serdev = data->serdev;
+ /* Balance the put in open() */
+ pm_runtime_get(&serdev->ctrl->dev);
+
serdev_device_close(serdev);
pm_runtime_put(&serdev->dev);
--
2.17.0
next prev parent reply other threads:[~2018-05-09 9:44 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-09 9:44 [PATCH 1/2] serdev: add controller runtime PM support Johan Hovold
2018-05-09 9:44 ` Johan Hovold [this message]
2018-05-10 16:48 ` Tony Lindgren
2018-05-11 8:07 ` Johan Hovold
2018-05-11 12:56 ` Tony Lindgren
2018-05-11 13:12 ` Johan Hovold
2018-05-11 16:00 ` Tony Lindgren
2018-05-11 12:35 ` Sebastian Reichel
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=20180509094419.13470-2-johan@kernel.org \
--to=johan@kernel.org \
--cc=andreas@kemnade.info \
--cc=arnd@arndb.de \
--cc=gregkh@linuxfoundation.org \
--cc=hns@goldelico.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=pavel@ucw.cz \
--cc=robh@kernel.org \
--cc=sre@kernel.org \
--cc=tony@atomide.com \
--subject='Re: [PATCH EXAMPLE 2/2] dbg: gnss: sirf: allow aggressive controller runtime PM' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).