From: Tony Lindgren <tony@atomide.com>
To: Keerthy <j-keerthy@ti.com>
Cc: Tero Kristo <t-kristo@ti.com>,
linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] ARM: OMAP2+: hwmod_core: enable optional clocks before main clock
Date: Fri, 22 Dec 2017 10:51:18 -0800 [thread overview]
Message-ID: <20171222185118.GA3875@atomide.com> (raw)
In-Reply-To: <f9fea9e3-7ebb-9a78-92fc-85b7afe3a525@ti.com>
* Keerthy <j-keerthy@ti.com> [171222 09:43]:
>
>
> On Friday 22 December 2017 02:56 PM, Tero Kristo wrote:
> > The optional clocks must be enabled before the main clock after the
> > transition to clkctrl controlled clocks is done. Otherwise the module
> > we attempt to enable might be stuck in transition.
> >
> > Reported-by: Keerthy <j-keerthy@ti.com>
> > Signed-off-by: Tero Kristo <t-kristo@ti.com>
>
> Tested the patch on both DRA7-EVM and DRA72-EVM. I no longer see the issue:
>
> Tested-by: Keerthy <j-keerthy@ti.com>
>
> > ---
> > Hi Tony,
> >
> > This patch fixes a regression seen in linux-next, where certain peripherals
> > fail to enable after the clkctrl changes are in. The case seen has been
> > with mcasp3, where it fails to transition to enabled during the audio
> > driver probe. Not sure where you want to pick this up, maybe as early
> > rc fixes if its too late to push this to linux-next?
Thanks applying into omap-for-v4.16/soc, yeah we should
get it merged during the merge window as a fix.
Regards,
Tony
> > arch/arm/mach-omap2/omap_hwmod.c | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
> > index 7324048..340d05c 100644
> > --- a/arch/arm/mach-omap2/omap_hwmod.c
> > +++ b/arch/arm/mach-omap2/omap_hwmod.c
> > @@ -976,6 +976,9 @@ static int _enable_clocks(struct omap_hwmod *oh)
> >
> > pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
> >
> > + if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
> > + _enable_optional_clocks(oh);
> > +
> > if (oh->_clk)
> > clk_enable(oh->_clk);
> >
> > @@ -984,9 +987,6 @@ static int _enable_clocks(struct omap_hwmod *oh)
> > clk_enable(os->_clk);
> > }
> >
> > - if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
> > - _enable_optional_clocks(oh);
> > -
> > /* The opt clocks are controlled by the device driver. */
> >
> > return 0;
> >
WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: OMAP2+: hwmod_core: enable optional clocks before main clock
Date: Fri, 22 Dec 2017 10:51:18 -0800 [thread overview]
Message-ID: <20171222185118.GA3875@atomide.com> (raw)
In-Reply-To: <f9fea9e3-7ebb-9a78-92fc-85b7afe3a525@ti.com>
* Keerthy <j-keerthy@ti.com> [171222 09:43]:
>
>
> On Friday 22 December 2017 02:56 PM, Tero Kristo wrote:
> > The optional clocks must be enabled before the main clock after the
> > transition to clkctrl controlled clocks is done. Otherwise the module
> > we attempt to enable might be stuck in transition.
> >
> > Reported-by: Keerthy <j-keerthy@ti.com>
> > Signed-off-by: Tero Kristo <t-kristo@ti.com>
>
> Tested the patch on both DRA7-EVM and DRA72-EVM. I no longer see the issue:
>
> Tested-by: Keerthy <j-keerthy@ti.com>
>
> > ---
> > Hi Tony,
> >
> > This patch fixes a regression seen in linux-next, where certain peripherals
> > fail to enable after the clkctrl changes are in. The case seen has been
> > with mcasp3, where it fails to transition to enabled during the audio
> > driver probe. Not sure where you want to pick this up, maybe as early
> > rc fixes if its too late to push this to linux-next?
Thanks applying into omap-for-v4.16/soc, yeah we should
get it merged during the merge window as a fix.
Regards,
Tony
> > arch/arm/mach-omap2/omap_hwmod.c | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
> > index 7324048..340d05c 100644
> > --- a/arch/arm/mach-omap2/omap_hwmod.c
> > +++ b/arch/arm/mach-omap2/omap_hwmod.c
> > @@ -976,6 +976,9 @@ static int _enable_clocks(struct omap_hwmod *oh)
> >
> > pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
> >
> > + if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
> > + _enable_optional_clocks(oh);
> > +
> > if (oh->_clk)
> > clk_enable(oh->_clk);
> >
> > @@ -984,9 +987,6 @@ static int _enable_clocks(struct omap_hwmod *oh)
> > clk_enable(os->_clk);
> > }
> >
> > - if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
> > - _enable_optional_clocks(oh);
> > -
> > /* The opt clocks are controlled by the device driver. */
> >
> > return 0;
> >
next prev parent reply other threads:[~2017-12-22 18:51 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-22 9:26 [PATCH] ARM: OMAP2+: hwmod_core: enable optional clocks before main clock Tero Kristo
2017-12-22 9:26 ` Tero Kristo
2017-12-22 9:40 ` Keerthy
2017-12-22 9:40 ` Keerthy
2017-12-22 18:51 ` Tony Lindgren [this message]
2017-12-22 18:51 ` Tony Lindgren
2018-02-20 12:20 ` Tero Kristo
2018-02-20 12:20 ` Tero Kristo
2018-02-22 17:20 ` Tony Lindgren
2018-02-22 17:20 ` Tony Lindgren
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=20171222185118.GA3875@atomide.com \
--to=tony@atomide.com \
--cc=j-keerthy@ti.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=t-kristo@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 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.