blob: 9a79ffaf6be585762d17f3500c58acf7284010e0 [file] [log] [blame]
Paul Walmsley734f69a2010-01-26 20:13:06 -07001/*
2 * OMAP2xxx DVFS virtual clock functions
3 *
Paul Walmsleybaa689b2012-10-29 20:56:00 -06004 * Copyright (C) 2005-2008, 2012 Texas Instruments, Inc.
Paul Walmsley734f69a2010-01-26 20:13:06 -07005 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Paul Walmsley734f69a2010-01-26 20:13:06 -070035
Tony Lindgren622297f2012-10-02 14:19:52 -070036#include "../plat-omap/sram.h"
Paul Walmsley734f69a2010-01-26 20:13:06 -070037
Tony Lindgrendbc04162012-08-31 10:59:07 -070038#include "soc.h"
Paul Walmsley734f69a2010-01-26 20:13:06 -070039#include "clock.h"
40#include "clock2xxx.h"
41#include "opp2xxx.h"
Paul Walmsleyd9a16f92012-10-29 20:57:39 -060042#include "cm2xxx.h"
Paul Walmsley734f69a2010-01-26 20:13:06 -070043#include "cm-regbits-24xx.h"
Paul Walmsley3e6ece12012-10-17 00:46:45 +000044#include "sdrc.h"
Paul Walmsley734f69a2010-01-26 20:13:06 -070045
46const struct prcm_config *curr_prcm_set;
47const struct prcm_config *rate_table;
48
Paul Walmsleybaa689b2012-10-29 20:56:00 -060049/*
50 * sys_ck_rate: the rate of the external high-frequency clock
51 * oscillator on the board. Set by the SoC-specific clock init code.
52 * Once set during a boot, will not change.
53 */
54static unsigned long sys_ck_rate;
55
Paul Walmsley734f69a2010-01-26 20:13:06 -070056/**
57 * omap2_table_mpu_recalc - just return the MPU speed
58 * @clk: virt_prcm_set struct clk
59 *
60 * Set virt_prcm_set's rate to the mpu_speed field of the current PRCM set.
61 */
Rajendra Nayaked1ebc42012-04-27 15:59:32 +053062#ifdef CONFIG_COMMON_CLK
63unsigned long omap2_table_mpu_recalc(struct clk_hw *clk,
64 unsigned long parent_rate)
65#else
Paul Walmsley734f69a2010-01-26 20:13:06 -070066unsigned long omap2_table_mpu_recalc(struct clk *clk)
Rajendra Nayaked1ebc42012-04-27 15:59:32 +053067#endif
Paul Walmsley734f69a2010-01-26 20:13:06 -070068{
69 return curr_prcm_set->mpu_speed;
70}
71
72/*
73 * Look for a rate equal or less than the target rate given a configuration set.
74 *
75 * What's not entirely clear is "which" field represents the key field.
76 * Some might argue L3-DDR, others ARM, others IVA. This code is simple and
77 * just uses the ARM rates.
78 */
Rajendra Nayaked1ebc42012-04-27 15:59:32 +053079#ifdef CONFIG_COMMON_CLK
80long omap2_round_to_table_rate(struct clk_hw *hw, unsigned long rate,
81 unsigned long *parent_rate)
82#else
Paul Walmsley734f69a2010-01-26 20:13:06 -070083long omap2_round_to_table_rate(struct clk *clk, unsigned long rate)
Rajendra Nayaked1ebc42012-04-27 15:59:32 +053084#endif
Paul Walmsley734f69a2010-01-26 20:13:06 -070085{
86 const struct prcm_config *ptr;
Paul Walmsleybaa689b2012-10-29 20:56:00 -060087 long highest_rate;
Paul Walmsley734f69a2010-01-26 20:13:06 -070088
89 highest_rate = -EINVAL;
90
91 for (ptr = rate_table; ptr->mpu_speed; ptr++) {
92 if (!(ptr->flags & cpu_mask))
93 continue;
Paul Walmsleybaa689b2012-10-29 20:56:00 -060094 if (ptr->xtal_speed != sys_ck_rate)
Paul Walmsley734f69a2010-01-26 20:13:06 -070095 continue;
96
97 highest_rate = ptr->mpu_speed;
98
99 /* Can check only after xtal frequency check */
100 if (ptr->mpu_speed <= rate)
101 break;
102 }
103 return highest_rate;
104}
105
106/* Sets basic clocks based on the specified rate */
Rajendra Nayaked1ebc42012-04-27 15:59:32 +0530107#ifdef CONFIG_COMMON_CLK
108int omap2_select_table_rate(struct clk_hw *hw, unsigned long rate,
109 unsigned long parent_rate)
110#else
Paul Walmsley734f69a2010-01-26 20:13:06 -0700111int omap2_select_table_rate(struct clk *clk, unsigned long rate)
Rajendra Nayaked1ebc42012-04-27 15:59:32 +0530112#endif
Paul Walmsley734f69a2010-01-26 20:13:06 -0700113{
114 u32 cur_rate, done_rate, bypass = 0, tmp;
115 const struct prcm_config *prcm;
116 unsigned long found_speed = 0;
117 unsigned long flags;
Paul Walmsley734f69a2010-01-26 20:13:06 -0700118
119 for (prcm = rate_table; prcm->mpu_speed; prcm++) {
120 if (!(prcm->flags & cpu_mask))
121 continue;
122
Paul Walmsleybaa689b2012-10-29 20:56:00 -0600123 if (prcm->xtal_speed != sys_ck_rate)
Paul Walmsley734f69a2010-01-26 20:13:06 -0700124 continue;
125
126 if (prcm->mpu_speed <= rate) {
127 found_speed = prcm->mpu_speed;
128 break;
129 }
130 }
131
132 if (!found_speed) {
133 printk(KERN_INFO "Could not set MPU rate to %luMHz\n",
134 rate / 1000000);
135 return -EINVAL;
136 }
137
138 curr_prcm_set = prcm;
Paul Walmsley5f039372012-10-29 20:55:53 -0600139 cur_rate = omap2xxx_clk_get_core_rate();
Paul Walmsley734f69a2010-01-26 20:13:06 -0700140
141 if (prcm->dpll_speed == cur_rate / 2) {
142 omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL, 1);
143 } else if (prcm->dpll_speed == cur_rate * 2) {
144 omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
145 } else if (prcm->dpll_speed != cur_rate) {
146 local_irq_save(flags);
147
148 if (prcm->dpll_speed == prcm->xtal_speed)
149 bypass = 1;
150
151 if ((prcm->cm_clksel2_pll & OMAP24XX_CORE_CLK_SRC_MASK) ==
152 CORE_CLK_SRC_DPLL_X2)
153 done_rate = CORE_CLK_SRC_DPLL_X2;
154 else
155 done_rate = CORE_CLK_SRC_DPLL;
156
157 /* MPU divider */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700158 omap2_cm_write_mod_reg(prcm->cm_clksel_mpu, MPU_MOD, CM_CLKSEL);
Paul Walmsley734f69a2010-01-26 20:13:06 -0700159
160 /* dsp + iva1 div(2420), iva2.1(2430) */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700161 omap2_cm_write_mod_reg(prcm->cm_clksel_dsp,
Paul Walmsley734f69a2010-01-26 20:13:06 -0700162 OMAP24XX_DSP_MOD, CM_CLKSEL);
163
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700164 omap2_cm_write_mod_reg(prcm->cm_clksel_gfx, GFX_MOD, CM_CLKSEL);
Paul Walmsley734f69a2010-01-26 20:13:06 -0700165
166 /* Major subsystem dividers */
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700167 tmp = omap2_cm_read_mod_reg(CORE_MOD, CM_CLKSEL1) & OMAP24XX_CLKSEL_DSS2_MASK;
168 omap2_cm_write_mod_reg(prcm->cm_clksel1_core | tmp, CORE_MOD,
Paul Walmsley734f69a2010-01-26 20:13:06 -0700169 CM_CLKSEL1);
170
171 if (cpu_is_omap2430())
Paul Walmsleyc4d7e582010-12-21 21:05:14 -0700172 omap2_cm_write_mod_reg(prcm->cm_clksel_mdm,
Paul Walmsley734f69a2010-01-26 20:13:06 -0700173 OMAP2430_MDM_MOD, CM_CLKSEL);
174
175 /* x2 to enter omap2xxx_sdrc_init_params() */
176 omap2xxx_sdrc_reprogram(CORE_CLK_SRC_DPLL_X2, 1);
177
178 omap2_set_prcm(prcm->cm_clksel1_pll, prcm->base_sdrc_rfr,
179 bypass);
180
181 omap2xxx_sdrc_init_params(omap2xxx_sdrc_dll_is_unlocked());
182 omap2xxx_sdrc_reprogram(done_rate, 0);
183
184 local_irq_restore(flags);
185 }
186
187 return 0;
188}
Paul Walmsleybaa689b2012-10-29 20:56:00 -0600189
190/**
191 * omap2xxx_clkt_vps_check_bootloader_rate - determine which of the rate
192 * table sets matches the current CORE DPLL hardware rate
193 *
194 * Check the MPU rate set by bootloader. Sets the 'curr_prcm_set'
195 * global to point to the active rate set when found; otherwise, sets
196 * it to NULL. No return value;
197 */
198void omap2xxx_clkt_vps_check_bootloader_rates(void)
199{
200 const struct prcm_config *prcm = NULL;
201 unsigned long rate;
202
203 rate = omap2xxx_clk_get_core_rate();
204 for (prcm = rate_table; prcm->mpu_speed; prcm++) {
205 if (!(prcm->flags & cpu_mask))
206 continue;
207 if (prcm->xtal_speed != sys_ck_rate)
208 continue;
209 if (prcm->dpll_speed <= rate)
210 break;
211 }
212 curr_prcm_set = prcm;
213}
214
215/**
216 * omap2xxx_clkt_vps_late_init - store a copy of the sys_ck rate
217 *
218 * Store a copy of the sys_ck rate for later use by the OMAP2xxx DVFS
219 * code. (The sys_ck rate does not -- or rather, must not -- change
220 * during kernel runtime.) Must be called after we have a valid
221 * sys_ck rate, but before the virt_prcm_set clock rate is
222 * recalculated. No return value.
223 */
224void omap2xxx_clkt_vps_late_init(void)
225{
226 struct clk *c;
227
228 c = clk_get(NULL, "sys_ck");
229 if (IS_ERR(c)) {
230 WARN(1, "could not locate sys_ck\n");
231 } else {
232 sys_ck_rate = clk_get_rate(c);
233 clk_put(c);
234 }
235}