2 * OMAP3/OMAP4 Voltage Management Routines
4 * Author: Thara Gopinath <thara@ti.com>
6 * Copyright (C) 2007 Texas Instruments, Inc.
7 * Rajendra Nayak <rnayak@ti.com>
8 * Lesly A M <x0080970@ti.com>
10 * Copyright (C) 2008, 2011 Nokia Corporation
14 * Copyright (C) 2010 Texas Instruments, Inc.
15 * Thara Gopinath <thara@ti.com>
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License version 2 as
19 * published by the Free Software Foundation.
22 #include <linux/delay.h>
24 #include <linux/err.h>
25 #include <linux/export.h>
26 #include <linux/debugfs.h>
27 #include <linux/slab.h>
28 #include <linux/clk.h>
32 #include "prm-regbits-34xx.h"
33 #include "prm-regbits-44xx.h"
36 #include "prminst44xx.h"
40 #include "powerdomain.h"
45 static LIST_HEAD(voltdm_list
);
47 /* Public functions */
49 * voltdm_get_voltage() - Gets the current non-auto-compensated voltage
50 * @voltdm: pointer to the voltdm for which current voltage info is needed
52 * API to get the current non-auto-compensated voltage for a voltage domain.
53 * Returns 0 in case of error else returns the current voltage.
55 unsigned long voltdm_get_voltage(struct voltagedomain
*voltdm
)
57 if (!voltdm
|| IS_ERR(voltdm
)) {
58 pr_warn("%s: VDD specified does not exist!\n", __func__
);
62 return voltdm
->nominal_volt
;
66 * voltdm_scale() - API to scale voltage of a particular voltage domain.
67 * @voltdm: pointer to the voltage domain which is to be scaled.
68 * @target_volt: The target voltage of the voltage domain
70 * This API should be called by the kernel to do the voltage scaling
71 * for a particular voltage domain during DVFS.
73 int voltdm_scale(struct voltagedomain
*voltdm
,
74 unsigned long target_volt
)
77 unsigned long volt
= 0;
79 if (!voltdm
|| IS_ERR(voltdm
)) {
80 pr_warn("%s: VDD specified does not exist!\n", __func__
);
85 pr_err("%s: No voltage scale API registered for vdd_%s\n",
86 __func__
, voltdm
->name
);
90 if (!voltdm
->volt_data
) {
91 pr_err("%s: No voltage data defined for vdd_%s\n",
92 __func__
, voltdm
->name
);
96 /* Adjust voltage to the exact voltage from the OPP table */
97 for (i
= 0; voltdm
->volt_data
[i
].volt_nominal
!= 0; i
++) {
98 if (voltdm
->volt_data
[i
].volt_nominal
>= target_volt
) {
99 volt
= voltdm
->volt_data
[i
].volt_nominal
;
105 pr_warn("%s: not scaling. OPP voltage for %lu, not found.\n",
106 __func__
, target_volt
);
110 ret
= voltdm
->scale(voltdm
, volt
);
112 voltdm
->nominal_volt
= volt
;
118 * voltdm_reset() - Resets the voltage of a particular voltage domain
119 * to that of the current OPP.
120 * @voltdm: pointer to the voltage domain whose voltage is to be reset.
122 * This API finds out the correct voltage the voltage domain is supposed
123 * to be at and resets the voltage to that level. Should be used especially
124 * while disabling any voltage compensation modules.
126 void voltdm_reset(struct voltagedomain
*voltdm
)
128 unsigned long target_volt
;
130 if (!voltdm
|| IS_ERR(voltdm
)) {
131 pr_warn("%s: VDD specified does not exist!\n", __func__
);
135 target_volt
= voltdm_get_voltage(voltdm
);
137 pr_err("%s: unable to find current voltage for vdd_%s\n",
138 __func__
, voltdm
->name
);
142 voltdm_scale(voltdm
, target_volt
);
146 * omap_voltage_get_volttable() - API to get the voltage table associated with a
147 * particular voltage domain.
148 * @voltdm: pointer to the VDD for which the voltage table is required
149 * @volt_data: the voltage table for the particular vdd which is to be
150 * populated by this API
152 * This API populates the voltage table associated with a VDD into the
153 * passed parameter pointer. Returns the count of distinct voltages
154 * supported by this vdd.
157 void omap_voltage_get_volttable(struct voltagedomain
*voltdm
,
158 struct omap_volt_data
**volt_data
)
160 if (!voltdm
|| IS_ERR(voltdm
)) {
161 pr_warn("%s: VDD specified does not exist!\n", __func__
);
165 *volt_data
= voltdm
->volt_data
;
169 * omap_voltage_get_voltdata() - API to get the voltage table entry for a
171 * @voltdm: pointer to the VDD whose voltage table has to be searched
172 * @volt: the voltage to be searched in the voltage table
174 * This API searches through the voltage table for the required voltage
175 * domain and tries to find a matching entry for the passed voltage volt.
176 * If a matching entry is found volt_data is populated with that entry.
177 * This API searches only through the non-compensated voltages int the
179 * Returns pointer to the voltage table entry corresponding to volt on
180 * success. Returns -ENODATA if no voltage table exisits for the passed voltage
181 * domain or if there is no matching entry.
183 struct omap_volt_data
*omap_voltage_get_voltdata(struct voltagedomain
*voltdm
,
188 if (!voltdm
|| IS_ERR(voltdm
)) {
189 pr_warn("%s: VDD specified does not exist!\n", __func__
);
190 return ERR_PTR(-EINVAL
);
193 if (!voltdm
->volt_data
) {
194 pr_warn("%s: voltage table does not exist for vdd_%s\n",
195 __func__
, voltdm
->name
);
196 return ERR_PTR(-ENODATA
);
199 for (i
= 0; voltdm
->volt_data
[i
].volt_nominal
!= 0; i
++) {
200 if (voltdm
->volt_data
[i
].volt_nominal
== volt
)
201 return &voltdm
->volt_data
[i
];
204 pr_notice("%s: Unable to match the current voltage with the voltage table for vdd_%s\n",
205 __func__
, voltdm
->name
);
207 return ERR_PTR(-ENODATA
);
211 * omap_voltage_register_pmic() - API to register PMIC specific data
212 * @voltdm: pointer to the VDD for which the PMIC specific data is
214 * @pmic: the structure containing pmic info
216 * This API is to be called by the SOC/PMIC file to specify the
217 * pmic specific info as present in omap_voltdm_pmic structure.
219 int omap_voltage_register_pmic(struct voltagedomain
*voltdm
,
220 struct omap_voltdm_pmic
*pmic
)
222 if (!voltdm
|| IS_ERR(voltdm
)) {
223 pr_warn("%s: VDD specified does not exist!\n", __func__
);
233 * omap_voltage_late_init() - Init the various voltage parameters
235 * This API is to be called in the later stages of the
236 * system boot to init the voltage controller and
237 * voltage processors.
239 int __init
omap_voltage_late_init(void)
241 struct voltagedomain
*voltdm
;
243 if (list_empty(&voltdm_list
)) {
244 pr_err("%s: Voltage driver support not added\n",
249 list_for_each_entry(voltdm
, &voltdm_list
, node
) {
252 if (!voltdm
->scalable
)
255 sys_ck
= clk_get(NULL
, voltdm
->sys_clk
.name
);
256 if (IS_ERR(sys_ck
)) {
257 pr_warn("%s: Could not get sys clk.\n", __func__
);
260 voltdm
->sys_clk
.rate
= clk_get_rate(sys_ck
);
261 WARN_ON(!voltdm
->sys_clk
.rate
);
265 voltdm
->scale
= omap_vc_bypass_scale
;
266 omap_vc_init_channel(voltdm
);
270 voltdm
->scale
= omap_vp_forceupdate_scale
;
271 omap_vp_init(voltdm
);
278 static struct voltagedomain
*_voltdm_lookup(const char *name
)
280 struct voltagedomain
*voltdm
, *temp_voltdm
;
284 list_for_each_entry(temp_voltdm
, &voltdm_list
, node
) {
285 if (!strcmp(name
, temp_voltdm
->name
)) {
286 voltdm
= temp_voltdm
;
294 static int _voltdm_register(struct voltagedomain
*voltdm
)
296 if (!voltdm
|| !voltdm
->name
)
299 list_add(&voltdm
->node
, &voltdm_list
);
301 pr_debug("voltagedomain: registered %s\n", voltdm
->name
);
307 * voltdm_lookup - look up a voltagedomain by name, return a pointer
308 * @name: name of voltagedomain
310 * Find a registered voltagedomain by its name @name. Returns a pointer
311 * to the struct voltagedomain if found, or NULL otherwise.
313 struct voltagedomain
*voltdm_lookup(const char *name
)
315 struct voltagedomain
*voltdm
;
320 voltdm
= _voltdm_lookup(name
);
326 * voltdm_init - set up the voltagedomain layer
327 * @voltdm_list: array of struct voltagedomain pointers to register
329 * Loop through the array of voltagedomains @voltdm_list, registering all
330 * that are available on the current CPU. If voltdm_list is supplied
331 * and not null, all of the referenced voltagedomains will be
332 * registered. No return value.
334 void voltdm_init(struct voltagedomain
**voltdms
)
336 struct voltagedomain
**v
;
339 for (v
= voltdms
; *v
; v
++)
340 _voltdm_register(*v
);