aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-realview
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2010-03-01 11:18:39 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-05-02 04:35:38 -0400
commit9bf5b2ef673237e0e43161c56f70ac8bf24e43f9 (patch)
tree6b75855102d54da6ff6d7023ae00e25610e44f92 /arch/arm/mach-realview
parent3081e43b97cb50a80ebd98ce4b60e4853ad38424 (diff)
ARM: Indirect round/set_rate operations through clk structure
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-realview')
-rw-r--r--arch/arm/mach-realview/core.c8
-rw-r--r--arch/arm/mach-realview/include/mach/clkdev.h4
2 files changed, 9 insertions, 3 deletions
diff --git a/arch/arm/mach-realview/core.c b/arch/arm/mach-realview/core.c
index 043b93bab7df..1b468bd490af 100644
--- a/arch/arm/mach-realview/core.c
+++ b/arch/arm/mach-realview/core.c
@@ -281,9 +281,15 @@ static void realview_oscvco_set(struct clk *clk, struct icst_vco vco)
281 writel(0, sys_lock); 281 writel(0, sys_lock);
282} 282}
283 283
284static const struct clk_ops oscvco_clk_ops = {
285 .round = icst_clk_round,
286 .set = icst_clk_set,
287 .setvco = realview_oscvco_set,
288};
289
284static struct clk oscvco_clk = { 290static struct clk oscvco_clk = {
291 .ops = &oscvco_clk_ops,
285 .params = &realview_oscvco_params, 292 .params = &realview_oscvco_params,
286 .setvco = realview_oscvco_set,
287}; 293};
288 294
289/* 295/*
diff --git a/arch/arm/mach-realview/include/mach/clkdev.h b/arch/arm/mach-realview/include/mach/clkdev.h
index baea03c9ad45..e58d0771b64e 100644
--- a/arch/arm/mach-realview/include/mach/clkdev.h
+++ b/arch/arm/mach-realview/include/mach/clkdev.h
@@ -1,13 +1,13 @@
1#ifndef __ASM_MACH_CLKDEV_H 1#ifndef __ASM_MACH_CLKDEV_H
2#define __ASM_MACH_CLKDEV_H 2#define __ASM_MACH_CLKDEV_H
3 3
4#include <asm/hardware/icst.h> 4#include <plat/clock.h>
5 5
6struct clk { 6struct clk {
7 unsigned long rate; 7 unsigned long rate;
8 const struct clk_ops *ops;
8 const struct icst_params *params; 9 const struct icst_params *params;
9 void __iomem *vcoreg; 10 void __iomem *vcoreg;
10 void (*setvco)(struct clk *, struct icst_vco vco);
11}; 11};
12 12
13#define __clk_get(clk) ({ 1; }) 13#define __clk_get(clk) ({ 1; })