aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap1/clock.h
diff options
context:
space:
mode:
authorPaul Walmsley <paul@pwsan.com>2012-09-27 12:33:35 -0400
committerTony Lindgren <tony@atomide.com>2012-10-18 19:23:30 -0400
commite10dd62ffcb2953f80a4ea6ac53cb489ebfe0a79 (patch)
treea9b1451b17036bc8fe093c572862321ae8ba9b5e /arch/arm/mach-omap1/clock.h
parenta135eaae524acba1509a3b19c97fae556e4da7cd (diff)
ARM: OMAP: clock: split plat/clkdev_omap.h into OMAP1/2 files
To facilitate the ARM single image work, split arch/arm/plat-omap/include/plat/clkdev_omap.h into the arch/arm/mach-omap1/clock.h and arch/arm/mach-omap2/clock.h files. Signed-off-by: Paul Walmsley <paul@pwsan.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/clock.h')
-rw-r--r--arch/arm/mach-omap1/clock.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/arm/mach-omap1/clock.h b/arch/arm/mach-omap1/clock.h
index 155ddd922c17..1e4918a3a5ee 100644
--- a/arch/arm/mach-omap1/clock.h
+++ b/arch/arm/mach-omap1/clock.h
@@ -16,9 +16,34 @@
16#include <linux/clk.h> 16#include <linux/clk.h>
17#include <linux/list.h> 17#include <linux/list.h>
18 18
19#include <linux/clkdev.h>
20
19struct module; 21struct module;
20struct clk; 22struct clk;
21 23
24struct omap_clk {
25 u16 cpu;
26 struct clk_lookup lk;
27};
28
29#define CLK(dev, con, ck, cp) \
30 { \
31 .cpu = cp, \
32 .lk = { \
33 .dev_id = dev, \
34 .con_id = con, \
35 .clk = ck, \
36 }, \
37 }
38
39/* Platform flags for the clkdev-OMAP integration code */
40#define CK_310 (1 << 0)
41#define CK_7XX (1 << 1) /* 7xx, 850 */
42#define CK_1510 (1 << 2)
43#define CK_16XX (1 << 3) /* 16xx, 17xx, 5912 */
44#define CK_1710 (1 << 4) /* 1710 extra for rate selection */
45
46
22/* Temporary, needed during the common clock framework conversion */ 47/* Temporary, needed during the common clock framework conversion */
23#define __clk_get_name(clk) (clk->name) 48#define __clk_get_name(clk) (clk->name)
24#define __clk_get_parent(clk) (clk->parent) 49#define __clk_get_parent(clk) (clk->parent)