* [PATCHv2] clk: ti: omap3+: dpll: use non-locking version of clk_get_rate
@ 2016-02-20 11:12 Tero Kristo
2016-02-22 16:52 ` Tony Lindgren
0 siblings, 1 reply; 4+ messages in thread
From: Tero Kristo @ 2016-02-20 11:12 UTC (permalink / raw)
To: tony, mturquette, sboyd, linux-clk, linux-omap; +Cc: linux-arm-kernel
As the code in this file is being executed within irq context in some
cases, we must avoid the clk_get_rate which uses mutex internally.
Switch the code to use clk_hw_get_rate instead which is non-locking.
This fixes an issue where PM runtime will hang the system if enabled
with a serial console before a suspend-resume cycle.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
---
v2: updated commit desc slightly. This patch is still needed as it
should go in as an -rc fix
drivers/clk/ti/dpll3xxx.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/clk/ti/dpll3xxx.c b/drivers/clk/ti/dpll3xxx.c
index 1c30038..cc73929 100644
--- a/drivers/clk/ti/dpll3xxx.c
+++ b/drivers/clk/ti/dpll3xxx.c
@@ -460,7 +460,8 @@ int omap3_noncore_dpll_enable(struct clk_hw *hw)
parent = clk_hw_get_parent(hw);
- if (clk_hw_get_rate(hw) == clk_get_rate(dd->clk_bypass)) {
+ if (clk_hw_get_rate(hw) ==
+ clk_hw_get_rate(__clk_get_hw(dd->clk_bypass))) {
WARN_ON(parent != __clk_get_hw(dd->clk_bypass));
r = _omap3_noncore_dpll_bypass(clk);
} else {
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCHv2] clk: ti: omap3+: dpll: use non-locking version of clk_get_rate
2016-02-20 11:12 [PATCHv2] clk: ti: omap3+: dpll: use non-locking version of clk_get_rate Tero Kristo
@ 2016-02-22 16:52 ` Tony Lindgren
2016-02-22 22:05 ` Stephen Boyd
0 siblings, 1 reply; 4+ messages in thread
From: Tony Lindgren @ 2016-02-22 16:52 UTC (permalink / raw)
To: Tero Kristo; +Cc: mturquette, sboyd, linux-clk, linux-omap, linux-arm-kernel
* Tero Kristo <t-kristo@ti.com> [160220 03:12]:
> As the code in this file is being executed within irq context in some
> cases, we must avoid the clk_get_rate which uses mutex internally.
> Switch the code to use clk_hw_get_rate instead which is non-locking.
>
> This fixes an issue where PM runtime will hang the system if enabled
> with a serial console before a suspend-resume cycle.
Can you please add the "Fixes: " line here?
And when applying, please tag this one Cc stable.
Other than that, please feel free to add:
Tested-by: Tony Lindgren <tony@atomide.com>
Regards,
Tony
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCHv2] clk: ti: omap3+: dpll: use non-locking version of clk_get_rate
2016-02-22 16:52 ` Tony Lindgren
@ 2016-02-22 22:05 ` Stephen Boyd
2016-02-22 22:10 ` Tony Lindgren
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Boyd @ 2016-02-22 22:05 UTC (permalink / raw)
To: Tony Lindgren
Cc: Tero Kristo, mturquette, linux-clk, linux-omap, linux-arm-kernel
On 02/22, Tony Lindgren wrote:
> * Tero Kristo <t-kristo@ti.com> [160220 03:12]:
> > As the code in this file is being executed within irq context in some
> > cases, we must avoid the clk_get_rate which uses mutex internally.
> > Switch the code to use clk_hw_get_rate instead which is non-locking.
> >
> > This fixes an issue where PM runtime will hang the system if enabled
> > with a serial console before a suspend-resume cycle.
>
> Can you please add the "Fixes: " line here?
>
> And when applying, please tag this one Cc stable.
>
> Other than that, please feel free to add:
>
> Tested-by: Tony Lindgren <tony@atomide.com>
>
This is what I got. "Fixes" should take care of stable.
From: Tero Kristo <t-kristo@ti.com>
Subject: [PATCH] clk: ti: omap3+: dpll: use non-locking version of
clk_get_rate
As the code in this file is being executed within irq context in some
cases, we must avoid the clk_get_rate which uses mutex internally.
Switch the code to use clk_hw_get_rate instead which is non-locking.
This fixes an issue where PM runtime will hang the system if enabled
with a serial console before a suspend-resume cycle.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Tested-by: Tony Lindgren <tony@atomide.com>
Fixes: a53ad8ef3dcc ("clk: ti: Convert to clk_hw based provider APIs")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
drivers/clk/ti/dpll3xxx.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/clk/ti/dpll3xxx.c b/drivers/clk/ti/dpll3xxx.c
index 1c300388782b..cc739291a3ce 100644
--- a/drivers/clk/ti/dpll3xxx.c
+++ b/drivers/clk/ti/dpll3xxx.c
@@ -460,7 +460,8 @@ int omap3_noncore_dpll_enable(struct clk_hw *hw)
parent = clk_hw_get_parent(hw);
- if (clk_hw_get_rate(hw) == clk_get_rate(dd->clk_bypass)) {
+ if (clk_hw_get_rate(hw) ==
+ clk_hw_get_rate(__clk_get_hw(dd->clk_bypass))) {
WARN_ON(parent != __clk_get_hw(dd->clk_bypass));
r = _omap3_noncore_dpll_bypass(clk);
} else {
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCHv2] clk: ti: omap3+: dpll: use non-locking version of clk_get_rate
2016-02-22 22:05 ` Stephen Boyd
@ 2016-02-22 22:10 ` Tony Lindgren
0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2016-02-22 22:10 UTC (permalink / raw)
To: Stephen Boyd
Cc: Tero Kristo, mturquette, linux-clk, linux-omap, linux-arm-kernel
* Stephen Boyd <sboyd@codeaurora.org> [160222 14:05]:
> On 02/22, Tony Lindgren wrote:
> > * Tero Kristo <t-kristo@ti.com> [160220 03:12]:
> > > As the code in this file is being executed within irq context in some
> > > cases, we must avoid the clk_get_rate which uses mutex internally.
> > > Switch the code to use clk_hw_get_rate instead which is non-locking.
> > >
> > > This fixes an issue where PM runtime will hang the system if enabled
> > > with a serial console before a suspend-resume cycle.
> >
> > Can you please add the "Fixes: " line here?
> >
> > And when applying, please tag this one Cc stable.
> >
> > Other than that, please feel free to add:
> >
> > Tested-by: Tony Lindgren <tony@atomide.com>
> >
>
> This is what I got. "Fixes" should take care of stable.
OK thanks!
Tony
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-02-22 22:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-20 11:12 [PATCHv2] clk: ti: omap3+: dpll: use non-locking version of clk_get_rate Tero Kristo
2016-02-22 16:52 ` Tony Lindgren
2016-02-22 22:05 ` Stephen Boyd
2016-02-22 22:10 ` Tony Lindgren
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).