mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
clk: AST2600: Add mux for EMMC clock
The EMMC clock can be derived from either the HPLL or the MPLL. Register
a clock mux so that the rate is calculated correctly based upon the
parent.
Signed-off-by: Eddie James <eajames@linux.ibm.com>
Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Link: https://lore.kernel.org/r/20200709195706.12741-2-eajames@linux.ibm.com
Acked-by: Joel Stanley <joel@jms.id.au>
Fixes: d3d04f6c33
("clk: Add support for AST2600 SoC")
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
8e3709d7e3
commit
c2407ab3bd
1 changed files with 41 additions and 8 deletions
|
@ -131,6 +131,18 @@ static const struct clk_div_table ast2600_eclk_div_table[] = {
|
||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct clk_div_table ast2600_emmc_extclk_div_table[] = {
|
||||||
|
{ 0x0, 2 },
|
||||||
|
{ 0x1, 4 },
|
||||||
|
{ 0x2, 6 },
|
||||||
|
{ 0x3, 8 },
|
||||||
|
{ 0x4, 10 },
|
||||||
|
{ 0x5, 12 },
|
||||||
|
{ 0x6, 14 },
|
||||||
|
{ 0x7, 16 },
|
||||||
|
{ 0 }
|
||||||
|
};
|
||||||
|
|
||||||
static const struct clk_div_table ast2600_mac_div_table[] = {
|
static const struct clk_div_table ast2600_mac_div_table[] = {
|
||||||
{ 0x0, 4 },
|
{ 0x0, 4 },
|
||||||
{ 0x1, 4 },
|
{ 0x1, 4 },
|
||||||
|
@ -390,6 +402,11 @@ static struct clk_hw *aspeed_g6_clk_hw_register_gate(struct device *dev,
|
||||||
return hw;
|
return hw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char *const emmc_extclk_parent_names[] = {
|
||||||
|
"emmc_extclk_hpll_in",
|
||||||
|
"mpll",
|
||||||
|
};
|
||||||
|
|
||||||
static const char * const vclk_parent_names[] = {
|
static const char * const vclk_parent_names[] = {
|
||||||
"dpll",
|
"dpll",
|
||||||
"d1pll",
|
"d1pll",
|
||||||
|
@ -459,16 +476,32 @@ static int aspeed_g6_clk_probe(struct platform_device *pdev)
|
||||||
return PTR_ERR(hw);
|
return PTR_ERR(hw);
|
||||||
aspeed_g6_clk_data->hws[ASPEED_CLK_UARTX] = hw;
|
aspeed_g6_clk_data->hws[ASPEED_CLK_UARTX] = hw;
|
||||||
|
|
||||||
/* EMMC ext clock divider */
|
/* EMMC ext clock */
|
||||||
hw = clk_hw_register_gate(dev, "emmc_extclk_gate", "hpll", 0,
|
hw = clk_hw_register_fixed_factor(dev, "emmc_extclk_hpll_in", "hpll",
|
||||||
scu_g6_base + ASPEED_G6_CLK_SELECTION1, 15, 0,
|
0, 1, 2);
|
||||||
&aspeed_g6_clk_lock);
|
|
||||||
if (IS_ERR(hw))
|
if (IS_ERR(hw))
|
||||||
return PTR_ERR(hw);
|
return PTR_ERR(hw);
|
||||||
hw = clk_hw_register_divider_table(dev, "emmc_extclk", "emmc_extclk_gate", 0,
|
|
||||||
scu_g6_base + ASPEED_G6_CLK_SELECTION1, 12, 3, 0,
|
hw = clk_hw_register_mux(dev, "emmc_extclk_mux",
|
||||||
ast2600_div_table,
|
emmc_extclk_parent_names,
|
||||||
&aspeed_g6_clk_lock);
|
ARRAY_SIZE(emmc_extclk_parent_names), 0,
|
||||||
|
scu_g6_base + ASPEED_G6_CLK_SELECTION1, 11, 1,
|
||||||
|
0, &aspeed_g6_clk_lock);
|
||||||
|
if (IS_ERR(hw))
|
||||||
|
return PTR_ERR(hw);
|
||||||
|
|
||||||
|
hw = clk_hw_register_gate(dev, "emmc_extclk_gate", "emmc_extclk_mux",
|
||||||
|
0, scu_g6_base + ASPEED_G6_CLK_SELECTION1,
|
||||||
|
15, 0, &aspeed_g6_clk_lock);
|
||||||
|
if (IS_ERR(hw))
|
||||||
|
return PTR_ERR(hw);
|
||||||
|
|
||||||
|
hw = clk_hw_register_divider_table(dev, "emmc_extclk",
|
||||||
|
"emmc_extclk_gate", 0,
|
||||||
|
scu_g6_base +
|
||||||
|
ASPEED_G6_CLK_SELECTION1, 12,
|
||||||
|
3, 0, ast2600_emmc_extclk_div_table,
|
||||||
|
&aspeed_g6_clk_lock);
|
||||||
if (IS_ERR(hw))
|
if (IS_ERR(hw))
|
||||||
return PTR_ERR(hw);
|
return PTR_ERR(hw);
|
||||||
aspeed_g6_clk_data->hws[ASPEED_CLK_EMMC] = hw;
|
aspeed_g6_clk_data->hws[ASPEED_CLK_EMMC] = hw;
|
||||||
|
|
Loading…
Add table
Reference in a new issue