blob: 106c69359306b595e74075853ae8cc4e1465924f [file] [log] [blame]
Nishanth Menone1f60b22010-10-13 00:13:10 +02001/*
2 * Generic OPP Interface
3 *
4 * Copyright (C) 2009-2010 Texas Instruments Incorporated.
5 * Nishanth Menon
6 * Romit Dasgupta
7 * Kevin Hilman
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/kernel.h>
15#include <linux/errno.h>
16#include <linux/err.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020017#include <linux/slab.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050018#include <linux/device.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020019#include <linux/list.h>
20#include <linux/rculist.h>
21#include <linux/rcupdate.h>
Nishanth Menone4db1c72013-09-19 16:03:52 -050022#include <linux/pm_opp.h>
Shawn Guob496dfb2012-09-05 01:09:12 +020023#include <linux/of.h>
Liam Girdwood80126ce2012-10-23 01:27:44 +020024#include <linux/export.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020025
26/*
27 * Internal data structure organization with the OPP layer library is as
28 * follows:
29 * dev_opp_list (root)
30 * |- device 1 (represents voltage domain 1)
31 * | |- opp 1 (availability, freq, voltage)
32 * | |- opp 2 ..
33 * ... ...
34 * | `- opp n ..
35 * |- device 2 (represents the next voltage domain)
36 * ...
37 * `- device m (represents mth voltage domain)
38 * device 1, 2.. are represented by dev_opp structure while each opp
39 * is represented by the opp structure.
40 */
41
42/**
Nishanth Menon47d43ba2013-09-19 16:03:51 -050043 * struct dev_pm_opp - Generic OPP description structure
Nishanth Menone1f60b22010-10-13 00:13:10 +020044 * @node: opp list node. The nodes are maintained throughout the lifetime
45 * of boot. It is expected only an optimal set of OPPs are
46 * added to the library by the SoC framework.
47 * RCU usage: opp list is traversed with RCU locks. node
48 * modification is possible realtime, hence the modifications
49 * are protected by the dev_opp_list_lock for integrity.
50 * IMPORTANT: the opp nodes should be maintained in increasing
51 * order.
Viresh Kumar383934092014-11-25 16:04:18 +053052 * @dynamic: not-created from static DT entries.
Nishanth Menone1f60b22010-10-13 00:13:10 +020053 * @available: true/false - marks if this OPP as available or not
54 * @rate: Frequency in hertz
55 * @u_volt: Nominal voltage in microvolts corresponding to this OPP
56 * @dev_opp: points back to the device_opp struct this opp belongs to
Viresh Kumarcd1a0682014-11-25 16:04:16 +053057 * @rcu_head: RCU callback head used for deferred freeing
Nishanth Menone1f60b22010-10-13 00:13:10 +020058 *
59 * This structure stores the OPP information for a given device.
60 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -050061struct dev_pm_opp {
Nishanth Menone1f60b22010-10-13 00:13:10 +020062 struct list_head node;
63
64 bool available;
Viresh Kumar383934092014-11-25 16:04:18 +053065 bool dynamic;
Nishanth Menone1f60b22010-10-13 00:13:10 +020066 unsigned long rate;
67 unsigned long u_volt;
68
69 struct device_opp *dev_opp;
Viresh Kumarcd1a0682014-11-25 16:04:16 +053070 struct rcu_head rcu_head;
Nishanth Menone1f60b22010-10-13 00:13:10 +020071};
72
73/**
74 * struct device_opp - Device opp structure
75 * @node: list node - contains the devices with OPPs that
76 * have been registered. Nodes once added are not modified in this
77 * list.
78 * RCU usage: nodes are not modified in the list of device_opp,
79 * however addition is possible and is secured by dev_opp_list_lock
80 * @dev: device pointer
Viresh Kumarcd1a0682014-11-25 16:04:16 +053081 * @srcu_head: notifier head to notify the OPP availability changes.
Viresh Kumar129eec52014-11-27 08:54:06 +053082 * @rcu_head: RCU callback head used for deferred freeing
Nishanth Menone1f60b22010-10-13 00:13:10 +020083 * @opp_list: list of opps
84 *
85 * This is an internal data structure maintaining the link to opps attached to
86 * a device. This structure is not meant to be shared to users as it is
Viresh Kumar1c6a6622014-12-10 09:45:31 +053087 * meant for book keeping and private to OPP library.
88 *
89 * Because the opp structures can be used from both rcu and srcu readers, we
90 * need to wait for the grace period of both of them before freeing any
91 * resources. And so we have used kfree_rcu() from within call_srcu() handlers.
Nishanth Menone1f60b22010-10-13 00:13:10 +020092 */
93struct device_opp {
94 struct list_head node;
95
96 struct device *dev;
Viresh Kumarcd1a0682014-11-25 16:04:16 +053097 struct srcu_notifier_head srcu_head;
Viresh Kumar129eec52014-11-27 08:54:06 +053098 struct rcu_head rcu_head;
Nishanth Menone1f60b22010-10-13 00:13:10 +020099 struct list_head opp_list;
100};
101
102/*
103 * The root of the list of all devices. All device_opp structures branch off
104 * from here, with each device_opp containing the list of opp it supports in
105 * various states of availability.
106 */
107static LIST_HEAD(dev_opp_list);
108/* Lock to allow exclusive modification to the device and opp lists */
109static DEFINE_MUTEX(dev_opp_list_lock);
110
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800111#define opp_rcu_lockdep_assert() \
112do { \
113 rcu_lockdep_assert(rcu_read_lock_held() || \
114 lockdep_is_held(&dev_opp_list_lock), \
115 "Missing rcu_read_lock() or " \
116 "dev_opp_list_lock protection"); \
117} while (0)
118
Nishanth Menone1f60b22010-10-13 00:13:10 +0200119/**
120 * find_device_opp() - find device_opp struct using device pointer
121 * @dev: device pointer used to lookup device OPPs
122 *
123 * Search list of device OPPs for one containing matching device. Does a RCU
124 * reader operation to grab the pointer needed.
125 *
126 * Returns pointer to 'struct device_opp' if found, otherwise -ENODEV or
127 * -EINVAL based on type of error.
128 *
129 * Locking: This function must be called under rcu_read_lock(). device_opp
130 * is a RCU protected pointer. This means that device_opp is valid as long
131 * as we are under RCU lock.
132 */
133static struct device_opp *find_device_opp(struct device *dev)
134{
135 struct device_opp *tmp_dev_opp, *dev_opp = ERR_PTR(-ENODEV);
136
137 if (unlikely(IS_ERR_OR_NULL(dev))) {
138 pr_err("%s: Invalid parameters\n", __func__);
139 return ERR_PTR(-EINVAL);
140 }
141
142 list_for_each_entry_rcu(tmp_dev_opp, &dev_opp_list, node) {
143 if (tmp_dev_opp->dev == dev) {
144 dev_opp = tmp_dev_opp;
145 break;
146 }
147 }
148
149 return dev_opp;
150}
151
152/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500153 * dev_pm_opp_get_voltage() - Gets the voltage corresponding to an available opp
Nishanth Menone1f60b22010-10-13 00:13:10 +0200154 * @opp: opp for which voltage has to be returned for
155 *
156 * Return voltage in micro volt corresponding to the opp, else
157 * return 0
158 *
159 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
160 * protected pointer. This means that opp which could have been fetched by
161 * opp_find_freq_{exact,ceil,floor} functions is valid as long as we are
162 * under RCU lock. The pointer returned by the opp_find_freq family must be
163 * used in the same section as the usage of this function with the pointer
164 * prior to unlocking with rcu_read_unlock() to maintain the integrity of the
165 * pointer.
166 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500167unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200168{
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500169 struct dev_pm_opp *tmp_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200170 unsigned long v = 0;
171
172 tmp_opp = rcu_dereference(opp);
173 if (unlikely(IS_ERR_OR_NULL(tmp_opp)) || !tmp_opp->available)
174 pr_err("%s: Invalid parameters\n", __func__);
175 else
176 v = tmp_opp->u_volt;
177
178 return v;
179}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500180EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200181
182/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500183 * dev_pm_opp_get_freq() - Gets the frequency corresponding to an available opp
Nishanth Menone1f60b22010-10-13 00:13:10 +0200184 * @opp: opp for which frequency has to be returned for
185 *
186 * Return frequency in hertz corresponding to the opp, else
187 * return 0
188 *
189 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
190 * protected pointer. This means that opp which could have been fetched by
191 * opp_find_freq_{exact,ceil,floor} functions is valid as long as we are
192 * under RCU lock. The pointer returned by the opp_find_freq family must be
193 * used in the same section as the usage of this function with the pointer
194 * prior to unlocking with rcu_read_unlock() to maintain the integrity of the
195 * pointer.
196 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500197unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200198{
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500199 struct dev_pm_opp *tmp_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200200 unsigned long f = 0;
201
202 tmp_opp = rcu_dereference(opp);
203 if (unlikely(IS_ERR_OR_NULL(tmp_opp)) || !tmp_opp->available)
204 pr_err("%s: Invalid parameters\n", __func__);
205 else
206 f = tmp_opp->rate;
207
208 return f;
209}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500210EXPORT_SYMBOL_GPL(dev_pm_opp_get_freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200211
212/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500213 * dev_pm_opp_get_opp_count() - Get number of opps available in the opp list
Nishanth Menone1f60b22010-10-13 00:13:10 +0200214 * @dev: device for which we do this operation
215 *
216 * This function returns the number of available opps if there are any,
217 * else returns 0 if none or the corresponding error value.
218 *
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800219 * Locking: This function takes rcu_read_lock().
Nishanth Menone1f60b22010-10-13 00:13:10 +0200220 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500221int dev_pm_opp_get_opp_count(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200222{
223 struct device_opp *dev_opp;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500224 struct dev_pm_opp *temp_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200225 int count = 0;
226
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800227 rcu_read_lock();
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800228
Nishanth Menone1f60b22010-10-13 00:13:10 +0200229 dev_opp = find_device_opp(dev);
230 if (IS_ERR(dev_opp)) {
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800231 count = PTR_ERR(dev_opp);
232 dev_err(dev, "%s: device OPP not found (%d)\n",
233 __func__, count);
234 goto out_unlock;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200235 }
236
237 list_for_each_entry_rcu(temp_opp, &dev_opp->opp_list, node) {
238 if (temp_opp->available)
239 count++;
240 }
241
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800242out_unlock:
243 rcu_read_unlock();
Nishanth Menone1f60b22010-10-13 00:13:10 +0200244 return count;
245}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500246EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200247
248/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500249 * dev_pm_opp_find_freq_exact() - search for an exact frequency
Nishanth Menone1f60b22010-10-13 00:13:10 +0200250 * @dev: device for which we do this operation
251 * @freq: frequency to search for
Nishanth Menon7ae49612011-02-25 23:46:18 +0100252 * @available: true/false - match for available opp
Nishanth Menone1f60b22010-10-13 00:13:10 +0200253 *
254 * Searches for exact match in the opp list and returns pointer to the matching
255 * opp if found, else returns ERR_PTR in case of error and should be handled
Nishanth Menon07797262012-10-24 22:00:12 +0200256 * using IS_ERR. Error return values can be:
257 * EINVAL: for bad pointer
258 * ERANGE: no match found for search
259 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200260 *
261 * Note: available is a modifier for the search. if available=true, then the
262 * match is for exact matching frequency and is available in the stored OPP
263 * table. if false, the match is for exact frequency which is not available.
264 *
265 * This provides a mechanism to enable an opp which is not available currently
266 * or the opposite as well.
267 *
268 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
269 * protected pointer. The reason for the same is that the opp pointer which is
270 * returned will remain valid for use with opp_get_{voltage, freq} only while
271 * under the locked area. The pointer returned must be used prior to unlocking
272 * with rcu_read_unlock() to maintain the integrity of the pointer.
273 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500274struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
275 unsigned long freq,
276 bool available)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200277{
278 struct device_opp *dev_opp;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500279 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200280
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800281 opp_rcu_lockdep_assert();
282
Nishanth Menone1f60b22010-10-13 00:13:10 +0200283 dev_opp = find_device_opp(dev);
284 if (IS_ERR(dev_opp)) {
285 int r = PTR_ERR(dev_opp);
286 dev_err(dev, "%s: device OPP not found (%d)\n", __func__, r);
287 return ERR_PTR(r);
288 }
289
290 list_for_each_entry_rcu(temp_opp, &dev_opp->opp_list, node) {
291 if (temp_opp->available == available &&
292 temp_opp->rate == freq) {
293 opp = temp_opp;
294 break;
295 }
296 }
297
298 return opp;
299}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500300EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_exact);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200301
302/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500303 * dev_pm_opp_find_freq_ceil() - Search for an rounded ceil freq
Nishanth Menone1f60b22010-10-13 00:13:10 +0200304 * @dev: device for which we do this operation
305 * @freq: Start frequency
306 *
307 * Search for the matching ceil *available* OPP from a starting freq
308 * for a device.
309 *
310 * Returns matching *opp and refreshes *freq accordingly, else returns
Nishanth Menon07797262012-10-24 22:00:12 +0200311 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
312 * values can be:
313 * EINVAL: for bad pointer
314 * ERANGE: no match found for search
315 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200316 *
317 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
318 * protected pointer. The reason for the same is that the opp pointer which is
319 * returned will remain valid for use with opp_get_{voltage, freq} only while
320 * under the locked area. The pointer returned must be used prior to unlocking
321 * with rcu_read_unlock() to maintain the integrity of the pointer.
322 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500323struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
324 unsigned long *freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200325{
326 struct device_opp *dev_opp;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500327 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200328
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800329 opp_rcu_lockdep_assert();
330
Nishanth Menone1f60b22010-10-13 00:13:10 +0200331 if (!dev || !freq) {
332 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
333 return ERR_PTR(-EINVAL);
334 }
335
336 dev_opp = find_device_opp(dev);
337 if (IS_ERR(dev_opp))
Nishanth Menon07797262012-10-24 22:00:12 +0200338 return ERR_CAST(dev_opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200339
340 list_for_each_entry_rcu(temp_opp, &dev_opp->opp_list, node) {
341 if (temp_opp->available && temp_opp->rate >= *freq) {
342 opp = temp_opp;
343 *freq = opp->rate;
344 break;
345 }
346 }
347
348 return opp;
349}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500350EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200351
352/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500353 * dev_pm_opp_find_freq_floor() - Search for a rounded floor freq
Nishanth Menone1f60b22010-10-13 00:13:10 +0200354 * @dev: device for which we do this operation
355 * @freq: Start frequency
356 *
357 * Search for the matching floor *available* OPP from a starting freq
358 * for a device.
359 *
360 * Returns matching *opp and refreshes *freq accordingly, else returns
Nishanth Menon07797262012-10-24 22:00:12 +0200361 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
362 * values can be:
363 * EINVAL: for bad pointer
364 * ERANGE: no match found for search
365 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200366 *
367 * Locking: This function must be called under rcu_read_lock(). opp is a rcu
368 * protected pointer. The reason for the same is that the opp pointer which is
369 * returned will remain valid for use with opp_get_{voltage, freq} only while
370 * under the locked area. The pointer returned must be used prior to unlocking
371 * with rcu_read_unlock() to maintain the integrity of the pointer.
372 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500373struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
374 unsigned long *freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200375{
376 struct device_opp *dev_opp;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500377 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200378
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800379 opp_rcu_lockdep_assert();
380
Nishanth Menone1f60b22010-10-13 00:13:10 +0200381 if (!dev || !freq) {
382 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
383 return ERR_PTR(-EINVAL);
384 }
385
386 dev_opp = find_device_opp(dev);
387 if (IS_ERR(dev_opp))
Nishanth Menon07797262012-10-24 22:00:12 +0200388 return ERR_CAST(dev_opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200389
390 list_for_each_entry_rcu(temp_opp, &dev_opp->opp_list, node) {
391 if (temp_opp->available) {
392 /* go to the next node, before choosing prev */
393 if (temp_opp->rate > *freq)
394 break;
395 else
396 opp = temp_opp;
397 }
398 }
399 if (!IS_ERR(opp))
400 *freq = opp->rate;
401
402 return opp;
403}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500404EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_floor);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200405
Viresh Kumar07cce742014-12-10 09:45:34 +0530406static struct device_opp *add_device_opp(struct device *dev)
407{
408 struct device_opp *dev_opp;
409
410 /*
411 * Allocate a new device OPP table. In the infrequent case where a new
412 * device is needed to be added, we pay this penalty.
413 */
414 dev_opp = kzalloc(sizeof(*dev_opp), GFP_KERNEL);
415 if (!dev_opp)
416 return NULL;
417
418 dev_opp->dev = dev;
419 srcu_init_notifier_head(&dev_opp->srcu_head);
420 INIT_LIST_HEAD(&dev_opp->opp_list);
421
422 /* Secure the device list modification */
423 list_add_rcu(&dev_opp->node, &dev_opp_list);
424 return dev_opp;
425}
426
Viresh Kumar383934092014-11-25 16:04:18 +0530427static int dev_pm_opp_add_dynamic(struct device *dev, unsigned long freq,
428 unsigned long u_volt, bool dynamic)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200429{
430 struct device_opp *dev_opp = NULL;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500431 struct dev_pm_opp *opp, *new_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200432 struct list_head *head;
Viresh Kumar6ce41842014-12-10 09:45:35 +0530433 int ret;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200434
435 /* allocate new OPP node */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500436 new_opp = kzalloc(sizeof(*new_opp), GFP_KERNEL);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200437 if (!new_opp) {
438 dev_warn(dev, "%s: Unable to create new OPP node\n", __func__);
439 return -ENOMEM;
440 }
441
442 /* Hold our list modification lock here */
443 mutex_lock(&dev_opp_list_lock);
444
Viresh Kumara7470db2014-11-25 16:04:17 +0530445 /* populate the opp table */
Viresh Kumara7470db2014-11-25 16:04:17 +0530446 new_opp->rate = freq;
447 new_opp->u_volt = u_volt;
448 new_opp->available = true;
Viresh Kumar383934092014-11-25 16:04:18 +0530449 new_opp->dynamic = dynamic;
Viresh Kumara7470db2014-11-25 16:04:17 +0530450
Nishanth Menone1f60b22010-10-13 00:13:10 +0200451 /* Check for existing list for 'dev' */
452 dev_opp = find_device_opp(dev);
453 if (IS_ERR(dev_opp)) {
Viresh Kumar07cce742014-12-10 09:45:34 +0530454 dev_opp = add_device_opp(dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200455 if (!dev_opp) {
Viresh Kumar6ce41842014-12-10 09:45:35 +0530456 ret = -ENOMEM;
457 goto free_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200458 }
459
Viresh Kumara7470db2014-11-25 16:04:17 +0530460 head = &dev_opp->opp_list;
461 goto list_add;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200462 }
463
Chander Kashyap64ce8542014-05-22 10:36:26 +0530464 /*
465 * Insert new OPP in order of increasing frequency
466 * and discard if already present
467 */
Nishanth Menone1f60b22010-10-13 00:13:10 +0200468 head = &dev_opp->opp_list;
469 list_for_each_entry_rcu(opp, &dev_opp->opp_list, node) {
Chander Kashyap64ce8542014-05-22 10:36:26 +0530470 if (new_opp->rate <= opp->rate)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200471 break;
472 else
473 head = &opp->node;
474 }
475
Chander Kashyap64ce8542014-05-22 10:36:26 +0530476 /* Duplicate OPPs ? */
477 if (new_opp->rate == opp->rate) {
Viresh Kumar6ce41842014-12-10 09:45:35 +0530478 ret = opp->available && new_opp->u_volt == opp->u_volt ?
Chander Kashyap64ce8542014-05-22 10:36:26 +0530479 0 : -EEXIST;
480
481 dev_warn(dev, "%s: duplicate OPPs detected. Existing: freq: %lu, volt: %lu, enabled: %d. New: freq: %lu, volt: %lu, enabled: %d\n",
482 __func__, opp->rate, opp->u_volt, opp->available,
483 new_opp->rate, new_opp->u_volt, new_opp->available);
Viresh Kumar6ce41842014-12-10 09:45:35 +0530484 goto free_opp;
Chander Kashyap64ce8542014-05-22 10:36:26 +0530485 }
486
Viresh Kumara7470db2014-11-25 16:04:17 +0530487list_add:
Viresh Kumar7284a002014-12-09 11:18:51 +0530488 new_opp->dev_opp = dev_opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200489 list_add_rcu(&new_opp->node, head);
490 mutex_unlock(&dev_opp_list_lock);
491
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200492 /*
493 * Notify the changes in the availability of the operable
494 * frequency/voltage list.
495 */
Viresh Kumarcd1a0682014-11-25 16:04:16 +0530496 srcu_notifier_call_chain(&dev_opp->srcu_head, OPP_EVENT_ADD, new_opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200497 return 0;
Viresh Kumar6ce41842014-12-10 09:45:35 +0530498
499free_opp:
500 mutex_unlock(&dev_opp_list_lock);
501 kfree(new_opp);
502 return ret;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200503}
Viresh Kumar383934092014-11-25 16:04:18 +0530504
505/**
506 * dev_pm_opp_add() - Add an OPP table from a table definitions
507 * @dev: device for which we do this operation
508 * @freq: Frequency in Hz for this OPP
509 * @u_volt: Voltage in uVolts for this OPP
510 *
511 * This function adds an opp definition to the opp list and returns status.
512 * The opp is made available by default and it can be controlled using
513 * dev_pm_opp_enable/disable functions.
514 *
515 * Locking: The internal device_opp and opp structures are RCU protected.
516 * Hence this function internally uses RCU updater strategy with mutex locks
517 * to keep the integrity of the internal data structures. Callers should ensure
518 * that this function is *NOT* called under RCU protection or in contexts where
519 * mutex cannot be locked.
520 *
521 * Return:
522 * 0: On success OR
523 * Duplicate OPPs (both freq and volt are same) and opp->available
524 * -EEXIST: Freq are same and volt are different OR
525 * Duplicate OPPs (both freq and volt are same) and !opp->available
526 * -ENOMEM: Memory allocation failure
527 */
528int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
529{
530 return dev_pm_opp_add_dynamic(dev, freq, u_volt, true);
531}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500532EXPORT_SYMBOL_GPL(dev_pm_opp_add);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200533
Viresh Kumar129eec52014-11-27 08:54:06 +0530534static void kfree_opp_rcu(struct rcu_head *head)
535{
536 struct dev_pm_opp *opp = container_of(head, struct dev_pm_opp, rcu_head);
537
538 kfree_rcu(opp, rcu_head);
539}
540
541static void kfree_device_rcu(struct rcu_head *head)
542{
543 struct device_opp *device_opp = container_of(head, struct device_opp, rcu_head);
544
Viresh Kumar1c6a6622014-12-10 09:45:31 +0530545 kfree_rcu(device_opp, rcu_head);
Viresh Kumar129eec52014-11-27 08:54:06 +0530546}
547
Viresh Kumar86453b42014-12-10 09:45:32 +0530548static void __dev_pm_opp_remove(struct device_opp *dev_opp,
549 struct dev_pm_opp *opp)
Viresh Kumar129eec52014-11-27 08:54:06 +0530550{
551 /*
552 * Notify the changes in the availability of the operable
553 * frequency/voltage list.
554 */
555 srcu_notifier_call_chain(&dev_opp->srcu_head, OPP_EVENT_REMOVE, opp);
556 list_del_rcu(&opp->node);
557 call_srcu(&dev_opp->srcu_head.srcu, &opp->rcu_head, kfree_opp_rcu);
558
559 if (list_empty(&dev_opp->opp_list)) {
560 list_del_rcu(&dev_opp->node);
561 call_srcu(&dev_opp->srcu_head.srcu, &dev_opp->rcu_head,
562 kfree_device_rcu);
563 }
564}
565
566/**
567 * dev_pm_opp_remove() - Remove an OPP from OPP list
568 * @dev: device for which we do this operation
569 * @freq: OPP to remove with matching 'freq'
570 *
571 * This function removes an opp from the opp list.
572 */
573void dev_pm_opp_remove(struct device *dev, unsigned long freq)
574{
575 struct dev_pm_opp *opp;
576 struct device_opp *dev_opp;
577 bool found = false;
578
579 /* Hold our list modification lock here */
580 mutex_lock(&dev_opp_list_lock);
581
582 dev_opp = find_device_opp(dev);
583 if (IS_ERR(dev_opp))
584 goto unlock;
585
586 list_for_each_entry(opp, &dev_opp->opp_list, node) {
587 if (opp->rate == freq) {
588 found = true;
589 break;
590 }
591 }
592
593 if (!found) {
594 dev_warn(dev, "%s: Couldn't find OPP with freq: %lu\n",
595 __func__, freq);
596 goto unlock;
597 }
598
599 __dev_pm_opp_remove(dev_opp, opp);
600unlock:
601 mutex_unlock(&dev_opp_list_lock);
602}
603EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
604
Nishanth Menone1f60b22010-10-13 00:13:10 +0200605/**
606 * opp_set_availability() - helper to set the availability of an opp
607 * @dev: device for which we do this operation
608 * @freq: OPP frequency to modify availability
609 * @availability_req: availability status requested for this opp
610 *
611 * Set the availability of an OPP with an RCU operation, opp_{enable,disable}
612 * share a common logic which is isolated here.
613 *
614 * Returns -EINVAL for bad pointers, -ENOMEM if no memory available for the
615 * copy operation, returns 0 if no modifcation was done OR modification was
616 * successful.
617 *
618 * Locking: The internal device_opp and opp structures are RCU protected.
619 * Hence this function internally uses RCU updater strategy with mutex locks to
620 * keep the integrity of the internal data structures. Callers should ensure
621 * that this function is *NOT* called under RCU protection or in contexts where
622 * mutex locking or synchronize_rcu() blocking calls cannot be used.
623 */
624static int opp_set_availability(struct device *dev, unsigned long freq,
625 bool availability_req)
626{
Viresh Kumar29df0ee2014-12-10 09:45:33 +0530627 struct device_opp *dev_opp;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500628 struct dev_pm_opp *new_opp, *tmp_opp, *opp = ERR_PTR(-ENODEV);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200629 int r = 0;
630
631 /* keep the node allocated */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500632 new_opp = kmalloc(sizeof(*new_opp), GFP_KERNEL);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200633 if (!new_opp) {
634 dev_warn(dev, "%s: Unable to create OPP\n", __func__);
635 return -ENOMEM;
636 }
637
638 mutex_lock(&dev_opp_list_lock);
639
640 /* Find the device_opp */
Viresh Kumar29df0ee2014-12-10 09:45:33 +0530641 dev_opp = find_device_opp(dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200642 if (IS_ERR(dev_opp)) {
643 r = PTR_ERR(dev_opp);
644 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
645 goto unlock;
646 }
647
648 /* Do we have the frequency? */
649 list_for_each_entry(tmp_opp, &dev_opp->opp_list, node) {
650 if (tmp_opp->rate == freq) {
651 opp = tmp_opp;
652 break;
653 }
654 }
655 if (IS_ERR(opp)) {
656 r = PTR_ERR(opp);
657 goto unlock;
658 }
659
660 /* Is update really needed? */
661 if (opp->available == availability_req)
662 goto unlock;
663 /* copy the old data over */
664 *new_opp = *opp;
665
666 /* plug in new node */
667 new_opp->available = availability_req;
668
669 list_replace_rcu(&opp->node, &new_opp->node);
670 mutex_unlock(&dev_opp_list_lock);
Viresh Kumarb4037aa2014-11-27 08:54:07 +0530671 call_srcu(&dev_opp->srcu_head.srcu, &opp->rcu_head, kfree_opp_rcu);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200672
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200673 /* Notify the change of the OPP availability */
674 if (availability_req)
Viresh Kumarcd1a0682014-11-25 16:04:16 +0530675 srcu_notifier_call_chain(&dev_opp->srcu_head, OPP_EVENT_ENABLE,
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200676 new_opp);
677 else
Viresh Kumarcd1a0682014-11-25 16:04:16 +0530678 srcu_notifier_call_chain(&dev_opp->srcu_head, OPP_EVENT_DISABLE,
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200679 new_opp);
680
Vincent Guittotdde84372012-10-23 01:21:49 +0200681 return 0;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200682
683unlock:
684 mutex_unlock(&dev_opp_list_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200685 kfree(new_opp);
686 return r;
687}
688
689/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500690 * dev_pm_opp_enable() - Enable a specific OPP
Nishanth Menone1f60b22010-10-13 00:13:10 +0200691 * @dev: device for which we do this operation
692 * @freq: OPP frequency to enable
693 *
694 * Enables a provided opp. If the operation is valid, this returns 0, else the
695 * corresponding error value. It is meant to be used for users an OPP available
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500696 * after being temporarily made unavailable with dev_pm_opp_disable.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200697 *
698 * Locking: The internal device_opp and opp structures are RCU protected.
699 * Hence this function indirectly uses RCU and mutex locks to keep the
700 * integrity of the internal data structures. Callers should ensure that
701 * this function is *NOT* called under RCU protection or in contexts where
702 * mutex locking or synchronize_rcu() blocking calls cannot be used.
703 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500704int dev_pm_opp_enable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200705{
706 return opp_set_availability(dev, freq, true);
707}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500708EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200709
710/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500711 * dev_pm_opp_disable() - Disable a specific OPP
Nishanth Menone1f60b22010-10-13 00:13:10 +0200712 * @dev: device for which we do this operation
713 * @freq: OPP frequency to disable
714 *
715 * Disables a provided opp. If the operation is valid, this returns
716 * 0, else the corresponding error value. It is meant to be a temporary
717 * control by users to make this OPP not available until the circumstances are
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500718 * right to make it available again (with a call to dev_pm_opp_enable).
Nishanth Menone1f60b22010-10-13 00:13:10 +0200719 *
720 * Locking: The internal device_opp and opp structures are RCU protected.
721 * Hence this function indirectly uses RCU and mutex locks to keep the
722 * integrity of the internal data structures. Callers should ensure that
723 * this function is *NOT* called under RCU protection or in contexts where
724 * mutex locking or synchronize_rcu() blocking calls cannot be used.
725 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500726int dev_pm_opp_disable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200727{
728 return opp_set_availability(dev, freq, false);
729}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500730EXPORT_SYMBOL_GPL(dev_pm_opp_disable);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200731
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200732/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500733 * dev_pm_opp_get_notifier() - find notifier_head of the device with opp
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200734 * @dev: device pointer used to lookup device OPPs.
735 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500736struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev)
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200737{
738 struct device_opp *dev_opp = find_device_opp(dev);
739
740 if (IS_ERR(dev_opp))
Thomas Meyer156acb12011-11-08 22:34:00 +0100741 return ERR_CAST(dev_opp); /* matching type */
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200742
Viresh Kumarcd1a0682014-11-25 16:04:16 +0530743 return &dev_opp->srcu_head;
MyungJoo Ham03ca3702011-09-30 22:35:12 +0200744}
Shawn Guob496dfb2012-09-05 01:09:12 +0200745
746#ifdef CONFIG_OF
747/**
748 * of_init_opp_table() - Initialize opp table from device tree
749 * @dev: device pointer used to lookup device OPPs.
750 *
751 * Register the initial OPP table with the OPP library for given device.
752 */
753int of_init_opp_table(struct device *dev)
754{
755 const struct property *prop;
756 const __be32 *val;
757 int nr;
758
759 prop = of_find_property(dev->of_node, "operating-points", NULL);
760 if (!prop)
761 return -ENODEV;
762 if (!prop->value)
763 return -ENODATA;
764
765 /*
766 * Each OPP is a set of tuples consisting of frequency and
767 * voltage like <freq-kHz vol-uV>.
768 */
769 nr = prop->length / sizeof(u32);
770 if (nr % 2) {
771 dev_err(dev, "%s: Invalid OPP list\n", __func__);
772 return -EINVAL;
773 }
774
775 val = prop->value;
776 while (nr) {
777 unsigned long freq = be32_to_cpup(val++) * 1000;
778 unsigned long volt = be32_to_cpup(val++);
779
Viresh Kumar383934092014-11-25 16:04:18 +0530780 if (dev_pm_opp_add_dynamic(dev, freq, volt, false))
Shawn Guob496dfb2012-09-05 01:09:12 +0200781 dev_warn(dev, "%s: Failed to add OPP %ld\n",
782 __func__, freq);
Shawn Guob496dfb2012-09-05 01:09:12 +0200783 nr -= 2;
784 }
785
786 return 0;
787}
Mark Langsdorf74c46c62013-01-28 18:26:16 +0000788EXPORT_SYMBOL_GPL(of_init_opp_table);
Viresh Kumar129eec52014-11-27 08:54:06 +0530789
790/**
791 * of_free_opp_table() - Free OPP table entries created from static DT entries
792 * @dev: device pointer used to lookup device OPPs.
793 *
794 * Free OPPs created using static entries present in DT.
795 */
796void of_free_opp_table(struct device *dev)
797{
Viresh Kumar2a6127d02014-12-08 13:46:18 +0530798 struct device_opp *dev_opp;
Viresh Kumar129eec52014-11-27 08:54:06 +0530799 struct dev_pm_opp *opp, *tmp;
800
801 /* Check for existing list for 'dev' */
802 dev_opp = find_device_opp(dev);
Dmitry Torokhov0fe30da2014-12-16 15:09:37 -0800803 if (IS_ERR(dev_opp)) {
804 int error = PTR_ERR(dev_opp);
805 if (error != -ENODEV)
806 WARN(1, "%s: dev_opp: %d\n",
807 IS_ERR_OR_NULL(dev) ?
808 "Invalid device" : dev_name(dev),
809 error);
Viresh Kumar129eec52014-11-27 08:54:06 +0530810 return;
Dmitry Torokhov0fe30da2014-12-16 15:09:37 -0800811 }
Viresh Kumar129eec52014-11-27 08:54:06 +0530812
813 /* Hold our list modification lock here */
814 mutex_lock(&dev_opp_list_lock);
815
816 /* Free static OPPs */
817 list_for_each_entry_safe(opp, tmp, &dev_opp->opp_list, node) {
818 if (!opp->dynamic)
819 __dev_pm_opp_remove(dev_opp, opp);
820 }
821
822 mutex_unlock(&dev_opp_list_lock);
823}
824EXPORT_SYMBOL_GPL(of_free_opp_table);
Shawn Guob496dfb2012-09-05 01:09:12 +0200825#endif