From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Murali Karicheri <m-karicheri2@ti.com>
Cc: linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
cyril@ti.com, mturquette@linaro.org,
Magnus Damm <magnus.damm@gmail.com>,
Linux-sh list <linux-sh@vger.kernel.org>
Subject: Re: [RFC - PATCH] base:pm: prepare driver for common clock framework
Date: Tue, 18 Sep 2012 21:34:08 +0000 [thread overview]
Message-ID: <201209182334.08229.rjw@sisk.pl> (raw)
In-Reply-To: <1347661174-15404-1-git-send-email-m-karicheri2@ti.com>
On Saturday, September 15, 2012, Murali Karicheri wrote:
> As part of my work to migrate davinci SoC code to
> use common clk framework, I encountered an issue with this driver
> which is calling clk_enable() and clk_disable() without prepare()/
> unprepare(). This change is needed to enable common clock migration
> for davinci SoCs.
>
> Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
There are other users of this code than davinci. For example, sh
and ARM/shmobile both use it. Have you verified that your changes will
work for them too?
Rafael
> diff --git a/drivers/base/power/clock_ops.c b/drivers/base/power/clock_ops.c
> index eb78e96..9d8fde7 100644
> --- a/drivers/base/power/clock_ops.c
> +++ b/drivers/base/power/clock_ops.c
> @@ -99,7 +99,7 @@ static void __pm_clk_remove(struct pm_clock_entry *ce)
>
> if (ce->status < PCE_STATUS_ERROR) {
> if (ce->status = PCE_STATUS_ENABLED)
> - clk_disable(ce->clk);
> + clk_disable_unprepare(ce->clk);
>
> if (ce->status >= PCE_STATUS_ACQUIRED)
> clk_put(ce->clk);
> @@ -396,7 +396,7 @@ static void enable_clock(struct device *dev, const char *con_id)
>
> clk = clk_get(dev, con_id);
> if (!IS_ERR(clk)) {
> - clk_enable(clk);
> + clk_prepare_enable(clk);
> clk_put(clk);
> dev_info(dev, "Runtime PM disabled, clock forced on.\n");
> }
> @@ -413,7 +413,7 @@ static void disable_clock(struct device *dev, const char *con_id)
>
> clk = clk_get(dev, con_id);
> if (!IS_ERR(clk)) {
> - clk_disable(clk);
> + clk_disable_unprepare(clk);
> clk_put(clk);
> dev_info(dev, "Runtime PM disabled, clock forced off.\n");
> }
>
next parent reply other threads:[~2012-09-18 21:34 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1347661174-15404-1-git-send-email-m-karicheri2@ti.com>
2012-09-18 21:34 ` Rafael J. Wysocki [this message]
2012-09-19 14:09 ` [RFC - PATCH] base:pm: prepare driver for common clock framework Karicheri, Muralidharan
2012-09-19 14:13 ` Karicheri, Muralidharan
2012-09-19 20:53 ` 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=201209182334.08229.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=cyril@ti.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=m-karicheri2@ti.com \
--cc=magnus.damm@gmail.com \
--cc=mturquette@linaro.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;
as well as URLs for NNTP newsgroup(s).