blob: f68a6db27111cb5b01bebbcd9e99706bfab2165b [file] [log] [blame]
Kevin Hilman01f48d32011-03-21 14:29:13 -07001#include <linux/kernel.h>
2#include <linux/init.h>
Kevin Hilman01f48d32011-03-21 14:29:13 -07003
4#include <plat/common.h>
5
6#include "voltage.h"
7#include "vp.h"
8#include "prm-regbits-34xx.h"
9#include "prm-regbits-44xx.h"
10#include "prm44xx.h"
11
Kevin Hilman01f48d32011-03-21 14:29:13 -070012static void vp_latch_vsel(struct voltagedomain *voltdm)
13{
Kevin Hilmanb7ea8032011-04-04 15:25:07 -070014 struct omap_vp_instance *vp = voltdm->vp;
Kevin Hilman01f48d32011-03-21 14:29:13 -070015 u32 vpconfig;
16 unsigned long uvdc;
17 char vsel;
Kevin Hilman01f48d32011-03-21 14:29:13 -070018
19 uvdc = omap_voltage_get_nom_volt(voltdm);
20 if (!uvdc) {
21 pr_warning("%s: unable to find current voltage for vdd_%s\n",
22 __func__, voltdm->name);
23 return;
24 }
25
Kevin Hilmance8ebe02011-03-30 11:01:10 -070026 if (!voltdm->pmic || !voltdm->pmic->uv_to_vsel) {
Kevin Hilman01f48d32011-03-21 14:29:13 -070027 pr_warning("%s: PMIC function to convert voltage in uV to"
28 " vsel not registered\n", __func__);
29 return;
30 }
31
Kevin Hilmance8ebe02011-03-30 11:01:10 -070032 vsel = voltdm->pmic->uv_to_vsel(uvdc);
Kevin Hilman01f48d32011-03-21 14:29:13 -070033
Kevin Hilman4bcc4752011-03-28 10:40:15 -070034 vpconfig = voltdm->read(vp->vpconfig);
Kevin Hilmanb7ea8032011-04-04 15:25:07 -070035 vpconfig &= ~(vp->common->vpconfig_initvoltage_mask |
36 vp->common->vpconfig_initvdd);
Kevin Hilman0ec30412011-04-04 16:02:28 -070037 vpconfig |= vsel << __ffs(vp->common->vpconfig_initvoltage_mask);
Kevin Hilman4bcc4752011-03-28 10:40:15 -070038 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -070039
40 /* Trigger initVDD value copy to voltage processor */
Kevin Hilmanb7ea8032011-04-04 15:25:07 -070041 voltdm->write((vpconfig | vp->common->vpconfig_initvdd),
Kevin Hilman4bcc4752011-03-28 10:40:15 -070042 vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -070043
44 /* Clear initVDD copy trigger bit */
Kevin Hilman4bcc4752011-03-28 10:40:15 -070045 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -070046}
47
48/* Generic voltage init functions */
49void __init omap_vp_init(struct voltagedomain *voltdm)
50{
Kevin Hilmanb7ea8032011-04-04 15:25:07 -070051 struct omap_vp_instance *vp = voltdm->vp;
Kevin Hilman01f48d32011-03-21 14:29:13 -070052 struct omap_vdd_info *vdd = voltdm->vdd;
Kevin Hilman6f567272011-07-14 11:10:27 -070053 u32 vp_val, sys_clk_rate, timeout_val, waittime;
Kevin Hilman01f48d32011-03-21 14:29:13 -070054
Kevin Hilman4bcc4752011-03-28 10:40:15 -070055 if (!voltdm->read || !voltdm->write) {
Kevin Hilman01f48d32011-03-21 14:29:13 -070056 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
57 __func__, voltdm->name);
58 return;
59 }
60
Kevin Hilman6f567272011-07-14 11:10:27 -070061 vp->enabled = false;
62
63 /* Divide to avoid overflow */
64 sys_clk_rate = voltdm->sys_clk.rate / 1000;
65
66 vdd->vp_rt_data.vpconfig_erroroffset =
67 (voltdm->pmic->vp_erroroffset <<
68 __ffs(voltdm->vp->common->vpconfig_erroroffset_mask));
69
70 timeout_val = (sys_clk_rate * voltdm->pmic->vp_timeout_us) / 1000;
71 vdd->vp_rt_data.vlimitto_timeout = timeout_val;
72 vdd->vp_rt_data.vlimitto_vddmin = voltdm->pmic->vp_vddmin;
73 vdd->vp_rt_data.vlimitto_vddmax = voltdm->pmic->vp_vddmax;
74
75 waittime = ((voltdm->pmic->step_size / voltdm->pmic->slew_rate) *
76 sys_clk_rate) / 1000;
77 vdd->vp_rt_data.vstepmin_smpswaittimemin = waittime;
78 vdd->vp_rt_data.vstepmax_smpswaittimemax = waittime;
79 vdd->vp_rt_data.vstepmin_stepmin = voltdm->pmic->vp_vstepmin;
80 vdd->vp_rt_data.vstepmax_stepmax = voltdm->pmic->vp_vstepmax;
81
Kevin Hilman01f48d32011-03-21 14:29:13 -070082 vp_val = vdd->vp_rt_data.vpconfig_erroroffset |
83 (vdd->vp_rt_data.vpconfig_errorgain <<
Kevin Hilman0ec30412011-04-04 16:02:28 -070084 __ffs(vp->common->vpconfig_errorgain_mask)) |
Kevin Hilmanb7ea8032011-04-04 15:25:07 -070085 vp->common->vpconfig_timeouten;
Kevin Hilman4bcc4752011-03-28 10:40:15 -070086 voltdm->write(vp_val, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -070087
88 vp_val = ((vdd->vp_rt_data.vstepmin_smpswaittimemin <<
Kevin Hilman0ec30412011-04-04 16:02:28 -070089 vp->common->vstepmin_smpswaittimemin_shift) |
90 (vdd->vp_rt_data.vstepmin_stepmin <<
91 vp->common->vstepmin_stepmin_shift));
Kevin Hilman4bcc4752011-03-28 10:40:15 -070092 voltdm->write(vp_val, vp->vstepmin);
Kevin Hilman01f48d32011-03-21 14:29:13 -070093
94 vp_val = ((vdd->vp_rt_data.vstepmax_smpswaittimemax <<
Kevin Hilman0ec30412011-04-04 16:02:28 -070095 vp->common->vstepmax_smpswaittimemax_shift) |
96 (vdd->vp_rt_data.vstepmax_stepmax <<
97 vp->common->vstepmax_stepmax_shift));
Kevin Hilman4bcc4752011-03-28 10:40:15 -070098 voltdm->write(vp_val, vp->vstepmax);
Kevin Hilman01f48d32011-03-21 14:29:13 -070099
100 vp_val = ((vdd->vp_rt_data.vlimitto_vddmax <<
Kevin Hilman0ec30412011-04-04 16:02:28 -0700101 vp->common->vlimitto_vddmax_shift) |
102 (vdd->vp_rt_data.vlimitto_vddmin <<
103 vp->common->vlimitto_vddmin_shift) |
104 (vdd->vp_rt_data.vlimitto_timeout <<
105 vp->common->vlimitto_timeout_shift));
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700106 voltdm->write(vp_val, vp->vlimitto);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700107}
108
Kevin Hilman76ea7422011-04-05 15:15:31 -0700109int omap_vp_update_errorgain(struct voltagedomain *voltdm,
110 unsigned long target_volt)
111{
112 struct omap_volt_data *volt_data;
113
114 /* Get volt_data corresponding to target_volt */
115 volt_data = omap_voltage_get_voltdata(voltdm, target_volt);
116 if (IS_ERR(volt_data))
117 return -EINVAL;
118
119 /* Setting vp errorgain based on the voltage */
120 voltdm->rmw(voltdm->vp->common->vpconfig_errorgain_mask,
121 volt_data->vp_errgain <<
122 __ffs(voltdm->vp->common->vpconfig_errorgain_mask),
123 voltdm->vp->vpconfig);
124
125 return 0;
126}
127
Kevin Hilman01f48d32011-03-21 14:29:13 -0700128/* VP force update method of voltage scaling */
129int omap_vp_forceupdate_scale(struct voltagedomain *voltdm,
130 unsigned long target_volt)
131{
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700132 struct omap_vp_instance *vp = voltdm->vp;
Kevin Hilman01f48d32011-03-21 14:29:13 -0700133 u32 vpconfig;
134 u8 target_vsel, current_vsel;
135 int ret, timeout = 0;
136
137 ret = omap_vc_pre_scale(voltdm, target_volt, &target_vsel, &current_vsel);
138 if (ret)
139 return ret;
140
141 /*
142 * Clear all pending TransactionDone interrupt/status. Typical latency
143 * is <3us
144 */
145 while (timeout++ < VP_TRANXDONE_TIMEOUT) {
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700146 vp->common->ops->clear_txdone(vp->id);
147 if (!vp->common->ops->check_txdone(vp->id))
Kevin Hilman01f48d32011-03-21 14:29:13 -0700148 break;
149 udelay(1);
150 }
151 if (timeout >= VP_TRANXDONE_TIMEOUT) {
152 pr_warning("%s: vdd_%s TRANXDONE timeout exceeded."
153 "Voltage change aborted", __func__, voltdm->name);
154 return -ETIMEDOUT;
155 }
156
157 /* Configure for VP-Force Update */
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700158 vpconfig = voltdm->read(vp->vpconfig);
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700159 vpconfig &= ~(vp->common->vpconfig_initvdd |
160 vp->common->vpconfig_forceupdate |
161 vp->common->vpconfig_initvoltage_mask);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700162 vpconfig |= ((target_vsel <<
Kevin Hilman0ec30412011-04-04 16:02:28 -0700163 __ffs(vp->common->vpconfig_initvoltage_mask)));
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700164 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700165
166 /* Trigger initVDD value copy to voltage processor */
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700167 vpconfig |= vp->common->vpconfig_initvdd;
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700168 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700169
170 /* Force update of voltage */
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700171 vpconfig |= vp->common->vpconfig_forceupdate;
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700172 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700173
174 /*
175 * Wait for TransactionDone. Typical latency is <200us.
176 * Depends on SMPSWAITTIMEMIN/MAX and voltage change
177 */
178 timeout = 0;
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700179 omap_test_timeout(vp->common->ops->check_txdone(vp->id),
Kevin Hilman01f48d32011-03-21 14:29:13 -0700180 VP_TRANXDONE_TIMEOUT, timeout);
181 if (timeout >= VP_TRANXDONE_TIMEOUT)
182 pr_err("%s: vdd_%s TRANXDONE timeout exceeded."
183 "TRANXDONE never got set after the voltage update\n",
184 __func__, voltdm->name);
185
186 omap_vc_post_scale(voltdm, target_volt, target_vsel, current_vsel);
187
188 /*
189 * Disable TransactionDone interrupt , clear all status, clear
190 * control registers
191 */
192 timeout = 0;
193 while (timeout++ < VP_TRANXDONE_TIMEOUT) {
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700194 vp->common->ops->clear_txdone(vp->id);
195 if (!vp->common->ops->check_txdone(vp->id))
Kevin Hilman01f48d32011-03-21 14:29:13 -0700196 break;
197 udelay(1);
198 }
199
200 if (timeout >= VP_TRANXDONE_TIMEOUT)
201 pr_warning("%s: vdd_%s TRANXDONE timeout exceeded while trying"
202 "to clear the TRANXDONE status\n",
203 __func__, voltdm->name);
204
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700205 vpconfig = voltdm->read(vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700206 /* Clear initVDD copy trigger bit */
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700207 vpconfig &= ~vp->common->vpconfig_initvdd;
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700208 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700209 /* Clear force bit */
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700210 vpconfig &= ~vp->common->vpconfig_forceupdate;
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700211 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700212
213 return 0;
214}
215
216/**
217 * omap_vp_get_curr_volt() - API to get the current vp voltage.
218 * @voltdm: pointer to the VDD.
219 *
220 * This API returns the current voltage for the specified voltage processor
221 */
222unsigned long omap_vp_get_curr_volt(struct voltagedomain *voltdm)
223{
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700224 struct omap_vp_instance *vp = voltdm->vp;
Kevin Hilman01f48d32011-03-21 14:29:13 -0700225 u8 curr_vsel;
226
227 if (!voltdm || IS_ERR(voltdm)) {
228 pr_warning("%s: VDD specified does not exist!\n", __func__);
229 return 0;
230 }
231
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700232 if (!voltdm->read) {
Kevin Hilman01f48d32011-03-21 14:29:13 -0700233 pr_err("%s: No read API for reading vdd_%s regs\n",
234 __func__, voltdm->name);
235 return 0;
236 }
237
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700238 curr_vsel = voltdm->read(vp->voltage);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700239
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700240 if (!voltdm->pmic || !voltdm->pmic->vsel_to_uv) {
Kevin Hilman01f48d32011-03-21 14:29:13 -0700241 pr_warning("%s: PMIC function to convert vsel to voltage"
242 "in uV not registerd\n", __func__);
243 return 0;
244 }
245
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700246 return voltdm->pmic->vsel_to_uv(curr_vsel);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700247}
248
249/**
250 * omap_vp_enable() - API to enable a particular VP
251 * @voltdm: pointer to the VDD whose VP is to be enabled.
252 *
253 * This API enables a particular voltage processor. Needed by the smartreflex
254 * class drivers.
255 */
256void omap_vp_enable(struct voltagedomain *voltdm)
257{
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700258 struct omap_vp_instance *vp;
Kevin Hilman01f48d32011-03-21 14:29:13 -0700259 u32 vpconfig;
260
261 if (!voltdm || IS_ERR(voltdm)) {
262 pr_warning("%s: VDD specified does not exist!\n", __func__);
263 return;
264 }
265
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700266 vp = voltdm->vp;
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700267 if (!voltdm->read || !voltdm->write) {
Kevin Hilman01f48d32011-03-21 14:29:13 -0700268 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
269 __func__, voltdm->name);
270 return;
271 }
272
273 /* If VP is already enabled, do nothing. Return */
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700274 if (vp->enabled)
Kevin Hilman01f48d32011-03-21 14:29:13 -0700275 return;
276
277 vp_latch_vsel(voltdm);
278
279 /* Enable VP */
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700280 vpconfig = voltdm->read(vp->vpconfig);
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700281 vpconfig |= vp->common->vpconfig_vpenable;
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700282 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700283 vp->enabled = true;
Kevin Hilman01f48d32011-03-21 14:29:13 -0700284}
285
286/**
287 * omap_vp_disable() - API to disable a particular VP
288 * @voltdm: pointer to the VDD whose VP is to be disabled.
289 *
290 * This API disables a particular voltage processor. Needed by the smartreflex
291 * class drivers.
292 */
293void omap_vp_disable(struct voltagedomain *voltdm)
294{
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700295 struct omap_vp_instance *vp;
Kevin Hilman01f48d32011-03-21 14:29:13 -0700296 u32 vpconfig;
297 int timeout;
298
299 if (!voltdm || IS_ERR(voltdm)) {
300 pr_warning("%s: VDD specified does not exist!\n", __func__);
301 return;
302 }
303
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700304 vp = voltdm->vp;
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700305 if (!voltdm->read || !voltdm->write) {
Kevin Hilman01f48d32011-03-21 14:29:13 -0700306 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
307 __func__, voltdm->name);
308 return;
309 }
310
311 /* If VP is already disabled, do nothing. Return */
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700312 if (!vp->enabled) {
Kevin Hilman01f48d32011-03-21 14:29:13 -0700313 pr_warning("%s: Trying to disable VP for vdd_%s when"
314 "it is already disabled\n", __func__, voltdm->name);
315 return;
316 }
317
318 /* Disable VP */
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700319 vpconfig = voltdm->read(vp->vpconfig);
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700320 vpconfig &= ~vp->common->vpconfig_vpenable;
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700321 voltdm->write(vpconfig, vp->vpconfig);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700322
323 /*
324 * Wait for VP idle Typical latency is <2us. Maximum latency is ~100us
325 */
Kevin Hilman4bcc4752011-03-28 10:40:15 -0700326 omap_test_timeout((voltdm->read(vp->vstatus)),
327 VP_IDLE_TIMEOUT, timeout);
Kevin Hilman01f48d32011-03-21 14:29:13 -0700328
329 if (timeout >= VP_IDLE_TIMEOUT)
330 pr_warning("%s: vdd_%s idle timedout\n",
331 __func__, voltdm->name);
332
Kevin Hilmanb7ea8032011-04-04 15:25:07 -0700333 vp->enabled = false;
Kevin Hilman01f48d32011-03-21 14:29:13 -0700334
335 return;
336}