diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2017-01-27 01:10:57 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2017-01-27 01:10:57 +0100 |
commit | de9b5a24047d50490ff58428bd1dc8bc4b63a225 (patch) | |
tree | f1eb3a252979c6ce66ac1561ef7916956106d887 /drivers/clk/ux500/u8500_of_clk.c | |
parent | clk: mediatek: Fix MT8135 dependencies (diff) | |
parent | clk: ux500: Convert ABx500 clocks to use OF probing (diff) | |
download | linux-de9b5a24047d50490ff58428bd1dc8bc4b63a225.tar.xz linux-de9b5a24047d50490ff58428bd1dc8bc4b63a225.zip |
Merge branch 'clk-ux500' into clk-next
* clk-ux500:
clk: ux500: Convert ABx500 clocks to use OF probing
clk: ux500: Add device tree bindings for ABx500 clocks
clk: ux500: move AB8500 sysclk over to PRCMU clk driver
Diffstat (limited to 'drivers/clk/ux500/u8500_of_clk.c')
-rw-r--r-- | drivers/clk/ux500/u8500_of_clk.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/clk/ux500/u8500_of_clk.c b/drivers/clk/ux500/u8500_of_clk.c index e960d686d9db..d5888591e1a9 100644 --- a/drivers/clk/ux500/u8500_of_clk.c +++ b/drivers/clk/ux500/u8500_of_clk.c @@ -206,6 +206,9 @@ static void u8500_clk_init(struct device_node *np) clk = clk_reg_prcmu_gate("timclk", NULL, PRCMU_TIMCLK, 0); prcmu_clk[PRCMU_TIMCLK] = clk; + clk = clk_reg_prcmu_gate("ab8500_sysclk", NULL, PRCMU_SYSCLK, 0); + prcmu_clk[PRCMU_SYSCLK] = clk; + clk = clk_reg_prcmu_opp_volt_scalable("sdmmcclk", NULL, PRCMU_SDMMCCLK, 100000000, CLK_SET_RATE_GATE); prcmu_clk[PRCMU_SDMMCCLK] = clk; |