]> Pileus Git - ~andy/linux/blob - arch/arm/mach-omap2/vp.c
OMAP3+: VP: move timing calculation/config into VP init
[~andy/linux] / arch / arm / mach-omap2 / vp.c
1 #include <linux/kernel.h>
2 #include <linux/init.h>
3
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
12 static void vp_latch_vsel(struct voltagedomain *voltdm)
13 {
14         struct omap_vp_instance *vp = voltdm->vp;
15         u32 vpconfig;
16         unsigned long uvdc;
17         char vsel;
18
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
26         if (!voltdm->pmic || !voltdm->pmic->uv_to_vsel) {
27                 pr_warning("%s: PMIC function to convert voltage in uV to"
28                         " vsel not registered\n", __func__);
29                 return;
30         }
31
32         vsel = voltdm->pmic->uv_to_vsel(uvdc);
33
34         vpconfig = voltdm->read(vp->vpconfig);
35         vpconfig &= ~(vp->common->vpconfig_initvoltage_mask |
36                         vp->common->vpconfig_initvdd);
37         vpconfig |= vsel << __ffs(vp->common->vpconfig_initvoltage_mask);
38         voltdm->write(vpconfig, vp->vpconfig);
39
40         /* Trigger initVDD value copy to voltage processor */
41         voltdm->write((vpconfig | vp->common->vpconfig_initvdd),
42                        vp->vpconfig);
43
44         /* Clear initVDD copy trigger bit */
45         voltdm->write(vpconfig, vp->vpconfig);
46 }
47
48 /* Generic voltage init functions */
49 void __init omap_vp_init(struct voltagedomain *voltdm)
50 {
51         struct omap_vp_instance *vp = voltdm->vp;
52         struct omap_vdd_info *vdd = voltdm->vdd;
53         u32 vp_val, sys_clk_rate, timeout_val, waittime;
54
55         if (!voltdm->read || !voltdm->write) {
56                 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
57                         __func__, voltdm->name);
58                 return;
59         }
60
61         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
82         vp_val = vdd->vp_rt_data.vpconfig_erroroffset |
83                 (vdd->vp_rt_data.vpconfig_errorgain <<
84                  __ffs(vp->common->vpconfig_errorgain_mask)) |
85                 vp->common->vpconfig_timeouten;
86         voltdm->write(vp_val, vp->vpconfig);
87
88         vp_val = ((vdd->vp_rt_data.vstepmin_smpswaittimemin <<
89                    vp->common->vstepmin_smpswaittimemin_shift) |
90                   (vdd->vp_rt_data.vstepmin_stepmin <<
91                    vp->common->vstepmin_stepmin_shift));
92         voltdm->write(vp_val, vp->vstepmin);
93
94         vp_val = ((vdd->vp_rt_data.vstepmax_smpswaittimemax <<
95                    vp->common->vstepmax_smpswaittimemax_shift) |
96                   (vdd->vp_rt_data.vstepmax_stepmax <<
97                    vp->common->vstepmax_stepmax_shift));
98         voltdm->write(vp_val, vp->vstepmax);
99
100         vp_val = ((vdd->vp_rt_data.vlimitto_vddmax <<
101                    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));
106         voltdm->write(vp_val, vp->vlimitto);
107 }
108
109 /* VP force update method of voltage scaling */
110 int omap_vp_forceupdate_scale(struct voltagedomain *voltdm,
111                               unsigned long target_volt)
112 {
113         struct omap_vp_instance *vp = voltdm->vp;
114         u32 vpconfig;
115         u8 target_vsel, current_vsel;
116         int ret, timeout = 0;
117
118         ret = omap_vc_pre_scale(voltdm, target_volt, &target_vsel, &current_vsel);
119         if (ret)
120                 return ret;
121
122         /*
123          * Clear all pending TransactionDone interrupt/status. Typical latency
124          * is <3us
125          */
126         while (timeout++ < VP_TRANXDONE_TIMEOUT) {
127                 vp->common->ops->clear_txdone(vp->id);
128                 if (!vp->common->ops->check_txdone(vp->id))
129                         break;
130                 udelay(1);
131         }
132         if (timeout >= VP_TRANXDONE_TIMEOUT) {
133                 pr_warning("%s: vdd_%s TRANXDONE timeout exceeded."
134                         "Voltage change aborted", __func__, voltdm->name);
135                 return -ETIMEDOUT;
136         }
137
138         /* Configure for VP-Force Update */
139         vpconfig = voltdm->read(vp->vpconfig);
140         vpconfig &= ~(vp->common->vpconfig_initvdd |
141                         vp->common->vpconfig_forceupdate |
142                         vp->common->vpconfig_initvoltage_mask);
143         vpconfig |= ((target_vsel <<
144                       __ffs(vp->common->vpconfig_initvoltage_mask)));
145         voltdm->write(vpconfig, vp->vpconfig);
146
147         /* Trigger initVDD value copy to voltage processor */
148         vpconfig |= vp->common->vpconfig_initvdd;
149         voltdm->write(vpconfig, vp->vpconfig);
150
151         /* Force update of voltage */
152         vpconfig |= vp->common->vpconfig_forceupdate;
153         voltdm->write(vpconfig, vp->vpconfig);
154
155         /*
156          * Wait for TransactionDone. Typical latency is <200us.
157          * Depends on SMPSWAITTIMEMIN/MAX and voltage change
158          */
159         timeout = 0;
160         omap_test_timeout(vp->common->ops->check_txdone(vp->id),
161                           VP_TRANXDONE_TIMEOUT, timeout);
162         if (timeout >= VP_TRANXDONE_TIMEOUT)
163                 pr_err("%s: vdd_%s TRANXDONE timeout exceeded."
164                         "TRANXDONE never got set after the voltage update\n",
165                         __func__, voltdm->name);
166
167         omap_vc_post_scale(voltdm, target_volt, target_vsel, current_vsel);
168
169         /*
170          * Disable TransactionDone interrupt , clear all status, clear
171          * control registers
172          */
173         timeout = 0;
174         while (timeout++ < VP_TRANXDONE_TIMEOUT) {
175                 vp->common->ops->clear_txdone(vp->id);
176                 if (!vp->common->ops->check_txdone(vp->id))
177                         break;
178                 udelay(1);
179         }
180
181         if (timeout >= VP_TRANXDONE_TIMEOUT)
182                 pr_warning("%s: vdd_%s TRANXDONE timeout exceeded while trying"
183                         "to clear the TRANXDONE status\n",
184                         __func__, voltdm->name);
185
186         vpconfig = voltdm->read(vp->vpconfig);
187         /* Clear initVDD copy trigger bit */
188         vpconfig &= ~vp->common->vpconfig_initvdd;
189         voltdm->write(vpconfig, vp->vpconfig);
190         /* Clear force bit */
191         vpconfig &= ~vp->common->vpconfig_forceupdate;
192         voltdm->write(vpconfig, vp->vpconfig);
193
194         return 0;
195 }
196
197 /**
198  * omap_vp_get_curr_volt() - API to get the current vp voltage.
199  * @voltdm:     pointer to the VDD.
200  *
201  * This API returns the current voltage for the specified voltage processor
202  */
203 unsigned long omap_vp_get_curr_volt(struct voltagedomain *voltdm)
204 {
205         struct omap_vp_instance *vp = voltdm->vp;
206         u8 curr_vsel;
207
208         if (!voltdm || IS_ERR(voltdm)) {
209                 pr_warning("%s: VDD specified does not exist!\n", __func__);
210                 return 0;
211         }
212
213         if (!voltdm->read) {
214                 pr_err("%s: No read API for reading vdd_%s regs\n",
215                         __func__, voltdm->name);
216                 return 0;
217         }
218
219         curr_vsel = voltdm->read(vp->voltage);
220
221         if (!voltdm->pmic || !voltdm->pmic->vsel_to_uv) {
222                 pr_warning("%s: PMIC function to convert vsel to voltage"
223                         "in uV not registerd\n", __func__);
224                 return 0;
225         }
226
227         return voltdm->pmic->vsel_to_uv(curr_vsel);
228 }
229
230 /**
231  * omap_vp_enable() - API to enable a particular VP
232  * @voltdm:     pointer to the VDD whose VP is to be enabled.
233  *
234  * This API enables a particular voltage processor. Needed by the smartreflex
235  * class drivers.
236  */
237 void omap_vp_enable(struct voltagedomain *voltdm)
238 {
239         struct omap_vp_instance *vp;
240         u32 vpconfig;
241
242         if (!voltdm || IS_ERR(voltdm)) {
243                 pr_warning("%s: VDD specified does not exist!\n", __func__);
244                 return;
245         }
246
247         vp = voltdm->vp;
248         if (!voltdm->read || !voltdm->write) {
249                 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
250                         __func__, voltdm->name);
251                 return;
252         }
253
254         /* If VP is already enabled, do nothing. Return */
255         if (vp->enabled)
256                 return;
257
258         vp_latch_vsel(voltdm);
259
260         /* Enable VP */
261         vpconfig = voltdm->read(vp->vpconfig);
262         vpconfig |= vp->common->vpconfig_vpenable;
263         voltdm->write(vpconfig, vp->vpconfig);
264         vp->enabled = true;
265 }
266
267 /**
268  * omap_vp_disable() - API to disable a particular VP
269  * @voltdm:     pointer to the VDD whose VP is to be disabled.
270  *
271  * This API disables a particular voltage processor. Needed by the smartreflex
272  * class drivers.
273  */
274 void omap_vp_disable(struct voltagedomain *voltdm)
275 {
276         struct omap_vp_instance *vp;
277         u32 vpconfig;
278         int timeout;
279
280         if (!voltdm || IS_ERR(voltdm)) {
281                 pr_warning("%s: VDD specified does not exist!\n", __func__);
282                 return;
283         }
284
285         vp = voltdm->vp;
286         if (!voltdm->read || !voltdm->write) {
287                 pr_err("%s: No read/write API for accessing vdd_%s regs\n",
288                         __func__, voltdm->name);
289                 return;
290         }
291
292         /* If VP is already disabled, do nothing. Return */
293         if (!vp->enabled) {
294                 pr_warning("%s: Trying to disable VP for vdd_%s when"
295                         "it is already disabled\n", __func__, voltdm->name);
296                 return;
297         }
298
299         /* Disable VP */
300         vpconfig = voltdm->read(vp->vpconfig);
301         vpconfig &= ~vp->common->vpconfig_vpenable;
302         voltdm->write(vpconfig, vp->vpconfig);
303
304         /*
305          * Wait for VP idle Typical latency is <2us. Maximum latency is ~100us
306          */
307         omap_test_timeout((voltdm->read(vp->vstatus)),
308                           VP_IDLE_TIMEOUT, timeout);
309
310         if (timeout >= VP_IDLE_TIMEOUT)
311                 pr_warning("%s: vdd_%s idle timedout\n",
312                         __func__, voltdm->name);
313
314         vp->enabled = false;
315
316         return;
317 }