diff options
author | Paul Walmsley <paul@pwsan.com> | 2010-01-26 22:13:06 -0500 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-01-26 22:13:06 -0500 |
commit | 734f69a773d8ff65111562116c18c987049ddac4 (patch) | |
tree | 48626f19e48bce04455dd0f7efb07e1e187d0f68 /arch/arm/mach-omap2 | |
parent | b1823d8616b11477e9e0967c727ed5325fb12403 (diff) |
OMAP2xxx clock: move the DVFS virtual clock code into mach-omap2/clkt2xxx_virt_prcm_set.c
Move the DVFS virtual clock functions from clock2xxx.c to
mach-omap2/clkt2xxx_virt_prcm_set.c. This is intended to make the
clock code easier to understand, since all of the functions needed to
manage the virt_prcm_set clock are now located in their own file,
rather than being mixed with other, unrelated functions.
Clock debugging is also now more finely-grained, since the DEBUG macro
can now be defined for the virt_prcm_set clock alone. This should
reduce unnecessary console noise when debugging.
Also, if at some future point the mach-omap2/ directory is split into
OMAP2/3/4 variants, this clkt file can be placed in the mach-omap2xxx/
directory, rather than shared with other chip types that don't use
this clock type.
Thanks to Alexander Shishkin <virtuoso@slind.org> for his comments.
Thanks also to Kevin Hilman <khilman@deeprootsystems.com> for finding
and fixing a bug with the CONFIG_CPU_FREQ portion of this patch.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Richard Woodruff <r-woodruff2@ti.com>
Cc: Alexander Shishkin <virtuoso@slind.org>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r-- | arch/arm/mach-omap2/Makefile | 3 | ||||
-rw-r--r-- | arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c | 254 | ||||
-rw-r--r-- | arch/arm/mach-omap2/clock2xxx.c | 211 |
3 files changed, 256 insertions, 212 deletions
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index 04ce372bb105..2b58363a8947 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile | |||
@@ -11,7 +11,8 @@ prcm-common = prcm.o powerdomain.o | |||
11 | clock-common = clock.o clock_common_data.o \ | 11 | clock-common = clock.o clock_common_data.o \ |
12 | clockdomain.o clkt_dpll.o \ | 12 | clockdomain.o clkt_dpll.o \ |
13 | clkt_clksel.o | 13 | clkt_clksel.o |
14 | clock-omap2xxx = clkt2xxx_dpllcore.o | 14 | clock-omap2xxx = clkt2xxx_dpllcore.o \ |
15 | clkt2xxx_virt_prcm_set.o | ||
15 | 16 | ||
16 | obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(prcm-common) $(clock-common) \ | 17 | obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(prcm-common) $(clock-common) \ |
17 | $(clock-omap2xxx) | 18 | $(clock-omap2xxx) |
diff --git a/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c b/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c new file mode 100644 index 000000000000..3b1eac4d5390 --- /dev/null +++ b/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c | |||
@@ -0,0 +1,254 @@ | |||
1 | /* | ||
2 | * OMAP2xxx DVFS virtual clock functions | ||
3 | * | ||
4 | * Copyright (C) 2005-2008 Texas Instruments, Inc. | ||
5 | * Copyright (C) 2004-2010 Nokia Corporation | ||
6 | * | ||
7 | * Contacts: | ||
8 | * Richard Woodruff <r-woodruff2@ti.com> | ||
9 | * Paul Walmsley | ||
10 | * | ||
11 | * Based on earlier work by Tuukka Tikkanen, Tony Lindgren, | ||
12 | * Gordon McNutt and RidgeRun, Inc. | ||
13 | * | ||
14 | * This program is free software; you can redistribute it and/or modify | ||
15 | * it under the terms of the GNU General Public License version 2 as | ||
16 | * published by the Free Software Foundation. | ||
17 | * | ||
18 | * XXX Some of this code should be replaceable by the upcoming OPP layer | ||
19 | * code. However, some notion of "rate set" is probably still necessary | ||
20 | * for OMAP2xxx at least. Rate sets should be generalized so they can be | ||
21 | * used for any OMAP chip, not just OMAP2xxx. In particular, Richard Woodruff | ||
22 | * has in the past expressed a preference to use rate sets for OPP changes, | ||
23 | * rather than dynamically recalculating the clock tree, so if someone wants | ||
24 | * this badly enough to write the code to handle it, we should support it | ||
25 | * as an option. | ||
26 | */ | ||
27 | #undef DEBUG | ||
28 | |||
29 | #include <linux/kernel.h> | ||
30 | #include <linux/errno.h> | ||
31 | #include <linux/clk.h> | ||
32 | #include <linux/io.h> | ||
33 | #include <linux/cpufreq.h> | ||
34 | |||
35 | #include <plat/clock.h> | ||
36 | #include <plat/sram.h> | ||
37 | #include <plat/sdrc.h> | ||
38 | |||
39 | #include "clock.h" | ||
40 | #include "clock2xxx.h" | ||
41 | #include "opp2xxx.h" | ||
42 | #include "cm.h" | ||
43 | #include "cm-regbits-24xx.h" | ||
44 | |||
45 | const struct prcm_config *curr_prcm_set; | ||
46 | const struct prcm_config *rate_table; | ||
47 | |||
48 | /** | ||
49 | * omap2_table_mpu_recalc - just return the MPU speed | ||
50 | * @clk: virt_prcm_set struct clk | ||
51 | * | ||
52 | * Set virt_prcm_set's rate to the mpu_speed field of the current PRCM set. | ||
53 | */ | ||
54 | unsigned long omap2_table_mpu_recalc(struct clk *clk) | ||
55 | { | ||
56 | return curr_prcm_set->mpu_speed; | ||
57 | } | ||
58 | |||
59 | /* | ||
60 | * Look for a rate equal or less than the target rate given a configuration set. | ||
61 | * | ||
62 | * What's not entirely clear is "which" field represents the key field. | ||
63 | * Some might argue L3-DDR, others ARM, others IVA. This code is simple and | ||
64 | * just uses the ARM rates. | ||
65 | */ | ||
66 | long omap2_round_to_table_rate(struct clk *clk, unsigned long rate) | ||
67 | { | ||
68 | const struct prcm_config *ptr; | ||
69 | long highest_rate; | ||
70 | long sys_ck_rate; | ||
71 | |||
72 | sys_ck_rate = clk_get_rate(sclk); | ||
73 | |||
74 | highest_rate = -EINVAL; | ||
75 | |||
76 | for (ptr = rate_table; ptr->mpu_speed; ptr++) { | ||
77 | if (!(ptr->flags & cpu_mask)) | ||
78 | continue; | ||
79 | if (ptr->xtal_speed != sys_ck_rate) | ||
80 | continue; | ||
81 | |||
82 | highest_rate = ptr->mpu_speed; | ||
83 | |||
84 | /* Can check only after xtal frequency check */ | ||
85 | if (ptr->mpu_speed <= rate) | ||
86 | break; | ||
87 | } | ||
88 | return highest_rate; | ||
89 | } | ||
90 | |||
91 | /* Sets basic clocks based on the specified rate */ | ||
92 | int omap2_select_table_rate(struct clk *clk, unsigned long rate) | ||
93 | { | ||
94 | u32 cur_rate, done_rate, bypass = 0, tmp; | ||
95 | const struct prcm_config *prcm; | ||
96 | unsigned long found_speed = 0; | ||
97 | unsigned long flags; | ||
98 | long sys_ck_rate; | ||
99 | |||
100 | sys_ck_rate = clk_get_rate(sclk); | ||
101 | |||
102 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | ||
103 | if (!(prcm->flags & cpu_mask)) | ||
104 | continue; | ||
105 | |||
106 | if (prcm->xtal_speed != sys_ck_rate) | ||
107 | continue; | ||
108 | |||
109 | if (prcm->mpu_speed <= rate) { | ||
110 | found_speed = prcm->mpu_speed; | ||
111 | break; | ||
112 | } | ||
113 | } | ||
114 | |||
115 | if (!found_speed) { | ||
116 | printk(KERN_INFO "Could not set MPU rate to %luMHz\n", | ||
117 | rate / 1000000); | ||
118 | return -EINVAL; | ||
119 | } | ||
120 | |||
121 | curr_prcm_set = prcm; | ||
122 | cur_rate = omap2xxx_clk_get_core_rate(dclk); | ||
123 | |||
124 | if (prcm->dpll_speed == cur_rate / 2) { | ||
125 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1); | ||
126 | } else if (prcm->dpll_speed == cur_rate * 2) { | ||
127 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1); | ||
128 | } else if (prcm->dpll_speed != cur_rate) { | ||
129 | local_irq_save(flags); | ||
130 | |||
131 | if (prcm->dpll_speed == prcm->xtal_speed) | ||
132 | bypass = 1; | ||
133 | |||
134 | if ((prcm->cm_clksel2_pll & OMAP24XX_CORE_CLK_SRC_MASK) == | ||
135 | CORE_CLK_SRC_DPLL_X2) | ||
136 | done_rate = CORE_CLK_SRC_DPLL_X2; | ||
137 | else | ||
138 | done_rate = CORE_CLK_SRC_DPLL; | ||
139 | |||
140 | /* MPU divider */ | ||
141 | cm_write_mod_reg(prcm->cm_clksel_mpu, MPU_MOD, CM_CLKSEL); | ||
142 | |||
143 | /* dsp + iva1 div(2420), iva2.1(2430) */ | ||
144 | cm_write_mod_reg(prcm->cm_clksel_dsp, | ||
145 | OMAP24XX_DSP_MOD, CM_CLKSEL); | ||
146 | |||
147 | cm_write_mod_reg(prcm->cm_clksel_gfx, GFX_MOD, CM_CLKSEL); | ||
148 | |||
149 | /* Major subsystem dividers */ | ||
150 | tmp = cm_read_mod_reg(CORE_MOD, CM_CLKSEL1) & OMAP24XX_CLKSEL_DSS2_MASK; | ||
151 | cm_write_mod_reg(prcm->cm_clksel1_core | tmp, CORE_MOD, | ||
152 | CM_CLKSEL1); | ||
153 | |||
154 | if (cpu_is_omap2430()) | ||
155 | cm_write_mod_reg(prcm->cm_clksel_mdm, | ||
156 | OMAP2430_MDM_MOD, CM_CLKSEL); | ||
157 | |||
158 | /* x2 to enter omap2xxx_sdrc_init_params() */ | ||
159 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1); | ||
160 | |||
161 | omap2_set_prcm(prcm->cm_clksel1_pll, prcm->base_sdrc_rfr, | ||
162 | bypass); | ||
163 | |||
164 | omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked()); | ||
165 | omap2xxx_sdrc_reprogram(done_rate, 0); | ||
166 | |||
167 | local_irq_restore(flags); | ||
168 | } | ||
169 | |||
170 | return 0; | ||
171 | } | ||
172 | |||
173 | #ifdef CONFIG_CPU_FREQ | ||
174 | /* | ||
175 | * Walk PRCM rate table and fillout cpufreq freq_table | ||
176 | * XXX This should be replaced by an OPP layer in the near future | ||
177 | */ | ||
178 | static struct cpufreq_frequency_table *freq_table; | ||
179 | |||
180 | void omap2_clk_init_cpufreq_table(struct cpufreq_frequency_table **table) | ||
181 | { | ||
182 | const struct prcm_config *prcm; | ||
183 | long sys_ck_rate; | ||
184 | int i = 0; | ||
185 | int tbl_sz = 0; | ||
186 | |||
187 | if (!cpu_is_omap24xx()) | ||
188 | return; | ||
189 | |||
190 | sys_ck_rate = clk_get_rate(sclk); | ||
191 | |||
192 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | ||
193 | if (!(prcm->flags & cpu_mask)) | ||
194 | continue; | ||
195 | if (prcm->xtal_speed != sys_ck_rate) | ||
196 | continue; | ||
197 | |||
198 | /* don't put bypass rates in table */ | ||
199 | if (prcm->dpll_speed == prcm->xtal_speed) | ||
200 | continue; | ||
201 | |||
202 | tbl_sz++; | ||
203 | } | ||
204 | |||
205 | /* | ||
206 | * XXX Ensure that we're doing what CPUFreq expects for this error | ||
207 | * case and the following one | ||
208 | */ | ||
209 | if (tbl_sz == 0) { | ||
210 | pr_warning("%s: no matching entries in rate_table\n", | ||
211 | __func__); | ||
212 | return; | ||
213 | } | ||
214 | |||
215 | /* Include the CPUFREQ_TABLE_END terminator entry */ | ||
216 | tbl_sz++; | ||
217 | |||
218 | freq_table = kzalloc(sizeof(struct cpufreq_frequency_table) * tbl_sz, | ||
219 | GFP_ATOMIC); | ||
220 | if (!freq_table) { | ||
221 | pr_err("%s: could not kzalloc frequency table\n", __func__); | ||
222 | return; | ||
223 | } | ||
224 | |||
225 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | ||
226 | if (!(prcm->flags & cpu_mask)) | ||
227 | continue; | ||
228 | if (prcm->xtal_speed != sys_ck_rate) | ||
229 | continue; | ||
230 | |||
231 | /* don't put bypass rates in table */ | ||
232 | if (prcm->dpll_speed == prcm->xtal_speed) | ||
233 | continue; | ||
234 | |||
235 | freq_table[i].index = i; | ||
236 | freq_table[i].frequency = prcm->mpu_speed / 1000; | ||
237 | i++; | ||
238 | } | ||
239 | |||
240 | freq_table[i].index = i; | ||
241 | freq_table[i].frequency = CPUFREQ_TABLE_END; | ||
242 | |||
243 | *table = &freq_table[0]; | ||
244 | } | ||
245 | |||
246 | void omap2_clk_exit_cpufreq_table(struct cpufreq_frequency_table **table) | ||
247 | { | ||
248 | if (!cpu_is_omap24xx()) | ||
249 | return; | ||
250 | |||
251 | kfree(freq_table); | ||
252 | } | ||
253 | |||
254 | #endif | ||
diff --git a/arch/arm/mach-omap2/clock2xxx.c b/arch/arm/mach-omap2/clock2xxx.c index 419ae80fa1d4..11d6edb0b32f 100644 --- a/arch/arm/mach-omap2/clock2xxx.c +++ b/arch/arm/mach-omap2/clock2xxx.c | |||
@@ -54,9 +54,6 @@ | |||
54 | #define APLLS_CLKIN_13MHZ 2 | 54 | #define APLLS_CLKIN_13MHZ 2 |
55 | #define APLLS_CLKIN_12MHZ 3 | 55 | #define APLLS_CLKIN_12MHZ 3 |
56 | 56 | ||
57 | const struct prcm_config *curr_prcm_set; | ||
58 | const struct prcm_config *rate_table; | ||
59 | |||
60 | struct clk *vclk, *sclk, *dclk; | 57 | struct clk *vclk, *sclk, *dclk; |
61 | 58 | ||
62 | void __iomem *prcm_clksrc_ctrl; | 59 | void __iomem *prcm_clksrc_ctrl; |
@@ -185,214 +182,6 @@ const struct clkops clkops_apll54 = { | |||
185 | .disable = omap2_clk_apll_disable, | 182 | .disable = omap2_clk_apll_disable, |
186 | }; | 183 | }; |
187 | 184 | ||
188 | /** | ||
189 | * omap2_table_mpu_recalc - just return the MPU speed | ||
190 | * @clk: virt_prcm_set struct clk | ||
191 | * | ||
192 | * Set virt_prcm_set's rate to the mpu_speed field of the current PRCM set. | ||
193 | */ | ||
194 | unsigned long omap2_table_mpu_recalc(struct clk *clk) | ||
195 | { | ||
196 | return curr_prcm_set->mpu_speed; | ||
197 | } | ||
198 | |||
199 | /* | ||
200 | * Look for a rate equal or less than the target rate given a configuration set. | ||
201 | * | ||
202 | * What's not entirely clear is "which" field represents the key field. | ||
203 | * Some might argue L3-DDR, others ARM, others IVA. This code is simple and | ||
204 | * just uses the ARM rates. | ||
205 | */ | ||
206 | long omap2_round_to_table_rate(struct clk *clk, unsigned long rate) | ||
207 | { | ||
208 | const struct prcm_config *ptr; | ||
209 | long highest_rate; | ||
210 | long sys_ck_rate; | ||
211 | |||
212 | sys_ck_rate = clk_get_rate(sclk); | ||
213 | |||
214 | highest_rate = -EINVAL; | ||
215 | |||
216 | for (ptr = rate_table; ptr->mpu_speed; ptr++) { | ||
217 | if (!(ptr->flags & cpu_mask)) | ||
218 | continue; | ||
219 | if (ptr->xtal_speed != sys_ck_rate) | ||
220 | continue; | ||
221 | |||
222 | highest_rate = ptr->mpu_speed; | ||
223 | |||
224 | /* Can check only after xtal frequency check */ | ||
225 | if (ptr->mpu_speed <= rate) | ||
226 | break; | ||
227 | } | ||
228 | return highest_rate; | ||
229 | } | ||
230 | |||
231 | /* Sets basic clocks based on the specified rate */ | ||
232 | int omap2_select_table_rate(struct clk *clk, unsigned long rate) | ||
233 | { | ||
234 | u32 cur_rate, done_rate, bypass = 0, tmp; | ||
235 | const struct prcm_config *prcm; | ||
236 | unsigned long found_speed = 0; | ||
237 | unsigned long flags; | ||
238 | long sys_ck_rate; | ||
239 | |||
240 | sys_ck_rate = clk_get_rate(sclk); | ||
241 | |||
242 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | ||
243 | if (!(prcm->flags & cpu_mask)) | ||
244 | continue; | ||
245 | |||
246 | if (prcm->xtal_speed != sys_ck_rate) | ||
247 | continue; | ||
248 | |||
249 | if (prcm->mpu_speed <= rate) { | ||
250 | found_speed = prcm->mpu_speed; | ||
251 | break; | ||
252 | } | ||
253 | } | ||
254 | |||
255 | if (!found_speed) { | ||
256 | printk(KERN_INFO "Could not set MPU rate to %luMHz\n", | ||
257 | rate / 1000000); | ||
258 | return -EINVAL; | ||
259 | } | ||
260 | |||
261 | curr_prcm_set = prcm; | ||
262 | cur_rate = omap2xxx_clk_get_core_rate(dclk); | ||
263 | |||
264 | if (prcm->dpll_speed == cur_rate / 2) { | ||
265 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1); | ||
266 | } else if (prcm->dpll_speed == cur_rate * 2) { | ||
267 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1); | ||
268 | } else if (prcm->dpll_speed != cur_rate) { | ||
269 | local_irq_save(flags); | ||
270 | |||
271 | if (prcm->dpll_speed == prcm->xtal_speed) | ||
272 | bypass = 1; | ||
273 | |||
274 | if ((prcm->cm_clksel2_pll & OMAP24XX_CORE_CLK_SRC_MASK) == | ||
275 | CORE_CLK_SRC_DPLL_X2) | ||
276 | done_rate = CORE_CLK_SRC_DPLL_X2; | ||
277 | else | ||
278 | done_rate = CORE_CLK_SRC_DPLL; | ||
279 | |||
280 | /* MPU divider */ | ||
281 | cm_write_mod_reg(prcm->cm_clksel_mpu, MPU_MOD, CM_CLKSEL); | ||
282 | |||
283 | /* dsp + iva1 div(2420), iva2.1(2430) */ | ||
284 | cm_write_mod_reg(prcm->cm_clksel_dsp, | ||
285 | OMAP24XX_DSP_MOD, CM_CLKSEL); | ||
286 | |||
287 | cm_write_mod_reg(prcm->cm_clksel_gfx, GFX_MOD, CM_CLKSEL); | ||
288 | |||
289 | /* Major subsystem dividers */ | ||
290 | tmp = cm_read_mod_reg(CORE_MOD, CM_CLKSEL1) & OMAP24XX_CLKSEL_DSS2_MASK; | ||
291 | cm_write_mod_reg(prcm->cm_clksel1_core | tmp, CORE_MOD, | ||
292 | CM_CLKSEL1); | ||
293 | |||
294 | if (cpu_is_omap2430()) | ||
295 | cm_write_mod_reg(prcm->cm_clksel_mdm, | ||
296 | OMAP2430_MDM_MOD, CM_CLKSEL); | ||
297 | |||
298 | /* x2 to enter omap2xxx_sdrc_init_params() */ | ||
299 | omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1); | ||
300 | |||
301 | omap2_set_prcm(prcm->cm_clksel1_pll, prcm->base_sdrc_rfr, | ||
302 | bypass); | ||
303 | |||
304 | omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked()); | ||
305 | omap2xxx_sdrc_reprogram(done_rate, 0); | ||
306 | |||
307 | local_irq_restore(flags); | ||
308 | } | ||
309 | |||
310 | return 0; | ||
311 | } | ||
312 | |||
313 | #ifdef CONFIG_CPU_FREQ | ||
314 | /* | ||
315 | * Walk PRCM rate table and fillout cpufreq freq_table | ||
316 | * XXX This should be replaced by an OPP layer in the near future | ||
317 | */ | ||
318 | static struct cpufreq_frequency_table *freq_table; | ||
319 | |||
320 | void omap2xxx_clk_init_cpufreq_table(struct cpufreq_frequency_table **table) | ||
321 | { | ||
322 | const struct prcm_config *prcm; | ||
323 | long sys_ck_rate; | ||
324 | int i = 0; | ||
325 | int tbl_sz = 0; | ||
326 | |||
327 | if (!cpu_is_omap2xxx()) | ||
328 | return; | ||
329 | |||
330 | sys_ck_rate = clk_get_rate(sclk); | ||
331 | |||
332 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | ||
333 | if (!(prcm->flags & cpu_mask)) | ||
334 | continue; | ||
335 | if (prcm->xtal_speed != sys_ck_rate) | ||
336 | continue; | ||
337 | |||
338 | /* don't put bypass rates in table */ | ||
339 | if (prcm->dpll_speed == prcm->xtal_speed) | ||
340 | continue; | ||
341 | |||
342 | tbl_sz++; | ||
343 | } | ||
344 | |||
345 | /* | ||
346 | * XXX Ensure that we're doing what CPUFreq expects for this error | ||
347 | * case and the following one | ||
348 | */ | ||
349 | if (tbl_sz == 0) { | ||
350 | pr_warning("%s: no matching entries in rate_table\n", | ||
351 | __func__); | ||
352 | return; | ||
353 | } | ||
354 | |||
355 | /* Include the CPUFREQ_TABLE_END terminator entry */ | ||
356 | tbl_sz++; | ||
357 | |||
358 | freq_table = kzalloc(sizeof(struct cpufreq_frequency_table) * tbl_sz, | ||
359 | GFP_ATOMIC); | ||
360 | if (!freq_table) { | ||
361 | pr_err("%s: could not kzalloc frequency table\n", __func__); | ||
362 | return; | ||
363 | } | ||
364 | |||
365 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | ||
366 | if (!(prcm->flags & cpu_mask)) | ||
367 | continue; | ||
368 | if (prcm->xtal_speed != sys_ck_rate) | ||
369 | continue; | ||
370 | |||
371 | /* don't put bypass rates in table */ | ||
372 | if (prcm->dpll_speed == prcm->xtal_speed) | ||
373 | continue; | ||
374 | |||
375 | freq_table[i].index = i; | ||
376 | freq_table[i].frequency = prcm->mpu_speed / 1000; | ||
377 | i++; | ||
378 | } | ||
379 | |||
380 | freq_table[i].index = i; | ||
381 | freq_table[i].frequency = CPUFREQ_TABLE_END; | ||
382 | |||
383 | *table = &freq_table[0]; | ||
384 | } | ||
385 | |||
386 | void omap2xxx_clk_exit_cpufreq_table(struct cpufreq_frequency_table **table) | ||
387 | { | ||
388 | if (!cpu_is_omap2xxx()) | ||
389 | return; | ||
390 | |||
391 | kfree(freq_table); | ||
392 | } | ||
393 | |||
394 | #endif | ||
395 | |||
396 | static u32 omap2_get_apll_clkin(void) | 185 | static u32 omap2_get_apll_clkin(void) |
397 | { | 186 | { |
398 | u32 aplls, srate = 0; | 187 | u32 aplls, srate = 0; |