aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu
diff options
context:
space:
mode:
authorMagnus Damm <damm@igel.co.jp>2009-05-28 09:11:31 -0400
committerPaul Mundt <lethal@linux-sh.org>2009-06-01 05:07:37 -0400
commita1153e27eec25e9963f5843ba8932952bd9847ac (patch)
tree76ef9b57aa5734797a862ad576f4f4e74ab8a3f0 /arch/sh/kernel/cpu
parente89d53e60593ee7066e1d36ab5c1ccf2648f5f53 (diff)
sh: shared div4 clock code
Add shared code for 4-bit divisor clocks. Processor specific code can use SH_CLK_DIV4() to initialize div4 clocks, and then use sh_clk_div4_register() for registration. Signed-off-by: Magnus Damm <damm@igel.co.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu')
-rw-r--r--arch/sh/kernel/cpu/clock-cpg.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/clock-cpg.c b/arch/sh/kernel/cpu/clock-cpg.c
index 72228d2945ac..88fc30d2f5fd 100644
--- a/arch/sh/kernel/cpu/clock-cpg.c
+++ b/arch/sh/kernel/cpu/clock-cpg.c
@@ -1,5 +1,6 @@
1#include <linux/clk.h> 1#include <linux/clk.h>
2#include <linux/compiler.h> 2#include <linux/compiler.h>
3#include <linux/bootmem.h>
3#include <linux/io.h> 4#include <linux/io.h>
4#include <asm/clock.h> 5#include <asm/clock.h>
5 6
@@ -37,6 +38,60 @@ int __init sh_clk_mstp32_register(struct clk *clks, int nr)
37 return ret; 38 return ret;
38} 39}
39 40
41static unsigned long sh_clk_div4_recalc(struct clk *clk)
42{
43 struct clk_div_mult_table *table = clk->priv;
44 unsigned int idx;
45
46 clk_rate_table_build(clk, clk->freq_table, table->nr_divisors,
47 table, &clk->arch_flags);
48
49 idx = (__raw_readl(clk->enable_reg) >> clk->enable_bit) & 0x000f;
50
51 return clk->freq_table[idx].frequency;
52}
53
54static long sh_clk_div4_round_rate(struct clk *clk, unsigned long rate)
55{
56 return clk_rate_table_round(clk, clk->freq_table, rate);
57}
58
59static struct clk_ops sh_clk_div4_clk_ops = {
60 .recalc = sh_clk_div4_recalc,
61 .round_rate = sh_clk_div4_round_rate,
62};
63
64int __init sh_clk_div4_register(struct clk *clks, int nr,
65 struct clk_div_mult_table *table)
66{
67 struct clk *clkp;
68 void *freq_table;
69 int nr_divs = table->nr_divisors;
70 int freq_table_size = sizeof(struct cpufreq_frequency_table);
71 int ret = 0;
72 int k;
73
74 k = nr_divs + 1;
75 freq_table = alloc_bootmem(freq_table_size * nr * (nr_divs + 1));
76 if (!freq_table)
77 return -ENOMEM;
78
79 for (k = 0; !ret && (k < nr); k++) {
80 clkp = clks + k;
81
82 clkp->ops = &sh_clk_div4_clk_ops;
83 clkp->id = -1;
84 clkp->priv = table;
85
86 clkp->freq_table = freq_table + (k * freq_table_size);
87 clkp->freq_table[nr_divs].frequency = CPUFREQ_TABLE_END;
88
89 ret = clk_register(clkp);
90 }
91
92 return ret;
93}
94
40#ifdef CONFIG_SH_CLK_CPG_LEGACY 95#ifdef CONFIG_SH_CLK_CPG_LEGACY
41static struct clk master_clk = { 96static struct clk master_clk = {
42 .name = "master_clk", 97 .name = "master_clk",