* [RFC v1] clk: core: support clocks that need to be enabled during re-parent
@ 2019-06-10 3:44 Weiyi Lu
2019-06-10 5:54 ` Greg KH
2019-06-25 22:14 ` Stephen Boyd
0 siblings, 2 replies; 3+ messages in thread
From: Weiyi Lu @ 2019-06-10 3:44 UTC (permalink / raw)
To: Matthias Brugger, Stephen Boyd
Cc: James Liao, Fan Chen, linux-arm-kernel, linux-kernel,
linux-mediatek, linux-clk, srv_heupstream, stable, Weiyi Lu,
Biao Huang
When using property assigned-clock-parents to assign parent clocks,
core clocks might still be disabled during re-parent.
Add flag 'CLK_OPS_CORE_ENABLE' for those clocks must be enabled
during re-parent.
Signed-off-by: Weiyi Lu <weiyi.lu@mediatek.com>
---
drivers/clk/clk.c | 9 +++++++++
include/linux/clk-provider.h | 1 +
2 files changed, 10 insertions(+)
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 443711f..b2e6fe3 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -1717,6 +1717,10 @@ static struct clk_core *__clk_set_parent_before(struct clk_core *core,
clk_core_prepare_enable(parent);
}
+ /* enable core if CLK_OPS_CORE_ENABLE is set */
+ if (core->flags & CLK_OPS_CORE_ENABLE)
+ clk_core_prepare_enable(core);
+
/* migrate prepare count if > 0 */
if (core->prepare_count) {
clk_core_prepare_enable(parent);
@@ -1744,6 +1748,10 @@ static void __clk_set_parent_after(struct clk_core *core,
clk_core_disable_unprepare(old_parent);
}
+ /* re-balance ref counting if CLK_OPS_CORE_ENABLE is set */
+ if (core->flags & CLK_OPS_CORE_ENABLE)
+ clk_core_disable_unprepare(core);
+
/* re-balance ref counting if CLK_OPS_PARENT_ENABLE is set */
if (core->flags & CLK_OPS_PARENT_ENABLE) {
clk_core_disable_unprepare(parent);
@@ -2973,6 +2981,7 @@ static int clk_dump_show(struct seq_file *s, void *data)
ENTRY(CLK_IS_CRITICAL),
ENTRY(CLK_OPS_PARENT_ENABLE),
ENTRY(CLK_DUTY_CYCLE_PARENT),
+ ENTRY(CLK_OPS_CORE_ENABLE),
#undef ENTRY
};
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index bb6118f..39a1fed 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -34,6 +34,7 @@
#define CLK_OPS_PARENT_ENABLE BIT(12)
/* duty cycle call may be forwarded to the parent clock */
#define CLK_DUTY_CYCLE_PARENT BIT(13)
+#define CLK_OPS_CORE_ENABLE BIT(14) /* core need enable during re-parent */
struct clk;
struct clk_hw;
--
1.8.1.1.dirty
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [RFC v1] clk: core: support clocks that need to be enabled during re-parent
2019-06-10 3:44 [RFC v1] clk: core: support clocks that need to be enabled during re-parent Weiyi Lu
@ 2019-06-10 5:54 ` Greg KH
2019-06-25 22:14 ` Stephen Boyd
1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2019-06-10 5:54 UTC (permalink / raw)
To: Weiyi Lu
Cc: Matthias Brugger, Stephen Boyd, James Liao, Fan Chen,
linux-arm-kernel, linux-kernel, linux-mediatek, linux-clk,
srv_heupstream, stable, Biao Huang
On Mon, Jun 10, 2019 at 11:44:53AM +0800, Weiyi Lu wrote:
> When using property assigned-clock-parents to assign parent clocks,
> core clocks might still be disabled during re-parent.
> Add flag 'CLK_OPS_CORE_ENABLE' for those clocks must be enabled
> during re-parent.
>
> Signed-off-by: Weiyi Lu <weiyi.lu@mediatek.com>
> ---
> drivers/clk/clk.c | 9 +++++++++
> include/linux/clk-provider.h | 1 +
> 2 files changed, 10 insertions(+)
<formletter>
This is not the correct way to submit patches for inclusion in the
stable kernel tree. Please read:
https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for how to do this properly.
</formletter>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC v1] clk: core: support clocks that need to be enabled during re-parent
2019-06-10 3:44 [RFC v1] clk: core: support clocks that need to be enabled during re-parent Weiyi Lu
2019-06-10 5:54 ` Greg KH
@ 2019-06-25 22:14 ` Stephen Boyd
1 sibling, 0 replies; 3+ messages in thread
From: Stephen Boyd @ 2019-06-25 22:14 UTC (permalink / raw)
To: Matthias Brugger, Weiyi Lu
Cc: James Liao, Fan Chen, linux-arm-kernel, linux-kernel,
linux-mediatek, linux-clk, srv_heupstream, stable, Weiyi Lu,
Biao Huang
Quoting Weiyi Lu (2019-06-09 20:44:53)
> When using property assigned-clock-parents to assign parent clocks,
> core clocks might still be disabled during re-parent.
> Add flag 'CLK_OPS_CORE_ENABLE' for those clocks must be enabled
> during re-parent.
>
> Signed-off-by: Weiyi Lu <weiyi.lu@mediatek.com>
Can you further describe the scenario where this is a problem? Is it
some sort of clk that is enabled by default out of the bootloader and is
then configured to have an 'assigned-clock-parents' property to change
the parent, but that clk needs to be "enabled" so that the framework
turns on the parents for the parent switch?
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-06-25 22:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-10 3:44 [RFC v1] clk: core: support clocks that need to be enabled during re-parent Weiyi Lu
2019-06-10 5:54 ` Greg KH
2019-06-25 22:14 ` Stephen Boyd
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).