From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Charles Keepax <ckeepax@opensource.cirrus.com>, vkoul@kernel.org
Cc: patches@opensource.cirrus.com, sanyog.r.kale@intel.com,
yung-chuan.liao@linux.intel.com, alsa-devel@alsa-project.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 3/4] soundwire: debugfs: Switch to sdw_read_no_pm
Date: Thu, 17 Nov 2022 08:44:25 -0600 [thread overview]
Message-ID: <d6fd57a0-4cb6-99df-d49c-eb18ff58b8a3@linux.intel.com> (raw)
In-Reply-To: <20221117141727.3031503-4-ckeepax@opensource.cirrus.com>
On 11/17/22 08:17, Charles Keepax wrote:
> It is rather inefficient to be constantly playing with the runtime
> PM reference for each individual register, switch to holding a PM
> runtime reference across the whole register output.
>
> Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> ---
>
> Changes since v1:
> - Reworded commit message
>
> drivers/soundwire/debugfs.c | 11 ++++++++++-
> 1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/soundwire/debugfs.c b/drivers/soundwire/debugfs.c
> index 49900cd207bc7..0718e9cda138a 100644
> --- a/drivers/soundwire/debugfs.c
> +++ b/drivers/soundwire/debugfs.c
> @@ -4,6 +4,7 @@
> #include <linux/device.h>
> #include <linux/debugfs.h>
> #include <linux/mod_devicetable.h>
> +#include <linux/pm_runtime.h>
> #include <linux/slab.h>
> #include <linux/soundwire/sdw.h>
> #include <linux/soundwire/sdw_registers.h>
> @@ -35,7 +36,7 @@ static ssize_t sdw_sprintf(struct sdw_slave *slave,
> {
> int value;
>
> - value = sdw_read(slave, reg);
> + value = sdw_read_no_pm(slave, reg);
>
> if (value < 0)
> return scnprintf(buf + pos, RD_BUF - pos, "%3x\tXX\n", reg);
> @@ -55,6 +56,10 @@ static int sdw_slave_reg_show(struct seq_file *s_file, void *data)
> if (!buf)
> return -ENOMEM;
>
> + ret = pm_runtime_resume_and_get(&slave->dev);
> + if (ret < 0 && ret != -EACCES)
> + return ret;
> +
> ret = scnprintf(buf, RD_BUF, "Register Value\n");
>
> /* DP0 non-banked registers */
> @@ -112,6 +117,10 @@ static int sdw_slave_reg_show(struct seq_file *s_file, void *data)
> }
>
> seq_printf(s_file, "%s", buf);
> +
> + pm_runtime_mark_last_busy(&slave->dev);
> + pm_runtime_put(&slave->dev);
> +
> kfree(buf);
>
> return 0;
WARNING: multiple messages have this Message-ID (diff)
From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Charles Keepax <ckeepax@opensource.cirrus.com>, vkoul@kernel.org
Cc: yung-chuan.liao@linux.intel.com, sanyog.r.kale@intel.com,
alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
patches@opensource.cirrus.com
Subject: Re: [PATCH v2 3/4] soundwire: debugfs: Switch to sdw_read_no_pm
Date: Thu, 17 Nov 2022 08:44:25 -0600 [thread overview]
Message-ID: <d6fd57a0-4cb6-99df-d49c-eb18ff58b8a3@linux.intel.com> (raw)
In-Reply-To: <20221117141727.3031503-4-ckeepax@opensource.cirrus.com>
On 11/17/22 08:17, Charles Keepax wrote:
> It is rather inefficient to be constantly playing with the runtime
> PM reference for each individual register, switch to holding a PM
> runtime reference across the whole register output.
>
> Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> ---
>
> Changes since v1:
> - Reworded commit message
>
> drivers/soundwire/debugfs.c | 11 ++++++++++-
> 1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/soundwire/debugfs.c b/drivers/soundwire/debugfs.c
> index 49900cd207bc7..0718e9cda138a 100644
> --- a/drivers/soundwire/debugfs.c
> +++ b/drivers/soundwire/debugfs.c
> @@ -4,6 +4,7 @@
> #include <linux/device.h>
> #include <linux/debugfs.h>
> #include <linux/mod_devicetable.h>
> +#include <linux/pm_runtime.h>
> #include <linux/slab.h>
> #include <linux/soundwire/sdw.h>
> #include <linux/soundwire/sdw_registers.h>
> @@ -35,7 +36,7 @@ static ssize_t sdw_sprintf(struct sdw_slave *slave,
> {
> int value;
>
> - value = sdw_read(slave, reg);
> + value = sdw_read_no_pm(slave, reg);
>
> if (value < 0)
> return scnprintf(buf + pos, RD_BUF - pos, "%3x\tXX\n", reg);
> @@ -55,6 +56,10 @@ static int sdw_slave_reg_show(struct seq_file *s_file, void *data)
> if (!buf)
> return -ENOMEM;
>
> + ret = pm_runtime_resume_and_get(&slave->dev);
> + if (ret < 0 && ret != -EACCES)
> + return ret;
> +
> ret = scnprintf(buf, RD_BUF, "Register Value\n");
>
> /* DP0 non-banked registers */
> @@ -112,6 +117,10 @@ static int sdw_slave_reg_show(struct seq_file *s_file, void *data)
> }
>
> seq_printf(s_file, "%s", buf);
> +
> + pm_runtime_mark_last_busy(&slave->dev);
> + pm_runtime_put(&slave->dev);
> +
> kfree(buf);
>
> return 0;
next prev parent reply other threads:[~2022-11-17 15:01 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-17 14:17 [PATCH v2 0/4] Minor SoundWire clean ups Charles Keepax
2022-11-17 14:17 ` Charles Keepax
2022-11-17 14:17 ` [PATCH v2 1/4] soundwire: bus: export sdw_nwrite_no_pm and sdw_nread_no_pm functions Charles Keepax
2022-11-17 14:17 ` Charles Keepax
2022-11-17 14:35 ` Pierre-Louis Bossart
2022-11-17 14:35 ` Pierre-Louis Bossart
2022-11-17 14:17 ` [PATCH v2 2/4] soundwire: Provide build stubs for common functions Charles Keepax
2022-11-17 14:17 ` Charles Keepax
2022-11-17 14:17 ` [PATCH v2 3/4] soundwire: debugfs: Switch to sdw_read_no_pm Charles Keepax
2022-11-17 14:17 ` Charles Keepax
2022-11-17 14:44 ` Pierre-Louis Bossart [this message]
2022-11-17 14:44 ` Pierre-Louis Bossart
2022-11-17 14:17 ` [PATCH v2 4/4] soundwire: stream: Move remaining register accesses over to no_pm Charles Keepax
2022-11-17 14:17 ` Charles Keepax
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=d6fd57a0-4cb6-99df-d49c-eb18ff58b8a3@linux.intel.com \
--to=pierre-louis.bossart@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=ckeepax@opensource.cirrus.com \
--cc=linux-kernel@vger.kernel.org \
--cc=patches@opensource.cirrus.com \
--cc=sanyog.r.kale@intel.com \
--cc=vkoul@kernel.org \
--cc=yung-chuan.liao@linux.intel.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.