GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-lh7a40x / clocks.c
blob0651f96653f972d18ad50f0ba57e5a8a3a29b8ea
1 /* arch/arm/mach-lh7a40x/clocks.c
3 * Copyright (C) 2004 Marc Singer
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * version 2 as published by the Free Software Foundation.
9 */
10 #include <mach/hardware.h>
11 #include <mach/clocks.h>
12 #include <linux/err.h>
13 #include <linux/device.h>
14 #include <linux/string.h>
16 struct module;
18 struct clk {
19 struct list_head node;
20 unsigned long rate;
21 struct module *owner;
22 const char *name;
25 /* ----- */
27 #define MAINDIV1(c) (((c) >> 7) & 0x0f)
28 #define MAINDIV2(c) (((c) >> 11) & 0x1f)
29 #define PS(c) (((c) >> 18) & 0x03)
30 #define PREDIV(c) (((c) >> 2) & 0x1f)
31 #define HCLKDIV(c) (((c) >> 0) & 0x02)
32 #define PCLKDIV(c) (((c) >> 16) & 0x03)
34 unsigned int fclkfreq_get (void)
36 unsigned int clkset = CSC_CLKSET;
37 unsigned int gclk
38 = XTAL_IN
39 / (1 << PS(clkset))
40 * (MAINDIV1(clkset) + 2)
41 / (PREDIV(clkset) + 2)
42 * (MAINDIV2(clkset) + 2)
44 return gclk;
47 unsigned int hclkfreq_get (void)
49 unsigned int clkset = CSC_CLKSET;
50 unsigned int hclk = fclkfreq_get () / (HCLKDIV(clkset) + 1);
52 return hclk;
55 unsigned int pclkfreq_get (void)
57 unsigned int clkset = CSC_CLKSET;
58 int pclkdiv = PCLKDIV(clkset);
59 unsigned int pclk;
60 if (pclkdiv == 0x3)
61 pclkdiv = 0x2;
62 pclk = hclkfreq_get () / (1 << pclkdiv);
64 return pclk;
67 /* ----- */
69 struct clk *clk_get (struct device *dev, const char *id)
71 return dev && strcmp(dev_name(dev), "cldc-lh7a40x") == 0
72 ? NULL : ERR_PTR(-ENOENT);
74 EXPORT_SYMBOL(clk_get);
76 void clk_put (struct clk *clk)
79 EXPORT_SYMBOL(clk_put);
81 int clk_enable (struct clk *clk)
83 return 0;
85 EXPORT_SYMBOL(clk_enable);
87 void clk_disable (struct clk *clk)
90 EXPORT_SYMBOL(clk_disable);
92 unsigned long clk_get_rate (struct clk *clk)
94 return 0;
96 EXPORT_SYMBOL(clk_get_rate);
98 long clk_round_rate (struct clk *clk, unsigned long rate)
100 return rate;
102 EXPORT_SYMBOL(clk_round_rate);
104 int clk_set_rate (struct clk *clk, unsigned long rate)
106 return -EIO;
108 EXPORT_SYMBOL(clk_set_rate);