aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu/clock-cpg.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/kernel/cpu/clock-cpg.c')
-rw-r--r--arch/sh/kernel/cpu/clock-cpg.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/clock-cpg.c b/arch/sh/kernel/cpu/clock-cpg.c
index b78c237ab36..72228d2945a 100644
--- a/arch/sh/kernel/cpu/clock-cpg.c
+++ b/arch/sh/kernel/cpu/clock-cpg.c
@@ -1,7 +1,42 @@
1#include <linux/clk.h> 1#include <linux/clk.h>
2#include <linux/compiler.h> 2#include <linux/compiler.h>
3#include <linux/io.h>
3#include <asm/clock.h> 4#include <asm/clock.h>
4 5
6static int sh_clk_mstp32_enable(struct clk *clk)
7{
8 __raw_writel(__raw_readl(clk->enable_reg) & ~(1 << clk->enable_bit),
9 clk->enable_reg);
10 return 0;
11}
12
13static void sh_clk_mstp32_disable(struct clk *clk)
14{
15 __raw_writel(__raw_readl(clk->enable_reg) | (1 << clk->enable_bit),
16 clk->enable_reg);
17}
18
19static struct clk_ops sh_clk_mstp32_clk_ops = {
20 .enable = sh_clk_mstp32_enable,
21 .disable = sh_clk_mstp32_disable,
22 .recalc = followparent_recalc,
23};
24
25int __init sh_clk_mstp32_register(struct clk *clks, int nr)
26{
27 struct clk *clkp;
28 int ret = 0;
29 int k;
30
31 for (k = 0; !ret && (k < nr); k++) {
32 clkp = clks + k;
33 clkp->ops = &sh_clk_mstp32_clk_ops;
34 ret |= clk_register(clkp);
35 }
36
37 return ret;
38}
39
5#ifdef CONFIG_SH_CLK_CPG_LEGACY 40#ifdef CONFIG_SH_CLK_CPG_LEGACY
6static struct clk master_clk = { 41static struct clk master_clk = {
7 .name = "master_clk", 42 .name = "master_clk",