diff options
author | Antoine Tenart <antoine.tenart@free-electrons.com> | 2015-10-15 14:55:55 -0400 |
---|---|---|
committer | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | 2015-10-15 14:55:55 -0400 |
commit | 515f1a2027006839c08c842da919abfcc3c7ae2a (patch) | |
tree | f5fddc6bbacde7265e2b194debd2a474a57dcdd8 | |
parent | 0f0ebb13493f1133aa9fbea44783f0e5380a9770 (diff) |
clk: berlin: add cpuclk
Add cpuclk in the Berlin BG2Q clock driver. This clk has a divider
fixed to 1.
Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
Acked-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
-rw-r--r-- | drivers/clk/berlin/bg2q.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/clk/berlin/bg2q.c b/drivers/clk/berlin/bg2q.c index 221f40c2b850..72d2f3500db8 100644 --- a/drivers/clk/berlin/bg2q.c +++ b/drivers/clk/berlin/bg2q.c | |||
@@ -45,7 +45,7 @@ | |||
45 | #define REG_SDIO0XIN_CLKCTL 0x0158 | 45 | #define REG_SDIO0XIN_CLKCTL 0x0158 |
46 | #define REG_SDIO1XIN_CLKCTL 0x015c | 46 | #define REG_SDIO1XIN_CLKCTL 0x015c |
47 | 47 | ||
48 | #define MAX_CLKS 27 | 48 | #define MAX_CLKS 28 |
49 | static struct clk *clks[MAX_CLKS]; | 49 | static struct clk *clks[MAX_CLKS]; |
50 | static struct clk_onecell_data clk_data; | 50 | static struct clk_onecell_data clk_data; |
51 | static DEFINE_SPINLOCK(lock); | 51 | static DEFINE_SPINLOCK(lock); |
@@ -356,13 +356,13 @@ static void __init berlin2q_clock_setup(struct device_node *np) | |||
356 | gd->bit_idx, 0, &lock); | 356 | gd->bit_idx, 0, &lock); |
357 | } | 357 | } |
358 | 358 | ||
359 | /* | 359 | /* cpuclk divider is fixed to 1 */ |
360 | * twdclk is derived from cpu/3 | 360 | clks[CLKID_CPU] = |
361 | * TODO: use cpupll until cpuclk is not available | 361 | clk_register_fixed_factor(NULL, "cpu", clk_names[CPUPLL], |
362 | */ | 362 | 0, 1, 1); |
363 | /* twdclk is derived from cpu/3 */ | ||
363 | clks[CLKID_TWD] = | 364 | clks[CLKID_TWD] = |
364 | clk_register_fixed_factor(NULL, "twd", clk_names[CPUPLL], | 365 | clk_register_fixed_factor(NULL, "twd", "cpu", 0, 1, 3); |
365 | 0, 1, 3); | ||
366 | 366 | ||
367 | /* check for errors on leaf clocks */ | 367 | /* check for errors on leaf clocks */ |
368 | for (n = 0; n < MAX_CLKS; n++) { | 368 | for (n = 0; n < MAX_CLKS; n++) { |