Skip to content

Commit

Permalink
clk: qcom: Fix clk_get_parent function return value
Browse files Browse the repository at this point in the history
According to the common clock framework API, the clk_get_parent() function
should return u8. Currently we are returning negative values on error. Fix
this and use the default parent in case of an error.

Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
  • Loading branch information
Georgi Djakov authored and Stephen Boyd committed Mar 23, 2015
1 parent 0b21503 commit 7f21897
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 9 deletions.
26 changes: 19 additions & 7 deletions drivers/clk/qcom/clk-rcg.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,20 @@ static u8 clk_rcg_get_parent(struct clk_hw *hw)
struct clk_rcg *rcg = to_clk_rcg(hw);
int num_parents = __clk_get_num_parents(hw->clk);
u32 ns;
int i;
int i, ret;

regmap_read(rcg->clkr.regmap, rcg->ns_reg, &ns);
ret = regmap_read(rcg->clkr.regmap, rcg->ns_reg, &ns);
if (ret)
goto err;
ns = ns_to_src(&rcg->s, ns);
for (i = 0; i < num_parents; i++)
if (ns == rcg->s.parent_map[i])
return i;

return -EINVAL;
err:
pr_debug("%s: Clock %s has invalid parent, using default.\n",
__func__, __clk_get_name(hw->clk));
return 0;
}

static int reg_to_bank(struct clk_dyn_rcg *rcg, u32 bank)
Expand All @@ -70,21 +75,28 @@ static u8 clk_dyn_rcg_get_parent(struct clk_hw *hw)
int num_parents = __clk_get_num_parents(hw->clk);
u32 ns, reg;
int bank;
int i;
int i, ret;
struct src_sel *s;

regmap_read(rcg->clkr.regmap, rcg->bank_reg, &reg);
ret = regmap_read(rcg->clkr.regmap, rcg->bank_reg, &reg);
if (ret)
goto err;
bank = reg_to_bank(rcg, reg);
s = &rcg->s[bank];

regmap_read(rcg->clkr.regmap, rcg->ns_reg[bank], &ns);
ret = regmap_read(rcg->clkr.regmap, rcg->ns_reg[bank], &ns);
if (ret)
goto err;
ns = ns_to_src(s, ns);

for (i = 0; i < num_parents; i++)
if (ns == s->parent_map[i])
return i;

return -EINVAL;
err:
pr_debug("%s: Clock %s has invalid parent, using default.\n",
__func__, __clk_get_name(hw->clk));
return 0;
}

static int clk_rcg_set_parent(struct clk_hw *hw, u8 index)
Expand Down
7 changes: 5 additions & 2 deletions drivers/clk/qcom/clk-rcg2.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static u8 clk_rcg2_get_parent(struct clk_hw *hw)

ret = regmap_read(rcg->clkr.regmap, rcg->cmd_rcgr + CFG_REG, &cfg);
if (ret)
return ret;
goto err;

cfg &= CFG_SRC_SEL_MASK;
cfg >>= CFG_SRC_SEL_SHIFT;
Expand All @@ -78,7 +78,10 @@ static u8 clk_rcg2_get_parent(struct clk_hw *hw)
if (cfg == rcg->parent_map[i])
return i;

return -EINVAL;
err:
pr_debug("%s: Clock %s has invalid parent, using default.\n",
__func__, __clk_get_name(hw->clk));
return 0;
}

static int update_config(struct clk_rcg2 *rcg)
Expand Down

0 comments on commit 7f21897

Please sign in to comment.