GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mips / kernel / cpufreq / loongson2_clock.c
blobcefc6e259bafd3acd986588af2c87a6e3ce0f32d
1 /*
2 * Copyright (C) 2006 - 2008 Lemote Inc. & Insititute of Computing Technology
3 * Author: Yanhua, yanh@lemote.com
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
7 * for more details.
8 */
10 #include <linux/cpufreq.h>
11 #include <linux/platform_device.h>
13 #include <asm/clock.h>
15 #include <loongson.h>
17 static LIST_HEAD(clock_list);
18 static DEFINE_SPINLOCK(clock_lock);
19 static DEFINE_MUTEX(clock_list_sem);
21 /* Minimum CLK support */
22 enum {
23 DC_ZERO, DC_25PT = 2, DC_37PT, DC_50PT, DC_62PT, DC_75PT,
24 DC_87PT, DC_DISABLE, DC_RESV
27 struct cpufreq_frequency_table loongson2_clockmod_table[] = {
28 {DC_RESV, CPUFREQ_ENTRY_INVALID},
29 {DC_ZERO, CPUFREQ_ENTRY_INVALID},
30 {DC_25PT, 0},
31 {DC_37PT, 0},
32 {DC_50PT, 0},
33 {DC_62PT, 0},
34 {DC_75PT, 0},
35 {DC_87PT, 0},
36 {DC_DISABLE, 0},
37 {DC_RESV, CPUFREQ_TABLE_END},
39 EXPORT_SYMBOL_GPL(loongson2_clockmod_table);
41 static struct clk cpu_clk = {
42 .name = "cpu_clk",
43 .flags = CLK_ALWAYS_ENABLED | CLK_RATE_PROPAGATES,
44 .rate = 800000000,
47 struct clk *clk_get(struct device *dev, const char *id)
49 return &cpu_clk;
51 EXPORT_SYMBOL(clk_get);
53 static void propagate_rate(struct clk *clk)
55 struct clk *clkp;
57 list_for_each_entry(clkp, &clock_list, node) {
58 if (likely(clkp->parent != clk))
59 continue;
60 if (likely(clkp->ops && clkp->ops->recalc))
61 clkp->ops->recalc(clkp);
62 if (unlikely(clkp->flags & CLK_RATE_PROPAGATES))
63 propagate_rate(clkp);
67 int clk_enable(struct clk *clk)
69 return 0;
71 EXPORT_SYMBOL(clk_enable);
73 void clk_disable(struct clk *clk)
76 EXPORT_SYMBOL(clk_disable);
78 unsigned long clk_get_rate(struct clk *clk)
80 return (unsigned long)clk->rate;
82 EXPORT_SYMBOL(clk_get_rate);
84 void clk_put(struct clk *clk)
87 EXPORT_SYMBOL(clk_put);
89 int clk_set_rate(struct clk *clk, unsigned long rate)
91 return clk_set_rate_ex(clk, rate, 0);
93 EXPORT_SYMBOL_GPL(clk_set_rate);
95 int clk_set_rate_ex(struct clk *clk, unsigned long rate, int algo_id)
97 int ret = 0;
98 int regval;
99 int i;
101 if (likely(clk->ops && clk->ops->set_rate)) {
102 unsigned long flags;
104 spin_lock_irqsave(&clock_lock, flags);
105 ret = clk->ops->set_rate(clk, rate, algo_id);
106 spin_unlock_irqrestore(&clock_lock, flags);
109 if (unlikely(clk->flags & CLK_RATE_PROPAGATES))
110 propagate_rate(clk);
112 for (i = 0; loongson2_clockmod_table[i].frequency != CPUFREQ_TABLE_END;
113 i++) {
114 if (loongson2_clockmod_table[i].frequency ==
115 CPUFREQ_ENTRY_INVALID)
116 continue;
117 if (rate == loongson2_clockmod_table[i].frequency)
118 break;
120 if (rate != loongson2_clockmod_table[i].frequency)
121 return -ENOTSUPP;
123 clk->rate = rate;
125 regval = LOONGSON_CHIPCFG0;
126 regval = (regval & ~0x7) | (loongson2_clockmod_table[i].index - 1);
127 LOONGSON_CHIPCFG0 = regval;
129 return ret;
131 EXPORT_SYMBOL_GPL(clk_set_rate_ex);
133 long clk_round_rate(struct clk *clk, unsigned long rate)
135 if (likely(clk->ops && clk->ops->round_rate)) {
136 unsigned long flags, rounded;
138 spin_lock_irqsave(&clock_lock, flags);
139 rounded = clk->ops->round_rate(clk, rate);
140 spin_unlock_irqrestore(&clock_lock, flags);
142 return rounded;
145 return rate;
147 EXPORT_SYMBOL_GPL(clk_round_rate);
150 * This is the simple version of Loongson-2 wait, Maybe we need do this in
151 * interrupt disabled content
154 DEFINE_SPINLOCK(loongson2_wait_lock);
155 void loongson2_cpu_wait(void)
157 u32 cpu_freq;
158 unsigned long flags;
160 spin_lock_irqsave(&loongson2_wait_lock, flags);
161 cpu_freq = LOONGSON_CHIPCFG0;
162 LOONGSON_CHIPCFG0 &= ~0x7; /* Put CPU into wait mode */
163 LOONGSON_CHIPCFG0 = cpu_freq; /* Restore CPU state */
164 spin_unlock_irqrestore(&loongson2_wait_lock, flags);
166 EXPORT_SYMBOL_GPL(loongson2_cpu_wait);
168 MODULE_AUTHOR("Yanhua <yanh@lemote.com>");
169 MODULE_DESCRIPTION("cpufreq driver for Loongson 2F");
170 MODULE_LICENSE("GPL");