Skip to content

Commit

Permalink
Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops"
Browse files Browse the repository at this point in the history
[ Upstream commit abb5f3f ]

This reverts commit 35b0fac. Alexander
reports that it causes boot failures on i.MX8M Plus based boards
(specifically imx8mp-tqma8mpql-mba8mpxl.dts).

Reported-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Cc: Chen-Yu Tsai <wenst@chromium.org>
Fixes: 35b0fac ("clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops")
Link: https://lore.kernel.org/r/12115951.O9o76ZdvQC@steina-w
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Link: https://lore.kernel.org/r/20220831175326.2523912-1-sboyd@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
bebarino authored and gregkh committed Sep 8, 2022
1 parent 519cd9c commit c13b0be
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions drivers/clk/clk.c
Expand Up @@ -203,9 +203,6 @@ static bool clk_core_rate_is_protected(struct clk_core *core)
return core->protect_count;
}

static int clk_core_prepare_enable(struct clk_core *core);
static void clk_core_disable_unprepare(struct clk_core *core);

static bool clk_core_is_prepared(struct clk_core *core)
{
bool ret = false;
Expand All @@ -218,11 +215,7 @@ static bool clk_core_is_prepared(struct clk_core *core)
return core->prepare_count;

if (!clk_pm_runtime_get(core)) {
if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_prepare_enable(core->parent);
ret = core->ops->is_prepared(core->hw);
if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_disable_unprepare(core->parent);
clk_pm_runtime_put(core);
}

Expand Down Expand Up @@ -258,13 +251,7 @@ static bool clk_core_is_enabled(struct clk_core *core)
}
}

if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_prepare_enable(core->parent);

ret = core->ops->is_enabled(core->hw);

if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_disable_unprepare(core->parent);
done:
if (core->rpm_enabled)
pm_runtime_put(core->dev);
Expand Down Expand Up @@ -831,9 +818,6 @@ int clk_rate_exclusive_get(struct clk *clk)
}
EXPORT_SYMBOL_GPL(clk_rate_exclusive_get);

static int clk_core_enable_lock(struct clk_core *core);
static void clk_core_disable_lock(struct clk_core *core);

static void clk_core_unprepare(struct clk_core *core)
{
lockdep_assert_held(&prepare_lock);
Expand All @@ -857,9 +841,6 @@ static void clk_core_unprepare(struct clk_core *core)

WARN(core->enable_count > 0, "Unpreparing enabled %s\n", core->name);

if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_enable_lock(core->parent);

trace_clk_unprepare(core);

if (core->ops->unprepare)
Expand All @@ -868,9 +849,6 @@ static void clk_core_unprepare(struct clk_core *core)
clk_pm_runtime_put(core);

trace_clk_unprepare_complete(core);

if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_disable_lock(core->parent);
clk_core_unprepare(core->parent);
}

Expand Down Expand Up @@ -919,19 +897,13 @@ static int clk_core_prepare(struct clk_core *core)
if (ret)
goto runtime_put;

if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_enable_lock(core->parent);

trace_clk_prepare(core);

if (core->ops->prepare)
ret = core->ops->prepare(core->hw);

trace_clk_prepare_complete(core);

if (core->flags & CLK_OPS_PARENT_ENABLE)
clk_core_disable_lock(core->parent);

if (ret)
goto unprepare;
}
Expand Down

0 comments on commit c13b0be

Please sign in to comment.