[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <54503C19.9060607@rock-chips.com>
Date: Wed, 29 Oct 2014 09:00:09 +0800
From: Hong jinkun <jinkun.hong@...k-chips.com>
To: Dmitry Torokhov <dmitry.torokhov@...il.com>
CC: linus.walleij@...aro.org, linux-arm-kernel@...ts.infradead.org,
Russell King <linux@....linux.org.uk>,
Rob Herring <robh+dt@...nel.org>,
Pawel Moll <pawel.moll@....com>,
Mark Rutland <mark.rutland@....com>,
Ian Campbell <ijc+devicetree@...lion.org.uk>,
Kumar Gala <galak@...eaurora.org>,
Grant Likely <grant.likely@...aro.org>,
linux-kernel@...r.kernel.org, devicetree@...r.kernel.org,
Randy Dunlap <rdunlap@...radead.org>,
linux-doc@...r.kernel.org, dianders@...omium.org,
Heiko Stuebner <heiko@...ech.de>,
linux-rockchip@...ts.infradead.org,
Ulf Hansson <ulf.hansson@...aro.org>,
Jack Dai <jack.dai@...k-chips.com>
Subject: Re: [PATCH v7 1/3] power-domain: add power domain drivers for Rockchip
platform
在 2014/10/28 7:39, Dmitry Torokhov 写道:
> On Fri, Oct 24, 2014 at 09:44:31AM -0700, Dmitry Torokhov wrote:
>> Hi Jinkun,
>>
>> On Fri, Oct 24, 2014 at 12:29:19AM -0700, jinkun.hong wrote:
>>> +static int rockchip_pd_power(struct rockchip_domain *pd, bool power_on)
>>> +{
>>> + int ret = 0;
>>> + struct rockchip_dev_entry *de;
>>> +
>>> + mutex_lock(&pd->dev_lock);
>>> + /* no clk, set power domain will fail */
>>> + if (list_empty(&pd->dev_list)) {
>>> + pr_err("%s: no devices in %s power domain\n", __func__,
>>> + pd->base.name);
>>> + goto out;
>>> + }
>>> +
>>> + list_for_each_entry(de, &pd->dev_list, node) {
>>> + pm_clk_resume(de->dev);
>>> + }
>>> +
>>> + ret = rockchip_pmu_set_power_domain(pd, power_on);
>>> +
>>> + list_for_each_entry(de, &pd->dev_list, node) {
>>> + pm_clk_suspend(de->dev);
>>> + }
>>> +out:
>>> + mutex_unlock(&pd->dev_lock);
>>> + return ret;
>>> +}
>> For my education, could you please tell me why we need to enable all
>> clocks of all devices in a power domain when we are talking to the PMU
>> and then turn them immediately off?
Sorry for late reply.RK3288 reset circuit are first asynchronous reset
and then sync revoked.
All reset revocation actions are needed to synchronize the clocks.
If there is no clock open, power_up reset will cause the corresponding
reset can not be undone, there will be risks.
>> Would not we want to enable clocks
>> in start()) callbacks, like Ulf mentioned?
Can you tell me which one patch it. Thank you!
> Jinkun, any update on this question?
>
> Thanks.
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists