Stephen Boyd
836ee0f7d9
clk: Convert __clk_get_name(hw->clk) to clk_hw_get_name(hw)
...
Use the provider based method to get a clock's name so that we
can get rid of the clk member in struct clk_hw one day. Mostly
converted with the following coccinelle script.
@@
struct clk_hw *E;
@@
-__clk_get_name(E->clk)
+clk_hw_get_name(E)
Acked-by: Heiko Stuebner <heiko@sntech.de >
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com >
Cc: Tomasz Figa <tomasz.figa@gmail.com >
Cc: Peter De Schrijver <pdeschrijver@nvidia.com >
Cc: Prashant Gaikwad <pgaikwad@nvidia.com >
Cc: Stephen Warren <swarren@wwwdotorg.org >
Acked-by: Thierry Reding <treding@nvidia.com >
Cc: Thierry Reding <thierry.reding@gmail.com >
Cc: Alexandre Courbot <gnurou@gmail.com >
Cc: Tero Kristo <t-kristo@ti.com >
Cc: Ulf Hansson <ulf.hansson@linaro.org >
Acked-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com >
Acked-by: Andrew Bresticker <abrestic@chromium.org >
Cc: Ezequiel Garcia <ezequiel.garcia@imgtec.com >
Cc: Ralf Baechle <ralf@linux-mips.org >
Cc: Kevin Cernekee <cernekee@chromium.org >
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be >
Cc: Ulrich Hecht <ulrich.hecht+renesas@gmail.com >
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-rockchip@lists.infradead.org
Cc: linux-samsung-soc@vger.kernel.org
Cc: linux-tegra@vger.kernel.org
Cc: linux-omap@vger.kernel.org
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org >
2015-08-24 16:49:12 -07:00
Stephen Boyd
3a5c111f5d
clk: ux500: Drop use of clk-private.h
...
These drivers don't need to include clk-private.h. Remove the
include.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org >
Acked-by: Ulf Hansson <ulf.hansson@linaro.org >
Acked-by: Linus Walleij <linus.walleij@linaro.org >
Signed-off-by: Michael Turquette <mturquette@linaro.org >
2015-01-27 11:56:33 -08:00
Sachin Kamat
24c039f6ac
clk: ux500: Remove extra semicolon
...
Extra semicolon is redundant. Remove it.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org >
Acked-by: Ulf Hansson <ulf.hansson@linaro.org >
Signed-off-by: Mike Turquette <mturquette@linaro.org >
2013-12-19 17:47:33 -08:00
Maxime Coquelin
b548916851
clk: ux500: Fix prcmu clocks registration
...
In clk_reg_prcmu(), clk->hw.init field is assigned with a
reference local to clk_reg_prcmu() function.
This patch replaces references to clk->hw.init with calls
to __clk_get_name when called after clock registration.
This patch applies on top of v3.9-rc4.
Signed-off-by: Maxime Coquelin <maxime.coquelin@st.com >
Acked-by: Ulf Hansson <ulf.hansson@linaro.org >
Signed-off-by: Mike Turquette <mturquette@linaro.org >
[mturquette@linaro.org: resolved trivial merge issues]
2013-03-27 08:35:33 -07:00
Ulf Hansson
2850985f77
clk: ux500: Support is_prepared callback for clk-prcmu
...
To be able to gate unused prcmu clocks from the clk_disable_unused sequence,
clk-prcmu now implements the is_prepared callback.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org >
Signed-off-by: Mike Turquette <mturquette@linaro.org >
2013-03-19 12:58:44 -07:00
Ulf Hansson
a816d250e8
clk: ux500: Support for prcmu_scalable_rate clock
...
The prcmu_scalable_rate clock can change rate but is not gateable.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org >
Acked-by: Linus Walleij <linus.walleij@linaro.org >
Signed-off-by: Mike Turquette <mturquette@linaro.org >
2012-11-09 16:47:06 -08:00
Ulf Hansson
b0ea0fc753
clk: ux500: Support prcmu ape opp voltage clock
...
Some scalable prcmu clocks needs to be handled in conjuction with the
ape opp 100 voltage. A new prcmu clock type clk_prcmu_opp_volt_scalable
is implemented to handle this.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org >
Acked-by: Linus Walleij <linus.walleij@linaro.org >
Signed-off-by: Mike Turquette <mturquette@linaro.org >
2012-10-29 11:05:53 -07:00
Ulf Hansson
70b1fce2ec
clk: ux500: Support for prmcu_rate clock
...
The prmcu_rate clock is not gateable and has a rate which
only can be fetched.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org >
Acked-by: Linus Walleij <linus.walleij@linaro.org >
Signed-off-by: Mike Turquette <mturquette@linaro.org >
2012-09-06 17:57:08 -07:00
Ulf Hansson
3b01f87be2
clk: ux500: Adapt PRCMU and PRCC clocks for common clk
...
First version of common clock implementation of PRCMU clocks
and PRCC clocks for ux500 platforms.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org >
Acked-by: Linus Walleij <linus.walleij@linaro.org >
Signed-off-by: Mike Turquette <mturquette@linaro.org >
2012-09-06 15:57:47 -07:00