summaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx/clk-pfd.c
diff options
context:
space:
mode:
authorAnson Huang <b20788@freescale.com>2013-12-24 14:05:38 -0500
committerShawn Guo <shawn.guo@linaro.org>2013-12-31 09:36:45 +0800
commitadf15fa59695f383067e70d151b131fdeafcb489 (patch)
treeb189adbfb679dd92f08b97f88710d42856594f45 /arch/arm/mach-imx/clk-pfd.c
parent5a72f10500f52f18887ce78f8edebc95cc3dfc23 (diff)
ARM: imx: add necessary interface for pfd
Common clk framework will disable unused clks in late init only if they are enabled by default and no one is using it, so we need to add is_enabled callback for clk framework to get clks' status. PFD clocks are enabled by hardware reset, so we need to add interface for common clk framework to disable those unused ones for saving power. Signed-off-by: Anson Huang <b20788@freescale.com> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-imx/clk-pfd.c')
-rw-r--r--arch/arm/mach-imx/clk-pfd.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/clk-pfd.c b/arch/arm/mach-imx/clk-pfd.c
index e2ed4160f329..0b0f6f66ec56 100644
--- a/arch/arm/mach-imx/clk-pfd.c
+++ b/arch/arm/mach-imx/clk-pfd.c
@@ -109,12 +109,23 @@ static int clk_pfd_set_rate(struct clk_hw *hw, unsigned long rate,
return 0;
}
+static int clk_pfd_is_enabled(struct clk_hw *hw)
+{
+ struct clk_pfd *pfd = to_clk_pfd(hw);
+
+ if (readl_relaxed(pfd->reg) & (1 << ((pfd->idx + 1) * 8 - 1)))
+ return 0;
+
+ return 1;
+}
+
static const struct clk_ops clk_pfd_ops = {
.enable = clk_pfd_enable,
.disable = clk_pfd_disable,
.recalc_rate = clk_pfd_recalc_rate,
.round_rate = clk_pfd_round_rate,
.set_rate = clk_pfd_set_rate,
+ .is_enabled = clk_pfd_is_enabled,
};
struct clk *imx_clk_pfd(const char *name, const char *parent_name,