From: "Cousson, Benoit" <b-cousson@ti.com>
To: Paul Walmsley <paul@pwsan.com>
Cc: "Nayak, Rajendra" <rnayak@ti.com>,
"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>
Subject: Re: [PATCH 6/6] OMAP2+: hwmod: Fix the HW reset management
Date: Fri, 1 Jul 2011 10:46:18 +0200 [thread overview]
Message-ID: <4E0D895A.1080406@ti.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1107010243170.27025@utopia.booyaka.com>
On 7/1/2011 10:44 AM, Paul Walmsley wrote:
> One quick comment here:
>
> On Thu, 23 Jun 2011, Benoit Cousson wrote:
>
>> The HW reset must be de-assert after the clocks are enabled
>> but before waiting for the target to be ready. Otherwise the
>> reset might not work properly since the clock is not running
>> to proceed the reset.
>>
>> De-assert the reset after _enable_clocks and before
>> _wait_target_ready.
>> Re-assert it only when the clocks are disabled.
>>
>> Signed-off-by: Benoit Cousson<b-cousson@ti.com>
>> Cc: Paul Walmsley<paul@pwsan.com>
>> ---
>> arch/arm/mach-omap2/omap_hwmod.c | 32 ++++++++++++++++----------------
>> 1 files changed, 16 insertions(+), 16 deletions(-)
>>
>> diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
>> index f401417..55ad6a5 100644
>> --- a/arch/arm/mach-omap2/omap_hwmod.c
>> +++ b/arch/arm/mach-omap2/omap_hwmod.c
>> @@ -1250,15 +1250,6 @@ static int _enable(struct omap_hwmod *oh)
>>
>> pr_debug("omap_hwmod: %s: enabling\n", oh->name);
>>
>> - /*
>> - * If an IP contains only one HW reset line, then de-assert it in order
>> - * to allow to enable the clocks. Otherwise the PRCM will return
>> - * Intransition status, and the init will failed.
>> - */
>> - if ((oh->_state == _HWMOD_STATE_INITIALIZED ||
>> - oh->_state == _HWMOD_STATE_DISABLED)&& oh->rst_lines_cnt == 1)
>> - _deassert_hardreset(oh, oh->rst_lines[0].name);
>> -
>> /* Mux pins for device runtime if populated */
>> if (oh->mux&& (!oh->mux->enabled ||
>> ((oh->_state == _HWMOD_STATE_IDLE)&&
>> @@ -1268,6 +1259,15 @@ static int _enable(struct omap_hwmod *oh)
>> _add_initiator_dep(oh, mpu_oh);
>> _enable_clocks(oh);
>>
>> + /*
>> + * If an IP contains only one HW reset line, then de-assert it in order
>> + * to allow to enable the clocks. Otherwise the PRCM will return
>> + * Intransition status, and the init will failed.
>> + */
>
> Please update this comment, this doesn't make sense any more...
Good point, I'll fix that.
>
>> + if ((oh->_state == _HWMOD_STATE_INITIALIZED ||
>> + oh->_state == _HWMOD_STATE_DISABLED)&& oh->rst_lines_cnt == 1)
>> + _deassert_hardreset(oh, oh->rst_lines[0].name);
>> +
>> r = _wait_target_ready(oh);
>> if (!r) {
>> oh->_state = _HWMOD_STATE_ENABLED;
>> @@ -1396,13 +1396,6 @@ static int _shutdown(struct omap_hwmod *oh)
>> _shutdown_sysc(oh);
>> }
>>
>> - /*
>> - * If an IP contains only one HW reset line, then assert it
>> - * before disabling the clocks and shutting down the IP.
>> - */
>> - if (oh->rst_lines_cnt == 1)
>> - _assert_hardreset(oh, oh->rst_lines[0].name);
>> -
>> /* clocks and deps are already disabled in idle */
>> if (oh->_state == _HWMOD_STATE_ENABLED) {
>> _del_initiator_dep(oh, mpu_oh);
>> @@ -1411,6 +1404,13 @@ static int _shutdown(struct omap_hwmod *oh)
>> }
>> /* XXX Should this code also force-disable the optional clocks? */
>>
>> + /*
>> + * If an IP contains only one HW reset line, then assert it
>> + * before disabling the clocks and shutting down the IP.
>> + */
>
> And this one too.
OK.
Benoit
next prev parent reply other threads:[~2011-07-01 8:46 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-23 21:00 [PATCH 0/6] OMAP2+: hwmod framework fixes Benoit Cousson
2011-06-23 21:00 ` [PATCH 1/6] OMAP2+: hwmod: Fix smart-standby + wakeup support Benoit Cousson
2011-06-23 21:00 ` [PATCH 2/6] OMAP4: hwmod data: Add MSTANDBY_SMART_WKUP flag Benoit Cousson
2011-07-01 13:50 ` Elaidi, Djamil
2011-07-01 13:56 ` Cousson, Benoit
2011-06-23 21:00 ` [PATCH 3/6] OMAP2+: hwmod: Enable module in shutdown to access sysconfig Benoit Cousson
2011-06-23 21:00 ` [PATCH 4/6] OMAP2+: hwmod: Do not write the enawakeup bit if SYSC_HAS_ENAWAKEUP is not set Benoit Cousson
2011-06-23 21:00 ` [PATCH 5/6] OMAP2+: hwmod: Remove _populate_mpu_rt_base warning Benoit Cousson
2011-06-23 21:00 ` [PATCH 6/6] OMAP2+: hwmod: Fix the HW reset management Benoit Cousson
2011-07-01 8:44 ` Paul Walmsley
2011-07-01 8:46 ` Cousson, Benoit [this message]
2011-07-01 8:41 ` [PATCH 0/6] OMAP2+: hwmod framework fixes Paul Walmsley
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=4E0D895A.1080406@ti.com \
--to=b-cousson@ti.com \
--cc=linux-omap@vger.kernel.org \
--cc=paul@pwsan.com \
--cc=rnayak@ti.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox